diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000..c2c43df
Binary files /dev/null and b/.DS_Store differ
diff --git a/your-code/.ipynb_checkpoints/main-checkpoint.ipynb b/your-code/.ipynb_checkpoints/main-checkpoint.ipynb
new file mode 100644
index 0000000..fc87255
--- /dev/null
+++ b/your-code/.ipynb_checkpoints/main-checkpoint.ipynb
@@ -0,0 +1,985 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Before your start:\n",
+ "- Read the README.md file\n",
+ "- Comment as much as you can and use the resources in the README.md file\n",
+ "- Happy learning!"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Challenge 1 - Working with JSON files\n",
+ "\n",
+ "Import the pandas library"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Your import here:\n",
+ "\n",
+ "import pandas as pd"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "#### After importing pandas, let's find a dataset. In this lesson we will be working with a NASA dataset.\n",
+ "\n",
+ "Run the code in the cell below to load the dataset containing information about asteroids that have landed on earth. This piece of code helps us open the URL for the dataset and deocde the data using UTF-8."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Run this code\n",
+ "\n",
+ "from urllib.request import urlopen\n",
+ "import json\n",
+ "\n",
+ "response = urlopen(\"https://data.nasa.gov/resource/y77d-th95.json\")\n",
+ "json_data = response.read().decode('utf-8', 'replace')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "In the next cell, load the data in `json_data` and load it into a pandas dataframe. Name the dataframe `nasa`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Your code here:\n",
+ "nasa = pd.read_json(json_data)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Now that we have loaded the data, let's examine it using the `head()` function."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " :@computed_region_cbhk_fwbd | \n",
+ " :@computed_region_nnqa_25f4 | \n",
+ " fall | \n",
+ " geolocation | \n",
+ " id | \n",
+ " mass | \n",
+ " name | \n",
+ " nametype | \n",
+ " recclass | \n",
+ " reclat | \n",
+ " reclong | \n",
+ " year | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [6.08333, 50.... | \n",
+ " 1 | \n",
+ " 21.0 | \n",
+ " Aachen | \n",
+ " Valid | \n",
+ " L5 | \n",
+ " 50.77500 | \n",
+ " 6.08333 | \n",
+ " 1880-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [10.23333, 56... | \n",
+ " 2 | \n",
+ " 720.0 | \n",
+ " Aarhus | \n",
+ " Valid | \n",
+ " H6 | \n",
+ " 56.18333 | \n",
+ " 10.23333 | \n",
+ " 1951-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [-113, 54.216... | \n",
+ " 6 | \n",
+ " 107000.0 | \n",
+ " Abee | \n",
+ " Valid | \n",
+ " EH4 | \n",
+ " 54.21667 | \n",
+ " -113.00000 | \n",
+ " 1952-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [-99.9, 16.88... | \n",
+ " 10 | \n",
+ " 1914.0 | \n",
+ " Acapulco | \n",
+ " Valid | \n",
+ " Acapulcoite | \n",
+ " 16.88333 | \n",
+ " -99.90000 | \n",
+ " 1976-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [-64.95, -33.... | \n",
+ " 370 | \n",
+ " 780.0 | \n",
+ " Achiras | \n",
+ " Valid | \n",
+ " L6 | \n",
+ " -33.16667 | \n",
+ " -64.95000 | \n",
+ " 1902-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " :@computed_region_cbhk_fwbd :@computed_region_nnqa_25f4 fall \\\n",
+ "0 NaN NaN Fell \n",
+ "1 NaN NaN Fell \n",
+ "2 NaN NaN Fell \n",
+ "3 NaN NaN Fell \n",
+ "4 NaN NaN Fell \n",
+ "\n",
+ " geolocation id mass name \\\n",
+ "0 {'type': 'Point', 'coordinates': [6.08333, 50.... 1 21.0 Aachen \n",
+ "1 {'type': 'Point', 'coordinates': [10.23333, 56... 2 720.0 Aarhus \n",
+ "2 {'type': 'Point', 'coordinates': [-113, 54.216... 6 107000.0 Abee \n",
+ "3 {'type': 'Point', 'coordinates': [-99.9, 16.88... 10 1914.0 Acapulco \n",
+ "4 {'type': 'Point', 'coordinates': [-64.95, -33.... 370 780.0 Achiras \n",
+ "\n",
+ " nametype recclass reclat reclong year \n",
+ "0 Valid L5 50.77500 6.08333 1880-01-01T00:00:00.000 \n",
+ "1 Valid H6 56.18333 10.23333 1951-01-01T00:00:00.000 \n",
+ "2 Valid EH4 54.21667 -113.00000 1952-01-01T00:00:00.000 \n",
+ "3 Valid Acapulcoite 16.88333 -99.90000 1976-01-01T00:00:00.000 \n",
+ "4 Valid L6 -33.16667 -64.95000 1902-01-01T00:00:00.000 "
+ ]
+ },
+ "execution_count": 6,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# Your code here:\n",
+ "nasa.head()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "#### The `value_counts()` function is commonly used in pandas to find the frequency of every value in a column.\n",
+ "\n",
+ "In the cell below, use the `value_counts()` function to determine the frequency of all types of asteroid landings by applying the function to the `fall` column."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Fell 996\n",
+ "Found 4\n",
+ "Name: fall, dtype: int64\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Your code here:\n",
+ "print(nasa['fall'].value_counts())\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Finally, let's save the dataframe as a json file again. Since we downloaded the file from an online source, the goal of saving the dataframe is to have a local copy. Save the dataframe using the `orient=records` argument and name the file `nasa.json`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Your code here:\n",
+ "nasa.to_json('nasa.json', orient='records')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Challenge 2 - Working with CSV and Other Separated Files\n",
+ "\n",
+ "csv files are more commonly used as dataframes. In the cell below, load the file from the URL provided using the `read_csv()` function in pandas. Starting version 0.19 of pandas, you can load a csv file into a dataframe directly from a URL without having to load the file first like we did with the JSON URL. The dataset we will be using contains informtaions about NASA shuttles. \n",
+ "\n",
+ "In the cell below, we define the column names and the URL of the data. Following this cell, read the tst file to a variable called `shuttle`. Since the file does not contain the column names, you must add them yourself using the column names declared in `cols` using the `names` argument. Additionally, a tst file is space separated, make sure you pass ` sep=' '` to the function."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 15,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Run this code:\n",
+ "\n",
+ "cols = ['time', 'rad_flow', 'fpv_close', 'fpv_open', 'high', 'bypass', 'bpv_close', 'bpv_open', 'class', '0']\n",
+ "tst_url = 'https://archive.ics.uci.edu/ml/machine-learning-databases/statlog/shuttle/shuttle.tst'"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 16,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Your code here:\n",
+ "shuttle = pd.read_csv(tst_url, sep=' ')\n",
+ "shuttle.columns = cols"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Let's verify that this worked by looking at the `head()` function."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " time | \n",
+ " rad_flow | \n",
+ " fpv_close | \n",
+ " fpv_open | \n",
+ " high | \n",
+ " bypass | \n",
+ " bpv_close | \n",
+ " bpv_open | \n",
+ " class | \n",
+ " 0 | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " 56 | \n",
+ " 0 | \n",
+ " 96 | \n",
+ " 0 | \n",
+ " 52 | \n",
+ " -4 | \n",
+ " 40 | \n",
+ " 44 | \n",
+ " 4 | \n",
+ " 4 | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " 50 | \n",
+ " -1 | \n",
+ " 89 | \n",
+ " -7 | \n",
+ " 50 | \n",
+ " 0 | \n",
+ " 39 | \n",
+ " 40 | \n",
+ " 2 | \n",
+ " 1 | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " 53 | \n",
+ " 9 | \n",
+ " 79 | \n",
+ " 0 | \n",
+ " 42 | \n",
+ " -2 | \n",
+ " 25 | \n",
+ " 37 | \n",
+ " 12 | \n",
+ " 4 | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " 55 | \n",
+ " 2 | \n",
+ " 82 | \n",
+ " 0 | \n",
+ " 54 | \n",
+ " -6 | \n",
+ " 26 | \n",
+ " 28 | \n",
+ " 2 | \n",
+ " 1 | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " 41 | \n",
+ " 0 | \n",
+ " 84 | \n",
+ " 3 | \n",
+ " 38 | \n",
+ " -4 | \n",
+ " 43 | \n",
+ " 45 | \n",
+ " 2 | \n",
+ " 1 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " time rad_flow fpv_close fpv_open high bypass bpv_close bpv_open \\\n",
+ "0 56 0 96 0 52 -4 40 44 \n",
+ "1 50 -1 89 -7 50 0 39 40 \n",
+ "2 53 9 79 0 42 -2 25 37 \n",
+ "3 55 2 82 0 54 -6 26 28 \n",
+ "4 41 0 84 3 38 -4 43 45 \n",
+ "\n",
+ " class 0 \n",
+ "0 4 4 \n",
+ "1 2 1 \n",
+ "2 12 4 \n",
+ "3 2 1 \n",
+ "4 2 1 "
+ ]
+ },
+ "execution_count": 17,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# Your code here:\n",
+ "shuttle.head()\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "To make life easier for us, let's turn this dataframe into a comma separated file by saving it using the `to_csv()` function. Save `shuttle` into the file `shuttle.csv` and ensure the file is comma separated and that we are not saving the index column."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 18,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Your code here:\n",
+ "\n",
+ "shuttle.to_csv('shuttle.csv')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Challenge 3 - Working with Excel Files\n",
+ "\n",
+ "We can also use pandas to convert excel spreadsheets to dataframes. Let's use the `read_excel()` function. In this case, `astronauts.xls` is in the same folder that contains this notebook. Read this file into a variable called `astronaut`. \n",
+ "\n",
+ "Note: Make sure to install the `xlrd` library if it is not yet installed."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 20,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Your code here:\n",
+ "import xlrd\n",
+ "astronaut = pd.read_excel('astronauts.xls')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Use the `head()` function to inspect the dataframe."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 21,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " Name | \n",
+ " Year | \n",
+ " Group | \n",
+ " Status | \n",
+ " Birth Date | \n",
+ " Birth Place | \n",
+ " Gender | \n",
+ " Alma Mater | \n",
+ " Undergraduate Major | \n",
+ " Graduate Major | \n",
+ " Military Rank | \n",
+ " Military Branch | \n",
+ " Space Flights | \n",
+ " Space Flight (hr) | \n",
+ " Space Walks | \n",
+ " Space Walks (hr) | \n",
+ " Missions | \n",
+ " Death Date | \n",
+ " Death Mission | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " Joseph M. Acaba | \n",
+ " 2004.0 | \n",
+ " 19.0 | \n",
+ " Active | \n",
+ " 1967-05-17 | \n",
+ " Inglewood, CA | \n",
+ " Male | \n",
+ " University of California-Santa Barbara; Univer... | \n",
+ " Geology | \n",
+ " Geology | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " 2 | \n",
+ " 3307 | \n",
+ " 2 | \n",
+ " 13.0 | \n",
+ " STS-119 (Discovery), ISS-31/32 (Soyuz) | \n",
+ " NaT | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " Loren W. Acton | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Retired | \n",
+ " 1936-03-07 | \n",
+ " Lewiston, MT | \n",
+ " Male | \n",
+ " Montana State University; University of Colorado | \n",
+ " Engineering Physics | \n",
+ " Solar Physics | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " 1 | \n",
+ " 190 | \n",
+ " 0 | \n",
+ " 0.0 | \n",
+ " STS 51-F (Challenger) | \n",
+ " NaT | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " James C. Adamson | \n",
+ " 1984.0 | \n",
+ " 10.0 | \n",
+ " Retired | \n",
+ " 1946-03-03 | \n",
+ " Warsaw, NY | \n",
+ " Male | \n",
+ " US Military Academy; Princeton University | \n",
+ " Engineering | \n",
+ " Aerospace Engineering | \n",
+ " Colonel | \n",
+ " US Army (Retired) | \n",
+ " 2 | \n",
+ " 334 | \n",
+ " 0 | \n",
+ " 0.0 | \n",
+ " STS-28 (Columbia), STS-43 (Atlantis) | \n",
+ " NaT | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " Thomas D. Akers | \n",
+ " 1987.0 | \n",
+ " 12.0 | \n",
+ " Retired | \n",
+ " 1951-05-20 | \n",
+ " St. Louis, MO | \n",
+ " Male | \n",
+ " University of Missouri-Rolla | \n",
+ " Applied Mathematics | \n",
+ " Applied Mathematics | \n",
+ " Colonel | \n",
+ " US Air Force (Retired) | \n",
+ " 4 | \n",
+ " 814 | \n",
+ " 4 | \n",
+ " 29.0 | \n",
+ " STS-41 (Discovery), STS-49 (Endeavor), STS-61 ... | \n",
+ " NaT | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " Buzz Aldrin | \n",
+ " 1963.0 | \n",
+ " 3.0 | \n",
+ " Retired | \n",
+ " 1930-01-20 | \n",
+ " Montclair, NJ | \n",
+ " Male | \n",
+ " US Military Academy; MIT | \n",
+ " Mechanical Engineering | \n",
+ " Astronautics | \n",
+ " Colonel | \n",
+ " US Air Force (Retired) | \n",
+ " 2 | \n",
+ " 289 | \n",
+ " 2 | \n",
+ " 8.0 | \n",
+ " Gemini 12, Apollo 11 | \n",
+ " NaT | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Name Year Group Status Birth Date Birth Place Gender \\\n",
+ "0 Joseph M. Acaba 2004.0 19.0 Active 1967-05-17 Inglewood, CA Male \n",
+ "1 Loren W. Acton NaN NaN Retired 1936-03-07 Lewiston, MT Male \n",
+ "2 James C. Adamson 1984.0 10.0 Retired 1946-03-03 Warsaw, NY Male \n",
+ "3 Thomas D. Akers 1987.0 12.0 Retired 1951-05-20 St. Louis, MO Male \n",
+ "4 Buzz Aldrin 1963.0 3.0 Retired 1930-01-20 Montclair, NJ Male \n",
+ "\n",
+ " Alma Mater Undergraduate Major \\\n",
+ "0 University of California-Santa Barbara; Univer... Geology \n",
+ "1 Montana State University; University of Colorado Engineering Physics \n",
+ "2 US Military Academy; Princeton University Engineering \n",
+ "3 University of Missouri-Rolla Applied Mathematics \n",
+ "4 US Military Academy; MIT Mechanical Engineering \n",
+ "\n",
+ " Graduate Major Military Rank Military Branch Space Flights \\\n",
+ "0 Geology NaN NaN 2 \n",
+ "1 Solar Physics NaN NaN 1 \n",
+ "2 Aerospace Engineering Colonel US Army (Retired) 2 \n",
+ "3 Applied Mathematics Colonel US Air Force (Retired) 4 \n",
+ "4 Astronautics Colonel US Air Force (Retired) 2 \n",
+ "\n",
+ " Space Flight (hr) Space Walks Space Walks (hr) \\\n",
+ "0 3307 2 13.0 \n",
+ "1 190 0 0.0 \n",
+ "2 334 0 0.0 \n",
+ "3 814 4 29.0 \n",
+ "4 289 2 8.0 \n",
+ "\n",
+ " Missions Death Date Death Mission \n",
+ "0 STS-119 (Discovery), ISS-31/32 (Soyuz) NaT NaN \n",
+ "1 STS 51-F (Challenger) NaT NaN \n",
+ "2 STS-28 (Columbia), STS-43 (Atlantis) NaT NaN \n",
+ "3 STS-41 (Discovery), STS-49 (Endeavor), STS-61 ... NaT NaN \n",
+ "4 Gemini 12, Apollo 11 NaT NaN "
+ ]
+ },
+ "execution_count": 21,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "astronaut.head()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Use the `value_counts()` function to find the most popular undergraduate major among all astronauts."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 24,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Physics 35\n",
+ "Aerospace Engineering 33\n",
+ "Mechanical Engineering 30\n",
+ "Aeronautical Engineering 28\n",
+ "Electrical Engineering 23\n",
+ "Engineering Science 13\n",
+ "Engineering 12\n",
+ "Mathematics 11\n",
+ "Chemistry 10\n",
+ "Naval Sciences 9\n",
+ "Chemical Engineering 9\n",
+ "Astronautical Engineering 8\n",
+ "Aeronautical & Astronautical Engineering 6\n",
+ "Biology 5\n",
+ "Geology 5\n",
+ "Mathematics & Physics 5\n",
+ "Civil Engineering 5\n",
+ "Physics & Astronomy 4\n",
+ "Applied Science & Engineering 4\n",
+ "Computer Science 3\n",
+ "Engineering Physics 3\n",
+ "Aeronautics & Astronautics 3\n",
+ "Applied Mathematics 3\n",
+ "Chemistry & Biology 2\n",
+ "Education 2\n",
+ "Physics & Mathematics 2\n",
+ "Biological Science 2\n",
+ "Engineering Mechanics 2\n",
+ "Ocean Engineering 2\n",
+ "Zoology 2\n",
+ " ..\n",
+ "Music 1\n",
+ "Molecular Biology 1\n",
+ "Astronomy 1\n",
+ "Psychology 1\n",
+ "Human Biology 1\n",
+ "Nuclear Engineering 1\n",
+ "Business Management; Aeronautical Engineering 1\n",
+ "Bioscience 1\n",
+ "Industrial Management 1\n",
+ "Chemistry; Physiological Optics 1\n",
+ "Applied Biology; Mechanical Engineering 1\n",
+ "Military Science 1\n",
+ "Industrial Engineering 1\n",
+ "Electronics Engineering 1\n",
+ "Physics & Astronautical Engineering 1\n",
+ "Solid Earth Sciences 1\n",
+ "Systems Engineering 1\n",
+ "Space Physics 1\n",
+ "Physical Science 1\n",
+ "Earth & Planetary Science 1\n",
+ "Physics & Engineering 1\n",
+ "Business Economics 1\n",
+ "Earth Sciences 1\n",
+ "Economics 1\n",
+ "Computer & Systems Engineering 1\n",
+ "Mathematics & Economics 1\n",
+ "Animal Nutrition 1\n",
+ "Accounting 1\n",
+ "Electrical Science 1\n",
+ "Physics & Mechanical Engineering 1\n",
+ "Name: Undergraduate Major, Length: 83, dtype: int64"
+ ]
+ },
+ "execution_count": 24,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# Your code here:\n",
+ "\n",
+ "astronaut['Undergraduate Major'].value_counts()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Due to all the commas present in the cells of this file, let's save it as a tab separated csv file. In the cell below, save `astronaut` as a tab separated file using the `to_csv` function. Call the file `astronaut.csv` and remember to remove the index column."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 25,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Your code here:\n",
+ "\n",
+ "astronaut.to_csv('astronaut.csv', index=False)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Bonus Challenge - Fertility Dataset\n",
+ "\n",
+ "Visit the following [URL](https://archive.ics.uci.edu/ml/datasets/Fertility) and retrieve the dataset as well as the column headers. Determine the correct separator and read the file into a variable called `fertility`. Examine the dataframe using the `head()` function."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 33,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Your code here:\n",
+ "fertility = pd.read_csv('fertility_Diagnosis.txt', names=[i for i in range(10)])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 34,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " 0 | \n",
+ " 1 | \n",
+ " 2 | \n",
+ " 3 | \n",
+ " 4 | \n",
+ " 5 | \n",
+ " 6 | \n",
+ " 7 | \n",
+ " 8 | \n",
+ " 9 | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " -0.33 | \n",
+ " 0.69 | \n",
+ " 0 | \n",
+ " 1 | \n",
+ " 1 | \n",
+ " 0 | \n",
+ " 0.8 | \n",
+ " 0 | \n",
+ " 0.88 | \n",
+ " N | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " -0.33 | \n",
+ " 0.94 | \n",
+ " 1 | \n",
+ " 0 | \n",
+ " 1 | \n",
+ " 0 | \n",
+ " 0.8 | \n",
+ " 1 | \n",
+ " 0.31 | \n",
+ " O | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " -0.33 | \n",
+ " 0.50 | \n",
+ " 1 | \n",
+ " 0 | \n",
+ " 0 | \n",
+ " 0 | \n",
+ " 1.0 | \n",
+ " -1 | \n",
+ " 0.50 | \n",
+ " N | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " -0.33 | \n",
+ " 0.75 | \n",
+ " 0 | \n",
+ " 1 | \n",
+ " 1 | \n",
+ " 0 | \n",
+ " 1.0 | \n",
+ " -1 | \n",
+ " 0.38 | \n",
+ " N | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " -0.33 | \n",
+ " 0.67 | \n",
+ " 1 | \n",
+ " 1 | \n",
+ " 0 | \n",
+ " 0 | \n",
+ " 0.8 | \n",
+ " -1 | \n",
+ " 0.50 | \n",
+ " O | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " 0 1 2 3 4 5 6 7 8 9\n",
+ "0 -0.33 0.69 0 1 1 0 0.8 0 0.88 N\n",
+ "1 -0.33 0.94 1 0 1 0 0.8 1 0.31 O\n",
+ "2 -0.33 0.50 1 0 0 0 1.0 -1 0.50 N\n",
+ "3 -0.33 0.75 0 1 1 0 1.0 -1 0.38 N\n",
+ "4 -0.33 0.67 1 1 0 0 0.8 -1 0.50 O"
+ ]
+ },
+ "execution_count": 34,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "fertility.head()"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.7.3"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/your-code/astronaut.csv b/your-code/astronaut.csv
index dc2892b..fdba515 100644
--- a/your-code/astronaut.csv
+++ b/your-code/astronaut.csv
@@ -1,358 +1,358 @@
-Name Year Group Status Birth Date Birth Place Gender Alma Mater Undergraduate Major Graduate Major Military Rank Military Branch Space Flights Space Flight (hr) Space Walks Space Walks (hr) Missions Death Date Death Mission
-Joseph M. Acaba 2004.0 19.0 Active 1967-05-17 Inglewood, CA Male University of California-Santa Barbara; University of Arizona Geology Geology 2 3307 2 13.0 STS-119 (Discovery), ISS-31/32 (Soyuz)
-Loren W. Acton Retired 1936-03-07 Lewiston, MT Male Montana State University; University of Colorado Engineering Physics Solar Physics 1 190 0 0.0 STS 51-F (Challenger)
-James C. Adamson 1984.0 10.0 Retired 1946-03-03 Warsaw, NY Male US Military Academy; Princeton University Engineering Aerospace Engineering Colonel US Army (Retired) 2 334 0 0.0 STS-28 (Columbia), STS-43 (Atlantis)
-Thomas D. Akers 1987.0 12.0 Retired 1951-05-20 St. Louis, MO Male University of Missouri-Rolla Applied Mathematics Applied Mathematics Colonel US Air Force (Retired) 4 814 4 29.0 STS-41 (Discovery), STS-49 (Endeavor), STS-61 (Endeavor), STS-79 (Atlantis)
-Buzz Aldrin 1963.0 3.0 Retired 1930-01-20 Montclair, NJ Male US Military Academy; MIT Mechanical Engineering Astronautics Colonel US Air Force (Retired) 2 289 2 8.0 Gemini 12, Apollo 11
-Andrew M. Allen 1987.0 12.0 Retired 1955-08-04 Philadelphia, PA Male Villanova University; University of Florida Mechanical Engineering Business Administration Lieutenant Colonel US Marine Corps (Retired) 3 906 0 0.0 STS-46 (Atlantis), STS-62 (Columbia), STS-75 (Columbia)
-Joseph P. Allen 1967.0 6.0 Retired 1937-06-27 Crawsfordsville, IN Male DePauw University; Yale University Mathematics & Physics Physics 2 313 2 12.0 ST-5 (Columbia), STS 51-A (Discovery)
-Scott D. Altman 1995.0 15.0 Retired 1959-08-15 Lincoln, IL Male University of Illinois; US Naval Postgraduate School Aeronautical & Astronautical Engineering Aeronautical Engineering Captain US Navy (Retired) 4 1236 0 0.0 STS-90 (Columbia), STS-106 (Atlantis), STS-109 (Columbia), STS-125 (Atlantis)
-William A. Anders 1963.0 3.0 Retired 1933-10-17 Hong Kong Male US Naval Academy; Air Force Institute of Technology Nuclear Engineering Nuclear Engineering Major General US Air Force Reserves (Retired) 1 147 0 0.0 Apollo 8
-Clayton C. Anderson 1998.0 17.0 Retired 1959-02-23 Omaha, NE Male Hastings College; Iowa State University Physics Aerospace Engineering 2 4005 6 38.0 STS-117/120 (Atlantis/Discovery), STS-131 (Discovery)
-Michael P. Anderson 1995.0 15.0 Deceased 1959-12-25 Plattsburgh, NY Male University of Washington; Creighton University Physics & Astronomy Physics Lieutenant Colonel US Air Force 2 594 0 0.0 STS-89 (Endeavor), STS-107 (Columbia) 2003-02-01 STS-107 (Columbia)
-Dominic A. Antonelli 2000.0 18.0 Active 1967-08-23 Detroit, MI Male MIT; University of Washington Aeronautics & Astronautics Aeronautics & Astronautics Commander US Navy 2 579 0 0.0 STS-119 (Discovery), STS-132 (Atlantis)
-Jerome Apt III 1985.0 11.0 Retired 1949-04-18 Springfield, MA Male Harvard University; MIT Physics Physics 4 847 2 11.0 STS-37 (Atlantis), STS-47 (Endeavor), STS-59 (Endeavor), STS-79 (Atlantis)
-Lee J. Archambault 1998.0 17.0 Retired 1960-08-25 Oak Park, IL Male University of Illinois-Urbana Aeronautical & Astronautical Engineering Aeronautical & Astronautical Engineering Colonel US Air Force 2 639 0 0.0 STS-117 (Atlantis), STS-119 (Discovery)
-Neil A. Armstrong 1962.0 2.0 Deceased 1930-08-05 Wapakoneta, OH Male Purdue University; University of Southern California Aeronautical Engineering Aerospace Engineering 2 205 1 2.0 Gemini 8, Apollo 11 2012-08-25
-Richard R. Arnold II 2004.0 19.0 Active 1963-11-26 Cheverly, MD Male Frostburg State University; University of Maryland Accounting Environmental Science 1 307 2 12.0 STS-119 (Discovery)
-Jeffrey S. Ashby 1995.0 15.0 Retired 1954-06-01 Dallas, TX Male University of Idaho; University of Tennessee Mechanical Engineering Aviation Systems Captain US Navy (Retired) 3 655 0 0.0 STS-93 (Columbia), STS-100 (Endeavor), STS-112 (Atlantis)
-Serena M. Aunon 2009.0 20.0 Active 1976-04-09 Indianapolis, IN Female George Washington University; University of Texas Electrical Engineering Medicine 0 0 0 0.0
-James P. Bagian 1980.0 9.0 Retired 1952-02-22 Philadelphia, PA Male Drexel University; Thomas Jefferson University Mechanical Engineering Medicine 2 337 0 0.0 STS-29 (Discovery), STS-40 (Columbia)
-Ellen S. Baker 1984.0 10.0 Retired 1953-04-27 Fayettesville, NC Female State University of New York-Buffalo; Cornell University; University of Texas Geology Medicine; Public Health 3 686 0 0.0 STS-34 (Atlantis), STS-50 (Columbia), STS-71 (Atlantis)
-Michael A. Baker 1985.0 11.0 Management 1953-10-27 Memphis, TN Male University of Texas Aerospace Engineering Captain US Navy (Retired) 4 965 0 0.0 STS-43 (Atlantis), STS-52 (Columbia), STS-68 (Endeavor), STS-81 (Atlantis)
-Michael R. Barratt 2000.0 18.0 Active 1959-04-16 Vancouver, WA Male University of Washington; Northwestern University; Wright State University Zoology Medicine; Aerospace Medicine 2 5075 1 5.0 ISS-19/20 (Soyuz), STS-133 (Discovery)
-Daniel T. Barry 1992.0 14.0 Retired 1953-12-30 Norwalk, CT Male Cornell University; Princeton University; University of Miami Electrical Engineering Electrical Engineering; Computer Science; Medicine 3 733 4 26.0 STS-72 (Endeavor), STS-96 (Discovery), STS-105 (Discovery)
-John-David F. Bartoe Retired 1944-11-17 Abington, PA Male Lehigh University; Georgetown University Physics Physics 1 190 0 0.0 STS 51-F (Challenger)
-Charles A. Bassett II 1963.0 3.0 Deceased 1931-12-30 Dayton, OH Male Texas Technological College Electrical Engineering Captain US Air Force 0 0 0 0.0 1966-02-28
-Alan L. Bean 1963.0 3.0 Retired 1932-03-15 Wheeler, TX Male University of Texas Aeronautical Engineering Captain US Navy (Retired) 2 1671 3 10.0 Apollo 12, Skylab 3
-Robert L. Behnken 2000.0 18.0 Active 1970-07-28 Creve Couer, MO Male Washington University; California Institute of Technology Physics & Mechanical Engineering Mechanical Engineering Colonel US Air Force 2 708 6 37.0 STS-123 (Endeavor), STS-130 (Endeavor)
-John E. Blaha 1980.0 9.0 Retired 1942-08-26 San Antonio, TX Male US Air Force Academy; Purdue University Engineering Science Astronautical Engineering Colonel US Air Force (Retired) 5 3861 0 0.0 STS-29 (Discovery), STS-33 (Discovery), STS-43 (Atlantis), STS-58 (Columbia), STS-79/81 (Atlantis/Atlantis)
-Michael J. Bloomfield 1995.0 15.0 Retired 1959-03-16 Flint, MI Male US Air Force Academy; Old Dominion University Engineering Mechanics Engineering Management Colonel US Air Force (Retired) 3 779 0 0.0 STS-86 (Atlantis), STS-97 (Endeavor), STS-110 (Atlantis)
-Guion S. Bluford Jr. 1978.0 8.0 Retired 1942-11-22 Philadelphia, PA Male Pennsylvania State University; Air Force Institute of Technology; University of Houston-Clear Lake Aerospace Engineering Aerospace Engineering; Business Administration Colonel US Air Force (Retired) 4 689 0 0.0 STS-8 (Challenger), STS 61-A (Challenger), STS-39 (Discovery), STS-53 (Discovery)
-Karol J. Bobko 1969.0 7.0 Retired 1937-12-23 New York, NY Male US Air Force Academy; University of Southern California Aerospace Engineering Colonel US Air Force (Retired) 3 386 0 0.0 STS-6 (Challenger), STS 51-D (Discovery), STS-51-J (Atlantis)
-Eric A. Boe 2000.0 18.0 Active 1964-10-01 Miami, FL Male US Air Force Academy; Georgia Institute of Technology Aeronautical Engineering Electrical Engineering Colonel US Air Force 2 687 0 0.0 STS-126 (Endeavor), STS-133 (Discovery)
-Charles F. Bolden Jr. 1980.0 9.0 Management 1946-08-19 Columbia, SC Male US Naval Academy; University of Southern California Electrical Science Systems Management Major General US Marine Corps (Retired) 4 680 0 0.0 STS-61C (Columbia), STS-31 (Discovery), STS-45 (Atlantis), STS-60 (Discovery)
-Frank Borman 1962.0 2.0 Retired 1928-03-14 Gary, IN Male US Military Academy; California Institute of Technology Aeronautical Engineering Colonel US Air Force (Retired) 2 477 0 0.0 Gemini 7, Apollo 8
-Stephen G. Bowen 2000.0 18.0 Active 1964-02-13 Cohasset, MA Male US Naval Academy; MIT Electrical Engineering Ocean Engineering Captain US Navy 3 970 7 47.0 STS-126 (Endeavor), STS-132 (Atlantis), STS-133 (Discovery)
-Kenneth D. Bowersox 1987.0 12.0 Retired 1956-11-14 Portsmouth, VA Male US Naval Academy; Columbia University Aerospace Engineering Mechanical Engineering Captain US Navy (Retired) 5 5078 2 13.0 STS-50 (Columbia), STS-61 (Endeavor), STS-73 (Columbia), STS-82 (Discovery), STS-113 (Endeavor/Soyuz)
-Charles E. Brady Jr. 1992.0 14.0 Deceased 1951-08-12 Pinehurst, NC Male University of North Carolina at Chapel Hill; Duke University Medicine Captain US Navy 1 405 0 0.0 STS-78 (Columbia) 2006-07-23
-Vance D. Brand 1966.0 5.0 Retired 1931-05-09 Longmont, CA Male University of Colorado; University of California Los Angeles Business Management; Aeronautical Engineering Business Administration US Marine Corps Reserves 4 752 0 0.0 Apollo-Soyuz Test Project, STS-5 (Columbia), STS 41-B (Challenger), STS-35 (Columbia)
-Daniel C. Brandenstein 1978.0 8.0 Retired 1943-01-17 Watertown, WI Male University of Wisconsin Mathematics & Physics Captain US Navy (Retired) 4 789 0 0.0 STS-8 (Challenger), STS 51-G (Discovery), STS-32 (Columbia), STS-49 (Endeavor)
-Randolph J. Bresnik 2004.0 19.0 Active 1967-09-11 Fort Knox, KY Male The Citadel; University of Tennessee-Knoxville Mathematics Aviation Systems Colonel US Marine Corps 1 259 2 12.0 STS-129 (Atlantis)
-Roy D. Bridges Jr. 1980.0 9.0 Retired 1943-07-19 Atlanta, GA Male US Air Force Academy; Purdue University Engineering Science Astronautics Major General US Air Force (Retired) 1 190 0 0.0 STS 51-F (Challenger)
-Curtis L. Brown Jr. 1987.0 12.0 Retired 1956-03-11 Elizabethtown, NC Male US Air Force Academy Electrical Engineering Colonel US Air Force (Retired) 6 1383 0 0.0 STS-47 (Endeavor), STS-66 (Atlantis), STS-77 (Endeavor), STS-85 (Discovery), STS-95 (Discovery), STS-103 (Discovery)
-David M. Brown 1996.0 16.0 Deceased 1956-04-16 Arlington, VA Male College of William & Mary; Eastern Virginia Medical School Biology Medicine Captain US Navy 1 382 0 0.0 STS-107 (Columbia) 2003-02-01 STS-107 (Columbia)
-Mark N. Brown 1984.0 10.0 Retired 1951-11-18 Valparaiso, IN Male Purdue University; Air Force Institute of Technology Aeronautical & Astronautical Engineering Astronautical Engineering Colonel US Air Force (Retired) 2 249 0 0.0 STS 28 (Columbia), STS-48 (Discovery)
-James F. Buchli 1978.0 8.0 Retired 1945-06-20 New Rockford, ND Male US Naval Academy; University of West Florida Aeronautical Engineering Aeronautical Engineering Systems Colonel US Marine Corps (Retired) 4 490 0 0.0 STS 51-C (Discovery), STS 61-A (Challenger), STS-29 (Discovery), STS-48 (Discovery
-Jay Clark Buckey Retired 1956-06-06 New York, NY Male Cornell University Electrical Engineering Medicine 1 381 0 0.0 STS-90 (Columbia)
-John S. Bull 1966.0 5.0 Deceased 1934-09-25 Memphis, TN Male Rice University; Stanford University Mechanical Engineering Aeronautical Engineering 0 0 0 0.0 2008-08-11
-Daniel C. Burbank 1996.0 16.0 Active 1961-07-27 Machester, CT Male US Coast Guard Academy; Embry-Riddle Aeronautical University Electrical Engineering Aeronautical Science Captain US Coast Guard (Retired) 3 4512 1 7.0 STS-106 (Atlantis), STS-115 (Atlantis), ISS-29/30 (Soyuz)
-Daniel W. Bursch 1990.0 13.0 Retired 1957-07-25 Bristol, PA Male US Naval Academy; US Naval Postgraduate School Physics Engineering Science Captain US Navy (Retired) 4 5446 2 12.0 STS-51 (Discovery), STS-68 (Endeavor), STS-77 (Endeavor), STS-108/111 (Endeavor)
-Robert D. Cabana 1985.0 11.0 Management 1949-01-23 Minneapolis, MN Male US Naval Academy Mathematics Colonel US Marine Corps (Retired) 4 910 0 0.0 STS-41 (Discovery), STS-53 (Discovery), STS-65 (Columbia), STS-88 (Endeavor)
-Yvonne D. Cagle 1996.0 16.0 Management 1959-04-24 West Point, NY Female San Francisco State University Biochemistry Colonel US Air Force 0 0 0 0.0
-Fernando Caldeiro 1996.0 16.0 Deceased 1958-06-12 Buenos Aires, Argentina Male University of Arizona; University of Central Florida Mechanical Engineering Engineering Management 0 0 0 0.0 2009-10-03
-Tracy E. Caldwell (Dyson) 1998.0 17.0 Active 1969-08-14 Arcadia, CA Female California State University-Fullerton; University of California-Davis Chemistry Physical Chemistry 2 4531 3 23.0 STS-118 (Endeavor), ISS-23/24 (Soyuz)
-Charles J. Camarda 1996.0 16.0 Management 1952-05-08 Queens, NY Male Polytechnic Institute of Brooklyn; George Washington University; Virginia Polytechnic Institute Aerospace Engineering Engineering Science; Aerospace Engineering 1 333 0 0.0 STS-114 (Discovery)
-Kenneth D. Cameron 1984.0 10.0 Retired 1949-11-29 Cleveland, OH Male MIT; Michigan State University Aeronautics & Astronautics Aeronautics & Astronautics; Business Administration Colonel US Marine Corps (Retired) 3 562 0 0.0 STS-37 (Atlantis), STS-56 (Discovery), STS-74 (Atlantis)
-Duane G. Carey 1996.0 16.0 Retired 1957-04-30 St. Paul, MN Male University of Minnesota-Minneapolis Aerospace Engineering & Mechanics Aerospace Engineering Lieutenant Colonel US Air Force (Retired) 1 262 0 0.0 STS-109 (Columbia)
-M. Scott Carpenter 1959.0 1.0 Retired 1925-05-01 Boulder, CO Male University of Colorado Aeronautical Engineering Commander US Navy (Retired) 1 4 0 0.0 Mercury 7
-Gerald P. Carr 1966.0 5.0 Retired 1932-08-22 Denver, CO Male University of Southern California; US Naval Postgraduate School; Princeton University Mechanical Engineering Aeronautical Engineering Colonel US Marine Corps (Retired) 1 2017 3 16.0 Skylab 4
-Manley Lanier Carter Jr. 1984.0 10.0 Deceased 1947-08-15 Macon, GA Male Emory University Chemistry Medicine Captain US Navy 1 120 0 0.0 STS-33 (Discovery) 1991-04-05
-John H. Casper 1984.0 10.0 Management 1943-07-09 Greenville, SC Male US Air Force Academy; Purdue University Engineering Science Astronautics Colonel US Air Force (Retired) 4 825 0 0.0 STS-36 (Atlantis), STS-54 (Endeavor), STS-62 (Columbia), STS-77 (Endeavor)
-Christopher J. Cassidy 2004.0 19.0 Active 1970-01-04 Salem, MA Male US Naval Academy; MIT Mathematics Ocean Engineering Commander US Navy 1 4376 6 31.0 STS-127 (Endeavor); ISS-35/36 (Soyuz)
-Robert Cenker Retired 1948-11-05 Uniontown, PA Male Pennsylvania State University; Rutgers University Aerospace Engineering Aerospace Engineering; Electrical Engineering 1 146 0 0.0 STS 61-C (Columbia)
-Eugene A. Cernan 1963.0 3.0 Retired 1934-03-14 Chicago, IL Male Purdue University; US Naval Postgraduate School Electrical Engineering Aeronautical Engineering Captain US Navy (Retired) 3 566 4 24.0 Gemini 9, Apollo 10, Apollo 17
-Roger B. Chaffee 1963.0 3.0 Deceased 1935-02-15 Grand Rapids, MI Male Purdue University Aeronautical Engineering Lieutenant Commander US Navy 1 0 0 0.0 Apollo 1 1967-01-27 Apollo 1
-Gregory E. Chamitoff 1998.0 17.0 Active 1962-08-06 Montreal, Canada Male California Polytechnic State University; California Institute of Technology; MIT Electrical Engineering Aeronautical Engineering; Aeronautics & Astronautics 2 4770 2 13.0 STS-124/126 (Discovery/Endeavor), STS-134 (Endeavor)
-Franklin R. Chang-Diaz 1980.0 9.0 Retired 1950-04-05 San Jose, Costa Rica Male University of Connecticut; MIT Mechanical Engineering Applied Plasma Physics 7 1602 3 19.0 STS 61-C (Columbia), STS-34 (Atlantis), STS-46 (Atlantis), STS-60 (Discovery), STS-75 (Columbia), STS-91 (Discovery), STS-111 (Endeavor)
-Philip K. Chapman 1967.0 6.0 Retired 1935-03-05 Melbourne, Australia Male University of Sydney; MIT Physics & Mathematics Aeronautics & Astronautics; Instrumentation 0 0 0 0.0
-Kalpana Chawla 1995.0 15.0 Deceased 1961-06-01 Karnal, India Female Punjab Engineering College; University of Texas-Arlington; University of Colorado Aeronautical Engineering Aerospace Engineering 2 734 0 0.0 STS-87 (Columbia), STS-107 (Columbia) 2003-02-01 STS-107 (Columbia)
-Leroy Chiao 1990.0 13.0 Retired 1960-08-28 Milwaukee, WI Male University of California-Berkeley; University of California-Santa Barbara Chemical Engineering Chemical Engineering 4 5503 6 36.0 STS-65 (Columbia), STS-72 (Endeavor), STS-92 (Discovery), ISS-10 (Soyuz)
-Kevin P. Chilton 1987.0 12.0 Retired 1954-03-11 Los Angeles, CA Male US Air Force Academy; Columbia University Engineering Science Mechanical Engineering Brigadier General US Air Force (Retired) 3 700 0 0.0 STS-49 (Endeavor), STS-59 (Endeavor), STS-76 (Atlantis)
-Laurel B. Clark 1996.0 16.0 Deceased 1961-03-10 Ames, IA Female University of Wisconsin-Madison Zoology Medicine Captain US Navy 1 382 0 0.0 STS-107 (Columbia) 2003-02-01 STS-107 (Columbia)
-Mary L. Cleave 1980.0 9.0 Retired 1947-02-05 Southampton, NY Female Colorado State University; Utah State University Biological Science Microbial Ecology; Environmental Engineering 2 262 0 0.0 STS 61-B (Atlantis), STS-30 (Atlantis)
-Michael R. Clifford 1990.0 13.0 Retired 1952-10-13 San Bernardino, CA Male US Military Academy; Georgia Institute of Technology Aerospace Engineering Lieutenant Colonel US Army (Retired) 3 666 1 6.0 STS-53 (Discovery), STS-59 (Endeavor), STS-76 (Atlantis)
-Michael L. Coats 1978.0 8.0 Retired 1946-01-16 Sacramento, CA Male US Naval Academy; George Washington University; US Naval Postgraduate School Science & Technology Administration; Aeronautical Engineering Captain US Navy (Retired) 3 463 0 0.0 STS 41-D (Discovery), STS-29 (Discovery), STS-39 (Discovery)
-Kenneth D. Cockrell 1990.0 13.0 Management 1950-04-09 Austin, TX Male University of Texas; University of West Florida Mechanical Engineering Aeronautical Systems US Naval Reserves 5 1548 0 0.0 STS-56 (Discovery), STS-69 (Endeavor), STS-80 (Columbia), STS-98 (Atlantis), STS-111 (Endeavor)
-Catherine G. Coleman 1992.0 14.0 Active 1960-12-14 Charleston, SC Female MIT; University of Massachusetts Chemistry Polymer Science & Engineering Colonel US Air Force (Retired) 3 4324 0 0.0 STS-73 (Columbia), STS-93 (Columbia), ISS-26/27 (Soyuz)
-Eileen M. Collins 1990.0 13.0 Retired 1959-11-19 Elmira, NY Female Syracuse University; Stanford University; Webster University Mathematics & Economics Operations Research; Space Systems Management Colonel US Air Force (Retired) 4 890 0 0.0 STS-63 (Discovery), STS-84 (Atlantis), STS-114 (Columbia), STS-93 (Discovery)
-Michael Collins 1963.0 3.0 Retired 1930-10-31 Rome, Italy Male US Military Academy US Air Force Reserves 2 266 1 1.0 Gemini 10, Apollo 11
-Charles Conrad Jr. 1962.0 2.0 Deceased 1930-05-02 Philadelphia, PA Male Princeton University Aeronautical Engineering Captain US Navy (Retired) 4 1179 4 12.0 Gemini 5, Gemini 11, Apollo 12, Skylab 2 1999-07-08
-L. Gordon Cooper Jr. 1959.0 1.0 Deceased 1927-03-06 Shawnee, OK Male Air Force Institute of Technology Aeronautical Engineering Colonel US Air Force (Retired) 2 225 0 0.0 Mercury 9, Gemini 5 2004-10-04
-Richard O. Covey 1978.0 8.0 Retired 1946-08-01 Fayetteville, AR Male US Air Force Academy; Purdue University Engineering Science Aeronautics & Astronautics Colonel US Air Force (Retired) 4 645 0 0.0 STS 51-l (Discovery), STS-26 (Discovery), STS-38 (Atlantis), STS-61 (Endeavor)
-Timothy J. Creamer 1998.0 17.0 Management 1959-11-15 Ft. Huachuca, AZ Male Loyola College; MIT Chemistry Physics Colonel US Army (Retired) 1 3917 0 0.0 ISS-22/23 (Soyuz)
-John O. Creighton 1978.0 8.0 Retired 1943-04-28 Orange, TX Male US Naval Academy; George Washington University Science & Technology Administration Captain US Navy (Retired) 3 404 0 0.0 STS 51-G (Discovery), STS-36 (Atlantis), STS-48 (Discovery)
-Robert L. Crippen 1969.0 7.0 Retired 1937-09-11 Beaumont, TX Male University of Texas Aerospace Engineering Captain US Navy (Retired) 4 565 0 0.0 STS-1 (Columbia), STS-7 (Challenger), STS 41-C (Challenger), STS 41-G (Challenger)
-Roger K. Crouch Retired 1940-09-12 Jamestown, TN Male Tennessee Polytechnic Institute; Virginia Polytechnic Institute Physics Physics 1 471 0 0.0 STS-83 (Columbia), STS-94 (Columbia)
-Frank L. Culbertson Jr. 1984.0 10.0 Retired 1949-05-15 Charleston, SC Male US Naval Academy Aerospace Engineering Captain US Navy (Retired) 3 3446 1 5.0 STS-38 (Atlantis), STS-51 (Discovery), STS-105/108 (Discovery/Endeavor)
-Walter Cunningham 1963.0 3.0 Retired 1932-03-16 Creston, IA Male University of California-Los Angeles Physics Physics Colonel US Marine Corps Reserves 1 260 0 0.0 Apollo 7
-Robert L. Curbeam Jr. 1995.0 15.0 Retired 1962-03-05 Baltimore, MD Male US Naval Academy; US Naval Postgraduate School Aerospace Engineering Aerospace Engineering; Aeronautical & Astronautical Engineering Captain US Navy (Retired) 3 902 7 45.0 STS-85 (Discovery), STS-98 (Atlantis), STS-116 (Discovery)
-Nancy J. Currie 1990.0 13.0 Management 1958-12-29 Wilmington, DE Female Ohio State University; University of Southern California; University of Houston Biological Science Safety Engineering; Industrial Engineering Colonel US Army (Retired) 4 999 0 0.0 STS-57 (Endeavor), STS-70 (Discovery), STS-88 (Endeavor), STS-109 (Columbia)
-N. Jan Davis 1987.0 12.0 Retired 1953-11-01 Cocoa Beach, FL Female Georgia Institute of Technology; Auburn University; University of Alabama-Huntsville Applied Biology; Mechanical Engineering Mechanical Engineering 3 673 0 0.0 STS-47 (Endeavor), STS-60 (Discovery), STS-85 (Discovery)
-Lawrence J. Delucas Retired 1950-07-11 Syracuse, NY Male University of Alabama at Birmingham Chemistry; Physiological Optics Chemistry; Biochemistry; Optometry 1 331 0 0.0 STS-50 (Columbia)
-Alvin B. Drew Jr. 2000.0 18.0 Active 1962-11-05 Washington, DC Male US Air Force Academy; Embry-Riddle Aeronautical University Physics & Astronautical Engineering Aerospace Science; Political Science Colonel US Air Force 2 613 2 13.0 STS-118 (Endeavor), STS-133 (Discovery)
-Brian Duffy 1985.0 11.0 Retired 1953-06-20 Boston, MA Male US Air Force Academy; University of Southern California Mathematics Systems Management Colonel US Air Force (Retired) 4 977 0 0.0 STS-45 (Atlantis), STS-57 (Endeavor), STS-72 (Endeavor), STS-92 (Discovery)
-Charles M. Duke Jr. 1966.0 5.0 Retired 1935-10-03 Charlotte, NC Male US Naval Academy; MIT Naval Sciences Aeronautics Brigadier General US Air Force (Retired) 1 265 3 20.0 Apollo 16
-Bonnie J. Dunbar 1980.0 9.0 Retired 1949-03-03 Sunnyside, WA Female University of Washington; University of Houston Ceramic Engineering Ceramic Engineering; Biomedical Engineering 5 1207 0 0.0 STS 61-A (Challenger), STS-32 (Columbia), STS-50 (Columbia), STS-71 (Atlantis), STS-89 (Endeavor)
-Samuel T. Durrance Retired 1943-09-17 Tallahassee, FL Male California State University; University of Colorado Physics Physics; Astrogeophysics 2 614 0 0.0 STS-35 (Columbia), STS-67 (Endeavor)
-James P. Dutton Jr. 2004.0 19.0 Management 1968-11-20 Eugene, OR Male US Air Force Academy; University of Washington Astronautical Engineering Aeronautics & Astronautics Colonel US Air Force 1 362 0 0.0 STS-131 (Discovery)
-Joe F. Edwards Jr. 1995.0 15.0 Retired 1958-02-03 Richmond, VA Male US Naval Academy; University of Tennessee-Knoxville Aerospace Engineering Aviation Systems Commander US Navy (Retired) 1 211 0 0.0 STS-89 (Endeavor)
-Donn F. Eisele 1963.0 3.0 Deceased 1930-05-23 Columbus, OH Male US Naval Academy; US Air Force Institute of Technology Astronautics Astronautics Colonel US Air Force (Retired) 1 260 0 0.0 Apollo 7 1987-12-02
-Anthony W. England 1967.0 6.0 Retired 1942-05-15 Indianapolis, IN Male MIT Geology Geology; Geophysics 1 190 0 0.0 STS 51-F (Challenger)
-Joe H. Engle 1966.0 5.0 Retired 1932-08-26 Dickinson, KS Male University of Kansas Aeronautical Engineering Major General US Air Force (Retired) 2 224 0 0.0 STS-2 (Columbia), STS 51-I (Discovery)
-Jeanette J. Epps 2009.0 20.0 Active 1970-11-03 Syracuse, NY Female LeMoyne College; University of Maryland Physics Aerospace Engineering 0 0 0 0.0
-Ronald E. Evans Jr. 1966.0 5.0 Deceased 1933-11-10 St. Francis, KS Male University of Kansas; US Naval Postgraduate School Electrical Engineering Aeronautical Engineering Captain US Navy (Retired) 1 301 1 1.0 Apollo 17 1990-04-06
-John M. Fabian 1978.0 8.0 Retired 1939-01-28 Goosecreek, TX Male Washington State University; US Air Force Institute of Technology; University of Washington Mechanical Engineering Aerospace Engineering; Aeronautics & Astronautics Colonel US Air Force (Retired) 2 316 0 0.0 STS-7 (Challenger), STS 51-G (Discovery)
-Christopher J. Ferguson 1998.0 17.0 Retired 1961-09-01 Philadelphia, PA Male Drexel University; US Naval Postgraduate School Mechanical Engineering Aeronautical Engineering Captain US Navy (Retired) 3 970 0 0.0 STS-115 (Atlantis), STS-126 (Endeavor), STS-135 (Atlantis)
-Martin J. Fettman Retired 1956-12-31 Brooklyn, NY Male Cornell University; Colorado State University Animal Nutrition Physiology 1 336 0 0.0 STS-58 (Columbia)
-Andrew J. Feustel 2000.0 18.0 Active 1965-08-25 Lancaster, PA Male Purdue University; Queen’s University-Canada Solid Earth Sciences Geophysics; Seismology 2 687 6 42.0 STS-125 (Atlantis), STS-134 (Endeavor)
-E. Michael Fincke 1996.0 16.0 Active 1967-03-14 Pittsburgh, PA Male MIT; Stanford University; University of Houston-Clear Lake Aeronautics & Astronautics; Earth, Atmospheric & Planetary Sciences Aeronautics & Astronautics; Physical Sciences Colonel US Air Force 3 9159 9 48.0 ISS-09 (Soyuz), ISS-18 (Soyuz), STS-134 (Endeavor)
-Jack D. Fischer 2009.0 20.0 Active 1974-01-23 Louisville, CO Male US Air Force Academy; MIT Astronautical Engineering Aeronautics & Astronautics 0 0 0 0.0
-Anna L. Fisher 1978.0 8.0 Management 1949-08-24 New York, NY Female University of California-Los Angeles Chemistry Chemistry; Medicine 1 191 0 0.0 STS 51-A (Discovery)
-William F. Fisher 1980.0 9.0 Retired 1946-04-01 Dallas, TX Male Stanford University; University of Houston; University of Florida Engineering; Medicine 1 170 2 12.0 STS 51-I (Discovery)
-C. Michael Foale 1987.0 12.0 Active 1957-01-06 Louth, England Male Cambridge University Physics Laboratory Astrophysics 6 8970 4 22.0 STS-45 (Atlantis), STS-56 (Discovery), STS-63 (Discovery), STS-84/86 (Atlantis), STS-103 (Discovery), ISS-08 (Soyuz)
-Kevin A. Ford 2000.0 18.0 Active 1960-07-07 Portland, IN Male University of Notre Dame; Troy State University; University of Florida; Air Force Institute of Technology Aerospace Engineering International Relations; Aerospace Engineering; Astronautical Engineering Colonel US Air Force (Retired) 2 3781 0 0.0 STS-128 (Discovery), ISS-33/34 (Soyuz)
-Michael J. Foreman 1998.0 17.0 Management 1957-03-29 Columbus, OH Male US Naval Academy; US Naval Postgraduate School Aerospace Engineering Aeronautical Engineering Captain US Navy (Retired) 2 637 5 32.0 STS-123 (Endeavor), STS-129 (Atlantis)
-Patrick G. Forrester 1996.0 16.0 Management 1957-03-31 El Paso, TX Male US Military Academy; University of Virginia Applied Science & Engineering Mechanical & Aerospace Engineering Colonel US Army (Retired) 3 950 4 25.0 STS-105 (Discovery), STS-117 (Atlantis), STS-128 (Discovery)
-Michael E. Fossum 1998.0 17.0 Active 1957-12-19 Sioux Falls, SD Male Texas A&M University; Air Force Institute of Technology; University of Houston-Clear Lake Mechanical Engineering Systems Engineering; Physical Science (Space Science) US Air Force Reserves (Retired) 3 4651 7 48.0 STS-121 (Discovery), STS-124 (Discovery), ISS-28/29 (Soyuz)
-Theodore C. Freeman 1963.0 3.0 Deceased 1930-02-18 Haversford, PA Male US Naval Academy; University of Michigan Aeronautical Engineering Captain US Air Force 0 0 0 0.0 1964-10-31
-Stephen N. Frick 1996.0 16.0 Management 1961-09-30 Pittsburgh, PA Male US Naval Academy; US Naval Postgraduate School Aerospace Engineering Aeronautical Engineering Captain US Navy (Retired) 2 566 0 0.0 STS-110 (Atlantis), STS-122 (Atlantis)
-C. Gordon Fullerton 1969.0 7.0 Retired 1936-10-11 Rochester, NY Male California Institute of Technology Mechanical Engineering Mechanical Engineering Colonel US Air Force (Retired) 2 382 0 0.0 STS-3 (Columbia), STS 51-F (Challenger)
-F. Andrew Gaffney Retired 1946-06-09 Carlsbad, NM Male University of California-Berkeley; University of New Mexico Psychology Medicine 1 218 0 0.0 STS-40 (Columbia)
-Ronald J. Garan Jr. 2000.0 18.0 Management 1961-10-20 Yonkers, NY Male State University of New York; Embry-Riddle Aeronautical University; University of Florida Business Economics Aeronautics; Aerospace Engineering Colonel US Air Force (Retired) 2 4271 4 27.0 STS-124 (Discovery), ISS-27/28 (Soyuz)
-Dale A. Gardner 1978.0 8.0 Retired 1948-11-08 Fairmont, MN Male University of Illinois Engineering Physics Captain US Navy (Retired) 2 336 2 12.0 STS-8 (Challenger), STS 51-A (Discovery)
-Guy S. Gardner 1980.0 9.0 Retired 1948-01-06 Alta Vista, VA Male US Air Force Academy; Purdue University Engineering Sciences; Astronautics & Mathematics Astronautics Colonel US Air Force (Retired) 2 320 0 0.0 STS-27 (Atlantis), STS-35 (Columbia)
-Jake Garn Retired 1932-10-12 Richfield. UT Male University of Utah Business Finance 1 167 0 0.0 STS 51-D (Discovery)
-Owen K. Garriott 1965.0 4.0 Retired 1930-11-22 Enid, OK Male University of Oklahoma; Stanford University Electrical Engineering Electrical Engineering 2 1674 3 14.0 Skylab 3, STS-9 (Columbia)
-Charles D. Gemar 1985.0 11.0 Retired 1955-08-04 Yanktown, SD Male US Military Academy Engineering Lieutenant Colonel US Army 3 581 0 0.0 STS-38 (Atlantis), STS-48 (Discovery), STS-62 (Columbia)
-Michael L. Gernhardt 1992.0 14.0 Management 1956-05-04 Mansfield, OH Male Vanderbilt University; University of Pennsylvania Physics Bioengineering 4 1039 4 23.0 STS-69 (Endeavor), STS-83 (Columbia), STS-94 (Columbia), STS-104 (Atlantis)
-Edward G. Gibson 1965.0 4.0 Retired 1936-11-08 Buffalo, NY Male University of Rochester; California Institute of Technology Engineering Engineering 1 2017 3 15.0 Skylab 4
-Robert L. Gibson 1978.0 8.0 Retired 1946-10-30 Cooperstown, NY Male California Polytechnic Institute Aeronautical Engineering Captain US Navy (Retired) 5 868 0 0.0 STS 41-B (Challenger), STS 61-C (Columbia), STS-27 (Atlantis), STS-47 (Endeavor), STS-71 (Atlantis)
-Edward G. Givens Jr. 1966.0 5.0 Deceased 1930-01-05 Quanah, TX Male US Naval Academy Naval Sciences Major US Air Force 0 0 0 0.0 1967-06-06
-John H. Glenn Jr. 1959.0 1.0 Retired 1921-07-18 Cambridge, OH Male Muskingum College Engineering Colonel US Marine Corps (Retired) 2 218 0 0.0 Mercury 6, STS-95 (Discovery)
-Linda M. Godwin 1985.0 11.0 Retired 1952-07-02 Cape Girardeau, MO Female Southeast Missouri State; University of Missouri Mathematics & Physics Physics 4 918 2 10.0 STS-37 (Atlantis), STS-59 (Endeavor), STS-76 (Atlantis), STS-108 (Endeavor)
-Michael T. Good 2000.0 18.0 Management 1962-10-13 Parma, OH Male University of Notre Dame Aerospace Engineering Aerospace Engineering Colonel US Air Force (Retired) 2 592 4 30.0 STS-125 (Atlantis), STS-132 (Atlantis)
-Richard F. Gordon Jr. 1963.0 3.0 Retired 1929-10-05 Seattle, WA Male University of Washington Chemistry Captain US Navy (Retired) 2 315 1 0.5 Gemini 11, Apollo 12
-Dominic L. Gorie 1995.0 15.0 Retired 1957-05-02 Lake Charles, LA Male US Naval Academy; University of Tennessee Ocean Engineering Aviation Systems Captain US Navy (Retired) 4 1167 0 0.0 STS-91 (Discovery), STS-99 (Endeavor), STS-123 (Endeavor), STS-108 (Endeavor)
-Ronald J. Grabe 1980.0 9.0 Retired 1945-06-13 New York, NY Male US Air Force Academy Engineering Science Colonel US Air Force (Retired) 4 627 0 0.0 STS 51-J (Atlantis), STS-30 (Atlantis), STS-42 (Discovery), STS-57 (Endeavor)
-Duane E. Graveline 1965.0 4.0 Retired 1931-03-02 Newport, VT Male University of Vermont; Johns Hopkins University Public Health; Medicine 0 0 0 0.0
-Frederick D. Gregory 1978.0 8.0 Retired 1941-01-07 Washington, DC Male US Air Force Academy; George Washington University Information Systems Colonel US Air Force (Retired) 3 455 0 0.0 STS 51-B (Challenger), STS-33 (Discovery), STS-44 (Atlantis)
-William G. Gregory 1990.0 13.0 Retired 1957-05-14 Lockport, NY Male US Air Force Academy; Columbia University; Troy State University Engineering Science Engineering Mechanics; Business Management Lieutenant Colonel US Air Force 1 399 0 0.0 STS-67 (Endeavor)
-S. David Griggs 1978.0 8.0 Deceased 1939-09-07 Portland, OR Male US Naval Academy; George Washington University Business Administration 1 167 1 3.0 STS 51-D (Discovery) 1989-06-17
-Virgil I. Grissom 1959.0 1.0 Deceased 1926-04-03 Mitchell, IN Male Purdue University Mechanical Engineering Lieutenant Colonel US Air Force 2 5 0 0.0 Mercury 4, Gemini 3, Apollo 1 1967-01-27 Apollo 1
-John M. Grunsfeld 1992.0 14.0 Management 1958-10-10 Chicago, IL Male MIT; University of Chicago Physics Physics 5 1407 8 58.0 STS-67 (Endeavor), STS-81 (Atlantis), STS-103 (Discovery), STS-125 (Atlantis), STS-109 (Columbia)
-Sidney M. Gutierrez 1984.0 10.0 Retired 1951-06-27 Albuquerque, NM Male US Air Force Academy; Webster College Aeronautical Engineering Business Management Colonel US Air Force (Retired) 2 488 0 0.0 STS-40 (Columbia), STS-59 (Endeavor)
-Fred W. Haise Jr. 1966.0 5.0 Retired 1933-11-14 Biloxi, MS Male University of Oklahoma Aeronautical Engineering 1 142 0 0.0 Apollo 13
-James D. Halsell Jr. 1990.0 13.0 Retired 1956-09-29 Monroe, LA Male US Air Force Academy; Troy State University; US Air Force Institute of Technology Engineering Business Management; Space Operations Colonel US Air Force (Retired) 5 1258 0 0.0 STS-65 (Columbia), STS-74 (Atlantis), STS-83 (Columbia), STS-94 (Columbia), STS-101 (Atlantis)
-Kenneth T. Ham 1998.0 17.0 Retired 1964-12-12 Plainfield, NJ Male US Naval Academy; US Naval Postgraduate School Aerospace Engineering Aeronautical Engineering Captain US Navy 2 612 0 0.0 STS-124 (Discovery), STS-132 (Atlantis)
-L. Blaine Hammond Jr. 1984.0 10.0 Retired 1952-01-16 Savannah, GA Male US Air Force Academy; Georgia Institute of Technology Engineering Science Engineering Science Colonel US Air Force (Retired) 2 462 0 0.0 STS-39 (Discovery), STS-64 (Discovery)
-Gregory J. Harbaugh 1987.0 12.0 Retired 1956-04-15 Cleveland, OH Male Purdue University; University of Houston-Clear Lake Aeronautical & Astronautical Engineering Physical Science 4 817 3 18.0 STS-39 (Discovery), STS-54 (Endeavor), STS-71 (Atlantis), STS-82 (Discovery)
-Bernard A. Harris Jr. 1990.0 13.0 Retired 1956-06-26 Temple, TX Male University of Houston; Texas Tech University Biology Medicine 2 438 1 5.0 STS-55 (Columbia), STS-63 (Discovery)
-Terry J. Hart 1978.0 8.0 Retired 1946-10-27 Pittsburgh, PA Male Lehigh University; MIT; Rutgers University Mechanical Engineering Mechanical Engineering; Electrical Engineering 1 167 0 0.0 STS 41-C (Challenger)
-Henry W. Hartsfield Jr. 1969.0 7.0 Retired 1933-11-21 Birmingham, AL Male Auburn University; University of Tennessee Physics Engineering Science Colonel US Air Force (Retired) 3 482 0 0.0 STS-4 (Columbia), STS 41-D (Discovery), STS 61-A (Challenger)
-Frederick H. Hauck 1978.0 8.0 Retired 1941-04-11 Long Beach, CA Male Tufts University; MIT Physics Nuclear Engineering Captain US Navy (Retired) 3 435 0 0.0 STS-7 (Challenger), STS 51-A (Discovery), STS-26 (Discovery)
-Steven A. Hawley 1978.0 8.0 Retired 1951-12-12 Ottawa, KS Male University of Kansas; University of California Physics & Astronomy Astronomy & Astrophysics 5 770 0 0.0 STS 41-D (Discovery), STS 61-C (Columbia), STS-31 (Discovery), STS-82 (Discovery), STS-93 (Columbia)
-Susan J. Helms 1990.0 13.0 Retired 1958-02-26 Charlotte, NC Female US Air Force Academy; Stanford University Aeronautical Engineering Aeronautics & Astronautics Lieutenant General US Air Force 5 5063 1 9.0 STS-54 (Endeavor), STS-64 (Discovery), STS-78 (Columbia), STS-101 (Atlantis), STS-102/105 (Discovery)
-Karl G. Henize 1967.0 6.0 Deceased 1926-10-17 Cincinnati, OH Male University of Virginia; University of Michigan Mathematics Astronomy 1 190 0 0.0 STS 51-F (Challenger) 1993-10-05
-Thomas J. Hennen Retired 1952-08-17 Albany, GA Male Chief Warrant Officer US Army (Retired) 1 166 0 0.0 STS-44 (Atlantis)
-Terence T. Henricks 1985.0 11.0 Retired 1952-07-05 Bryan, OH Male US Air Force Academy; Golden Gate University Civil Engineering Public Administration Colonel US Air Force (Retired) 4 1026 0 0.0 STS-44 (Atlantis), STS-55 (Columbia), STS-70 (Discovery), STS-78 (Columbia)
-Jose M. Hernandez 2004.0 19.0 Retired 1962-08-07 French Camp, CA Male University of the Pacific; University of California-Santa Barbara Electrical Engineering Electrical & Computer Engineering 1 332 0 0.0 STS-128 (Discovery)
-John B. Herrington 1996.0 16.0 Retired 1958-09-14 Wetumka, OK Male University of Colorado; US Naval Postgraduate School Applied Mathematics Aeronautical Engineering Commander US Navy (Retired) 1 330 3 20.0 STS-113 (Endeavor)
-Richard J. Hieb 1985.0 11.0 Retired 1955-09-21 Jamestown, ND Male Northwest Nazarene College; University of Colorado Mathematics & Physics Aerospace Engineering 3 766 3 18.0 STS-39 (Discovery), STS-49 (Endeavor), STS-65 (Columbia)
-Joan E. Higginbotham 1996.0 16.0 Retired 1964-08-03 Chicago, IL Female Southern Illinois University-Carbondale; Florida Institute of Technology Electrical Engineering Business Management; Space Systems 1 308 0 0.0 STS-116 (Discovery)
-David C. Hilmers 1980.0 9.0 Retired 1950-01-28 Clinton, IA Male Cornell University; US Naval Postgraduate School Mathematics Electrical Engineering Colonel US Marine Corps (Retired) 4 494 0 0.0 ST 51-J (Atlantis), STS-26 (Discovery), STS-36 (Atlantis), STS-42 (Discovery)
-Kathryn P. Hire 1995.0 15.0 Management 1959-08-26 Mobile, AL Female US Naval Academy; Florida State Institute of Technology Engineering Management Space Technology Captain US Naval Reserves 2 711 0 0.0 STS-90 (Columbia), STS-130 (Endeavor)
-Charles O. Hobaugh 1996.0 16.0 Retired 1961-11-05 Bar Harbor, ME Male US Naval Academy Aerospace Engineering Colonel US Marine Corps (Retired) 3 873 0 0.0 STS-104 (Atlantis), STS-118 (Endeavor), ST-129 (Atlantis)
-Jeffrey A. Hoffman 1978.0 8.0 Retired 1944-11-02 Brooklyn, NY Male Amherst College; Rice University; Harvard University Astronomy Materials Science; Astrophysics 5 1211 4 25.0 STS 51-D (Discovery), STS-35 (Columbia), STS-46 (Atlantis), STS-61 (Endeavor), STS-75 (Columbia)
-Donald L. Holmquest 1967.0 6.0 Retired 1939-04-07 Dallas, TX Male Southern Methodist University; Baylor University; University of Houston Electrical Engineering Physiology; Medicine; Law 0 0 0 0.0
-Michael S. Hopkins 2009.0 20.0 Active 1968-12-28 Lebanon, MO Male University of Illinois; Stanford University Aerospace Engineering Aerospace Engineering Colonel US Air Force 1 3990 2 13.0 ISS-37/38 (Soyuz)
-Scott J. Horowitz 1992.0 14.0 Retired 1957-03-24 Philadelphia, PA Male California State University-Northridge; Georgia Institute of Technology Engineering Aerospace Engineering Colonel US Air Force (Retired) 4 1137 0 0.0 STS-75 (Columbia), STS-82 (Discovery), STS-101 (Atlantis), STS-105 (Discovery)
-Millie Hughes-Fulford Retired 1945-12-21 Mineral Wells, TX Female Tarleton State University; Texas Woman’s University Chemistry & Biology 1 218 0 0.0 STS-40 (Columbia)
-Douglas G. Hurley 2000.0 18.0 Active 1966-10-21 Endicott, NY Male Tulane University Civil Engineering Colonel US Marine Corps 2 683 0 0.0 STS-127 (Endeavor), STS-135 (Atlantis)
-Rick D. Husband 1995.0 15.0 Deceased 1957-07-12 Amarillo, TX Male Texas Tech University; California State University Mechanical Engineering Mechanical Engineering Colonel US Air Force 2 617 0 0.0 STS-96 (Discovery), STS-107 (Columbia) 2003-02-01 STS-107 (Columbia)
-James B. Irwin 1966.0 5.0 Deceased 1930-03-17 Pittsburgh, PA Male US Naval Academy; University of Michigan Naval Sciences Aeronautical Engineering Colonel US Air Force (Retired) 1 295 3 20.0 Apollo 15 1991-08-08
-Marsha S. Ivins 1984.0 10.0 Retired 1951-04-15 Baltimore, MD Female University of Colorado Aerospace Engineering 5 1341 0 0.0 STS-32 (Columbia), STS-46 (Atlantis), STS-62 (Columbia), STS-81 (Atlantis), STS-98 (Atlantis)
-Gregory B. Jarvis Deceased 1944-08-24 Detroit, MI Male State University of New York at Buffalo; Northeastern University Electrical Engineering Electrical Engineering 1 0 0 0.0 STS 51-L (Challenger) 1986-01-28 STS 51-L (Challenger)
-Mae C. Jemison 1987.0 12.0 Retired 1956-10-17 Decatur, AL Female Stanford University; Cornell University Chemical Engineering Medicine 1 190 0 0.0 STS-47 (Endeavor)
-Tamara E. Jernigan 1985.0 11.0 Retired 1959-05-07 Chattanooga, TN Female Stanford University; University of California-Berkeley; Rice University Physics Engineering Science; Astronomy 5 1489 1 8.0 STS-40 (Columbia), STS-52 (Columbia), STS-67 (Endeavor), STS-80 (Columbia), STS-98 (Discovery)
-Brent W. Jett 1992.0 14.0 Retired 1958-10-05 Pontiac, MI Male US Naval Academy; US Naval Postgraduate School Aerospace Engineering Aeronautical Engineering Captain US Navy (Retired) 4 1002 0 0.0 STS-72 (Endeavor), STS-81 (Atlantis), STS-97 (Endeavor), STS-115 (Atlantis)
-Gregory C. Johnson 1998.0 17.0 Management 1954-07-30 Seattle, WA Male University of Washington Aerospace Engineering Captain US Navy (Retired) 1 309 0 0.0 STS-125 (Atlantis)
-Gregory H. Johnson 1998.0 17.0 Active 1962-05-12 London, England Male US Air Force Academy; Columbia University; University of Texas Aeronautical Engineering Flight Structures Engineering; Business Administration Colonel US Air Force (Retired) 2 755 0 0.0 STS-123 (Endeavor), STS-134 (Endeavor)
-Thomas D. Jones 1990.0 13.0 Retired 1955-01-22 Baltimore, MD Male US Air Force Academy; University of Arizona Planetary Science 4 1272 3 20.0 STS-59 (Endeavor), STS-68 (Endeavor), STS-80 (Columbia), STS-98 (Atlantis)
-Janet L. Kavandi 1995.0 15.0 Management 1959-07-17 Springfield, MO Female Missouri Southern State College; University of Missouri; University of Washington Chemistry Chemistry 3 812 0 0.0 STS-91 (Discovery), STS-99 (Endeavor), STS-104 (Atlantis)
-James M. Kelly 1996.0 16.0 Management 1964-05-14 Burlington, IA Male US Air Force Academy; University of Alabama Astronautical Engineering Aerospace Engineering Colonel US Air Force (Retired) 2 641 0 0.0 STS-102 (Discovery), STS-114 (Discovery)
-Mark E. Kelly 1996.0 16.0 Retired 1964-02-21 Orange, NJ Male US Merchant Marine Academy; US Naval Postgraduate School Marine Engineering & Nautical Science Aeronautical Engineering Captain US Navy (Retired) 4 1298 0 0.0 STS-108 (Endeavor), STS-121 (Discovery), STS-124 (Discovery), STS-134 (Endeavor)
-Scott J. Kelly 1996.0 16.0 Active 1964-02-21 Orange, NJ Male State University of New York Maritime College; University of Tennessee-Knoxville Electrical Engineering Aviation Systems Captain US Navy (Retired) 4 12490 3 18.0 STS-103 (Discovery), STS-118 (Endeavor), ISS-25/26 (Soyuz), ISS-43/44/45/46 (Soyuz)
-Joseph P. Kerwin 1965.0 4.0 Retired 1932-02-19 Oak Park, IL Male College of the Holy Cross; Northwestern University Philosophy Medicine Captain US Navy (Retired) 1 672 1 3.0 Skylab 2
-Susan L. Kilrain (Still) 1995.0 15.0 Retired 1961-10-24 Augusta, GA Female Embry-Riddle University; Georgia Institute of Technology Astronautical Engineering Aerospace Engineering Commander US Navy (Retired) 2 472 0 0.0 STS-83 (Columbia), STS-94 (Columbia)
-Robert Shane Kimbrough 2004.0 19.0 Active 1967-06-04 Killeen, TX Male US Military Academy; Georgia Institute of Technology Aerospace Engineering Operations Research Colonel US Army 3 3720 4 25.0 STS-126 (Endeavor), ISS-49/50 (Soyuz)
-Timothy L. Kopra 2000.0 18.0 Active 1963-04-09 Austin, TX Male US Military Academy; Georgia Institute of Technology; US Army War College Computer Science Aerospace Engineering; Strategic Studies Colonel US Army (Retired) 2 5857 3 13.0 STS-127/128 (Endeavor/Discovery), ISS-46/47 (Soyuz)
-Kevin R. Kregel 1992.0 14.0 Retired 1956-09-16 New York, NY Male US Air Force Academy; Troy State University Astronautical Engineering Public Administration 4 1265 0 0.0 STS-70 (Discovery), STS-78 (Columbia), STS-87 (Columbia), STS-99 (Endeavor)
-Wendy B. Lawrence 1992.0 14.0 Retired 1959-07-02 Jacksonville, FL Female US Naval Academy; MIT Ocean Engineering Ocean Engineering Captain US Navy (Retired) 4 1223 0 0.0 STS-67 (Endeavor), STS-86 (Atlantis), STS-91 (Discovery), STS-114 (Discovery)
-Mark C. Lee 1984.0 10.0 Retired 1952-08-14 Viroqua, WI Male US Air Force Academy; MIT Civil Engineering Mechanical Engineering Colonel US Air Force (Retired) 4 789 4 26.0 STS-30 (Atlantis), STS-47 (Endeavor), STS-64 (Discovery), STS-82 (Discovery)
-David C. Leestma 1980.0 9.0 Management 1949-05-06 Muskegon, MI Male US Naval Academy; US Naval Postgraduate School Aeronautical Engineering Aeronautical Engineering Captain US Navy (Retired) 3 532 1 3.0 STS 41-G (Challenger), STS-28 (Columbia), STS-45 (Atlantis)
-William B. Lenoir 1967.0 6.0 Deceased 1939-03-14 Miami, FL Male MIT Electrical Engineering Electrical Engineering 1 122 0 0.0 STS-5 (Columbia) 2012-08-26
-Fred W. Leslie Retired 1951-12-19 Ancon, Panama Male University of Texas; University of Oklahoma Engineering Science Meteorology 1 381 0 0.0 STS-73 (Columbia)
-Byron K. Lichtenberg Retired 1948-02-19 Stroudsburg, PA Male Brown University; MIT Aerospace Engineering Mechanical Engineering; Biomedical Engineering 2 461 0 0.0 STS-9 (Columbia), STS-45 (Atlantis)
-Don L. Lind 1966.0 5.0 Retired 1930-05-18 Midvale, UT Male University of Utah; University of California-Berkley Physics Nuclear Physics 1 168 0 0.0 STS 51-B (Challenger)
-Kjell N. Lindgren 2009.0 20.0 Active 1973-01-23 Taipei, Taiwan Male US Air Force Academy; University of Colorado; Colorado State University; University of Minnesota; University of Texas Medical Branch-Galveston Biology Medicine; Cardiovascular Physiology; Health Informatics; Public Health 1 3400 2 15.0 ISS-44/45 (Soyuz)
-Steven W. Lindsey 1995.0 15.0 Retired 1960-08-24 Arcadia, CA Male US Air Force Academy; US Air Force Institute of Technology Engineering Science Aeronautical Engineering Colonel US Air Force (Retired) 5 1510 0 0.0 STS-87 (Columbia), STS-95 (Discovery), STS-104 (Atlantis), STS-121 (Discovery), STS-133 (Discovery)
-Jerry M. Linenger 1992.0 14.0 Retired 1955-01-16 Mount Clemens, MI Male US Naval Academy; University of Southern California; University of North Carolina; Wayne State University Bioscience Systems Management; Public Health; Medicine; Epidemiology Captain US Navy (Retired) 2 3435 1 5.0 STS-64 (Discovery), STS-81/84 (Atlantis)
-Richard M. Linnehan 1992.0 14.0 Management 1957-09-19 Lowell, MA Male University of New Hampshire; Ohio State University; Harvard University Animal Science Veterinary Medicine; Public Administration 4 1427 6 43.0 STS-78 (Columbia), STS-90 (Columbia), STS-109 (Columbia), STS-123 (Endeavor)
-Gregory T. Linteris Retired 1957-10-04 Demarest, NJ Male Princeton University; Stanford University Chemical Engineering Mechanical Engineering; Mechanical & Aerospace Engineering 2 471 0 0.0 STS-83 (Columbia), STS-94 (Columbia)
-John A. Llewellyn 1967.0 6.0 Retired 1933-04-22 Cardiff, Wales Male University College at Cardiff Chemistry Chemistry 0 0 0 0.0
-Paul S. Lockhart 1996.0 16.0 Retired 1956-04-28 Amarillo, TX Male Texas Tech University; University of Texas Mathematics Aerospace Engineering Colonel US Air Force (Retired) 2 663 0 0.0 STS-111 (Endeavor), STS-113 (Endeavor)
-Michael E. Lopez-Alegria 1992.0 14.0 Retired 1958-05-30 Madrid, Spain Male US Naval Academy; US Naval Postgraduate School Systems Engineering Aeronautical Engineering Captain US Navy (Retired) 3 6190 10 67.0 STS-73 (Columbia), STS-92 (Discovery), STS-113 (Endeavor), ISS-14 (Soyuz)
-Christopher J. Loria 1996.0 16.0 Retired 1960-07-09 Belmont, MA Male US Naval Academy; Harvard University Engineering Public Administration Colonel US Marine Corps (Retired) 0 0 0 0.0
-J. Mike Lounge 1980.0 9.0 Deceased 1946-06-28 Denver, CO Male US Naval Academy; University of Colorado Mathematics & Physics Astrogeophysics 3 483 0 0.0 STS 51-I (Discovery), STS-26 (Discovery), STS-35 (Columbia) 2011-03-01
-Jack R. Lousma 1966.0 5.0 Retired 1936-02-29 Grand Rapids, MI Male University of Michigan; US Naval Postgraduate School Aeronautical Engineering Aeronautical Engineering Colonel US Marine Corps (Retired) 2 1619 2 11.0 Skylab 3, STS-3 (Columbia)
-Stanley G. Love 1998.0 17.0 Management 1965-06-08 San Diego, CA Male Harvey Mudd College; University of Washington Physics Astronomy 1 306 2 15.0 STS-122 (Atlantis)
-James A. Lovell Jr. 1962.0 2.0 Retired 1928-03-25 Cleveland, OH Male US Naval Academy Captain US Navy (Retired) 4 715 0 0.0 Gemini 7, Gemini 12, Apollo 8, Apollo 13
-G. David Low 1984.0 10.0 Deceased 1956-02-19 Cleveland, OH Male Washington & Lee University; Cornell University; Stanford University Physics & Engineering Mechanical Engineering; Aeronautics & Astronautics 3 714 1 6.0 STS-32 (Columbia), STS-43 (Atlantis), STS-57 (Endeavor) 2008-03-15
-Edward T. Lu 1995.0 15.0 Retired 1963-07-01 Springfield, MA Male Cornell University; Stanford University Electrical Engineering Applied Physics 3 4962 1 6.0 STS-84 (Atlantis), STS-106 (Atlantis), ISS-07 (Soyuz)
-Shannon W. Lucid 1978.0 8.0 Retired 1943-01-14 Shanghai, China Female University of Oklahoma Chemistry Biochemistry 5 5354 0 0.0 STS 51-G (Discovery), STS-34 (Atlantis), STS-43 (Atlantis), STS-58 (Columbia), STS-76/79 (Atlantis)
-Sandra H. Magnus 1996.0 16.0 Retired 1964-10-30 Belleville, IL Female University of Missouri-Rolla; Georgia Institute of Technology Physics Electrical Engineering; Materials Science & Engineering 3 3776 0 0.0 STS-112 (Atlantis), STS-126/119 (Endeavor/Discovery), STS-135 (Atlantis)
-Thomas H. Marshburn 2004.0 19.0 Active 1960-08-29 Statesville, NC Male Davidson College; University of Virginia; Wake Forest University; University of Texas Medical Branch-Galveston Physics Engineering Physics; Medicine; Medical Science 2 3871 4 24.0 STS-127 (Endeavor), ISS-34/35 (Soyuz)
-Michael J. Massimino 1996.0 16.0 Management 1962-08-19 Oceanside, NY Male Columbia University; MIT Industrial Engineering Technology & Policy; Mechanical Engineering 2 571 4 30.0 STS-109 (Columbia), STS-125 (Atlantis)
-Richard A. Mastracchio 1996.0 16.0 Active 1960-02-11 Waterbury, CT Male University of Connecticut; Rensselaer Polytechnic Institute; University of Houston-Clear Lake Electrical Engineering; Computer Science Electrical Engineering; Physical Sciences 4 5461 9 53.0 STS-106 (Atlantis), STS-118 (Endeavor), STS-131 (Discovery), ISS-38/39 (Soyuz)
-Thomas K. Mattingly II 1966.0 5.0 Retired 1936-03-17 Chicago, IL Male Auburn University Aeronautical Engineering Rear Admiral US Navy (Retired) 3 508 1 1.0 Apollo 16, STS-4 (Columbia), STS 51-C (Discovery)
-K. Megan McArthur 2000.0 18.0 Active 1971-08-30 Honolulu, HI Female University of California-Los Angeles; University of California-San Diego Aerospace Engineering Oceanography 1 309 0 0.0 STS-125 (Atlantis)
-William S. McArthur Jr. 1990.0 3.0 Management 1951-07-26 Laurinburg, NC Male US Military Academy; Georgia Institute of Technology Applied Science & Engineering Aerospace Engineering Colonel US Army (Retired) 4 5398 4 24.0 STS-58 (Columbia), STS-74 (Atlantis), STS-92 (Discovery), ISS-12 (Soyuz)
-S. Christa McAuliffe Deceased 1948-09-02 Boston, MA Female Framingham State College; Bowie State College Education Education 1 0 0 0.0 STS 51-L (Challenger) 1986-01-28 STS 51-L (Challenger)
-Jon A. McBride 1978.0 8.0 Retired 1943-08-14 Charleston, WV Male US Naval Postgraduate School Aeronautical Engineering Captain US Navy (Retired) 1 197 0 0.0 STS 41-G (Challenger)
-Bruce McCandless II 1966.0 5.0 Retired 1937-06-08 Boston, MA Male US Naval Academy; Stanford University; University of Houston-Clear Lake Electrical Engineering; Business Administration Captain US Navy (Retired) 2 312 2 12.0 STS 41-B (Challenger), STS-31 (Discovery)
-William C. McCool 1996.0 16.0 Deceased 1961-09-23 San Diego, CA Male US Naval Academy; University of Maryland; US Naval Postgraduate School Naval Sciences Computer Science; Aeronautical Engineering Commander US Navy 1 382 0 0.0 STS-107 (Columbia) 2003-02-01 STS-107 (Columbia)
-Michael J. McCulley 1984.0 10.0 Retired 1943-08-04 San Diego, CA Male Purdue University Metallurgical Engineering Metallurgical Engineering Captain US Navy (Retired) 1 119 0 0.0 STS-34 (Atlantis)
-James A. McDivitt 1984.0 2.0 Retired 1929-06-10 Chicago, IL Male University of Michigan Astronautical Engineering Brigadier General US Air Force (Retired) 2 338 0 0.0 Gemini 4, Apollo 9
-Donald R. McMonagle 1987.0 12.0 Retired 1952-05-14 Flint, MI Male US Air Force Academy; California State University-Fresno Astronautical Engineering Mechanical Engineering Colonel US Air Force (Retired) 3 605 0 0.0 STS-39 (Discovery), STS-54 (Endeavor), STS-66 (Atlantis)
-Ronald E. McNair 1978.0 8.0 Deceased 1950-10-21 Lake City, SC Male North Carolina A&T State College; MIT Physics Physics 2 191 0 0.0 STS 41-B (Challenger), STS 51-L (Challenger) 1986-01-28 STS 51-L (Challenger)
-Carl J. Meade 1985.0 11.0 Retired 1950-11-16 Chanute Air Force Base, IL Male University of Texas; California Institute of Technology Electronics Engineering Electronics Engineering Colonel US Air Force (Retired) 3 712 1 6.0 STS-38 (Atlantis), STS-50 (Columbia), STS-64 (Discovery)
-Bruce E. Melnick 1987.0 12.0 Retired 1949-12-05 New York, NY Male US Coast Guard Academy; West Florida University Engineering Aeronautical Systems Commander US Coast Guard (Retired) 2 311 0 0.0 STS-41 (Discovery), STS-49 (Endeavor)
-Pamela A. Melroy 1995.0 15.0 Retired 1961-09-17 Palo Alto, CA Female Wellesley College; MIT Physics & Astronomy Earth & Planetary Sciences Colonel US Air Force (Retired) 3 914 0 0.0 STS-92 (Discovery), STS-112 (Atlantis), STS-120 (Discovery)
-Leland D. Melvin 1998.0 17.0 Management 1964-02-15 Lynchburg, VA Male University of Richmond; University of Virginia Chemistry Materials Science Engineering 2 565 0 0.0 STS-122 (Atlantis), STS-129 (Atlantis)
-Dorothy M. Metcalf-Lindenberger 2004.0 19.0 Active 1975-05-02 Colorado Springs, CO Female Whitman College Geology 1 362 0 0.0 STS-131 (Discovery)
-F. Curtis Michel 1965.0 4.0 Retired 1934-06-05 LaCrosse, WI Male California Institute of Technology Physics Physics 0 0 0 0.0
-Edgar D. Mitchell 1966.0 5.0 Retired 1930-09-17 Hereford, TX Male Carnegie-Mellon University; US Naval Postgraduate School; MIT Industrial Management Aeronautical Engineering; Aeronautics & Astronautics Captain US Navy (Retired) 1 216 2 9.0 Apollo 14
-Barbara R. Morgan 1998.0 17.0 Retired 1951-11-28 Fresno, CA Female Stanford University Human Biology 1 305 0 0.0 STS-118 (Endeavor)
-Lee M. Morin 1996.0 16.0 Management 1952-09-09 Manchester, NH Male University of New Hampshire; University of Alabama-Birmingham; New York University Mathematical & Electrical Science Public Health; Biochemistry; Medicine; Microbiology Captain US Navy 1 259 2 14.0 STS-110 (Atlantis)
-Richard M. Mullane 1978.0 8.0 Retired 1945-09-10 Wichita Falls, TX Male US Military Academy; US Air Force Institute of Technology Military Engineering Aeronautical Engineering Colonel US Air Force (Retired) 3 356 0 0.0 STS 41-D (Discovery), STS-27 (Atlantis), STS-36 (Atlantis)
-Story Musgrave 1967.0 6.0 Retired 1935-08-19 Boston, MA Male Syracuse University; Marietta College; University of California-Los Angeles; University of Kentucky; University of Houston; Columbia University Mathematics & Statistics; Chemistry Business Administration; Physiology; Literature; Medicine 6 1281 4 26.0 STS-6 (Challenger), STS 51-F (Challenger), STS-33 (Discovery), STS-44 (Atlantis), STS-61 (Endeavor), STS-80 (Columbia)
-Steven R. Nagel 1978.0 8.0 Retired 1946-10-27 Canton, IL Male University of Illinois; California State University-Fresno Aerospace Engineering Mechanical Engineering Colonel US Air Force (Retired) 4 721 0 0.0 STS 51-G (Discovery), STS 61-A (Challenger), STS-37 (Atlantis), STS-55 (Columbia)
-Bill Nelson Retired 1942-09-29 Miami, FL Male Yale University; University of Virginia Law Captain US Army (Retired) 1 146 0 0.0 STS 61-C (Columbia)
-George D. Nelson 1978.0 8.0 Retired 1950-07-13 Charles City, IA Male Harvey Mudd College; University of Washington Physics Astronomy 3 411 2 10.0 STS 41-C (Challenger), STS 61-C (Columbia), STS-26 (Discovery)
-James H. Newman 1990.0 13.0 Retired 1956-10-16 San Diego, CA Male Dartmouth College; Rice University Physics Physics 4 1042 6 43.0 STS-51 (Discovery), STS-69 (Endeavor), STS-88 (Endeavor), STS- 109 (Columbia)
-Carlos I. Noriega 1995.0 15.0 Retired 1959-10-08 Lima, Peru Male University of Southern California; US Naval Postgraduate School Computer Science Computer Science; Space Systems Operations Lieutenant Colonel US Marine Corps (Retired) 2 481 3 19.0 STS-84 (Atlantis), STS-97 (Endeavor)
-Lisa M. Nowak 1996.0 16.0 Retired 1963-05-10 Washington, DC Female US Naval Academy; US Naval Postgraduate School Aerospace Engineering Aeronautical Engineering Captain US Navy (Retired) 1 306 0 0.0 STS-121 (Discovery)
-Karen L. Nyberg 2000.0 18.0 Active 1969-10-07 Parker’s Prairie, MN Female University of North Dakota; University of Texas Mechanical Engineering Mechanical Engineering 2 4320 0 0.0 STS-124 (Discovery), ISS-36/37 (Soyuz)
-Bryan D. O'Connor 1980.0 9.0 Retired 1946-09-06 Orange, CA Male US Naval Academy; West Florida University Engineering Aeronautical Systems Colonel US Marine Corps (Retired) 2 383 0 0.0 STS 61-B (Atlantis), STS-40 (Columbia)
-Brian T. O'Leary 1967.0 6.0 Deceased 1940-01-27 Boston, MA Male Williams College; Georgetown University; University of California-Berkeley Physics Astronomy 0 0 0 0.0 2011-07-28
-Ellen Ochoa 1990.0 13.0 Management 1958-05-10 Los Angeles, CA Female San Diego State University; Stanford University Physics Electrical Engineering 4 979 0 0.0 STS-56 (Discovery), STS-66 (Atlantis), STS-96 (Discovery), STS-110 (Atlantis)
-William A. Oefelein 1998.0 17.0 Retired 1965-03-29 Ft. Belvoir, VA Male Oregon State University; University of Tennessee Electrical Engineering Aviation Systems Commander US Navy (Retired) 1 308 0 0.0 STS-116 (Discovery)
-John D. Olivas 1998.0 17.0 Retired 1966-05-25 North Hollywood, CA Male University of Texas-El Paso; University of Houston; Rice University Mechanical Engineering Mechanical Engineering; Mechanical Engineering & Materials Science 2 665 5 34.0 STS-117 (Atlantis), STS-128 (Discovery)
-Ellison S. Onizuka 1978.0 8.0 Deceased 1946-06-24 Kealakekua, HI Male University of Colorado Aerospace Engineering Aerospace Engineering Lieutenant Colonel US Air Force 2 73 0 0.0 STS 51-C (Discovery), STS 51-L (Challenger) 1986-01-28 STS 51-L (Challenger)
-Stephen S. Oswald 1985.0 11.0 Retired 1951-06-30 Seattle, WA Male US Naval Academy Aerospace Engineering 3 814 0 0.0 STS-42 (Discovery), STS-56 (Discovery), STS-67 (Endeavor)
-Robert F. Overmyer 1969.0 7.0 Deceased 1936-07-14 Lorain, OH Male Baldwin Wallace College; US Naval Postgraduate School Physics Aeronautics Colonel US Marine Corps (Retired) 2 290 0 0.0 STS-5 (Columbia), STS 51-B (Challenger) 1996-03-22
-William A. Pailes Retired 1952-06-26 Hackensack, NJ Male US Air Force Academy; Texas A&M University Computer Science Computer Science Colonel US Air Force (Retired) 1 97 0 0.0 STS 51-J (Atlantis)
-Scott E. Parazynski 1992.0 14.0 Retired 1961-07-28 Little Rock, AR Male Stanford University Biology Medicine 5 1404 7 47.0 STS-66 (Atlantis), STS-86 (Atlantis), STS-95 (Discovery), STS-100 (Endeavor), STS-120 (Discovery)
-Ronald A. Parise Deceased 1951-05-24 Warren, OH Male Youngstown State University; University of Florida Physics Astronomy 2 614 0 0.0 STS-35 (Columbia), STS-67 (Endeavor) 2008-05-09
-Robert A. Parker 1967.0 6.0 Retired 1936-12-14 New York, NY Male Amherst College; California Institute of Technology Physics & Astronomy Astronomy 2 462 0 0.0 STS-9 (Columbia), STS-35 (Columbia)
-Niclolas J. M. Patrick 1998.0 17.0 Retired 1964-03-22 North Yorkshire, England Male University of Cambridge; MIT Engineering Engineering; Mechanical Engineering 2 638 3 18.0 STS-116 (Discovery), STS-130 (Endeavor)
-James A. Pawelczyk Retired 1960-09-20 Buffalo, NY Male University of Rochester; Pennsylvania State University; University of North Texas Biology & Psychology Physiology; Biology 1 381 0 0.0 STS-90 (Columbia)
-Gary E. Payton Retired 1948-06-20 Rock Island, IL Male US Air Force Academy; Purdue University Astronautical Engineering Astronautical & Aeronautical Engineering Major US Air Force 1 73 0 0.0 STS 51-C (Discovery)
-Donald H. Peterson 1969.0 7.0 Retired 1933-10-22 Winona, MS Male US Military Academy; US Air Force Institute of Technology Nuclear Engineering Colonel US Air Force (Retired) 1 120 1 4.0 STS-6 (Challenger)
-Donald R. Pettit 1996.0 16.0 Active 1955-04-20 Silverton, OR Male Oregon State University; University of Arizona Chemical Engineering Chemical Engineering 3 8872 2 13.0 ISS-6 (Soyuz), STS-126 (Endeavor), ISS-30/31 (Soyuz)
-John L. Phillips 1996.0 16.0 Retired 1951-04-15 Ft. Belvoir, VA Male US Naval Academy; University of West Florida; University of California-Los Angeles Mathematics; Russian Aeronautical Systems; Geophysics & Space Physics Captain US Naval Reserves (Retired) 3 4880 1 5.0 STS-100 (Endeavor), ISS-11 (Soyuz), STS-119 (Discovery)
-William R. Pogue 1966.0 5.0 Retired 1930-01-23 Okemah, OK Male Oklahoma Baptist University; Oklahoma State University Education Mathematics Colonel US Air Force (Retired) 1 2017 2 13.0 Skylab 4
-Alan G. Poindexter 1998.0 17.0 Deceased 1961-11-05 Pasadena, CA Male Georgia Institute of Technology; US Naval Postgraduate School Aerospace Engineering Aeronautical Engineering Captain US Navy 2 669 0 0.0 STS-122 (Atlantis), STS-131 (Discovery) 2012-07-01
-Mark L. Polansky 1996.0 16.0 Retired 1956-06-02 Paterson, NJ Male Purdue University Aeronautical & Astronautical Engineering Aeronautical & Astronautical Engineering 3 995 0 0.0 STS-98 (Atlantis), ST-116 (Discovery), STS-127 (Endeavor)
-Charles J. Precourt 1990.0 13.0 Retired 1955-06-29 Waltham, MA Male US Air Force Academy; Golden Gate University; US Naval War College Aeronautical Engineering Engineering Management; Strategic Studies Colonel US Air Force (Retired) 4 950 0 0.0 STS-55 (Columbia), STS-71 (Atlantis), STS-84 (Atlantis), STS-91 (Discovery)
-William F. Readdy 1987.0 12.0 Retired 1952-01-24 Quonset Point, RI Male US Naval Academy Aerospace Engineering Captain US Navy (Retired) 3 672 0 0.0 STS-42 (Discovery), STS-51 (Discovery), STS-79 (Atlantis)
-Kenneth S. Reightler Jr. 1987.0 12.0 Retired 1951-03-24 Patuxent River, MD Male US Naval Academy; US Naval Postgraduate School; University of Southern California Aerospace Engineering Aeronautical Engineering; Systems Management Captain US Navy (Retired) 2 327 0 0.0 STS-48 (Discovery), STS-60 (Discovery)
-James F. Reilly II 1995.0 15.0 Retired 1954-03-18 Mountain Home Air Force Base, ID Male University of Texas-Dallas Geosciences Geosciences 3 854 5 31.0 STS-89 (Endeavor), STS-104 (Atlantis), STS-117 (Atlantis)
-Garrett E. Reisman 1998.0 17.0 Retired 1968-02-10 Morristown, NJ Male University of Pennsylvania; California Institute of Technology Economics Mechanical Engineering 2 2571 3 21.0 STS-123/124 (Endeavor/Discovery), STS-132 (Atlantis)
-Judith A. Resnik 1978.0 8.0 Deceased 1949-04-05 Akron, OH Female Carnegie-Mellon University; University of Maryland Electrical Engineering Electrical Engineering 2 144 0 0.0 STS 41-D (Discovery), STS 51-L (Challenger) 1986-01-28 STS 51-L (Challenger)
-Paul W. Richards 1996.0 16.0 Management 1964-05-20 Scranton, PA Male Drexel University; University of Maryland Mechanical Engineering Mechanical Engineering 1 307 1 6.0 STS-102 (Discovery)
-Richard N. Richards 1980.0 9.0 Retired 1946-08-24 Key West, FL Male University of Missouri; University of West Florida Chemical Engineering Aeronautical Systems Captain US Navy (Retired) 4 813 0 0.0 STS-28 (Columbia), STS-41 (Discovery), STS-50 (Columbia), STS-64 (Discovery)
-Sally K. Ride 1978.0 8.0 Deceased 1951-05-26 Los Angeles, CA Female Stanford University Physics; English Physics 2 343 0 0.0 STS-7 (Challenger), STS 41-G (Challenger) 2012-07-23
-Patricia Hilliard Robertson 1998.0 17.0 Deceased 1963-03-12 Indiana, PA Female Indiana University of Pennsylvania; Medical College of Pennsylvania Biology Medicine 0 0 0 0.0 2001-05-24
-Stephen K. Robinson 1995.0 15.0 Retired 1955-10-26 Sacramento, CA Male University of California-Davis; Stanford University Mechanical & Aeronautical Engineering Mechanical Engineering 4 1162 3 20.0 STS-85 (Discovery), STS-95 (Discovery), STS-114 (Discovery), STS-130 (Endeavor)
-Kent V. Rominger 1992.0 14.0 Retired 1956-08-07 Del Norte, CO Male Colorado State University; US Naval Postgraduate School Civil Engineering Aeronautical Engineering Captain US Navy (Retired) 5 1611 0 0.0 STS-73 (Columbia), STS-80 (Columbia), STS-85 (Discovery), STS-96 (Discovery), STS-100 (Endeavor)
-Stuart A. Roosa 1966.0 5.0 Deceased 1933-08-16 Durango, CO Male University of Colorado Aeronautical Engineering Colonel US Air Force (Retired) 1 216 0 0.0 Apollo 14 1994-12-12
-Jerry L. Ross 1980.0 9.0 Retired 1948-01-20 Crown Point, IN Male Purdue University Mechanical Engineering Mechanical Engineering Colonel US Air Force (Retired) 7 1393 9 58.0 ST 61-B (Atlantis), ST-27 (Atlantis), ST-37 (Atlantis), STS-55 (Columbia), STS-74 (Atlantis), STS-88 (Endeavor), STS-110 (Atlantis)
-Kathleen Rubins 2009.0 20.0 Active 1978-10-14 Farmington, CT Female University of California-San Diego; Stanford University Molecular Biology Cancer Biology 1 2762 2 13.0 ISS-48/49 (Soyuz)
-Mario Runco Jr. 1987.0 12.0 Management 1952-01-26 Bronx, NY Male City College of New York; Rutgers University Earth & Planetary Science Atmospheric Physics Lieutenant Commander US Navy (Retired) 3 551 0 0.0 STS-44 (Atlantis), STS-54 (Endeavor), STS-77 (Endeavor) 2001-04-23
-Albert Sacco Jr. Retired 1949-05-03 Boston, MA Male Northeastern University; MIT Chemical Engineering Chemical Engineering 1 381 0 0.0 STS-73 (Columbia)
-Robert L. Satcher Jr. 2004.0 19.0 Retired 1965-09-22 Hampton, VA Male MIT; Harvard University Chemical Engineering Chemical Engineering; Medicine 1 259 2 12.0 STS-129 (Atlantis)
-Walter M. Schirra Jr. 1959.0 1.0 Deceased 1923-03-12 Hackensack, NJ Male US Naval Academy Naval Sciences Captain US Navy (Retired) 3 295 0 0.0 Mercury 8, Gemini 6, Apollo 7 2007-05-02
-Harrison H. Schmitt 1965.0 4.0 Retired 1935-07-03 Santa Rita, NM Male California Institute of Technology; Harvard University Geology Geology 1 301 3 22.0 Apollo 17
-Russell L. Schweickart 1963.0 3.0 Retired 1935-10-25 Neptune, NJ Male MIT Aeronautics & Astronautics Aeronautics & Astronautics 1 241 1 1.0 Apollo 9
-Francis R. Scobee 1978.0 8.0 Deceased 1939-05-19 Cle Elum, WA Male University of Arizona Aerospace Engineering Major US Air Force (Retired) 2 167 0 0.0 STS 41-C (Challenger), STS 51-L (Challenger) 1986-01-28 STS 51-L (Challenger)
-David R. Scott 1963.0 3.0 Retired 1932-06-06 San Antonio, TX Male US Military Academy; MIT Aeronautics & Astronautics Colonel US Air Force (Retired) 3 546 4 19.0 Gemini 8, Apollo 9, Apollo 15
-Winston E. Scott 1992.0 14.0 Retired 1950-08-06 Miami, FL Male Florida State University; US Naval Postgraduate School Music Aeronautical Engineering Captain US Navy (Retired) 2 590 3 19.0 STS-72 (Endeavor), STS-87 (Columbia)
-Paul D. Scully-Power Retired 1944-05-28 Sydney, Australia Male University of Sydney Applied Mathematics 1 197 0 0.0 STS 41-G (Challenger)
-Richard A. Searfoss 1990.0 13.0 Retired 1956-06-05 Mount Clemens, MI Male US Air Force Academy; California Institute of Technology Aeronautical Engineering Aeronautics Colonel US Air Force (Retired) 3 939 0 0.0 STS-58 (Columbia), STS-76 (Atlantis), STS-90 (Columbia)
-Margaret Rhea Seddon 1978.0 8.0 Retired 1947-11-08 Murfreesboro, TN Female University of California-Berkeley; University of Tennessee Physiology Medicine 3 722 0 0.0 STS 51-D (Discovery), STS-40 (Columbia), STS-58 (Columbia)
-Elliot M. See Jr. 1962.0 2.0 Deceased 1927-07-23 Dallas, TX Male US Merchant Marine Academy; University of California-Los Angeles Engineering 0 0 0 0.0 1966-02-28
-Ronald M. Sega 1990.0 13.0 Retired 1952-12-04 Cleveland, OH Male US Air Force Academy; Ohio State University; University of Colorado Physics & Mathematics Physics; Electrical Engineering Colonel US Air Force Reserves (Retired) 2 420 0 0.0 STS-60 (Discovery), STS-76 (Atlantis)
-Piers J. Sellers 1996.0 16.0 Management 1955-04-11 Crowborough, England Male University of Edinburgh; Leeds University Ecological Science Biometeorology 3 839 6 41.0 STS-112 (Atlantis), STS-121 (Discovery), STS-132 (Atlantis)
-Brewster H. Shaw Jr. 1978.0 8.0 Retired 1945-05-16 Cass City, MI Male University of Wisconsin Engineering Mechanics Engineering Mechanics Colonel US Air Force (Retired) 3 533 0 0.0 STS-9 (Columbia), STS 61-B (Atlantis), STS-28 (Columbia)
-Alan B. Shepard Jr. 1959.0 1.0 Deceased 1923-11-18 East Derry, NH Male US Naval Academy Naval Sciences Rear Admiral US Navy (Retired) 2 216 2 9.0 Mercury 3, Apollo 14 1998-07-21
-William M. Shepherd 1984.0 10.0 Retired 1949-07-26 Oak Ridge, TN Male US Naval Academy; MIT Aerospace Engineering Mechanical Engineering Captain US Navy (Retired) 4 3823 0 0.0 STS-37 (Atlantis), STS-41 (Discovery), STS-52 (Columbia), ISS-01/STS-102 (Soyuz/Discovery)
-Loren J. Shriver 1978.0 8.0 Retired 1944-09-23 Jefferson, IA Male US Air Force Academy; Purdue University Aeronautical Engineering Astronautical Engineering Colonel US Air Force (Retired) 3 386 0 0.0 STS 51-C (Discovery), STS-31 (Discovery), STS-46 (Atlantis)
-Donald K. Slayton 1959.0 1.0 Deceased 1924-03-01 Sparta, WI Male University of Minnesota Aeronautical Engineering Major US Air Force Reserves 1 217 0 0.0 Apollo-Soyuz Test Project 1993-06-13
-Michael J. Smith 1980.0 9.0 Deceased 1945-04-30 Beaufort, NC Male US Naval Academy; US Naval Postgraduate School Naval Sciences Aeronautical Engineering Captain US Navy 1 0 0 0.0 STS 51-L (Challenger) 1986-01-28 STS 51-L (Challenger)
-Steven L. Smith 1992.0 14.0 Management 1958-12-30 Phoenix, AZ Male Stanford University Electrical Engineering Electrical Engineering 4 960 7 49.0 STS-68 (Endeavor), STS-82 (Discovery), STS-103 (Discovery), STS-110 (Atlantis)
-Sherwood C. Spring 1980.0 9.0 Retired 1944-09-23 Hartford, CT Male US Military Academy; University of Arizona Engineering Aerospace Engineering Colonel US Army (Retired) 1 165 2 12.0 STS 61-B (Atlantis)
-Robert C. Springer 1980.0 9.0 Retired 1942-05-21 St. Louis, MO Male US Naval Academy; US Naval Postgraduate School Naval Sciences Operations Research Colonel US Marine Corps (Retired) 2 237 0 0.0 STS-29 (Discovery), STS-38 (Atlantis)
-Thomas P. Stafford 1962.0 2.0 Retired 1930-09-17 Weatherford, OK Male US Naval Academy Lieutenant General US Air Force (Retired) 4 507 0 0.0 Gemini 6, Gemini 9, Apollo 10, Apollo-Soyuz Test Project
-Heidemarie M. Stefanyshyn-Piper 1996.0 16.0 Retired 1963-02-07 St. Paul, MN Female MIT Mechanical Engineering Captain US Navy 2 663 2 33.0 STS-115 (Atlantis), STS-126 (Endeavor)
-Robert L. Stewart 1978.0 8.0 Retired 1942-08-13 Washington, DC Male University of Southern Mississippi; University of Texas-Arlington Mathematics Aerospace Engineering Brigadier General US Army (Retired) 2 289 2 12.0 STS 41-B (Challenger), STS 51-J (Atlantis)
-Nicole P. Stott 2000.0 18.0 Active 1962-11-19 Albany, NY Female Embry-Riddle Aeronautical University; University of Central Florida Aeronautical Engineering Engineering Management 2 2477 1 6.0 STS-128/129 (Discovery/Atlantis), STS-133 (Discovery)
-Frederick W. Sturckow 1995.0 15.0 Retired 1961-08-11 La Mesa, CA Male California Polytechnic State University Mechanical Engineering Colonel US Marine Corps (Retired) 4 1233 0 0.0 STS-88 (Endeavor), STS-105 (Discovery), STS-117 (Atlantis), STS-128 (Discovery)
-Kathryn D. Sullivan 1978.0 8.0 Retired 1951-10-03 Patterson, NJ Female University of California-Santa Cruz; Dalhousie University Earth Sciences Earth Sciences; Geology 3 532 1 3.0 STS 41-G (Challenger), STS-31 (Discovery), STS-45 (Atlantis)
-Steven R. Swanson 1998.0 17.0 Active 1960-12-03 Syracuse, NY Male University of Colorado; Florida Atlantic University; Texas A&M University Engineering Physics Computer Systems; Computer Science 3 4700 5 28.0 STS-117 (Atlantis), STS-119 (Discovery), ISS-39/40 (Soyuz)
-John L. Swigert Jr. 1966.0 5.0 Deceased 1931-08-30 Denver, CO Male University of Colorado; Rensselaer Polytechnic Institute; University of Hartford Mechanical Engineering Aerospace Science; Business Administration 1 142 0 0.0 Apollo 13 1982-12-27
-Daniel M. Tani 1996.0 16.0 Retired 1961-02-01 Ridley Park, PA Male MIT Mechanical Engineering Mechanical Engineering 2 3162 6 39.0 STS-108 (Endeavor), STS-120/122 (Discovery/Atlantis)
-Joseph R. Tanner 1992.0 14.0 Retired 1950-01-21 Danville, IL Male University of Illinois Mechanical Engineering 4 1045 7 46.0 STS-66 (Atlantis), STS-82 (Discovery), STS-97 (Endeavor), STS-115 (Discovery)
-Norman E. Thagard 1978.0 8.0 Retired 1943-07-03 Marianna, FL Male Florida State University; University of Texas Engineering Science Engineering Science; Medicine 5 3373 0 0.0 STS-7 (Challenger), STS 51-B (Challenger), STS-30 (Atlantis), STS-42 (Discovery), STS-71 (Soyuz/Atlantis)
-Andrew S. W. Thomas 1992.0 14.0 Management 1951-12-18 Adelaide, Australia Male University of Adelaide Mechanical Engineering Mechanical Engineering 4 4257 1 6.0 STS-77 (Endeavor), STS-89/91 (Endeavor/Discovery), STS-102 (Discovery), STS-114 (Discovery)
-Donald A. Thomas 1990.0 13.0 Retired 1955-05-06 Cleveland, OH Male Case Western Reserve University; Cornell University Physics Materials Science 4 1040 0 0.0 STS-65 (Columbia), STS-70 (Discovery), STS-83 (Columbia), STS-94 (Columbia)
-Stephen D. Thorne 1985.0 11.0 Deceased 1953-02-11 Frankfurt, West Germany Male US Naval Academy Engineering Lieutenant Commander US Navy 0 0 0 0.0 1986-05-24
-Kathryn C. Thornton 1984.0 10.0 Retired 1952-08-17 Montgomery, AL Female Auburn University; University of Virginia Physics Physics 4 975 3 21.0 STS-33 (Discovery), STS-49 (Endeavor), STS-61 (Endeavor), STS-73 (Columbia)
-William E. Thornton 1967.0 6.0 Retired 1929-04-14 Faison, NC Male University of North Carolina Physics Medicine 2 315 0 0.0 STS-8 (Challenger), STS 51-B (Challenger)
-Pierre J. Thuot 1985.0 11.0 Retired 1955-05-19 Groton, CT Male US Naval Academy; University of Southern California Physics Systems Management Commander US Navy 3 654 3 17.0 STS-36 (Atlantis), STS-49 (Endeavor), STS-62 (Columbia)
-Scott D. Tingle 2009.0 20.0 Active 1965-07-19 Attleboro, MA Male Southeastern Massachusetts University; Purdue University Mechanical Engineering Mechanical Engineering Commander US Navy 0 0 0 0.0
-Richard H. Truly 1969.0 7.0 Retired 1937-11-12 Fayette, MS Male Georgia Institute of Technology Aeronautical Engineering Vice Admiral US Navy (Retired) 2 199 0 0.0 STS-2 (Columbia), STS-8 (Challenger)
-Lodewijk van den Berg Retired 1932-03-24 Sluiskil, Netherlands Male Delft University of Technology; University of Delaware Chemical Engineering Applied Science 1 168 0 0.0 STS 51-B (Challenger)
-James D. van Hoften 1978.0 8.0 Retired 1944-06-11 Fresno, CA Male University of California-Berkeley; Colorado State University Civil Engineering Hydraulic Engineering; Fluid Mechanics 2 338 4 22.0 STS 41-C (Challenger), STS 51-I (Discovery)
-Mark T. Vande Hei 2009.0 20.0 Active 1966-11-10 Falls Church, VA Male Saint John’s University; Stanford University Physics Applied Physics Colonel US Army 0 0 0 0.0
-Charles Lacy Veach 1984.0 10.0 Deceased 1944-09-18 Chicago, IL Male US Air Force Academy Engineering Management 2 436 0 0.0 STS-39 (Discovery), STS-52 (Columbia) 1995-10-03
-Terry W. Virts Jr. 2000.0 18.0 Active 1967-12-01 Baltimore, MD Male US Air Force Academy; Embry-Riddle Aeronautical University Mathematics Aeronautics Colonel US Air Force 2 5122 3 18.0 STS-130 (Endeavor), ISS-42/43 (Soyuz)
-James S. Voss 1987.0 12.0 Retired 1949-03-03 Cordova, AL Male Auburn University; University of Colorado Aerospace Engineering Aerospace Engineering Sciences Colonel US Army (Retired) 5 4853 4 22.0 STS-44 (Atlantis), STS-53 (Discovery), STS-69 (Endeavor), STS-101 (Atlantis), STS-102/105 (Discovery)
-Janice E. Voss 1990.0 13.0 Deceased 1956-10-08 South Bend, IN Female Purdue University; MIT Engineering Science Electrical Engineering; Aeronautics & Astronautics 5 1179 0 0.0 STS-57 (Endeavor), STS-63 (Discovery), STS-83 (Columbia), STS-94 (Columbia), STS-99 (Endeavor) 2012-02-06
-Rex J. Walheim 1996.0 16.0 Active 1962-10-10 Redwood, CA Male University of California-Berkeley; University of Houston Mechanical Engineering Industrial Engineering Colonel US Air Force (Retired) 3 872 5 36.0 STS-110 (Atlantis), STS-122 (Atlantis), STS-135 (Atlantis)
-Charles D. Walker Retired 1948-08-29 Bedford, IN Male Purdue University Aeronautical & Astronautical Engineering 3 477 0 0.0 STS 41-D (Discovery), STS 51-D (Discovery), STS 61-B (Atlantis)
-David M. Walker 1978.0 8.0 Deceased 1944-05-20 Columbus, GA Male US Naval Academy Naval Sciences Captain US Navy (Retired) 4 724 0 0.0 STS 51-A (Discovery), STS-30 (Atlantis), STS-53 (Discovery), STS-69 (Endeavor) 2001-04-23
-Shannon Walker 2004.0 19.0 Active 1965-06-04 Houston, TX Female Rice University Space Physics Space Physics 1 3919 0 0.0 ISS-24/25 (Soyuz)
-Carl E. Walz 1990.0 13.0 Retired 1955-09-06 Cleveland, OH Male Kent State University; John Carroll University Physics Solid State Physics Colonel US Air Force 4 5533 3 19.0 STS-51 (Discovery), STS-65 (Columbia), STS-79 (Atlantis), STS-108/111 (Endeavor)
-Taylor G. Wang Retired 1940-06-16 Jiangxi, China Male University of California at Los Angeles Physics Physics 1 168 0 0.0 STS 51-B (Challenger)
-Mary E. Weber 1992.0 14.0 Retired 1962-08-24 Cleveland, OH Female Purdue University; University of California-Berkeley Chemical Engineering Physical Chemistry 2 450 0 0.0 STS-70 (Discovery), STS-101 (Atlantis)
-Paul J. Weitz 1966.0 5.0 Retired 1932-06-25 Erie, PA Male Pennsylvania State University; US Naval Postgraduate School Aeronautical Engineering Aeronautical Engineering Captain US Navy (Retired) 2 793 1 2.0 Skylab 2, STS-6 (Challenger)
-James D. Wetherbee 1984.0 10.0 Retired 1952-11-27 Flushing, NY Male University of Notre Dame Aerospace Engineering Captain US Navy (Retired) 6 1594 0 0.0 STS-32 (Columbia), STS-52 (Columbia), STS-63 (Discovery), STS-86 (Atlantis), STS-102 (Discovery), STS-113 (Endeavor)
-Douglas H. Wheelock 1998.0 17.0 Active 1960-05-05 Binghamton, NY Male US Military Academy; Georgia Institute of Technology Applied Science & Engineering Aerospace Engineering Colonel US Army 2 4281 6 43.0 STS-120 (Discovery), ISS-24/25 (Soyuz)
-Edward H. White II 1962.0 2.0 Deceased 1930-11-14 San Antonio, TX Male US Military Academy; University of Michigan Aeronautical Engineering Lieutenant Colonel US Air Force 2 97 1 0.5 Gemini 4, Apollo 1 1967-01-27 Apollo 1
-Peggy A. Whitson 1996.0 16.0 Active 1960-02-09 Mt. Ayr, IA Female Iowa Wesleyan College; Rice University Chemistry & Biology Biochemistry 3 11698 7 46.0 STS-111/113 (Endeavor), ISS-16 (Soyuz), ISS-50/51 (Soyuz)
-Terrence W. Wilcutt 1990.0 13.0 Management 1949-10-31 Russellville, KY Male Western Kentucky University Mathematics 4 1008 0 0.0 STS-68 (Endeavor), STS-79 (Atlantis), STS-89 (Endeavor), STS-106 (Atlantis)
-Clifton C. Williams Jr. 1963.0 3.0 Deceased 1932-09-26 Mobile, AL Male Auburn University Mechanical Engineering Major US Marine Corps 0 0 0 0.0 1967-10-05
-Donald E. Williams 1978.0 8.0 Retired 1958-02-13 Lafayette, IN Male Purdue University Mechanical Engineering Captain US Navy (Retired) 2 287 0 0.0 STS 51-D (Discovery), STS-34 (Atlantis)
-Jeffrey N. Williams 1996.0 16.0 Active 1958-01-18 Superior, WI Male US Military Academy; US Naval Postgraduate School; US Naval War College Applied Science & Engineering Aeronautical Engineering; National Security & Strategic Studies Colonel US Army (Retired) 4 12818 5 32.0 STS-101 (Atlantis), ISS-13 (Soyuz), ISS-21/22 (Soyuz), ISS-47/48 (Soyuz)
-Sunita L. Williams 1998.0 17.0 Active 1965-09-19 Euclid, OH Female US Naval Academy; Florida Institute of Technology Physical Science Engineering Management Captain US Navy 2 7721 7 50.0 STS-116/117 (Discovery/Atlantis), ISS-32/33 (Soyuz)
-Barry E. Wilmore 2000.0 18.0 Active 1962-12-29 Murfreesboro, TN Male Tennessee Technological University; University of Tennessee Electrical Engineering Electrical Engineering; Aviation Systems Captain US Navy 2 4272 4 25.0 STS-129 (Atlantis), ISS-41/42 (Soyuz)
-Stephanie D. Wilson 1996.0 16.0 Active 1966-09-27 Boston, MA Female Harvard University; University of Texas Engineering Science Aerospace Engineering 3 1031 0 0.0 STS-121 (Discovery), STS-120 (Discovery), STS-131 (Discovery)
-G. Reid Wiseman 2009.0 20.0 Active 1975-11-11 Baltimore, MD Male Rensselaer Polytechnic Institute; Johns Hopkins University Computer & Systems Engineering Systems Engineering Commander US Navy 1 3968 2 13.0 ISS-40/41 (Soyuz)
-Peter J. K. Wisoff 1990.0 13.0 Retired 1958-08-16 Norfolk, VA Male University of Virginia; Stanford University Physics Applied Physics 4 1064 3 20.0 STS-57 (Endeavor), STS-68 (Endeavor), STS-81 (Atlantis), STS-92 (Discovery)
-David A. Wolf 1990.0 13.0 Retired 1956-08-23 Indianapolis, IN Male Purdue University; Indiana University Electrical Engineering Medicine 3 4044 7 41.0 STS-58 (Columbia). STS-86/89 (Atlantis/Endeavor), STS-112 (Atlantis), STS-127 (Endeavor)
-Neil W. Woodward III 1998.0 17.0 Retired 1962-07-26 Chicago, IL Male MIT; University of Texas-Austin; George Washington University Physics Physics; Business Management Commander US Navy 0 0 0 0.0
-Alfred M. Worden 1966.0 5.0 Retired 1932-02-07 Jackson, MI Male US Military Academy; University of Michigan Military Science Aeronautical & Astronautical Engineering Colonel US Air Force (Retired) 1 295 1 0.5 Apollo 15
-John W. Young 1962.0 2.0 Retired 1930-09-24 San Francisco, CA Male Georgia Institute of Technology Aeronautical Engineering Captain US Navy (Retired) 6 835 3 20.0 Gemini 3, Gemini 10, Apollo 10, Apollo 16, STS-1 (Columbia), STS-9 (Columbia)
-George D. Zamka 1998.0 17.0 Retired 1962-06-29 Jersey City, NJ Male US Naval Academy; Florida Institute of Technology Mathematics Engineering Management Colonel US Marine Corps (Retired) 2 692 0 0.0 STS-120 (Discovery), STS-130 (Endeavor)
+Name,Year,Group,Status,Birth Date,Birth Place,Gender,Alma Mater,Undergraduate Major,Graduate Major,Military Rank,Military Branch,Space Flights,Space Flight (hr),Space Walks,Space Walks (hr),Missions,Death Date,Death Mission
+Joseph M. Acaba,2004.0,19.0,Active,1967-05-17,"Inglewood, CA",Male,University of California-Santa Barbara; University of Arizona,Geology,Geology,,,2,3307,2,13.0,"STS-119 (Discovery), ISS-31/32 (Soyuz)",,
+Loren W. Acton,,,Retired,1936-03-07,"Lewiston, MT",Male,Montana State University; University of Colorado,Engineering Physics,Solar Physics,,,1,190,0,0.0,STS 51-F (Challenger),,
+James C. Adamson,1984.0,10.0,Retired,1946-03-03,"Warsaw, NY",Male,US Military Academy; Princeton University,Engineering,Aerospace Engineering,Colonel,US Army (Retired),2,334,0,0.0,"STS-28 (Columbia), STS-43 (Atlantis)",,
+Thomas D. Akers,1987.0,12.0,Retired,1951-05-20,"St. Louis, MO",Male,University of Missouri-Rolla,Applied Mathematics,Applied Mathematics,Colonel,US Air Force (Retired),4,814,4,29.0,"STS-41 (Discovery), STS-49 (Endeavor), STS-61 (Endeavor), STS-79 (Atlantis)",,
+Buzz Aldrin,1963.0,3.0,Retired,1930-01-20,"Montclair, NJ",Male,US Military Academy; MIT,Mechanical Engineering,Astronautics,Colonel,US Air Force (Retired),2,289,2,8.0,"Gemini 12, Apollo 11",,
+Andrew M. Allen,1987.0,12.0,Retired,1955-08-04,"Philadelphia, PA",Male,Villanova University; University of Florida,Mechanical Engineering,Business Administration,Lieutenant Colonel,US Marine Corps (Retired),3,906,0,0.0,"STS-46 (Atlantis), STS-62 (Columbia), STS-75 (Columbia)",,
+Joseph P. Allen,1967.0,6.0,Retired,1937-06-27,"Crawsfordsville, IN",Male,DePauw University; Yale University,Mathematics & Physics,Physics,,,2,313,2,12.0,"ST-5 (Columbia), STS 51-A (Discovery)",,
+Scott D. Altman,1995.0,15.0,Retired,1959-08-15,"Lincoln, IL",Male,University of Illinois; US Naval Postgraduate School,Aeronautical & Astronautical Engineering,Aeronautical Engineering,Captain,US Navy (Retired),4,1236,0,0.0,"STS-90 (Columbia), STS-106 (Atlantis), STS-109 (Columbia), STS-125 (Atlantis)",,
+William A. Anders,1963.0,3.0,Retired,1933-10-17,Hong Kong,Male,US Naval Academy; Air Force Institute of Technology,Nuclear Engineering,Nuclear Engineering,Major General,US Air Force Reserves (Retired),1,147,0,0.0,Apollo 8,,
+Clayton C. Anderson,1998.0,17.0,Retired,1959-02-23,"Omaha, NE",Male,Hastings College; Iowa State University,Physics,Aerospace Engineering,,,2,4005,6,38.0,"STS-117/120 (Atlantis/Discovery), STS-131 (Discovery)",,
+Michael P. Anderson,1995.0,15.0,Deceased,1959-12-25,"Plattsburgh, NY",Male,University of Washington; Creighton University,Physics & Astronomy,Physics,Lieutenant Colonel,US Air Force,2,594,0,0.0,"STS-89 (Endeavor), STS-107 (Columbia)",2003-02-01,STS-107 (Columbia)
+Dominic A. Antonelli,2000.0,18.0,Active,1967-08-23,"Detroit, MI",Male,MIT; University of Washington,Aeronautics & Astronautics,Aeronautics & Astronautics,Commander,US Navy,2,579,0,0.0,"STS-119 (Discovery), STS-132 (Atlantis)",,
+Jerome Apt III ,1985.0,11.0,Retired,1949-04-18,"Springfield, MA",Male,Harvard University; MIT,Physics,Physics,,,4,847,2,11.0,"STS-37 (Atlantis), STS-47 (Endeavor), STS-59 (Endeavor), STS-79 (Atlantis)",,
+Lee J. Archambault,1998.0,17.0,Retired,1960-08-25,"Oak Park, IL",Male,University of Illinois-Urbana,Aeronautical & Astronautical Engineering,Aeronautical & Astronautical Engineering,Colonel,US Air Force,2,639,0,0.0,"STS-117 (Atlantis), STS-119 (Discovery)",,
+Neil A. Armstrong,1962.0,2.0,Deceased,1930-08-05,"Wapakoneta, OH",Male,Purdue University; University of Southern California,Aeronautical Engineering,Aerospace Engineering,,,2,205,1,2.0,"Gemini 8, Apollo 11",2012-08-25,
+Richard R. Arnold II ,2004.0,19.0,Active,1963-11-26,"Cheverly, MD",Male,Frostburg State University; University of Maryland,Accounting,Environmental Science,,,1,307,2,12.0,STS-119 (Discovery),,
+Jeffrey S. Ashby,1995.0,15.0,Retired,1954-06-01,"Dallas, TX",Male,University of Idaho; University of Tennessee,Mechanical Engineering,Aviation Systems,Captain,US Navy (Retired),3,655,0,0.0,"STS-93 (Columbia), STS-100 (Endeavor), STS-112 (Atlantis)",,
+Serena M. Aunon,2009.0,20.0,Active,1976-04-09,"Indianapolis, IN",Female,George Washington University; University of Texas,Electrical Engineering,Medicine,,,0,0,0,0.0,,,
+James P. Bagian,1980.0,9.0,Retired,1952-02-22,"Philadelphia, PA",Male,Drexel University; Thomas Jefferson University,Mechanical Engineering,Medicine,,,2,337,0,0.0,"STS-29 (Discovery), STS-40 (Columbia)",,
+Ellen S. Baker,1984.0,10.0,Retired,1953-04-27,"Fayettesville, NC",Female,State University of New York-Buffalo; Cornell University; University of Texas,Geology,Medicine; Public Health,,,3,686,0,0.0,"STS-34 (Atlantis), STS-50 (Columbia), STS-71 (Atlantis)",,
+Michael A. Baker,1985.0,11.0,Management,1953-10-27,"Memphis, TN",Male,University of Texas,Aerospace Engineering,,Captain,US Navy (Retired),4,965,0,0.0,"STS-43 (Atlantis), STS-52 (Columbia), STS-68 (Endeavor), STS-81 (Atlantis)",,
+Michael R. Barratt,2000.0,18.0,Active,1959-04-16,"Vancouver, WA",Male,University of Washington; Northwestern University; Wright State University,Zoology,Medicine; Aerospace Medicine,,,2,5075,1,5.0,"ISS-19/20 (Soyuz), STS-133 (Discovery)",,
+Daniel T. Barry,1992.0,14.0,Retired,1953-12-30,"Norwalk, CT",Male,Cornell University; Princeton University; University of Miami,Electrical Engineering,Electrical Engineering; Computer Science; Medicine,,,3,733,4,26.0,"STS-72 (Endeavor), STS-96 (Discovery), STS-105 (Discovery)",,
+John-David F. Bartoe,,,Retired,1944-11-17,"Abington, PA",Male,Lehigh University; Georgetown University,Physics,Physics,,,1,190,0,0.0,STS 51-F (Challenger),,
+Charles A. Bassett II ,1963.0,3.0,Deceased,1931-12-30,"Dayton, OH",Male,Texas Technological College,Electrical Engineering,,Captain,US Air Force,0,0,0,0.0,,1966-02-28,
+Alan L. Bean,1963.0,3.0,Retired,1932-03-15,"Wheeler, TX",Male,University of Texas,Aeronautical Engineering,,Captain,US Navy (Retired),2,1671,3,10.0,"Apollo 12, Skylab 3",,
+Robert L. Behnken,2000.0,18.0,Active,1970-07-28,"Creve Couer, MO",Male,Washington University; California Institute of Technology,Physics & Mechanical Engineering,Mechanical Engineering,Colonel,US Air Force,2,708,6,37.0,"STS-123 (Endeavor), STS-130 (Endeavor)",,
+John E. Blaha,1980.0,9.0,Retired,1942-08-26,"San Antonio, TX",Male,US Air Force Academy; Purdue University,Engineering Science,Astronautical Engineering,Colonel,US Air Force (Retired),5,3861,0,0.0,"STS-29 (Discovery), STS-33 (Discovery), STS-43 (Atlantis), STS-58 (Columbia), STS-79/81 (Atlantis/Atlantis)",,
+Michael J. Bloomfield,1995.0,15.0,Retired,1959-03-16,"Flint, MI",Male,US Air Force Academy; Old Dominion University,Engineering Mechanics,Engineering Management,Colonel,US Air Force (Retired),3,779,0,0.0,"STS-86 (Atlantis), STS-97 (Endeavor), STS-110 (Atlantis)",,
+Guion S. Bluford Jr. ,1978.0,8.0,Retired,1942-11-22,"Philadelphia, PA",Male,Pennsylvania State University; Air Force Institute of Technology; University of Houston-Clear Lake,Aerospace Engineering,Aerospace Engineering; Business Administration,Colonel,US Air Force (Retired),4,689,0,0.0,"STS-8 (Challenger), STS 61-A (Challenger), STS-39 (Discovery), STS-53 (Discovery)",,
+Karol J. Bobko,1969.0,7.0,Retired,1937-12-23,"New York, NY",Male,US Air Force Academy; University of Southern California,,Aerospace Engineering,Colonel,US Air Force (Retired),3,386,0,0.0,"STS-6 (Challenger), STS 51-D (Discovery), STS-51-J (Atlantis)",,
+Eric A. Boe,2000.0,18.0,Active,1964-10-01,"Miami, FL",Male,US Air Force Academy; Georgia Institute of Technology,Aeronautical Engineering,Electrical Engineering,Colonel,US Air Force,2,687,0,0.0,"STS-126 (Endeavor), STS-133 (Discovery)",,
+Charles F. Bolden Jr. ,1980.0,9.0,Management,1946-08-19,"Columbia, SC",Male,US Naval Academy; University of Southern California,Electrical Science,Systems Management,Major General,US Marine Corps (Retired),4,680,0,0.0,"STS-61C (Columbia), STS-31 (Discovery), STS-45 (Atlantis), STS-60 (Discovery)",,
+Frank Borman,1962.0,2.0,Retired,1928-03-14,"Gary, IN",Male,US Military Academy; California Institute of Technology,,Aeronautical Engineering,Colonel,US Air Force (Retired),2,477,0,0.0,"Gemini 7, Apollo 8",,
+Stephen G. Bowen,2000.0,18.0,Active,1964-02-13,"Cohasset, MA",Male,US Naval Academy; MIT,Electrical Engineering,Ocean Engineering,Captain,US Navy,3,970,7,47.0,"STS-126 (Endeavor), STS-132 (Atlantis), STS-133 (Discovery)",,
+Kenneth D. Bowersox,1987.0,12.0,Retired,1956-11-14,"Portsmouth, VA",Male,US Naval Academy; Columbia University,Aerospace Engineering,Mechanical Engineering,Captain,US Navy (Retired),5,5078,2,13.0,"STS-50 (Columbia), STS-61 (Endeavor), STS-73 (Columbia), STS-82 (Discovery), STS-113 (Endeavor/Soyuz)",,
+Charles E. Brady Jr. ,1992.0,14.0,Deceased,1951-08-12,"Pinehurst, NC",Male,University of North Carolina at Chapel Hill; Duke University,,Medicine,Captain,US Navy,1,405,0,0.0,STS-78 (Columbia),2006-07-23,
+Vance D. Brand,1966.0,5.0,Retired,1931-05-09,"Longmont, CA",Male,University of Colorado; University of California Los Angeles,Business Management; Aeronautical Engineering,Business Administration,,US Marine Corps Reserves,4,752,0,0.0,"Apollo-Soyuz Test Project, STS-5 (Columbia), STS 41-B (Challenger), STS-35 (Columbia)",,
+Daniel C. Brandenstein,1978.0,8.0,Retired,1943-01-17,"Watertown, WI",Male,University of Wisconsin,Mathematics & Physics,,Captain,US Navy (Retired),4,789,0,0.0,"STS-8 (Challenger), STS 51-G (Discovery), STS-32 (Columbia), STS-49 (Endeavor)",,
+Randolph J. Bresnik,2004.0,19.0,Active,1967-09-11,"Fort Knox, KY",Male,The Citadel; University of Tennessee-Knoxville,Mathematics,Aviation Systems,Colonel,US Marine Corps,1,259,2,12.0,STS-129 (Atlantis),,
+Roy D. Bridges Jr. ,1980.0,9.0,Retired,1943-07-19,"Atlanta, GA",Male,US Air Force Academy; Purdue University,Engineering Science,Astronautics,Major General,US Air Force (Retired),1,190,0,0.0,STS 51-F (Challenger),,
+Curtis L. Brown Jr. ,1987.0,12.0,Retired,1956-03-11,"Elizabethtown, NC",Male,US Air Force Academy,Electrical Engineering,,Colonel,US Air Force (Retired),6,1383,0,0.0,"STS-47 (Endeavor), STS-66 (Atlantis), STS-77 (Endeavor), STS-85 (Discovery), STS-95 (Discovery), STS-103 (Discovery)",,
+David M. Brown,1996.0,16.0,Deceased,1956-04-16,"Arlington, VA",Male,College of William & Mary; Eastern Virginia Medical School,Biology,Medicine,Captain,US Navy,1,382,0,0.0,STS-107 (Columbia),2003-02-01,STS-107 (Columbia)
+Mark N. Brown,1984.0,10.0,Retired,1951-11-18,"Valparaiso, IN",Male,Purdue University; Air Force Institute of Technology,Aeronautical & Astronautical Engineering,Astronautical Engineering,Colonel,US Air Force (Retired),2,249,0,0.0,"STS 28 (Columbia), STS-48 (Discovery)",,
+James F. Buchli,1978.0,8.0,Retired,1945-06-20,"New Rockford, ND",Male,US Naval Academy; University of West Florida,Aeronautical Engineering,Aeronautical Engineering Systems,Colonel,US Marine Corps (Retired),4,490,0,0.0,"STS 51-C (Discovery), STS 61-A (Challenger), STS-29 (Discovery), STS-48 (Discovery",,
+Jay Clark Buckey,,,Retired,1956-06-06,"New York, NY",Male,Cornell University,Electrical Engineering,Medicine,,,1,381,0,0.0,STS-90 (Columbia),,
+John S. Bull,1966.0,5.0,Deceased,1934-09-25,"Memphis, TN",Male,Rice University; Stanford University,Mechanical Engineering,Aeronautical Engineering,,,0,0,0,0.0,,2008-08-11,
+Daniel C. Burbank,1996.0,16.0,Active,1961-07-27,"Machester, CT",Male,US Coast Guard Academy; Embry-Riddle Aeronautical University,Electrical Engineering,Aeronautical Science,Captain,US Coast Guard (Retired),3,4512,1,7.0,"STS-106 (Atlantis), STS-115 (Atlantis), ISS-29/30 (Soyuz)",,
+Daniel W. Bursch,1990.0,13.0,Retired,1957-07-25,"Bristol, PA",Male,US Naval Academy; US Naval Postgraduate School,Physics,Engineering Science,Captain,US Navy (Retired),4,5446,2,12.0,"STS-51 (Discovery), STS-68 (Endeavor), STS-77 (Endeavor), STS-108/111 (Endeavor)",,
+Robert D. Cabana,1985.0,11.0,Management,1949-01-23,"Minneapolis, MN",Male,US Naval Academy,Mathematics,,Colonel,US Marine Corps (Retired),4,910,0,0.0,"STS-41 (Discovery), STS-53 (Discovery), STS-65 (Columbia), STS-88 (Endeavor)",,
+Yvonne D. Cagle,1996.0,16.0,Management,1959-04-24,"West Point, NY",Female,San Francisco State University,Biochemistry,,Colonel,US Air Force,0,0,0,0.0,,,
+Fernando Caldeiro,1996.0,16.0,Deceased,1958-06-12,"Buenos Aires, Argentina",Male,University of Arizona; University of Central Florida,Mechanical Engineering,Engineering Management,,,0,0,0,0.0,,2009-10-03,
+Tracy E. Caldwell (Dyson),1998.0,17.0,Active,1969-08-14,"Arcadia, CA",Female,California State University-Fullerton; University of California-Davis,Chemistry,Physical Chemistry,,,2,4531,3,23.0,"STS-118 (Endeavor), ISS-23/24 (Soyuz)",,
+Charles J. Camarda,1996.0,16.0,Management,1952-05-08,"Queens, NY",Male,Polytechnic Institute of Brooklyn; George Washington University; Virginia Polytechnic Institute,Aerospace Engineering,Engineering Science; Aerospace Engineering,,,1,333,0,0.0,STS-114 (Discovery),,
+Kenneth D. Cameron,1984.0,10.0,Retired,1949-11-29,"Cleveland, OH",Male,MIT; Michigan State University,Aeronautics & Astronautics,Aeronautics & Astronautics; Business Administration,Colonel,US Marine Corps (Retired),3,562,0,0.0,"STS-37 (Atlantis), STS-56 (Discovery), STS-74 (Atlantis)",,
+Duane G. Carey,1996.0,16.0,Retired,1957-04-30,"St. Paul, MN",Male,University of Minnesota-Minneapolis,Aerospace Engineering & Mechanics,Aerospace Engineering,Lieutenant Colonel,US Air Force (Retired),1,262,0,0.0,STS-109 (Columbia),,
+M. Scott Carpenter,1959.0,1.0,Retired,1925-05-01,"Boulder, CO",Male,University of Colorado,Aeronautical Engineering,,Commander,US Navy (Retired),1,4,0,0.0,Mercury 7,,
+Gerald P. Carr,1966.0,5.0,Retired,1932-08-22,"Denver, CO",Male,University of Southern California; US Naval Postgraduate School; Princeton University,Mechanical Engineering,Aeronautical Engineering,Colonel,US Marine Corps (Retired),1,2017,3,16.0,Skylab 4,,
+Manley Lanier Carter Jr. ,1984.0,10.0,Deceased,1947-08-15,"Macon, GA",Male,Emory University,Chemistry,Medicine,Captain,US Navy,1,120,0,0.0,STS-33 (Discovery),1991-04-05,
+John H. Casper,1984.0,10.0,Management,1943-07-09,"Greenville, SC",Male,US Air Force Academy; Purdue University,Engineering Science,Astronautics,Colonel,US Air Force (Retired),4,825,0,0.0,"STS-36 (Atlantis), STS-54 (Endeavor), STS-62 (Columbia), STS-77 (Endeavor)",,
+Christopher J. Cassidy,2004.0,19.0,Active,1970-01-04,"Salem, MA",Male,US Naval Academy; MIT,Mathematics,Ocean Engineering,Commander,US Navy,1,4376,6,31.0,STS-127 (Endeavor); ISS-35/36 (Soyuz),,
+Robert Cenker,,,Retired,1948-11-05,"Uniontown, PA",Male,Pennsylvania State University; Rutgers University,Aerospace Engineering,Aerospace Engineering; Electrical Engineering,,,1,146,0,0.0,STS 61-C (Columbia),,
+Eugene A. Cernan,1963.0,3.0,Retired,1934-03-14,"Chicago, IL",Male,Purdue University; US Naval Postgraduate School,Electrical Engineering,Aeronautical Engineering,Captain,US Navy (Retired),3,566,4,24.0,"Gemini 9, Apollo 10, Apollo 17",,
+Roger B. Chaffee,1963.0,3.0,Deceased,1935-02-15,"Grand Rapids, MI",Male,Purdue University,Aeronautical Engineering,,Lieutenant Commander,US Navy,1,0,0,0.0,Apollo 1,1967-01-27,Apollo 1
+Gregory E. Chamitoff,1998.0,17.0,Active,1962-08-06,"Montreal, Canada",Male,California Polytechnic State University; California Institute of Technology; MIT,Electrical Engineering,Aeronautical Engineering; Aeronautics & Astronautics,,,2,4770,2,13.0,"STS-124/126 (Discovery/Endeavor), STS-134 (Endeavor)",,
+Franklin R. Chang-Diaz,1980.0,9.0,Retired,1950-04-05,"San Jose, Costa Rica",Male,University of Connecticut; MIT,Mechanical Engineering,Applied Plasma Physics,,,7,1602,3,19.0,"STS 61-C (Columbia), STS-34 (Atlantis), STS-46 (Atlantis), STS-60 (Discovery), STS-75 (Columbia), STS-91 (Discovery), STS-111 (Endeavor)",,
+Philip K. Chapman,1967.0,6.0,Retired,1935-03-05,"Melbourne, Australia",Male,University of Sydney; MIT,Physics & Mathematics,Aeronautics & Astronautics; Instrumentation,,,0,0,0,0.0,,,
+Kalpana Chawla,1995.0,15.0,Deceased,1961-06-01,"Karnal, India",Female,Punjab Engineering College; University of Texas-Arlington; University of Colorado,Aeronautical Engineering,Aerospace Engineering,,,2,734,0,0.0,"STS-87 (Columbia), STS-107 (Columbia)",2003-02-01,STS-107 (Columbia)
+Leroy Chiao,1990.0,13.0,Retired,1960-08-28,"Milwaukee, WI",Male,University of California-Berkeley; University of California-Santa Barbara,Chemical Engineering,Chemical Engineering,,,4,5503,6,36.0,"STS-65 (Columbia), STS-72 (Endeavor), STS-92 (Discovery), ISS-10 (Soyuz)",,
+Kevin P. Chilton,1987.0,12.0,Retired,1954-03-11,"Los Angeles, CA",Male,US Air Force Academy; Columbia University,Engineering Science,Mechanical Engineering,Brigadier General,US Air Force (Retired),3,700,0,0.0,"STS-49 (Endeavor), STS-59 (Endeavor), STS-76 (Atlantis)",,
+Laurel B. Clark,1996.0,16.0,Deceased,1961-03-10,"Ames, IA",Female,University of Wisconsin-Madison,Zoology,Medicine,Captain,US Navy,1,382,0,0.0,STS-107 (Columbia),2003-02-01,STS-107 (Columbia)
+Mary L. Cleave,1980.0,9.0,Retired,1947-02-05,"Southampton, NY",Female,Colorado State University; Utah State University,Biological Science,Microbial Ecology; Environmental Engineering,,,2,262,0,0.0,"STS 61-B (Atlantis), STS-30 (Atlantis)",,
+Michael R. Clifford,1990.0,13.0,Retired,1952-10-13,"San Bernardino, CA",Male,US Military Academy; Georgia Institute of Technology,,Aerospace Engineering,Lieutenant Colonel,US Army (Retired),3,666,1,6.0,"STS-53 (Discovery), STS-59 (Endeavor), STS-76 (Atlantis)",,
+Michael L. Coats,1978.0,8.0,Retired,1946-01-16,"Sacramento, CA",Male,US Naval Academy; George Washington University; US Naval Postgraduate School,,Science & Technology Administration; Aeronautical Engineering,Captain,US Navy (Retired),3,463,0,0.0,"STS 41-D (Discovery), STS-29 (Discovery), STS-39 (Discovery)",,
+Kenneth D. Cockrell,1990.0,13.0,Management,1950-04-09,"Austin, TX",Male,University of Texas; University of West Florida,Mechanical Engineering,Aeronautical Systems,,US Naval Reserves,5,1548,0,0.0,"STS-56 (Discovery), STS-69 (Endeavor), STS-80 (Columbia), STS-98 (Atlantis), STS-111 (Endeavor)",,
+Catherine G. Coleman,1992.0,14.0,Active,1960-12-14,"Charleston, SC",Female,MIT; University of Massachusetts,Chemistry,Polymer Science & Engineering,Colonel,US Air Force (Retired),3,4324,0,0.0,"STS-73 (Columbia), STS-93 (Columbia), ISS-26/27 (Soyuz)",,
+Eileen M. Collins,1990.0,13.0,Retired,1959-11-19,"Elmira, NY",Female,Syracuse University; Stanford University; Webster University,Mathematics & Economics,Operations Research; Space Systems Management,Colonel,US Air Force (Retired),4,890,0,0.0,"STS-63 (Discovery), STS-84 (Atlantis), STS-114 (Columbia), STS-93 (Discovery)",,
+Michael Collins,1963.0,3.0,Retired,1930-10-31,"Rome, Italy",Male,US Military Academy,,,,US Air Force Reserves,2,266,1,1.0,"Gemini 10, Apollo 11",,
+Charles Conrad Jr. ,1962.0,2.0,Deceased,1930-05-02,"Philadelphia, PA",Male,Princeton University,Aeronautical Engineering,,Captain,US Navy (Retired),4,1179,4,12.0,"Gemini 5, Gemini 11, Apollo 12, Skylab 2",1999-07-08,
+L. Gordon Cooper Jr. ,1959.0,1.0,Deceased,1927-03-06,"Shawnee, OK",Male,Air Force Institute of Technology,Aeronautical Engineering,,Colonel,US Air Force (Retired),2,225,0,0.0,"Mercury 9, Gemini 5",2004-10-04,
+Richard O. Covey,1978.0,8.0,Retired,1946-08-01,"Fayetteville, AR",Male,US Air Force Academy; Purdue University,Engineering Science,Aeronautics & Astronautics,Colonel,US Air Force (Retired),4,645,0,0.0,"STS 51-l (Discovery), STS-26 (Discovery), STS-38 (Atlantis), STS-61 (Endeavor)",,
+Timothy J. Creamer,1998.0,17.0,Management,1959-11-15,"Ft. Huachuca, AZ",Male,Loyola College; MIT,Chemistry,Physics,Colonel,US Army (Retired),1,3917,0,0.0,ISS-22/23 (Soyuz),,
+John O. Creighton,1978.0,8.0,Retired,1943-04-28,"Orange, TX",Male,US Naval Academy; George Washington University,,Science & Technology Administration,Captain,US Navy (Retired),3,404,0,0.0,"STS 51-G (Discovery), STS-36 (Atlantis), STS-48 (Discovery)",,
+Robert L. Crippen,1969.0,7.0,Retired,1937-09-11,"Beaumont, TX",Male,University of Texas,Aerospace Engineering,,Captain,US Navy (Retired),4,565,0,0.0,"STS-1 (Columbia), STS-7 (Challenger), STS 41-C (Challenger), STS 41-G (Challenger)",,
+Roger K. Crouch,,,Retired,1940-09-12,"Jamestown, TN",Male,Tennessee Polytechnic Institute; Virginia Polytechnic Institute,Physics,Physics,,,1,471,0,0.0,"STS-83 (Columbia), STS-94 (Columbia)",,
+Frank L. Culbertson Jr. ,1984.0,10.0,Retired,1949-05-15,"Charleston, SC",Male,US Naval Academy,Aerospace Engineering,,Captain,US Navy (Retired),3,3446,1,5.0,"STS-38 (Atlantis), STS-51 (Discovery), STS-105/108 (Discovery/Endeavor)",,
+Walter Cunningham,1963.0,3.0,Retired,1932-03-16,"Creston, IA",Male,University of California-Los Angeles,Physics,Physics,Colonel,US Marine Corps Reserves,1,260,0,0.0,Apollo 7,,
+Robert L. Curbeam Jr. ,1995.0,15.0,Retired,1962-03-05,"Baltimore, MD",Male,US Naval Academy; US Naval Postgraduate School,Aerospace Engineering,Aerospace Engineering; Aeronautical & Astronautical Engineering,Captain,US Navy (Retired),3,902,7,45.0,"STS-85 (Discovery), STS-98 (Atlantis), STS-116 (Discovery)",,
+Nancy J. Currie,1990.0,13.0,Management,1958-12-29,"Wilmington, DE",Female,Ohio State University; University of Southern California; University of Houston,Biological Science,Safety Engineering; Industrial Engineering,Colonel,US Army (Retired),4,999,0,0.0,"STS-57 (Endeavor), STS-70 (Discovery), STS-88 (Endeavor), STS-109 (Columbia)",,
+N. Jan Davis,1987.0,12.0,Retired,1953-11-01,"Cocoa Beach, FL",Female,Georgia Institute of Technology; Auburn University; University of Alabama-Huntsville,Applied Biology; Mechanical Engineering,Mechanical Engineering,,,3,673,0,0.0,"STS-47 (Endeavor), STS-60 (Discovery), STS-85 (Discovery)",,
+Lawrence J. Delucas,,,Retired,1950-07-11,"Syracuse, NY",Male,University of Alabama at Birmingham,Chemistry; Physiological Optics,Chemistry; Biochemistry; Optometry,,,1,331,0,0.0,STS-50 (Columbia),,
+Alvin B. Drew Jr. ,2000.0,18.0,Active,1962-11-05,"Washington, DC",Male,US Air Force Academy; Embry-Riddle Aeronautical University,Physics & Astronautical Engineering,Aerospace Science; Political Science,Colonel,US Air Force,2,613,2,13.0,"STS-118 (Endeavor), STS-133 (Discovery)",,
+Brian Duffy,1985.0,11.0,Retired,1953-06-20,"Boston, MA",Male,US Air Force Academy; University of Southern California,Mathematics,Systems Management,Colonel,US Air Force (Retired),4,977,0,0.0,"STS-45 (Atlantis), STS-57 (Endeavor), STS-72 (Endeavor), STS-92 (Discovery)",,
+Charles M. Duke Jr. ,1966.0,5.0,Retired,1935-10-03,"Charlotte, NC",Male,US Naval Academy; MIT,Naval Sciences,Aeronautics,Brigadier General,US Air Force (Retired),1,265,3,20.0,Apollo 16,,
+Bonnie J. Dunbar,1980.0,9.0,Retired,1949-03-03,"Sunnyside, WA",Female,University of Washington; University of Houston,Ceramic Engineering,Ceramic Engineering; Biomedical Engineering,,,5,1207,0,0.0,"STS 61-A (Challenger), STS-32 (Columbia), STS-50 (Columbia), STS-71 (Atlantis), STS-89 (Endeavor)",,
+Samuel T. Durrance,,,Retired,1943-09-17,"Tallahassee, FL",Male,California State University; University of Colorado,Physics,Physics; Astrogeophysics,,,2,614,0,0.0,"STS-35 (Columbia), STS-67 (Endeavor)",,
+James P. Dutton Jr. ,2004.0,19.0,Management,1968-11-20,"Eugene, OR",Male,US Air Force Academy; University of Washington,Astronautical Engineering,Aeronautics & Astronautics,Colonel,US Air Force,1,362,0,0.0,STS-131 (Discovery),,
+Joe F. Edwards Jr. ,1995.0,15.0,Retired,1958-02-03,"Richmond, VA",Male,US Naval Academy; University of Tennessee-Knoxville,Aerospace Engineering,Aviation Systems,Commander,US Navy (Retired),1,211,0,0.0,STS-89 (Endeavor),,
+Donn F. Eisele,1963.0,3.0,Deceased,1930-05-23,"Columbus, OH",Male,US Naval Academy; US Air Force Institute of Technology,Astronautics,Astronautics,Colonel,US Air Force (Retired),1,260,0,0.0,Apollo 7,1987-12-02,
+Anthony W. England,1967.0,6.0,Retired,1942-05-15,"Indianapolis, IN",Male,MIT,Geology,Geology; Geophysics,,,1,190,0,0.0,STS 51-F (Challenger),,
+Joe H. Engle,1966.0,5.0,Retired,1932-08-26,"Dickinson, KS",Male,University of Kansas,Aeronautical Engineering,,Major General,US Air Force (Retired),2,224,0,0.0,"STS-2 (Columbia), STS 51-I (Discovery)",,
+Jeanette J. Epps,2009.0,20.0,Active,1970-11-03,"Syracuse, NY",Female,LeMoyne College; University of Maryland,Physics,Aerospace Engineering,,,0,0,0,0.0,,,
+Ronald E. Evans Jr. ,1966.0,5.0,Deceased,1933-11-10,"St. Francis, KS",Male,University of Kansas; US Naval Postgraduate School,Electrical Engineering,Aeronautical Engineering,Captain,US Navy (Retired),1,301,1,1.0,Apollo 17,1990-04-06,
+John M. Fabian,1978.0,8.0,Retired,1939-01-28,"Goosecreek, TX",Male,Washington State University; US Air Force Institute of Technology; University of Washington,Mechanical Engineering,Aerospace Engineering; Aeronautics & Astronautics,Colonel,US Air Force (Retired),2,316,0,0.0,"STS-7 (Challenger), STS 51-G (Discovery)",,
+Christopher J. Ferguson,1998.0,17.0,Retired,1961-09-01,"Philadelphia, PA",Male,Drexel University; US Naval Postgraduate School,Mechanical Engineering,Aeronautical Engineering,Captain,US Navy (Retired),3,970,0,0.0,"STS-115 (Atlantis), STS-126 (Endeavor), STS-135 (Atlantis)",,
+Martin J. Fettman,,,Retired,1956-12-31,"Brooklyn, NY",Male,Cornell University; Colorado State University,Animal Nutrition,Physiology,,,1,336,0,0.0,STS-58 (Columbia),,
+Andrew J. Feustel,2000.0,18.0,Active,1965-08-25,"Lancaster, PA",Male,Purdue University; Queen’s University-Canada,Solid Earth Sciences,Geophysics; Seismology,,,2,687,6,42.0,"STS-125 (Atlantis), STS-134 (Endeavor)",,
+E. Michael Fincke,1996.0,16.0,Active,1967-03-14,"Pittsburgh, PA",Male,MIT; Stanford University; University of Houston-Clear Lake,"Aeronautics & Astronautics; Earth, Atmospheric & Planetary Sciences",Aeronautics & Astronautics; Physical Sciences,Colonel,US Air Force,3,9159,9,48.0,"ISS-09 (Soyuz), ISS-18 (Soyuz), STS-134 (Endeavor)",,
+Jack D. Fischer,2009.0,20.0,Active,1974-01-23,"Louisville, CO",Male,US Air Force Academy; MIT,Astronautical Engineering,Aeronautics & Astronautics,,,0,0,0,0.0,,,
+Anna L. Fisher,1978.0,8.0,Management,1949-08-24,"New York, NY",Female,University of California-Los Angeles,Chemistry,Chemistry; Medicine,,,1,191,0,0.0,STS 51-A (Discovery),,
+William F. Fisher,1980.0,9.0,Retired,1946-04-01,"Dallas, TX",Male,Stanford University; University of Houston; University of Florida,,Engineering; Medicine,,,1,170,2,12.0,STS 51-I (Discovery),,
+C. Michael Foale,1987.0,12.0,Active,1957-01-06,"Louth, England",Male,Cambridge University,Physics,Laboratory Astrophysics,,,6,8970,4,22.0,"STS-45 (Atlantis), STS-56 (Discovery), STS-63 (Discovery), STS-84/86 (Atlantis), STS-103 (Discovery), ISS-08 (Soyuz)",,
+Kevin A. Ford,2000.0,18.0,Active,1960-07-07,"Portland, IN",Male,University of Notre Dame; Troy State University; University of Florida; Air Force Institute of Technology,Aerospace Engineering,International Relations; Aerospace Engineering; Astronautical Engineering,Colonel,US Air Force (Retired),2,3781,0,0.0,"STS-128 (Discovery), ISS-33/34 (Soyuz)",,
+Michael J. Foreman,1998.0,17.0,Management,1957-03-29,"Columbus, OH",Male,US Naval Academy; US Naval Postgraduate School,Aerospace Engineering,Aeronautical Engineering,Captain,US Navy (Retired),2,637,5,32.0,"STS-123 (Endeavor), STS-129 (Atlantis)",,
+Patrick G. Forrester,1996.0,16.0,Management,1957-03-31,"El Paso, TX",Male,US Military Academy; University of Virginia,Applied Science & Engineering,Mechanical & Aerospace Engineering,Colonel,US Army (Retired),3,950,4,25.0,"STS-105 (Discovery), STS-117 (Atlantis), STS-128 (Discovery)",,
+Michael E. Fossum,1998.0,17.0,Active,1957-12-19,"Sioux Falls, SD",Male,Texas A&M University; Air Force Institute of Technology; University of Houston-Clear Lake,Mechanical Engineering,Systems Engineering; Physical Science (Space Science),,US Air Force Reserves (Retired),3,4651,7,48.0,"STS-121 (Discovery), STS-124 (Discovery), ISS-28/29 (Soyuz)",,
+Theodore C. Freeman,1963.0,3.0,Deceased,1930-02-18,"Haversford, PA",Male,US Naval Academy; University of Michigan,,Aeronautical Engineering,Captain,US Air Force,0,0,0,0.0,,1964-10-31,
+Stephen N. Frick,1996.0,16.0,Management,1961-09-30,"Pittsburgh, PA",Male,US Naval Academy; US Naval Postgraduate School,Aerospace Engineering,Aeronautical Engineering,Captain,US Navy (Retired),2,566,0,0.0,"STS-110 (Atlantis), STS-122 (Atlantis)",,
+C. Gordon Fullerton,1969.0,7.0,Retired,1936-10-11,"Rochester, NY",Male,California Institute of Technology,Mechanical Engineering,Mechanical Engineering,Colonel,US Air Force (Retired),2,382,0,0.0,"STS-3 (Columbia), STS 51-F (Challenger)",,
+F. Andrew Gaffney,,,Retired,1946-06-09,"Carlsbad, NM",Male,University of California-Berkeley; University of New Mexico,Psychology,Medicine,,,1,218,0,0.0,STS-40 (Columbia),,
+Ronald J. Garan Jr. ,2000.0,18.0,Management,1961-10-20,"Yonkers, NY",Male,State University of New York; Embry-Riddle Aeronautical University; University of Florida,Business Economics,Aeronautics; Aerospace Engineering,Colonel,US Air Force (Retired),2,4271,4,27.0,"STS-124 (Discovery), ISS-27/28 (Soyuz)",,
+Dale A. Gardner,1978.0,8.0,Retired,1948-11-08,"Fairmont, MN",Male,University of Illinois,Engineering Physics,,Captain,US Navy (Retired),2,336,2,12.0,"STS-8 (Challenger), STS 51-A (Discovery)",,
+Guy S. Gardner,1980.0,9.0,Retired,1948-01-06,"Alta Vista, VA",Male,US Air Force Academy; Purdue University,Engineering Sciences; Astronautics & Mathematics,Astronautics,Colonel,US Air Force (Retired),2,320,0,0.0,"STS-27 (Atlantis), STS-35 (Columbia)",,
+Jake Garn,,,Retired,1932-10-12,Richfield. UT,Male,University of Utah,Business Finance,,,,1,167,0,0.0,STS 51-D (Discovery),,
+Owen K. Garriott,1965.0,4.0,Retired,1930-11-22,"Enid, OK",Male,University of Oklahoma; Stanford University,Electrical Engineering,Electrical Engineering,,,2,1674,3,14.0,"Skylab 3, STS-9 (Columbia)",,
+Charles D. Gemar,1985.0,11.0,Retired,1955-08-04,"Yanktown, SD",Male,US Military Academy,Engineering,,Lieutenant Colonel,US Army,3,581,0,0.0,"STS-38 (Atlantis), STS-48 (Discovery), STS-62 (Columbia)",,
+Michael L. Gernhardt,1992.0,14.0,Management,1956-05-04,"Mansfield, OH",Male,Vanderbilt University; University of Pennsylvania,Physics,Bioengineering,,,4,1039,4,23.0,"STS-69 (Endeavor), STS-83 (Columbia), STS-94 (Columbia), STS-104 (Atlantis)",,
+Edward G. Gibson,1965.0,4.0,Retired,1936-11-08,"Buffalo, NY",Male,University of Rochester; California Institute of Technology,Engineering,Engineering,,,1,2017,3,15.0,Skylab 4,,
+Robert L. Gibson,1978.0,8.0,Retired,1946-10-30,"Cooperstown, NY",Male,California Polytechnic Institute,Aeronautical Engineering,,Captain,US Navy (Retired),5,868,0,0.0,"STS 41-B (Challenger), STS 61-C (Columbia), STS-27 (Atlantis), STS-47 (Endeavor), STS-71 (Atlantis)",,
+Edward G. Givens Jr. ,1966.0,5.0,Deceased,1930-01-05,"Quanah, TX",Male,US Naval Academy,Naval Sciences,,Major,US Air Force,0,0,0,0.0,,1967-06-06,
+John H. Glenn Jr. ,1959.0,1.0,Retired,1921-07-18,"Cambridge, OH",Male,Muskingum College,Engineering,,Colonel,US Marine Corps (Retired),2,218,0,0.0,"Mercury 6, STS-95 (Discovery)",,
+Linda M. Godwin,1985.0,11.0,Retired,1952-07-02,"Cape Girardeau, MO",Female,Southeast Missouri State; University of Missouri,Mathematics & Physics,Physics,,,4,918,2,10.0,"STS-37 (Atlantis), STS-59 (Endeavor), STS-76 (Atlantis), STS-108 (Endeavor)",,
+Michael T. Good,2000.0,18.0,Management,1962-10-13,"Parma, OH",Male,University of Notre Dame,Aerospace Engineering,Aerospace Engineering,Colonel,US Air Force (Retired),2,592,4,30.0,"STS-125 (Atlantis), STS-132 (Atlantis)",,
+Richard F. Gordon Jr. ,1963.0,3.0,Retired,1929-10-05,"Seattle, WA",Male,University of Washington,Chemistry,,Captain,US Navy (Retired),2,315,1,0.5,"Gemini 11, Apollo 12",,
+Dominic L. Gorie,1995.0,15.0,Retired,1957-05-02,"Lake Charles, LA",Male,US Naval Academy; University of Tennessee,Ocean Engineering,Aviation Systems,Captain,US Navy (Retired),4,1167,0,0.0,"STS-91 (Discovery), STS-99 (Endeavor), STS-123 (Endeavor), STS-108 (Endeavor)",,
+Ronald J. Grabe,1980.0,9.0,Retired,1945-06-13,"New York, NY",Male,US Air Force Academy,Engineering Science,,Colonel,US Air Force (Retired),4,627,0,0.0,"STS 51-J (Atlantis), STS-30 (Atlantis), STS-42 (Discovery), STS-57 (Endeavor)",,
+Duane E. Graveline,1965.0,4.0,Retired,1931-03-02,"Newport, VT",Male,University of Vermont; Johns Hopkins University,,Public Health; Medicine,,,0,0,0,0.0,,,
+Frederick D. Gregory,1978.0,8.0,Retired,1941-01-07,"Washington, DC",Male,US Air Force Academy; George Washington University,,Information Systems,Colonel,US Air Force (Retired),3,455,0,0.0,"STS 51-B (Challenger), STS-33 (Discovery), STS-44 (Atlantis)",,
+William G. Gregory,1990.0,13.0,Retired,1957-05-14,"Lockport, NY",Male,US Air Force Academy; Columbia University; Troy State University,Engineering Science,Engineering Mechanics; Business Management,Lieutenant Colonel,US Air Force,1,399,0,0.0,STS-67 (Endeavor),,
+S. David Griggs,1978.0,8.0,Deceased,1939-09-07,"Portland, OR",Male,US Naval Academy; George Washington University,,Business Administration,,,1,167,1,3.0,STS 51-D (Discovery),1989-06-17,
+Virgil I. Grissom,1959.0,1.0,Deceased,1926-04-03,"Mitchell, IN",Male,Purdue University,Mechanical Engineering,,Lieutenant Colonel,US Air Force,2,5,0,0.0,"Mercury 4, Gemini 3, Apollo 1",1967-01-27,Apollo 1
+John M. Grunsfeld,1992.0,14.0,Management,1958-10-10,"Chicago, IL",Male,MIT; University of Chicago,Physics,Physics,,,5,1407,8,58.0,"STS-67 (Endeavor), STS-81 (Atlantis), STS-103 (Discovery), STS-125 (Atlantis), STS-109 (Columbia)",,
+Sidney M. Gutierrez,1984.0,10.0,Retired,1951-06-27,"Albuquerque, NM",Male,US Air Force Academy; Webster College,Aeronautical Engineering,Business Management,Colonel,US Air Force (Retired),2,488,0,0.0,"STS-40 (Columbia), STS-59 (Endeavor)",,
+Fred W. Haise Jr. ,1966.0,5.0,Retired,1933-11-14,"Biloxi, MS",Male,University of Oklahoma,Aeronautical Engineering,,,,1,142,0,0.0,Apollo 13 ,,
+James D. Halsell Jr. ,1990.0,13.0,Retired,1956-09-29,"Monroe, LA",Male,US Air Force Academy; Troy State University; US Air Force Institute of Technology,Engineering,Business Management; Space Operations,Colonel,US Air Force (Retired),5,1258,0,0.0,"STS-65 (Columbia), STS-74 (Atlantis), STS-83 (Columbia), STS-94 (Columbia), STS-101 (Atlantis)",,
+Kenneth T. Ham,1998.0,17.0,Retired,1964-12-12,"Plainfield, NJ",Male,US Naval Academy; US Naval Postgraduate School,Aerospace Engineering,Aeronautical Engineering,Captain,US Navy,2,612,0,0.0,"STS-124 (Discovery), STS-132 (Atlantis)",,
+L. Blaine Hammond Jr. ,1984.0,10.0,Retired,1952-01-16,"Savannah, GA",Male,US Air Force Academy; Georgia Institute of Technology,Engineering Science,Engineering Science,Colonel,US Air Force (Retired),2,462,0,0.0,"STS-39 (Discovery), STS-64 (Discovery)",,
+Gregory J. Harbaugh,1987.0,12.0,Retired,1956-04-15,"Cleveland, OH",Male,Purdue University; University of Houston-Clear Lake,Aeronautical & Astronautical Engineering,Physical Science,,,4,817,3,18.0,"STS-39 (Discovery), STS-54 (Endeavor), STS-71 (Atlantis), STS-82 (Discovery)",,
+Bernard A. Harris Jr. ,1990.0,13.0,Retired,1956-06-26,"Temple, TX",Male,University of Houston; Texas Tech University,Biology,Medicine,,,2,438,1,5.0,"STS-55 (Columbia), STS-63 (Discovery)",,
+Terry J. Hart,1978.0,8.0,Retired,1946-10-27,"Pittsburgh, PA",Male,Lehigh University; MIT; Rutgers University,Mechanical Engineering,Mechanical Engineering; Electrical Engineering,,,1,167,0,0.0,STS 41-C (Challenger),,
+Henry W. Hartsfield Jr. ,1969.0,7.0,Retired,1933-11-21,"Birmingham, AL",Male,Auburn University; University of Tennessee,Physics,Engineering Science,Colonel,US Air Force (Retired),3,482,0,0.0,"STS-4 (Columbia), STS 41-D (Discovery), STS 61-A (Challenger)",,
+Frederick H. Hauck,1978.0,8.0,Retired,1941-04-11,"Long Beach, CA",Male,Tufts University; MIT,Physics,Nuclear Engineering,Captain,US Navy (Retired),3,435,0,0.0,"STS-7 (Challenger), STS 51-A (Discovery), STS-26 (Discovery)",,
+Steven A. Hawley,1978.0,8.0,Retired,1951-12-12,"Ottawa, KS",Male,University of Kansas; University of California,Physics & Astronomy,Astronomy & Astrophysics,,,5,770,0,0.0,"STS 41-D (Discovery), STS 61-C (Columbia), STS-31 (Discovery), STS-82 (Discovery), STS-93 (Columbia)",,
+Susan J. Helms,1990.0,13.0,Retired,1958-02-26,"Charlotte, NC",Female,US Air Force Academy; Stanford University,Aeronautical Engineering,Aeronautics & Astronautics,Lieutenant General,US Air Force,5,5063,1,9.0,"STS-54 (Endeavor), STS-64 (Discovery), STS-78 (Columbia), STS-101 (Atlantis), STS-102/105 (Discovery)",,
+Karl G. Henize,1967.0,6.0,Deceased,1926-10-17,"Cincinnati, OH",Male,University of Virginia; University of Michigan,Mathematics,Astronomy,,,1,190,0,0.0,STS 51-F (Challenger),1993-10-05,
+Thomas J. Hennen,,,Retired,1952-08-17,"Albany, GA",Male,,,,Chief Warrant Officer,US Army (Retired),1,166,0,0.0,STS-44 (Atlantis),,
+Terence T. Henricks,1985.0,11.0,Retired,1952-07-05,"Bryan, OH",Male,US Air Force Academy; Golden Gate University,Civil Engineering,Public Administration,Colonel,US Air Force (Retired),4,1026,0,0.0,"STS-44 (Atlantis), STS-55 (Columbia), STS-70 (Discovery), STS-78 (Columbia)",,
+Jose M. Hernandez,2004.0,19.0,Retired,1962-08-07,"French Camp, CA",Male,University of the Pacific; University of California-Santa Barbara,Electrical Engineering,Electrical & Computer Engineering,,,1,332,0,0.0,STS-128 (Discovery),,
+John B. Herrington,1996.0,16.0,Retired,1958-09-14,"Wetumka, OK",Male,University of Colorado; US Naval Postgraduate School,Applied Mathematics,Aeronautical Engineering,Commander,US Navy (Retired),1,330,3,20.0,STS-113 (Endeavor),,
+Richard J. Hieb,1985.0,11.0,Retired,1955-09-21,"Jamestown, ND",Male,Northwest Nazarene College; University of Colorado,Mathematics & Physics,Aerospace Engineering,,,3,766,3,18.0,"STS-39 (Discovery), STS-49 (Endeavor), STS-65 (Columbia)",,
+Joan E. Higginbotham,1996.0,16.0,Retired,1964-08-03,"Chicago, IL",Female,Southern Illinois University-Carbondale; Florida Institute of Technology,Electrical Engineering,Business Management; Space Systems,,,1,308,0,0.0,STS-116 (Discovery),,
+David C. Hilmers,1980.0,9.0,Retired,1950-01-28,"Clinton, IA",Male,Cornell University; US Naval Postgraduate School,Mathematics,Electrical Engineering,Colonel,US Marine Corps (Retired),4,494,0,0.0,"ST 51-J (Atlantis), STS-26 (Discovery), STS-36 (Atlantis), STS-42 (Discovery)",,
+Kathryn P. Hire,1995.0,15.0,Management,1959-08-26,"Mobile, AL",Female,US Naval Academy; Florida State Institute of Technology,Engineering Management,Space Technology,Captain,US Naval Reserves,2,711,0,0.0,"STS-90 (Columbia), STS-130 (Endeavor)",,
+Charles O. Hobaugh,1996.0,16.0,Retired,1961-11-05,"Bar Harbor, ME",Male,US Naval Academy,Aerospace Engineering,,Colonel,US Marine Corps (Retired),3,873,0,0.0,"STS-104 (Atlantis), STS-118 (Endeavor), ST-129 (Atlantis)",,
+Jeffrey A. Hoffman,1978.0,8.0,Retired,1944-11-02,"Brooklyn, NY",Male,Amherst College; Rice University; Harvard University,Astronomy,Materials Science; Astrophysics,,,5,1211,4,25.0,"STS 51-D (Discovery), STS-35 (Columbia), STS-46 (Atlantis), STS-61 (Endeavor), STS-75 (Columbia)",,
+Donald L. Holmquest,1967.0,6.0,Retired,1939-04-07,"Dallas, TX",Male,Southern Methodist University; Baylor University; University of Houston,Electrical Engineering,Physiology; Medicine; Law,,,0,0,0,0.0,,,
+Michael S. Hopkins,2009.0,20.0,Active,1968-12-28,"Lebanon, MO",Male,University of Illinois; Stanford University,Aerospace Engineering,Aerospace Engineering,Colonel,US Air Force,1,3990,2,13.0,ISS-37/38 (Soyuz),,
+Scott J. Horowitz,1992.0,14.0,Retired,1957-03-24,"Philadelphia, PA",Male,California State University-Northridge; Georgia Institute of Technology,Engineering,Aerospace Engineering,Colonel,US Air Force (Retired),4,1137,0,0.0,"STS-75 (Columbia), STS-82 (Discovery), STS-101 (Atlantis), STS-105 (Discovery)",,
+Millie Hughes-Fulford,,,Retired,1945-12-21,"Mineral Wells, TX",Female,Tarleton State University; Texas Woman’s University,Chemistry & Biology,,,,1,218,0,0.0,STS-40 (Columbia),,
+Douglas G. Hurley,2000.0,18.0,Active,1966-10-21,"Endicott, NY",Male,Tulane University,Civil Engineering,,Colonel,US Marine Corps,2,683,0,0.0,"STS-127 (Endeavor), STS-135 (Atlantis)",,
+Rick D. Husband,1995.0,15.0,Deceased,1957-07-12,"Amarillo, TX",Male,Texas Tech University; California State University,Mechanical Engineering,Mechanical Engineering,Colonel,US Air Force,2,617,0,0.0,"STS-96 (Discovery), STS-107 (Columbia)",2003-02-01,STS-107 (Columbia)
+James B. Irwin,1966.0,5.0,Deceased,1930-03-17,"Pittsburgh, PA",Male,US Naval Academy; University of Michigan,Naval Sciences,Aeronautical Engineering,Colonel,US Air Force (Retired),1,295,3,20.0,Apollo 15,1991-08-08,
+Marsha S. Ivins,1984.0,10.0,Retired,1951-04-15,"Baltimore, MD",Female,University of Colorado,Aerospace Engineering,,,,5,1341,0,0.0,"STS-32 (Columbia), STS-46 (Atlantis), STS-62 (Columbia), STS-81 (Atlantis), STS-98 (Atlantis)",,
+Gregory B. Jarvis,,,Deceased,1944-08-24,"Detroit, MI",Male,State University of New York at Buffalo; Northeastern University,Electrical Engineering,Electrical Engineering,,,1,0,0,0.0,STS 51-L (Challenger),1986-01-28,STS 51-L (Challenger)
+Mae C. Jemison,1987.0,12.0,Retired,1956-10-17,"Decatur, AL",Female,Stanford University; Cornell University,Chemical Engineering,Medicine,,,1,190,0,0.0,STS-47 (Endeavor),,
+Tamara E. Jernigan,1985.0,11.0,Retired,1959-05-07,"Chattanooga, TN",Female,Stanford University; University of California-Berkeley; Rice University,Physics,Engineering Science; Astronomy,,,5,1489,1,8.0,"STS-40 (Columbia), STS-52 (Columbia), STS-67 (Endeavor), STS-80 (Columbia), STS-98 (Discovery)",,
+Brent W. Jett,1992.0,14.0,Retired,1958-10-05,"Pontiac, MI",Male,US Naval Academy; US Naval Postgraduate School,Aerospace Engineering,Aeronautical Engineering,Captain,US Navy (Retired),4,1002,0,0.0,"STS-72 (Endeavor), STS-81 (Atlantis), STS-97 (Endeavor), STS-115 (Atlantis)",,
+Gregory C. Johnson,1998.0,17.0,Management,1954-07-30,"Seattle, WA",Male,University of Washington,Aerospace Engineering,,Captain,US Navy (Retired),1,309,0,0.0,STS-125 (Atlantis),,
+Gregory H. Johnson,1998.0,17.0,Active,1962-05-12,"London, England",Male,US Air Force Academy; Columbia University; University of Texas,Aeronautical Engineering,Flight Structures Engineering; Business Administration,Colonel,US Air Force (Retired),2,755,0,0.0,"STS-123 (Endeavor), STS-134 (Endeavor)",,
+Thomas D. Jones,1990.0,13.0,Retired,1955-01-22,"Baltimore, MD",Male,US Air Force Academy; University of Arizona,,Planetary Science,,,4,1272,3,20.0,"STS-59 (Endeavor), STS-68 (Endeavor), STS-80 (Columbia), STS-98 (Atlantis)",,
+Janet L. Kavandi,1995.0,15.0,Management,1959-07-17,"Springfield, MO",Female,Missouri Southern State College; University of Missouri; University of Washington,Chemistry,Chemistry,,,3,812,0,0.0,"STS-91 (Discovery), STS-99 (Endeavor), STS-104 (Atlantis)",,
+James M. Kelly,1996.0,16.0,Management,1964-05-14,"Burlington, IA",Male,US Air Force Academy; University of Alabama,Astronautical Engineering,Aerospace Engineering,Colonel,US Air Force (Retired),2,641,0,0.0,"STS-102 (Discovery), STS-114 (Discovery)",,
+Mark E. Kelly,1996.0,16.0,Retired,1964-02-21,"Orange, NJ",Male,US Merchant Marine Academy; US Naval Postgraduate School,Marine Engineering & Nautical Science,Aeronautical Engineering,Captain,US Navy (Retired),4,1298,0,0.0,"STS-108 (Endeavor), STS-121 (Discovery), STS-124 (Discovery), STS-134 (Endeavor)",,
+Scott J. Kelly,1996.0,16.0,Active,1964-02-21,"Orange, NJ",Male,State University of New York Maritime College; University of Tennessee-Knoxville,Electrical Engineering,Aviation Systems,Captain,US Navy (Retired),4,12490,3,18.0,"STS-103 (Discovery), STS-118 (Endeavor), ISS-25/26 (Soyuz), ISS-43/44/45/46 (Soyuz)",,
+Joseph P. Kerwin,1965.0,4.0,Retired,1932-02-19,"Oak Park, IL",Male,College of the Holy Cross; Northwestern University,Philosophy,Medicine,Captain,US Navy (Retired),1,672,1,3.0,Skylab 2,,
+Susan L. Kilrain (Still),1995.0,15.0,Retired,1961-10-24,"Augusta, GA",Female,Embry-Riddle University; Georgia Institute of Technology,Astronautical Engineering,Aerospace Engineering,Commander,US Navy (Retired),2,472,0,0.0,"STS-83 (Columbia), STS-94 (Columbia)",,
+Robert Shane Kimbrough,2004.0,19.0,Active,1967-06-04,"Killeen, TX",Male,US Military Academy; Georgia Institute of Technology,Aerospace Engineering,Operations Research,Colonel,US Army,3,3720,4,25.0,"STS-126 (Endeavor), ISS-49/50 (Soyuz)",,
+Timothy L. Kopra,2000.0,18.0,Active,1963-04-09,"Austin, TX",Male,US Military Academy; Georgia Institute of Technology; US Army War College,Computer Science,Aerospace Engineering; Strategic Studies,Colonel,US Army (Retired),2,5857,3,13.0,"STS-127/128 (Endeavor/Discovery), ISS-46/47 (Soyuz)",,
+Kevin R. Kregel,1992.0,14.0,Retired,1956-09-16,"New York, NY",Male,US Air Force Academy; Troy State University,Astronautical Engineering,Public Administration,,,4,1265,0,0.0,"STS-70 (Discovery), STS-78 (Columbia), STS-87 (Columbia), STS-99 (Endeavor)",,
+Wendy B. Lawrence,1992.0,14.0,Retired,1959-07-02,"Jacksonville, FL",Female,US Naval Academy; MIT,Ocean Engineering,Ocean Engineering,Captain,US Navy (Retired),4,1223,0,0.0,"STS-67 (Endeavor), STS-86 (Atlantis), STS-91 (Discovery), STS-114 (Discovery)",,
+Mark C. Lee,1984.0,10.0,Retired,1952-08-14,"Viroqua, WI",Male,US Air Force Academy; MIT,Civil Engineering,Mechanical Engineering,Colonel,US Air Force (Retired),4,789,4,26.0,"STS-30 (Atlantis), STS-47 (Endeavor), STS-64 (Discovery), STS-82 (Discovery)",,
+David C. Leestma,1980.0,9.0,Management,1949-05-06,"Muskegon, MI",Male,US Naval Academy; US Naval Postgraduate School,Aeronautical Engineering,Aeronautical Engineering,Captain,US Navy (Retired),3,532,1,3.0,"STS 41-G (Challenger), STS-28 (Columbia), STS-45 (Atlantis)",,
+William B. Lenoir,1967.0,6.0,Deceased,1939-03-14,"Miami, FL",Male,MIT,Electrical Engineering,Electrical Engineering,,,1,122,0,0.0,STS-5 (Columbia),2012-08-26,
+Fred W. Leslie,,,Retired,1951-12-19,"Ancon, Panama",Male,University of Texas; University of Oklahoma,Engineering Science,Meteorology,,,1,381,0,0.0,STS-73 (Columbia),,
+Byron K. Lichtenberg,,,Retired,1948-02-19,"Stroudsburg, PA",Male,Brown University; MIT,Aerospace Engineering,Mechanical Engineering; Biomedical Engineering,,,2,461,0,0.0,"STS-9 (Columbia), STS-45 (Atlantis)",,
+Don L. Lind,1966.0,5.0,Retired,1930-05-18,"Midvale, UT",Male,University of Utah; University of California-Berkley,Physics,Nuclear Physics,,,1,168,0,0.0,STS 51-B (Challenger),,
+Kjell N. Lindgren,2009.0,20.0,Active,1973-01-23,"Taipei, Taiwan",Male,US Air Force Academy; University of Colorado; Colorado State University; University of Minnesota; University of Texas Medical Branch-Galveston,Biology,Medicine; Cardiovascular Physiology; Health Informatics; Public Health,,,1,3400,2,15.0,ISS-44/45 (Soyuz),,
+Steven W. Lindsey,1995.0,15.0,Retired,1960-08-24,"Arcadia, CA",Male,US Air Force Academy; US Air Force Institute of Technology,Engineering Science,Aeronautical Engineering,Colonel,US Air Force (Retired),5,1510,0,0.0,"STS-87 (Columbia), STS-95 (Discovery), STS-104 (Atlantis), STS-121 (Discovery), STS-133 (Discovery)",,
+Jerry M. Linenger,1992.0,14.0,Retired,1955-01-16,"Mount Clemens, MI",Male,US Naval Academy; University of Southern California; University of North Carolina; Wayne State University,Bioscience,Systems Management; Public Health; Medicine; Epidemiology,Captain,US Navy (Retired),2,3435,1,5.0,"STS-64 (Discovery), STS-81/84 (Atlantis)",,
+Richard M. Linnehan,1992.0,14.0,Management,1957-09-19,"Lowell, MA",Male,University of New Hampshire; Ohio State University; Harvard University,Animal Science,Veterinary Medicine; Public Administration,,,4,1427,6,43.0,"STS-78 (Columbia), STS-90 (Columbia), STS-109 (Columbia), STS-123 (Endeavor)",,
+Gregory T. Linteris,,,Retired,1957-10-04,"Demarest, NJ",Male,Princeton University; Stanford University,Chemical Engineering,Mechanical Engineering; Mechanical & Aerospace Engineering,,,2,471,0,0.0,"STS-83 (Columbia), STS-94 (Columbia)",,
+John A. Llewellyn,1967.0,6.0,Retired,1933-04-22,"Cardiff, Wales",Male,University College at Cardiff,Chemistry,Chemistry,,,0,0,0,0.0,,,
+Paul S. Lockhart,1996.0,16.0,Retired,1956-04-28,"Amarillo, TX",Male,Texas Tech University; University of Texas,Mathematics,Aerospace Engineering,Colonel,US Air Force (Retired),2,663,0,0.0,"STS-111 (Endeavor), STS-113 (Endeavor)",,
+Michael E. Lopez-Alegria,1992.0,14.0,Retired,1958-05-30,"Madrid, Spain",Male,US Naval Academy; US Naval Postgraduate School,Systems Engineering,Aeronautical Engineering,Captain,US Navy (Retired),3,6190,10,67.0,"STS-73 (Columbia), STS-92 (Discovery), STS-113 (Endeavor), ISS-14 (Soyuz)",,
+Christopher J. Loria,1996.0,16.0,Retired,1960-07-09,"Belmont, MA",Male,US Naval Academy; Harvard University,Engineering,Public Administration,Colonel,US Marine Corps (Retired),0,0,0,0.0,,,
+J. Mike Lounge,1980.0,9.0,Deceased,1946-06-28,"Denver, CO",Male,US Naval Academy; University of Colorado,Mathematics & Physics,Astrogeophysics,,,3,483,0,0.0,"STS 51-I (Discovery), STS-26 (Discovery), STS-35 (Columbia)",2011-03-01,
+Jack R. Lousma,1966.0,5.0,Retired,1936-02-29,"Grand Rapids, MI",Male,University of Michigan; US Naval Postgraduate School,Aeronautical Engineering,Aeronautical Engineering,Colonel,US Marine Corps (Retired),2,1619,2,11.0,"Skylab 3, STS-3 (Columbia)",,
+Stanley G. Love,1998.0,17.0,Management,1965-06-08,"San Diego, CA",Male,Harvey Mudd College; University of Washington,Physics,Astronomy,,,1,306,2,15.0,STS-122 (Atlantis),,
+James A. Lovell Jr. ,1962.0,2.0,Retired,1928-03-25,"Cleveland, OH",Male,US Naval Academy,,,Captain,US Navy (Retired),4,715,0,0.0,"Gemini 7, Gemini 12, Apollo 8, Apollo 13",,
+G. David Low,1984.0,10.0,Deceased,1956-02-19,"Cleveland, OH",Male,Washington & Lee University; Cornell University; Stanford University,Physics & Engineering,Mechanical Engineering; Aeronautics & Astronautics,,,3,714,1,6.0,"STS-32 (Columbia), STS-43 (Atlantis), STS-57 (Endeavor)",2008-03-15,
+Edward T. Lu,1995.0,15.0,Retired,1963-07-01,"Springfield, MA",Male,Cornell University; Stanford University,Electrical Engineering,Applied Physics,,,3,4962,1,6.0,"STS-84 (Atlantis), STS-106 (Atlantis), ISS-07 (Soyuz)",,
+Shannon W. Lucid,1978.0,8.0,Retired,1943-01-14,"Shanghai, China",Female,University of Oklahoma,Chemistry,Biochemistry,,,5,5354,0,0.0,"STS 51-G (Discovery), STS-34 (Atlantis), STS-43 (Atlantis), STS-58 (Columbia), STS-76/79 (Atlantis)",,
+Sandra H. Magnus,1996.0,16.0,Retired,1964-10-30,"Belleville, IL",Female,University of Missouri-Rolla; Georgia Institute of Technology,Physics,Electrical Engineering; Materials Science & Engineering,,,3,3776,0,0.0,"STS-112 (Atlantis), STS-126/119 (Endeavor/Discovery), STS-135 (Atlantis)",,
+Thomas H. Marshburn,2004.0,19.0,Active,1960-08-29,"Statesville, NC",Male,Davidson College; University of Virginia; Wake Forest University; University of Texas Medical Branch-Galveston,Physics,Engineering Physics; Medicine; Medical Science,,,2,3871,4,24.0,"STS-127 (Endeavor), ISS-34/35 (Soyuz)",,
+Michael J. Massimino,1996.0,16.0,Management,1962-08-19,"Oceanside, NY",Male,Columbia University; MIT,Industrial Engineering,Technology & Policy; Mechanical Engineering,,,2,571,4,30.0,"STS-109 (Columbia), STS-125 (Atlantis)",,
+Richard A. Mastracchio,1996.0,16.0,Active,1960-02-11,"Waterbury, CT",Male,University of Connecticut; Rensselaer Polytechnic Institute; University of Houston-Clear Lake,Electrical Engineering; Computer Science,Electrical Engineering; Physical Sciences,,,4,5461,9,53.0,"STS-106 (Atlantis), STS-118 (Endeavor), STS-131 (Discovery), ISS-38/39 (Soyuz)",,
+Thomas K. Mattingly II ,1966.0,5.0,Retired,1936-03-17,"Chicago, IL",Male,Auburn University,Aeronautical Engineering,,Rear Admiral,US Navy (Retired),3,508,1,1.0,"Apollo 16, STS-4 (Columbia), STS 51-C (Discovery)",,
+K. Megan McArthur,2000.0,18.0,Active,1971-08-30,"Honolulu, HI",Female,University of California-Los Angeles; University of California-San Diego,Aerospace Engineering,Oceanography,,,1,309,0,0.0,STS-125 (Atlantis),,
+William S. McArthur Jr. ,1990.0,3.0,Management,1951-07-26,"Laurinburg, NC",Male,US Military Academy; Georgia Institute of Technology,Applied Science & Engineering,Aerospace Engineering,Colonel,US Army (Retired),4,5398,4,24.0,"STS-58 (Columbia), STS-74 (Atlantis), STS-92 (Discovery), ISS-12 (Soyuz)",,
+S. Christa McAuliffe,,,Deceased,1948-09-02,"Boston, MA",Female,Framingham State College; Bowie State College,Education,Education,,,1,0,0,0.0,STS 51-L (Challenger),1986-01-28,STS 51-L (Challenger)
+Jon A. McBride,1978.0,8.0,Retired,1943-08-14,"Charleston, WV",Male,US Naval Postgraduate School,Aeronautical Engineering,,Captain,US Navy (Retired),1,197,0,0.0,STS 41-G (Challenger),,
+Bruce McCandless II ,1966.0,5.0,Retired,1937-06-08,"Boston, MA",Male,US Naval Academy; Stanford University; University of Houston-Clear Lake,,Electrical Engineering; Business Administration,Captain,US Navy (Retired),2,312,2,12.0,"STS 41-B (Challenger), STS-31 (Discovery)",,
+William C. McCool,1996.0,16.0,Deceased,1961-09-23,"San Diego, CA",Male,US Naval Academy; University of Maryland; US Naval Postgraduate School,Naval Sciences,Computer Science; Aeronautical Engineering,Commander,US Navy,1,382,0,0.0,STS-107 (Columbia),2003-02-01,STS-107 (Columbia)
+Michael J. McCulley,1984.0,10.0,Retired,1943-08-04,"San Diego, CA",Male,Purdue University,Metallurgical Engineering,Metallurgical Engineering,Captain,US Navy (Retired),1,119,0,0.0,STS-34 (Atlantis),,
+James A. McDivitt,1984.0,2.0,Retired,1929-06-10,"Chicago, IL",Male,University of Michigan,Astronautical Engineering,,Brigadier General,US Air Force (Retired),2,338,0,0.0,"Gemini 4, Apollo 9",,
+Donald R. McMonagle,1987.0,12.0,Retired,1952-05-14,"Flint, MI",Male,US Air Force Academy; California State University-Fresno,Astronautical Engineering,Mechanical Engineering,Colonel,US Air Force (Retired),3,605,0,0.0,"STS-39 (Discovery), STS-54 (Endeavor), STS-66 (Atlantis)",,
+Ronald E. McNair,1978.0,8.0,Deceased,1950-10-21,"Lake City, SC",Male,North Carolina A&T State College; MIT,Physics,Physics,,,2,191,0,0.0,"STS 41-B (Challenger), STS 51-L (Challenger)",1986-01-28,STS 51-L (Challenger)
+Carl J. Meade,1985.0,11.0,Retired,1950-11-16,"Chanute Air Force Base, IL",Male,University of Texas; California Institute of Technology,Electronics Engineering,Electronics Engineering,Colonel,US Air Force (Retired),3,712,1,6.0,"STS-38 (Atlantis), STS-50 (Columbia), STS-64 (Discovery)",,
+Bruce E. Melnick,1987.0,12.0,Retired,1949-12-05,"New York, NY",Male,US Coast Guard Academy; West Florida University,Engineering,Aeronautical Systems,Commander,US Coast Guard (Retired),2,311,0,0.0,"STS-41 (Discovery), STS-49 (Endeavor)",,
+Pamela A. Melroy,1995.0,15.0,Retired,1961-09-17,"Palo Alto, CA",Female,Wellesley College; MIT,Physics & Astronomy,Earth & Planetary Sciences,Colonel,US Air Force (Retired),3,914,0,0.0,"STS-92 (Discovery), STS-112 (Atlantis), STS-120 (Discovery)",,
+Leland D. Melvin,1998.0,17.0,Management,1964-02-15,"Lynchburg, VA",Male,University of Richmond; University of Virginia,Chemistry,Materials Science Engineering,,,2,565,0,0.0,"STS-122 (Atlantis), STS-129 (Atlantis)",,
+Dorothy M. Metcalf-Lindenberger,2004.0,19.0,Active,1975-05-02,"Colorado Springs, CO",Female,Whitman College,Geology,,,,1,362,0,0.0,STS-131 (Discovery),,
+F. Curtis Michel,1965.0,4.0,Retired,1934-06-05,"LaCrosse, WI",Male,California Institute of Technology,Physics,Physics,,,0,0,0,0.0,,,
+Edgar D. Mitchell,1966.0,5.0,Retired,1930-09-17,"Hereford, TX",Male,Carnegie-Mellon University; US Naval Postgraduate School; MIT,Industrial Management,Aeronautical Engineering; Aeronautics & Astronautics,Captain,US Navy (Retired),1,216,2,9.0,Apollo 14,,
+Barbara R. Morgan,1998.0,17.0,Retired,1951-11-28,"Fresno, CA",Female,Stanford University,Human Biology,,,,1,305,0,0.0,STS-118 (Endeavor),,
+Lee M. Morin,1996.0,16.0,Management,1952-09-09,"Manchester, NH",Male,University of New Hampshire; University of Alabama-Birmingham; New York University,Mathematical & Electrical Science,Public Health; Biochemistry; Medicine; Microbiology,Captain,US Navy,1,259,2,14.0,STS-110 (Atlantis),,
+Richard M. Mullane,1978.0,8.0,Retired,1945-09-10,"Wichita Falls, TX",Male,US Military Academy; US Air Force Institute of Technology,Military Engineering,Aeronautical Engineering,Colonel,US Air Force (Retired),3,356,0,0.0,"STS 41-D (Discovery), STS-27 (Atlantis), STS-36 (Atlantis)",,
+Story Musgrave,1967.0,6.0,Retired,1935-08-19,"Boston, MA",Male,Syracuse University; Marietta College; University of California-Los Angeles; University of Kentucky; University of Houston; Columbia University,Mathematics & Statistics; Chemistry,Business Administration; Physiology; Literature; Medicine,,,6,1281,4,26.0,"STS-6 (Challenger), STS 51-F (Challenger), STS-33 (Discovery), STS-44 (Atlantis), STS-61 (Endeavor), STS-80 (Columbia)",,
+Steven R. Nagel,1978.0,8.0,Retired,1946-10-27,"Canton, IL",Male,University of Illinois; California State University-Fresno,Aerospace Engineering,Mechanical Engineering,Colonel,US Air Force (Retired),4,721,0,0.0,"STS 51-G (Discovery), STS 61-A (Challenger), STS-37 (Atlantis), STS-55 (Columbia)",,
+Bill Nelson,,,Retired,1942-09-29,"Miami, FL",Male,Yale University; University of Virginia,,Law,Captain,US Army (Retired),1,146,0,0.0,STS 61-C (Columbia),,
+George D. Nelson,1978.0,8.0,Retired,1950-07-13,"Charles City, IA",Male,Harvey Mudd College; University of Washington,Physics,Astronomy,,,3,411,2,10.0,"STS 41-C (Challenger), STS 61-C (Columbia), STS-26 (Discovery)",,
+James H. Newman,1990.0,13.0,Retired,1956-10-16,"San Diego, CA",Male,Dartmouth College; Rice University,Physics,Physics,,,4,1042,6,43.0,"STS-51 (Discovery), STS-69 (Endeavor), STS-88 (Endeavor), STS- 109 (Columbia)",,
+Carlos I. Noriega,1995.0,15.0,Retired,1959-10-08,"Lima, Peru",Male,University of Southern California; US Naval Postgraduate School,Computer Science,Computer Science; Space Systems Operations,Lieutenant Colonel,US Marine Corps (Retired),2,481,3,19.0,"STS-84 (Atlantis), STS-97 (Endeavor)",,
+Lisa M. Nowak,1996.0,16.0,Retired,1963-05-10,"Washington, DC",Female,US Naval Academy; US Naval Postgraduate School,Aerospace Engineering,Aeronautical Engineering,Captain,US Navy (Retired),1,306,0,0.0,STS-121 (Discovery),,
+Karen L. Nyberg,2000.0,18.0,Active,1969-10-07,"Parker’s Prairie, MN",Female,University of North Dakota; University of Texas,Mechanical Engineering,Mechanical Engineering,,,2,4320,0,0.0,"STS-124 (Discovery), ISS-36/37 (Soyuz)",,
+Bryan D. O'Connor,1980.0,9.0,Retired,1946-09-06,"Orange, CA",Male,US Naval Academy; West Florida University,Engineering,Aeronautical Systems,Colonel,US Marine Corps (Retired),2,383,0,0.0,"STS 61-B (Atlantis), STS-40 (Columbia)",,
+Brian T. O'Leary,1967.0,6.0,Deceased,1940-01-27,"Boston, MA",Male,Williams College; Georgetown University; University of California-Berkeley,Physics,Astronomy,,,0,0,0,0.0,,2011-07-28,
+Ellen Ochoa,1990.0,13.0,Management,1958-05-10,"Los Angeles, CA",Female,San Diego State University; Stanford University,Physics,Electrical Engineering,,,4,979,0,0.0,"STS-56 (Discovery), STS-66 (Atlantis), STS-96 (Discovery), STS-110 (Atlantis)",,
+William A. Oefelein,1998.0,17.0,Retired,1965-03-29,"Ft. Belvoir, VA",Male,Oregon State University; University of Tennessee,Electrical Engineering,Aviation Systems,Commander,US Navy (Retired),1,308,0,0.0,STS-116 (Discovery),,
+John D. Olivas,1998.0,17.0,Retired,1966-05-25,"North Hollywood, CA",Male,University of Texas-El Paso; University of Houston; Rice University,Mechanical Engineering,Mechanical Engineering; Mechanical Engineering & Materials Science,,,2,665,5,34.0,"STS-117 (Atlantis), STS-128 (Discovery)",,
+Ellison S. Onizuka,1978.0,8.0,Deceased,1946-06-24,"Kealakekua, HI",Male,University of Colorado,Aerospace Engineering,Aerospace Engineering,Lieutenant Colonel,US Air Force,2,73,0,0.0,"STS 51-C (Discovery), STS 51-L (Challenger)",1986-01-28,STS 51-L (Challenger)
+Stephen S. Oswald,1985.0,11.0,Retired,1951-06-30,"Seattle, WA",Male,US Naval Academy,Aerospace Engineering,,,,3,814,0,0.0,"STS-42 (Discovery), STS-56 (Discovery), STS-67 (Endeavor)",,
+Robert F. Overmyer,1969.0,7.0,Deceased,1936-07-14,"Lorain, OH",Male,Baldwin Wallace College; US Naval Postgraduate School,Physics,Aeronautics,Colonel,US Marine Corps (Retired),2,290,0,0.0,"STS-5 (Columbia), STS 51-B (Challenger)",1996-03-22,
+William A. Pailes,,,Retired,1952-06-26,"Hackensack, NJ",Male,US Air Force Academy; Texas A&M University,Computer Science,Computer Science,Colonel,US Air Force (Retired),1,97,0,0.0,STS 51-J (Atlantis),,
+Scott E. Parazynski,1992.0,14.0,Retired,1961-07-28,"Little Rock, AR",Male,Stanford University,Biology,Medicine,,,5,1404,7,47.0,"STS-66 (Atlantis), STS-86 (Atlantis), STS-95 (Discovery), STS-100 (Endeavor), STS-120 (Discovery)",,
+Ronald A. Parise,,,Deceased,1951-05-24,"Warren, OH",Male,Youngstown State University; University of Florida,Physics,Astronomy,,,2,614,0,0.0,"STS-35 (Columbia), STS-67 (Endeavor)",2008-05-09,
+Robert A. Parker,1967.0,6.0,Retired,1936-12-14,"New York, NY",Male,Amherst College; California Institute of Technology,Physics & Astronomy,Astronomy,,,2,462,0,0.0,"STS-9 (Columbia), STS-35 (Columbia)",,
+Niclolas J. M. Patrick,1998.0,17.0,Retired,1964-03-22,"North Yorkshire, England",Male,University of Cambridge; MIT,Engineering,Engineering; Mechanical Engineering,,,2,638,3,18.0,"STS-116 (Discovery), STS-130 (Endeavor)",,
+James A. Pawelczyk,,,Retired,1960-09-20,"Buffalo, NY",Male,University of Rochester; Pennsylvania State University; University of North Texas,Biology & Psychology,Physiology; Biology,,,1,381,0,0.0,STS-90 (Columbia),,
+Gary E. Payton,,,Retired,1948-06-20,"Rock Island, IL",Male,US Air Force Academy; Purdue University,Astronautical Engineering,Astronautical & Aeronautical Engineering,Major,US Air Force,1,73,0,0.0,STS 51-C (Discovery),,
+Donald H. Peterson,1969.0,7.0,Retired,1933-10-22,"Winona, MS",Male,US Military Academy; US Air Force Institute of Technology,,Nuclear Engineering,Colonel,US Air Force (Retired),1,120,1,4.0,STS-6 (Challenger),,
+Donald R. Pettit,1996.0,16.0,Active,1955-04-20,"Silverton, OR",Male,Oregon State University; University of Arizona,Chemical Engineering,Chemical Engineering,,,3,8872,2,13.0,"ISS-6 (Soyuz), STS-126 (Endeavor), ISS-30/31 (Soyuz)",,
+John L. Phillips,1996.0,16.0,Retired,1951-04-15,"Ft. Belvoir, VA",Male,US Naval Academy; University of West Florida; University of California-Los Angeles,Mathematics; Russian,Aeronautical Systems; Geophysics & Space Physics,Captain,US Naval Reserves (Retired),3,4880,1,5.0,"STS-100 (Endeavor), ISS-11 (Soyuz), STS-119 (Discovery)",,
+William R. Pogue,1966.0,5.0,Retired,1930-01-23,"Okemah, OK",Male,Oklahoma Baptist University; Oklahoma State University,Education,Mathematics,Colonel,US Air Force (Retired),1,2017,2,13.0,Skylab 4,,
+Alan G. Poindexter,1998.0,17.0,Deceased,1961-11-05,"Pasadena, CA",Male,Georgia Institute of Technology; US Naval Postgraduate School,Aerospace Engineering,Aeronautical Engineering,Captain,US Navy,2,669,0,0.0,"STS-122 (Atlantis), STS-131 (Discovery)",2012-07-01,
+Mark L. Polansky,1996.0,16.0,Retired,1956-06-02,"Paterson, NJ",Male,Purdue University,Aeronautical & Astronautical Engineering,Aeronautical & Astronautical Engineering,,,3,995,0,0.0,"STS-98 (Atlantis), ST-116 (Discovery), STS-127 (Endeavor)",,
+Charles J. Precourt,1990.0,13.0,Retired,1955-06-29,"Waltham, MA",Male,US Air Force Academy; Golden Gate University; US Naval War College,Aeronautical Engineering,Engineering Management; Strategic Studies,Colonel,US Air Force (Retired),4,950,0,0.0,"STS-55 (Columbia), STS-71 (Atlantis), STS-84 (Atlantis), STS-91 (Discovery)",,
+William F. Readdy,1987.0,12.0,Retired,1952-01-24,"Quonset Point, RI",Male,US Naval Academy,Aerospace Engineering,,Captain,US Navy (Retired),3,672,0,0.0,"STS-42 (Discovery), STS-51 (Discovery), STS-79 (Atlantis)",,
+Kenneth S. Reightler Jr. ,1987.0,12.0,Retired,1951-03-24,"Patuxent River, MD",Male,US Naval Academy; US Naval Postgraduate School; University of Southern California,Aerospace Engineering,Aeronautical Engineering; Systems Management,Captain,US Navy (Retired),2,327,0,0.0,"STS-48 (Discovery), STS-60 (Discovery)",,
+James F. Reilly II ,1995.0,15.0,Retired,1954-03-18,"Mountain Home Air Force Base, ID",Male,University of Texas-Dallas,Geosciences,Geosciences,,,3,854,5,31.0,"STS-89 (Endeavor), STS-104 (Atlantis), STS-117 (Atlantis)",,
+Garrett E. Reisman,1998.0,17.0,Retired,1968-02-10,"Morristown, NJ",Male,University of Pennsylvania; California Institute of Technology,Economics,Mechanical Engineering,,,2,2571,3,21.0,"STS-123/124 (Endeavor/Discovery), STS-132 (Atlantis)",,
+Judith A. Resnik,1978.0,8.0,Deceased,1949-04-05,"Akron, OH",Female,Carnegie-Mellon University; University of Maryland,Electrical Engineering,Electrical Engineering,,,2,144,0,0.0,"STS 41-D (Discovery), STS 51-L (Challenger)",1986-01-28,STS 51-L (Challenger)
+Paul W. Richards,1996.0,16.0,Management,1964-05-20,"Scranton, PA",Male,Drexel University; University of Maryland,Mechanical Engineering,Mechanical Engineering,,,1,307,1,6.0,STS-102 (Discovery),,
+Richard N. Richards,1980.0,9.0,Retired,1946-08-24,"Key West, FL",Male,University of Missouri; University of West Florida,Chemical Engineering,Aeronautical Systems,Captain,US Navy (Retired),4,813,0,0.0,"STS-28 (Columbia), STS-41 (Discovery), STS-50 (Columbia), STS-64 (Discovery)",,
+Sally K. Ride,1978.0,8.0,Deceased,1951-05-26,"Los Angeles, CA",Female,Stanford University,Physics; English,Physics,,,2,343,0,0.0,"STS-7 (Challenger), STS 41-G (Challenger)",2012-07-23,
+Patricia Hilliard Robertson,1998.0,17.0,Deceased,1963-03-12,"Indiana, PA",Female,Indiana University of Pennsylvania; Medical College of Pennsylvania,Biology,Medicine,,,0,0,0,0.0,,2001-05-24,
+Stephen K. Robinson,1995.0,15.0,Retired,1955-10-26,"Sacramento, CA",Male,University of California-Davis; Stanford University,Mechanical & Aeronautical Engineering,Mechanical Engineering,,,4,1162,3,20.0,"STS-85 (Discovery), STS-95 (Discovery), STS-114 (Discovery), STS-130 (Endeavor)",,
+Kent V. Rominger,1992.0,14.0,Retired,1956-08-07,"Del Norte, CO",Male,Colorado State University; US Naval Postgraduate School,Civil Engineering,Aeronautical Engineering,Captain,US Navy (Retired),5,1611,0,0.0,"STS-73 (Columbia), STS-80 (Columbia), STS-85 (Discovery), STS-96 (Discovery), STS-100 (Endeavor)",,
+Stuart A. Roosa,1966.0,5.0,Deceased,1933-08-16,"Durango, CO",Male,University of Colorado,Aeronautical Engineering,,Colonel,US Air Force (Retired),1,216,0,0.0,Apollo 14,1994-12-12,
+Jerry L. Ross,1980.0,9.0,Retired,1948-01-20,"Crown Point, IN",Male,Purdue University,Mechanical Engineering,Mechanical Engineering,Colonel,US Air Force (Retired),7,1393,9,58.0,"ST 61-B (Atlantis), ST-27 (Atlantis), ST-37 (Atlantis), STS-55 (Columbia), STS-74 (Atlantis), STS-88 (Endeavor), STS-110 (Atlantis)",,
+Kathleen Rubins,2009.0,20.0,Active,1978-10-14,"Farmington, CT",Female,University of California-San Diego; Stanford University,Molecular Biology,Cancer Biology,,,1,2762,2,13.0,ISS-48/49 (Soyuz),,
+Mario Runco Jr. ,1987.0,12.0,Management,1952-01-26,"Bronx, NY",Male,City College of New York; Rutgers University,Earth & Planetary Science,Atmospheric Physics,Lieutenant Commander,US Navy (Retired),3,551,0,0.0,"STS-44 (Atlantis), STS-54 (Endeavor), STS-77 (Endeavor)",2001-04-23,
+Albert Sacco Jr.,,,Retired,1949-05-03,"Boston, MA",Male,Northeastern University; MIT,Chemical Engineering,Chemical Engineering,,,1,381,0,0.0,STS-73 (Columbia),,
+Robert L. Satcher Jr. ,2004.0,19.0,Retired,1965-09-22,"Hampton, VA",Male,MIT; Harvard University,Chemical Engineering,Chemical Engineering; Medicine,,,1,259,2,12.0,STS-129 (Atlantis),,
+Walter M. Schirra Jr. ,1959.0,1.0,Deceased,1923-03-12,"Hackensack, NJ",Male,US Naval Academy,Naval Sciences,,Captain,US Navy (Retired),3,295,0,0.0,"Mercury 8, Gemini 6, Apollo 7",2007-05-02,
+Harrison H. Schmitt,1965.0,4.0,Retired,1935-07-03,"Santa Rita, NM",Male,California Institute of Technology; Harvard University,Geology,Geology,,,1,301,3,22.0,Apollo 17,,
+Russell L. Schweickart,1963.0,3.0,Retired,1935-10-25,"Neptune, NJ",Male,MIT,Aeronautics & Astronautics,Aeronautics & Astronautics,,,1,241,1,1.0,Apollo 9,,
+Francis R. Scobee,1978.0,8.0,Deceased,1939-05-19,"Cle Elum, WA",Male,University of Arizona,Aerospace Engineering,,Major,US Air Force (Retired),2,167,0,0.0,"STS 41-C (Challenger), STS 51-L (Challenger)",1986-01-28,STS 51-L (Challenger)
+David R. Scott,1963.0,3.0,Retired,1932-06-06,"San Antonio, TX",Male,US Military Academy; MIT,,Aeronautics & Astronautics,Colonel,US Air Force (Retired),3,546,4,19.0,"Gemini 8, Apollo 9, Apollo 15",,
+Winston E. Scott,1992.0,14.0,Retired,1950-08-06,"Miami, FL",Male,Florida State University; US Naval Postgraduate School,Music,Aeronautical Engineering,Captain,US Navy (Retired),2,590,3,19.0,"STS-72 (Endeavor), STS-87 (Columbia)",,
+Paul D. Scully-Power,,,Retired,1944-05-28,"Sydney, Australia",Male,University of Sydney,Applied Mathematics,,,,1,197,0,0.0,STS 41-G (Challenger),,
+Richard A. Searfoss,1990.0,13.0,Retired,1956-06-05,"Mount Clemens, MI",Male,US Air Force Academy; California Institute of Technology,Aeronautical Engineering,Aeronautics,Colonel,US Air Force (Retired),3,939,0,0.0,"STS-58 (Columbia), STS-76 (Atlantis), STS-90 (Columbia)",,
+Margaret Rhea Seddon,1978.0,8.0,Retired,1947-11-08,"Murfreesboro, TN",Female,University of California-Berkeley; University of Tennessee,Physiology,Medicine,,,3,722,0,0.0,"STS 51-D (Discovery), STS-40 (Columbia), STS-58 (Columbia)",,
+Elliot M. See Jr. ,1962.0,2.0,Deceased,1927-07-23,"Dallas, TX",Male,US Merchant Marine Academy; University of California-Los Angeles,,Engineering,,,0,0,0,0.0,,1966-02-28,
+Ronald M. Sega,1990.0,13.0,Retired,1952-12-04,"Cleveland, OH",Male,US Air Force Academy; Ohio State University; University of Colorado,Physics & Mathematics,Physics; Electrical Engineering,Colonel,US Air Force Reserves (Retired),2,420,0,0.0,"STS-60 (Discovery), STS-76 (Atlantis)",,
+Piers J. Sellers,1996.0,16.0,Management,1955-04-11,"Crowborough, England",Male,University of Edinburgh; Leeds University,Ecological Science,Biometeorology,,,3,839,6,41.0,"STS-112 (Atlantis), STS-121 (Discovery), STS-132 (Atlantis)",,
+Brewster H. Shaw Jr. ,1978.0,8.0,Retired,1945-05-16,"Cass City, MI",Male,University of Wisconsin,Engineering Mechanics,Engineering Mechanics,Colonel,US Air Force (Retired),3,533,0,0.0,"STS-9 (Columbia), STS 61-B (Atlantis), STS-28 (Columbia)",,
+Alan B. Shepard Jr. ,1959.0,1.0,Deceased,1923-11-18,"East Derry, NH",Male,US Naval Academy,Naval Sciences,,Rear Admiral,US Navy (Retired),2,216,2,9.0,"Mercury 3, Apollo 14",1998-07-21,
+William M. Shepherd,1984.0,10.0,Retired,1949-07-26,"Oak Ridge, TN",Male,US Naval Academy; MIT,Aerospace Engineering,Mechanical Engineering,Captain,US Navy (Retired),4,3823,0,0.0,"STS-37 (Atlantis), STS-41 (Discovery), STS-52 (Columbia), ISS-01/STS-102 (Soyuz/Discovery)",,
+Loren J. Shriver,1978.0,8.0,Retired,1944-09-23,"Jefferson, IA",Male,US Air Force Academy; Purdue University,Aeronautical Engineering,Astronautical Engineering,Colonel,US Air Force (Retired),3,386,0,0.0,"STS 51-C (Discovery), STS-31 (Discovery), STS-46 (Atlantis)",,
+Donald K. Slayton,1959.0,1.0,Deceased,1924-03-01,"Sparta, WI",Male,University of Minnesota,Aeronautical Engineering,,Major,US Air Force Reserves,1,217,0,0.0,Apollo-Soyuz Test Project,1993-06-13,
+Michael J. Smith,1980.0,9.0,Deceased,1945-04-30,"Beaufort, NC",Male,US Naval Academy; US Naval Postgraduate School,Naval Sciences,Aeronautical Engineering,Captain,US Navy,1,0,0,0.0,STS 51-L (Challenger),1986-01-28,STS 51-L (Challenger)
+Steven L. Smith,1992.0,14.0,Management,1958-12-30,"Phoenix, AZ",Male,Stanford University,Electrical Engineering,Electrical Engineering,,,4,960,7,49.0,"STS-68 (Endeavor), STS-82 (Discovery), STS-103 (Discovery), STS-110 (Atlantis)",,
+Sherwood C. Spring,1980.0,9.0,Retired,1944-09-23,"Hartford, CT",Male,US Military Academy; University of Arizona,Engineering,Aerospace Engineering,Colonel,US Army (Retired),1,165,2,12.0,STS 61-B (Atlantis),,
+Robert C. Springer,1980.0,9.0,Retired,1942-05-21,"St. Louis, MO",Male,US Naval Academy; US Naval Postgraduate School,Naval Sciences,Operations Research,Colonel,US Marine Corps (Retired),2,237,0,0.0,"STS-29 (Discovery), STS-38 (Atlantis)",,
+Thomas P. Stafford,1962.0,2.0,Retired,1930-09-17,"Weatherford, OK",Male,US Naval Academy,,,Lieutenant General,US Air Force (Retired),4,507,0,0.0,"Gemini 6, Gemini 9, Apollo 10, Apollo-Soyuz Test Project",,
+Heidemarie M. Stefanyshyn-Piper,1996.0,16.0,Retired,1963-02-07,"St. Paul, MN",Female,MIT,Mechanical Engineering,,Captain,US Navy,2,663,2,33.0,"STS-115 (Atlantis), STS-126 (Endeavor)",,
+Robert L. Stewart,1978.0,8.0,Retired,1942-08-13,"Washington, DC",Male,University of Southern Mississippi; University of Texas-Arlington,Mathematics,Aerospace Engineering,Brigadier General,US Army (Retired),2,289,2,12.0,"STS 41-B (Challenger), STS 51-J (Atlantis)",,
+Nicole P. Stott,2000.0,18.0,Active,1962-11-19,"Albany, NY",Female,Embry-Riddle Aeronautical University; University of Central Florida,Aeronautical Engineering,Engineering Management,,,2,2477,1,6.0,"STS-128/129 (Discovery/Atlantis), STS-133 (Discovery)",,
+Frederick W. Sturckow,1995.0,15.0,Retired,1961-08-11,"La Mesa, CA",Male,California Polytechnic State University,Mechanical Engineering,,Colonel,US Marine Corps (Retired),4,1233,0,0.0,"STS-88 (Endeavor), STS-105 (Discovery), STS-117 (Atlantis), STS-128 (Discovery)",,
+Kathryn D. Sullivan,1978.0,8.0,Retired,1951-10-03,"Patterson, NJ",Female,University of California-Santa Cruz; Dalhousie University,Earth Sciences,Earth Sciences; Geology,,,3,532,1,3.0,"STS 41-G (Challenger), STS-31 (Discovery), STS-45 (Atlantis)",,
+Steven R. Swanson,1998.0,17.0,Active,1960-12-03,"Syracuse, NY",Male,University of Colorado; Florida Atlantic University; Texas A&M University,Engineering Physics,Computer Systems; Computer Science,,,3,4700,5,28.0,"STS-117 (Atlantis), STS-119 (Discovery), ISS-39/40 (Soyuz)",,
+John L. Swigert Jr. ,1966.0,5.0,Deceased,1931-08-30,"Denver, CO",Male,University of Colorado; Rensselaer Polytechnic Institute; University of Hartford,Mechanical Engineering,Aerospace Science; Business Administration,,,1,142,0,0.0,Apollo 13,1982-12-27,
+Daniel M. Tani,1996.0,16.0,Retired,1961-02-01,"Ridley Park, PA",Male,MIT,Mechanical Engineering,Mechanical Engineering,,,2,3162,6,39.0,"STS-108 (Endeavor), STS-120/122 (Discovery/Atlantis)",,
+Joseph R. Tanner,1992.0,14.0,Retired,1950-01-21,"Danville, IL",Male,University of Illinois,Mechanical Engineering,,,,4,1045,7,46.0,"STS-66 (Atlantis), STS-82 (Discovery), STS-97 (Endeavor), STS-115 (Discovery)",,
+Norman E. Thagard,1978.0,8.0,Retired,1943-07-03,"Marianna, FL",Male,Florida State University; University of Texas,Engineering Science,Engineering Science; Medicine,,,5,3373,0,0.0,"STS-7 (Challenger), STS 51-B (Challenger), STS-30 (Atlantis), STS-42 (Discovery), STS-71 (Soyuz/Atlantis)",,
+Andrew S. W. Thomas,1992.0,14.0,Management,1951-12-18,"Adelaide, Australia",Male,University of Adelaide,Mechanical Engineering,Mechanical Engineering,,,4,4257,1,6.0,"STS-77 (Endeavor), STS-89/91 (Endeavor/Discovery), STS-102 (Discovery), STS-114 (Discovery)",,
+Donald A. Thomas,1990.0,13.0,Retired,1955-05-06,"Cleveland, OH",Male,Case Western Reserve University; Cornell University,Physics,Materials Science,,,4,1040,0,0.0,"STS-65 (Columbia), STS-70 (Discovery), STS-83 (Columbia), STS-94 (Columbia)",,
+Stephen D. Thorne,1985.0,11.0,Deceased,1953-02-11,"Frankfurt, West Germany",Male,US Naval Academy,Engineering,,Lieutenant Commander,US Navy,0,0,0,0.0,,1986-05-24,
+Kathryn C. Thornton,1984.0,10.0,Retired,1952-08-17,"Montgomery, AL",Female,Auburn University; University of Virginia,Physics,Physics,,,4,975,3,21.0,"STS-33 (Discovery), STS-49 (Endeavor), STS-61 (Endeavor), STS-73 (Columbia)",,
+William E. Thornton,1967.0,6.0,Retired,1929-04-14,"Faison, NC",Male,University of North Carolina,Physics,Medicine,,,2,315,0,0.0,"STS-8 (Challenger), STS 51-B (Challenger)",,
+Pierre J. Thuot,1985.0,11.0,Retired,1955-05-19,"Groton, CT",Male,US Naval Academy; University of Southern California,Physics,Systems Management,Commander,US Navy,3,654,3,17.0,"STS-36 (Atlantis), STS-49 (Endeavor), STS-62 (Columbia)",,
+Scott D. Tingle,2009.0,20.0,Active,1965-07-19,"Attleboro, MA",Male,Southeastern Massachusetts University; Purdue University,Mechanical Engineering,Mechanical Engineering,Commander,US Navy,0,0,0,0.0,,,
+Richard H. Truly,1969.0,7.0,Retired,1937-11-12,"Fayette, MS",Male,Georgia Institute of Technology,Aeronautical Engineering,,Vice Admiral,US Navy (Retired),2,199,0,0.0,"STS-2 (Columbia), STS-8 (Challenger)",,
+Lodewijk van den Berg,,,Retired,1932-03-24,"Sluiskil, Netherlands",Male,Delft University of Technology; University of Delaware,Chemical Engineering,Applied Science,,,1,168,0,0.0,STS 51-B (Challenger),,
+James D. van Hoften,1978.0,8.0,Retired,1944-06-11,"Fresno, CA",Male,University of California-Berkeley; Colorado State University,Civil Engineering,Hydraulic Engineering; Fluid Mechanics,,,2,338,4,22.0,"STS 41-C (Challenger), STS 51-I (Discovery)",,
+Mark T. Vande Hei,2009.0,20.0,Active,1966-11-10,"Falls Church, VA",Male,Saint John’s University; Stanford University,Physics,Applied Physics,Colonel,US Army,0,0,0,0.0,,,
+Charles Lacy Veach,1984.0,10.0,Deceased,1944-09-18,"Chicago, IL",Male,US Air Force Academy,Engineering Management,,,,2,436,0,0.0,"STS-39 (Discovery), STS-52 (Columbia)",1995-10-03,
+Terry W. Virts Jr. ,2000.0,18.0,Active,1967-12-01,"Baltimore, MD",Male,US Air Force Academy; Embry-Riddle Aeronautical University,Mathematics,Aeronautics,Colonel,US Air Force,2,5122,3,18.0,"STS-130 (Endeavor), ISS-42/43 (Soyuz)",,
+James S. Voss,1987.0,12.0,Retired,1949-03-03,"Cordova, AL",Male,Auburn University; University of Colorado,Aerospace Engineering,Aerospace Engineering Sciences,Colonel,US Army (Retired),5,4853,4,22.0,"STS-44 (Atlantis), STS-53 (Discovery), STS-69 (Endeavor), STS-101 (Atlantis), STS-102/105 (Discovery)",,
+Janice E. Voss,1990.0,13.0,Deceased,1956-10-08,"South Bend, IN",Female,Purdue University; MIT,Engineering Science,Electrical Engineering; Aeronautics & Astronautics,,,5,1179,0,0.0,"STS-57 (Endeavor), STS-63 (Discovery), STS-83 (Columbia), STS-94 (Columbia), STS-99 (Endeavor)",2012-02-06,
+Rex J. Walheim,1996.0,16.0,Active,1962-10-10,"Redwood, CA",Male,University of California-Berkeley; University of Houston,Mechanical Engineering,Industrial Engineering,Colonel,US Air Force (Retired),3,872,5,36.0,"STS-110 (Atlantis), STS-122 (Atlantis), STS-135 (Atlantis)",,
+Charles D. Walker,,,Retired,1948-08-29,"Bedford, IN",Male,Purdue University,Aeronautical & Astronautical Engineering,,,,3,477,0,0.0,"STS 41-D (Discovery), STS 51-D (Discovery), STS 61-B (Atlantis)",,
+David M. Walker,1978.0,8.0,Deceased,1944-05-20,"Columbus, GA",Male,US Naval Academy,Naval Sciences,,Captain,US Navy (Retired),4,724,0,0.0,"STS 51-A (Discovery), STS-30 (Atlantis), STS-53 (Discovery), STS-69 (Endeavor)",2001-04-23,
+Shannon Walker,2004.0,19.0,Active,1965-06-04,"Houston, TX",Female,Rice University,Space Physics,Space Physics,,,1,3919,0,0.0,ISS-24/25 (Soyuz),,
+Carl E. Walz,1990.0,13.0,Retired,1955-09-06,"Cleveland, OH",Male,Kent State University; John Carroll University,Physics,Solid State Physics,Colonel,US Air Force,4,5533,3,19.0,"STS-51 (Discovery), STS-65 (Columbia), STS-79 (Atlantis), STS-108/111 (Endeavor)",,
+Taylor G. Wang,,,Retired,1940-06-16,"Jiangxi, China",Male,University of California at Los Angeles,Physics,Physics,,,1,168,0,0.0,STS 51-B (Challenger),,
+Mary E. Weber,1992.0,14.0,Retired,1962-08-24,"Cleveland, OH",Female,Purdue University; University of California-Berkeley,Chemical Engineering,Physical Chemistry,,,2,450,0,0.0,"STS-70 (Discovery), STS-101 (Atlantis)",,
+Paul J. Weitz,1966.0,5.0,Retired,1932-06-25,"Erie, PA",Male,Pennsylvania State University; US Naval Postgraduate School,Aeronautical Engineering,Aeronautical Engineering,Captain,US Navy (Retired),2,793,1,2.0,"Skylab 2, STS-6 (Challenger)",,
+James D. Wetherbee,1984.0,10.0,Retired,1952-11-27,"Flushing, NY",Male,University of Notre Dame,Aerospace Engineering,,Captain,US Navy (Retired),6,1594,0,0.0,"STS-32 (Columbia), STS-52 (Columbia), STS-63 (Discovery), STS-86 (Atlantis), STS-102 (Discovery), STS-113 (Endeavor)",,
+Douglas H. Wheelock,1998.0,17.0,Active,1960-05-05,"Binghamton, NY",Male,US Military Academy; Georgia Institute of Technology,Applied Science & Engineering,Aerospace Engineering,Colonel,US Army,2,4281,6,43.0,"STS-120 (Discovery), ISS-24/25 (Soyuz)",,
+Edward H. White II ,1962.0,2.0,Deceased,1930-11-14,"San Antonio, TX",Male,US Military Academy; University of Michigan,,Aeronautical Engineering,Lieutenant Colonel,US Air Force,2,97,1,0.5,"Gemini 4, Apollo 1",1967-01-27,Apollo 1
+Peggy A. Whitson,1996.0,16.0,Active,1960-02-09,"Mt. Ayr, IA",Female,Iowa Wesleyan College; Rice University,Chemistry & Biology,Biochemistry,,,3,11698,7,46.0,"STS-111/113 (Endeavor), ISS-16 (Soyuz), ISS-50/51 (Soyuz)",,
+Terrence W. Wilcutt,1990.0,13.0,Management,1949-10-31,"Russellville, KY",Male,Western Kentucky University,Mathematics,,,,4,1008,0,0.0,"STS-68 (Endeavor), STS-79 (Atlantis), STS-89 (Endeavor), STS-106 (Atlantis)",,
+Clifton C. Williams Jr. ,1963.0,3.0,Deceased,1932-09-26,"Mobile, AL",Male,Auburn University,Mechanical Engineering,,Major,US Marine Corps,0,0,0,0.0,,1967-10-05,
+Donald E. Williams,1978.0,8.0,Retired,1958-02-13,"Lafayette, IN",Male,Purdue University,Mechanical Engineering,,Captain,US Navy (Retired),2,287,0,0.0,"STS 51-D (Discovery), STS-34 (Atlantis)",,
+Jeffrey N. Williams,1996.0,16.0,Active,1958-01-18,"Superior, WI",Male,US Military Academy; US Naval Postgraduate School; US Naval War College,Applied Science & Engineering,Aeronautical Engineering; National Security & Strategic Studies,Colonel,US Army (Retired),4,12818,5,32.0,"STS-101 (Atlantis), ISS-13 (Soyuz), ISS-21/22 (Soyuz), ISS-47/48 (Soyuz)",,
+Sunita L. Williams,1998.0,17.0,Active,1965-09-19,"Euclid, OH",Female,US Naval Academy; Florida Institute of Technology,Physical Science,Engineering Management,Captain,US Navy,2,7721,7,50.0,"STS-116/117 (Discovery/Atlantis), ISS-32/33 (Soyuz)",,
+Barry E. Wilmore,2000.0,18.0,Active,1962-12-29,"Murfreesboro, TN",Male,Tennessee Technological University; University of Tennessee,Electrical Engineering,Electrical Engineering; Aviation Systems,Captain,US Navy,2,4272,4,25.0,"STS-129 (Atlantis), ISS-41/42 (Soyuz)",,
+Stephanie D. Wilson,1996.0,16.0,Active,1966-09-27,"Boston, MA",Female,Harvard University; University of Texas,Engineering Science,Aerospace Engineering,,,3,1031,0,0.0,"STS-121 (Discovery), STS-120 (Discovery), STS-131 (Discovery)",,
+G. Reid Wiseman,2009.0,20.0,Active,1975-11-11,"Baltimore, MD",Male,Rensselaer Polytechnic Institute; Johns Hopkins University,Computer & Systems Engineering,Systems Engineering,Commander,US Navy,1,3968,2,13.0,ISS-40/41 (Soyuz),,
+Peter J. K. Wisoff,1990.0,13.0,Retired,1958-08-16,"Norfolk, VA",Male,University of Virginia; Stanford University,Physics,Applied Physics,,,4,1064,3,20.0,"STS-57 (Endeavor), STS-68 (Endeavor), STS-81 (Atlantis), STS-92 (Discovery)",,
+David A. Wolf,1990.0,13.0,Retired,1956-08-23,"Indianapolis, IN",Male,Purdue University; Indiana University,Electrical Engineering,Medicine,,,3,4044,7,41.0,"STS-58 (Columbia). STS-86/89 (Atlantis/Endeavor), STS-112 (Atlantis), STS-127 (Endeavor)",,
+Neil W. Woodward III ,1998.0,17.0,Retired,1962-07-26,"Chicago, IL",Male,MIT; University of Texas-Austin; George Washington University,Physics,Physics; Business Management,Commander,US Navy,0,0,0,0.0,,,
+Alfred M. Worden,1966.0,5.0,Retired,1932-02-07,"Jackson, MI",Male,US Military Academy; University of Michigan,Military Science,Aeronautical & Astronautical Engineering,Colonel,US Air Force (Retired),1,295,1,0.5,Apollo 15,,
+John W. Young,1962.0,2.0,Retired,1930-09-24,"San Francisco, CA",Male,Georgia Institute of Technology,Aeronautical Engineering,,Captain,US Navy (Retired),6,835,3,20.0,"Gemini 3, Gemini 10, Apollo 10, Apollo 16, STS-1 (Columbia), STS-9 (Columbia)",,
+George D. Zamka,1998.0,17.0,Retired,1962-06-29,"Jersey City, NJ",Male,US Naval Academy; Florida Institute of Technology,Mathematics,Engineering Management,Colonel,US Marine Corps (Retired),2,692,0,0.0,"STS-120 (Discovery), STS-130 (Endeavor)",,
diff --git a/your-code/fertility_Diagnosis.txt b/your-code/fertility_Diagnosis.txt
new file mode 100644
index 0000000..e3a341d
--- /dev/null
+++ b/your-code/fertility_Diagnosis.txt
@@ -0,0 +1,100 @@
+-0.33,0.69,0,1,1,0,0.8,0,0.88,N
+-0.33,0.94,1,0,1,0,0.8,1,0.31,O
+-0.33,0.5,1,0,0,0,1,-1,0.5,N
+-0.33,0.75,0,1,1,0,1,-1,0.38,N
+-0.33,0.67,1,1,0,0,0.8,-1,0.5,O
+-0.33,0.67,1,0,1,0,0.8,0,0.5,N
+-0.33,0.67,0,0,0,-1,0.8,-1,0.44,N
+-0.33,1,1,1,1,0,0.6,-1,0.38,N
+1,0.64,0,0,1,0,0.8,-1,0.25,N
+1,0.61,1,0,0,0,1,-1,0.25,N
+1,0.67,1,1,0,-1,0.8,0,0.31,N
+1,0.78,1,1,1,0,0.6,0,0.13,N
+1,0.75,1,1,1,0,0.8,1,0.25,N
+1,0.81,1,0,0,0,1,-1,0.38,N
+1,0.94,1,1,1,0,0.2,-1,0.25,N
+1,0.81,1,1,0,0,1,1,0.5,N
+1,0.64,1,0,1,0,1,-1,0.38,N
+1,0.69,1,0,1,0,0.8,-1,0.25,O
+1,0.75,1,1,1,0,1,1,0.25,N
+1,0.67,1,0,0,0,0.8,1,0.38,O
+1,0.67,0,0,1,0,0.8,-1,0.25,N
+1,0.75,1,0,0,0,0.6,0,0.25,N
+1,0.67,1,1,0,0,0.8,-1,0.25,N
+1,0.69,1,0,1,-1,1,-1,0.44,O
+1,0.56,1,0,1,0,1,-1,0.63,N
+1,0.67,1,0,0,0,1,-1,0.25,N
+1,0.67,1,0,1,0,0.6,-1,0.38,O
+1,0.78,1,1,0,1,0.6,-1,0.38,O
+1,0.58,0,0,1,0,1,-1,0.19,N
+1,0.67,0,0,1,0,0.6,0,0.5,O
+1,0.61,1,0,1,0,1,-1,0.63,N
+1,0.56,1,0,0,0,1,-1,0.44,N
+1,0.64,0,0,0,0,1,-1,0.63,N
+1,0.58,1,1,1,0,0.8,0,0.44,N
+1,0.56,1,1,1,0,1,-1,0.63,N
+-1,0.78,1,1,0,1,0.6,-1,0.38,N
+-1,0.78,1,0,1,0,1,-1,0.25,N
+-1,0.56,1,0,1,0,1,-1,0.63,N
+-1,0.67,0,0,1,0,0.6,0,0.5,O
+-1,0.69,1,0,0,0,1,-1,0.31,N
+-1,0.53,1,1,1,0,0.8,1,0.5,N
+-1,0.56,1,1,0,0,0.8,1,0.5,N
+-1,0.58,1,0,1,-1,0.8,1,0.5,N
+-1,0.56,1,0,0,0,1,-1,0.44,N
+-1,0.53,1,1,0,1,1,0,0.31,N
+-1,0.53,1,0,0,1,1,0,0.44,N
+-0.33,0.56,1,0,0,0,1,-1,0.63,N
+-0.33,0.72,1,1,0,0,0.6,1,0.19,N
+-0.33,0.64,1,1,1,0,0.8,-1,0.31,N
+-0.33,0.75,1,1,1,0,0.6,-1,0.19,N
+-0.33,0.67,1,0,1,0,0.8,-1,0.19,N
+-0.33,0.53,1,1,0,1,1,-1,0.75,N
+-0.33,0.53,1,1,0,0,0.8,0,0.5,N
+-0.33,0.58,1,1,1,-1,0.8,0,0.19,N
+-0.33,0.61,1,0,1,0,1,-1,0.63,N
+-0.33,0.58,1,0,1,0,0.8,1,0.19,N
+-0.33,0.53,1,1,0,0,0.8,0,0.75,N
+-0.33,0.69,1,1,1,-1,1,-1,0.75,N
+-0.33,0.56,1,1,0,0,0.4,1,0.63,N
+1,0.58,0,0,0,1,0.8,1,0.44,N
+1,0.56,0,0,0,1,0.8,0,1,N
+-1,0.64,1,0,0,1,1,1,0.25,N
+-1,0.61,1,1,1,0,0.6,-1,0.38,N
+-1,0.56,1,0,0,1,1,-1,0.5,N
+-1,0.53,1,0,0,1,0.8,-1,0.31,N
+-0.33,0.56,0,0,1,0,1,-1,0.56,N
+-0.33,0.5,1,1,0,-1,0.8,0,0.88,N
+-0.33,0.5,1,0,0,1,1,-1,0.47,N
+-0.33,0.5,1,0,0,1,0.8,0,0.31,N
+-0.33,0.5,1,0,1,-1,0.8,-1,0.5,N
+-0.33,0.5,1,1,0,-1,0.8,0,0.88,O
+0.33,0.69,1,0,0,1,1,-1,0.31,N
+1,0.56,1,0,0,1,0.6,0,0.5,N
+-1,0.5,1,0,0,1,0.8,-1,0.44,N
+-1,0.53,1,0,0,1,0.8,-1,0.63,N
+-1,0.78,1,0,1,1,1,1,0.25,N
+-1,0.75,1,0,1,1,0.6,0,0.56,N
+-1,0.72,1,1,1,1,0.8,-1,0.19,N
+-1,0.53,1,1,0,1,0.8,-1,0.38,N
+-1,1,1,0,1,1,0.6,0,0.25,N
+-0.33,0.92,1,1,0,1,1,-1,0.63,N
+-1,0.81,1,1,1,1,0.8,0,0.19,N
+-0.33,0.92,1,0,0,1,0.6,-1,0.19,N
+-0.33,0.86,1,1,1,1,1,-1,0.25,N
+-0.33,0.78,1,0,0,1,1,1,0.06,O
+-0.33,0.89,1,1,0,0,0.6,1,0.31,N
+-0.33,0.75,1,1,1,0,0.6,1,0.25,N
+-0.33,0.75,1,1,1,1,0.8,1,0.25,N
+-0.33,0.83,1,1,1,0,1,-1,0.31,N
+-0.33,0.81,1,1,1,0,1,1,0.38,N
+-0.33,0.81,1,1,1,1,0.8,-1,0.38,N
+0.33,0.78,1,0,0,0,1,1,0.06,N
+0.33,0.75,1,1,0,0,0.8,-1,0.38,N
+0.33,0.75,1,0,1,0,0.8,-1,0.44,O
+1,0.58,1,0,0,0,0.6,1,0.5,N
+-1,0.67,1,0,0,0,1,-1,0.5,N
+-1,0.61,1,0,0,0,0.8,0,0.5,N
+-1,0.67,1,1,1,0,1,-1,0.31,N
+-1,0.64,1,0,1,0,1,0,0.19,N
+-1,0.69,0,1,1,0,0.6,-1,0.19,N
diff --git a/your-code/main.ipynb b/your-code/main.ipynb
index 8dcaafa..fc87255 100644
--- a/your-code/main.ipynb
+++ b/your-code/main.ipynb
@@ -21,12 +21,13 @@
},
{
"cell_type": "code",
- "execution_count": 1,
+ "execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"# Your import here:\n",
- "\n"
+ "\n",
+ "import pandas as pd"
]
},
{
@@ -62,12 +63,12 @@
},
{
"cell_type": "code",
- "execution_count": 3,
+ "execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
"# Your code here:\n",
- "\n"
+ "nasa = pd.read_json(json_data)"
]
},
{
@@ -79,12 +80,155 @@
},
{
"cell_type": "code",
- "execution_count": 4,
+ "execution_count": 6,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " :@computed_region_cbhk_fwbd | \n",
+ " :@computed_region_nnqa_25f4 | \n",
+ " fall | \n",
+ " geolocation | \n",
+ " id | \n",
+ " mass | \n",
+ " name | \n",
+ " nametype | \n",
+ " recclass | \n",
+ " reclat | \n",
+ " reclong | \n",
+ " year | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [6.08333, 50.... | \n",
+ " 1 | \n",
+ " 21.0 | \n",
+ " Aachen | \n",
+ " Valid | \n",
+ " L5 | \n",
+ " 50.77500 | \n",
+ " 6.08333 | \n",
+ " 1880-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [10.23333, 56... | \n",
+ " 2 | \n",
+ " 720.0 | \n",
+ " Aarhus | \n",
+ " Valid | \n",
+ " H6 | \n",
+ " 56.18333 | \n",
+ " 10.23333 | \n",
+ " 1951-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [-113, 54.216... | \n",
+ " 6 | \n",
+ " 107000.0 | \n",
+ " Abee | \n",
+ " Valid | \n",
+ " EH4 | \n",
+ " 54.21667 | \n",
+ " -113.00000 | \n",
+ " 1952-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [-99.9, 16.88... | \n",
+ " 10 | \n",
+ " 1914.0 | \n",
+ " Acapulco | \n",
+ " Valid | \n",
+ " Acapulcoite | \n",
+ " 16.88333 | \n",
+ " -99.90000 | \n",
+ " 1976-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [-64.95, -33.... | \n",
+ " 370 | \n",
+ " 780.0 | \n",
+ " Achiras | \n",
+ " Valid | \n",
+ " L6 | \n",
+ " -33.16667 | \n",
+ " -64.95000 | \n",
+ " 1902-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " :@computed_region_cbhk_fwbd :@computed_region_nnqa_25f4 fall \\\n",
+ "0 NaN NaN Fell \n",
+ "1 NaN NaN Fell \n",
+ "2 NaN NaN Fell \n",
+ "3 NaN NaN Fell \n",
+ "4 NaN NaN Fell \n",
+ "\n",
+ " geolocation id mass name \\\n",
+ "0 {'type': 'Point', 'coordinates': [6.08333, 50.... 1 21.0 Aachen \n",
+ "1 {'type': 'Point', 'coordinates': [10.23333, 56... 2 720.0 Aarhus \n",
+ "2 {'type': 'Point', 'coordinates': [-113, 54.216... 6 107000.0 Abee \n",
+ "3 {'type': 'Point', 'coordinates': [-99.9, 16.88... 10 1914.0 Acapulco \n",
+ "4 {'type': 'Point', 'coordinates': [-64.95, -33.... 370 780.0 Achiras \n",
+ "\n",
+ " nametype recclass reclat reclong year \n",
+ "0 Valid L5 50.77500 6.08333 1880-01-01T00:00:00.000 \n",
+ "1 Valid H6 56.18333 10.23333 1951-01-01T00:00:00.000 \n",
+ "2 Valid EH4 54.21667 -113.00000 1952-01-01T00:00:00.000 \n",
+ "3 Valid Acapulcoite 16.88333 -99.90000 1976-01-01T00:00:00.000 \n",
+ "4 Valid L6 -33.16667 -64.95000 1902-01-01T00:00:00.000 "
+ ]
+ },
+ "execution_count": 6,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
"# Your code here:\n",
- "\n"
+ "nasa.head()"
]
},
{
@@ -98,12 +242,22 @@
},
{
"cell_type": "code",
- "execution_count": 5,
+ "execution_count": 7,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Fell 996\n",
+ "Found 4\n",
+ "Name: fall, dtype: int64\n"
+ ]
+ }
+ ],
"source": [
"# Your code here:\n",
- "\n"
+ "print(nasa['fall'].value_counts())\n"
]
},
{
@@ -115,12 +269,12 @@
},
{
"cell_type": "code",
- "execution_count": 6,
+ "execution_count": 9,
"metadata": {},
"outputs": [],
"source": [
"# Your code here:\n",
- "\n"
+ "nasa.to_json('nasa.json', orient='records')"
]
},
{
@@ -136,24 +290,25 @@
},
{
"cell_type": "code",
- "execution_count": 7,
+ "execution_count": 15,
"metadata": {},
"outputs": [],
"source": [
"# Run this code:\n",
"\n",
- "cols = ['time', 'rad_flow', 'fpv_close', 'fpv_open', 'high', 'bypass', 'bpv_close', 'bpv_open', 'class']\n",
+ "cols = ['time', 'rad_flow', 'fpv_close', 'fpv_open', 'high', 'bypass', 'bpv_close', 'bpv_open', 'class', '0']\n",
"tst_url = 'https://archive.ics.uci.edu/ml/machine-learning-databases/statlog/shuttle/shuttle.tst'"
]
},
{
"cell_type": "code",
- "execution_count": 8,
+ "execution_count": 16,
"metadata": {},
"outputs": [],
"source": [
"# Your code here:\n",
- "\n"
+ "shuttle = pd.read_csv(tst_url, sep=' ')\n",
+ "shuttle.columns = cols"
]
},
{
@@ -165,12 +320,136 @@
},
{
"cell_type": "code",
- "execution_count": 9,
+ "execution_count": 17,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " time | \n",
+ " rad_flow | \n",
+ " fpv_close | \n",
+ " fpv_open | \n",
+ " high | \n",
+ " bypass | \n",
+ " bpv_close | \n",
+ " bpv_open | \n",
+ " class | \n",
+ " 0 | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " 56 | \n",
+ " 0 | \n",
+ " 96 | \n",
+ " 0 | \n",
+ " 52 | \n",
+ " -4 | \n",
+ " 40 | \n",
+ " 44 | \n",
+ " 4 | \n",
+ " 4 | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " 50 | \n",
+ " -1 | \n",
+ " 89 | \n",
+ " -7 | \n",
+ " 50 | \n",
+ " 0 | \n",
+ " 39 | \n",
+ " 40 | \n",
+ " 2 | \n",
+ " 1 | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " 53 | \n",
+ " 9 | \n",
+ " 79 | \n",
+ " 0 | \n",
+ " 42 | \n",
+ " -2 | \n",
+ " 25 | \n",
+ " 37 | \n",
+ " 12 | \n",
+ " 4 | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " 55 | \n",
+ " 2 | \n",
+ " 82 | \n",
+ " 0 | \n",
+ " 54 | \n",
+ " -6 | \n",
+ " 26 | \n",
+ " 28 | \n",
+ " 2 | \n",
+ " 1 | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " 41 | \n",
+ " 0 | \n",
+ " 84 | \n",
+ " 3 | \n",
+ " 38 | \n",
+ " -4 | \n",
+ " 43 | \n",
+ " 45 | \n",
+ " 2 | \n",
+ " 1 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " time rad_flow fpv_close fpv_open high bypass bpv_close bpv_open \\\n",
+ "0 56 0 96 0 52 -4 40 44 \n",
+ "1 50 -1 89 -7 50 0 39 40 \n",
+ "2 53 9 79 0 42 -2 25 37 \n",
+ "3 55 2 82 0 54 -6 26 28 \n",
+ "4 41 0 84 3 38 -4 43 45 \n",
+ "\n",
+ " class 0 \n",
+ "0 4 4 \n",
+ "1 2 1 \n",
+ "2 12 4 \n",
+ "3 2 1 \n",
+ "4 2 1 "
+ ]
+ },
+ "execution_count": 17,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
"# Your code here:\n",
- "\n"
+ "shuttle.head()\n"
]
},
{
@@ -182,12 +461,13 @@
},
{
"cell_type": "code",
- "execution_count": 10,
+ "execution_count": 18,
"metadata": {},
"outputs": [],
"source": [
"# Your code here:\n",
- "\n"
+ "\n",
+ "shuttle.to_csv('shuttle.csv')"
]
},
{
@@ -203,12 +483,13 @@
},
{
"cell_type": "code",
- "execution_count": 11,
+ "execution_count": 20,
"metadata": {},
"outputs": [],
"source": [
"# Your code here:\n",
- "\n"
+ "import xlrd\n",
+ "astronaut = pd.read_excel('astronauts.xls')"
]
},
{
@@ -220,12 +501,210 @@
},
{
"cell_type": "code",
- "execution_count": 12,
+ "execution_count": 21,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " Name | \n",
+ " Year | \n",
+ " Group | \n",
+ " Status | \n",
+ " Birth Date | \n",
+ " Birth Place | \n",
+ " Gender | \n",
+ " Alma Mater | \n",
+ " Undergraduate Major | \n",
+ " Graduate Major | \n",
+ " Military Rank | \n",
+ " Military Branch | \n",
+ " Space Flights | \n",
+ " Space Flight (hr) | \n",
+ " Space Walks | \n",
+ " Space Walks (hr) | \n",
+ " Missions | \n",
+ " Death Date | \n",
+ " Death Mission | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " Joseph M. Acaba | \n",
+ " 2004.0 | \n",
+ " 19.0 | \n",
+ " Active | \n",
+ " 1967-05-17 | \n",
+ " Inglewood, CA | \n",
+ " Male | \n",
+ " University of California-Santa Barbara; Univer... | \n",
+ " Geology | \n",
+ " Geology | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " 2 | \n",
+ " 3307 | \n",
+ " 2 | \n",
+ " 13.0 | \n",
+ " STS-119 (Discovery), ISS-31/32 (Soyuz) | \n",
+ " NaT | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " Loren W. Acton | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Retired | \n",
+ " 1936-03-07 | \n",
+ " Lewiston, MT | \n",
+ " Male | \n",
+ " Montana State University; University of Colorado | \n",
+ " Engineering Physics | \n",
+ " Solar Physics | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " 1 | \n",
+ " 190 | \n",
+ " 0 | \n",
+ " 0.0 | \n",
+ " STS 51-F (Challenger) | \n",
+ " NaT | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " James C. Adamson | \n",
+ " 1984.0 | \n",
+ " 10.0 | \n",
+ " Retired | \n",
+ " 1946-03-03 | \n",
+ " Warsaw, NY | \n",
+ " Male | \n",
+ " US Military Academy; Princeton University | \n",
+ " Engineering | \n",
+ " Aerospace Engineering | \n",
+ " Colonel | \n",
+ " US Army (Retired) | \n",
+ " 2 | \n",
+ " 334 | \n",
+ " 0 | \n",
+ " 0.0 | \n",
+ " STS-28 (Columbia), STS-43 (Atlantis) | \n",
+ " NaT | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " Thomas D. Akers | \n",
+ " 1987.0 | \n",
+ " 12.0 | \n",
+ " Retired | \n",
+ " 1951-05-20 | \n",
+ " St. Louis, MO | \n",
+ " Male | \n",
+ " University of Missouri-Rolla | \n",
+ " Applied Mathematics | \n",
+ " Applied Mathematics | \n",
+ " Colonel | \n",
+ " US Air Force (Retired) | \n",
+ " 4 | \n",
+ " 814 | \n",
+ " 4 | \n",
+ " 29.0 | \n",
+ " STS-41 (Discovery), STS-49 (Endeavor), STS-61 ... | \n",
+ " NaT | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " Buzz Aldrin | \n",
+ " 1963.0 | \n",
+ " 3.0 | \n",
+ " Retired | \n",
+ " 1930-01-20 | \n",
+ " Montclair, NJ | \n",
+ " Male | \n",
+ " US Military Academy; MIT | \n",
+ " Mechanical Engineering | \n",
+ " Astronautics | \n",
+ " Colonel | \n",
+ " US Air Force (Retired) | \n",
+ " 2 | \n",
+ " 289 | \n",
+ " 2 | \n",
+ " 8.0 | \n",
+ " Gemini 12, Apollo 11 | \n",
+ " NaT | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Name Year Group Status Birth Date Birth Place Gender \\\n",
+ "0 Joseph M. Acaba 2004.0 19.0 Active 1967-05-17 Inglewood, CA Male \n",
+ "1 Loren W. Acton NaN NaN Retired 1936-03-07 Lewiston, MT Male \n",
+ "2 James C. Adamson 1984.0 10.0 Retired 1946-03-03 Warsaw, NY Male \n",
+ "3 Thomas D. Akers 1987.0 12.0 Retired 1951-05-20 St. Louis, MO Male \n",
+ "4 Buzz Aldrin 1963.0 3.0 Retired 1930-01-20 Montclair, NJ Male \n",
+ "\n",
+ " Alma Mater Undergraduate Major \\\n",
+ "0 University of California-Santa Barbara; Univer... Geology \n",
+ "1 Montana State University; University of Colorado Engineering Physics \n",
+ "2 US Military Academy; Princeton University Engineering \n",
+ "3 University of Missouri-Rolla Applied Mathematics \n",
+ "4 US Military Academy; MIT Mechanical Engineering \n",
+ "\n",
+ " Graduate Major Military Rank Military Branch Space Flights \\\n",
+ "0 Geology NaN NaN 2 \n",
+ "1 Solar Physics NaN NaN 1 \n",
+ "2 Aerospace Engineering Colonel US Army (Retired) 2 \n",
+ "3 Applied Mathematics Colonel US Air Force (Retired) 4 \n",
+ "4 Astronautics Colonel US Air Force (Retired) 2 \n",
+ "\n",
+ " Space Flight (hr) Space Walks Space Walks (hr) \\\n",
+ "0 3307 2 13.0 \n",
+ "1 190 0 0.0 \n",
+ "2 334 0 0.0 \n",
+ "3 814 4 29.0 \n",
+ "4 289 2 8.0 \n",
+ "\n",
+ " Missions Death Date Death Mission \n",
+ "0 STS-119 (Discovery), ISS-31/32 (Soyuz) NaT NaN \n",
+ "1 STS 51-F (Challenger) NaT NaN \n",
+ "2 STS-28 (Columbia), STS-43 (Atlantis) NaT NaN \n",
+ "3 STS-41 (Discovery), STS-49 (Endeavor), STS-61 ... NaT NaN \n",
+ "4 Gemini 12, Apollo 11 NaT NaN "
+ ]
+ },
+ "execution_count": 21,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
- "# Your code here:\n",
- "\n"
+ "astronaut.head()"
]
},
{
@@ -237,12 +716,85 @@
},
{
"cell_type": "code",
- "execution_count": 13,
+ "execution_count": 24,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Physics 35\n",
+ "Aerospace Engineering 33\n",
+ "Mechanical Engineering 30\n",
+ "Aeronautical Engineering 28\n",
+ "Electrical Engineering 23\n",
+ "Engineering Science 13\n",
+ "Engineering 12\n",
+ "Mathematics 11\n",
+ "Chemistry 10\n",
+ "Naval Sciences 9\n",
+ "Chemical Engineering 9\n",
+ "Astronautical Engineering 8\n",
+ "Aeronautical & Astronautical Engineering 6\n",
+ "Biology 5\n",
+ "Geology 5\n",
+ "Mathematics & Physics 5\n",
+ "Civil Engineering 5\n",
+ "Physics & Astronomy 4\n",
+ "Applied Science & Engineering 4\n",
+ "Computer Science 3\n",
+ "Engineering Physics 3\n",
+ "Aeronautics & Astronautics 3\n",
+ "Applied Mathematics 3\n",
+ "Chemistry & Biology 2\n",
+ "Education 2\n",
+ "Physics & Mathematics 2\n",
+ "Biological Science 2\n",
+ "Engineering Mechanics 2\n",
+ "Ocean Engineering 2\n",
+ "Zoology 2\n",
+ " ..\n",
+ "Music 1\n",
+ "Molecular Biology 1\n",
+ "Astronomy 1\n",
+ "Psychology 1\n",
+ "Human Biology 1\n",
+ "Nuclear Engineering 1\n",
+ "Business Management; Aeronautical Engineering 1\n",
+ "Bioscience 1\n",
+ "Industrial Management 1\n",
+ "Chemistry; Physiological Optics 1\n",
+ "Applied Biology; Mechanical Engineering 1\n",
+ "Military Science 1\n",
+ "Industrial Engineering 1\n",
+ "Electronics Engineering 1\n",
+ "Physics & Astronautical Engineering 1\n",
+ "Solid Earth Sciences 1\n",
+ "Systems Engineering 1\n",
+ "Space Physics 1\n",
+ "Physical Science 1\n",
+ "Earth & Planetary Science 1\n",
+ "Physics & Engineering 1\n",
+ "Business Economics 1\n",
+ "Earth Sciences 1\n",
+ "Economics 1\n",
+ "Computer & Systems Engineering 1\n",
+ "Mathematics & Economics 1\n",
+ "Animal Nutrition 1\n",
+ "Accounting 1\n",
+ "Electrical Science 1\n",
+ "Physics & Mechanical Engineering 1\n",
+ "Name: Undergraduate Major, Length: 83, dtype: int64"
+ ]
+ },
+ "execution_count": 24,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
"# Your code here:\n",
- "\n"
+ "\n",
+ "astronaut['Undergraduate Major'].value_counts()"
]
},
{
@@ -254,12 +806,13 @@
},
{
"cell_type": "code",
- "execution_count": 14,
+ "execution_count": 25,
"metadata": {},
"outputs": [],
"source": [
"# Your code here:\n",
- "\n"
+ "\n",
+ "astronaut.to_csv('astronaut.csv', index=False)"
]
},
{
@@ -273,20 +826,139 @@
},
{
"cell_type": "code",
- "execution_count": 15,
+ "execution_count": 33,
"metadata": {},
"outputs": [],
"source": [
"# Your code here:\n",
- "\n"
+ "fertility = pd.read_csv('fertility_Diagnosis.txt', names=[i for i in range(10)])"
]
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 34,
"metadata": {},
- "outputs": [],
- "source": []
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " 0 | \n",
+ " 1 | \n",
+ " 2 | \n",
+ " 3 | \n",
+ " 4 | \n",
+ " 5 | \n",
+ " 6 | \n",
+ " 7 | \n",
+ " 8 | \n",
+ " 9 | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " -0.33 | \n",
+ " 0.69 | \n",
+ " 0 | \n",
+ " 1 | \n",
+ " 1 | \n",
+ " 0 | \n",
+ " 0.8 | \n",
+ " 0 | \n",
+ " 0.88 | \n",
+ " N | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " -0.33 | \n",
+ " 0.94 | \n",
+ " 1 | \n",
+ " 0 | \n",
+ " 1 | \n",
+ " 0 | \n",
+ " 0.8 | \n",
+ " 1 | \n",
+ " 0.31 | \n",
+ " O | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " -0.33 | \n",
+ " 0.50 | \n",
+ " 1 | \n",
+ " 0 | \n",
+ " 0 | \n",
+ " 0 | \n",
+ " 1.0 | \n",
+ " -1 | \n",
+ " 0.50 | \n",
+ " N | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " -0.33 | \n",
+ " 0.75 | \n",
+ " 0 | \n",
+ " 1 | \n",
+ " 1 | \n",
+ " 0 | \n",
+ " 1.0 | \n",
+ " -1 | \n",
+ " 0.38 | \n",
+ " N | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " -0.33 | \n",
+ " 0.67 | \n",
+ " 1 | \n",
+ " 1 | \n",
+ " 0 | \n",
+ " 0 | \n",
+ " 0.8 | \n",
+ " -1 | \n",
+ " 0.50 | \n",
+ " O | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " 0 1 2 3 4 5 6 7 8 9\n",
+ "0 -0.33 0.69 0 1 1 0 0.8 0 0.88 N\n",
+ "1 -0.33 0.94 1 0 1 0 0.8 1 0.31 O\n",
+ "2 -0.33 0.50 1 0 0 0 1.0 -1 0.50 N\n",
+ "3 -0.33 0.75 0 1 1 0 1.0 -1 0.38 N\n",
+ "4 -0.33 0.67 1 1 0 0 0.8 -1 0.50 O"
+ ]
+ },
+ "execution_count": 34,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "fertility.head()"
+ ]
}
],
"metadata": {
@@ -305,7 +977,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
- "version": "3.6.6"
+ "version": "3.7.3"
}
},
"nbformat": 4,
diff --git a/your-code/shuttle.csv b/your-code/shuttle.csv
index b780dbd..10e43b5 100644
--- a/your-code/shuttle.csv
+++ b/your-code/shuttle.csv
@@ -1,14501 +1,14500 @@
-time,rad_flow,fpv_close,fpv_open,high,bypass,bpv_close,bpv_open,class
-0,81,0,-6,11,25,88,64,4
-0,96,0,52,-4,40,44,4,4
--1,89,-7,50,0,39,40,2,1
-9,79,0,42,-2,25,37,12,4
-2,82,0,54,-6,26,28,2,1
-0,84,3,38,-4,43,45,2,1
-0,100,0,36,-8,63,64,2,1
-0,83,0,46,0,37,36,0,1
-0,79,0,42,-17,35,37,2,1
--1,78,0,44,0,34,34,0,1
-0,81,0,54,-10,25,26,2,1
-0,95,0,52,-3,40,44,4,4
-0,100,0,34,6,64,67,4,1
--3,86,2,44,14,43,42,0,1
--5,84,0,46,0,38,37,0,1
-0,81,0,44,0,36,37,0,1
-0,86,0,50,30,38,37,0,1
-0,78,0,42,-2,22,37,14,4
-0,77,0,18,-18,22,59,38,4
-5,90,0,44,0,44,46,2,1
-0,77,0,-20,27,41,98,58,1
-0,90,-6,18,0,53,72,20,1
--8,77,0,20,0,40,57,16,1
-5,95,-3,50,0,45,46,2,1
--2,76,0,44,15,32,32,0,1
--1,85,-5,42,0,44,44,0,1
-0,97,0,46,-2,42,51,8,4
-0,76,0,26,20,39,50,12,1
-0,76,8,30,0,40,45,6,1
-0,106,0,46,9,61,60,0,1
-0,81,0,38,17,44,43,0,1
-4,83,0,46,0,34,37,2,1
-0,88,1,50,0,38,39,0,1
-2,77,0,42,0,36,36,0,1
-0,78,0,50,11,29,29,0,1
-0,95,0,44,-12,40,51,12,4
-0,77,0,34,-12,40,43,2,1
-3,81,0,36,0,44,44,0,1
-0,84,0,26,-3,47,58,10,1
-0,86,0,54,0,33,32,0,1
-0,81,-3,44,17,37,37,0,1
-0,81,7,46,3,35,34,0,1
--4,83,0,44,-14,37,39,2,1
-0,84,0,-36,-196,4,120,116,5
-0,84,0,-20,26,3,105,102,5
--5,87,2,54,0,32,33,0,1
-0,89,-3,44,0,44,45,0,1
-0,86,0,52,22,35,34,0,1
-0,84,-1,-28,-24,4,112,108,5
-0,87,-6,52,-7,34,35,2,1
-0,86,0,56,2,30,30,0,1
-0,87,0,50,1,38,38,0,1
-0,97,5,46,-19,41,50,8,4
-0,96,0,56,10,40,39,0,1
-0,95,0,18,-24,57,77,20,1
-0,86,-4,46,0,39,40,2,1
-3,109,0,72,7,1,36,36,5
-5,93,0,38,0,53,55,2,1
-0,88,7,2,0,3,86,82,5
-0,78,1,26,0,23,52,30,4
-3,77,0,-24,0,21,103,82,4
-0,85,0,56,15,29,28,0,1
-0,84,0,-20,-17,4,105,102,5
-0,88,0,52,-4,35,37,2,1
-0,78,0,-6,-5,42,86,44,1
-5,80,0,42,7,39,39,0,1
-2,108,0,44,0,63,64,2,1
-2,89,0,46,0,41,42,2,1
-0,95,0,50,-26,39,46,6,4
-0,77,0,8,-18,22,70,48,4
-0,85,0,46,-5,36,39,2,1
-0,76,2,42,-29,32,34,2,1
-0,95,4,50,0,46,46,0,1
-0,88,0,52,8,36,36,0,1
-0,97,0,44,6,41,53,12,4
-3,95,0,46,-9,47,49,2,1
-0,84,6,38,0,44,45,2,1
-0,86,-2,60,18,27,26,0,1
-0,108,15,26,-1,71,82,12,1
-0,104,0,28,1,66,75,8,1
-1,83,0,54,0,28,29,0,1
-0,97,0,42,-9,53,55,2,1
--1,83,0,44,0,38,39,0,1
-0,76,-7,20,-6,39,55,16,1
-0,81,0,36,-30,43,45,2,1
-0,77,0,30,-9,40,46,6,1
-0,102,0,36,0,64,66,2,1
-5,78,-1,52,0,26,26,0,1
-0,88,0,42,-11,45,47,2,1
-0,86,1,42,0,45,45,0,1
-0,79,0,52,-26,26,27,2,1
-0,74,-7,28,0,37,46,8,1
-0,96,2,46,0,41,50,8,4
-0,79,0,56,0,21,22,0,1
--1,84,-3,42,-1,43,43,0,1
-0,97,3,50,-8,41,48,6,4
-0,79,0,20,1,42,58,16,1
-0,88,0,42,24,48,47,0,1
-0,82,6,44,0,38,38,0,1
-0,77,8,36,6,40,41,0,1
-0,78,0,2,25,41,75,34,1
-4,80,0,42,-14,36,39,2,1
-1,86,0,42,26,46,45,0,1
-2,85,-2,38,0,46,46,0,1
-0,76,6,34,26,39,43,4,1
-0,96,-1,38,-1,41,57,16,4
-0,77,0,-20,6,41,98,58,1
--2,111,0,50,0,61,62,0,1
-0,78,0,42,31,37,37,0,1
-0,93,0,42,-20,37,51,14,4
-3,76,0,42,-2,33,35,2,1
-0,76,1,26,-6,39,50,10,1
-0,76,0,-18,-25,20,94,74,4
--3,90,0,42,0,47,48,2,1
-0,95,5,46,-10,46,48,2,1
--5,86,-1,46,-2,40,40,0,1
-2,85,4,46,0,38,39,0,1
-2,77,0,42,8,36,36,0,1
-1,80,2,44,0,35,36,0,1
-0,86,1,44,0,40,42,2,1
--1,89,-1,46,-4,41,42,2,1
-0,92,6,46,0,45,45,0,1
-0,80,-6,18,0,43,62,18,1
-0,81,0,46,0,33,35,2,1
--3,77,2,44,0,32,33,0,1
-0,77,0,34,9,41,44,2,1
--1,79,0,46,0,30,32,2,1
-0,86,0,42,29,46,45,0,1
--5,83,0,50,0,32,33,2,1
-1,99,0,28,0,62,71,8,1
--1,107,0,46,0,61,60,0,1
-0,92,0,16,3,54,77,22,1
-0,83,0,52,-30,30,32,2,1
-1,78,-6,46,0,31,32,0,1
-4,86,4,44,13,43,42,0,1
-0,83,5,-2,0,46,85,40,1
-5,79,0,18,0,42,61,20,1
-0,77,0,26,2,21,51,30,4
-0,95,0,38,0,40,57,16,4
--1,83,4,38,-3,42,44,2,1
-2,95,0,34,0,40,62,22,4
-2,90,0,46,8,44,43,0,1
--2,110,0,46,-3,62,64,2,1
-0,84,0,-14,-2,4,100,96,5
--1,87,0,54,0,33,33,0,1
-0,81,0,44,14,36,37,2,1
-0,84,0,26,0,47,58,10,1
-0,83,0,54,-11,27,29,2,1
-0,82,0,16,11,45,66,22,1
--4,84,0,-42,0,5,128,124,5
--1,81,0,50,0,32,32,0,1
-0,87,0,54,27,34,33,0,1
-0,78,0,0,8,41,78,36,1
-0,92,0,52,2,36,40,4,4
-0,77,0,34,-30,40,43,2,1
--1,79,-3,24,-7,23,55,32,4
-0,81,1,46,0,35,35,0,1
-0,77,4,0,0,22,77,56,4
-0,108,3,54,-5,52,53,2,1
-0,81,0,-18,11,25,99,74,4
-0,87,-2,50,0,37,38,0,1
-0,76,-3,38,0,35,37,2,1
-0,79,0,30,-7,43,48,6,1
-0,79,2,12,0,42,66,24,1
-0,84,0,-20,16,4,105,102,5
--4,79,0,56,0,22,22,0,1
-0,76,-2,44,2,32,32,0,1
-0,108,0,36,2,71,72,0,1
-0,79,0,18,2,42,61,18,1
-0,97,6,34,0,60,64,4,1
-0,77,0,44,21,34,34,0,1
-0,79,8,46,2,34,33,0,1
-2,81,0,54,23,28,26,0,1
-1,83,0,46,14,37,37,0,1
-0,80,0,34,-1,43,46,2,1
-0,76,2,46,2,30,30,0,1
-0,80,2,26,0,43,54,10,1
--1,96,0,52,0,40,44,4,4
-0,83,0,34,18,46,49,4,1
-0,77,3,-24,0,22,103,82,4
-0,88,-2,46,-4,41,41,0,1
-2,97,0,42,0,40,55,14,4
-0,80,0,44,-9,35,36,2,1
--1,81,4,42,-3,38,40,2,1
-0,96,2,42,-24,41,55,14,4
-1,106,0,38,0,68,67,0,1
-0,85,0,56,5,29,28,0,1
--3,84,0,46,17,38,37,0,1
-0,76,0,36,-18,38,39,2,1
-0,86,-5,50,0,35,37,2,1
--1,80,-3,38,14,40,41,2,1
-0,105,0,24,9,68,82,14,1
--5,97,0,50,0,41,48,6,4
-0,92,0,20,17,54,71,18,1
--4,79,0,42,3,36,38,2,1
--1,86,0,50,-2,35,37,2,1
-2,79,0,38,-21,38,41,2,1
-0,76,-4,20,-6,40,55,16,1
-0,74,0,34,2,37,41,4,1
-0,77,0,16,-1,22,62,40,4
-0,79,0,28,29,42,50,8,1
-0,82,0,54,27,29,28,0,1
--3,81,0,54,15,28,26,0,1
-0,82,0,46,3,36,35,0,1
--2,82,-1,36,0,46,46,0,1
--5,106,0,34,0,69,72,2,1
-0,95,0,20,-26,58,75,16,1
-0,81,0,-42,-20,5,125,120,5
-0,90,0,46,-13,42,44,2,1
--1,76,1,42,0,34,35,0,1
-0,88,0,54,8,35,34,0,1
-0,86,0,-10,10,3,96,92,5
-0,86,3,50,0,37,37,0,1
-0,88,0,54,6,35,33,0,1
-0,105,3,20,0,68,84,16,1
-0,86,0,54,-11,31,32,2,1
-0,83,0,16,-7,47,68,22,1
--4,76,0,44,0,32,32,0,1
-0,83,6,44,-5,38,39,2,1
-0,107,0,72,0,1,35,34,5
--1,81,0,-42,-3,5,125,120,5
-0,83,0,44,-16,37,39,2,1
-5,90,0,46,0,41,43,2,1
--3,86,-3,54,-4,32,32,0,1
--2,82,0,42,10,41,41,0,1
-0,83,0,8,6,46,75,30,1
-0,81,0,-18,24,25,99,74,4
--2,88,0,0,0,4,88,84,5
--3,83,0,42,-12,39,41,2,1
-0,76,-3,34,-21,38,42,4,1
--5,86,0,42,0,45,45,0,1
-0,77,0,12,4,22,65,42,4
-0,79,0,8,-26,42,71,28,1
-0,95,0,50,-1,40,46,6,4
-0,83,6,38,-13,42,44,2,1
-0,106,-1,26,0,69,80,12,1
-0,96,1,52,0,41,44,4,4
-1,77,0,38,5,40,39,0,1
-0,76,0,-14,-8,21,92,70,4
-1,85,0,42,0,43,44,0,1
-0,76,-1,-18,0,21,94,74,4
-0,96,5,54,0,41,42,2,1
-0,74,0,26,-30,38,48,10,1
-0,79,-7,42,0,37,38,2,1
-6,76,-1,38,-1,37,37,0,1
--3,109,0,46,0,61,62,0,1
-5,82,0,42,8,41,41,0,1
-0,80,0,52,22,29,28,0,1
-4,81,3,-40,10,4,123,118,5
--5,86,0,38,0,48,47,0,1
-2,85,0,42,-1,42,44,2,1
-0,97,0,36,9,59,60,2,1
-0,96,-3,54,11,40,42,2,1
-0,109,3,38,-6,68,70,2,1
-0,81,0,44,-25,35,37,2,1
-0,91,0,52,4,40,39,0,1
-1,106,0,50,0,57,57,0,1
-3,85,0,44,15,41,41,0,1
--4,88,0,54,-29,32,33,2,1
-0,78,-2,2,5,41,75,34,1
-0,77,0,18,17,40,59,18,1
-0,85,0,52,-23,32,33,2,1
-0,79,0,56,14,23,22,0,1
-0,77,0,20,5,22,57,36,4
-0,95,0,42,-20,52,54,2,1
--1,80,0,-4,5,25,85,60,4
-0,105,0,36,10,68,69,2,1
-7,74,9,-4,-1,18,79,62,4
-0,95,0,42,-15,40,54,14,4
-1,84,0,38,-30,43,45,2,1
-5,83,0,50,0,33,33,0,1
-1,87,0,46,8,41,41,0,1
-0,86,-1,-2,0,3,89,86,5
-4,88,0,50,0,39,39,0,1
-1,81,0,42,11,39,39,0,1
-3,86,0,50,-12,35,37,2,1
-0,78,0,8,10,23,70,48,4
--3,77,0,42,8,37,36,0,1
-0,77,0,26,-13,21,51,30,4
-0,77,0,50,24,28,28,0,1
-1,77,0,44,-10,31,33,2,1
-0,79,0,12,-19,43,66,24,1
-0,77,0,26,19,21,51,30,4
-0,86,0,42,-20,42,44,2,1
-0,81,0,24,7,44,57,14,1
-0,79,-1,26,-21,42,53,12,1
-0,81,0,42,-29,37,39,2,1
-8,77,9,-42,-4,4,121,116,5
--5,79,0,46,0,33,32,0,1
-0,102,-5,70,-10,1,33,32,5
-0,95,0,18,5,58,77,20,1
-0,77,0,20,3,40,57,16,1
-0,84,0,42,10,43,43,0,1
-0,87,-6,44,2,43,43,0,1
-0,78,4,42,12,37,37,0,1
-1,102,0,42,0,60,61,2,1
-0,86,0,56,21,31,30,0,1
-0,76,-3,28,-3,39,47,8,1
-0,107,2,70,0,1,37,36,5
--2,80,0,46,0,33,34,0,1
-0,82,0,42,-19,39,41,2,1
-0,77,2,42,0,35,35,0,1
-4,84,0,46,0,37,37,0,1
-0,78,0,10,4,41,68,26,1
-4,83,0,54,0,27,28,2,1
-0,86,-6,52,0,33,34,0,1
-0,88,0,0,-1,3,88,86,5
-0,82,0,-18,7,26,100,74,4
-2,77,0,42,-21,33,35,2,1
--4,100,0,44,0,55,56,2,1
--1,86,0,46,-11,38,40,2,1
-0,89,0,56,29,34,32,0,1
-1,86,0,50,2,37,37,0,1
-0,83,8,44,-3,38,39,2,1
-0,95,4,10,0,58,84,26,1
-2,87,0,46,1,41,41,0,1
-0,79,0,52,-22,26,27,2,1
-0,79,0,0,-12,42,79,36,1
-0,82,-7,-24,0,26,108,82,4
-0,87,-4,38,-10,46,48,2,1
-0,77,5,30,0,22,46,24,4
-0,76,8,26,8,39,50,12,1
-0,108,0,34,13,71,75,4,1
-0,83,0,-42,21,4,127,122,5
-0,83,0,42,-11,39,41,2,1
--2,86,0,38,0,46,48,2,1
-0,82,0,54,889,26,28,2,1
-0,80,0,54,0,25,26,2,1
-0,79,0,44,-20,34,35,2,1
-2,87,0,46,-6,38,41,2,1
-5,79,10,-42,0,4,123,118,5
-3,80,0,46,0,34,34,0,1
--5,86,0,52,-2,33,34,0,1
--5,100,2,42,0,59,59,0,1
-0,86,0,-40,16,4,128,124,5
-0,82,-7,42,0,40,41,0,1
--1,80,0,50,7,31,31,0,1
-0,79,-4,36,0,41,43,2,1
-0,79,0,42,-23,35,37,2,1
-0,86,-1,44,4,40,42,2,1
--2,80,0,56,0,23,23,0,1
-0,106,3,36,0,69,70,2,1
-0,82,-6,42,-4,39,41,2,1
-1,86,0,46,0,40,40,0,1
-0,81,0,42,-25,37,39,2,1
--5,88,0,54,0,34,34,0,1
-5,92,0,56,0,35,35,0,1
-0,76,0,34,5,40,43,2,1
-0,79,3,38,-4,39,41,2,1
-1,84,0,46,-9,35,37,2,1
-3,85,0,50,-12,34,36,2,1
-0,75,0,36,-24,37,39,2,1
-0,81,0,-6,13,25,89,64,4
-3,108,0,36,0,71,72,0,1
-0,77,0,-24,7,21,103,82,4
-2,97,6,52,0,40,45,4,4
-0,78,0,6,0,22,73,50,4
-0,84,6,-36,29,5,121,116,5
--1,81,0,52,-1,28,29,0,1
-0,96,0,52,-15,41,44,4,4
-0,81,-1,30,0,45,50,6,1
--3,83,0,46,0,34,36,2,1
-0,76,0,-14,14,20,92,72,4
-0,78,0,6,2,23,73,50,4
-1,86,3,46,0,40,39,0,1
-1,90,0,44,0,45,46,0,1
-0,108,1,36,5,71,72,0,1
-0,77,8,44,0,32,33,2,1
-0,87,-1,56,23,32,30,0,1
--1,109,0,44,0,64,66,2,1
-0,79,-4,30,0,42,48,6,1
-0,84,0,52,0,33,32,0,1
-0,76,3,36,0,39,40,0,1
-0,97,0,26,-12,60,71,12,1
-0,83,-1,-40,7,4,124,120,5
--2,90,-2,46,0,43,43,0,1
-0,77,0,46,-10,28,30,2,1
-0,79,-1,26,-4,42,53,10,1
-0,86,0,56,2,31,30,0,1
-0,93,-1,10,-3,37,82,46,4
-0,84,8,42,0,43,43,0,1
-0,97,-2,34,5,60,64,4,1
-0,79,0,16,14,42,63,22,1
-5,85,0,-12,0,4,98,94,5
-0,80,-2,44,0,35,36,0,1
-1,83,0,44,-25,37,39,2,1
-0,88,2,46,0,40,42,2,1
-5,108,1,72,6,1,36,34,5
--2,77,0,36,0,41,41,0,1
-0,99,8,42,-1,43,57,14,4
-1,86,1,54,0,31,32,2,1
-0,83,0,46,15,37,36,0,1
--3,87,1,56,0,31,30,0,1
-0,96,0,52,-16,40,44,4,4
-0,75,0,28,10,38,46,8,1
--2,88,0,46,-28,39,41,2,1
-0,83,8,44,0,38,39,0,1
-0,78,0,24,24,42,55,14,1
-0,80,3,42,-17,37,39,2,1
-0,78,0,38,-1,37,39,2,1
--3,75,0,46,0,28,28,0,1
--2,80,-5,20,-11,25,59,34,4
--1,88,0,50,0,38,39,2,1
-0,100,0,34,-23,64,67,4,1
-0,79,0,20,9,23,58,34,4
-0,77,-3,24,0,22,54,32,4
-1,81,0,44,-3,35,37,2,1
--1,81,0,52,-2,28,29,0,1
-0,81,0,38,9,43,42,0,1
-0,77,0,28,-4,21,48,28,4
-0,76,6,42,-5,33,35,2,1
-0,82,0,38,6,44,43,0,1
-0,85,0,-6,5,3,93,90,5
-1,77,0,42,0,35,36,2,1
-0,81,2,54,-24,24,26,2,1
-3,78,0,44,-25,32,34,2,1
-0,79,0,28,10,42,50,8,1
-0,77,4,44,0,33,34,0,1
--3,76,0,46,0,29,30,0,1
-0,86,-3,42,-2,42,44,2,1
-0,88,0,44,3,45,44,0,1
-0,95,0,46,-3,40,49,8,4
-1,83,0,36,0,45,46,2,1
-0,77,0,6,-22,40,72,32,1
-0,83,0,44,3,39,39,0,1
-1,76,0,42,17,35,35,0,1
-1,86,0,44,12,43,42,0,1
-0,80,5,10,0,43,70,26,1
-2,77,0,46,0,29,30,2,1
-0,77,0,46,-7,28,30,2,1
-0,86,-4,46,22,41,40,0,1
--2,83,0,44,-15,37,39,2,1
-1,77,8,38,0,39,39,0,1
-1,85,0,44,5,41,41,0,1
-3,85,0,50,-9,34,36,2,1
--3,96,-3,56,0,40,39,0,1
-0,81,1,42,25,40,39,0,1
-4,96,0,38,14,58,57,0,1
--1,84,0,44,2,40,40,0,1
-0,78,0,2,-10,41,75,34,1
-2,84,0,56,0,25,27,2,1
-0,101,-1,50,0,51,52,0,1
-1,82,0,44,0,38,38,0,1
-2,83,0,42,0,41,41,0,1
-2,89,0,8,4,3,81,78,5
-0,77,0,8,11,40,69,30,1
-0,77,4,50,4,28,28,0,1
--1,77,4,54,18,25,23,0,1
--2,76,-1,38,0,37,37,0,1
-0,88,0,52,20,37,37,0,1
-0,83,0,52,10,32,32,0,1
-0,107,0,30,3,70,76,6,1
-0,76,1,46,8,30,29,0,1
-0,88,0,44,-23,42,44,2,1
-2,81,3,38,0,41,43,2,1
-0,77,7,20,-6,41,57,16,1
-0,88,0,50,-12,37,39,2,1
-5,78,0,50,4,29,29,0,1
--1,81,-4,50,-6,32,32,0,1
--3,109,0,52,-1,56,57,0,1
-2,86,0,56,0,29,30,0,1
-0,77,0,46,-19,28,30,2,1
-0,81,0,42,24,40,39,0,1
--3,81,-4,44,-27,35,37,2,1
-0,78,0,18,-18,42,60,18,1
-0,78,0,20,-20,41,57,16,1
--1,80,-6,54,-13,24,26,2,1
-0,98,0,50,-9,42,49,6,4
-0,78,0,10,6,42,68,26,1
-0,79,0,28,19,42,50,8,1
-1,81,0,52,11,29,29,0,1
-0,90,0,34,-4,53,57,4,1
--1,82,0,52,0,30,30,0,1
-3,86,0,52,-7,33,34,2,1
-2,86,0,46,-16,38,40,2,1
-0,79,0,46,-12,30,32,2,1
--2,96,-1,52,0,40,44,4,4
-0,77,0,2,5,40,74,34,1
-0,79,0,20,0,24,59,34,4
-0,77,0,26,13,40,51,10,1
-0,79,5,42,0,35,37,2,1
-0,83,-1,44,-7,37,39,2,1
-0,83,0,54,-7,27,28,2,1
-0,81,0,50,4,33,32,0,1
-0,77,0,18,5,22,59,38,4
-0,97,-4,38,0,57,58,2,1
-0,83,0,-30,-5,27,114,86,4
--3,81,0,42,18,40,39,0,1
-0,82,0,10,31,45,72,26,1
-0,90,3,42,0,46,48,2,1
-2,82,0,52,0,30,30,0,1
-0,86,0,38,-27,45,47,2,1
-0,79,0,20,31,42,58,16,1
--1,91,0,54,-6,35,37,2,1
-0,86,1,46,20,41,40,0,1
-0,88,0,46,8,42,41,0,1
-0,106,0,26,2,68,80,12,1
-5,86,0,54,-2,30,32,2,1
-0,108,4,36,0,71,71,0,1
-0,77,0,-2,-8,21,79,58,4
-2,84,0,52,-11,31,32,2,1
-0,108,0,52,-12,55,56,2,1
--4,109,0,38,0,70,71,2,1
-0,86,0,50,25,38,37,0,1
-0,84,5,-42,0,5,128,124,5
-0,82,0,-36,-3,26,118,92,4
-0,77,2,28,0,40,48,8,1
--1,86,0,56,-6,27,29,2,1
--1,106,-4,70,-5,1,36,36,5
-3,81,0,44,13,37,37,0,1
-0,77,0,50,-14,26,28,2,1
-0,95,0,46,8,40,49,10,4
-0,78,-1,44,6,22,34,12,4
-0,83,7,44,0,39,39,0,1
--1,88,0,38,0,48,49,2,1
-0,79,0,-4,2,24,85,60,4
--5,90,7,46,0,43,44,0,1
--5,111,2,62,-9,47,49,2,1
-0,77,0,12,-15,22,65,42,4
--4,81,0,54,-28,25,26,2,1
-0,95,0,54,-8,40,41,2,1
-0,80,-1,38,15,43,41,0,1
-0,79,0,42,10,38,37,0,1
-0,86,1,44,-17,41,42,2,1
-0,79,0,42,-21,35,37,2,1
-0,83,0,34,10,46,50,4,1
-0,76,-1,44,-1,31,32,2,1
-0,80,1,42,-24,37,39,2,1
-1,81,0,52,-4,28,30,2,1
--1865,82,-2,44,-4,38,38,0,1
--1,86,0,42,-7,43,45,2,1
-5,81,0,50,0,32,32,0,1
-0,74,0,30,22,37,43,6,1
-0,76,-4,36,0,39,39,0,1
-0,93,8,6,0,38,88,50,4
-0,80,2,44,17,37,36,0,1
--2,86,0,52,-1,34,35,0,1
-2,90,0,44,0,45,46,2,1
--1,81,0,44,-15,36,37,2,1
-0,97,6,54,0,41,42,2,1
-0,93,0,12,14,56,81,24,1
-0,85,0,44,0,41,41,0,1
-0,84,2,42,-2,41,43,2,1
-0,100,0,38,0,62,62,0,1
-0,76,0,20,10,40,55,16,1
--1,79,2,46,13,33,32,0,1
-0,79,0,24,-12,43,56,14,1
-0,92,0,56,5,36,35,0,1
-0,86,8,52,0,33,34,0,1
-0,77,-3,-10,18,40,87,46,1
-4,87,-5,46,0,40,41,0,1
-0,94,1,30,-3,57,63,6,1
-0,76,0,24,25,39,52,14,1
-1,75,0,20,14,38,54,16,1
-3,86,-1,52,-12,33,34,2,1
-0,106,0,20,-22,69,85,16,1
-4,85,0,56,1,29,28,0,1
--2,89,0,46,0,41,42,2,1
-0,90,7,46,0,44,44,0,1
-3,77,1,10,9,22,67,46,4
-0,104,0,54,3,50,49,0,1
-5,78,-7,50,2,29,29,0,1
-2,83,0,44,0,37,39,2,1
-0,90,0,46,11,44,43,0,1
-0,106,0,72,2,1,33,32,5
-0,81,-3,54,0,27,26,0,1
-0,84,0,-36,0,4,120,116,5
-0,77,0,52,-16,25,26,2,1
--18,106,-1,34,-3,69,72,4,1
-0,80,0,44,-22,35,36,2,1
-1,109,7,26,0,71,83,12,1
-0,84,0,44,-2,38,40,2,1
-0,76,0,28,-3,40,48,8,1
-3,102,0,42,6,61,60,0,1
-4,94,0,50,0,38,45,6,4
-0,76,0,26,5,39,50,12,1
-0,106,0,34,28,69,73,4,1
-0,77,0,30,0,40,46,6,1
-4,102,0,46,0,56,56,0,1
-0,83,0,36,13,46,46,0,1
-1,109,0,60,-30,47,50,2,1
-0,77,0,-6,-24,21,85,64,4
-0,86,0,-22,15,4,109,104,5
--4,111,3,50,0,61,62,0,1
-0,88,0,52,-2,35,36,0,1
-2,82,0,56,4,26,25,0,1
-0,92,0,-6,-14,36,99,64,4
-2,87,2,-4,0,3,92,88,5
-2,81,0,38,-18,39,42,2,1
-0,79,0,38,-11,39,41,2,1
-0,97,0,52,14,41,45,4,4
-0,83,0,46,-1,35,36,0,1
-5,79,3,0,0,41,79,38,1
-0,77,0,12,7,21,64,42,4
--3,83,0,46,20,37,36,0,1
--1,78,-3,12,22,42,65,24,1
-1,89,0,56,0,33,32,0,1
-0,102,0,72,8,1,29,28,5
-1,82,3,-42,0,4,126,122,5
-0,76,0,36,9,39,39,0,1
-0,108,0,44,8,64,64,0,1
-0,92,0,18,2,55,74,20,1
-0,77,7,34,-6,41,44,2,1
-1,81,-8,34,0,44,48,4,1
-0,84,0,60,9,25,24,0,1
--4,83,0,50,0,34,34,0,1
-0,74,-2,24,-5,37,51,14,1
-5,83,0,54,0,28,28,0,1
-5,106,0,50,13,56,57,0,1
-0,84,0,54,-15,28,30,2,1
--1,108,0,72,3,1,35,34,5
-1,82,3,54,0,27,28,0,1
-2,76,0,44,13,32,32,0,1
-0,77,0,26,-14,41,52,10,1
-1,109,5,72,1,2,36,34,5
-0,97,5,38,1,59,58,0,1
-0,78,0,6,5,41,73,32,1
-5,75,-1,42,0,32,34,2,1
-1,81,0,-10,-16,25,91,66,4
-0,97,0,54,26,40,42,2,1
-0,79,0,16,-4,43,64,22,1
-3,93,0,46,0,47,47,0,1
--1,77,0,0,0,40,77,36,1
-0,84,-2,46,0,37,38,0,1
-4,78,0,-6,0,41,86,44,1
-2,83,0,44,0,39,39,0,1
-0,78,0,50,24,30,29,0,1
-0,76,0,-12,25,20,89,68,4
-0,83,0,16,-2,47,68,22,1
-0,77,-1,-10,0,21,87,66,4
--1,81,-4,36,-13,43,44,2,1
-0,83,0,-4,-1,46,88,42,1
-1,79,5,46,0,32,32,0,1
--4,86,0,56,0,30,30,0,1
--1,82,0,46,0,36,35,0,1
-0,83,0,2,-19,46,80,34,1
-0,111,-3,60,0,50,51,2,1
-0,87,0,56,-6,28,30,2,1
-2,79,0,38,0,38,40,2,1
-2,103,1,72,29,1,31,30,5
-0,81,7,46,2,35,35,0,1
-0,77,0,34,-1,40,43,2,1
-0,77,0,46,15,22,31,10,4
-0,79,0,8,-10,43,72,28,1
-1,84,0,42,-24,41,43,2,1
-0,106,6,24,-18,69,83,14,1
-0,76,-1,36,-18,39,40,2,1
-0,79,0,8,1,42,71,30,1
-2,83,0,-46,0,4,129,126,5
-0,77,0,-18,-12,21,95,74,4
-0,77,-4,10,0,41,67,26,1
-0,82,0,44,-20,37,38,2,1
--3,85,0,42,0,43,44,0,1
--2,85,0,54,-6,30,31,2,1
--1,86,-5,46,-8,40,39,0,1
--1,95,0,46,1,40,49,10,4
-0,79,-7,50,0,30,30,0,1
-0,87,7,-6,-18,4,95,90,5
-0,97,0,50,13,41,48,6,4
-1,77,0,38,-3,37,39,2,1
-5,77,0,42,0,35,36,2,1
-0,81,1,46,7,35,35,0,1
--3,93,3,46,6,47,46,0,1
-0,76,-1,26,-14,39,50,10,1
-0,80,-1,42,0,38,39,2,1
-0,77,0,6,16,40,72,32,1
-0,86,0,50,-6,35,37,2,1
-0,78,0,10,10,22,68,46,4
-0,93,0,46,-14,37,46,8,4
-0,75,-5,24,0,38,52,14,1
-0,92,4,8,3,55,84,30,1
-2,88,0,54,3,35,34,0,1
-0,76,0,34,-23,40,43,2,1
-0,104,1,24,0,66,80,14,1
-0,82,-3,46,0,35,35,0,1
-3,83,0,36,-26,45,46,2,1
-0,81,-6,42,-30,38,40,2,1
-4,79,0,42,0,37,38,2,1
-0,92,-6,-2,-30,36,94,58,4
-1,80,-2,46,0,32,34,2,1
--5,83,0,46,0,37,36,0,1
-0,96,1,44,8,40,52,12,4
-0,95,0,46,-11,40,49,10,4
-0,93,0,50,1,37,44,6,4
-0,86,8,-10,14,4,97,92,5
-0,84,0,50,-27,33,35,2,1
-0,81,0,44,24,38,37,0,1
-0,95,0,44,0,52,51,0,1
--2,76,1,42,0,34,35,0,1
-0,78,0,54,1,25,24,0,1
-0,77,0,-2,-7,21,79,58,4
-0,78,0,54,24,25,24,0,1
-0,81,-2,42,-23,38,40,2,1
-0,86,5,44,-1,41,42,2,1
-0,77,0,8,-15,40,69,30,1
--4,106,0,72,6,1,34,32,5
--7,89,0,8,0,4,81,78,5
-5,96,0,50,0,46,47,0,1
-0,76,0,24,-13,39,52,14,1
-0,86,-2,42,-1,43,45,2,1
-1,83,0,56,0,26,26,0,1
-0,79,0,2,-26,23,76,52,4
-1,80,5,-4,0,24,85,62,4
-0,92,0,56,20,36,35,0,1
-0,110,5,38,0,70,71,2,1
-0,97,0,24,-8,60,74,14,1
-2,82,0,54,2,29,28,0,1
-5,84,-7,46,0,37,38,0,1
-0,78,0,-2,-4,42,81,40,1
-0,75,0,38,-23,34,36,2,1
-1,77,0,38,8,39,38,0,1
-0,77,-3,42,0,34,35,2,1
--1,106,-2,44,0,61,62,2,1
-0,86,0,50,-20,35,37,2,1
-4,86,0,44,8,43,42,0,1
-0,85,0,44,10,41,41,0,1
-0,88,-2,44,-3,43,44,2,1
-0,92,0,8,-27,37,84,48,4
-0,83,0,10,5,46,72,26,1
-5,86,0,50,13,37,37,0,1
-0,79,8,38,0,41,41,0,1
--1,88,0,44,-12,43,44,2,1
-0,79,-1,46,8,33,32,0,1
-3,86,-2,-10,14,3,96,92,5
-0,82,7,38,0,44,43,0,1
-2,81,2,44,1,37,37,0,1
-0,96,-4,20,0,59,75,16,1
-0,88,1,46,-3,40,42,2,1
-0,80,-5,34,0,43,46,4,1
-0,78,0,44,-4,23,34,12,4
--2,99,0,50,0,43,49,6,4
-0,77,3,42,-6,34,36,2,1
--1,77,0,44,3,33,33,0,1
-0,105,0,16,-23,68,89,22,1
-0,79,-1,50,0,30,30,0,1
-0,83,0,28,-9,46,54,8,1
-3,107,0,38,0,66,68,2,1
--1,79,0,42,11,39,38,0,1
-2,83,0,-40,15,4,124,120,5
-0,82,-1,42,23,41,41,0,1
-0,81,0,38,-12,40,42,2,1
--3,87,0,42,0,45,46,0,1
-1,83,-1,54,0,28,29,0,1
-3,88,-1,42,0,45,47,2,1
-0,83,8,56,0,25,26,0,1
-0,97,0,46,20,41,50,8,4
-0,80,0,46,2,34,34,0,1
-5,84,0,44,0,39,40,2,1
-0,81,0,28,3,44,52,8,1
-0,76,3,28,0,40,48,8,1
-0,79,0,8,-9,43,72,28,1
-1,81,2,54,0,25,26,2,1
-0,77,0,36,3,40,41,2,1
-1,84,0,52,17,33,32,0,1
--10,77,0,44,-1,32,34,2,1
--1,77,0,36,-18,39,41,2,1
-0,104,-5,28,0,67,75,8,1
-0,81,0,-10,-12,25,92,66,4
-0,88,0,52,-3,35,36,0,1
-0,78,0,46,-3,30,32,2,1
-0,78,0,10,-16,22,68,46,4
-0,81,1,42,29,40,39,0,1
-0,76,0,-12,-23,20,89,68,4
-1,96,0,54,4,40,42,2,1
-0,77,-6,38,0,38,39,2,1
--1,79,0,44,-13,33,35,2,1
-0,93,8,26,16,55,67,12,1
-0,86,0,-4,-10,3,91,88,5
-0,107,15,28,0,70,78,8,1
-0,86,0,42,-4,42,44,2,1
-0,76,0,34,7,39,42,4,1
-0,92,0,28,-12,36,63,28,4
-0,97,1,20,-22,60,77,16,1
-2,80,0,50,3,31,31,0,1
-0,83,0,12,-14,46,70,24,1
-0,79,0,12,-2,23,66,42,4
-0,81,7,44,7,38,37,0,1
-0,92,4,56,0,34,35,0,1
-0,88,0,42,-5,44,46,2,1
-0,95,0,50,5,46,46,0,1
-0,95,0,52,10,40,44,4,4
-2,83,0,42,-27,39,41,2,1
-0,83,1,38,-6,42,44,2,1
-0,77,0,26,5,40,51,12,1
--4,76,0,46,0,28,29,0,1
-0,79,0,0,13,24,79,56,4
-0,86,6,42,0,44,45,2,1
-0,85,0,44,12588,41,41,0,1
-0,85,3,50,0,34,36,2,1
--4,83,0,54,0,28,28,0,1
--1,87,1,52,-1,35,35,0,1
-0,77,0,36,31,41,41,0,1
-0,80,0,52,-18,27,28,2,1
-0,79,4,2,0,42,76,34,1
-0,88,-5,42,0,45,46,2,1
-0,86,2,50,0,37,37,0,1
--5,112,0,62,0,50,50,0,1
-0,103,2,72,30,1,31,30,5
--4,77,0,42,15,37,36,0,1
--2,108,0,46,0,61,62,0,1
-0,83,0,54,-10,27,29,2,1
-0,86,-1,42,-25,42,44,2,1
-2,86,0,52,-3,33,34,2,1
-0,81,0,42,5,40,39,0,1
-0,103,0,70,-26,1,33,32,5
-2,80,0,54,9,27,26,0,1
-5,85,-3,38,0,46,46,0,1
-0,104,0,26,16,66,78,12,1
-0,86,0,-6,0,3,94,90,5
-0,90,0,46,0,43,43,0,1
-3,80,2,-42,0,4,124,120,5
-1,97,0,50,0,41,48,6,4
-0,80,0,42,-9,37,39,2,1
-0,80,0,34,2,43,46,2,1
-0,77,2,54,14,25,23,0,1
-1,76,-2,30,-4,40,45,6,1
-0,79,0,46,16,34,33,0,1
-0,78,-3,12,0,42,65,24,1
--1,88,1,52,-3,35,36,0,1
--1,79,-3,20,-15,24,59,34,4
-0,80,0,42,13,39,39,0,1
-0,78,1,10,-26,42,68,26,1
-1,80,0,46,-20,31,34,2,1
-0,95,-1,44,14,52,51,0,1
--4,79,0,52,0,27,27,0,1
-0,95,0,44,13,40,51,12,4
-0,82,1,42,-30,38,41,2,1
-1,111,0,50,2,62,62,0,1
-5,86,0,52,-7,33,35,2,1
-0,83,0,10,0,46,72,26,1
-2,86,0,54,29,33,32,0,1
-0,97,0,54,18,41,42,2,1
-0,79,5,38,0,41,41,0,1
-0,111,2,62,-12,46,49,2,1
-0,97,0,54,15,41,42,2,1
-1,83,6,36,0,46,46,0,1
-0,76,-2,38,-4,37,37,0,1
-2,111,1,62,-6,46,49,2,1
-0,102,0,46,7,57,56,0,1
-0,81,0,36,-21,44,45,2,1
-0,79,0,6,4,42,74,32,1
-0,78,0,-4,23,42,83,42,1
-2,86,0,50,-22,35,37,2,1
-0,76,0,24,-6,40,53,14,1
-0,104,0,70,-10,1,34,32,5
-1,83,0,42,0,41,41,0,1
--2,89,0,2,-4,4,86,82,5
-0,81,0,6,20,25,75,50,4
-0,88,0,44,8,45,44,0,1
--4,81,0,-4,2,26,86,60,4
-0,78,0,-2,0,42,81,40,1
--2,79,0,38,-9,38,40,2,1
-0,83,0,-42,1,4,127,122,5
-0,74,0,30,9,37,43,6,1
--1,76,0,38,17,39,37,0,1
-0,97,0,18,-26,60,79,18,1
-0,86,0,38,0,48,47,0,1
-0,106,-2,26,0,69,80,12,1
-0,83,3,44,0,39,39,0,1
-0,86,0,46,-3,37,39,2,1
--1,85,-5,46,14,39,39,0,1
-4,79,0,46,12,33,32,0,1
-4,88,0,52,13,36,36,0,1
-0,86,0,52,-14,33,34,0,1
--1,76,0,36,-13,39,40,2,1
--5,95,0,46,0,40,49,8,4
-0,86,0,44,-19,40,42,2,1
-0,77,0,-12,4,21,90,68,4
--1,84,0,50,-30,33,35,2,1
-0,81,-4,38,0,41,43,2,1
-0,77,6,50,0,28,28,0,1
--3,90,0,52,5,38,38,0,1
-0,88,1,52,0,36,37,0,1
-0,96,0,44,-9,41,52,12,4
-0,81,0,46,-3,33,35,2,1
-0,81,0,38,20,43,42,0,1
-0,96,0,46,-8,41,50,8,4
--1,88,-6,46,-9,41,41,0,1
-0,81,0,54,-2,26,27,2,1
-0,81,-2,42,-1,37,39,2,1
-0,84,0,-24,14,4,110,106,5
-0,97,-1,46,-5,41,51,10,4
-0,83,0,42,14,42,41,0,1
-0,83,0,12,-22,46,70,24,1
-0,79,0,52,-13,26,27,2,1
-0,106,-7,50,20,57,57,0,1
-3,94,2,46,0,46,48,2,1
-2,97,0,38,0,58,59,0,1
-0,81,0,38,-27,40,43,2,1
--2,95,-5,46,0,48,48,0,1
-0,86,6,44,0,42,42,0,1
--1,81,0,54,-1,27,27,0,1
-0,79,0,28,11,42,50,8,1
--2,97,0,54,4,41,42,2,1
--1,92,-2,44,0,47,48,0,1
-4,83,0,42,-14,40,42,2,1
-3,86,0,50,22,38,37,0,1
-0,83,4,42,0,41,41,0,1
--1,101,0,50,0,52,52,0,1
--2,84,1,46,0,37,37,0,1
-0,82,0,16,-11,45,66,22,1
--5,82,0,38,0,42,43,2,1
-0,76,0,46,14,31,30,0,1
-0,78,0,-2,10,41,81,40,1
-0,82,0,36,3,45,46,2,1
-0,96,-2,50,-6,40,47,6,4
-4,77,-1,38,0,38,39,2,1
-4,76,-1,-18,-10,20,94,74,4
--1,84,-2,46,-3,38,38,0,1
-0,86,0,42,7,45,45,0,1
--2,76,0,44,24,33,32,0,1
-4,98,0,42,-5,42,57,14,4
-0,77,0,36,-2,22,41,20,4
--1,86,-4,46,22,40,39,0,1
-0,106,0,30,17,68,75,6,1
-2,78,0,42,0,36,37,0,1
-0,79,0,10,15,23,68,46,4
-0,84,7,46,0,38,38,0,1
-0,80,3,2,0,43,77,34,1
--2,95,0,46,-1,40,49,8,4
-1,93,0,10,0,56,83,28,1
-5,93,0,42,1,52,52,0,1
--70,105,0,36,-1,68,69,0,1
-0,82,0,54,23,29,28,0,1
-0,78,3,46,0,23,32,8,4
-0,100,0,30,0,64,69,6,1
-0,79,0,34,0,41,45,4,1
-4,83,0,44,8,39,39,0,1
-0,75,0,36,-30,37,39,2,1
-0,95,2,20,0,58,75,16,1
-0,75,0,42,-12,32,34,2,1
-0,81,-3,-12,0,26,94,68,4
-0,79,0,12,-3,23,66,42,4
-0,108,-14,28,0,70,79,8,1
--1,93,2,44,0,49,50,0,1
-0,81,2,-2,0,25,83,58,4
-0,77,0,42,17,36,35,0,1
-0,81,0,44,21,37,37,0,1
--5,104,-2,72,16,1,31,30,5
-1,84,-5,46,0,37,38,0,1
-2,88,0,54,2,35,34,0,1
-0,78,0,42,22,37,37,0,1
-0,81,-6,-2,0,44,83,40,1
-3,82,0,42,0,39,41,2,1
--2,76,0,38,13,39,37,0,1
--1,76,-2,38,0,37,37,0,1
--5,78,0,50,0,28,29,2,1
-0,79,-3,20,0,43,59,16,1
-0,87,2,50,5,38,38,0,1
-0,81,0,26,5,44,55,10,1
-0,88,0,46,0,40,42,2,1
-0,86,0,38,3,48,47,0,1
-0,85,0,54,-6,30,31,2,1
-0,78,-2,26,-5,22,52,30,4
-0,86,1,56,-17,28,30,2,1
-1,81,8,50,0,30,32,2,1
-0,83,0,46,-1,34,36,2,1
-0,88,-2,38,-45,48,50,2,1
-0,81,-2,46,0,35,34,0,1
-7,79,0,42,-1,25,37,12,4
-0,98,0,50,-20,42,49,6,4
--1,78,0,38,-19,37,39,2,1
-0,97,0,52,13,41,46,4,4
--5,78,0,10,1,23,68,46,4
-0,78,0,10,9,22,68,46,4
-0,97,2,44,-6,41,53,12,4
--2,76,-2,20,-4,39,55,16,1
-0,97,-7,42,0,42,56,14,4
-0,106,-6,44,4,61,62,0,1
--3,77,0,42,0,35,36,2,1
-1,102,0,44,0,58,58,0,1
-0,93,0,38,-3,37,54,16,4
-0,84,0,46,28,38,37,0,1
-0,86,8,42,0,44,45,0,1
--1,107,-6,70,0,1,37,36,5
-0,79,-2,42,-5,35,37,2,1
-0,97,0,54,5,40,42,2,1
-0,95,2,10,6,57,84,28,1
--3,78,0,50,0,28,29,0,1
-1,81,0,46,0,34,35,0,1
-1,97,0,54,0,41,42,2,1
-0,79,-3,38,0,39,41,2,1
-0,75,0,34,2,38,41,2,1
-0,106,8,24,-6,68,82,14,1
-1,76,0,38,0,36,37,0,1
-0,104,0,26,-17,66,78,12,1
--1,82,0,42,-14,39,41,2,1
--1,86,0,42,-27,42,44,2,1
--1,82,0,42,11,41,41,0,1
--4,83,0,46,8,37,36,0,1
--3,77,0,42,0,34,35,2,1
-0,77,0,28,-24,40,48,8,1
-0,75,0,30,5,38,44,6,1
-0,80,0,38,-28,39,41,2,1
-0,85,-3,44,-4,40,41,2,1
-0,97,0,34,6,60,64,4,1
-3,98,1,38,-15,42,59,18,4
-0,86,0,56,1,31,30,0,1
-0,82,7,54,-1,26,28,2,1
--1,84,-1,-42,4,5,128,124,5
-0,81,0,42,10,40,40,0,1
-0,87,-2,46,-3,39,41,2,1
-0,79,-2,18,-36,43,61,18,1
-1,83,0,54,0,29,29,0,1
-0,85,0,52,-24,32,33,2,1
-0,82,0,46,24,37,35,0,1
-0,97,6,54,0,40,42,2,1
--1,81,0,44,14,37,37,0,1
-0,83,6,26,0,46,57,12,1
-1,78,0,50,1,29,29,0,1
-1,76,0,36,-22,38,39,2,1
-0,92,0,46,-15,36,46,10,4
-0,78,0,46,3,32,32,0,1
-1,88,2,46,0,40,41,2,1
-0,77,0,0,11,21,77,56,4
-1,106,0,50,28,58,57,0,1
--1,109,-6,42,-6,66,67,2,1
-0,85,4,44,3,41,41,0,1
-0,74,0,26,-15,38,48,10,1
-0,80,-5,18,0,43,62,18,1
-0,83,0,44,-27,37,39,2,1
-0,77,0,6,-17,40,72,32,1
-0,86,0,42,20,45,44,0,1
-0,76,0,38,15,38,37,0,1
--5,87,0,44,-22,42,43,2,1
-0,98,0,44,18,42,54,12,4
-0,85,0,44,-10,40,41,2,1
--1,76,0,36,-4,39,39,0,1
--2,88,0,52,8,37,36,0,1
--1,77,5,38,0,38,38,0,1
-0,88,0,42,-19,44,46,2,1
-1,84,0,52,4,33,32,0,1
-0,79,0,10,5,42,68,26,1
-0,96,0,54,16,41,42,2,1
-0,95,0,52,12,40,44,4,4
-0,83,0,42,-1,39,41,2,1
-0,86,3,-10,-30,4,96,92,5
-0,81,0,54,-1,26,27,0,1
--2,82,5,44,-17,37,38,2,1
--4,86,0,50,0,37,37,0,1
-0,77,-2,44,11,34,33,0,1
-0,83,1,44,26,39,39,0,1
-0,79,1,50,2,31,30,0,1
--2,77,-1,34,-5,41,44,2,1
--3,88,0,46,19,42,41,0,1
-5,79,0,36,-16,42,43,2,1
-0,80,0,-6,-29,25,88,64,4
-1,84,0,52,-10,31,32,2,1
-3,83,0,42,0,41,41,0,1
--4,83,-5,44,-7,38,39,0,1
-0,77,0,10,6,22,67,46,4
-2,94,2,46,0,46,48,2,1
-0,82,-2,42,3,41,41,0,1
-0,83,2,44,31,40,39,0,1
-0,86,2,46,-15,38,40,2,1
-0,86,0,-12,-28,3,99,96,5
-0,97,0,46,-14,41,50,10,4
-0,79,8,42,0,37,37,0,1
-0,86,0,42,17,46,45,0,1
--3,76,0,42,-12,32,34,2,1
-0,77,0,28,-14,40,48,8,1
-1,88,0,56,0,31,31,0,1
-0,76,0,-18,-19,21,94,74,4
-1,80,0,44,-2,35,36,2,1
-0,78,0,46,27,33,32,0,1
-1,86,0,50,-24,35,37,2,1
-0,76,5,24,0,39,52,14,1
-0,79,0,26,7,23,53,30,4
--1,86,0,46,-5,37,39,2,1
--2,78,0,44,-13,33,34,2,1
-0,75,0,42,-15,32,34,2,1
-0,76,0,30,22,40,45,6,1
-0,97,0,42,31,41,55,14,4
--1,81,3,50,0,32,32,0,1
-0,107,0,54,-21,51,53,2,1
--4,98,-1,46,0,42,51,8,4
-0,84,0,24,-17,47,61,14,1
-0,95,-2,26,6,58,70,12,1
-0,79,0,8,18,24,72,48,4
-5,97,0,56,0,39,40,2,1
-0,78,0,56,30,23,21,0,1
-0,79,1,38,0,39,40,0,1
-0,80,5,8,16,43,72,28,1
-0,76,-1,24,4,39,52,14,1
-0,86,-2,46,0,38,39,2,1
-0,79,0,10,-13,42,68,26,1
-0,87,1,44,-4,42,43,2,1
-0,86,0,-2,0,3,88,86,5
-0,83,0,54,6,30,29,0,1
--3,83,0,38,0,44,44,0,1
--1,76,0,46,17,30,29,0,1
-0,106,-2,36,0,68,69,2,1
-0,101,0,28,-5,64,73,8,1
-0,104,0,26,11,67,78,12,1
-0,78,0,54,0,23,24,2,1
--5,90,1,6,0,52,85,34,1
--1,81,0,46,13,36,35,0,1
-1,77,0,54,4,24,23,0,1
-0,87,0,56,-8,28,30,2,1
-3,86,0,52,-4,33,35,2,1
-0,76,1,46,4,30,29,0,1
-0,78,0,24,20,41,55,14,1
-0,80,0,56,16,24,23,0,1
-1,76,0,42,7,35,35,0,1
-0,84,0,-38,0,4,123,118,5
--44,107,0,62,-4,30,45,16,3
--2,84,0,44,2,41,41,0,1
-0,98,0,46,1,42,51,10,4
--1,97,0,52,5,41,45,4,4
-3,81,0,54,0,26,26,0,1
-0,86,2,44,0,40,42,2,1
-0,76,3,26,20,39,50,12,1
-1,86,0,52,7,35,34,0,1
-0,76,3,44,0,32,32,0,1
-0,81,0,42,12,40,40,0,1
-3,76,0,38,0,36,37,2,1
--1,97,0,36,-4,41,60,20,4
-3,76,0,-18,-3,20,94,74,4
--5,83,0,-40,0,4,125,120,5
-2,81,0,-6,-16,25,88,64,4
--1,77,0,42,-30,33,35,2,1
-0,83,-1,52,0,31,32,0,1
-0,88,0,50,6,39,39,0,1
-0,77,0,36,7,41,41,0,1
--2,80,8,42,0,38,39,0,1
-0,106,0,34,-3,69,72,4,1
-0,79,0,12,7,23,66,42,4
-0,84,0,30,18,47,53,6,1
-0,81,0,56,29,26,24,0,1
--2,86,0,42,9,46,45,0,1
-0,95,0,20,31,57,74,16,1
-1,88,5,44,-20,42,44,2,1
-4,76,0,44,0,31,32,0,1
-0,77,0,36,12,41,41,0,1
-0,83,0,34,8,46,49,4,1
-0,107,0,72,7,1,35,34,5
-0,77,0,-20,-19,21,97,76,4
--4,88,0,38,0,49,50,0,1
--1,88,0,46,-21,39,41,2,1
-0,78,-5,52,0,27,26,0,1
--1,81,2,44,0,36,37,0,1
-5,102,0,38,0,61,63,2,1
-1,86,0,42,0,45,45,0,1
--1,106,-3,70,-4,1,36,36,5
--4,77,0,50,2,28,28,0,1
-0,78,0,46,-7,30,32,2,1
-4,84,0,-24,0,3,110,106,5
-0,86,0,50,12,38,37,0,1
--5,79,0,50,0,30,30,0,1
-2,102,0,52,0,50,50,0,1
-4,91,0,-4,0,35,96,62,4
-0,81,3,42,-7,37,39,2,1
--4,110,0,46,-4,62,64,2,1
-0,84,-5,-20,0,4,105,100,5
-0,83,0,38,-18,42,44,2,1
-2,77,0,44,-1,32,34,2,1
-0,83,0,-4,-2,46,88,42,1
-5,78,0,50,0,29,29,0,1
--2,77,-2,42,0,35,36,2,1
-4,86,0,44,-3,40,42,2,1
-0,83,7,38,0,44,44,0,1
-0,92,0,50,1,36,43,6,4
-0,113,0,64,-20,47,48,2,1
-0,76,0,28,-23,40,48,8,1
-0,86,-7,54,0,31,32,2,1
-0,80,0,8,14,43,72,30,1
-1,77,4,38,0,38,38,0,1
--2,76,0,38,-19,35,37,2,1
-0,81,0,52,-22,28,29,2,1
-0,87,0,56,-19,28,30,2,1
-0,95,0,56,7,39,39,0,1
--5,80,0,42,6,39,39,0,1
-0,79,0,24,6,23,55,32,4
-0,77,-2,46,1,31,30,0,1
-0,85,0,46,21,39,39,0,1
-0,79,0,28,4,43,51,8,1
--1,111,0,50,9,62,62,0,1
-0,77,0,36,-29,40,41,2,1
-0,81,-3,44,11,37,37,0,1
--1,78,0,16,-7,23,63,40,4
-0,85,0,52,-6,32,33,2,1
-1,81,0,44,16,37,37,0,1
--2,79,0,36,0,43,43,0,1
-0,96,0,46,-20,41,50,8,4
-2,76,0,46,0,29,29,0,1
-5,97,0,42,0,40,55,14,4
-4,80,0,42,13,39,39,0,1
-0,87,-5,0,1,3,87,84,5
-1,77,1,38,17,39,38,0,1
-0,96,0,42,18,40,55,14,4
-0,88,0,46,10,43,42,0,1
-0,110,0,62,-27,46,48,2,1
-0,79,0,46,21,33,32,0,1
-5,86,0,44,0,42,42,0,1
-0,80,0,34,8,43,46,4,1
-0,76,-3,46,0,30,30,0,1
-0,83,0,46,-30,33,36,2,1
-0,77,0,38,25,39,38,0,1
-0,77,0,30,23,40,46,6,1
-0,77,-7,42,0,34,35,2,1
-1,84,0,50,-23,33,35,2,1
--3,87,3,52,0,35,35,0,1
-5,79,0,54,0,25,24,0,1
--27,77,0,20,0,40,57,16,1
-0,95,0,42,-4,40,54,14,4
-0,91,0,54,-8,35,37,2,1
--5,81,0,38,-30,40,43,2,1
-0,81,8,-10,0,25,91,66,4
-0,79,0,10,-26,43,69,26,1
-4,81,7,54,0,26,27,0,1
--2,87,0,44,0,42,43,2,1
-1,81,0,36,-19,43,44,2,1
--2,86,0,54,-13,31,32,2,1
-0,79,-4,38,-6,38,40,2,1
-0,79,-1,20,-2,23,58,34,4
-0,87,0,38,-3,46,48,2,1
--5,78,0,50,0,28,29,0,1
-3,86,0,52,-2,33,34,2,1
--1,86,-6,46,22,40,39,0,1
-0,77,0,36,31,40,41,0,1
-1,85,0,46,-3,36,39,2,1
-1,84,0,56,11,29,28,0,1
-0,86,-5,46,0,40,39,0,1
-0,87,-2,44,0,43,43,0,1
-1,79,-1,38,-2,41,41,0,1
-0,83,0,42,4,42,41,0,1
-0,77,4,-2,0,39,79,40,1
--2,86,-2,54,0,31,32,0,1
-5,84,0,54,3,30,30,0,1
-0,96,0,52,-28,40,44,4,4
-0,107,0,28,-1,70,78,8,1
--1,108,5,54,-6,53,54,2,1
-0,77,-5,44,0,22,34,12,4
--3,81,0,50,0,32,32,0,1
-0,93,0,46,-10,37,46,8,4
-0,88,0,46,-29,39,41,2,1
-0,92,4,-2,0,36,95,58,4
-0,104,0,16,-22,67,89,22,1
-0,79,0,46,2,33,32,0,1
-0,77,-4,-12,-4,40,90,50,1
--2,95,-7,42,-10,40,54,14,4
-0,86,0,46,0,38,40,2,1
-0,86,0,52,21,36,35,0,1
-0,77,-4,28,-17,21,48,28,4
--1,87,2,42,0,44,46,2,1
--1,76,-4,46,-6,30,30,0,1
--4,88,0,44,0,43,44,2,1
-0,81,0,-6,-1,25,88,64,4
-0,79,-1,38,0,41,41,0,1
--2,95,0,52,0,40,44,4,4
-1,78,0,54,2,25,24,0,1
-0,81,-6,38,0,42,42,0,1
-0,83,3,42,-2,39,41,2,1
--2,79,0,42,0,38,38,0,1
-1,84,0,-24,26,4,110,106,5
-0,80,0,6,-26,43,75,32,1
-0,77,0,6,-11,40,72,32,1
-1,88,0,38,0,47,49,2,1
-0,92,-2,36,-13,37,56,20,4
-0,88,0,42,8,47,47,0,1
--1,83,0,46,-27,34,37,2,1
-4,82,0,50,0,31,33,2,1
-0,104,-4,24,0,67,81,14,1
-1,77,0,38,-28,36,39,2,1
-1,86,0,38,0,47,47,0,1
-1,76,0,42,15,35,35,0,1
-0,76,0,-22,-1,21,99,78,4
-0,77,-1,16,0,21,61,40,4
--1,86,0,44,-6,41,42,2,1
-2,84,0,42,-19,40,43,2,1
-0,77,0,24,15,40,54,14,1
-0,98,-1,46,-9,42,51,8,4
-0,77,0,44,-9,32,34,2,1
-0,85,0,54,10,32,31,0,1
-2,94,0,50,0,38,45,6,4
-3,83,0,50,0,32,33,2,1
-4,81,0,44,-17,35,37,2,1
-0,86,0,50,-28,35,37,2,1
-0,79,1,44,0,35,35,0,1
-0,80,0,6,24,43,75,32,1
--3,86,0,46,0,38,40,2,1
--5,88,0,46,8,42,41,0,1
-0,84,5,56,0,27,27,0,1
-0,82,0,34,-19,45,48,2,1
-0,97,0,56,2,40,40,0,1
-0,83,0,44,-21,37,39,2,1
-0,95,0,44,-6,40,51,12,4
-3,86,-2,44,0,42,42,0,1
--1,81,0,46,-24,33,35,2,1
-0,77,0,42,23,36,35,0,1
-0,97,-1,46,-2,41,50,8,4
-0,81,0,-4,-6,25,86,62,4
-2,79,1,46,0,33,33,0,1
-0,84,0,52,-5,32,33,0,1
-3,89,0,42,0,47,48,2,1
-0,95,-1,26,7,58,70,12,1
-0,85,2,56,0,28,28,0,1
-4,81,0,46,-14,33,35,2,1
-4,79,0,38,-27,38,41,2,1
-0,84,0,-24,24,4,110,106,5
--3,86,4,42,-1,44,44,0,1
-0,97,0,54,27,41,42,2,1
-0,88,0,42,18,48,47,0,1
-0,82,0,44,23,39,38,0,1
-3,83,0,44,0,38,39,0,1
-3,83,-1,38,-1,44,44,0,1
-0,77,0,-4,20,21,82,62,4
-0,97,0,54,-22,40,42,2,1
-0,76,-2,36,0,39,40,0,1
-0,84,0,20,-5,47,63,16,1
-0,88,-7,46,-53,42,41,0,1
-2,88,0,46,2,42,41,0,1
-3,78,0,8,-8,22,70,48,4
--1,97,-3,50,16,42,48,6,4
-4,79,1,18,20,41,61,20,1
-1,94,0,38,10,56,55,0,1
-0,91,0,54,31,38,37,0,1
-1,106,-7,28,0,68,77,8,1
-2,81,0,38,0,42,42,0,1
-0,81,0,26,-5,44,55,10,1
--1,91,0,6,2,52,86,34,1
-0,79,0,16,-12,42,63,22,1
--6,91,0,6,21,52,86,34,1
--2,95,0,46,-2,40,49,8,4
-0,87,-2,42,-4,45,46,0,1
-0,80,-4,42,0,39,39,0,1
-0,91,0,-4,-18,35,96,62,4
-5,83,0,44,1,38,39,0,1
-0,96,0,42,-13,41,55,14,4
-0,78,4,44,0,22,34,12,4
-0,85,0,44,4,41,41,0,1
--1,95,0,46,-6,47,49,2,1
--4,76,0,42,0,34,35,2,1
-0,85,3,46,0,39,39,0,1
-0,86,5,-6,2,4,94,90,5
-0,88,0,44,20,45,44,0,1
--5,86,0,38,0,47,47,0,1
-0,106,0,34,-30,69,72,4,1
-4,82,0,50,25,33,33,0,1
-0,97,0,46,-7,42,51,8,4
-0,81,5,44,2,38,37,0,1
-0,77,-1,20,-3,22,57,34,4
-0,88,0,46,12,42,41,0,1
-0,88,-4,42,0,46,46,0,1
-0,80,-4,44,23,37,36,0,1
-0,82,0,50,0,33,33,0,1
--3,90,-1,52,-1,37,38,0,1
-0,104,0,26,-6,67,78,12,1
--44,77,0,-2,0,32,79,48,3
-0,79,6,-6,0,42,86,44,1
-0,81,5,-42,-25,5,125,120,5
-0,83,0,18,9,47,65,18,1
-4,81,-1,54,6,28,27,0,1
-0,87,1,42,0,45,46,0,1
-3,81,0,-20,0,25,102,76,4
-0,80,2,36,0,43,44,0,1
-2,81,-1,52,0,30,30,0,1
-0,77,0,20,-2,40,56,16,1
-0,87,-1,54,0,34,33,0,1
-0,75,0,26,19,38,49,12,1
-0,78,0,6,22,23,73,50,4
-23,77,0,28,0,26,48,22,2
-3,81,0,56,0,24,24,0,1
--2,109,0,68,17,43,42,0,1
-0,84,0,46,-17,35,38,2,1
-0,83,0,-38,13,4,122,118,5
-0,76,-3,30,11,39,45,6,1
-0,78,0,52,-30,25,26,2,1
-0,79,0,44,-28,34,35,2,1
--4,86,0,42,0,44,44,0,1
-0,75,4,24,-2,38,52,14,1
-0,83,-5,38,-5,42,44,2,1
-0,96,3,42,-20,40,55,14,4
-0,79,0,42,11,38,37,0,1
-0,108,-3,34,0,71,74,4,1
--1,79,2,46,0,34,33,0,1
-0,81,0,-2,11,44,84,40,1
-5,85,0,-24,0,4,111,108,5
--5,81,-6,46,0,33,34,0,1
-3,77,0,46,0,31,31,0,1
-0,108,8,38,-3,67,69,2,1
--4,88,1,42,0,45,46,2,1
-4,79,0,54,0,24,25,0,1
-0,77,0,8,-14,22,70,48,4
-0,81,0,36,31,43,44,2,1
-0,81,0,46,-11,33,35,2,1
--5,88,0,0,-2,3,88,84,5
-0,94,1,30,-6,57,63,6,1
-0,79,1,-4,0,24,85,62,4
-1,77,0,46,-13,28,30,2,1
-0,85,0,52,-10,33,33,0,1
-1,81,0,44,-1,36,37,2,1
-0,82,0,52,13,31,30,0,1
-0,106,-7,28,-11,69,78,8,1
-0,78,6,24,0,22,55,32,4
-0,77,0,42,-30,33,35,2,1
-0,75,-2,42,-17,32,34,2,1
-0,83,1,44,-8,37,39,2,1
-0,79,0,56,7,23,22,0,1
-0,75,0,44,7,31,31,0,1
-5,90,0,42,0,48,49,2,1
--5,81,0,44,0,36,37,2,1
-0,78,-1,42,0,37,37,0,1
-0,76,0,-4,46,20,81,62,4
-0,79,-7,42,0,37,38,0,1
-0,95,0,42,26,40,54,14,4
-0,88,0,0,-30,3,88,84,5
-0,86,0,56,0,29,29,0,1
--4,81,-3,34,0,44,48,4,1
-0,83,7,46,22,38,37,0,1
-0,81,-2,36,-4,44,44,0,1
--2,77,12,0,0,21,77,56,4
-3,79,0,38,0,41,41,0,1
--2,80,-4,20,-8,25,59,34,4
-0,78,0,2,-1,41,75,34,1
-2,82,4,42,0,39,41,2,1
-0,90,5,8,26,53,82,30,1
--5,79,0,38,0,41,41,0,1
-0,86,-4,42,0,43,45,2,1
-0,95,0,52,12,39,43,4,4
-0,86,0,56,5,31,30,0,1
-0,95,0,50,19,40,46,6,4
-4,79,0,44,5,35,35,0,1
-2,75,0,36,-8,37,39,2,1
-0,88,0,42,7,47,46,0,1
-0,92,0,54,16,36,38,2,1
-0,93,0,34,17,55,59,4,1
-0,78,-4,42,0,36,37,0,1
-0,103,0,20,5,66,82,16,1
-0,83,0,-42,16,4,127,122,5
-0,77,0,34,-2,41,44,2,1
--4,86,0,56,0,29,30,0,1
-0,86,0,42,-30,42,45,2,1
-0,105,0,38,1,67,66,0,1
-0,83,2,46,10,37,37,0,1
-0,86,-1,42,5,45,44,0,1
-1,83,0,44,5,40,39,0,1
-0,87,8,42,0,45,46,2,1
-0,104,6,24,0,66,80,14,1
--5,83,-4,54,0,28,28,0,1
-0,77,0,10,3,22,67,46,4
-0,107,3,70,0,1,37,36,5
-0,78,0,6,28,23,73,50,4
-0,84,0,-18,-15,3,103,100,5
-2,86,0,54,23,33,32,0,1
--43,88,-1,8,0,14,81,68,3
-1,82,0,42,16,41,41,0,1
-3,86,0,56,1,29,29,0,1
-0,92,0,54,-19,36,38,2,1
-5,79,0,50,0,28,30,2,1
-0,79,-7,46,0,32,32,0,1
-0,88,0,54,17,35,33,0,1
--1,82,0,42,-21,38,41,2,1
-0,102,0,46,8,57,56,0,1
-0,79,-1,44,-2,34,35,0,1
-0,78,-1,44,-5,33,34,2,1
--1,81,0,46,9,35,34,0,1
-0,88,8,46,0,41,42,0,1
-2,89,-4,38,0,49,50,2,1
-0,82,0,18,20,45,64,18,1
-0,77,0,38,19,22,39,16,4
--1,86,0,-4,-8,3,91,88,5
-0,88,5,50,0,37,39,2,1
-4,98,0,50,0,42,49,6,4
-0,83,1,-30,8,27,114,86,4
-0,79,0,34,1,42,46,4,1
-0,76,0,20,-11,39,55,16,1
-1,76,0,36,3,39,39,0,1
-0,81,0,44,-20,36,37,2,1
--3,91,3,6,0,53,86,32,1
-0,84,0,56,-3,25,27,2,1
--2,90,0,54,0,36,36,0,1
-1,88,0,46,-28,39,41,2,1
-0,93,0,50,0,37,44,6,4
-0,81,0,-10,-7,25,91,66,4
-1,77,8,42,13,36,35,0,1
-3,77,0,36,0,40,41,2,1
-0,95,0,56,9,40,39,0,1
-0,76,8,44,0,32,32,0,1
-0,83,-2,38,-2,42,44,2,1
--1,82,0,54,0,27,28,0,1
-0,76,-1,38,21,39,37,0,1
--1,87,0,44,-18,42,43,2,1
-1,79,2,50,3,30,30,0,1
-0,76,0,26,-4,40,50,10,1
--3,97,0,54,0,41,42,2,1
-0,76,1,24,23,39,53,14,1
-0,76,0,28,7,39,47,8,1
-4,81,0,56,22,25,24,0,1
--2,79,0,46,13,33,32,0,1
-0,104,0,28,4,66,75,8,1
-0,104,0,30,-16,67,73,6,1
-0,83,5,-46,0,5,130,126,5
-4,80,0,52,-16,27,28,2,1
--1,86,-3,-40,0,4,128,124,5
--4,79,3,38,0,40,40,0,1
-4,81,0,56,24,25,24,0,1
-0,102,0,44,-4,57,58,2,1
-4,76,-1,-14,26,20,92,72,4
-0,83,5,46,26,38,37,0,1
-0,79,6,44,-9,34,35,2,1
--1,97,0,56,1,40,40,0,1
-2,98,0,34,10,61,64,4,1
-0,86,0,46,-22,38,40,2,1
--2,91,0,-4,0,35,96,60,4
-0,86,-3,56,31,31,30,0,1
-2,86,0,-22,12,4,109,106,5
-3,102,0,50,0,51,53,2,1
-0,88,9,46,0,42,42,0,1
-0,84,0,42,-1,42,43,2,1
-1,88,0,54,23,35,33,0,1
-0,98,0,46,9,42,51,10,4
-0,88,-14,0,0,3,88,84,5
-0,86,-2,44,-12,40,42,2,1
-0,77,0,24,18,22,54,32,4
-0,78,0,-4,3,41,83,42,1
--2,86,0,52,-19,33,34,2,1
-3,80,0,36,0,43,44,0,1
-0,77,0,42,17,36,36,0,1
--5,77,0,50,11,29,28,0,1
--2,107,0,38,15,69,68,0,1
-0,83,5,42,0,41,41,0,1
-1,79,0,38,0,41,41,0,1
-4,77,1,10,5,22,67,46,4
-0,83,0,-30,-13,4,114,110,5
-0,103,1,70,-9,1,33,32,5
-0,82,7,52,4,31,30,0,1
-0,107,-4,30,0,70,76,6,1
--1,81,0,-22,-4,26,105,78,4
--2,88,0,52,-5,36,37,0,1
-0,77,0,-2,12,21,79,58,4
-0,84,0,46,-10,36,38,2,1
-0,91,0,18,0,53,73,20,1
-0,97,1,54,0,41,43,2,1
-0,94,1,18,-2,39,76,38,4
-5,79,-4,38,0,40,41,0,1
-1,76,0,38,3,38,37,0,1
-0,95,-6,36,-18,39,59,20,4
-1,84,0,52,-6,31,32,2,1
-0,85,0,50,16,36,36,0,1
--3,78,0,46,-27,29,32,2,1
-0,91,0,54,-5,35,37,2,1
--3,89,-4,50,0,39,40,0,1
-0,76,0,36,-28,38,39,2,1
--3,81,0,-4,11,25,86,60,4
-0,86,0,-24,-15,4,112,108,5
-0,77,-1,16,-2,22,62,40,4
-0,79,0,8,10,42,71,30,1
--1,85,0,42,0,43,44,2,1
-0,79,0,12,1,23,66,42,4
-0,104,1,18,0,67,86,18,1
-3,78,0,54,0,24,24,0,1
-0,77,1,34,-8,40,43,2,1
-0,81,0,30,18,45,50,6,1
-3,98,0,52,2,42,46,4,4
-0,78,0,2,-12,23,75,52,4
-0,77,0,10,-12,40,66,26,1
-0,77,6,42,24,36,35,0,1
-1,79,0,50,0,28,30,2,1
-0,82,-3,-4,0,45,87,42,1
-3,77,0,0,0,22,77,56,4
-4,83,0,56,1,27,26,0,1
-0,74,-1,20,-11,37,54,16,1
-0,77,-3,50,0,28,28,0,1
-0,86,0,-12,-1,3,99,96,5
-0,81,0,-22,0,25,104,80,4
-0,76,0,42,16,35,35,0,1
-0,86,0,42,8,45,45,0,1
-0,77,0,26,-9,22,52,30,4
--3,83,0,42,-16,40,42,2,1
--7,74,-17,0,0,20,74,54,4
-0,99,4,46,0,42,52,10,4
-2,88,0,52,0,37,37,0,1
-0,105,2,16,-21,68,89,22,1
-0,84,8,26,0,48,59,12,1
-0,97,6,10,0,59,86,28,1
--4,76,0,36,-21,38,39,2,1
-0,75,0,42,-27,31,34,2,1
--1,87,6,-4,0,4,92,88,5
-0,94,0,12,-24,57,81,24,1
-1,92,-4,44,0,48,48,0,1
-0,77,-3,34,0,40,43,4,1
--2,87,0,46,12,42,41,0,1
-0,83,0,46,7,37,36,0,1
-0,106,0,72,0,1,34,34,5
-0,79,0,38,-1,41,41,0,1
--1,108,6,46,0,59,61,2,1
-0,83,0,34,15,46,49,4,1
-0,79,0,24,-4,23,55,32,4
-5,86,0,54,5,32,32,0,1
-0,87,2,38,-20,46,48,2,1
-5,77,0,54,0,22,23,0,1
-0,77,0,30,29,40,46,6,1
--4,81,0,38,2,44,43,0,1
--5,108,-11,28,0,71,79,8,1
-0,84,6,-38,0,4,123,118,5
-0,77,0,30,-30,40,46,6,1
-0,86,0,52,12,35,35,0,1
-0,95,-1,18,0,58,77,18,1
-0,77,-1,20,-5,40,56,16,1
-0,79,0,8,0,42,71,28,1
-0,88,0,46,23,43,42,0,1
-0,95,0,50,-13,40,46,6,4
--4,76,0,36,-1,39,40,0,1
-0,77,4,26,0,40,51,10,1
-0,79,6,38,0,39,41,2,1
-5,83,0,44,5,38,39,0,1
-0,96,-1,42,0,41,55,14,4
-0,86,0,46,0,40,40,0,1
-0,81,6,46,0,33,34,2,1
-0,96,1,38,-12,40,57,18,4
-0,85,0,42,5,44,44,0,1
-4,86,0,42,3,45,44,0,1
--1,91,0,54,0,36,37,0,1
-0,81,0,-2,0,25,83,58,4
-0,102,0,72,15,1,30,28,5
-1,79,0,46,0,32,32,0,1
-2,75,0,46,0,28,28,0,1
-0,76,0,-14,8,20,92,72,4
--5,81,0,46,0,35,35,0,1
-0,98,0,52,9,42,46,4,4
-0,75,0,36,-1,37,39,2,1
--5,78,0,36,-1,41,42,0,1
-1,75,0,28,0,38,46,8,1
-0,82,0,46,-4,33,35,2,1
-3,83,0,50,6,34,34,0,1
-0,96,-1,50,-4,40,47,6,4
-0,77,0,-20,-18,21,97,76,4
-0,78,1,38,0,40,39,0,1
-0,97,4,38,0,58,59,0,1
-0,81,0,52,-25,28,29,2,1
-0,89,3,52,4,38,37,0,1
-0,77,0,-22,3,40,101,60,1
-5,97,1,38,0,58,59,0,1
-1,80,-6,54,0,26,26,0,1
-4,78,0,42,10,37,37,0,1
-2,77,0,42,0,35,36,2,1
-3,90,1,42,0,48,49,0,1
-0,77,-2,-12,-29,40,90,50,1
-0,89,3,44,-7,44,45,2,1
-0,82,0,46,-24,33,35,2,1
-0,80,6,34,0,43,46,4,1
--1,77,0,42,0,34,35,2,1
-0,78,0,2,-4,42,75,34,1
--5,86,0,54,0,32,32,0,1
-0,93,0,52,5,38,42,4,4
-0,83,-1,52,-1,31,32,0,1
-0,97,0,52,-15,41,46,4,4
--1,76,0,34,0,40,43,2,1
--1,83,10,24,0,46,59,14,1
-0,79,0,38,0,38,40,2,1
--1,81,-3,44,-14,36,37,2,1
-0,80,0,36,10,43,44,0,1
--1,86,-3,46,-5,39,40,2,1
-0,83,0,42,-20,40,42,2,1
-0,87,-1,46,0,40,41,0,1
-0,82,-1,42,4,41,41,0,1
-0,86,0,60,4,28,27,0,1
-3,97,0,54,-7,40,42,2,1
-0,87,0,46,6,42,41,0,1
-0,77,0,38,23,39,38,0,1
-0,95,7,36,-4,40,59,20,4
-0,86,0,-4,-2,4,92,88,5
-0,84,3,-42,-8,4,128,124,5
--2,79,0,42,0,37,38,0,1
-0,85,-1,44,0,41,41,0,1
-4,85,0,44,1,41,41,0,1
-3,87,0,56,0,30,30,0,1
-1,86,0,42,2,45,45,0,1
-0,106,0,42,-4,62,64,2,1
-3,81,0,54,-13,25,26,2,1
-0,79,6,6,0,23,74,50,4
-2,94,0,46,-7,45,48,2,1
-2,88,0,46,-9,40,42,2,1
-4,86,0,54,-5,31,32,2,1
-0,81,-2,46,11,35,34,0,1
--3,107,0,46,-28,58,60,2,1
-1,99,0,50,0,43,50,6,4
-1,79,0,38,10,41,40,0,1
--3,84,0,54,1,31,30,0,1
-0,76,-1,44,3,32,32,0,1
-0,78,6,12,0,22,65,42,4
-1,83,0,50,1,34,34,0,1
-0,87,-2,44,8,43,43,0,1
--5,96,-1,54,-5,41,42,2,1
-0,76,7,44,-3,31,32,2,1
-0,77,0,6,-18,40,72,32,1
-0,84,0,44,16,41,40,0,1
-0,77,0,42,-19,34,36,2,1
-0,109,0,62,5,48,47,0,1
-0,79,0,8,4,24,72,48,4
--5,81,2,36,0,44,44,0,1
-0,82,4,-18,-19,26,100,74,4
-4,79,0,44,-3,33,35,2,1
--5,109,0,68,11,43,42,0,1
-0,106,0,46,-3,58,60,2,1
--5,81,0,50,0,30,32,2,1
-0,87,0,0,3,3,87,84,5
--1,86,0,56,0,28,30,2,1
-0,95,0,46,-24,40,49,8,4
-0,81,-2,-40,0,4,123,120,5
-0,88,-1,2,0,3,85,82,5
-0,90,0,26,7,52,64,12,1
-0,98,0,44,-10,42,54,12,4
-5,81,0,42,13,39,39,0,1
-0,77,0,44,-22,31,33,2,1
-0,88,1,50,29,40,39,0,1
-0,108,-12,28,0,71,80,8,1
-0,77,-2,38,22,39,38,0,1
-3,76,0,38,1,38,37,0,1
-0,84,0,52,31,34,33,0,1
-0,79,0,24,-28,23,55,32,4
-1,80,0,46,16,34,34,0,1
-0,76,-1,44,5,32,32,0,1
--1,87,0,50,3,38,38,0,1
-0,95,0,46,20,40,49,10,4
--4,78,0,38,0,39,39,0,1
-0,81,7,38,-9,40,42,2,1
-0,78,8,0,0,22,78,56,4
-0,83,-1,46,21,37,36,0,1
-0,110,-1,46,-5,61,64,2,1
-0,84,5,38,0,44,45,2,1
-0,98,0,50,28,42,49,6,4
--2,95,0,46,0,47,49,2,1
-0,83,0,42,17,42,41,0,1
-0,81,-2,-14,-27,26,97,70,4
-0,76,0,42,-16,33,35,2,1
-0,76,0,18,-15,40,58,18,1
-0,93,0,46,0,48,47,0,1
-0,76,-1,42,-15,33,35,2,1
--3,97,0,38,0,58,59,0,1
-4,86,0,52,9,35,35,0,1
-2,79,0,42,-14,35,37,2,1
-0,83,0,42,-13,40,42,2,1
--1,83,0,38,-23,41,44,2,1
--3,79,0,46,15,33,32,0,1
-1,79,-1,-4,0,24,85,62,4
-0,82,0,34,-16,45,48,4,1
-0,79,0,8,-18,42,71,28,1
-5,80,5,-2,0,43,83,40,1
-3,75,7,34,0,37,41,4,1
-0,77,0,10,16,40,66,26,1
--3,98,0,46,4,42,51,8,4
-0,77,0,6,-4,40,72,32,1
-4,74,0,-2,17,18,77,58,4
-0,79,-1,38,-10,38,40,2,1
-0,95,-2,16,10,58,80,22,1
-4,84,0,42,0,41,43,2,1
-0,88,0,0,-15,3,88,86,5
-1,86,0,44,12,42,42,0,1
-0,81,-2,54,12,27,26,0,1
-0,81,0,-18,2,25,99,74,4
-0,76,-3,20,-4,39,55,16,1
-0,85,-4,44,0,40,41,2,1
-0,84,0,44,-2,39,41,2,1
--5,83,0,50,5,34,34,0,1
-1,83,0,38,-6,42,44,2,1
-0,83,0,12,-13,46,70,24,1
--2,95,0,44,14,40,51,12,4
-4,108,-2,42,-2,66,66,0,1
-0,85,0,50,25,37,36,0,1
--5,79,-1,42,0,36,37,2,1
-0,81,0,50,12,32,32,0,1
--3,76,0,42,0,34,34,0,1
-0,92,1,6,-19,54,86,32,1
-0,79,-1,46,7,33,32,0,1
-0,88,0,42,2,47,47,0,1
-0,80,-1,44,10,37,36,0,1
-11,73,11,0,3,16,73,56,4
--3,76,-21,-2,11,22,79,56,4
-0,83,0,50,30,34,34,0,1
-0,94,0,12,-10,57,81,24,1
-0,95,0,54,22,40,41,2,1
-0,79,0,50,-17,27,30,2,1
-0,79,3,46,5,34,33,0,1
-0,96,0,42,-4,53,55,2,1
-0,78,5,24,-5,22,55,32,4
-0,79,-3,38,0,40,40,0,1
-0,96,-3,12,0,59,83,24,1
-0,88,-3,44,0,44,44,0,1
-0,88,0,52,-2,35,37,2,1
-3,77,0,54,0,22,23,2,1
-0,111,5,62,0,48,49,0,1
-0,81,0,-20,25,25,102,76,4
-0,79,5,42,10,38,38,0,1
-0,82,-4,-40,0,4,123,120,5
-0,80,0,0,13,43,80,36,1
-0,86,1,-6,2,4,94,90,5
-0,97,-4,26,-2,60,71,12,1
-0,83,-3,38,-14,42,44,2,1
-0,77,0,8,-1,22,70,48,4
-0,81,5,46,0,33,34,2,1
-0,82,0,42,29,41,41,0,1
-0,85,0,42,0,44,44,0,1
-0,81,0,20,-27,44,60,16,1
-4,78,0,50,0,27,29,2,1
-0,88,0,54,0,34,33,0,1
-0,78,0,16,-6,23,63,40,4
-0,88,0,38,0,47,49,2,1
-0,80,0,30,15,43,49,6,1
-0,75,-1,46,-1,29,28,0,1
--1,79,1,44,25,35,35,0,1
-0,81,-1,56,-2,24,24,0,1
-0,92,0,20,2,55,71,16,1
-5,75,0,38,0,36,36,0,1
-0,78,8,46,0,31,32,0,1
-0,80,0,38,-4,39,41,2,1
-23,77,0,28,0,34,48,14,2
-2,84,0,46,0,37,38,2,1
-0,81,-6,44,0,37,37,0,1
-0,77,0,50,-22,26,28,2,1
--1,83,0,50,0,33,34,2,1
-0,78,-2,42,0,35,37,2,1
-0,76,0,26,-12,39,50,10,1
-0,80,1,12,-26,43,67,24,1
-0,77,0,8,7,40,69,30,1
-0,81,-1,44,10,38,37,0,1
-0,76,-2,24,-5,39,52,14,1
--109,86,0,46,0,39,39,0,1
-0,77,-6,0,0,21,77,56,4
-5,83,0,54,-8,27,29,2,1
-0,77,-1,34,-13,40,44,4,1
--1,106,0,38,-6,65,67,2,1
--1,87,-4,42,-6,45,46,0,1
-0,104,-7,28,0,67,75,8,1
-5,83,-1,50,0,32,33,2,1
-0,96,4,24,-8,59,73,14,1
--2,79,0,42,-11,36,38,2,1
-0,95,0,56,1,39,39,0,1
-0,78,0,42,-15,34,37,2,1
-0,77,0,42,17,22,36,14,4
-2,80,0,52,0,27,28,0,1
-0,83,-7,18,0,47,65,18,1
-0,96,0,38,20,59,57,0,1
-0,82,0,44,-10,37,38,2,1
-0,76,0,-4,177,20,81,62,4
-0,98,8,50,0,42,49,6,4
-0,86,7,42,-6,43,45,2,1
--2,87,0,46,0,39,41,2,1
-0,85,1,38,-19,44,46,2,1
-0,88,0,42,0,47,46,0,1
--4,88,0,44,0,44,44,0,1
-0,77,-5,54,12,25,23,0,1
-0,84,-1,46,0,37,38,2,1
-0,82,-1,36,16,45,46,2,1
-0,85,0,38,6,44,46,2,1
-0,97,0,36,3,59,60,2,1
-2,102,0,38,0,63,63,0,1
-4,89,0,54,-10,33,35,2,1
-3,81,-4,56,0,24,24,0,1
--1,76,-1,38,-2,36,37,0,1
--1,95,0,46,-5,47,49,2,1
-0,83,2,38,-20,42,44,2,1
-3,76,7,42,0,32,34,2,1
-3,81,0,54,17,28,27,0,1
-0,108,-3,34,0,71,75,4,1
-0,82,0,52,6,31,30,0,1
-1,82,8,44,0,37,38,2,1
-0,79,0,30,8,43,48,6,1
-5,81,0,42,0,38,40,2,1
-2,82,0,52,7,31,30,0,1
--3,82,3,38,0,44,43,0,1
-4,79,0,46,13,33,32,0,1
-0,82,0,42,17,41,41,0,1
--3,99,0,38,0,43,60,16,4
--4,92,0,56,0,35,35,0,1
-0,97,4,10,0,59,86,28,1
--2,89,0,38,-17,48,50,2,1
-0,76,-2,38,0,37,37,0,1
-3,108,0,56,-23,49,51,2,1
-2,78,0,50,18,29,29,0,1
-1,82,0,42,5,41,41,0,1
-0,108,-5,26,0,71,82,12,1
-0,93,4,26,3,55,67,12,1
-0,84,-1,44,0,39,40,0,1
-4,81,5,54,0,25,26,2,1
-0,88,6,42,0,46,46,0,1
--1,77,0,46,0,31,30,0,1
-4,79,0,42,0,37,38,0,1
--1,84,0,50,11,36,35,0,1
-10,95,-2,50,0,41,46,6,4
-0,77,0,28,3,21,48,28,4
-4,79,0,28,1,41,50,8,1
--4,102,0,50,0,51,53,2,1
-1,93,0,54,0,38,39,2,1
-0,81,-1,42,0,38,39,2,1
-0,79,2,24,13,24,56,32,4
-1,86,1,38,-19,45,48,2,1
-0,78,0,-2,7,41,81,40,1
-0,82,0,12,3,45,69,24,1
-0,83,3,42,0,40,41,2,1
--2,80,0,46,14,35,34,0,1
-3,102,0,38,0,61,63,2,1
-0,77,0,0,-22,22,77,56,4
-0,79,6,0,3,24,79,56,4
-0,81,0,44,-1,36,37,2,1
-0,86,0,-4,-14,3,91,88,5
-1,81,0,44,-4,36,37,2,1
--5,110,0,46,-7,62,64,2,1
--3,89,0,42,11,48,48,0,1
-0,106,-6,34,4,68,72,4,1
-0,81,7,8,0,44,73,28,1
-0,76,-2,44,0,31,32,2,1
--5,91,0,2,-14,52,88,36,1
--5,75,0,42,0,34,34,0,1
-4,97,-1,46,0,41,51,10,4
--4,82,0,36,0,45,46,0,1
-0,84,0,-36,-2,4,120,116,5
-5,79,0,46,0,32,33,0,1
-0,82,0,38,5,44,43,0,1
-0,80,-6,38,0,41,41,0,1
--1,77,0,44,-15,31,33,2,1
--1,97,0,38,0,59,59,0,1
-1,76,0,44,20,32,32,0,1
-0,86,0,-22,6,4,109,106,5
-0,86,0,50,12,37,37,0,1
--42,78,-7,0,0,30,78,48,3
-0,76,2,38,0,38,37,0,1
-2,76,0,36,14,39,40,2,1
-0,77,0,12,4,21,64,42,4
-0,96,0,44,24,41,52,12,4
-0,96,0,42,2,53,55,2,1
--3,90,0,46,0,44,44,0,1
-0,88,0,46,-4,40,42,2,1
-0,80,6,2,0,43,77,34,1
-5,95,0,44,-5,39,51,12,4
-0,97,0,24,-23,60,74,14,1
--1,96,0,54,28,40,42,2,1
-0,86,0,44,-1,41,42,2,1
-0,75,-1,46,0,29,28,0,1
-0,76,0,-4,1329,20,81,62,4
-0,75,-2,20,-4,38,54,16,1
-0,96,6,44,11,40,52,12,4
-0,75,-7,30,1,38,44,6,1
-3,103,2,70,-22,1,33,32,5
-0,97,-2,46,-4,41,50,8,4
-0,96,2,38,0,41,57,16,4
-1,81,0,44,20,38,37,0,1
-0,80,0,42,0,39,39,0,1
-0,79,0,52,6,27,27,0,1
-0,89,4,46,0,43,42,0,1
--1,88,0,46,0,40,41,0,1
-0,96,3,42,-6,41,55,14,4
-0,80,-4,46,0,34,34,0,1
--1,89,0,42,0,46,48,2,1
-1,78,0,18,31,22,60,38,4
--1,87,0,52,-30,34,35,2,1
-4,106,-1,50,0,57,57,0,1
-0,81,5,46,3,35,35,0,1
-0,81,4,44,5,37,37,0,1
-0,106,-3,50,19,58,57,0,1
-0,107,0,36,-6,69,71,2,1
-0,78,0,36,-19,41,42,2,1
-0,82,3,44,2,38,38,0,1
-3,76,0,34,2,38,42,4,1
--2,81,0,44,-18,36,37,2,1
-0,96,0,44,-13,41,52,12,4
--1,75,-1,46,-2,29,28,0,1
-2,86,0,38,0,46,48,2,1
-0,82,0,54,23,29,28,0,1
-0,86,0,52,20,35,34,0,1
-0,89,3,46,-7,41,42,2,1
-0,83,8,50,3,34,33,0,1
-0,77,0,38,23,40,39,0,1
-0,76,0,42,2,35,35,0,1
-0,96,2,42,-19,41,55,14,4
-1,83,1,-40,13,4,124,120,5
-0,83,5,42,6,41,41,0,1
-1,88,3,46,0,40,41,2,1
--3,93,0,46,0,37,46,8,4
-0,77,-3,8,0,40,69,30,1
--5,78,0,44,0,33,34,2,1
-1,90,0,20,6,53,70,16,1
-0,84,0,38,-13,44,46,2,1
-2,77,8,36,0,39,41,2,1
--5,88,0,46,0,40,41,2,1
-1,81,0,44,0,37,37,0,1
-1,99,0,50,28,42,49,8,4
-0,97,0,18,0,60,79,18,1
-0,81,-2,44,-6,36,37,2,1
-0,94,-1,16,0,57,79,22,1
-0,79,-4,42,0,37,38,2,1
-5,88,0,42,0,45,46,2,1
-1,103,2,34,0,65,69,4,1
-0,106,0,30,6,69,75,6,1
-0,87,3,54,0,32,33,0,1
-0,77,0,36,19,40,41,0,1
-0,97,0,34,-22,59,63,4,1
-0,80,0,6,-9,43,75,32,1
-0,86,8,-2,0,4,89,86,5
-0,85,-6,44,0,40,41,2,1
-0,78,0,-6,-4,41,86,44,1
-0,108,0,42,10,67,67,0,1
-0,91,0,18,3,53,73,20,1
-0,94,0,16,0,57,79,22,1
--2,88,0,52,-3,36,37,0,1
-0,78,0,24,9,42,55,14,1
--1,78,-4,8,-10,23,70,48,4
-0,97,0,54,6,40,42,2,1
-1,75,4,-42,-9,4,119,114,5
-0,81,2,50,-10,30,32,2,1
-0,79,1,50,4,30,30,0,1
-0,76,6,30,9,39,45,6,1
-0,105,0,18,10,68,87,18,1
-0,79,0,18,-6,23,61,38,4
-3,96,2,52,0,40,44,4,4
-0,77,0,28,12,40,48,8,1
-0,97,0,52,-5,41,45,4,4
-0,81,0,28,-4,45,53,8,1
-0,79,-1,36,-2,42,43,0,1
-0,78,0,52,19,27,26,0,1
-0,79,0,42,17,38,37,0,1
-0,97,0,46,-8,41,50,8,4
-0,95,-3,44,0,40,51,12,4
-1,79,0,50,-22,27,30,2,1
-0,105,1,28,3,68,77,8,1
-0,83,0,42,0,42,42,0,1
-1,83,0,42,0,40,42,2,1
-0,95,0,50,-24,40,46,6,4
--1,86,0,44,-24,41,42,2,1
-0,78,0,16,11,42,63,22,1
--25,78,0,10,0,42,68,26,1
-0,79,0,10,15,42,68,26,1
-4,85,0,50,3,36,36,0,1
-0,83,0,52,-23,30,32,2,1
-0,81,0,46,-8,33,35,2,1
-0,78,0,44,31,35,34,0,1
-5,86,0,50,24,38,37,0,1
-0,82,0,52,22,31,30,0,1
-0,81,8,46,0,34,35,0,1
-0,97,0,24,18,60,74,14,1
-3,87,-1,52,16,36,35,0,1
--3,81,0,56,0,25,24,0,1
-4,83,0,46,-30,34,37,2,1
-0,78,5,10,1,23,68,46,4
--1,77,0,42,0,36,36,0,1
--4,80,-1,46,0,34,34,0,1
--2,89,0,44,0,45,45,0,1
-0,92,0,18,20,54,74,20,1
-0,79,0,0,6,23,79,56,4
-0,104,0,54,0,50,49,0,1
-0,77,0,36,976,39,41,2,1
-0,76,-7,12,0,39,63,24,1
-0,86,0,54,-11,30,32,2,1
-0,75,-2,44,0,31,31,0,1
-0,84,0,44,-1,40,41,2,1
--4,88,0,46,0,41,42,0,1
-0,78,0,-6,-7,42,86,44,1
--1,106,-1,46,0,60,60,0,1
-3,82,0,50,0,33,33,0,1
-5,81,2,44,0,36,37,2,1
--3,86,-2,42,0,43,44,2,1
-0,86,5,56,0,29,29,0,1
-0,83,0,-46,-2,4,130,126,5
-4,106,5,72,7,1,33,32,5
-0,83,0,-2,-3,47,86,40,1
-2,76,0,44,0,31,32,2,1
-0,83,0,8,21,47,75,28,1
-0,109,0,50,0,59,60,2,1
-0,79,-2,0,16,42,79,36,1
-0,77,7,36,3,40,41,0,1
--1,87,5,50,0,38,38,0,1
-962,106,-2,34,-3,-15,72,88,5
-0,93,0,16,2,55,77,22,1
-0,77,1,38,-30,36,39,2,1
-0,106,0,36,-16,68,69,2,1
-0,81,0,-2,5,25,83,58,4
-1,81,0,54,571,27,26,0,1
-0,83,0,34,1,46,49,4,1
-0,78,0,52,20,27,26,0,1
-3,102,1,72,14,1,30,30,5
-0,96,0,28,-14,59,68,8,1
-0,77,0,-18,-10,21,95,74,4
-2,76,5,34,0,39,43,4,1
--3,97,0,52,0,42,46,4,4
-0,83,0,42,-30,39,42,2,1
--1,89,8,52,0,38,37,0,1
-0,108,2,42,0,67,67,0,1
--4,96,0,56,0,38,39,0,1
-0,78,0,46,10,23,32,8,4
-0,77,-1,28,0,40,48,8,1
-0,99,0,28,-11,61,70,8,1
-0,79,0,16,0,23,63,40,4
-0,77,0,46,25,22,31,10,4
-0,77,1,36,-9,39,41,2,1
-4,76,0,44,0,32,32,0,1
-3,83,0,42,4,41,41,0,1
-2,104,0,54,0,50,49,0,1
-0,77,0,46,30,22,31,10,4
-0,86,0,56,-1,27,29,2,1
-0,76,-3,28,-1,39,47,8,1
-1,87,0,56,1,31,30,0,1
-0,80,0,36,23,43,44,2,1
-0,98,0,50,-10,42,49,6,4
-1,76,0,42,-22,32,35,2,1
-0,96,1,34,-8,40,62,22,4
-0,84,-3,46,0,38,38,0,1
-3,86,0,-2,0,3,88,86,5
-0,77,0,30,14,40,46,6,1
-5,83,0,56,0,26,26,0,1
-1,80,0,42,31,39,39,0,1
-0,91,0,2,15,35,88,54,4
-0,86,0,54,-30,31,32,2,1
--1,82,-3,-20,16,26,103,76,4
-0,81,0,50,-8,30,32,2,1
-0,95,0,44,15,40,51,12,4
-0,76,-3,30,-24,39,45,6,1
-0,77,0,16,16,22,62,40,4
-0,85,0,-10,-18,3,95,92,5
-0,86,0,44,-19,41,42,2,1
-0,86,-2,44,0,41,42,0,1
-0,97,0,50,-25,41,48,6,4
-0,95,0,54,-22,40,41,2,1
-0,100,0,36,-1,63,64,2,1
-3,84,0,60,0,25,24,0,1
-0,78,0,10,-2,23,68,46,4
-0,80,0,36,7,43,44,2,1
-1,81,0,46,-20,33,35,2,1
-0,77,-2,46,-3,31,31,0,1
--2,83,0,54,15,30,29,0,1
-0,86,1,42,0,44,45,2,1
-5,104,1,72,6,1,31,30,5
-0,79,0,12,-20,43,66,24,1
--3,91,0,6,16,52,86,34,1
-0,75,0,38,-30,34,36,2,1
--2,89,0,2,-6,4,86,82,5
-0,83,3,42,0,42,42,0,1
-0,77,1,34,-10,40,43,2,1
-4,86,0,46,25,41,40,0,1
-0,76,-3,28,-10,39,47,8,1
-0,92,2,12,31,54,79,24,1
-0,77,1,-24,-19,21,103,82,4
-0,77,0,16,9,40,61,22,1
-0,79,1,26,0,42,53,12,1
-0,77,0,2,-1,22,75,52,4
-0,76,0,30,22,39,45,6,1
--5,86,0,54,0,33,32,0,1
-1,79,0,38,0,39,40,2,1
-0,97,0,42,23,56,55,0,1
-0,78,0,18,-5,42,60,18,1
--1,76,83,42,-8,33,35,2,1
-1,76,3,34,0,39,43,4,1
-0,90,0,52,-18,37,39,2,1
-0,76,-5,46,-8,27,30,2,1
-0,86,0,-4,-4,4,92,88,5
-0,81,2,24,0,44,57,14,1
-0,81,0,-18,-6,25,99,74,4
-0,80,0,18,-14,43,62,18,1
-4,95,0,44,0,39,51,12,4
-0,77,0,6,11,40,72,32,1
-0,78,0,44,-15,33,34,2,1
-0,77,0,36,5,22,41,20,4
-0,78,0,8,-4,41,70,30,1
-0,107,0,38,0,69,68,0,1
-0,89,0,6,30,4,84,80,5
-0,75,-6,28,0,38,46,8,1
-0,80,0,54,-2,25,26,2,1
--2,76,0,36,-24,38,39,2,1
-1,79,0,38,0,39,41,2,1
-1,80,0,52,-1,27,28,2,1
-0,78,0,8,-15,22,70,48,4
-0,76,0,-12,5,20,89,68,4
-0,76,0,26,5,40,50,10,1
-0,95,-1,46,6,40,49,10,4
-0,76,0,46,15,30,30,0,1
-1,108,4,70,0,2,38,36,5
-0,98,0,52,-6,42,46,4,4
-0,79,-2,38,-26,38,40,2,1
-0,78,0,6,-17,41,73,32,1
--1,78,-2,46,0,32,32,0,1
-0,81,0,56,13,25,24,0,1
-3,75,0,38,0,36,36,0,1
-0,77,0,-10,-1,21,87,66,4
-0,79,0,24,-2,23,55,32,4
-0,87,0,-40,5,4,128,124,5
-0,90,0,8,5,52,82,30,1
--3,77,0,42,20,36,35,0,1
-3,83,0,56,0,26,26,0,1
-0,79,0,16,6,23,63,40,4
--1,96,-1,52,-1,40,44,4,4
-0,86,-1,44,-8,41,42,2,1
--11,79,-9,-40,5,4,120,116,5
-0,100,-1,28,0,63,71,8,1
-1,86,0,52,28,35,34,0,1
-0,102,0,46,10,57,56,0,1
-5,76,0,44,0,30,32,2,1
-0,80,0,46,3,35,34,0,1
-2,76,0,44,11,32,32,0,1
-1,86,0,44,1,42,42,0,1
-0,81,0,54,21,28,27,0,1
-2,103,2,72,13,1,31,30,5
--2,90,-1,46,0,43,43,0,1
--4,86,0,38,0,45,47,2,1
-0,106,0,34,-28,69,72,4,1
-0,88,0,50,28,39,39,0,1
-0,78,0,0,-2,42,78,36,1
-0,78,0,-4,27,42,83,42,1
-0,79,0,8,12,24,72,48,4
--1,83,-3,46,-16,34,37,2,1
-0,87,0,44,22,44,43,0,1
-2,76,0,36,5,39,39,0,1
-1,81,0,50,-6,30,32,2,1
-3,77,0,42,-20,33,35,2,1
-0,83,0,46,-10,34,36,2,1
-2,88,0,44,0,43,44,0,1
-0,79,0,54,9,26,24,0,1
-0,106,-1,44,0,61,62,2,1
-0,84,0,52,22,33,32,0,1
-0,91,0,56,6,35,34,0,1
-0,96,0,56,9,40,39,0,1
-0,95,0,56,9,39,39,0,1
-0,97,0,34,10,60,64,4,1
-0,76,-1,36,0,38,39,2,1
-0,104,0,24,-9,66,80,14,1
-0,93,0,30,1,56,62,6,1
-0,78,-1,50,-11,27,29,2,1
-0,102,0,50,-23,51,53,2,1
-1,81,0,42,-14,37,39,2,1
-0,77,0,-10,-4,21,87,66,4
-0,100,8,42,0,58,59,0,1
-2,79,0,6,0,23,74,50,4
--3,88,0,54,0,34,33,0,1
--2,79,0,50,-10,28,30,2,1
-0,95,-4,18,0,57,77,20,1
-0,77,3,44,0,32,34,2,1
-5,84,0,42,0,41,43,2,1
-0,86,-3,56,0,28,29,0,1
-0,79,0,36,9,43,43,0,1
--5,81,0,42,18,41,40,0,1
-1,86,0,46,0,39,40,0,1
-0,77,0,30,5,40,46,6,1
--1,80,0,38,-13,39,41,2,1
-0,76,-5,28,0,40,48,8,1
-3,89,0,44,-23,43,45,2,1
-0,88,0,42,-25,44,46,2,1
-1,96,0,42,29,40,55,14,4
-0,78,1,-2,-23,22,81,58,4
-0,84,0,50,-5,34,35,2,1
--2,76,0,38,31,39,37,0,1
-1,81,0,44,-4,35,37,2,1
-0,86,0,42,-15,43,45,2,1
--1,84,0,50,0,34,35,0,1
-1,87,0,46,21,41,41,0,1
-0,97,0,52,-18,40,45,4,4
-0,76,-4,18,-3,39,57,18,1
--5,77,0,20,0,40,57,16,1
-0,104,0,24,5,67,81,14,1
-0,79,0,24,-7,42,55,14,1
-0,107,0,54,-18,51,53,2,1
-0,84,0,50,-10,34,35,2,1
-0,75,-1,28,24,38,46,8,1
-0,79,0,24,-15,43,56,14,1
-0,81,7,44,0,36,37,2,1
-0,94,2,18,-3,39,76,38,4
-1,85,-7,46,0,39,39,0,1
-0,97,0,44,-10,41,53,12,4
-1,113,5,62,0,49,51,2,1
-1,81,1,-42,-19,5,125,120,5
-0,80,0,18,13,43,62,18,1
-0,77,0,24,-12,21,54,32,4
-0,78,1,16,0,41,63,22,1
-0,84,0,54,1,32,30,0,1
-0,79,0,42,14,38,37,0,1
-0,86,-1,44,-2,42,42,0,1
--31,107,0,62,-26,24,45,22,3
-0,109,0,64,-12,43,45,2,1
-0,79,-1,-4,0,24,85,60,4
-0,86,2,46,7,41,40,0,1
-0,104,3,54,7,51,49,0,1
-0,90,-3,44,0,45,46,0,1
-0,76,-5,28,13,39,47,8,1
-0,92,0,24,17,55,69,14,1
--4,78,2,24,0,23,55,32,4
-0,77,-3,38,-16,37,39,2,1
-0,81,0,-4,-24,44,86,42,1
-0,79,5,-2,0,41,81,40,1
-0,80,1,36,-16,43,44,2,1
--16,80,0,34,0,43,46,2,1
-4,77,0,42,0,34,35,2,1
-0,79,0,52,-10,26,27,2,1
-0,79,0,8,24,42,71,28,1
-4,86,-1,50,0,36,37,2,1
-0,86,0,44,-14,41,42,2,1
-1,77,0,46,11,32,31,0,1
-0,80,3,8,5,43,72,28,1
-0,86,7,44,-3,41,42,2,1
-0,83,0,46,-2,34,36,2,1
-0,86,-2,46,0,40,39,0,1
-0,81,0,42,7,40,39,0,1
-0,102,0,70,-20,1,32,32,5
-4,76,0,42,1,35,35,0,1
-0,82,-1,-32,-6,26,115,90,4
-0,81,-7,42,1,40,40,0,1
-0,86,0,46,17,41,40,0,1
-0,81,-1,-12,-12,25,94,68,4
--2,97,0,34,0,60,64,4,1
-0,83,0,54,-10,27,28,2,1
-0,77,-1,46,0,29,31,2,1
-2,112,0,68,0,45,45,0,1
-1,84,0,38,-19,43,45,2,1
--5,85,0,52,0,34,33,0,1
-4,86,0,60,24,28,27,0,1
-0,88,-2,50,5,40,39,0,1
-0,81,0,-10,-6,25,92,66,4
-0,78,-1,6,0,22,73,50,4
-0,76,0,42,14,35,34,0,1
-0,80,-1,36,-18,43,44,2,1
-0,95,0,54,5,40,41,2,1
-0,80,0,20,-25,43,59,16,1
-0,84,0,-40,26,4,125,122,5
-0,80,0,36,12,43,44,2,1
-0,79,-2,42,-4,35,37,2,1
-0,83,-2,46,-4,35,37,2,1
-0,79,0,26,19,23,53,30,4
-1,77,5,38,0,38,38,0,1
-0,75,0,24,-14,38,52,14,1
-0,88,-7,46,0,40,41,2,1
--3,83,0,46,0,37,37,0,1
--1,84,0,46,-20,36,38,2,1
-0,93,2,18,26,55,75,20,1
-0,74,0,26,-8,38,48,10,1
-0,96,0,34,-12,40,62,22,4
-0,78,0,6,-1,22,73,50,4
-0,74,0,28,14,38,46,8,1
-0,103,-3,28,0,66,75,8,1
-0,77,0,0,0,21,77,56,4
-0,86,0,50,17,37,37,0,1
-5,79,3,46,0,31,32,0,1
-0,86,-2,-4,2,3,92,88,5
-0,84,0,-18,2,4,103,98,5
-0,79,0,10,-19,43,69,26,1
--3,77,0,52,0,26,26,0,1
-0,77,0,-22,0,40,101,60,1
-0,80,1,38,0,41,41,0,1
--4,86,3,42,-20,43,45,2,1
--1,79,2,46,0,33,32,0,1
-1,74,0,34,0,37,41,4,1
-0,90,0,46,17,44,43,0,1
-0,78,0,-4,-8,42,83,42,1
-0,77,3,38,0,38,38,0,1
-0,77,8,34,0,41,44,2,1
-0,77,0,16,-20,22,62,40,4
--4,82,0,38,4,45,43,0,1
-2,76,2,42,0,34,35,2,1
-0,80,0,6,-17,43,75,32,1
-5,78,2,38,0,39,39,0,1
-0,76,0,26,-28,39,50,10,1
-0,86,-3,44,4,42,42,0,1
-0,78,4,38,0,40,39,0,1
-0,97,0,46,3,41,51,10,4
-0,85,-1,42,0,43,44,0,1
-0,79,2,38,-5,39,41,2,1
-0,86,3,46,1,41,40,0,1
--5,77,1,44,13,34,34,0,1
-0,102,-5,70,-11,1,33,32,5
-2,93,0,38,0,53,55,2,1
-0,80,0,36,9,43,44,2,1
-0,110,-3,68,0,42,43,0,1
-0,86,0,54,24,33,32,0,1
-0,86,-6,46,1,41,40,0,1
-0,78,7,26,-5,42,52,10,1
-0,84,0,46,-29,35,37,2,1
-0,86,8,56,0,30,30,0,1
-0,85,0,44,-6,40,41,2,1
-0,95,1,44,10,40,51,12,4
-0,83,0,46,0,34,37,2,1
-0,83,4,54,0,28,29,2,1
-2,86,-1,56,0,28,29,0,1
--8,83,-3,46,-5,36,37,0,1
-0,80,0,24,15,43,57,14,1
-5,83,0,50,17,34,33,0,1
-0,79,-5,42,0,37,38,0,1
--21,75,0,28,15,38,46,8,1
-2,97,0,52,-3,40,45,4,4
-0,95,0,46,28,40,49,8,4
-0,79,6,-2,0,42,82,40,1
--5,80,-3,56,0,23,23,0,1
-2,79,0,38,-13,38,40,2,1
--1,83,0,-32,132,4,117,112,5
-0,98,0,34,22,61,64,4,1
--1,82,0,38,15,45,43,0,1
-0,85,-4,46,1,39,39,0,1
--4,106,-8,30,-10,69,75,6,1
--4,82,0,38,0,42,43,2,1
-0,94,0,34,0,56,61,4,1
-0,84,0,54,0,29,30,0,1
-0,109,0,36,-4,71,73,2,1
-0,86,0,42,-23,42,44,2,1
--1,86,0,52,-27,33,35,2,1
-0,79,-6,38,0,40,40,0,1
-0,90,0,50,-7,39,41,2,1
-0,83,1,46,17,37,36,0,1
-0,86,0,44,25,42,42,0,1
-2,86,0,54,0,30,32,2,1
-0,77,2,46,8,32,31,0,1
-0,80,0,34,24,43,46,2,1
--2,98,0,46,12,42,51,8,4
-0,79,0,42,20,39,38,0,1
-0,78,9,0,1,22,78,56,4
-0,86,0,46,3,40,39,0,1
-0,100,0,46,0,53,54,2,1
--1,98,0,52,12,42,46,4,4
-0,81,0,44,-2,36,37,2,1
--4,79,0,34,0,42,46,4,1
-0,77,0,34,26,40,43,4,1
-0,92,8,50,0,36,43,6,4
-2,79,3,0,0,42,79,38,1
-0,76,14,44,26,33,32,0,1
--2,82,0,54,0,29,28,0,1
-0,84,0,-22,-10,4,108,104,5
-0,92,0,54,21,36,38,2,1
-0,96,5,26,14,59,70,12,1
--1,86,0,42,6,46,45,0,1
-4,106,0,50,28,58,57,0,1
--4,109,0,46,0,62,63,2,1
-1,79,0,38,14,41,40,0,1
-1,79,0,46,8,33,32,0,1
--1,75,-2,46,-4,29,28,0,1
-5,83,0,-46,0,4,129,126,5
-0,79,-1,42,1,38,38,0,1
-0,92,0,-4,-3,36,97,60,4
-1,77,6,44,1,33,33,0,1
-1,79,0,38,-7,38,40,2,1
-0,76,0,24,23,40,53,14,1
-1,89,0,46,3,43,42,0,1
-0,77,0,-10,0,21,87,66,4
-0,86,1,56,16,31,30,0,1
-2,102,0,46,4,57,56,0,1
-2,84,0,42,11,43,43,0,1
-0,78,3,24,0,22,55,32,4
-0,107,8,50,0,58,58,0,1
-0,86,5,46,0,39,40,0,1
-2,91,1,54,0,36,37,0,1
-2,86,0,50,23,38,37,0,1
-0,84,0,42,-18,41,43,2,1
-0,76,0,30,9,39,45,6,1
-0,107,0,28,-16,70,78,8,1
-0,77,1,24,0,40,54,14,1
-0,77,0,38,6,39,38,0,1
-0,90,0,24,17,52,66,14,1
-0,83,0,50,0,33,33,0,1
-0,81,8,12,0,45,68,24,1
-0,80,0,12,15,43,67,24,1
-0,77,0,-20,-3,21,97,76,4
-0,79,0,24,-16,43,56,14,1
--1,87,0,44,-17,42,43,2,1
-4,77,0,46,0,30,31,0,1
-0,77,8,24,10,41,54,14,1
-4,88,-1,52,-2,36,36,0,1
--4,87,0,52,0,35,35,0,1
-0,80,0,-2,-8,24,83,58,4
-0,82,0,-36,5,26,118,92,4
-0,81,1,38,-8,40,42,2,1
-0,91,0,-2,17,35,93,58,4
-0,77,0,-22,-9,21,100,80,4
-0,77,5,36,-8,40,41,2,1
-1,78,-3,50,0,28,29,0,1
-3,87,-6,54,0,32,33,2,1
-4,77,0,38,-25,36,39,2,1
-0,95,0,28,4,58,67,8,1
--2,76,0,44,0,31,32,0,1
-0,96,0,52,3,40,44,4,4
-0,96,0,36,13,40,60,20,4
-0,77,0,2,-20,40,74,34,1
-0,97,0,44,-7,41,53,12,4
--2,99,4,38,-4,43,60,18,4
-1,79,0,38,23,41,40,0,1
-0,84,0,56,5,28,27,0,1
--4,88,0,44,-14,42,44,2,1
-0,84,0,46,19,38,37,0,1
-0,84,0,-42,-24,4,128,124,5
-2,78,0,54,0,24,24,0,1
-0,93,0,12,26,56,81,24,1
-3,78,-5,50,0,29,29,0,1
-3,81,0,50,0,31,32,2,1
-0,81,4,36,0,44,45,0,1
-0,77,0,-6,-8,21,85,64,4
-0,86,0,46,-15,38,40,2,1
-0,80,5,2,0,43,77,34,1
--1,81,0,42,-5,38,40,2,1
-0,86,0,-10,29,3,96,92,5
-0,84,-7,46,0,36,37,2,1
-0,86,1,44,-19,41,42,2,1
-0,88,-7,54,0,35,34,0,1
--2,82,-1,44,-21,37,38,2,1
-1,84,0,46,-3,36,38,2,1
-1,86,-3,54,3,32,32,0,1
-0,82,1,54,1,26,28,2,1
--3,76,-1,38,0,37,37,0,1
-0,78,0,6,4,23,73,50,4
-0,97,6,50,0,41,48,8,4
--4,81,0,-40,91,4,123,118,5
-0,96,0,30,8,59,65,6,1
-0,95,-3,16,3,58,79,22,1
-0,80,-4,38,0,40,41,2,1
-0,95,0,42,-2,40,54,14,4
-0,76,1,36,0,39,39,0,1
-4,107,-2,46,1,61,60,0,1
-3,106,1,72,5,1,33,32,5
-0,96,-1,50,-3,40,47,6,4
-0,77,0,2,-21,40,74,34,1
-0,87,-4,52,-7,34,35,2,1
-0,92,0,30,-12,37,61,24,4
-4,106,0,50,10,56,57,0,1
-2,86,0,42,-20,42,44,2,1
-1,79,0,34,6,41,45,4,1
-4,85,8,-24,0,4,111,106,5
--5,76,0,46,12,31,30,0,1
-0,93,5,26,4,55,67,12,1
-0,84,2,46,0,38,37,0,1
-0,77,5,36,-14,39,41,2,1
-0,84,0,50,-15,33,35,2,1
-0,106,0,50,1,56,57,0,1
-0,86,-6,60,19,27,26,0,1
-0,102,0,52,-27,49,50,2,1
-0,77,2,-2,0,39,79,40,1
-0,95,2,36,-19,40,59,20,4
--4,77,0,42,0,35,35,0,1
-0,78,0,6,27,23,73,50,4
-3,77,0,46,0,31,30,0,1
-0,77,-1,42,-16,33,35,2,1
-2,81,-2,46,0,34,34,0,1
-0,80,0,20,7,43,59,16,1
-0,81,0,44,30,37,37,0,1
-0,81,0,-2,9,25,83,58,4
-2,82,0,46,-15,33,35,2,1
--4,106,0,38,0,66,67,0,1
-1,77,0,38,-26,36,38,2,1
-1,83,1,-42,-22,4,126,122,5
-0,91,0,50,-3,40,42,2,1
-0,88,0,50,-19,37,39,2,1
-1,77,0,38,5,39,38,0,1
-0,78,0,10,-8,41,68,26,1
-0,76,0,24,-30,39,53,14,1
-0,82,0,42,-26,38,41,2,1
-0,81,0,50,-30,29,32,2,1
-2,84,0,56,0,28,28,0,1
-0,88,6,44,0,44,44,0,1
-5,77,0,0,0,40,77,36,1
-1,86,2,60,21,28,27,0,1
--2,108,0,70,0,1,38,36,5
-0,88,-1,6,23,3,83,80,5
-0,76,0,36,-10,38,39,2,1
-0,75,-3,34,0,38,41,2,1
-0,80,0,-6,-30,25,88,64,4
--3,92,0,56,0,35,35,0,1
-3,81,0,36,-3,43,44,2,1
--1,87,0,52,-17,34,35,2,1
-0,93,0,12,-25,38,81,42,4
--1,80,-4,44,0,36,36,0,1
-0,79,2,36,0,42,43,0,1
-0,77,0,36,-13,40,41,2,1
-0,81,-6,46,0,33,35,2,1
-0,76,-3,24,8,39,52,14,1
-0,82,-1,36,-1,45,46,2,1
-0,81,0,42,-7,38,40,2,1
-0,95,0,46,-13,40,49,8,4
-0,75,0,42,0,34,34,0,1
-0,94,0,16,5,57,79,22,1
-0,84,8,-24,8,4,110,106,5
-0,83,0,-40,-10,4,125,120,5
-0,95,0,54,-31,39,41,2,1
-2,83,0,42,10,42,42,0,1
-0,82,0,-4,-12,45,87,42,1
-0,78,0,0,-8,41,78,36,1
-2,97,0,38,-26,55,58,2,1
-3,76,7,-40,29,4,117,114,5
-0,96,0,50,-17,40,47,6,4
-0,95,0,46,-4,47,49,2,1
-3,90,-7,54,0,36,36,0,1
-0,76,-6,28,-4,39,47,8,1
-0,87,5,56,0,30,30,0,1
-0,86,0,50,50,37,37,0,1
-0,95,0,52,12,40,44,4,4
-0,82,0,46,21,37,35,0,1
-1,79,0,44,23,35,35,0,1
--3,75,0,46,0,29,28,0,1
-0,78,0,-2,3,41,81,40,1
--2,97,0,54,6,41,42,2,1
-0,88,3,50,16,39,39,0,1
-0,77,1,42,0,36,35,0,1
--4,91,0,56,19,35,34,0,1
-3,76,0,38,7,38,37,0,1
-0,79,0,38,-25,38,41,2,1
-0,82,1,50,-16,31,33,2,1
-0,97,0,56,4,40,40,0,1
-1,102,0,52,0,50,51,0,1
-0,82,0,50,27,34,33,0,1
-1,82,-7,56,0,26,25,0,1
--3,77,0,42,0,35,36,0,1
-0,77,0,28,24,40,48,8,1
-0,96,5,38,0,41,57,16,4
-0,87,1,44,29,44,43,0,1
-0,90,-1,36,0,52,53,2,1
-0,97,-3,18,-4,60,79,18,1
-0,77,0,12,-20,22,65,42,4
-0,86,0,54,8,32,32,0,1
-0,93,0,12,10,56,81,24,1
-0,80,1,20,-1,25,59,34,4
-2,96,2,50,0,46,47,0,1
-0,93,0,18,-30,38,75,38,4
-0,77,0,28,0,22,49,26,4
-0,103,2,54,0,49,49,0,1
-0,86,2,46,31,41,40,0,1
-0,87,0,0,2,3,87,84,5
-0,106,0,36,4,68,69,2,1
-0,83,0,50,-11,32,33,2,1
-1,83,0,46,-5,34,37,2,1
-0,76,-1,30,8,39,45,6,1
-0,81,0,42,0,40,40,0,1
-4,79,0,54,0,24,24,0,1
-3,86,0,52,0,34,35,0,1
--5,78,0,42,8,37,37,0,1
-0,80,-1,28,19,43,52,8,1
-6,104,3,72,5,1,32,30,5
--2,108,0,42,-27,64,66,2,1
-0,76,0,38,9,38,37,0,1
-0,86,-7,52,0,35,35,0,1
-0,77,0,8,-26,40,69,30,1
-0,81,-2,-12,-3,25,94,68,4
--2,85,0,54,-5,30,31,2,1
-0,104,0,26,-9,66,78,12,1
-3,88,0,54,-7,32,33,2,1
-2,87,0,50,0,36,38,2,1
--5,85,0,46,0,39,39,0,1
-0,86,0,56,23,30,29,0,1
-0,77,0,46,15,31,30,0,1
-3,76,0,38,14,38,37,0,1
--4,89,0,54,0,34,35,0,1
-0,81,1,52,-2,28,30,2,1
--2,84,0,46,0,36,37,0,1
-1,81,0,46,8,35,35,0,1
-0,86,-6,42,-6,43,45,2,1
-0,93,4,44,0,49,50,0,1
-0,78,0,20,-7,41,57,16,1
-0,79,2,34,9,42,46,4,1
-0,96,0,50,-2,40,47,6,4
-0,79,0,28,17,42,50,8,1
-1,81,-7,52,-21,28,30,2,1
-0,76,-3,34,25,39,42,2,1
--1,86,0,38,0,46,47,0,1
-3,81,0,54,-10,25,27,2,1
--1,78,-3,8,-9,22,70,48,4
--1,86,0,56,8,31,30,0,1
-0,94,0,8,0,57,86,30,1
-0,108,1,46,0,59,61,2,1
-0,82,-96,44,0,37,38,0,1
-0,75,0,28,-28,38,46,8,1
-4,79,0,44,-16,33,35,2,1
-0,97,2,52,24,41,46,4,4
-0,79,6,26,0,42,53,12,1
-3,74,1,-4,-1,18,79,60,4
-1,79,0,16,16,23,63,40,4
--1,79,1,16,0,42,63,22,1
-5,86,0,44,-6,40,42,2,1
-0,104,0,26,-21,67,78,12,1
--2,88,6,52,0,36,37,0,1
-0,81,-5,-12,0,26,94,68,4
--49,77,0,-2,0,32,79,48,3
-5,80,5,20,-11,24,59,36,4
-2,85,4,46,6,39,39,0,1
-0,81,0,54,-3,26,27,2,1
-0,75,-2,42,-23,31,34,2,1
-0,82,-7,44,-2,38,38,0,1
-0,104,2,54,6,51,49,0,1
-5,79,0,26,0,41,53,12,1
--2,107,0,46,0,61,60,0,1
-0,81,0,-10,-22,25,91,66,4
-0,77,0,12,6,21,64,42,4
-0,97,0,52,22,41,45,4,4
--14,86,0,46,0,39,39,0,1
-0,84,0,-36,-1471,4,120,116,5
--1,77,0,36,-18,40,41,2,1
-0,88,0,50,18,39,39,0,1
--2,82,0,42,0,40,41,0,1
-0,76,0,38,-11,35,37,2,1
-0,97,0,12,24,59,84,24,1
-0,78,-5,0,0,41,78,36,1
-0,81,0,8,-25,44,73,28,1
-0,77,0,8,-4,22,70,48,4
--5,77,0,44,5,34,34,0,1
-0,96,0,44,-4,40,52,12,4
-0,86,-1,38,-2,45,47,2,1
-0,85,0,44,2,41,41,0,1
-0,95,0,8,-25,58,87,30,1
-0,78,0,26,30,41,52,12,1
-0,80,0,42,-24,36,39,2,1
-4,86,0,54,0,33,32,0,1
-0,76,0,20,-5,40,55,16,1
-5,106,2,72,8,1,33,32,5
-0,77,0,-22,-4,21,100,78,4
--2,83,0,-40,2,4,124,120,5
-0,79,0,28,2,42,50,8,1
--1,96,0,52,-4,41,44,4,4
-4,83,0,52,7,31,31,0,1
-2,88,0,44,8,45,44,0,1
-4,82,0,44,0,37,38,2,1
-4,89,0,8,0,3,81,78,5
-0,79,0,24,5,42,55,14,1
-0,76,0,38,-15,34,37,2,1
--2,80,0,52,0,28,28,0,1
--37,107,0,64,-23,17,42,26,3
--4,108,0,72,11,1,35,34,5
-0,81,2,42,0,38,40,2,1
--1,71,-4,0,0,16,71,56,4
-1,83,0,44,0,37,39,2,1
-0,81,0,42,66,39,40,0,1
-0,95,0,42,6,40,54,14,4
--5,106,0,70,0,1,36,36,5
-0,104,5,24,-11,67,81,14,1
-0,79,0,12,4,23,66,42,4
-2,81,0,50,30,33,32,0,1
--4,87,0,46,13,42,41,0,1
-1,82,0,54,-6,26,28,2,1
-0,83,0,54,24,30,29,0,1
--3,81,0,44,19,38,37,0,1
--1,86,1,42,0,44,45,2,1
-3,83,0,46,0,36,36,0,1
-0,79,-1,36,-2,42,43,2,1
-1,79,0,44,3,36,35,0,1
-0,82,3,52,-20,29,30,2,1
-0,80,0,18,-24,43,62,18,1
--1,80,0,50,0,30,31,2,1
-0,86,0,50,0,37,37,0,1
-6,108,4,72,10,1,35,34,5
-0,84,0,-14,26,3,100,96,5
-0,77,0,0,-9,40,77,36,1
-1,88,0,0,3,3,88,84,5
-5,81,4,-40,12,4,123,118,5
-0,79,4,24,-8,23,55,32,4
-0,87,2,38,-1,46,48,2,1
-0,81,3,44,0,36,37,0,1
--4,89,0,46,0,41,42,2,1
--4,88,0,6,0,4,83,78,5
-0,106,-1,50,14,57,57,0,1
-0,77,-1,18,31,40,59,18,1
--2,108,2,60,0,46,49,2,1
-0,76,0,36,-7,38,39,2,1
-0,84,0,28,-5,47,55,8,1
-0,87,-5,44,5,43,43,0,1
-5,78,0,44,0,33,34,2,1
-0,76,-3,28,1,39,47,8,1
-0,86,-4,44,-15,41,42,2,1
-0,80,-1,-42,-11,4,124,120,5
-0,97,0,52,-28,41,46,4,4
-0,79,0,12,2,43,66,24,1
-0,95,0,50,-16,39,46,6,4
-0,77,0,54,2,24,23,0,1
--1,84,0,60,13,25,24,0,1
-0,84,0,44,-14,38,40,2,1
--4,91,0,-4,0,35,96,60,4
-5,80,0,20,1,43,59,16,1
-0,77,0,18,13,22,59,38,4
-0,76,0,36,3,38,39,2,1
-0,92,-4,46,0,37,46,8,4
--1,76,0,36,-6,39,39,0,1
-0,84,0,56,0,26,27,2,1
-1,80,0,-40,0,4,121,118,5
--4,77,0,46,0,29,30,0,1
-5,80,0,54,23,27,26,0,1
-0,79,-7,-4,0,24,85,60,4
-5,83,0,42,0,41,42,0,1
--3,82,0,38,-11,41,43,2,1
-0,86,0,-22,7,4,109,106,5
-0,87,-2,0,0,3,87,84,5
--1,83,0,46,-3,35,37,2,1
-5,81,0,54,0,26,26,0,1
-2,77,1,46,0,30,31,2,1
--5,87,1,44,0,43,43,0,1
-0,80,0,30,-12,43,49,6,1
-0,81,0,20,-8,44,60,16,1
-0,77,8,38,8,39,38,0,1
--4,90,0,50,-17,39,41,2,1
-0,85,0,44,-21,40,41,2,1
-0,77,0,-2,-17,21,79,58,4
-2,93,-1,38,0,53,55,2,1
-0,77,0,38,12,39,38,0,1
--2,79,0,44,0,34,35,0,1
-0,76,0,30,3,39,45,6,1
--2,89,0,56,0,33,32,0,1
-0,77,0,26,12,40,51,10,1
--1,97,0,38,0,41,58,18,4
-2,107,0,50,0,56,58,2,1
-0,77,-3,-4,31,21,82,60,4
--3,76,0,46,9,31,30,0,1
-0,77,-1,0,0,41,77,36,1
-0,96,0,50,16,41,47,6,4
-2,88,0,0,-30,3,88,86,5
-0,92,0,10,14,37,82,46,4
-0,93,-4,12,0,55,80,24,1
-0,79,1,50,3,30,30,0,1
-3,85,4,46,0,38,39,0,1
-0,76,0,26,-18,39,50,12,1
-0,85,-1,46,0,39,39,0,1
-2,96,3,46,0,40,50,10,4
--2,86,0,54,-30,31,32,2,1
-0,80,0,38,25,43,41,0,1
-23,77,0,-22,0,27,101,74,2
-0,85,0,56,10,29,28,0,1
-4,80,0,36,0,43,44,2,1
-0,81,0,28,5,44,52,8,1
--3,83,5,36,0,46,46,0,1
-1,86,0,54,11,33,32,0,1
-1,81,6,38,0,42,42,0,1
-0,96,0,44,19,41,52,12,4
-1,81,-6,56,0,24,24,0,1
-0,79,0,38,-7,38,40,2,1
-0,77,0,42,-18,33,35,2,1
-0,81,0,52,11,29,29,0,1
-0,76,-2,28,-4,40,48,8,1
--2,97,0,44,1,41,53,12,4
-2,100,3,28,0,62,71,8,1
-0,84,-7,46,0,38,38,0,1
-0,77,0,-22,12,40,101,60,1
-5,87,0,46,14,41,41,0,1
-0,82,2,44,0,37,38,2,1
--1,86,-3,54,-4,32,32,0,1
--2,111,0,60,-24,50,52,2,1
-0,81,0,42,-17,38,40,2,1
-2,76,0,38,15,38,37,0,1
-5,81,0,50,16,33,32,0,1
-0,100,-7,46,-25,51,54,2,1
-1,96,6,50,0,41,47,6,4
--1,81,0,54,3,28,27,0,1
-0,88,0,42,19,48,47,0,1
-0,86,0,56,28,30,29,0,1
-0,87,-2,38,-1,46,48,2,1
--2,80,0,56,5,24,23,0,1
-0,83,0,-38,7,4,122,118,5
-0,97,0,24,-7,60,73,14,1
-0,77,5,24,0,22,54,32,4
-0,76,-1,34,0,39,42,4,1
--1,87,-4,54,2,34,33,0,1
-4,86,0,42,0,44,44,0,1
-0,76,-6,44,0,31,32,0,1
--1,77,-6,46,-9,31,31,0,1
-0,76,-3,42,4,34,34,0,1
--5,100,0,44,0,55,56,0,1
-0,77,6,38,0,38,39,0,1
-0,86,0,42,-22,43,45,2,1
--1,83,0,50,-4,32,34,2,1
-1,88,-7,44,-28,43,44,2,1
-3,96,-2,52,0,40,44,4,4
-0,98,0,30,0,61,67,6,1
-4,89,0,2,-8,3,86,84,5
--1,80,0,24,0,43,57,14,1
-0,106,-2,28,0,69,78,8,1
-2,77,0,46,0,28,30,2,1
--2,77,0,42,-14,33,35,2,1
-0,78,1,16,-20,23,63,40,4
-4,90,0,44,0,45,46,0,1
-1,78,0,38,-11,37,39,2,1
-0,83,0,54,0,28,28,0,1
-0,86,3,-40,3,5,127,122,5
--3,80,0,36,-15,43,44,2,1
-2,87,-4,50,0,37,38,2,1
-0,86,0,52,25,35,35,0,1
-1,87,0,56,20,31,30,0,1
--3,85,0,42,-30,41,44,2,1
-0,79,-1,34,0,43,46,2,1
-0,91,6,8,1,53,83,30,1
-0,78,0,38,-31,37,39,2,1
-0,86,0,50,0,35,37,2,1
-1,98,7,52,0,42,46,4,4
-9,75,11,-4,0,19,80,62,4
-5,83,3,34,0,45,49,4,1
--3,89,0,54,0,34,35,0,1
-2,80,0,20,22,43,59,16,1
-0,98,0,52,27,42,46,4,4
-2,109,0,62,1,47,47,0,1
-0,77,0,-14,-5,40,92,52,1
-0,86,0,52,29,36,35,0,1
-0,81,5,38,-14,40,42,2,1
-0,87,5,52,0,35,35,0,1
-2,97,0,56,20,40,40,0,1
-0,83,-1,-42,-29,4,126,122,5
--3,78,0,50,0,29,29,0,1
-0,78,-1,26,1,22,52,30,4
-1,76,-1,30,-3,40,45,6,1
-0,77,0,34,-7,40,43,2,1
--1,83,0,46,-11,34,36,2,1
-0,88,0,6,4,3,83,80,5
-0,79,0,12,-10,23,66,42,4
-1,80,0,44,-12,34,36,2,1
-3,85,0,52,-4,32,33,2,1
--4,77,0,46,6,32,31,0,1
-0,106,-4,34,1,68,72,4,1
-0,77,0,26,4,41,52,10,1
-1,77,-1,46,0,31,30,0,1
-0,76,0,34,22,39,43,4,1
-0,92,0,28,0,36,63,28,4
-0,81,0,26,4,44,55,10,1
-0,77,5,36,-2,39,41,2,1
-0,77,0,42,10,36,36,0,1
-0,77,0,8,5,40,69,28,1
--1,82,0,44,26,39,38,0,1
-0,83,-7,44,21,39,39,0,1
-0,75,0,34,12,38,41,4,1
-3,77,0,46,-5,28,30,2,1
-0,76,0,42,18,35,34,0,1
-0,106,0,34,-10,68,72,4,1
-1,88,0,46,-3,40,42,2,1
-0,77,0,46,5,32,31,0,1
-0,103,1,54,0,49,49,0,1
-1,89,0,8,0,2,81,80,5
-0,78,0,18,-3,41,60,18,1
-0,77,5,44,4,34,34,0,1
--1,105,1,18,0,68,87,18,1
-0,90,-6,44,0,46,46,0,1
-4,86,0,44,-8,40,42,2,1
-1,83,0,-40,9,4,125,120,5
-2,102,0,50,0,52,53,0,1
-0,81,0,-2,10,44,84,40,1
-0,88,-5,46,0,43,42,0,1
-0,86,0,38,-9,46,48,2,1
--2,97,0,36,0,61,61,0,1
-0,90,0,38,25,52,51,0,1
--4,82,0,38,-1,42,43,2,1
-0,83,0,42,-4,40,42,2,1
-0,81,0,-42,-3,5,125,120,5
-0,81,0,-18,16,25,99,74,4
--1,100,2,46,0,54,54,0,1
-4,88,0,42,12,47,47,0,1
-0,83,0,34,-3,46,49,2,1
-0,82,0,-38,3,26,121,94,4
--1,81,1,46,0,33,34,2,1
-0,88,-6,50,25,40,39,0,1
-2,98,0,44,0,42,54,12,4
--2,86,0,52,-30,33,35,2,1
--1,83,-5,46,-8,35,37,2,1
-3,83,0,44,-24,37,39,2,1
-3,98,0,46,24,42,51,10,4
--4,88,0,44,0,43,44,0,1
-3,82,-5,46,-8,36,35,0,1
-0,88,3,46,0,42,42,0,1
-2,87,0,44,-2,42,43,2,1
--5,83,0,50,0,34,34,0,1
--2,102,0,38,28,64,63,0,1
-0,77,-3,46,1,31,30,0,1
-0,82,0,12,7,45,69,24,1
-0,77,0,34,-9,40,43,4,1
-0,76,-2,38,24,39,37,0,1
-0,88,0,52,-11,35,37,2,1
--2,77,0,-24,0,21,103,82,4
-0,92,-2,10,0,37,82,46,4
-0,77,0,52,10,26,26,0,1
-0,83,0,-4,-6,46,88,42,1
-0,92,0,-2,-4,36,94,58,4
--1,103,-2,72,22,1,31,30,5
-0,87,0,54,0,32,33,2,1
-0,93,0,46,-27,37,46,8,4
-0,77,-1,50,6,28,28,0,1
-0,76,0,28,23,40,48,8,1
--3,83,-1,50,11,34,33,0,1
-0,77,0,6,-13,22,72,50,4
-0,78,0,0,0,22,78,56,4
-0,75,0,34,-5,38,41,2,1
-0,77,0,10,-2,21,66,46,4
-3,84,0,50,0,34,35,0,1
-0,86,0,46,-1,39,39,0,1
-0,88,-1,46,16,42,41,0,1
-0,83,0,8,11,46,75,30,1
--3,106,0,42,0,63,64,2,1
-0,106,-2,28,-19,69,78,8,1
--1,105,0,72,9,1,33,32,5
--5,88,0,42,0,46,47,2,1
-1,83,0,52,0,31,32,0,1
-0,79,0,18,4,43,61,18,1
--2,89,0,50,9,40,40,0,1
-2,102,0,46,30,57,56,0,1
-0,81,0,-14,31,25,97,72,4
-0,84,-2,42,-5,41,43,2,1
-0,97,0,46,-8,40,50,10,4
--5,76,0,20,0,39,55,16,1
-1,79,0,44,-14,33,35,2,1
-0,95,1,52,0,40,44,4,4
-0,77,5,42,0,35,36,2,1
-0,75,0,28,24,38,46,8,1
-0,75,0,42,-3,32,34,2,1
-0,84,2,46,0,37,38,0,1
-0,79,-1,42,0,37,38,2,1
--1063,106,-1,34,-2,69,72,4,7
-5,83,-4,54,0,29,29,0,1
-2,86,-7,44,0,40,42,2,1
-0,92,0,0,31,36,92,56,4
-2,79,3,42,0,37,38,0,1
-0,97,-7,30,0,60,66,6,1
-0,76,-1,44,7,32,32,0,1
-5,76,0,38,0,35,37,2,1
-2,83,0,42,-18,39,41,2,1
-0,76,5,44,0,31,32,2,1
-0,80,0,36,-24,42,44,2,1
-0,104,0,20,2,67,84,16,1
-0,79,4,38,-9,38,40,2,1
-0,81,0,36,-8,43,44,2,1
-4,75,0,38,0,35,36,2,1
-0,81,0,36,-27,43,44,2,1
--1,87,0,42,-7,44,46,2,1
-5,81,0,52,12,29,29,0,1
--4,75,-2,-42,-16,4,119,114,5
-0,77,-6,-28,9,21,105,84,4
-0,82,-4,34,0,45,48,2,1
-3,79,-2,52,0,27,28,0,1
-0,97,1,34,0,60,64,4,1
-0,88,0,0,24,3,88,84,5
-0,81,1,24,0,44,57,14,1
-0,106,0,26,-12,68,80,12,1
-0,76,0,-18,-6,20,94,74,4
-5,86,0,50,0,36,37,0,1
--2,82,0,52,5,31,30,0,1
-0,100,-2,30,-3,64,69,6,1
-0,80,-1,-42,-13,4,124,120,5
-0,81,-4,46,1,35,34,0,1
--3,76,-2,46,-3,30,30,0,1
-0,91,0,-2,3,35,93,58,4
-1,86,1,44,9,43,42,0,1
--1,109,0,52,0,58,57,0,1
--1,81,0,52,-6,29,30,0,1
-1,81,0,44,13,37,37,0,1
--4,81,3,46,0,34,35,0,1
-0,77,4,10,0,22,67,46,4
-4,77,1,46,1,31,31,0,1
-0,78,0,0,7,41,78,36,1
-1,85,0,50,0,35,36,0,1
-0,76,0,42,0,34,34,0,1
-0,76,20,24,0,39,53,14,1
-5,82,6,52,0,29,30,0,1
-1,76,0,38,-30,35,37,2,1
-4,80,0,46,0,33,34,0,1
-3,84,0,46,0,37,38,2,1
-0,107,4,46,0,60,60,0,1
-0,81,-1,54,5,27,26,0,1
-5,93,1,34,0,54,60,6,1
--2,75,0,38,-20,34,36,2,1
-1,83,0,54,0,28,28,0,1
--1,79,0,34,1,42,46,4,1
-0,80,7,10,9,43,70,26,1
-1,85,0,56,2,29,28,0,1
-3,83,0,44,-21,37,39,2,1
--1,77,0,46,18,32,31,0,1
-1,81,-3,38,0,41,42,2,1
-0,78,0,8,25,41,70,30,1
-0,77,2,-4,-4,21,82,62,4
-0,86,-7,44,16,42,42,0,1
-0,76,0,20,-1,39,55,16,1
-3,77,0,-22,13,40,101,60,1
-0,105,0,34,15,68,71,4,1
-0,90,0,46,21,44,43,0,1
-0,104,3,24,0,66,80,14,1
-0,88,-2,44,0,43,44,2,1
-0,82,6,-12,-3,26,95,68,4
-2,76,0,46,4,30,29,0,1
-0,76,-1,38,0,36,37,2,1
-0,76,0,20,-6,39,55,16,1
-0,80,0,44,24,37,36,0,1
-0,97,-2,34,-4,59,63,4,1
-5,76,-2,34,0,38,42,4,1
-0,93,0,12,3,37,80,42,4
-0,82,1,20,9,45,61,16,1
-0,88,0,44,-2,43,44,2,1
-0,93,0,10,-4,56,83,28,1
-1,77,0,44,-4,31,33,2,1
-0,77,0,24,-26,21,54,32,4
--5,86,0,42,0,45,44,0,1
-4,97,0,50,13,41,48,8,4
-0,81,0,38,21,43,42,0,1
-1,102,0,50,12,53,53,0,1
-0,79,-2,20,-17,24,59,34,4
-0,94,1,18,0,39,76,38,4
-0,77,0,-20,22,21,97,76,4
-0,77,0,-18,-13,40,95,54,1
-0,85,2,44,0,41,41,0,1
-4,83,0,56,0,26,26,0,1
-0,77,0,34,2,41,44,2,1
-0,109,5,54,28,56,55,0,1
--4,79,0,38,0,39,41,2,1
--253,86,-1,46,0,39,39,0,1
-0,80,8,42,-14,37,39,2,1
--14,108,0,70,0,3,38,34,5
-0,113,1,64,17,49,48,0,1
-0,83,0,50,15,34,34,0,1
-0,88,0,44,2503,42,44,2,1
-0,86,3,42,-2,42,44,2,1
-0,77,0,26,3,41,52,10,1
-0,78,0,46,6,33,32,0,1
-4,106,4,70,0,1,36,34,5
-0,77,0,-14,-17,40,92,52,1
-0,77,0,6,2,40,72,32,1
-5,102,0,42,9,61,60,0,1
-2,85,0,38,0,45,46,2,1
-3,84,0,46,-14,35,37,2,1
-1,87,6,60,0,28,28,0,1
-0,88,3,2,0,3,86,82,5
-5,81,-1,38,-23,39,42,2,1
--1,86,2,56,0,28,30,2,1
-0,76,0,18,-5,40,58,18,1
-0,79,1,8,0,24,72,48,4
-0,80,3,44,0,35,36,2,1
-0,78,0,12,-4,41,65,24,1
--1,83,0,46,17,37,36,0,1
-0,84,1,28,-10,47,55,8,1
-1,76,0,44,26,32,32,0,1
-0,82,-6,-4,0,45,87,42,1
-1,75,0,-42,-5,4,119,114,5
-0,106,0,20,-18,69,85,16,1
-0,77,2,-2,-6,21,79,58,4
-1,79,0,34,0,42,45,4,1
-0,78,0,16,-16,42,63,22,1
-0,78,-2,12,14,42,65,24,1
-0,77,0,20,16,22,57,36,4
--1,109,0,64,0,45,45,0,1
-0,81,0,42,-11,38,40,2,1
-1,108,0,46,0,62,62,0,1
-1,76,0,42,2,34,34,0,1
-0,85,-3,46,-2,39,39,0,1
-0,86,0,44,18,42,42,0,1
-0,83,-2,46,0,35,37,2,1
-0,77,0,-24,21,21,103,82,4
-5,86,0,52,8,35,35,0,1
--1,79,-3,10,-8,42,68,26,1
-5,84,1,-38,-20,4,123,118,5
--2,108,0,54,0,55,54,0,1
-0,83,6,42,0,41,42,2,1
-3,95,0,38,0,40,57,18,4
-0,109,1,38,-1,68,70,2,1
-0,88,0,-2,-10,3,90,88,5
-4,83,-3,34,0,45,49,4,1
-4,79,6,16,0,41,63,22,1
-0,88,0,52,-22,35,37,2,1
-0,95,0,10,6,58,84,26,1
-0,78,0,16,7,23,63,40,4
-0,77,0,18,28,22,59,38,4
-0,79,2,8,-14,42,71,28,1
-0,83,0,34,3,46,50,4,1
-0,84,0,-24,11,4,110,106,5
-0,97,0,34,-4,59,63,4,1
-0,107,0,46,-6,58,60,2,1
-0,76,-2,38,11,39,37,0,1
-0,76,0,-4,221,20,81,62,4
-0,81,0,36,-19,43,44,2,1
-0,84,0,52,-10,31,32,2,1
-0,76,0,24,-16,39,53,14,1
-0,102,0,70,-6,1,33,32,5
-0,77,0,42,14,22,36,14,4
-0,96,8,24,0,59,73,14,1
-0,108,-4,46,4,62,61,0,1
-0,83,6,42,0,42,42,0,1
-0,83,0,38,-6,42,44,2,1
-0,88,-1,50,0,39,39,0,1
-0,81,0,52,13,30,30,0,1
-4,83,-2,46,0,36,36,0,1
-0,83,3,44,0,38,39,0,1
-0,99,-1,42,-4,56,58,2,1
-0,83,0,50,-19,31,33,2,1
-2,81,0,50,17,32,32,0,1
-0,81,0,46,-28,33,35,2,1
--5,84,0,50,4,36,35,0,1
--1,87,0,56,0,30,30,0,1
--1,109,-1,60,0,49,50,0,1
-0,86,-6,50,-9,36,37,2,1
-0,86,8,46,0,39,40,0,1
-0,81,0,-40,25,5,123,118,5
-0,77,-5,-10,0,21,87,66,4
-0,81,-7,44,0,38,37,0,1
--8,76,0,20,0,39,55,16,1
--1,95,0,52,0,40,44,4,4
-4,82,0,46,0,35,35,0,1
-0,113,0,64,17,48,48,0,1
-0,81,3,52,-6,28,30,2,1
-3,91,0,52,14,40,39,0,1
-0,101,-4,28,0,64,73,8,1
--4,78,0,38,15,41,39,0,1
-3,86,-3,54,0,32,32,0,1
--2,107,0,72,0,1,35,34,5
-0,109,0,44,0,65,66,0,1
-0,76,0,34,28,39,43,4,1
-4,88,0,6,0,4,83,78,5
-0,86,-3,46,0,40,39,0,1
-2,82,0,46,0,36,35,0,1
-0,79,0,16,1,42,64,22,1
-1,77,-6,38,9,39,38,0,1
--2,106,0,38,0,67,67,0,1
--2,97,0,52,4,41,45,4,4
-0,83,5,0,0,47,83,36,1
-0,78,0,8,19,22,70,48,4
-0,76,-1,34,-2,40,43,2,1
-0,96,7,50,0,41,47,6,4
--3,80,0,36,0,43,44,0,1
-0,83,-1,50,-1,34,34,0,1
--3,86,0,42,22,45,44,0,1
-0,77,0,-20,1,21,97,76,4
-3,106,0,42,1,65,65,0,1
-0,85,6,56,0,28,28,0,1
--1,81,0,44,7,38,37,0,1
-0,92,0,34,-8,37,59,22,4
-0,77,0,50,11,29,28,0,1
--5,81,0,-4,2,26,86,60,4
-0,77,-3,38,0,38,39,2,1
-0,95,0,46,8,40,49,8,4
-2,97,-7,52,0,41,46,4,4
-1,95,0,54,-25,39,41,2,1
-0,80,0,38,21,43,41,0,1
-1,87,2,56,0,31,30,0,1
-5,77,0,46,2,31,31,0,1
-0,82,0,52,-19,29,30,2,1
-3,106,-1,44,-3,61,62,2,1
-0,97,0,50,21,40,48,8,4
-3,88,0,50,0,37,39,2,1
-0,74,0,34,0,37,41,4,1
-0,106,0,50,10,57,57,0,1
-1,84,0,38,-24,43,45,2,1
--3,106,0,46,0,60,60,0,1
-0,97,2,46,0,41,51,10,4
-0,76,-1,38,-13,35,37,2,1
-0,92,0,46,-1,37,46,8,4
-0,84,0,52,5,33,33,0,1
--1,85,0,44,-12,40,41,2,1
--1,80,-5,20,-10,43,59,16,1
--4,80,0,42,23,39,39,0,1
-0,77,0,34,10,41,44,2,1
-0,79,0,30,21,42,48,6,1
--1,84,0,-14,3,4,100,96,5
-5,88,0,56,0,30,31,0,1
-0,77,0,46,-1,29,31,2,1
--1,71,-6,0,0,16,71,56,4
-0,83,0,38,12,45,44,0,1
-0,80,3,8,6,43,72,28,1
-0,94,0,16,4,57,79,22,1
-0,97,0,46,2,41,51,10,4
-0,88,0,46,1,43,42,0,1
-1,86,0,38,-9,45,47,2,1
-2,90,-7,42,-14,46,48,2,1
-0,87,1,50,0,37,38,0,1
-0,104,0,20,8,67,84,16,1
-0,77,0,38,2,22,39,16,4
--3,81,0,50,-8,30,32,2,1
-0,78,-2,42,0,36,37,0,1
-0,77,1,-6,0,21,85,64,4
-0,86,-4,42,2,45,44,0,1
-0,83,0,42,15,42,42,0,1
-1,79,0,54,12,26,24,0,1
-3,89,0,2,0,3,86,84,5
-1,86,0,44,-22,41,42,2,1
-0,76,6,20,-15,39,55,16,1
--2,86,0,46,-30,38,40,2,1
-0,88,0,44,-25,43,44,2,1
-0,84,0,-14,1,4,100,96,5
--1,84,0,-14,5,4,100,96,5
--1,79,-5,44,-7,34,35,0,1
-0,84,-6,56,0,28,28,0,1
-0,89,0,54,-6,34,35,2,1
-0,79,8,42,0,36,37,2,1
--2,76,0,36,-23,39,40,2,1
-5,80,0,38,0,42,41,0,1
-0,87,-1,50,7,38,38,0,1
--3,79,0,54,-5,23,24,2,1
--5,88,0,50,0,38,39,0,1
--1,76,0,44,0,31,32,0,1
-4,78,-5,50,0,28,29,2,1
-0,79,0,46,22,33,32,0,1
-0,79,0,20,19,43,59,16,1
-1,91,0,52,-13,38,39,2,1
-0,83,0,52,-4,30,31,0,1
-0,102,0,54,7,49,48,0,1
-0,81,-1,38,0,41,42,0,1
-0,76,1,28,-13,40,48,8,1
-0,76,0,44,-19,30,32,2,1
-0,91,0,16,-6,53,75,22,1
-0,95,0,46,-26,46,48,2,1
-0,76,-4,38,22,39,37,0,1
-0,89,2,2,0,4,86,82,5
-0,79,0,54,-25,23,24,2,1
-0,102,0,72,7,1,29,28,5
-0,78,0,8,17,23,70,48,4
--1,80,0,46,0,33,34,0,1
-0,77,0,42,5,35,35,0,1
--4,97,0,38,0,59,59,0,1
--1,110,4,64,0,46,46,0,1
-0,96,-5,12,0,59,83,24,1
-0,97,0,52,-16,41,45,4,4
--4,90,-4,56,0,34,33,0,1
-0,76,0,38,-18,35,37,2,1
-0,86,2,54,10,33,32,0,1
-0,76,0,42,-19,33,35,2,1
-4,76,0,38,0,37,37,0,1
-5,76,0,38,10,38,37,0,1
-1,102,0,44,-25,57,58,2,1
--1,97,0,44,-4,41,53,12,4
-0,90,1,42,3,48,48,0,1
--3,84,1,50,0,35,35,0,1
-0,83,-3,54,0,28,28,0,1
-5,77,0,42,17,36,35,0,1
-0,92,0,0,9,36,92,56,4
-0,80,0,30,-7,43,49,6,1
-0,106,-1,36,0,69,70,0,1
--4,80,0,50,0,31,31,0,1
-0,79,0,26,2,43,54,10,1
-0,106,0,38,2,68,67,0,1
-0,79,-3,36,0,41,43,2,1
-0,77,8,46,4,31,30,0,1
-4,81,0,50,11,32,32,0,1
-0,77,0,16,-16,22,62,40,4
-0,85,0,46,2,39,39,0,1
-0,88,0,44,1,43,44,2,1
--3,75,0,26,-2,38,49,10,1
-0,92,0,52,14,36,40,4,4
-0,99,0,42,-1,56,58,2,1
-0,77,0,-18,9,21,95,74,4
-0,75,0,38,0,34,36,2,1
-1,80,0,50,-16,29,31,2,1
-0,97,0,42,19,41,55,14,4
-0,84,4,-38,0,4,123,118,5
--5,86,-3,54,0,31,32,0,1
-4,77,0,26,-5,22,52,30,4
-2,79,0,54,0,24,25,0,1
-0,81,6,44,3,38,37,0,1
-0,86,0,52,0,35,35,0,1
--3,79,0,50,-15,28,30,2,1
-0,78,0,0,-18,23,78,56,4
-5,86,0,54,-30,29,32,2,1
-0,96,4,28,0,59,68,8,1
-0,95,0,44,2,40,51,12,4
-1,82,0,44,-23,36,38,2,1
-0,81,-4,26,-6,45,55,10,1
-0,79,-4,38,-8,38,40,2,1
-0,97,-2,34,6,60,64,4,1
-0,76,5,28,0,39,48,8,1
-1,95,0,34,0,40,62,22,4
-0,78,0,44,5,34,34,0,1
-0,92,-7,0,0,37,92,56,4
-0,76,0,44,-22,30,32,2,1
-0,81,0,42,12,41,40,0,1
-0,73,-18,-2,-30,18,76,58,4
-0,105,0,18,17,68,87,18,1
-0,79,0,8,-11,23,71,48,4
-2,78,-3,50,0,28,29,0,1
--2460,105,0,36,0,68,69,0,1
--1,78,3,0,2,41,78,36,1
-0,88,0,50,31,40,39,0,1
-0,86,8,42,-8,43,45,2,1
-4,97,0,54,-9,40,42,2,1
--1,98,0,38,-5,42,59,18,4
-5,83,0,42,-18,40,42,2,1
-0,78,-2,46,2,32,32,0,1
-1,97,1,30,0,60,66,6,1
--4,82,0,44,19,39,38,0,1
-0,81,-1,-12,-21,25,94,68,4
-0,98,0,52,-10,42,46,4,4
-0,106,-6,24,0,69,82,14,1
-0,82,0,54,-24,26,28,2,1
-0,82,0,50,29,33,33,0,1
-0,82,0,12,19,45,69,24,1
-0,105,0,70,-14,1,35,34,5
-0,76,0,38,0,38,37,0,1
-0,80,-2,46,0,34,34,0,1
-0,77,1,-10,0,21,87,66,4
-0,106,0,28,-5,69,78,8,1
--1,79,1,44,0,35,35,0,1
-0,108,1,36,3,71,72,0,1
--35,107,0,62,-10,26,45,18,3
-0,92,-1,44,0,47,48,0,1
-0,88,0,0,5,4,88,84,5
-0,81,0,-14,3,26,97,70,4
-0,78,0,20,8,42,57,16,1
-0,84,0,46,31,40,38,0,1
-0,106,0,38,-4,65,67,2,1
--4,90,-2,6,0,53,85,32,1
-0,76,3,28,4,39,48,8,1
-0,78,0,38,-14,37,39,2,1
-3,80,0,46,0,33,34,0,1
-0,102,-3,34,0,65,69,4,1
-0,79,2,42,-12,35,37,2,1
-0,77,0,-4,-3,41,83,42,1
-0,79,-1,0,3,42,79,36,1
-0,74,0,28,4,38,46,8,1
--5,79,0,50,6,30,30,0,1
-4,105,8,70,0,1,35,34,5
-0,77,-1,42,0,34,35,2,1
-0,77,-3,54,5,25,23,0,1
-0,80,2,-2,-11,24,83,58,4
-0,83,0,54,16,30,29,0,1
-0,96,0,44,25,41,52,12,4
-0,79,2,16,9,23,63,40,4
-0,97,-3,34,10,60,64,4,1
-0,77,0,20,25,40,56,16,1
-3,79,-5,52,0,28,28,0,1
-0,98,0,44,11,42,54,12,4
-0,81,5,46,0,34,35,0,1
-0,77,0,-20,10,41,98,58,1
--3,77,-7,50,0,27,28,2,1
--4,80,0,44,-1,35,36,2,1
-0,77,4,36,-2,39,41,2,1
-1,77,0,42,17,36,36,0,1
-0,82,0,50,15,33,33,0,1
-3,105,4,70,0,1,35,34,5
--2,76,-7,44,0,31,32,0,1
-0,84,0,46,-15,36,38,2,1
-0,91,0,52,0,38,39,0,1
-2,77,-2,38,0,39,39,0,1
-0,77,0,50,-9,26,28,2,1
-0,80,0,34,-12,43,46,2,1
--1,84,0,46,-1,38,38,0,1
-0,80,0,24,8,43,57,14,1
-0,83,0,54,5,30,28,0,1
-0,82,-1,42,24,41,41,0,1
-0,78,0,6,-4,23,73,50,4
-5,107,0,46,0,59,60,0,1
-0,96,-5,18,0,59,78,18,1
-0,80,0,16,19,43,65,22,1
-0,87,0,42,-8,44,46,2,1
--2,80,-6,36,-10,43,44,0,1
-1,96,4,46,0,40,50,10,4
--1,109,0,38,0,68,70,2,1
-0,79,4,38,15,42,41,0,1
-0,79,0,38,0,42,41,0,1
-0,97,0,50,20,41,48,6,4
-0,76,8,26,0,39,50,10,1
-0,77,0,34,-16,40,43,2,1
-0,81,7,42,-7,37,39,2,1
-0,80,0,44,-17,35,36,2,1
-0,80,-5,34,-3,43,46,2,1
-1,87,0,46,-13,38,41,2,1
-0,88,0,50,20,39,39,0,1
-0,97,-6,28,0,60,69,8,1
--1,76,0,36,-9,39,40,2,1
-0,79,0,10,25,23,68,46,4
-0,85,6,44,4,41,41,0,1
--1,89,0,2,-4,4,86,82,5
-0,77,0,38,18,39,38,0,1
-0,86,-3,44,0,40,42,2,1
-0,95,0,46,-22,40,49,10,4
-3,86,0,54,3,32,32,0,1
-0,108,0,54,-4,52,53,2,1
-3,86,0,54,2,33,32,0,1
-0,85,0,46,17,40,39,0,1
-0,83,6,-24,0,27,108,82,4
--3,89,0,8,0,3,81,78,5
-0,81,5,46,1,35,35,0,1
--2,86,0,56,0,31,30,0,1
-0,77,-6,16,0,21,61,40,4
--2,84,0,42,-21,41,43,2,1
-3,84,0,44,-19,38,40,2,1
-0,78,-2,44,-4,33,34,2,1
-0,83,2,38,-19,42,44,2,1
--1,78,0,38,0,40,39,0,1
-0,77,0,34,-19,40,43,4,1
-0,80,-1,42,-3,37,39,2,1
--1,75,-3,42,-27,32,34,2,1
-0,80,0,2,-3,43,77,34,1
-0,79,0,26,0,42,54,12,1
-0,81,-1,42,-26,37,39,2,1
-1,81,0,-22,-10,25,105,80,4
-0,76,0,38,-24,35,37,2,1
-0,87,8,42,0,45,46,0,1
-0,86,0,-6,-13,3,94,90,5
-0,76,-1,26,-10,39,50,12,1
-0,107,-1,36,0,69,71,2,1
-0,87,8,-4,10,4,92,88,5
-2,77,0,42,14,36,36,0,1
-1,75,0,38,-6,34,36,2,1
-0,75,0,36,21,37,39,2,1
-3,76,0,46,6,30,29,0,1
-0,80,0,42,26,39,39,0,1
-0,77,0,26,-29,21,51,30,4
--1,82,-4,38,-6,44,43,0,1
--1,86,0,46,7,41,40,0,1
-0,104,-1,16,-7,67,89,22,1
-0,87,-2,46,-4,41,41,0,1
-0,81,0,28,-26,45,53,8,1
--1,78,-5,34,-10,41,45,4,1
-0,77,0,6,-4,22,72,50,4
-0,78,0,16,2,23,63,40,4
-0,82,-2,52,0,29,30,0,1
-0,75,0,38,-4,34,36,2,1
-0,81,0,46,11,35,34,0,1
-2,83,0,44,17,40,39,0,1
-0,80,-1,38,16,43,41,0,1
--1,95,0,46,0,48,49,0,1
--4,99,7,46,0,43,52,8,4
-0,79,0,20,1,41,58,16,1
-0,95,-3,54,1,40,41,2,1
-1,77,0,44,12,33,33,0,1
-0,97,0,50,-17,41,48,6,4
-0,96,-1,50,0,41,47,6,4
-0,97,-2,18,-2,60,79,18,1
-0,86,0,-2,26,4,89,86,5
-0,86,0,56,0,27,29,2,1
-0,104,3,18,0,66,86,20,1
-0,81,5,38,-12,40,42,2,1
-0,104,0,36,-4,67,68,2,1
-0,77,1,36,8,40,41,0,1
-0,77,5,34,-3,41,44,2,1
--1,77,-4,16,-9,21,61,40,4
--4,81,0,38,-30,41,43,2,1
-0,80,0,38,16,43,41,0,1
-5,77,0,44,0,31,33,2,1
-0,76,0,42,10,34,34,0,1
--2,77,0,-24,-18,41,103,62,1
-0,86,-1,54,3,33,32,0,1
--2,81,2,44,23,37,37,0,1
-2,77,7,44,1,33,33,0,1
-1,83,-2,54,0,28,29,0,1
-0,79,0,44,-8,34,35,2,1
-3,79,0,42,9,38,38,0,1
-0,86,0,54,8,33,32,0,1
-4,86,0,44,-6,40,42,2,1
-1,82,0,42,0,39,41,2,1
-3,77,0,52,0,25,25,0,1
-0,77,0,46,-23,29,31,2,1
-0,96,0,28,-22,59,68,8,1
-0,77,0,50,7,28,28,0,1
-2,91,0,50,0,41,42,0,1
--1,79,0,42,-9,35,37,2,1
-0,88,0,46,-6,39,41,2,1
-0,77,0,12,1,40,64,24,1
-1,88,0,46,0,40,42,2,1
-0,79,0,38,29,41,40,0,1
-0,83,0,-28,-1,27,111,84,4
-0,87,-2,50,10,38,38,0,1
-0,98,0,44,-3,42,54,12,4
-0,79,0,44,-24,34,35,2,1
--1,88,0,50,-11,37,39,2,1
-0,78,-2,12,1,41,65,24,1
-0,96,-1,52,-6,40,44,4,4
-0,76,0,24,22,39,52,14,1
-0,74,0,28,3,38,46,8,1
-0,86,0,38,15,48,47,0,1
-0,76,0,16,2,39,61,22,1
-0,88,2,46,0,42,42,0,1
-0,79,-1,36,31,41,43,2,1
-0,76,-4,34,8,39,42,2,1
-0,77,0,42,-5,34,36,2,1
--3,79,0,42,15,39,38,0,1
-0,79,0,42,-7,36,38,2,1
--3,86,-7,42,-12,42,44,2,1
-3,85,0,42,0,42,44,2,1
-0,104,0,18,-11,67,86,20,1
--2,99,0,44,22,56,55,0,1
-0,90,0,46,7,44,43,0,1
--2,79,0,44,0,35,35,0,1
-0,77,-1,46,0,29,30,2,1
-0,77,0,30,-16,40,46,6,1
-5,86,0,-12,0,3,99,96,5
-0,87,0,60,15,28,28,0,1
-0,106,2,36,0,69,70,0,1
-0,86,1,60,13,28,27,0,1
--3,80,0,20,1,43,59,16,1
-0,108,0,42,5,67,67,0,1
-0,79,1,8,-4,42,71,28,1
-0,82,0,18,-13,45,64,18,1
-0,81,6,-42,0,4,125,120,5
-4,80,0,6,-11,43,75,32,1
-0,92,0,8,-7,37,84,48,4
-0,83,0,0,-2,46,83,36,1
-4,95,0,42,11,39,54,14,4
-0,82,0,44,24,38,38,0,1
-4,84,0,42,0,42,43,2,1
-0,80,0,38,-27,39,41,2,1
-1,95,0,56,8,39,39,0,1
-1,78,0,50,11,29,29,0,1
-0,84,0,-32,4,4,117,114,5
-1,83,0,38,11,45,44,0,1
-5,96,0,54,0,41,42,2,1
-1,86,2,56,2,31,30,0,1
-0,84,0,-20,2,4,105,100,5
-0,83,2,36,-3,45,46,2,1
-0,86,2,54,6,33,32,0,1
-2,88,0,50,0,39,39,0,1
-0,95,-1,42,-14,40,54,14,4
-1,81,0,52,24,29,29,0,1
-0,76,2,28,0,39,47,8,1
-0,83,6,36,0,46,46,0,1
-0,103,0,18,-2,66,85,18,1
-0,77,0,-20,-9,41,98,58,1
-3,79,0,50,0,29,30,0,1
-0,106,0,20,-29,69,85,16,1
--4,76,0,36,0,40,40,0,1
--3,86,0,56,19,30,29,0,1
-0,86,0,-4,-13,3,92,88,5
-0,95,-1,44,21,52,51,0,1
-1,98,0,46,11,42,51,10,4
--3,84,0,46,-20,35,37,2,1
-0,92,0,26,-15,36,66,30,4
-0,83,0,-30,-11,4,114,110,5
-0,86,-1,-6,-30,3,94,90,5
-3,86,0,52,23,35,34,0,1
-0,82,0,26,-18,45,56,10,1
-4,77,2,42,0,35,36,2,1
-3,98,4,46,-12,42,51,10,4
-0,89,5,46,-25,40,42,2,1
-0,82,2,50,-18,31,33,2,1
-0,79,0,56,0,23,23,0,1
-0,77,0,2,15,40,74,34,1
--4,80,0,50,0,30,31,2,1
-0,106,0,28,7,68,77,8,1
-0,88,0,2,15,3,86,82,5
-0,82,0,36,4,45,46,2,1
--2,81,0,44,-2,36,37,2,1
-0,81,0,38,-4,40,42,2,1
--2,79,0,46,23,33,32,0,1
-0,83,-3,34,11,46,50,4,1
-0,81,-6,42,0,40,40,0,1
-4,77,-1,44,2,33,33,0,1
-5,104,0,24,2,66,80,14,1
-0,77,0,-2,-20,21,79,58,4
-0,85,0,50,-6,34,36,2,1
-0,78,1,46,0,31,32,0,1
-0,77,0,-22,7,21,100,80,4
-0,84,3,56,0,27,27,0,1
-0,84,-2,44,10,41,41,0,1
-0,84,0,46,12,39,38,0,1
-0,77,0,12,0,22,65,42,4
-0,90,-3,56,0,33,33,0,1
-0,87,0,60,9,28,28,0,1
--2,86,0,54,30,33,32,0,1
-1,86,0,54,5,32,32,0,1
-0,86,-1,-40,0,4,128,124,5
-0,77,0,28,30,21,48,28,4
-2,76,0,44,6,32,32,0,1
-0,86,0,44,23,43,42,0,1
-0,76,-1,-22,-3,21,99,78,4
-0,86,0,-4,15,3,92,88,5
-0,89,0,42,-14,46,48,2,1
-2,78,0,46,0,31,32,0,1
--1,77,0,50,-5,27,28,2,1
-0,104,0,20,29,67,84,16,1
--2,86,0,56,-1,28,30,2,1
-0,81,-6,20,7,44,61,16,1
-1,83,2,42,0,40,42,2,1
--2,109,0,64,0,44,45,0,1
-0,88,6,-2,0,4,90,86,5
-0,106,-6,36,0,69,70,0,1
--4,81,0,-22,-8,26,105,78,4
-0,77,0,26,-4,21,51,30,4
-0,96,4,24,0,59,73,14,1
-0,79,0,28,-37,43,51,8,1
-0,78,3,26,0,23,52,30,4
-1,109,0,62,1,47,47,0,1
-0,75,0,28,28,38,46,8,1
-0,87,6,50,1,38,38,0,1
-0,95,0,10,25,58,84,26,1
-5,80,-7,54,0,25,26,2,1
-0,78,0,52,0,27,26,0,1
-0,95,2,10,31,58,84,26,1
-0,108,0,42,2,67,67,0,1
-2,97,5,52,0,40,45,4,4
-0,83,0,2,23,46,80,34,1
-4,93,0,54,0,38,39,2,1
--2,78,0,46,0,31,32,0,1
-3,83,-3,34,0,45,49,4,1
--4,89,0,46,0,42,42,0,1
-5,79,0,36,0,43,43,0,1
--2,90,0,8,2,53,82,30,1
-0,79,0,8,31,42,71,30,1
-5,79,0,38,-16,38,40,2,1
-0,77,13,-4,0,21,83,62,4
-0,105,-4,20,-2,68,84,16,1
-0,107,-2,50,-4,56,58,2,1
-0,86,5,42,-1,43,45,2,1
-0,77,0,42,-17,34,36,2,1
-0,86,5,-40,5,5,127,122,5
-0,83,0,-2,-22,47,86,40,1
--3,86,0,42,0,44,44,0,1
-0,88,0,54,15,35,33,0,1
-3,108,0,42,0,66,67,0,1
-0,93,0,46,-9,37,46,8,4
-0,79,0,20,16,23,58,34,4
--1,77,0,38,0,39,39,0,1
-0,84,-1,-38,-6,4,123,118,5
-0,88,0,52,0,36,36,0,1
-0,86,-4,50,-27,35,37,2,1
-0,82,6,44,0,37,38,2,1
-0,78,1,38,0,39,39,0,1
--3,84,-3,-42,9,5,128,124,5
-0,77,0,-20,-5,21,97,76,4
-0,76,2,44,0,32,32,0,1
-3,98,4,54,24,42,44,2,1
--1,81,0,46,16,36,35,0,1
--4,76,0,42,-18,33,35,2,1
-0,81,8,44,30,38,37,0,1
--1,86,-3,44,-6,41,42,2,1
-0,78,-6,42,0,36,37,0,1
--2,78,0,42,0,36,37,2,1
--1,81,0,46,0,34,35,0,1
-0,86,0,-4,30,3,92,88,5
-4,86,0,38,0,48,48,0,1
-0,76,0,20,6,40,55,16,1
-0,77,0,-22,5,41,101,60,1
--4,85,0,42,0,42,44,2,1
--2,83,0,50,-31,32,34,2,1
-0,76,0,46,20,30,29,0,1
--5,81,0,36,0,44,45,0,1
-0,98,5,50,0,42,49,6,4
-0,95,-8,44,-1,39,51,12,4
-0,97,0,44,27,41,53,12,4
-0,82,1,-18,-11,26,100,74,4
--1,76,0,20,0,39,55,16,1
-2,83,0,50,0,32,33,2,1
--5,72,-3,0,0,17,72,56,4
-1,79,0,-2,0,42,81,40,1
-0,79,3,42,27,39,38,0,1
--2,107,0,38,0,69,68,0,1
--2,97,4,44,5,53,53,0,1
--3,77,0,52,22,26,25,0,1
-0,108,-3,70,0,1,38,36,5
-0,77,-7,54,0,22,23,0,1
-0,78,0,18,20,23,60,38,4
-0,80,-2,20,-5,43,59,16,1
-0,90,0,8,0,52,82,30,1
--4,81,0,-4,13,25,86,60,4
-0,79,0,50,23,31,30,0,1
-0,75,0,42,5,34,34,0,1
-1,77,0,44,0,32,33,0,1
-0,95,-1,52,-18,40,44,4,4
-0,77,0,-2,6,21,79,58,4
-0,97,0,36,21,59,60,2,1
-0,81,-7,54,248,26,27,2,1
-0,84,-1,44,0,40,41,0,1
-3,78,0,42,2,37,37,0,1
-0,81,0,-10,-8,25,92,66,4
-2,86,0,46,0,37,39,2,1
-0,81,0,-6,0,25,89,64,4
-0,84,0,50,0,33,35,2,1
-0,92,0,36,-1,37,56,20,4
-5,76,3,46,0,30,30,0,1
-0,78,-1,12,-4,41,65,24,1
-5,77,0,34,0,22,44,22,4
-1,81,0,-6,-19,25,88,64,4
-0,77,0,46,2,22,31,10,4
-1,88,0,54,-3,32,33,2,1
-0,78,0,26,3,41,52,12,1
-1,107,0,42,0,64,66,2,1
-0,95,0,56,8,39,39,0,1
-0,103,0,52,-14,50,51,2,1
--1,78,0,50,-7,27,29,2,1
-0,77,5,-22,0,22,101,78,4
--3,80,0,50,0,31,31,0,1
-3,82,0,56,15,26,25,0,1
-3,79,0,18,0,41,61,20,1
--1,82,0,42,0,40,41,0,1
-4,83,0,46,0,37,37,0,1
-0,92,0,16,5,54,76,22,1
--4,79,0,50,0,30,30,0,1
-0,100,-1,28,0,64,72,8,1
-0,104,0,20,1,67,84,16,1
--1,83,-4,46,-6,35,37,2,1
-0,109,0,50,-9,58,60,2,1
-0,96,0,46,7,41,50,8,4
--2,88,0,46,0,41,42,0,1
-0,81,-2,38,-27,40,42,2,1
-0,79,0,46,19,34,33,0,1
-0,80,0,26,0,43,54,12,1
-0,82,0,44,4,38,38,0,1
--1,83,-3,46,10,34,37,2,1
-0,103,5,70,-10,1,33,32,5
-0,83,4,46,0,35,36,2,1
-0,86,0,46,13,40,39,0,1
-0,79,0,56,4,23,22,0,1
-0,86,0,38,2,49,48,0,1
-0,76,17,42,-5,33,35,2,1
-0,95,0,46,-19,47,49,2,1
-0,79,-2,46,0,32,32,0,1
-0,83,0,38,-24,41,44,2,1
-5,81,0,42,0,39,40,0,1
-0,76,5,30,0,39,45,6,1
-0,84,0,54,5,30,30,0,1
-0,86,0,60,7,28,27,0,1
--5,83,0,42,-30,40,42,2,1
--1,95,-3,54,-5,40,41,2,1
-0,79,0,8,20,42,71,28,1
--3,76,0,20,0,39,55,16,1
-0,88,2,52,-12,35,36,2,1
-4,74,1,-4,-2,18,79,60,4
-0,95,0,50,-21,40,46,6,4
-0,87,0,38,-1,47,48,2,1
-0,79,0,44,-6,33,35,2,1
-1,82,0,36,0,45,46,2,1
-0,90,53,6,0,53,85,32,1
--2,79,-6,12,-16,42,66,24,1
-1,75,0,20,0,38,54,16,1
--4,86,1,46,0,39,40,0,1
-0,108,0,72,2,1,35,34,5
-0,109,0,62,3,47,47,0,1
-0,108,-2,70,-2,1,38,36,5
-0,78,-6,0,0,42,78,36,1
-2,76,0,38,-25,35,37,2,1
-0,104,-1,20,27,67,84,16,1
-0,103,0,52,-15,50,51,2,1
-0,96,1,46,0,41,50,8,4
-0,81,0,42,0,38,40,2,1
-0,79,0,28,15,42,51,8,1
--2,75,0,26,-1,38,49,10,1
-0,91,0,54,-13,35,37,2,1
--3,83,0,-46,0,5,130,126,5
--3,89,4,42,0,48,48,0,1
-5,77,0,50,2,28,28,0,1
-1,75,0,42,10,34,34,0,1
-0,77,-3,46,0,29,30,0,1
-0,108,-1,34,0,71,74,4,1
-0,78,8,10,1,22,68,46,4
-6,79,0,42,-1,25,37,12,4
-0,76,0,-18,-14,20,94,74,4
-5,86,0,44,0,41,42,2,1
-0,107,0,38,7,69,68,0,1
--2,88,0,50,0,37,39,2,1
-0,83,3,44,-26,37,39,2,1
-0,81,0,24,-11,44,57,14,1
-0,83,7,38,-10,42,44,2,1
-0,80,0,30,5,43,49,6,1
-0,109,2,38,-4,68,70,2,1
--1,84,-4,46,0,38,38,0,1
-0,100,0,34,0,64,67,4,1
-0,93,0,28,8,55,64,8,1
-0,79,-1,44,5,33,35,2,1
-5,82,0,50,0,32,33,2,1
--2,111,1,62,-4,47,49,2,1
-1,97,0,34,1,60,64,4,1
-0,104,0,26,6,67,78,12,1
-1,93,0,44,5,50,50,0,1
-0,92,-7,30,-5,36,61,24,4
-0,80,0,36,-15,43,44,2,1
-0,76,0,34,9,39,43,4,1
-0,82,4,26,-5,45,56,10,1
-4,77,0,38,0,38,38,0,1
-3,77,-2,44,0,22,34,12,4
-2,77,1,10,8,22,67,46,4
-0,81,0,36,3,43,44,2,1
-0,76,0,-14,15,21,92,70,4
-0,79,-2,44,-6,33,35,2,1
-4,82,0,36,0,45,46,2,1
-1,79,6,54,0,26,25,0,1
--6,106,0,36,0,69,69,0,1
-4,79,0,-4,0,24,85,62,4
-1,102,0,46,0,55,55,0,1
--3,81,0,38,0,43,43,0,1
-0,83,-1,50,31,34,34,0,1
-0,76,6,44,6,32,32,0,1
-0,82,7,-12,0,26,95,68,4
-0,79,0,50,9,30,30,0,1
-0,86,0,52,28,36,35,0,1
-3,75,0,44,1,31,31,0,1
-0,77,-4,42,0,36,35,0,1
-1,91,0,-4,0,35,96,62,4
-0,85,3,44,-30,39,41,2,1
-1,86,-6,56,0,30,30,0,1
-0,107,0,28,-24,70,78,8,1
-0,77,0,16,22,22,62,40,4
--1,88,-2,50,0,38,39,0,1
-0,77,0,44,-21,22,34,12,4
-1,79,0,42,14,38,38,0,1
-0,77,-3,46,0,31,31,0,1
-3,87,5,56,0,31,30,0,1
-1,84,0,56,-25,25,27,2,1
-0,81,0,42,11,39,39,0,1
-3,97,0,56,0,39,40,0,1
-0,77,-5,36,7,40,41,0,1
-0,85,-1,-2,9,3,88,84,5
-0,88,1,46,12,43,42,0,1
-0,88,0,52,-6,35,36,0,1
--17,106,-2,34,-4,69,72,4,1
--2,86,0,42,0,43,44,2,1
--1,108,0,38,0,68,69,2,1
-0,79,-5,2,0,43,77,34,1
-0,106,0,36,0,68,69,2,1
-0,76,0,44,-1,30,32,2,1
-2,95,0,46,0,47,49,2,1
-0,75,0,42,-24,31,34,2,1
-0,96,-3,50,-3,40,47,6,4
-0,97,0,34,12,60,64,4,1
-3,81,0,44,22,37,37,0,1
--1,95,0,56,12,40,39,0,1
--1,82,0,36,-23,45,46,2,1
--2,101,0,50,0,52,52,0,1
-4,102,0,52,7,51,50,0,1
-2,93,0,46,1,48,47,0,1
-0,77,0,18,-7,41,59,18,1
--3,86,0,52,0,35,34,0,1
-0,81,-5,42,0,37,39,2,1
-0,77,0,-10,6,21,87,66,4
-0,77,0,6,-24,40,72,32,1
-0,76,0,46,14,30,30,0,1
-0,78,0,10,-5,23,68,46,4
-3,98,0,42,0,42,57,14,4
-0,71,-1,0,0,16,71,56,4
-0,84,0,42,-18,40,43,2,1
--5,80,-7,-2,0,25,83,58,4
-2,91,0,56,2,35,34,0,1
-1,88,0,6,0,5,83,78,5
-2,81,0,38,0,42,42,0,1
-0,81,0,42,-16,38,40,2,1
-0,79,0,2,-20,42,76,34,1
--2,80,0,52,-25,27,28,2,1
-0,79,-2,42,2,38,37,0,1
-0,104,-7,70,0,1,35,34,5
-0,76,0,42,4,34,34,0,1
--4,76,0,46,0,30,30,0,1
-0,78,0,24,-3,22,55,32,4
-0,79,-2,36,-4,42,43,2,1
-3,79,0,38,-22,38,40,2,1
-0,77,0,-28,22,22,106,84,4
-0,88,-4,52,0,35,36,0,1
-4,83,0,44,0,37,39,2,1
-0,104,0,18,0,67,86,18,1
-0,82,0,44,-5,37,38,2,1
-0,92,-2,18,6,55,74,20,1
--1,86,0,44,5,43,42,0,1
-0,80,0,54,-24,24,26,2,1
-0,86,0,46,-17,37,39,2,1
-1,90,0,42,0,47,49,2,1
-5,79,0,54,0,24,25,2,1
--1,86,0,44,-13,40,42,2,1
-0,85,-1,42,-8,42,44,2,1
-0,107,2,36,0,69,71,2,1
-0,76,0,44,23,33,32,0,1
-0,88,0,44,0,42,44,2,1
-0,85,-1,42,0,42,44,2,1
-0,84,0,44,2,40,40,0,1
-3,83,0,42,0,39,41,2,1
-0,106,0,38,0,66,67,2,1
-0,79,0,2,1,42,76,34,1
-5,81,0,56,0,23,24,2,1
-1,85,0,42,-2,42,44,2,1
-0,86,0,46,6,40,39,0,1
-0,81,-4,54,0,26,27,2,1
-1,86,0,46,29,40,39,0,1
--3,106,-5,30,-5,69,75,6,1
-0,79,0,46,19,34,33,0,1
-0,80,0,44,-15,35,36,2,1
-0,76,0,36,22,39,40,2,1
--110,106,0,34,-3,69,72,4,3
-0,76,0,30,3,40,45,6,1
--1,77,0,38,-6,36,38,2,1
--3,99,0,42,-14,56,58,2,1
-0,76,0,26,6,39,50,12,1
-0,88,1,38,0,48,50,2,1
--2,78,0,46,-23,29,32,2,1
-2,79,0,42,0,37,38,2,1
-0,108,-2,72,8,1,35,34,5
-0,83,0,42,28,42,41,0,1
-0,75,-2,28,-4,38,46,8,1
-0,76,0,38,-29,35,37,2,1
--4,108,0,60,4,49,49,0,1
-0,104,0,18,18,67,86,18,1
-0,83,7,10,0,47,73,26,1
-5,86,0,38,-3,46,48,2,1
-5,84,2,-20,0,4,105,102,5
-0,96,0,50,9,41,47,6,4
--2,76,0,46,6,30,30,0,1
--4,86,0,44,-1,41,42,2,1
--1,92,0,54,-30,35,37,2,1
-0,81,0,10,-9,45,71,26,1
--2,107,0,38,0,68,68,0,1
-0,79,0,2,-24,42,76,34,1
-2,86,0,54,-7,30,32,2,1
--1,107,0,36,0,70,71,0,1
-0,88,-1,6,-5,5,83,78,5
-0,88,5,46,0,42,42,0,1
--1,86,0,44,-3,41,42,2,1
-0,78,0,44,22,35,34,0,1
-1,94,0,38,20,56,55,0,1
-0,86,0,44,3,42,42,0,1
-3,81,2,-40,9,5,122,118,5
-0,78,0,20,7,41,57,16,1
-2,81,0,38,0,40,42,2,1
-0,76,-1,46,3,30,30,0,1
--1,81,0,38,0,43,43,0,1
-0,86,0,56,-8,28,30,2,1
-1,81,0,52,-6,28,30,2,1
-0,81,0,46,-7,33,35,2,1
-0,80,0,24,16,43,57,14,1
-1,76,0,42,-18,32,34,2,1
-0,95,0,8,0,58,87,30,1
-0,79,0,20,-13,24,59,34,4
-0,81,0,-14,16,25,97,72,4
-0,76,-1,38,-17,35,37,2,1
-0,79,0,6,-8,42,74,32,1
-0,95,-7,52,-14,40,44,4,4
-0,81,0,38,1,43,42,0,1
-0,86,0,-2,31,3,89,86,5
-0,86,1,42,-6,43,45,2,1
-0,86,-3,60,18,27,26,0,1
-0,77,4,44,0,32,34,2,1
--1,83,0,42,11,42,41,0,1
-0,95,0,10,30,58,84,26,1
-0,94,5,18,0,39,76,38,4
--1,81,0,46,-19,33,35,2,1
-0,85,-1,44,-21,39,41,2,1
-0,102,-3,72,11,1,30,30,5
-0,97,0,30,-6,60,66,6,1
-0,83,0,-46,-12,4,130,126,5
-0,92,0,34,-12,37,59,22,4
-0,81,0,50,31,32,32,0,1
-0,96,6,46,0,40,50,10,4
-0,82,0,38,25,45,43,0,1
-0,87,0,50,-7,36,38,2,1
-3,97,0,52,17,41,45,4,4
-0,84,0,56,6,29,28,0,1
-2,78,0,50,4,29,29,0,1
-1,83,-1,54,0,29,29,0,1
-0,86,-2,44,-5,41,42,2,1
-0,79,0,2,2,42,76,34,1
-1,84,0,56,-8,25,27,2,1
-0,78,0,24,-9,22,55,32,4
-5,93,3,46,0,37,46,10,4
-0,76,0,44,0,32,32,0,1
--2,78,0,38,0,38,39,2,1
--3,79,0,50,0,28,30,2,1
--28,106,5,36,0,69,69,0,1
--1,77,-4,24,-13,22,54,32,4
-0,78,0,24,-14,23,55,32,4
-1,81,1,54,0,28,27,0,1
-0,88,-2,50,6,40,39,0,1
-0,82,0,52,-6,29,30,2,1
-4,75,0,34,0,37,41,4,1
--58,88,0,6,-17,40,83,44,3
-0,94,0,34,5,57,61,4,1
-0,76,0,36,8,39,39,0,1
-0,109,5,50,-30,58,60,2,1
--1,80,0,-10,0,25,90,66,4
-1,79,0,44,2,36,35,0,1
-0,83,0,42,-4,39,41,2,1
-0,76,4,42,-28,32,35,2,1
-0,84,0,-14,17,3,100,96,5
-4,86,0,38,-1,46,48,2,1
--1,80,0,52,-13,27,28,2,1
-1,83,7,46,0,37,37,0,1
-1,86,-4,44,0,40,42,2,1
-0,95,0,44,-29,40,51,12,4
-0,76,0,38,26,38,37,0,1
-4,102,0,46,0,53,55,2,1
-0,75,0,30,-14,38,44,6,1
-0,81,-1,44,-9,36,37,2,1
-0,84,0,20,-1,47,63,16,1
-0,76,5,36,0,40,40,0,1
--22,77,0,20,0,40,56,16,1
-0,97,0,36,14,59,60,2,1
-0,77,0,34,-26,40,43,4,1
-0,77,0,50,26,29,28,0,1
--3,78,0,42,0,35,37,2,1
-0,92,0,56,31,36,35,0,1
-5,102,0,44,-3,57,58,2,1
-0,84,0,-32,20,4,117,114,5
-0,83,0,38,-1,42,44,2,1
-0,79,0,44,16,36,35,0,1
--1,79,0,44,5,35,35,0,1
-0,86,0,44,-28,40,42,2,1
--1,81,-5,46,-7,34,34,0,1
-1,83,0,44,15,39,39,0,1
-0,96,0,44,15,41,52,12,4
-0,86,0,44,-22,41,42,2,1
-0,77,0,50,20,28,28,0,1
-0,80,-2,-42,-8,4,124,120,5
-0,88,-5,38,-14,48,50,2,1
-0,79,0,42,0,38,37,0,1
-0,79,3,46,0,33,32,0,1
-0,82,0,54,11,29,28,0,1
--3,81,0,52,0,30,30,0,1
-0,95,0,42,-20,40,54,14,4
-0,96,0,38,-23,40,57,18,4
-0,100,0,36,-13,63,64,2,1
-0,81,0,42,20,41,40,0,1
--4,79,0,54,-6,23,24,2,1
-0,76,0,28,22,39,47,8,1
-0,85,0,-6,8,3,93,90,5
-0,84,0,60,18,25,24,0,1
-0,81,-7,42,0,39,40,0,1
-0,80,0,42,-12,37,39,2,1
-0,78,0,10,4,22,68,46,4
--2,80,0,52,-20,27,28,2,1
-0,95,0,44,0,40,51,12,4
-0,77,0,26,-4,41,52,10,1
--2,88,0,46,0,42,41,0,1
-0,81,-7,54,0,26,27,0,1
--19,78,0,10,0,42,68,26,1
-0,83,0,46,-6,34,36,2,1
-4,77,0,46,1,31,30,0,1
--4,86,-1,46,0,39,40,0,1
-0,95,0,42,-14,40,54,14,4
--5,88,0,44,0,44,44,0,1
-4,96,0,54,4,40,42,2,1
--1,102,0,70,-2,1,33,32,5
-0,78,7,34,-7,41,45,4,1
--2,76,0,42,-17,33,35,2,1
--1,104,0,24,2,67,80,14,1
--5,78,0,38,-16,37,39,2,1
-2,86,0,52,0,34,34,0,1
-0,86,-1,42,15,45,44,0,1
-0,79,6,2,6,42,76,34,1
-0,76,0,26,-13,39,50,10,1
--4,81,0,50,0,32,32,0,1
-5,83,0,54,0,29,29,0,1
--1,76,0,-18,-15,21,94,74,4
-4,79,0,50,0,29,30,0,1
-0,92,0,12,-4,54,79,24,1
-0,96,8,46,0,41,50,8,4
-0,77,1,36,-5,39,41,2,1
-0,88,2,46,-4,40,42,2,1
-2,97,0,34,-5,60,64,4,1
-0,80,0,16,-5,43,65,22,1
-0,80,0,56,11,24,23,0,1
-0,83,-1,50,26,34,34,0,1
-0,85,0,46,-1,39,39,0,1
--2,76,0,42,0,33,34,2,1
-0,78,0,12,-20,42,65,24,1
-0,85,0,44,2,41,41,0,1
-2,84,0,54,-6,29,30,2,1
-0,83,0,-46,-21,4,130,126,5
--1,80,2,-2,0,43,83,40,1
-0,83,0,0,6,46,83,36,1
-0,96,0,56,0,40,39,0,1
--1,79,0,50,-30,27,30,2,1
-0,79,3,38,-6,39,41,2,1
--1,78,0,44,-11,33,34,2,1
-5,107,0,50,0,56,58,2,1
-0,97,4,50,-10,41,48,6,4
--5,81,0,56,3,25,24,0,1
-0,76,0,30,-16,39,45,6,1
-0,83,0,38,-19,42,44,2,1
--5,81,0,46,-6,33,35,2,1
-0,75,0,38,0,35,36,0,1
-0,86,-6,42,0,43,44,2,1
--4,76,0,38,0,37,37,0,1
--1,84,0,46,21,38,37,0,1
--5,109,0,64,0,45,45,0,1
-0,77,0,12,19,21,64,42,4
--4,87,0,46,14,42,41,0,1
-1,90,0,24,21,52,66,14,1
-0,84,0,46,0,37,38,2,1
-0,96,0,38,5,58,57,0,1
--5,97,0,42,18,57,56,0,1
-0,79,5,42,0,36,37,2,1
-0,83,0,10,-6,46,72,26,1
-0,80,-4,8,0,43,72,28,1
-0,78,0,18,-1,42,60,18,1
-0,76,-2,46,-25,27,30,2,1
--1,85,-1,46,-1,38,39,0,1
-3,81,0,50,1,31,32,0,1
--2,98,0,44,-8,42,54,12,4
-0,86,0,44,-14,40,42,2,1
--1,77,0,38,9,39,38,0,1
-0,110,6,62,0,48,48,0,1
-0,87,1,38,-14,46,48,2,1
-0,78,-1,12,-2,41,65,24,1
-0,76,-6,34,7,39,42,2,1
-0,81,0,26,9,45,55,10,1
-0,81,0,-6,-11,25,88,64,4
-0,83,1,-24,9,27,108,82,4
-0,81,0,56,31,26,24,0,1
-0,83,0,-2,-7,47,86,40,1
-0,79,0,44,-18,34,35,2,1
-0,107,0,54,-14,51,53,2,1
-0,81,0,12,3,45,68,24,1
-3,97,0,46,11,41,51,10,4
-0,81,-4,26,-4,45,55,10,1
-0,90,-4,6,0,52,85,32,1
-0,77,-6,42,0,34,35,2,1
--2,84,-3,-42,-24,4,128,124,5
-2,84,0,-40,4,4,126,122,5
-0,86,0,56,-22,28,30,2,1
-0,79,0,2,24,42,76,34,1
-3,85,0,56,1,29,28,0,1
-0,92,2,-2,0,36,95,58,4
-0,95,0,24,25,58,72,14,1
--1,79,0,50,-8,28,30,2,1
-5,86,0,56,1,29,29,0,1
--4,75,0,42,0,32,34,2,1
-0,78,0,10,-11,41,68,26,1
--3,79,0,38,-12,38,40,2,1
-2,81,0,-40,20,4,122,118,5
-0,83,0,42,5,41,41,0,1
-0,86,0,54,20,33,32,0,1
-0,98,0,50,-8,42,49,6,4
-0,84,0,46,30,39,38,0,1
-0,77,-3,28,0,40,48,8,1
-2,85,0,46,-1,36,39,2,1
-0,86,-7,44,16,43,42,0,1
-1,82,1,50,0,31,33,2,1
-0,95,3,38,12,40,57,16,4
-0,77,0,-2,8,21,79,58,4
--1,77,0,44,8,33,33,0,1
-0,88,0,50,-20,36,39,2,1
-0,86,1,38,-30,45,48,2,1
-0,80,0,24,1,43,57,14,1
-0,86,0,56,-3,27,29,2,1
-0,95,0,20,22,57,74,16,1
-1,79,0,42,-11,35,37,2,1
--4,76,-1,46,-6,28,30,2,1
-0,76,0,38,-23,35,37,2,1
-0,86,1,44,9,42,42,0,1
-0,79,0,12,-17,23,66,42,4
-1,83,0,46,3,37,36,0,1
-0,86,0,-4,27,3,92,88,5
-0,83,0,50,21,34,34,0,1
-0,79,0,42,20,38,37,0,1
--1,90,6,46,0,42,43,0,1
-0,76,0,44,17,32,32,0,1
-0,96,-3,52,0,41,44,4,4
-0,77,0,36,-8,39,41,2,1
--2,81,0,50,-20,30,32,2,1
-0,76,0,28,20,40,48,8,1
-0,88,-1,44,-2,43,44,2,1
-0,96,0,30,-6,59,65,6,1
-0,99,0,50,11,43,49,6,4
-0,82,-7,-30,5,26,113,86,4
-2,96,0,52,0,40,44,4,4
-1,80,-1,36,0,43,44,2,1
-0,81,4,-40,0,5,122,118,5
-1,83,0,42,31,42,42,0,1
-0,77,0,-20,21,21,97,76,4
-1,81,0,54,-6,25,27,2,1
-2,81,0,-42,0,4,125,120,5
-1,81,0,52,-5,28,30,2,1
-0,81,0,-6,26,25,88,64,4
--5,77,0,38,-27,36,38,2,1
-0,77,0,44,-14,31,33,2,1
-0,104,0,34,3,67,71,4,1
-0,104,0,24,1,67,81,14,1
-2,106,5,38,0,66,67,2,1
-0,77,0,12,-1,22,65,42,4
-0,77,-7,46,0,29,31,2,1
-1,98,0,42,11,42,57,14,4
-0,81,0,36,-30,43,44,2,1
--1,78,0,42,6,37,37,0,1
--5,81,0,42,0,39,40,0,1
--1,82,0,38,0,43,43,0,1
-0,81,0,46,11,35,35,0,1
-0,77,0,24,-2,21,54,32,4
-0,86,-6,42,0,44,44,0,1
-0,98,0,52,-5,42,46,4,4
--2,81,0,38,0,43,42,0,1
-4,86,0,44,-4,40,42,2,1
--2,82,0,44,0,37,38,0,1
-0,103,0,54,28,50,49,0,1
--1,82,-3,36,-6,45,46,2,1
-1,85,0,46,5,39,39,0,1
-0,81,0,42,-20,38,40,2,1
-0,83,0,0,-30,46,83,36,1
-0,97,0,56,30,41,40,0,1
-0,106,1,46,-11,58,60,2,1
-0,88,0,50,25,40,39,0,1
--1,77,0,38,-13,36,38,2,1
-0,76,0,26,9,40,50,10,1
-0,78,0,12,5,42,65,24,1
-0,79,0,38,-30,38,40,2,1
--2,97,0,54,0,41,42,2,1
-0,97,0,52,4,41,45,4,4
-0,78,0,44,-8,33,34,2,1
--1,77,-3,50,-4,27,28,0,1
--2,109,0,44,0,66,66,0,1
-1,82,7,52,0,29,30,0,1
-0,81,0,46,23,35,34,0,1
--5,76,0,44,0,31,32,0,1
-0,97,0,52,-12,41,46,4,4
-0,82,-1,56,0,25,25,0,1
-0,90,0,46,6,44,44,0,1
-0,83,0,34,8,46,49,2,1
-0,77,0,44,-12,22,34,12,4
--1,98,3,46,-26,42,51,8,4
--1,84,0,56,4,28,27,0,1
-4,95,0,44,0,51,51,0,1
-0,95,0,20,6,57,74,16,1
-0,79,7,0,0,23,79,56,4
-0,88,-5,6,2,3,83,80,5
-5,86,0,54,-15,30,32,2,1
-0,79,0,50,21,30,30,0,1
-0,95,2,18,0,58,77,20,1
-0,108,-1,36,0,70,71,2,1
--5,86,0,46,0,39,40,0,1
-0,85,0,54,-1,30,31,2,1
-0,77,0,46,12,32,31,0,1
-5,91,2,56,0,32,34,2,1
-0,81,-1,-14,4,26,97,70,4
-0,93,0,50,-4,38,44,6,4
-3,82,0,42,0,39,41,2,1
-0,82,-1,38,-2,44,43,0,1
-5,84,1,-40,9,4,126,122,5
-1,78,0,44,9,34,34,0,1
-0,92,-1,46,0,36,46,10,4
-0,88,0,0,-18,3,88,86,5
--1,79,0,42,6,38,38,0,1
-2,78,2,44,0,22,34,12,4
-1,88,4,44,-16,42,44,2,1
-0,82,0,38,30,45,43,0,1
--4,95,0,54,0,40,41,2,1
-5,81,0,46,0,33,35,2,1
-0,79,-1,44,-2,33,35,2,1
-0,80,-8,34,0,43,46,4,1
-0,85,0,-10,-23,3,95,92,5
-0,94,0,10,-14,57,84,26,1
-0,97,0,52,31,41,45,4,4
-0,88,0,44,18,44,44,0,1
-0,81,0,-20,-3,25,102,76,4
-0,86,0,42,24,46,45,0,1
--1,76,0,38,-30,35,37,2,1
--2,87,0,56,0,29,30,2,1
--65,88,0,8,5,37,81,44,3
-0,86,-5,46,0,40,40,0,1
--2,106,0,46,0,58,60,2,1
-1,84,0,52,-13,31,32,2,1
-3,82,0,46,0,34,35,0,1
-0,79,0,18,26,43,61,18,1
-0,77,0,44,17,34,33,0,1
-0,79,-1,36,-6,42,43,2,1
-0,78,-1,2,-4,41,75,34,1
-0,92,0,26,-7,36,66,30,4
--3,83,0,50,0,32,33,2,1
--1,83,0,46,0,37,37,0,1
--2,84,0,44,-10,38,40,2,1
-0,78,0,42,-4,35,37,2,1
-0,80,-3,20,-12,24,59,36,4
--4,78,0,36,0,41,42,0,1
-0,109,6,46,0,62,62,0,1
--2,81,7,56,0,24,24,0,1
-1,83,0,50,14,34,33,0,1
-0,80,0,54,7,27,26,0,1
-0,97,0,28,-13,60,69,8,1
-0,97,0,44,4,41,53,12,4
--1,87,0,50,0,38,38,0,1
-2,83,0,-46,0,4,130,126,5
-0,77,-4,38,0,38,39,2,1
-0,77,0,26,-22,40,51,10,1
-0,95,0,52,-22,40,44,4,4
-0,87,-3,52,0,36,35,0,1
-0,90,0,44,-9,45,46,2,1
-0,97,0,46,7,41,51,10,4
-0,77,0,24,0,21,54,32,4
-0,74,-7,44,0,30,30,0,1
-0,83,0,46,26,37,36,0,1
-0,76,0,44,-18,30,32,2,1
-3,84,0,-38,-21,4,123,118,5
-2,83,0,46,11,37,36,0,1
-0,86,0,36,-22,48,50,2,1
-0,80,1,6,0,43,75,32,1
-0,76,0,36,-27,38,39,2,1
-0,80,-6,20,0,43,59,16,1
-0,86,0,50,0,35,37,2,1
-0,81,1,-10,-4,25,91,66,4
-0,93,0,46,-5,37,46,8,4
-0,96,-6,36,0,59,60,2,1
-0,81,0,52,-10,28,30,2,1
-0,86,-3,50,0,36,37,0,1
-0,76,-2,28,1,39,47,8,1
--4,81,-2,54,0,27,26,0,1
-0,92,0,56,28,36,35,0,1
-0,81,-3,42,-1,37,39,2,1
-0,87,0,46,-4,38,41,2,1
-0,78,0,52,11,27,26,0,1
-0,79,0,34,8,42,46,4,1
-4,89,1,42,0,46,48,2,1
-0,86,-6,42,0,44,45,0,1
-1,78,0,54,28,25,24,0,1
-0,81,-1,38,0,43,43,0,1
-0,78,0,42,13,37,37,0,1
-0,88,0,-2,0,3,90,88,5
-0,78,-3,28,0,41,50,8,1
-0,78,0,42,-25,34,37,2,1
-0,76,0,-14,-11,21,92,70,4
-0,82,-3,34,0,45,48,2,1
-0,86,5,-24,-6,4,112,108,5
--4,75,0,26,-3,38,49,10,1
-1,106,0,50,22,58,57,0,1
--1,84,0,50,-9,33,35,2,1
-0,77,0,18,31,22,59,38,4
--4,88,0,2,0,3,85,82,5
--1,83,0,46,4,37,37,0,1
-0,98,0,54,20,42,44,2,1
--1,81,0,-22,-2,26,105,78,4
--2,81,0,36,-3,44,44,0,1
-0,87,0,44,-23,41,43,2,1
-4,79,0,24,14,41,55,14,1
-0,83,0,44,15,39,39,0,1
-1,77,0,42,0,35,36,0,1
-0,77,0,42,-15,34,36,2,1
-1,90,3,38,0,49,51,2,1
-0,81,0,38,-22,40,42,2,1
-0,79,0,28,5,43,51,8,1
--1,82,-2,46,-4,36,35,0,1
-0,77,0,-14,-7,40,92,52,1
-0,79,0,16,6,42,64,22,1
-0,79,0,10,14,43,69,26,1
-0,87,-1,44,4,43,43,0,1
-0,86,-4,54,9,33,32,0,1
-0,81,0,54,-3,25,27,2,1
--3,81,0,-22,-6,26,105,78,4
-0,79,0,50,9,31,30,0,1
-0,100,0,42,29,59,59,0,1
-0,97,5,38,0,58,59,0,1
-0,91,1,54,0,37,37,0,1
-0,97,0,36,-10,41,60,20,4
-0,83,0,50,-16,32,34,2,1
-2,102,0,38,1,64,63,0,1
-0,97,0,34,1,60,64,4,1
-5,84,0,54,0,30,30,0,1
-0,84,0,-20,17,4,105,102,5
-1,87,5,60,0,28,28,0,1
-2,79,0,52,19,27,27,0,1
-0,92,0,24,-2,37,69,32,4
-1,83,0,-46,0,4,129,126,5
-0,78,0,54,-3,22,24,2,1
--4,76,-2,44,3,32,32,0,1
--1,82,-3,-2,19,45,85,40,1
-0,77,0,10,-14,21,66,46,4
-0,85,-1,46,-2,39,39,0,1
-0,81,0,42,27,41,40,0,1
-0,79,0,34,1,43,46,2,1
-0,77,0,24,22,40,54,14,1
-0,84,0,24,-3,47,61,14,1
--3,81,0,42,5,40,40,0,1
-0,97,1,18,-12,60,79,18,1
--4,80,3,44,13,36,36,0,1
-1,82,0,54,1,29,28,0,1
-0,76,3,34,20,39,43,4,1
--3,88,0,0,1,4,88,84,5
-0,97,0,52,-22,40,45,4,4
-0,76,-6,-20,0,21,97,76,4
-0,78,0,8,11,23,70,48,4
-0,78,4,50,0,28,29,0,1
-0,76,8,38,1,39,37,0,1
--1,81,0,-10,-1,26,92,66,4
-2,84,0,44,0,39,40,0,1
-0,85,0,50,0,36,36,0,1
-2,79,0,44,20,35,35,0,1
-0,89,-2,42,-3,46,48,2,1
-0,82,0,-42,-12,26,126,100,4
-5,86,0,38,0,47,48,0,1
-0,108,-2,70,0,1,38,36,5
--5,85,-1,42,0,43,44,0,1
--4,81,0,52,-4,28,29,0,1
-0,84,8,56,0,27,27,0,1
-0,77,0,16,20,22,62,40,4
-0,81,0,54,12,28,26,0,1
-0,102,0,52,3,51,50,0,1
-1,93,0,42,0,51,52,0,1
-1,81,0,46,19,35,35,0,1
-136,105,0,36,-1,-18,69,86,5
-0,81,0,44,25,38,37,0,1
-0,81,-1,42,-1,40,40,0,1
-2,90,0,44,-2,44,46,2,1
-0,92,0,26,-6,36,66,30,4
-0,112,3,62,0,49,50,0,1
-0,83,-1,46,23,37,36,0,1
-0,80,0,24,-2,43,57,14,1
-0,77,0,26,9,21,51,30,4
--2,77,0,42,2,36,35,0,1
-0,93,0,2,-10,38,91,52,4
--4,77,0,38,0,40,39,0,1
-0,88,0,46,25,42,41,0,1
--1,85,-6,44,-9,40,41,2,1
-0,76,-1,20,0,40,55,16,1
-0,92,0,34,-5,37,59,22,4
--5,106,0,44,0,62,62,0,1
-3,74,-10,-4,-21,19,79,60,4
-3,79,0,42,13,38,38,0,1
-0,104,1,26,13,67,78,12,1
-1,96,0,52,0,41,44,4,4
-0,79,6,20,-21,24,59,34,4
-1,82,2,50,0,31,33,2,1
--2,97,0,46,0,42,51,8,4
-0,96,-7,50,0,41,47,6,4
-0,84,0,-14,-10,3,99,96,5
--1,77,0,26,-24,22,52,30,4
-0,79,0,38,-12,38,40,2,1
-1,82,-4,52,0,29,30,0,1
-0,87,0,-4,0,3,92,88,5
-16,77,0,28,0,38,48,10,1
-0,104,0,20,-29,67,83,16,1
--1,81,0,42,12,40,39,0,1
-3,85,0,44,12,41,41,0,1
--1,77,0,16,-1,22,62,40,4
-1,79,1,42,0,37,38,0,1
-0,75,0,34,7,38,41,2,1
--1,77,0,46,5,31,30,0,1
-0,79,0,6,-9,42,74,32,1
-0,77,8,38,0,36,38,2,1
-0,74,0,34,23,37,41,4,1
--1,78,-3,26,-6,22,52,30,4
--3,81,2,36,0,44,44,0,1
-0,82,0,42,9,41,41,0,1
-0,78,0,24,4,42,55,14,1
-2,76,0,42,6,34,34,0,1
-3,77,0,42,0,35,36,2,1
-0,87,6,46,0,40,41,0,1
-0,83,2,-42,0,5,127,122,5
-0,97,0,50,-23,41,48,6,4
--19,79,0,0,0,25,79,54,4
--21,76,0,20,0,39,55,16,1
-2,92,0,26,9,54,66,12,1
-0,86,-3,36,0,49,50,0,1
-0,81,-1,36,-1,44,44,0,1
-4,79,0,42,0,38,38,0,1
-0,95,0,46,-1,47,49,2,1
-1,84,-7,56,0,28,28,0,1
-8,76,5,-42,-8,4,120,116,5
-0,113,1,64,21,49,48,0,1
-2,79,1,-42,0,4,123,118,5
-0,77,0,42,13,36,35,0,1
-0,79,1,42,29,39,38,0,1
-0,85,0,50,-1,34,36,2,1
-0,78,0,-6,-10,42,86,44,1
--1,77,3,42,0,35,35,0,1
--4,77,0,50,0,27,28,0,1
-0,77,0,18,23,40,59,18,1
-0,76,0,30,-3,39,45,6,1
-0,76,0,18,-6,40,58,18,1
-0,83,0,30,10,46,52,6,1
-0,79,-2,10,0,42,69,26,1
-0,86,0,56,-2,27,29,2,1
-7,77,-2,-22,2,41,101,60,1
--5,83,0,44,0,38,39,0,1
-0,78,-1,52,27,27,26,0,1
-1,89,1,42,0,47,48,0,1
-0,110,0,38,0,72,71,0,1
-0,75,0,38,0,37,36,0,1
-0,93,0,52,-4,38,42,4,4
-0,109,0,36,0,71,73,2,1
-0,77,0,46,-25,28,30,2,1
-0,91,2,50,0,41,42,0,1
--1,95,1,46,0,48,49,0,1
-0,96,-6,50,0,41,47,6,4
--1,76,0,36,-8,38,39,2,1
--2,79,-1,38,0,41,40,0,1
-0,106,-1,42,-25,62,64,2,1
-0,77,0,36,-7,22,41,20,4
-0,85,0,46,19,39,39,0,1
-3,86,-1,46,0,40,40,0,1
-0,83,-1,34,6,46,50,4,1
-0,86,0,44,-6,41,42,2,1
-0,79,0,38,6,41,40,0,1
--1,87,0,52,3,36,35,0,1
-0,86,0,42,0,45,45,0,1
-0,107,0,56,10,51,50,0,1
-0,76,0,26,-11,40,50,10,1
-0,107,-3,70,0,1,37,36,5
-0,87,0,50,0,37,38,0,1
-0,82,-6,38,-4,41,43,2,1
-0,88,4,46,0,42,42,0,1
-0,106,0,38,16,68,67,0,1
--1,79,0,50,21,31,30,0,1
--1,76,0,46,11,31,30,0,1
-0,104,0,26,-30,67,78,12,1
--2,75,0,38,0,36,36,0,1
-0,77,6,28,17,41,49,8,1
--1,97,0,46,-3,41,50,10,4
-0,77,0,-4,4,41,83,42,1
-0,77,0,12,12,40,64,24,1
-3,80,-4,38,0,41,41,0,1
-0,80,0,34,-6,43,46,2,1
-1,79,0,38,-10,38,40,2,1
-0,81,-3,36,-11,43,44,2,1
-0,95,-2,54,-4,40,41,2,1
-0,81,0,-6,-3,25,89,64,4
-4,76,0,44,0,32,32,0,1
-0,78,0,-4,-9,41,83,42,1
-0,79,0,12,-13,23,66,42,4
-5,79,0,52,-8,26,27,2,1
-1,79,0,34,18,41,45,4,1
--1,86,-3,46,-5,39,40,0,1
-1,81,0,44,0,37,37,0,1
-0,77,0,0,-21,40,77,36,1
-1,78,0,38,19,40,39,0,1
--1,83,0,50,2,34,33,0,1
-0,98,0,52,28,42,46,4,4
-0,79,0,44,-19,33,35,2,1
--1,75,0,42,15,34,34,0,1
-0,81,0,42,18,40,40,0,1
-0,95,3,38,22,40,57,16,4
-1,78,-5,52,12,27,26,0,1
-1,108,0,44,0,63,64,2,1
-3,81,0,38,6,43,42,0,1
--2,88,0,50,4,39,39,0,1
-4,76,0,38,11,38,37,0,1
-0,78,6,38,-8,37,39,2,1
-3,82,0,36,0,45,46,2,1
-0,86,5,44,-2,40,42,2,1
-1,83,0,38,17,45,44,0,1
-0,81,-6,38,0,40,42,2,1
-0,78,4,38,0,38,39,2,1
-1,81,0,-2,0,44,83,40,1
-0,77,0,6,-14,22,72,50,4
-0,92,0,24,1,55,69,14,1
-0,86,-7,44,-3,40,42,2,1
-0,99,3,28,0,62,71,8,1
-0,90,0,24,-6,52,66,14,1
-0,93,0,2,-8,38,91,52,4
-0,78,-1,34,-2,41,45,4,1
--1,91,0,56,0,33,34,0,1
-1,86,6,50,0,37,37,0,1
-11,78,12,-42,-2,4,122,118,5
-0,77,0,46,-2,29,31,2,1
--5,81,0,52,0,29,30,0,1
-0,79,-4,42,5,38,37,0,1
--1,79,0,46,12,33,32,0,1
-0,97,0,42,15,56,55,0,1
--4,83,0,46,0,37,36,0,1
-0,77,0,-14,14,21,92,70,4
-1,97,0,30,-16,60,66,6,1
-0,84,3,30,12,47,53,6,1
-0,78,-6,26,-6,22,52,30,4
-5,81,0,38,0,42,42,0,1
--4,76,0,46,0,28,30,2,1
-0,95,-4,54,7,40,41,2,1
-0,76,-1,34,13,39,42,2,1
-2,88,0,42,0,45,46,2,1
-0,88,0,44,-29,43,44,2,1
--1,85,1,44,0,40,41,2,1
--1,78,-3,26,-5,22,52,30,4
--5,87,0,46,-20,38,41,2,1
-1,80,0,38,11,42,41,0,1
-0,86,0,38,-13,46,48,2,1
-0,99,0,30,4,61,68,6,1
-0,82,-1,-2,6,45,85,40,1
-4,102,0,38,0,62,63,0,1
-0,81,-1,36,-5,43,44,2,1
-1,86,0,46,-18,37,39,2,1
-0,78,0,26,8,23,52,30,4
-0,83,-3,-4,-12,46,88,42,1
--4,75,-1,20,0,38,54,16,1
-0,85,1,44,-10,40,41,2,1
-0,105,0,36,4,68,69,2,1
-0,78,-1,38,-2,39,39,0,1
-4,84,1,-40,7,4,126,122,5
-1,83,0,50,0,33,34,0,1
-1,77,0,52,0,25,25,0,1
-2,79,0,56,0,23,23,0,1
-0,95,0,50,0,40,46,6,4
-0,97,0,46,-1,42,51,8,4
-0,82,0,46,18,37,35,0,1
-0,87,-2,46,-4,39,41,2,1
-0,79,0,42,-1,35,37,2,1
-0,92,0,8,-4,37,84,48,4
-0,88,6,46,0,41,41,0,1
-0,92,4,26,0,37,66,30,4
-0,77,0,8,7,22,70,48,4
-0,79,0,44,-15,34,35,2,1
-0,81,-3,46,8,35,34,0,1
-0,83,0,44,10,40,39,0,1
-0,77,0,-24,-29,40,103,62,1
-0,77,0,46,-12,28,30,2,1
-0,104,7,18,0,67,86,20,1
-0,76,-3,30,13,39,45,6,1
--1,85,2,46,9,40,39,0,1
-0,93,0,18,31,55,75,20,1
-0,82,0,46,22,36,35,0,1
-0,80,4,-4,0,24,85,62,4
-0,83,2,54,0,28,29,2,1
-0,81,-3,50,-9,30,32,2,1
-0,76,-2,36,0,39,39,0,1
--4,88,-3,56,0,31,31,0,1
-2,79,0,56,2,23,23,0,1
-0,77,-2,-4,16,21,82,60,4
--2,83,0,50,7,34,34,0,1
-0,82,1,-2,9,45,85,40,1
--2,83,0,54,0,28,28,0,1
--2,76,0,42,16,35,35,0,1
-2,76,-1,44,0,31,32,0,1
-0,85,-1,38,0,46,46,0,1
--2,81,0,42,0,39,40,2,1
-0,85,0,46,-13,37,39,2,1
-0,83,3,50,-1,32,33,2,1
-0,102,0,44,12,59,58,0,1
-1,88,0,0,0,3,88,86,5
-0,104,0,26,2,67,78,12,1
--1,86,0,42,0,44,45,2,1
--5,81,4,38,0,42,43,0,1
-5,81,0,44,1,37,37,0,1
--1,81,0,50,8,33,32,0,1
-0,76,2,20,0,40,55,16,1
-0,96,0,38,-2,40,57,18,4
--4,77,4,46,0,31,31,0,1
--2,97,-2,46,-4,42,51,8,4
-0,84,0,54,-10,28,30,2,1
--3,109,0,44,0,65,66,0,1
-0,83,0,6,-8,47,78,32,1
-0,83,-5,46,17,37,37,0,1
-0,80,3,36,0,43,44,0,1
-0,80,0,18,12,43,62,18,1
-0,81,-1,38,0,42,43,0,1
-0,82,1,44,-2,37,38,2,1
-0,77,0,-28,-9,21,105,84,4
-0,77,0,-4,-12,21,82,60,4
-0,83,0,-38,1,4,122,118,5
-0,76,0,38,14,39,37,0,1
-0,95,0,52,-19,40,44,4,4
-0,79,4,36,0,42,43,2,1
-0,88,-3,50,11,40,39,0,1
-0,109,-3,60,0,49,49,0,1
--2,81,-7,54,0,27,27,0,1
-0,86,1,-6,0,4,94,90,5
--1,80,0,54,-2,25,26,2,1
-0,103,0,30,-4,66,72,6,1
-0,87,-7,42,0,45,46,2,1
-4,88,0,50,10,39,39,0,1
--1,79,-4,18,0,42,61,18,1
-2,80,0,38,-28,39,41,2,1
-2,84,2,54,0,28,30,2,1
-4,87,2,46,0,40,41,0,1
-0,81,0,-6,6,25,88,64,4
-0,79,0,54,-8,23,24,2,1
-0,95,0,44,-23,40,51,12,4
--2,85,-7,46,18,39,39,0,1
-1,102,0,38,0,61,63,2,1
-0,79,0,12,-5,42,66,24,1
-1,86,0,44,6,43,42,0,1
-0,107,0,36,-27,69,71,2,1
-5,75,0,44,0,30,31,0,1
-0,75,0,34,26,38,41,2,1
--1,86,0,38,0,45,47,2,1
--8,90,1,6,0,52,85,34,1
-3,82,0,52,0,30,30,0,1
-0,96,0,50,0,40,47,6,4
-1,80,0,54,-30,24,26,2,1
-0,76,5,44,3,32,32,0,1
-0,86,0,52,-8,33,34,2,1
--3,77,0,46,10,32,31,0,1
-0,78,-1,20,-3,42,57,16,1
-1,81,0,36,0,44,45,0,1
-0,77,0,6,-1,40,72,32,1
-0,78,0,18,21,23,60,38,4
--2,89,0,46,-23,40,42,2,1
-0,86,0,42,13,45,44,0,1
-4,77,0,36,0,40,41,2,1
-1,77,0,38,-4,36,38,2,1
--3,80,0,50,-7,29,31,2,1
-0,92,8,12,0,54,79,24,1
--1,81,0,44,-19,36,37,2,1
-0,79,0,8,-25,43,72,28,1
-5,75,0,42,1,33,34,0,1
-0,86,0,42,-22,42,44,2,1
-0,84,8,-42,-21,4,128,124,5
--4,80,0,46,0,34,34,0,1
--2,77,0,36,-16,39,41,2,1
-1,77,0,44,0,33,34,0,1
-0,83,2,42,22,42,41,0,1
-0,75,-1,28,21,38,46,8,1
--6,81,0,44,0,36,37,2,1
--4,90,0,50,0,39,41,2,1
-0,79,-2,6,-5,23,74,50,4
-0,95,-5,46,0,40,49,8,4
-0,78,0,44,0,34,34,0,1
-0,88,1,46,-2,40,42,2,1
-0,89,1,38,-9,48,50,2,1
-0,90,0,42,0,48,49,2,1
-0,96,0,56,31,40,39,0,1
-0,79,0,36,21,42,43,2,1
-0,97,0,46,0,41,51,10,4
-4,79,0,24,2,41,55,14,1
-0,83,0,44,-20,37,39,2,1
-0,88,-5,6,0,3,83,80,5
-0,105,0,18,0,68,87,18,1
-0,106,0,34,-25,69,72,4,1
--1,81,0,50,-4,30,32,2,1
-0,88,6,38,0,48,50,2,1
-0,107,1,44,0,62,63,2,1
-0,78,-3,-6,0,41,86,44,1
--4,86,0,56,24,31,30,0,1
-4,83,-1,38,-2,44,44,0,1
--1,86,2,44,0,42,42,0,1
-0,75,-1,26,-9,38,49,10,1
-0,96,0,50,-17,41,47,6,4
-0,81,0,54,-18,26,27,2,1
-0,92,-6,46,0,36,45,8,4
--4,86,-4,-40,0,4,127,122,5
-0,84,0,42,-5,41,43,2,1
-0,79,0,20,-16,42,58,16,1
-22,77,0,28,0,35,48,14,2
-0,75,0,42,0,32,34,2,1
-0,81,4,46,1,35,35,0,1
-0,78,0,44,7,22,34,12,4
-0,79,0,30,-24,43,48,6,1
-0,88,-5,44,13,44,44,0,1
--4,106,0,70,0,1,36,36,5
-4,93,1,34,0,54,60,6,1
-4,80,0,50,0,30,31,0,1
-0,89,6,2,0,4,86,82,5
-1,85,0,42,-4,42,44,2,1
-1,79,0,20,15,41,58,16,1
-8,77,0,-22,0,23,101,78,4
-0,79,-5,12,26,42,66,24,1
-0,78,-2,50,-8,27,29,2,1
-0,88,2,46,6,41,41,0,1
-0,95,0,56,19,40,39,0,1
-0,79,0,12,-1,23,66,42,4
-0,84,1,46,0,36,37,0,1
-0,83,0,50,-5,32,34,2,1
-0,82,6,46,1,36,35,0,1
-0,84,0,-18,4,4,103,98,5
-0,78,-2,0,0,42,78,36,1
-1,107,-1,50,0,56,58,2,1
-3,79,0,54,-10,24,25,2,1
--1,76,4,38,0,37,37,0,1
-0,75,0,36,-21,37,39,2,1
-0,84,0,-24,0,4,110,106,5
--1,83,0,44,20,39,39,0,1
--1,77,0,38,-1,37,38,0,1
-0,92,0,54,-1,36,38,2,1
--1,79,-1,50,0,30,30,0,1
-4,86,0,56,18,31,30,0,1
--1,84,0,-12,17,4,97,94,5
--2,79,0,54,14,26,24,0,1
-0,78,0,26,10,23,52,30,4
-31,77,0,-22,0,28,101,72,2
-0,77,0,38,27,22,39,16,4
-1,87,0,46,-8,38,41,2,1
--1,80,0,50,11,31,31,0,1
--3,76,-1,42,0,35,35,0,1
-1,81,0,46,8,35,34,0,1
-0,83,0,44,-25,37,39,2,1
-0,78,0,42,-11,35,37,2,1
-0,96,-6,50,-9,40,47,6,4
-0,76,0,38,26,39,37,0,1
--5,86,-4,50,-5,37,37,0,1
--3,84,0,44,22,41,41,0,1
-0,86,0,52,13,36,35,0,1
-0,89,0,42,-18,45,48,2,1
--3,109,0,52,0,57,57,0,1
-0,86,0,-4,-3,4,92,88,5
-0,90,-3,24,-7,52,66,14,1
-0,76,0,-12,6,20,89,68,4
-3,71,-2,0,0,16,71,56,4
--4,86,0,46,5,40,39,0,1
-4,95,0,46,0,40,49,10,4
-2,78,0,52,11,27,26,0,1
-0,81,0,24,9,44,57,14,1
-0,85,1,46,0,38,39,0,1
-0,83,0,46,11,37,36,0,1
-0,85,0,46,30,40,39,0,1
-0,95,0,46,18,40,49,10,4
-0,87,0,50,9,38,38,0,1
-0,79,0,0,-6,42,79,36,1
--2,91,0,56,0,33,34,0,1
-0,108,-1,30,0,71,77,6,1
-0,76,-1,16,4,39,61,22,1
-0,79,0,44,20,35,35,0,1
-0,92,0,16,29,54,76,22,1
-1,85,0,54,-21,29,31,2,1
-0,81,1,56,0,24,24,0,1
-0,82,-6,38,-6,41,43,2,1
--3,81,0,42,0,39,40,2,1
-0,79,0,46,24,33,32,0,1
-4,86,0,44,-7,40,42,2,1
-0,87,0,44,-1,42,43,2,1
-5,88,0,52,-3,35,37,2,1
-0,105,-6,24,0,68,82,14,1
-0,77,0,2,4,22,75,52,4
-0,95,0,50,18,40,46,6,4
-0,96,0,38,-7,41,57,16,4
--4,75,0,42,11,34,34,0,1
-2,87,-1,46,0,40,41,0,1
-0,104,0,26,5,67,78,12,1
-0,111,0,62,-1,47,49,2,1
-0,89,0,44,18,45,45,0,1
--1,86,0,54,-5,31,32,2,1
-0,87,0,54,5,34,33,0,1
-0,88,0,52,24,37,36,0,1
--51,106,-1,30,0,69,75,6,3
-1,81,0,38,-6,40,42,2,1
-0,77,-4,-10,0,40,87,46,1
--4,81,0,44,0,36,37,2,1
-0,93,0,28,-4,56,65,8,1
-0,83,0,30,-20,47,52,6,1
-0,78,-2,8,-7,23,70,48,4
-0,81,-1,44,1,38,37,0,1
-0,96,6,52,0,40,44,4,4
-0,84,0,24,-1,47,61,14,1
-0,85,0,44,143,41,41,0,1
-0,86,-7,42,0,44,45,0,1
-0,88,0,46,-1,39,41,2,1
-0,88,0,46,16,42,41,0,1
--1,77,0,50,12,28,28,0,1
-0,79,0,44,-25,33,35,2,1
-0,77,0,28,-1,40,48,8,1
-1,86,0,56,0,29,29,0,1
-0,78,0,0,-7,42,78,36,1
-0,86,0,56,18,30,29,0,1
-0,82,7,50,0,32,33,2,1
-0,80,0,20,18,43,59,16,1
--1,78,-3,2,-10,41,75,34,1
--2,84,0,56,0,25,27,2,1
--1,83,-5,46,-7,35,37,2,1
-0,83,0,46,13,37,36,0,1
-1,97,0,38,-30,56,59,2,1
-0,84,0,-14,5,3,100,96,5
-0,77,0,46,23,32,31,0,1
-0,86,0,50,-27,35,37,2,1
-0,79,3,54,0,26,25,0,1
-0,83,7,42,0,41,42,2,1
-1,86,0,52,2,35,35,0,1
-2,75,0,42,0,32,34,2,1
-0,81,-5,54,0,26,27,2,1
-0,104,0,26,-14,67,78,12,1
-0,77,-1,-20,5,41,98,58,1
-0,95,0,54,-4,40,41,2,1
-0,79,0,46,29,33,32,0,1
-0,77,0,-2,-6,21,79,58,4
--5,84,0,44,0,39,40,0,1
--5,81,0,38,0,41,43,2,1
-0,92,0,-2,13,36,94,58,4
-0,86,0,44,22,43,42,0,1
--1,79,0,44,4,35,35,0,1
-0,82,0,50,9,33,33,0,1
-0,81,0,50,25,33,32,0,1
-5,87,-1,50,0,37,38,0,1
--1,79,-1,38,0,39,40,0,1
-3,97,0,54,8,40,42,2,1
-0,86,-1,54,-2,32,32,0,1
--2,83,0,52,-27,30,32,2,1
-0,78,0,8,-14,22,70,48,4
-0,78,0,54,22,25,24,0,1
-0,95,4,46,-30,46,49,2,1
-5,106,0,70,0,1,36,36,5
-3,108,1,38,-19,66,69,2,1
--1,85,-1,46,0,39,39,0,1
--2,86,0,42,0,45,45,0,1
--5,85,0,56,0,28,28,0,1
-1,76,0,46,31,30,29,0,1
-0,79,0,36,2,42,43,2,1
-1,78,0,50,9,29,29,0,1
-0,81,2,44,0,36,37,2,1
-0,78,0,44,12,22,34,12,4
-0,102,1,70,-15,1,33,32,5
-4,79,0,46,0,33,32,0,1
-5,100,0,28,0,63,72,8,1
-2,86,0,46,7,41,40,0,1
--3,81,0,56,0,24,24,0,1
-0,83,0,46,5,37,36,0,1
--1,81,0,38,-18,41,43,2,1
-0,79,0,52,5,27,27,0,1
-0,82,0,42,-24,38,41,2,1
-1,76,0,38,2,37,37,0,1
-0,95,0,44,20,40,51,12,4
-0,89,0,44,19,46,45,0,1
-0,106,0,46,-25,57,59,2,1
--1,79,0,54,19,26,24,0,1
-0,77,0,28,18,40,48,8,1
--1,77,0,44,2,33,33,0,1
-0,79,2,38,-9,38,40,2,1
-0,76,0,-10,0,20,86,66,4
--13,77,-13,-40,2,4,119,114,5
-1,78,8,38,0,38,39,2,1
-0,80,0,12,8,43,67,24,1
-1,76,0,38,-4,35,37,2,1
-0,79,-5,38,0,40,40,0,1
-0,86,-1,42,24,45,44,0,1
-0,87,0,44,29,44,43,0,1
-0,86,0,56,7,31,30,0,1
-0,81,0,38,-6,40,42,2,1
-0,103,0,34,0,66,69,4,1
-0,81,-1,38,0,43,42,0,1
--3,81,0,36,-14,43,44,2,1
-0,84,6,42,-15,41,43,2,1
-0,102,0,46,2,57,56,0,1
-0,77,10,-4,0,21,83,62,4
-0,80,0,-2,-6,24,83,58,4
-0,106,4,24,-4,68,82,14,1
-0,77,0,12,0,40,64,24,1
-0,86,0,-2,14,3,88,84,5
-0,77,0,-18,-21,21,95,74,4
--3,81,0,-22,-7,26,105,78,4
-1,87,0,52,-1,34,35,2,1
-0,76,0,42,19,35,35,0,1
-0,83,0,-30,-25,27,114,86,4
-0,79,0,50,31,30,30,0,1
-0,75,0,42,-10,32,34,2,1
-0,92,6,-2,0,36,95,58,4
-1,88,0,52,-1,35,36,0,1
-0,87,-5,52,-9,34,35,2,1
-3,76,0,38,11,38,37,0,1
-0,77,0,2,-21,40,75,34,1
-3,79,0,42,0,37,38,2,1
-0,82,0,-40,-19,26,123,96,4
--28,107,0,64,-2,22,42,20,3
-4,78,0,46,9,32,32,0,1
-0,79,0,42,-26,35,37,2,1
-0,82,4,34,0,45,48,2,1
-0,79,0,24,-18,43,56,14,1
-0,79,0,44,22,35,35,0,1
-0,79,2,46,22,34,33,0,1
-0,95,0,52,9,40,44,4,4
-0,77,0,42,12,37,36,0,1
-0,104,0,16,-8,67,88,22,1
-3,88,0,46,0,39,41,2,1
-0,80,-7,36,0,43,44,0,1
-0,97,4,38,0,41,58,16,4
-0,92,1,26,9,37,66,30,4
-0,88,-4,50,6,40,39,0,1
-0,106,-1,50,17,57,57,0,1
-0,79,0,54,27,26,24,0,1
-0,97,-7,34,16,60,64,4,1
-0,110,-7,60,0,50,51,2,1
--1,111,0,62,0,50,49,0,1
-5,95,0,50,14,40,46,6,4
-0,90,0,44,23,47,46,0,1
-0,98,0,28,-1,61,70,8,1
-0,96,0,44,-14,41,52,12,4
-0,76,2,44,10,32,32,0,1
-0,77,0,30,-9,22,46,24,4
--3,83,0,42,-1,40,41,2,1
-0,97,0,18,-18,60,79,18,1
--4,82,0,52,0,29,30,0,1
-0,82,0,42,-10,38,41,2,1
-0,92,0,28,-31,36,63,28,4
-0,80,-4,42,0,38,39,0,1
-0,86,2,46,0,37,39,2,1
-0,81,0,52,21,30,30,0,1
-0,88,0,50,-15,37,39,2,1
-0,105,-2,30,2,68,74,6,1
-0,78,0,16,2,41,63,22,1
-0,81,-1,50,0,31,32,2,1
-2,86,0,54,21,33,32,0,1
-0,96,4,46,0,40,50,10,4
-4,83,0,50,0,33,34,0,1
-0,76,-1,34,11,39,42,2,1
-0,76,-5,28,9,39,47,8,1
--5,77,0,38,-26,36,38,2,1
-0,78,0,-2,-1,42,81,40,1
-5,80,0,56,0,22,23,2,1
-0,95,0,28,5,58,67,8,1
-0,77,-4,24,-3,22,54,32,4
-0,80,-3,26,0,43,54,10,1
--1,76,-5,30,-8,40,45,6,1
-5,81,0,44,26,37,37,0,1
-0,85,7,46,0,37,39,2,1
-2,79,0,42,9,38,38,0,1
--2,105,-1,72,5,1,33,32,5
-0,90,0,8,6,52,82,30,1
-2,82,-3,34,0,45,48,4,1
-1,83,0,50,0,32,33,2,1
-0,79,0,50,15,30,30,0,1
-4,88,0,6,0,3,83,80,5
-1,81,0,52,0,29,29,0,1
-0,78,0,18,-11,42,60,18,1
-2,86,0,56,0,28,30,2,1
-1,91,0,54,-3,35,37,2,1
-0,82,0,54,0,27,28,0,1
-0,104,0,38,0,67,66,0,1
--5,77,1,50,0,28,28,0,1
-1,76,0,46,4,30,29,0,1
-0,80,0,34,-26,43,46,2,1
-1,76,0,44,-12,30,32,2,1
-0,77,2,24,-1,40,54,14,1
-0,81,0,26,-1,45,55,10,1
--2,88,2,56,0,31,31,0,1
-0,81,-1,24,-7,44,57,14,1
-0,83,0,-38,31,4,122,118,5
--1,82,0,-40,0,4,123,120,5
--2,76,-5,42,0,35,35,0,1
-0,79,0,18,-27,43,61,18,1
--1,83,0,54,0,29,29,0,1
--1,108,0,38,-11,67,69,2,1
-0,92,0,20,0,55,71,16,1
-0,86,0,46,-2,38,40,2,1
-0,84,-3,42,-3,43,43,0,1
-0,89,2,38,-12,48,50,2,1
-0,77,0,6,-2,22,72,50,4
--2,99,0,38,0,43,60,16,4
-0,83,0,28,9,46,54,8,1
--1,87,0,54,1,34,33,0,1
-0,86,0,54,-14,31,32,2,1
--37,106,-3,34,-6,69,72,4,3
--5,81,0,54,-2,25,26,2,1
-0,77,0,-22,17,21,100,78,4
-0,80,0,10,11,43,70,26,1
-0,79,0,2,-17,42,76,34,1
-0,84,0,44,16,41,41,0,1
-0,93,0,16,6,38,78,40,4
-4,86,0,-2,0,3,89,86,5
-0,88,-1,54,0,34,34,0,1
--5,79,4,36,0,42,43,0,1
-0,106,0,28,15,68,77,8,1
-0,81,0,-22,-27,26,105,78,4
-1,83,-3,42,0,41,41,0,1
--3,108,1,42,0,67,67,0,1
-0,97,-7,28,0,60,69,8,1
-0,76,0,26,-7,40,50,10,1
-0,78,0,6,21,23,73,50,4
-0,78,0,36,-6,41,42,2,1
-0,76,0,24,-12,39,52,14,1
-0,77,0,2,28,40,74,34,1
-1,87,0,56,0,30,30,0,1
-5,88,0,54,0,33,33,0,1
-0,86,7,44,17,43,42,0,1
-2,104,0,54,3,50,49,0,1
-0,81,-1,-10,29,25,92,66,4
-0,95,-5,26,25,58,70,12,1
--1,83,0,38,-11,42,44,2,1
-0,90,8,46,-3,42,44,2,1
-0,81,0,24,22,44,58,14,1
--1,81,-3,50,-4,32,32,0,1
--2,109,0,38,0,70,71,2,1
-1,111,13,28,0,73,82,8,1
-0,87,3,44,-17,42,43,2,1
-0,82,0,54,-18,26,28,2,1
-0,103,0,18,-1,66,85,18,1
-3,84,0,-40,5,4,125,122,5
--5,88,0,52,0,36,36,0,1
-6,77,0,-22,0,23,101,78,4
-1,85,6,44,16,41,41,0,1
-0,81,0,-18,31,25,99,74,4
--5,85,0,46,3,40,39,0,1
-3,79,0,50,0,28,30,2,1
-0,100,-3,46,0,54,53,0,1
-0,79,-1,6,-18,43,74,32,1
--4,83,0,46,0,36,37,0,1
-0,97,0,52,-3,41,45,4,4
-3,85,-2,38,0,46,46,0,1
--1,87,-7,46,0,41,41,0,1
--5,75,0,46,0,29,28,0,1
-0,80,0,46,-28,31,34,2,1
-0,79,0,36,7,42,43,2,1
-0,77,0,10,11,41,67,26,1
-1,84,0,-14,-4,3,99,96,5
-0,82,0,16,5,45,66,22,1
-0,76,4,30,18,40,45,6,1
-2,102,0,46,0,56,56,0,1
-0,76,27,42,-9,33,35,2,1
-0,76,0,28,22,40,48,8,1
-0,87,2,-42,-30,5,131,126,5
-0,81,0,42,-12,38,40,2,1
-0,88,3,54,0,32,33,2,1
--5,108,0,70,0,1,38,36,5
-0,78,0,50,9,29,29,0,1
-0,77,8,28,21,41,49,8,1
-3,82,0,52,0,29,30,2,1
-0,79,-2,10,-10,43,69,26,1
-0,75,0,34,19,38,41,4,1
-0,99,0,42,-7,56,58,2,1
-0,107,0,36,-12,69,71,2,1
--3,81,0,46,0,34,34,0,1
-3,84,0,-28,-10,4,112,108,5
-0,81,-4,26,-9,45,55,10,1
-0,82,-2,42,0,39,41,2,1
-0,88,-1,50,27,39,39,0,1
-0,80,0,24,24,43,57,14,1
--1,82,1,38,0,43,43,0,1
-0,76,0,-6,1,20,84,64,4
-2,87,6,54,-19,31,33,2,1
-0,93,0,20,6,38,73,34,4
-0,80,2,38,0,40,41,2,1
-2,78,0,52,14,27,26,0,1
-0,88,-1,50,-6,37,39,2,1
-4,81,0,38,0,42,42,0,1
--3,88,0,46,0,41,41,0,1
--4,111,0,62,0,48,49,2,1
-0,98,0,44,7,42,54,12,4
-0,76,7,44,0,32,32,0,1
-5,78,0,50,0,28,29,0,1
-0,78,0,0,5,41,78,36,1
-0,87,2,50,0,37,38,2,1
-0,85,0,42,-30,41,44,2,1
--4,88,0,52,0,35,36,0,1
-0,81,-4,20,0,44,61,16,1
-2,82,0,50,25,33,33,0,1
-10,77,-3,-22,4,41,101,60,1
-0,90,0,52,0,37,38,0,1
--3,77,4,42,0,35,35,0,1
-0,75,3,24,0,38,52,14,1
-0,97,0,28,6,60,69,8,1
-0,104,0,26,-3,67,78,12,1
-1,102,0,36,-16,64,66,2,1
-0,95,2,8,-27,57,87,30,1
-0,76,0,24,-17,39,53,14,1
--1,81,0,42,-25,37,39,2,1
-1,86,0,56,13,30,29,0,1
-1,80,0,42,0,37,39,2,1
--1521,77,0,20,0,40,57,16,7
-0,83,0,46,17,37,36,0,1
-0,86,5,52,0,33,34,0,1
-1,106,0,42,0,64,64,0,1
-0,76,2,30,0,39,45,6,1
-0,90,8,42,0,46,48,2,1
-1,81,0,38,-17,40,43,2,1
-4,86,0,44,-2,40,42,2,1
-0,95,4,36,-8,40,59,20,4
-0,78,0,46,28,33,32,0,1
-4,77,0,0,1,22,77,56,4
-0,88,0,46,0,41,42,0,1
-4,80,0,38,0,41,41,0,1
-0,95,0,38,-30,40,57,16,4
-0,86,8,46,0,40,40,0,1
-0,79,-1,38,-2,40,40,0,1
-3,83,-3,46,0,36,36,0,1
-0,88,0,0,15,3,88,84,5
--3,81,0,42,-22,38,40,2,1
-1,78,0,46,0,31,32,0,1
-0,81,-3,-12,9,26,94,68,4
-0,86,-1,50,-20,36,37,2,1
--4,87,0,56,0,30,30,0,1
-0,76,-1,34,-5,38,42,4,1
-0,83,0,-28,-4,27,111,84,4
-0,83,0,-28,7,27,111,84,4
--1,78,0,8,-5,23,70,48,4
-0,84,0,44,-20,38,40,2,1
-0,88,1,52,-9,35,36,2,1
-1,86,0,38,-18,45,48,2,1
-0,86,-1,36,0,49,50,0,1
-0,92,0,-2,0,36,94,58,4
-0,96,0,52,9,40,44,4,4
-3,76,0,38,19,38,37,0,1
-0,86,-8,44,-2,40,42,2,1
-4,84,0,-28,-13,4,112,108,5
-0,86,0,38,-6,45,47,2,1
--3,79,0,44,0,36,35,0,1
-0,98,-5,46,-19,42,51,8,4
-0,81,0,38,-15,41,43,2,1
-0,83,0,8,1,46,75,30,1
--2,77,0,0,9,40,77,36,1
-0,92,1,16,4,54,77,22,1
-0,79,1,12,-6,23,66,42,4
-0,86,-3,46,0,39,39,0,1
--1,102,-2,54,1,49,48,0,1
-0,77,0,-18,-8,21,95,74,4
-5,84,0,52,0,32,33,0,1
-0,85,0,-10,0,3,95,92,5
-0,75,0,34,-4,37,41,4,1
-1,88,0,46,-7,39,41,2,1
-1,79,-2,52,0,28,28,0,1
-2,78,0,52,0,26,26,0,1
-4501,106,-2,30,47,-10,75,84,5
-0,76,0,20,12,39,55,16,1
-0,84,0,50,-26,33,35,2,1
-0,82,0,34,-6,45,48,4,1
--1,82,-2,38,9,45,43,0,1
-0,105,0,24,6,68,82,14,1
-4,89,1,54,0,35,35,0,1
--4,85,4,46,0,38,39,0,1
-0,103,-2,24,0,66,80,14,1
-0,97,0,50,16,42,48,6,4
-0,76,4,30,21,40,45,6,1
-0,77,0,2,-14,22,75,52,4
-0,76,0,20,-3,40,55,16,1
--5,86,-2,42,0,44,45,2,1
--5,80,0,38,17,43,41,0,1
-0,76,0,-14,-7,20,92,72,4
--2,87,0,42,0,44,46,2,1
-3,88,0,44,-2,42,44,2,1
-0,86,-5,38,0,46,48,2,1
-0,106,-1,72,1,1,33,32,5
-0,74,0,30,7,37,43,6,1
-0,85,0,52,7,34,33,0,1
-0,93,0,0,-12,38,93,56,4
-0,77,1,-4,-7,21,82,62,4
-0,77,0,2,-3,40,75,34,1
--2,82,7,54,0,28,28,0,1
-2,80,0,18,-11,43,62,20,1
-2,82,6,-40,15,5,123,118,5
-0,82,0,50,-17,31,33,2,1
-2,88,0,46,-3,39,41,2,1
--1,82,0,50,0,33,33,0,1
--3,88,0,44,0,44,44,0,1
-0,80,-1,38,13,43,41,0,1
-1,78,4,38,0,39,39,0,1
-0,81,-18,42,0,38,39,2,1
-0,97,0,50,27,41,48,6,4
-2,90,0,8,15,52,82,30,1
-0,102,-7,70,-6,1,33,32,5
-0,95,0,12,-9,58,82,24,1
-2,87,0,50,22,38,38,0,1
-2,81,0,42,11,39,39,0,1
-0,79,0,6,-6,42,74,32,1
-0,88,-2,6,-7,3,83,80,5
-0,104,0,26,-4,66,78,12,1
--1,108,0,44,0,63,64,2,1
--1,81,0,44,-22,35,37,2,1
-0,80,0,44,0,36,36,0,1
-0,95,1,42,-1,40,54,14,4
-0,83,-5,50,0,33,33,0,1
--3,98,0,38,-8,42,59,16,4
-0,93,0,6,-3,37,88,50,4
-0,105,2,38,0,67,66,0,1
-0,79,0,50,17,30,30,0,1
-0,104,8,24,0,67,80,14,1
-0,88,0,50,16,40,39,0,1
-0,80,0,20,15,43,59,16,1
-0,78,0,38,0,38,39,2,1
-0,83,0,44,6,38,39,0,1
-0,87,-6,50,0,37,38,0,1
--1,83,-5,44,-8,38,39,2,1
-1,98,0,52,10,42,46,4,4
-0,79,0,12,-30,43,66,24,1
-0,92,0,-2,-3,36,94,58,4
-0,86,0,46,28,40,39,0,1
-0,96,0,50,-5,41,47,6,4
-0,80,0,44,12,36,36,0,1
-5,87,0,50,1,38,38,0,1
--1,76,0,44,0,32,32,0,1
-4,104,0,20,-22,66,83,16,1
-0,104,0,20,0,67,83,16,1
-0,88,0,44,-14,43,44,2,1
-0,106,0,38,-3,65,67,2,1
-0,83,0,-38,20,4,122,118,5
-0,77,-3,24,-1,22,54,32,4
-0,111,0,62,23,50,49,0,1
--1,80,0,42,12,39,39,0,1
-0,86,0,46,14,41,40,0,1
--1,86,0,46,0,38,40,2,1
-4,87,0,44,-22,41,43,2,1
-0,88,0,38,-21,48,50,2,1
-0,81,-4,-14,0,26,97,70,4
--4,81,0,38,-26,41,43,2,1
-1,83,0,-42,0,4,127,122,5
-0,84,0,-42,-9,4,128,124,5
--1,75,0,42,0,32,34,2,1
-0,107,0,36,-2,69,71,2,1
-0,81,3,-22,0,25,105,80,4
-5,71,-8,0,0,16,71,56,4
-0,97,2,50,21,41,48,6,4
--2,77,10,0,0,21,77,56,4
-0,81,0,42,5,40,40,0,1
-0,81,0,38,-19,40,43,2,1
-3,81,0,56,1,25,24,0,1
-1,84,0,46,0,38,38,0,1
-0,77,0,42,11,37,36,0,1
-0,80,0,34,8,43,46,2,1
-1,83,7,38,31,45,44,0,1
-0,77,0,38,-25,36,38,2,1
-0,106,-7,72,5,1,33,32,5
-0,90,0,26,23,52,64,12,1
-0,79,0,24,-5,43,56,14,1
-0,76,1,26,-13,40,50,10,1
--2,108,0,46,0,60,61,2,1
-2,88,6,46,0,40,41,2,1
-0,96,0,12,-6,59,83,24,1
--5,97,8,44,0,53,53,0,1
-0,77,-1,24,-3,22,54,32,4
-0,87,6,-4,0,4,92,88,5
-0,77,0,18,6,41,59,18,1
-0,81,0,42,132,39,40,0,1
-4,77,0,42,0,34,35,2,1
--1,86,0,46,16,40,39,0,1
-0,76,0,30,12,40,45,6,1
-5,77,0,50,0,28,28,0,1
-0,82,0,24,-10,45,59,14,1
-3,81,0,42,-7,38,40,2,1
-3,86,0,44,0,41,42,2,1
-0,86,0,44,17,43,42,0,1
--1,78,-3,42,-5,37,37,0,1
--2,98,0,50,-6,42,49,6,4
-2,99,0,46,-28,42,52,10,4
-0,100,0,44,-17,54,56,2,1
-0,76,-5,20,0,39,55,16,1
-0,79,2,20,-20,24,59,34,4
-0,83,6,-46,0,4,129,124,5
--5,75,0,42,14,34,34,0,1
-0,79,0,16,2,43,64,22,1
-0,81,-6,54,11,28,27,0,1
--1,79,2,56,5,23,22,0,1
-0,93,0,6,-30,37,88,50,4
-0,75,0,34,21,38,41,2,1
-4,95,0,38,-2,39,57,18,4
-5,86,0,46,11,40,39,0,1
-0,93,0,16,11,55,77,22,1
-0,91,0,50,-2,40,42,2,1
-0,86,-1,54,0,31,32,0,1
-3,92,0,56,0,35,35,0,1
-1,98,0,44,22,42,54,12,4
-0,77,0,-22,-6,21,100,78,4
-5,82,0,50,7,33,33,0,1
-0,106,2,20,-9,69,85,16,1
-0,77,0,38,-23,36,38,2,1
--1,78,-3,46,-20,32,32,0,1
-0,84,0,44,26,41,40,0,1
-1,96,0,54,1,40,42,2,1
--5,81,0,44,16,38,37,0,1
-0,82,0,50,1,33,33,0,1
-0,95,0,24,10,58,72,14,1
-0,83,-3,46,-5,35,37,2,1
-0,90,-2,54,0,36,36,0,1
-0,79,0,6,24,42,74,32,1
-5,90,0,44,0,45,46,0,1
-0,82,0,-20,-6,26,103,76,4
-0,82,0,38,-22,41,43,2,1
--2,106,0,34,-11,68,72,4,1
-0,87,0,-40,1,4,128,124,5
-0,86,0,46,7,41,40,0,1
-1,94,0,50,25,45,45,0,1
-0,96,2,42,1,40,55,14,4
-0,88,0,46,28,43,42,0,1
-1,79,0,54,-9,23,24,2,1
-0,82,1,-12,5,26,95,68,4
--1,76,0,38,9,38,37,0,1
-0,80,0,28,-28,43,52,8,1
--1,95,0,56,31,40,39,0,1
-3,78,0,44,0,33,34,2,1
-0,86,0,36,-14,48,50,2,1
-4,77,0,-22,0,25,101,76,4
-0,80,0,38,7,43,41,0,1
-0,77,2,28,0,22,49,26,4
-0,97,0,46,-2,41,50,8,4
-0,83,0,44,-13,38,39,2,1
-0,107,0,38,26,69,68,0,1
-0,77,0,-10,17,21,87,66,4
-0,81,1,42,3,39,39,0,1
-0,84,-2,-20,0,4,105,100,5
-0,77,-1,38,-2,36,38,2,1
--5,76,1,42,-19,33,35,2,1
-0,80,0,52,8,29,28,0,1
--4,96,-1,54,-4,41,42,2,1
-5,89,0,6,28,3,84,80,5
-1,88,0,54,20,35,34,0,1
-0,77,0,44,-22,32,34,2,1
-2,79,2,50,7,30,30,0,1
-5,77,0,44,3,33,33,0,1
-0,77,0,-14,4,21,92,72,4
--1,83,0,54,0,28,28,0,1
-0,82,-5,-32,-17,26,115,90,4
-0,76,0,34,13,39,43,4,1
-0,80,0,44,19,37,36,0,1
-0,79,0,30,20,42,48,6,1
--4,79,0,52,0,26,27,0,1
-4,82,2,44,0,37,38,0,1
-5,81,2,46,0,33,34,2,1
-0,97,-5,30,0,60,66,6,1
-0,86,0,38,-8,45,47,2,1
-0,78,0,6,-4,22,73,50,4
-0,79,0,38,-24,38,40,2,1
-0,81,0,-4,30,25,86,60,4
--3,81,0,50,-12,30,32,2,1
--1,79,0,46,5,33,32,0,1
-0,80,0,8,-3,43,72,30,1
-0,83,0,42,3,42,42,0,1
-0,83,4,44,1,40,39,0,1
--3,76,0,44,6,32,32,0,1
-0,81,0,-14,13,25,97,72,4
-0,79,0,24,23,24,56,32,4
-0,106,0,26,7,68,80,12,1
--1,76,-3,44,-5,31,32,2,1
-0,88,-1,44,0,43,44,2,1
--1,77,0,50,5,28,28,0,1
-5,78,0,42,23,37,37,0,1
-0,76,0,-14,-9,21,92,70,4
-0,95,0,50,22,40,46,6,4
-0,76,0,26,21,40,50,10,1
-5,81,0,42,-19,37,39,2,1
-1,83,0,56,6,27,26,0,1
-0,85,-4,38,0,44,46,2,1
-1,86,-4,56,0,30,30,0,1
-0,87,-3,50,-4,37,38,0,1
-4,76,0,38,-16,35,37,2,1
-4,79,0,44,15,35,35,0,1
-4,86,0,-22,0,4,109,106,5
--3,78,0,44,0,33,34,2,1
-5,76,0,44,16,32,32,0,1
-0,78,0,6,8,42,73,32,1
-0,82,-30,44,0,37,38,0,1
-0,77,0,38,14,40,39,0,1
-0,97,0,12,2,59,84,24,1
-0,95,0,8,-11,58,87,30,1
-0,83,0,44,0,39,39,0,1
-0,86,0,44,23,42,42,0,1
-1,88,0,52,-9,35,36,2,1
--2,80,0,54,0,27,26,0,1
-0,90,0,36,8,53,54,2,1
-0,79,0,18,-5,42,61,18,1
-0,88,0,46,3,42,41,0,1
--4,80,0,50,2,31,31,0,1
-0,82,0,-42,-18,26,126,100,4
--2,84,0,-42,0,5,128,124,5
-0,107,0,28,-7,69,78,8,1
-5,83,0,46,12,37,36,0,1
-0,81,0,54,-26,25,27,2,1
-0,83,0,56,28,28,26,0,1
-0,77,0,44,0,33,34,0,1
--1,77,8,38,0,38,39,0,1
-0,77,0,50,-26,26,28,2,1
-0,78,-3,52,0,26,26,0,1
-0,86,6,-12,0,4,99,94,5
-0,82,0,46,25,37,35,0,1
-0,77,-1,16,-3,22,62,40,4
-0,95,-2,44,9,40,51,12,4
--1,104,0,24,11,67,80,14,1
-0,83,0,44,-17,38,39,2,1
--1,79,0,44,-20,33,35,2,1
-0,77,0,6,-29,40,72,32,1
-0,97,0,46,4,41,51,10,4
-0,77,0,46,0,30,30,0,1
-0,81,0,54,6,28,27,0,1
-0,81,0,54,-22,25,27,2,1
--2,104,0,70,0,1,35,34,5
-0,75,0,36,16,37,39,2,1
-0,76,0,46,14,30,29,0,1
-0,76,0,28,28,39,48,8,1
-0,82,-5,38,-4,41,43,2,1
-0,79,2,-22,0,23,102,80,4
-0,79,-1,20,-3,24,59,34,4
-1,77,0,44,3,22,34,12,4
--5,81,0,-40,0,5,122,118,5
-0,95,0,44,11,40,51,12,4
-0,111,-6,68,0,44,44,0,1
-0,83,0,28,7,46,54,8,1
-0,86,-6,44,-9,40,42,2,1
-0,77,3,46,-22,28,30,2,1
-0,87,0,52,-9,34,35,2,1
--1,79,-5,44,4,36,35,0,1
-0,86,0,42,18,46,45,0,1
--28,77,0,20,0,40,56,16,1
--41,88,0,44,0,44,44,0,1
-0,86,0,46,16,41,40,0,1
-0,77,5,44,14,34,34,0,1
-0,111,6,50,0,60,62,2,1
-0,81,0,46,-23,33,35,2,1
-0,90,0,36,-9,52,53,2,1
-0,86,0,52,-28,33,34,2,1
-4,86,0,56,0,29,30,0,1
--4,86,0,42,0,44,45,2,1
--2,81,0,42,0,38,39,2,1
--2,86,0,42,11,45,44,0,1
-0,76,0,38,-9,35,37,2,1
-0,84,3,44,0,39,40,2,1
-0,87,2,38,-14,46,48,2,1
-0,94,2,12,12,57,81,24,1
-0,79,0,34,-3,41,45,4,1
-1,102,0,42,-6,59,61,2,1
--2,75,-1,20,0,38,54,16,1
-2,82,0,52,-10,29,30,2,1
-0,81,3,42,-6,38,40,2,1
-0,77,0,24,-30,41,54,14,1
--5,90,0,46,0,43,43,0,1
-3,84,0,52,0,32,32,0,1
--2,79,0,24,0,42,55,14,1
--4,102,0,52,0,50,50,0,1
-1,86,0,46,0,41,40,0,1
-0,97,0,50,29,41,48,6,4
-0,86,3,54,14,33,32,0,1
-1,107,-6,46,4,61,60,0,1
-0,92,0,46,-1,36,46,10,4
-4,83,0,42,5,41,41,0,1
-1,78,0,42,-17,34,37,2,1
--5,78,0,16,-1,23,63,40,4
-3,86,-3,44,0,42,42,0,1
-0,77,0,-20,-16,21,97,76,4
-0,76,0,-12,0,21,89,68,4
-0,79,0,42,-28,36,38,2,1
--2,86,0,38,-16,46,48,2,1
-0,97,4,52,0,41,45,4,4
-0,82,5,-4,0,45,87,42,1
--4,107,0,36,0,70,71,0,1
-0,90,0,50,20,42,41,0,1
--2,81,0,54,0,28,27,0,1
-0,82,0,50,-11,31,33,2,1
-0,85,0,44,14,41,41,0,1
-0,84,-1,-14,0,3,99,96,5
-0,83,0,2,4,46,81,34,1
--3,105,0,72,2,1,33,32,5
-0,98,0,52,18,42,46,4,4
-0,77,5,24,-8,40,54,14,1
-3,77,0,38,1,39,38,0,1
-0,78,0,2,9,23,75,52,4
-0,100,0,44,0,55,56,0,1
-0,79,0,36,4,41,43,2,1
-4,86,0,50,8,37,37,0,1
-0,95,0,28,0,58,67,8,1
-0,82,8,-2,4,45,85,40,1
-0,97,-6,50,-13,41,48,6,4
-0,76,0,34,8,39,43,4,1
-0,76,0,30,17,40,45,6,1
-0,77,0,36,0,22,41,20,4
-0,77,0,-24,20,21,103,82,4
-0,76,0,16,-10,39,61,22,1
-0,79,3,56,16,23,22,0,1
-0,96,8,44,0,52,52,0,1
--1,79,8,50,0,29,30,0,1
-0,86,0,56,25,31,30,0,1
--2,76,-9,36,-14,39,40,0,1
-0,86,-7,50,-5,36,37,2,1
-5,78,-2,52,14,27,26,0,1
-0,77,1,34,-6,40,43,2,1
--2,81,0,36,-29,43,44,2,1
-2,79,0,38,7,41,40,0,1
-0,77,0,50,-12,26,28,2,1
-1,97,0,38,-16,56,59,2,1
-0,79,0,0,1,42,79,36,1
-0,107,8,30,0,70,76,6,1
-0,84,6,42,-4,41,43,2,1
-0,77,0,18,-13,40,59,18,1
-0,107,3,46,-14,58,60,2,1
-0,76,-7,24,8,39,52,14,1
-0,79,0,20,11,42,58,16,1
-0,83,2,-2,0,46,85,40,1
-0,88,-2,0,24,3,88,84,5
-0,108,-7,70,-24,1,38,36,5
-0,76,0,-10,-4,20,86,66,4
-0,81,0,56,3,24,24,0,1
-0,88,6,2,0,3,86,82,5
-3,82,-3,34,0,45,48,4,1
-0,86,0,60,16,28,27,0,1
--4,81,0,42,0,38,40,2,1
-0,96,4,54,0,41,42,2,1
--1,91,0,54,0,38,37,0,1
--1,86,0,-4,-8,4,92,88,5
-5,86,0,46,0,39,40,0,1
-2,81,0,54,0,27,27,0,1
-0,99,0,28,-2,61,70,8,1
-0,78,0,50,6,29,29,0,1
-3,88,0,50,27,40,39,0,1
-0,106,0,24,14,69,82,14,1
-0,80,-1,42,1,39,39,0,1
-0,97,-3,34,8,60,64,4,1
-0,91,0,50,0,41,42,0,1
-0,93,0,12,-12,55,80,24,1
-0,81,0,46,8,35,34,0,1
-0,81,0,46,11,36,35,0,1
-0,81,0,-4,20,25,86,62,4
-0,80,0,30,-5,43,49,6,1
-0,76,0,44,-16,31,32,2,1
-0,108,-4,42,18,66,66,0,1
-0,84,1,52,0,33,33,0,1
-0,97,-3,18,-3,60,79,18,1
-0,84,0,24,-2,47,61,14,1
-0,82,-4,38,0,41,43,2,1
--1,77,0,44,-10,31,33,2,1
-2,85,-1,52,0,33,33,0,1
-0,79,0,26,6,43,54,10,1
-0,97,0,42,0,41,55,14,4
-2,86,0,50,14,38,37,0,1
--1,98,0,42,29,42,57,14,4
--5,77,0,46,-4,29,31,2,1
--5,76,0,42,10,35,35,0,1
-1,76,0,46,0,28,30,2,1
-2,76,0,42,10,34,34,0,1
-0,97,0,52,26,41,45,4,4
-0,84,0,54,9,32,30,0,1
-0,96,0,42,-17,41,55,14,4
-1,83,1,-40,10,4,124,120,5
-1,102,0,38,0,64,63,0,1
--2,76,-3,38,0,38,37,0,1
-4,83,0,52,0,30,31,0,1
-3,93,-4,38,0,54,55,0,1
--1,77,-3,16,-8,22,62,40,4
-0,88,0,46,-5,39,41,2,1
-0,90,0,34,-24,53,57,4,1
-5,81,0,54,0,27,27,0,1
-0,77,0,44,-24,22,34,12,4
-1,112,0,68,1,45,45,0,1
-0,108,0,42,-8,65,67,2,1
--1,78,0,42,11,37,37,0,1
-0,92,0,52,13,36,40,4,4
-0,77,0,-30,-13,22,108,86,4
-0,89,-6,42,0,47,48,2,1
-0,92,0,20,-6,54,71,18,1
-0,92,0,30,-6,37,61,24,4
-0,81,0,36,-20,43,44,2,1
-0,79,0,38,-3,38,40,2,1
-0,76,1,28,-8,40,48,8,1
-0,79,0,20,-25,23,58,34,4
-0,78,-2,34,-3,41,45,4,1
-4,85,0,38,0,45,46,2,1
-3,77,0,46,-6,28,30,2,1
--4,81,0,54,6,28,27,0,1
--4,78,0,54,8,25,24,0,1
-0,83,2,46,0,35,36,2,1
-0,103,1,72,26,1,31,30,5
-4,102,0,52,0,50,51,0,1
-5,79,5,24,0,42,56,14,1
-0,104,0,18,-25,67,86,20,1
-2,79,0,38,0,40,40,0,1
-0,79,-1,10,0,42,69,26,1
-0,77,0,38,27,40,39,0,1
-0,93,0,12,0,55,80,24,1
--2,82,0,52,0,31,30,0,1
-3,77,0,34,-13,39,43,4,1
-0,84,6,42,30,43,43,0,1
-0,85,0,42,21,44,44,0,1
--4,84,0,46,0,38,38,0,1
-0,96,-1,50,-9,41,47,6,4
--3,81,-2,-40,30,5,123,118,5
-0,80,0,44,3,36,36,0,1
-0,79,0,44,17,36,35,0,1
-0,81,7,12,0,45,68,24,1
--2,98,0,52,1,42,46,4,4
-0,103,0,20,3,66,82,16,1
-4,87,0,52,-1,34,35,2,1
-0,80,0,54,-1,25,26,2,1
-0,86,-1,44,-7,41,42,2,1
-0,87,0,44,3,43,43,0,1
-0,95,5,36,-5,40,59,20,4
-1,86,0,46,28,41,40,0,1
-3,86,0,-22,0,4,109,106,5
-5,76,0,42,2,34,34,0,1
-0,97,0,12,10,59,84,24,1
--1,80,-2,20,-5,25,59,34,4
--3,87,4,50,0,37,38,0,1
-2,85,0,54,0,31,31,0,1
--1,106,0,38,0,67,67,0,1
-3,95,3,46,0,48,49,0,1
-0,77,0,-4,6,41,83,42,1
-0,77,0,20,-6,22,57,36,4
-0,76,-4,34,0,40,43,2,1
-0,80,8,44,0,35,36,2,1
-0,96,0,56,12,40,39,0,1
-0,80,0,30,14,43,49,6,1
-2,82,-2,34,0,45,48,4,1
-0,106,0,72,9,1,33,32,5
--4,85,0,46,8,40,39,0,1
--3,85,0,56,0,28,28,0,1
-0,77,-2,30,12,40,46,6,1
-0,77,-1,28,3,21,48,28,4
-0,80,0,42,25,40,39,0,1
-0,95,0,54,24,40,41,2,1
-0,80,0,30,13,43,49,6,1
-5,78,6,-42,-1,4,122,118,5
-2,97,0,56,0,39,40,0,1
--1,91,0,54,-7,35,37,2,1
-0,96,-2,42,-4,41,55,14,4
-1,75,-2,20,0,38,54,16,1
-0,77,0,54,5,23,23,0,1
--1,90,0,50,-13,39,41,2,1
-0,77,0,38,-3,37,39,2,1
-0,86,0,42,3,45,44,0,1
-0,95,0,46,12,40,49,8,4
--2,107,0,44,-18,62,63,2,1
-0,78,0,12,30,41,65,24,1
-0,81,0,-20,-9,25,102,76,4
--5,86,1,50,0,37,37,0,1
-0,79,0,34,10,42,46,4,1
-0,86,0,52,-5,33,34,2,1
-0,86,0,-40,2,5,128,124,5
--3,98,0,52,0,42,46,4,4
-0,76,0,44,-24,30,32,2,1
--1,81,0,54,-27,25,27,2,1
-0,80,-1,38,0,39,41,2,1
-0,76,-1,24,1,39,52,14,1
-2,88,8,46,6,42,41,0,1
-0,92,0,16,1,54,77,22,1
-4,76,0,34,-29,39,42,4,1
--1,109,0,70,-28,1,39,38,5
-0,75,0,34,6,38,41,4,1
-0,88,-2,46,0,40,42,2,1
-0,95,0,50,4,40,46,6,4
--1,77,0,52,22,26,25,0,1
-0,83,0,-30,-9,27,114,86,4
--2,76,1,38,0,38,37,0,1
-0,77,0,16,18,40,61,22,1
-0,83,0,50,-17,32,34,2,1
-0,77,4,46,-10,28,30,2,1
-0,77,0,6,6,40,72,32,1
-0,81,0,46,28,36,35,0,1
-5,81,0,46,0,32,34,2,1
-0,86,0,52,-2,33,35,2,1
-5,79,0,44,0,35,35,0,1
-0,83,0,54,0,27,28,2,1
-0,77,0,46,10,31,30,0,1
--5,83,0,46,21,38,37,0,1
-0,96,0,54,27,41,42,2,1
-45,77,0,-22,0,29,101,72,2
-1,90,0,20,7,53,70,16,1
-0,81,0,52,22,30,29,0,1
-1,97,0,54,30,40,42,2,1
-0,76,-1,44,0,32,32,0,1
-0,86,-4,54,0,31,32,2,1
-0,78,-7,46,-20,29,32,2,1
-0,79,6,0,5,23,79,56,4
-0,86,0,54,-29,30,32,2,1
-1,77,0,42,5,36,35,0,1
-0,81,5,38,0,41,43,2,1
-0,77,0,24,-3,21,54,32,4
-4,77,0,42,0,34,36,2,1
-0,86,0,42,0,44,45,0,1
-0,80,0,52,23,29,28,0,1
-0,95,0,20,17,57,74,16,1
-0,97,-5,46,0,41,50,8,4
-0,78,0,44,27,22,34,12,4
-4,108,1,72,5,1,36,34,5
-0,95,0,54,-1,40,41,2,1
-0,96,0,34,1,59,62,4,1
-0,79,0,20,-10,24,59,34,4
-0,79,0,46,10,33,32,0,1
-4,79,0,42,11,38,37,0,1
-0,103,0,24,-23,66,80,14,1
--3,81,0,42,-2,38,40,2,1
-0,77,0,-14,6,40,92,52,1
-0,78,0,16,-26,23,63,40,4
-5,97,0,54,24,40,42,2,1
--3,79,0,50,0,30,30,0,1
-0,84,-1,42,-2,43,43,0,1
--1,79,0,46,0,31,32,2,1
-0,83,-1,46,5,37,36,0,1
-0,78,0,44,-10,23,34,12,4
-0,77,0,18,-2,40,59,18,1
-0,88,7,46,0,39,41,2,1
--5,79,0,42,0,37,38,2,1
--5,88,0,52,-30,34,36,2,1
-0,80,0,28,21,43,52,8,1
-0,81,0,28,-17,45,53,8,1
--1,78,0,52,5,27,26,0,1
-0,83,0,-30,0,4,114,110,5
-0,79,0,10,26,42,68,26,1
--1,76,-2,-2,0,39,79,40,1
-2,81,0,50,0,31,32,0,1
-0,93,0,10,-18,37,82,46,4
-0,79,0,36,28,41,43,2,1
-0,82,0,-36,3,26,118,92,4
-1,86,1,42,-22,42,44,2,1
-0,76,-1,44,-3,31,32,2,1
-2,79,0,46,3,34,33,0,1
-0,86,-2,50,-2,36,37,2,1
-0,77,0,28,69,40,48,8,1
--2,82,4,-4,0,45,87,42,1
-0,76,0,30,-9,39,45,6,1
-0,79,1,0,6,23,79,56,4
-0,92,0,18,25,54,74,20,1
-0,95,0,46,9,40,49,10,4
-4,77,-1,-22,2,41,101,60,1
-0,81,-4,38,0,41,42,2,1
-1,88,0,42,0,47,47,0,1
-0,77,0,50,-21,26,28,2,1
-2,86,6,-6,0,4,94,90,5
-3,76,0,46,7,30,30,0,1
--2,96,0,56,3,40,39,0,1
--2,79,0,50,-9,28,30,2,1
--4,109,0,38,-1,68,70,2,1
--2,86,0,44,-1,41,42,2,1
-0,86,-1,42,-2,44,45,2,1
-0,79,0,34,-10,42,46,4,1
-0,79,0,18,-7,23,61,38,4
--5,99,0,42,0,57,58,0,1
--2,87,0,44,-14,42,43,2,1
-1,85,-5,50,0,35,36,0,1
--3,83,-7,50,0,33,33,0,1
-0,96,0,52,-5,41,44,4,4
--4,78,0,44,0,34,34,0,1
-0,92,0,20,2,54,71,18,1
-0,82,0,-40,20,26,123,96,4
-0,83,0,30,17,46,52,6,1
-0,79,0,6,-21,43,74,32,1
-0,80,0,36,1,43,44,0,1
-0,95,0,38,4,40,57,16,4
-4,113,0,64,1,48,48,0,1
-1,86,0,44,-3,40,42,2,1
-1,81,0,38,8,43,42,0,1
-2,86,0,46,20,40,39,0,1
-0,82,0,34,-8,45,48,4,1
--1,98,2,52,-13,42,46,4,4
-0,83,0,28,-29,46,54,8,1
-1,83,0,44,-1,38,39,2,1
--2,84,0,50,-17,33,35,2,1
-0,78,0,2,-19,41,75,34,1
-5,88,1,46,0,42,42,0,1
-0,77,0,44,17,22,34,12,4
-3,80,0,46,0,32,34,2,1
-0,78,0,12,15,22,65,42,4
-0,86,3,42,1,45,45,0,1
--5,77,-22,-4,-30,23,82,60,4
-2,80,0,44,-29,34,36,2,1
-0,97,4,46,0,41,51,10,4
-0,76,0,46,29,31,30,0,1
--2,98,0,46,7,42,51,8,4
-0,77,0,44,-20,31,33,2,1
--1,80,-4,42,-16,37,39,2,1
--2,76,0,46,6,31,30,0,1
-0,81,0,42,-21,37,39,2,1
-0,95,0,8,-3,58,87,30,1
-3,102,0,70,-18,1,32,32,5
-0,90,0,44,29,47,46,0,1
-0,103,0,26,1,66,77,12,1
-0,97,0,52,6,41,45,4,4
-0,110,3,62,0,48,48,0,1
-5,85,-2,42,-3,42,44,2,1
-0,90,0,46,-6,41,43,2,1
-0,97,4,42,0,41,55,14,4
-0,83,0,36,-22,45,47,2,1
-4,77,0,0,0,40,77,36,1
-0,95,0,38,-7,40,57,18,4
-0,77,0,-6,-14,41,85,44,1
--1,100,0,42,6,59,59,0,1
-0,77,0,-24,0,21,103,82,4
-0,80,0,16,13,43,65,22,1
-0,96,-1,36,0,59,60,2,1
-0,92,0,24,-13,37,69,32,4
-0,81,0,12,-30,44,68,24,1
-1,86,1,60,17,28,27,0,1
-0,83,-6,44,0,38,39,2,1
-0,78,0,24,27,42,55,14,1
--4,82,0,-46,0,4,128,124,5
-0,83,0,6,-12,47,78,32,1
-0,95,1,50,3,47,46,0,1
-1,83,0,46,11,37,37,0,1
-0,84,0,44,-27,38,40,2,1
--6,76,-1,-2,0,37,79,42,1
-0,76,0,-4,276,20,81,62,4
--4,80,0,50,-16,29,31,2,1
-0,83,0,0,-13,46,83,36,1
-0,96,-4,50,0,40,47,6,4
-1,90,0,46,0,41,43,2,1
-0,79,0,56,13,23,22,0,1
-0,88,-1,46,-3,40,42,2,1
-0,75,1,24,0,38,52,14,1
-0,76,0,42,-23,32,34,2,1
--1,81,0,56,0,24,24,0,1
--1,77,0,34,-4,22,44,22,4
-0,80,5,18,0,43,62,18,1
-4,85,0,44,5,41,41,0,1
-0,81,0,24,0,44,57,14,1
-0,104,0,54,2,51,49,0,1
-0,94,3,46,0,47,48,0,1
-0,87,2,54,0,32,33,2,1
-1,80,0,44,0,35,36,2,1
-0,76,0,34,20,39,42,4,1
--1,74,-3,28,-6,37,46,8,1
--2,88,8,46,0,40,41,0,1
-4,87,0,46,3,41,41,0,1
-0,95,3,50,0,39,46,6,4
-0,78,0,20,-14,42,57,16,1
-0,93,2,0,-2,38,93,56,4
--1,100,0,36,0,64,64,0,1
-0,81,0,54,-23,25,27,2,1
-1,84,0,52,0,32,33,0,1
-0,77,0,24,-13,21,54,32,4
-0,76,0,-4,-4,20,81,62,4
-0,75,0,38,2,37,36,0,1
-0,88,0,54,15,35,34,0,1
-3,92,0,56,1,35,35,0,1
-2,99,0,50,3,43,49,6,4
-0,86,-3,50,-4,37,37,0,1
--5,97,0,42,0,56,56,0,1
-0,99,-2,50,0,43,50,6,4
-0,83,-1,-4,-7,46,88,42,1
-0,81,0,-4,24,25,86,62,4
-0,79,0,10,-15,43,69,26,1
-0,83,-1,-42,0,4,126,122,5
-0,87,8,54,0,32,33,0,1
-0,77,0,-20,25,21,97,76,4
-0,76,0,18,3,39,58,18,1
-0,97,-7,20,0,60,76,16,1
--2,81,0,-40,0,4,122,118,5
-0,90,-7,46,0,43,43,0,1
-0,79,0,12,-20,23,66,42,4
--2,80,0,-2,1,25,83,58,4
--2,81,0,36,0,44,44,0,1
--10,80,0,34,0,43,46,2,1
-0,97,-7,46,0,42,51,8,4
-1,79,0,38,18,41,40,0,1
--1,106,-5,70,-6,1,36,36,5
--1,78,0,52,-12,25,26,2,1
-1,77,-2,44,0,22,34,12,4
-2,86,-7,56,0,30,30,0,1
-0,79,0,50,14,31,30,0,1
-2,80,0,8,14,43,72,30,1
-1,92,0,52,-6,36,40,4,4
-0,74,0,24,5,37,51,14,1
--3,83,0,42,0,42,42,0,1
-0,79,0,10,-16,23,68,46,4
-0,78,-7,42,0,36,37,2,1
-0,77,0,16,-21,22,62,40,4
-0,83,6,56,0,25,26,0,1
-0,86,-5,42,-18,42,44,2,1
--4,106,-6,72,3,1,33,32,5
-1,78,0,46,7,32,32,0,1
-0,108,-4,46,3,62,61,0,1
-0,88,0,2,-14,3,86,82,5
-0,78,-6,44,23,35,34,0,1
-0,90,0,50,8,42,41,0,1
--2,80,0,56,8,24,23,0,1
-1,81,0,-10,-20,25,91,66,4
--1,100,0,38,0,62,62,0,1
-0,78,-2,42,-4,35,37,2,1
-1,106,0,46,0,59,60,0,1
--1,86,0,50,-25,36,37,2,1
-0,80,0,42,31,40,39,0,1
-0,76,8,34,0,40,43,2,1
-0,93,-1,46,-14,37,46,8,4
-1,79,-2,44,1,35,35,0,1
-0,92,-1,46,0,36,45,8,4
-0,103,0,24,-12,66,80,14,1
-0,86,0,38,-18,46,48,2,1
-0,80,3,20,0,25,59,34,4
-0,97,0,46,-21,41,50,10,4
-0,83,5,8,-6,47,75,28,1
-0,81,0,38,-18,40,42,2,1
-0,95,0,10,24,58,84,26,1
--5,88,0,54,0,34,33,0,1
-0,79,0,50,4,30,30,0,1
--5,88,0,54,9,35,33,0,1
-0,83,4,44,0,38,39,0,1
-0,78,0,8,2,41,70,30,1
--2,81,0,46,26,36,35,0,1
-0,86,0,56,12,30,29,0,1
--2,87,1,44,0,43,43,0,1
-0,83,0,-42,0,4,127,122,5
-1,77,4,44,0,32,33,2,1
-0,83,-7,6,0,46,77,32,1
-1,76,0,44,2,31,32,0,1
-2,112,0,68,0,44,45,0,1
-4,77,0,38,14,39,38,0,1
-4,80,0,46,-6,31,34,2,1
-0,77,0,42,-6,34,36,2,1
--1,95,-12,20,1,58,75,16,1
--1,83,-4,44,-8,37,39,2,1
-0,95,0,44,4,40,51,12,4
-318,78,0,38,0,37,39,2,1
--2,95,0,46,0,49,49,0,1
-0,81,0,50,-6,32,32,0,1
-0,78,-6,50,0,27,29,2,1
-0,77,0,18,20,40,59,18,1
--1,81,-6,56,-8,24,24,0,1
-1,77,-1,44,0,22,34,12,4
-0,81,0,28,-23,45,53,8,1
-4,80,0,44,0,35,36,2,1
-0,80,4,38,0,42,41,0,1
--2,77,0,44,0,32,33,2,1
-3,104,0,18,6,66,86,20,1
--3,98,0,46,5,42,51,8,4
-4,87,0,44,0,42,43,2,1
-0,77,0,20,-30,22,57,34,4
--4,76,-3,44,0,32,32,0,1
-0,95,-1,44,23,40,51,12,4
-0,79,0,42,-20,35,37,2,1
--1,77,-3,0,20,22,77,56,4
-0,77,-1,28,-1,40,48,8,1
-0,106,0,28,0,68,77,8,1
-0,108,0,30,-27,71,77,6,1
--2,83,0,42,0,42,42,0,1
-0,81,0,52,-1,29,30,0,1
-4,78,-2,42,0,36,37,2,1
-0,77,2,36,1,41,41,0,1
--5,82,0,46,-24,33,35,2,1
-0,95,0,52,6,40,44,4,4
--2,86,0,46,-1,38,40,2,1
-4,82,3,52,0,30,30,0,1
-0,78,0,20,-6,42,57,16,1
--2,83,6,44,0,38,39,2,1
-0,108,-1,60,0,49,49,0,1
-1,88,0,52,-2,35,36,2,1
-0,89,5,2,0,4,86,82,5
-0,89,-2,46,-4,41,42,2,1
-0,86,1,-40,2,5,128,124,5
-1,112,1,62,0,49,50,2,1
-0,84,0,44,-19,38,40,2,1
-1,77,0,50,0,27,28,2,1
-0,99,0,28,-6,61,70,8,1
--4,79,0,56,0,22,22,0,1
-0,96,5,54,1,40,42,2,1
-0,84,0,-28,-8,4,112,108,5
--5,77,0,38,0,39,39,0,1
-4,98,0,38,-11,42,59,18,4
-0,81,-2,-12,9,26,94,68,4
--3,80,0,38,-14,39,41,2,1
-1,95,0,46,-9,47,49,2,1
-0,81,0,46,2,35,34,0,1
--4,79,0,46,-2,30,32,2,1
-0,106,2,30,0,69,75,6,1
-0,86,6,44,-19,41,42,2,1
-0,86,0,46,-21,38,40,2,1
-1,76,0,38,8,38,37,0,1
-0,84,0,42,1,43,43,0,1
-0,84,-1,50,-1,34,35,0,1
-0,79,0,30,13,42,48,6,1
-0,78,0,42,26,37,37,0,1
-5,108,0,44,1,63,64,0,1
-0,76,0,-2,2,20,79,58,4
-3,79,0,54,0,25,25,0,1
-0,78,0,2,-1,23,75,52,4
--1,77,0,46,-7,28,30,2,1
-0,78,0,-2,-15,42,81,40,1
-1,86,8,44,10,43,42,0,1
-0,76,-7,28,5,39,47,8,1
-0,77,6,46,-16,28,30,2,1
-4,81,0,46,21,35,35,0,1
-3,86,0,42,0,43,45,2,1
-0,77,0,-28,-30,21,105,84,4
-1,79,0,44,-30,34,35,2,1
-0,93,0,42,-21,37,51,14,4
-0,93,-3,12,0,55,80,24,1
-0,75,0,30,26,38,44,6,1
--3,82,0,-46,0,4,128,124,5
-0,84,0,44,-19,39,41,2,1
-0,79,0,24,-23,42,55,14,1
-0,78,0,-4,5,41,83,42,1
-0,83,0,54,-29,27,29,2,1
-0,81,1,-6,0,25,89,64,4
-0,100,-1,30,-1,64,69,6,1
-0,77,0,36,-6,39,41,2,1
-0,82,3,20,1,45,61,16,1
-0,106,0,50,15,58,57,0,1
-0,86,-2,56,0,29,30,0,1
-1,113,0,62,-15,48,51,2,1
-0,77,0,34,0,22,44,22,4
-0,76,0,-4,-17,20,81,62,4
-0,86,-7,46,0,37,39,2,1
--1,83,-4,50,-6,34,34,0,1
-0,95,0,42,-18,40,54,14,4
--5,108,0,42,9,67,67,0,1
-0,84,1,30,0,47,53,6,1
-0,103,0,20,-16,66,82,16,1
--4,99,0,46,-7,43,52,10,4
-3,86,0,46,0,39,39,0,1
-0,80,0,8,24,43,72,28,1
--1,97,0,42,0,41,55,14,4
-0,86,0,-42,-23,4,130,126,5
-1,86,0,44,-27,41,42,2,1
-0,77,-2,-22,0,22,100,78,4
-0,77,-1,24,-3,22,54,32,4
-0,76,0,24,-1,40,53,14,1
-3,87,0,-2,0,3,90,86,5
-0,85,5,38,0,46,46,0,1
-5,82,0,42,-20,38,41,2,1
-4,81,0,42,0,39,40,0,1
-0,86,0,44,2,43,42,0,1
--5,82,0,46,0,36,35,0,1
-0,95,0,8,-21,58,87,30,1
-0,83,4,54,0,29,29,0,1
--5,79,0,50,-18,28,30,2,1
-0,77,0,-18,1,21,95,74,4
-0,98,0,42,0,42,57,14,4
-0,77,-1,38,16,39,38,0,1
--3,82,0,42,0,40,41,0,1
-0,81,0,-10,-22,25,92,66,4
-0,78,0,44,-24,23,34,12,4
-0,105,0,24,4,68,82,14,1
--2,79,6,36,-22,42,43,2,1
-0,84,0,18,-26,47,66,18,1
-0,78,0,10,-10,22,68,46,4
--2,81,0,44,7,37,37,0,1
-0,87,1,42,27,46,46,0,1
-0,79,0,52,22,28,27,0,1
-0,83,7,-2,0,46,85,40,1
-3,83,0,44,0,38,39,0,1
--1,86,0,42,-10,42,44,2,1
-0,77,-7,30,0,21,46,24,4
-0,79,0,20,14,42,58,16,1
--5,84,0,38,0,45,46,2,1
-0,106,4,36,0,69,70,2,1
-0,83,4,42,0,42,42,0,1
-2,79,6,52,11,27,27,0,1
-0,76,0,-14,-16,20,92,72,4
-0,93,0,12,15,56,81,24,1
--2,86,-2,54,-3,32,32,0,1
-0,86,-2,46,-4,40,40,0,1
-0,79,0,18,-21,43,61,18,1
-0,76,-1,34,0,40,43,2,1
-0,84,3,24,-7,47,61,14,1
-0,83,0,46,-3,35,37,2,1
-0,77,0,46,-16,29,31,2,1
-2,86,0,44,16,42,42,0,1
-1,86,0,46,0,38,40,2,1
-3,102,6,54,2,49,48,0,1
-1,77,0,44,6,33,34,0,1
-4,81,2,-40,12,5,122,118,5
--1,96,7,44,11,40,52,12,4
-0,81,6,46,0,34,35,0,1
-1,76,0,42,-5,32,34,2,1
-0,96,0,46,8,41,50,8,4
--1,83,0,50,9,34,34,0,1
-0,88,-3,2,0,3,85,82,5
-0,92,0,12,4,54,79,24,1
-0,97,0,46,15,41,50,10,4
--2,101,-2,50,0,51,52,0,1
--3,74,0,44,0,29,30,2,1
-0,77,0,18,-5,40,59,18,1
--1,97,0,42,-1,42,56,14,4
-4,102,0,70,-19,1,32,32,5
-0,86,-10,42,-20,42,44,2,1
--3,76,0,38,-22,35,37,2,1
--1,105,0,36,20,68,69,2,1
--3,82,0,44,4,38,38,0,1
-0,79,6,52,4,27,27,0,1
-4,79,2,16,0,41,63,22,1
-0,85,7,42,-6,42,44,2,1
-0,97,0,24,-2,60,73,14,1
--1,86,-1,44,-24,41,42,2,1
-0,95,0,52,24,39,43,4,4
-0,105,0,20,-20,68,84,16,1
-0,104,-4,16,-17,67,89,22,1
-0,113,1,62,-6,49,51,2,1
-0,84,0,18,-2,47,66,18,1
-2,81,0,52,-9,28,29,2,1
-0,80,0,36,-22,43,44,2,1
-0,75,0,30,9,38,44,6,1
--1,84,0,54,-7,28,30,2,1
-0,77,0,16,24,40,61,22,1
--1,82,0,46,0,35,35,0,1
-6,74,2,-4,-20,18,79,60,4
-0,87,6,50,18,38,38,0,1
--1,79,3,0,0,42,79,36,1
--3,112,0,62,0,50,50,0,1
--5,96,0,56,0,40,39,0,1
-0,78,0,26,1,41,52,12,1
-0,93,0,12,12,56,81,24,1
-0,81,6,-22,0,25,105,80,4
-0,97,0,26,20,60,71,12,1
-0,86,-5,54,11,33,32,0,1
--4,81,1,36,0,44,44,0,1
-0,82,0,26,5,45,56,12,1
--2,87,0,56,0,30,30,0,1
--1,79,-6,12,-15,42,66,24,1
-0,82,0,54,5,26,28,2,1
-0,104,-6,18,13,67,86,18,1
-0,96,-3,44,0,41,52,12,4
-5,83,0,56,1,26,26,0,1
--1,85,0,44,4,41,41,0,1
-4,76,0,42,0,34,34,0,1
--4,80,-7,44,2,36,36,0,1
-0,84,0,24,-30,47,61,14,1
--5,81,-5,52,0,29,29,0,1
-3,79,0,42,27,38,37,0,1
-0,107,0,72,2,1,35,34,5
-0,79,0,20,7,42,58,16,1
-0,83,3,38,0,45,44,0,1
--1,97,-3,46,-5,41,50,8,4
--5,78,0,-2,-1,40,81,40,1
--1,88,0,46,15,42,41,0,1
-0,93,0,42,-4,37,51,14,4
-0,80,0,36,2,43,44,0,1
--5,89,0,46,0,41,42,2,1
--2,80,0,46,-3,32,34,2,1
-0,97,0,44,-5,41,53,12,4
-0,106,1,30,0,69,75,6,1
--1,84,0,42,0,42,43,2,1
-0,80,0,46,-3,32,34,2,1
-0,103,0,30,21,66,72,6,1
-0,75,-1,44,7,31,31,0,1
-0,92,0,24,31,55,69,14,1
-0,81,-1,42,0,40,40,0,1
-0,80,5,38,0,41,41,0,1
-0,79,-7,0,0,42,79,36,1
-0,106,2,28,0,69,77,8,1
-0,86,-7,38,0,45,47,2,1
-0,83,0,42,-15,40,42,2,1
--1,89,0,46,-3,41,42,2,1
-0,86,0,54,9,33,32,0,1
-5,79,0,34,0,42,45,4,1
-10,95,-1,50,0,41,46,6,4
-0,106,0,26,21,68,80,12,1
-0,82,0,38,22,45,43,0,1
-0,90,0,38,20,52,51,0,1
-2,85,8,38,-19,44,46,2,1
-0,87,-1,50,-2,37,38,0,1
-1,86,0,44,-28,40,42,2,1
-0,90,0,34,25,53,57,4,1
-0,77,-1,-18,-1,40,95,54,1
-0,81,0,52,-6,29,30,0,1
-5,86,0,38,0,46,48,2,1
--4,76,0,44,12,33,32,0,1
-0,79,0,54,0,25,24,0,1
-1,77,0,54,0,22,23,0,1
--2,82,0,44,-11,37,38,2,1
-2,90,0,50,1,41,41,0,1
-0,96,0,42,24,40,55,14,4
-0,81,0,50,5,32,32,0,1
--1,78,-6,0,-19,23,78,56,4
-0,77,0,34,-27,39,43,4,1
-4,81,0,-40,0,4,123,118,5
-0,98,1,50,0,42,49,6,4
-4,102,0,46,8,57,56,0,1
--4,83,-2,-32,509,4,117,112,5
-0,77,0,26,-20,22,52,30,4
-1,80,0,44,0,35,36,0,1
--2,86,0,-22,0,4,109,104,5
-0,81,0,30,-20,45,50,6,1
-0,102,0,34,-9,65,69,4,1
-4,81,0,46,0,35,35,0,1
-0,83,-6,46,1,37,36,0,1
-1,87,0,54,-13,31,33,2,1
-5,80,0,54,0,26,26,0,1
--2,86,0,52,-23,33,34,2,1
-0,78,1,42,0,37,37,0,1
-0,96,0,50,-24,40,47,6,4
--2,98,0,52,2,42,46,4,4
-4,83,0,46,0,36,36,0,1
--4,75,0,44,14,32,31,0,1
-0,76,-4,28,-21,39,47,8,1
-0,87,3,38,-12,46,48,2,1
--4,79,0,42,0,38,37,0,1
-3,80,-1,44,0,36,36,0,1
-0,83,0,0,5,46,83,36,1
-1,97,-1,52,-22,41,46,4,4
-0,77,0,-24,6,22,103,82,4
-0,79,0,12,3,23,66,42,4
--2,82,-1,44,-17,37,38,2,1
-2,89,0,2,-2,3,86,84,5
-0,76,-4,46,0,29,29,0,1
--2,83,0,50,0,32,33,2,1
-0,86,0,54,25,33,32,0,1
-3,83,0,44,22,40,39,0,1
-1,86,3,56,-6,28,30,2,1
-1,86,3,44,0,41,42,2,1
-2,79,-5,46,0,33,32,0,1
-2,88,0,52,-3,35,36,0,1
-0,86,0,44,-21,40,42,2,1
-0,87,6,42,0,44,46,2,1
-0,82,0,50,-30,31,33,2,1
-0,77,-5,-22,0,22,100,78,4
--2,96,-4,52,0,40,44,4,4
-0,105,-4,70,-24,1,35,34,5
-0,77,-6,38,0,37,38,2,1
-0,76,0,24,31,39,52,14,1
-0,80,0,36,17,43,44,0,1
-1,83,0,44,12,39,39,0,1
-0,78,0,36,-13,41,42,2,1
-0,92,0,52,0,36,40,4,4
-0,109,0,68,6,43,42,0,1
-0,88,-6,46,0,39,41,2,1
-0,81,8,46,3,35,35,0,1
-0,76,5,42,-4,33,35,2,1
-0,78,-1,16,11,41,63,22,1
-0,80,-1,26,-14,43,54,12,1
-0,79,-1,44,-25,33,35,2,1
-1,80,0,54,0,25,26,0,1
--3,88,0,54,-23,32,33,2,1
-0,81,6,36,0,44,45,0,1
--2,100,0,46,0,54,53,0,1
-4,91,0,54,4,38,37,0,1
--1,86,0,44,10,43,42,0,1
-0,76,0,34,-2,40,43,2,1
-2,83,0,42,8,42,42,0,1
--2,109,1,46,0,63,63,0,1
-0,79,-2,10,0,43,69,26,1
--4,82,0,36,-23,45,46,2,1
-0,77,3,34,-4,40,43,2,1
--2,78,-1,42,-2,37,37,0,1
-0,86,0,56,0,30,30,0,1
-1,80,0,20,-9,24,59,36,4
-0,104,-6,70,0,1,35,34,5
-0,97,0,46,0,41,50,10,4
-0,77,0,42,-9,34,35,2,1
-0,77,0,46,14,32,31,0,1
-0,95,0,26,-5,58,70,12,1
-0,88,3,38,-5,47,49,2,1
-0,84,2,54,0,30,30,0,1
-3,84,0,56,0,28,28,0,1
-0,82,0,42,13,41,41,0,1
-0,79,0,12,-7,42,66,24,1
-0,76,0,36,10,39,39,0,1
-0,77,7,36,0,40,41,0,1
--1,77,0,42,3,36,35,0,1
--2,78,0,54,0,23,24,0,1
-0,78,0,8,31,22,70,48,4
-0,92,0,24,31,54,69,14,1
--1,79,-3,44,-12,36,35,0,1
-0,79,-4,42,0,35,37,2,1
-2,76,0,38,8,38,37,0,1
-1,102,5,72,8,1,30,28,5
-2,79,0,46,0,31,33,2,1
-0,105,-5,38,0,67,66,0,1
-0,77,0,16,19,40,61,22,1
-0,86,-4,-4,-12,3,91,88,5
-0,83,0,50,-12,32,33,2,1
-0,82,0,8,0,45,74,30,1
-0,88,0,-2,-8,3,90,88,5
-0,79,0,10,3,42,68,26,1
-3,83,0,46,0,35,37,2,1
-0,81,0,38,14,43,42,0,1
--5,77,0,42,13,37,36,0,1
--10,78,0,0,6,39,78,40,1
-0,85,-7,46,0,37,39,2,1
-0,77,-5,36,16,40,41,0,1
-3,81,2,44,0,37,37,0,1
-0,96,0,50,21,41,47,6,4
-1,87,3,56,12,31,30,0,1
-2,98,0,46,26,42,51,10,4
-0,102,0,72,12,1,30,28,5
-0,97,1,50,-7,41,48,6,4
--1,85,0,54,-4,30,31,2,1
-0,79,0,10,1,43,69,26,1
-1,82,-3,44,0,38,38,0,1
-0,102,-1,70,-7,1,33,32,5
--1,88,0,38,0,49,50,0,1
-0,78,-1,44,-2,33,34,2,1
-0,96,0,34,10,59,62,4,1
-0,106,0,70,0,2,36,34,5
-2,97,0,38,0,58,58,0,1
--2,104,0,72,12,1,31,30,5
--3,83,0,46,13,37,36,0,1
--3,100,0,38,0,62,62,0,1
-0,109,0,64,-14,43,45,2,1
-2,86,0,44,-7,41,42,2,1
-0,79,-1,36,-10,42,43,2,1
--2,76,0,38,-24,35,37,2,1
-0,78,-2,2,-6,41,75,34,1
-0,76,0,24,31,39,53,14,1
-0,84,-3,50,0,34,35,0,1
-0,82,2,44,0,37,38,0,1
-0,80,0,8,2,43,72,30,1
-0,86,7,54,0,33,32,0,1
-0,79,1,0,0,24,79,56,4
-0,81,0,50,0,31,32,0,1
-0,77,0,36,-3,40,41,2,1
-0,103,-7,26,0,66,77,12,1
-0,81,8,54,0,26,26,0,1
-4,80,0,46,31,35,34,0,1
--1,81,0,42,13,41,40,0,1
-0,96,0,44,-30,41,52,12,4
-2,82,-4,46,6,36,35,0,1
-0,83,2,42,0,39,41,2,1
-5,88,2,52,0,36,36,0,1
--2,99,0,42,-11,56,58,2,1
-0,97,0,12,1,59,84,24,1
-0,108,4,46,1,62,61,0,1
-0,81,0,8,-12,44,73,28,1
-4,80,5,38,0,41,41,0,1
-5,77,0,38,0,38,38,0,1
-4,77,-4,44,0,22,34,12,4
-0,106,0,50,26,58,57,0,1
-0,77,5,46,1,32,31,0,1
-5,76,0,42,0,34,35,0,1
-4,81,0,46,28,36,35,0,1
-0,76,4,46,1,30,30,0,1
-0,76,-4,34,6,39,42,2,1
--1,84,-2,46,-4,38,38,0,1
-0,82,0,-12,-11,26,95,68,4
--1,96,-3,50,-21,41,47,6,4
-0,87,4,-40,1,5,128,124,5
-0,87,0,46,-1,41,41,0,1
--2,98,0,50,0,42,49,6,4
-1,81,0,54,4,27,26,0,1
-0,97,-4,50,0,41,48,6,4
--2,76,0,28,0,40,48,8,1
--2,85,8,42,0,42,44,2,1
--1,85,-6,42,-9,42,44,2,1
-0,87,-2,46,0,41,41,0,1
-3,83,8,46,0,36,37,0,1
-0,85,0,50,2,36,36,0,1
-0,77,0,16,-14,22,62,40,4
-4,81,0,52,0,28,29,0,1
-0,79,0,26,-3,43,54,10,1
-5,80,0,20,5,43,59,16,1
-0,77,0,18,16,22,59,38,4
-0,92,4,46,0,45,45,0,1
--3,83,0,50,0,33,34,2,1
-0,86,-1,56,-10,27,29,2,1
-0,86,0,52,-12,33,35,2,1
-6,93,0,44,2,49,50,0,1
-2,89,0,8,0,2,81,80,5
--4,82,1,54,0,27,28,0,1
-1,90,0,28,29,53,62,8,1
--1,80,0,-2,0,43,83,40,1
-0,83,0,42,-9,39,41,2,1
-0,77,0,-28,-4,21,105,84,4
-4,106,0,50,0,56,57,0,1
--1,76,0,36,-25,39,40,2,1
-0,87,0,42,-30,43,46,2,1
-0,80,0,-2,5,25,83,58,4
-0,97,0,46,5,41,50,8,4
-0,88,0,54,0,34,33,0,1
--2,89,2,44,0,44,45,0,1
--3,108,0,52,-15,55,56,2,1
-2,85,0,42,-28,41,44,2,1
-0,78,0,6,9,23,73,50,4
-0,96,8,50,0,40,47,6,4
-2,86,0,42,0,45,45,0,1
-0,98,0,52,12,42,46,4,4
-0,96,0,50,-10,40,47,6,4
-0,83,0,6,3,46,78,32,1
-0,79,0,8,-12,23,71,48,4
-0,75,0,38,-26,34,36,2,1
-0,89,0,2,-6,4,86,82,5
-0,83,0,46,-11,34,36,2,1
-0,77,0,6,31,40,72,32,1
-0,76,0,46,-1,30,30,0,1
-3,95,0,56,4,39,39,0,1
-0,84,0,50,-28,33,35,2,1
--5,88,0,46,0,41,41,0,1
--2,96,3,52,0,41,44,4,4
-0,85,-7,42,0,42,44,2,1
--1,91,-2,-4,1,35,96,60,4
-1,97,6,56,0,40,40,0,1
--1,100,-3,30,-6,64,69,6,1
-0,95,0,42,1,40,54,14,4
-0,76,0,30,13,39,45,6,1
-0,83,0,52,0,30,32,2,1
--3,107,0,36,0,70,71,0,1
-0,76,0,18,-12,40,58,18,1
-4,84,0,-42,-20,4,128,124,5
--4,77,0,50,0,28,28,0,1
-0,78,-2,42,-1,23,37,14,4
-0,84,-2,56,0,27,28,0,1
-3,83,-5,54,0,27,28,2,1
-0,93,0,2,-5,38,91,52,4
-0,84,-4,42,0,41,43,2,1
-0,81,-1,46,0,35,34,0,1
-0,96,0,52,-2,40,44,4,4
-0,94,0,46,-3,46,48,2,1
-0,77,-2,24,-5,21,54,32,4
-0,83,-2,44,-11,37,39,2,1
-0,86,0,50,-7,36,37,2,1
-0,95,-2,16,-4,58,80,22,1
-0,78,0,20,21,41,57,16,1
-3,77,0,26,-16,22,52,30,4
-1,88,0,-2,0,3,90,88,5
--4,83,0,42,0,40,41,2,1
-0,102,0,44,-6,57,58,2,1
--5,75,-8,-40,2,4,116,112,5
-0,86,-3,44,27,42,42,0,1
-0,76,0,-4,141,20,81,62,4
--1,83,0,42,7,42,41,0,1
--1,84,0,52,-2,31,32,0,1
-0,95,-4,44,0,39,51,12,4
-0,85,0,54,0,31,31,0,1
-0,89,0,8,0,2,81,80,5
-1,84,0,52,3,33,32,0,1
--1,101,-1,50,0,51,52,0,1
-0,88,4,50,20,39,39,0,1
-3,80,6,52,0,28,28,0,1
-0,94,0,10,-3,57,84,26,1
--5,107,0,44,-24,62,63,2,1
-0,79,2,46,0,31,32,2,1
-0,95,-1,26,0,58,70,12,1
-0,77,0,38,7,39,38,0,1
-0,78,0,10,-28,41,68,26,1
-4,81,0,54,4,28,27,0,1
--2,79,0,50,0,28,30,2,1
--5,101,0,50,0,52,52,0,1
-4,76,0,-18,-12,20,94,74,4
-4,86,0,44,-7,41,42,2,1
-0,84,-2,-36,0,4,120,116,5
-0,86,-1,-10,15,3,96,92,5
-0,86,1,36,0,50,50,0,1
--1,78,0,50,10,29,29,0,1
-0,83,0,34,-20,46,49,2,1
-0,84,0,-20,-13,4,105,102,5
--1,87,-6,44,0,42,43,2,1
-1,84,-4,44,0,40,41,0,1
-0,84,0,50,-7,33,35,2,1
-0,74,0,30,-19,37,43,6,1
-0,82,-1,44,21,38,38,0,1
--2,81,-6,36,-11,44,44,0,1
-0,79,0,0,0,42,79,36,1
-0,91,0,18,2,53,73,20,1
-0,86,-1,56,-2,28,30,2,1
-0,76,-1,20,-2,40,55,16,1
-0,81,1,28,-26,44,52,8,1
-0,78,0,38,-1,39,39,0,1
-0,82,-59,44,0,37,38,0,1
-0,81,0,42,1,40,40,0,1
-0,81,-3,56,0,24,24,0,1
-0,77,0,34,0,40,43,2,1
--1,108,-7,46,0,62,61,0,1
-0,81,0,46,15,35,34,0,1
-0,76,-6,42,9,34,34,0,1
--1,80,-1,20,18,43,59,16,1
--1,89,0,38,-11,48,50,2,1
-0,83,5,38,-6,42,44,2,1
-4,79,0,38,-22,38,41,2,1
-0,96,0,44,11,41,52,12,4
-0,88,0,38,-6,48,50,2,1
-0,79,0,10,21,23,68,46,4
-0,83,0,44,-4,38,39,2,1
-1,83,0,46,6,37,36,0,1
-0,108,3,46,0,61,62,0,1
--1,83,0,44,17,38,39,0,1
-1,82,0,56,11,26,25,0,1
-0,87,0,-40,8,4,128,124,5
-1,77,0,44,5,34,34,0,1
-0,83,5,46,0,36,37,0,1
--35,107,0,60,-26,35,47,12,3
-0,90,4,42,0,46,48,2,1
--5,80,0,54,10,27,26,0,1
-3,79,0,38,-26,38,41,2,1
-0,83,0,-38,0,4,122,118,5
-0,95,-1,36,-9,39,59,20,4
-4,93,0,42,0,51,52,2,1
-0,76,343,20,0,40,55,16,1
-1,86,5,46,-1,40,39,0,1
-0,82,0,-24,-30,26,108,82,4
--2,81,0,46,-22,33,35,2,1
-0,104,0,24,9,67,81,14,1
-2,86,0,42,0,44,45,2,1
--6,75,-22,0,0,20,75,54,4
-0,88,2,54,0,35,34,0,1
-0,76,0,42,0,35,35,0,1
-0,83,0,0,6,47,83,36,1
-0,77,0,44,4,34,34,0,1
-3,88,-2,-2,0,3,90,88,5
-0,83,-1,44,0,39,39,0,1
-0,81,3,46,0,32,34,2,1
--1,79,-5,26,-9,23,53,30,4
-0,77,4,34,0,40,44,4,1
--5,82,0,54,3,29,28,0,1
-0,88,2,46,13,42,41,0,1
-0,81,1,54,0,27,27,0,1
-0,81,0,52,-20,28,30,2,1
-0,77,0,8,-24,21,69,48,4
-0,77,0,38,-9,36,38,2,1
-0,77,0,-20,-30,41,98,58,1
--4,75,0,28,8,38,46,8,1
-1,84,-4,44,-22,39,41,2,1
-0,76,0,24,-27,39,52,14,1
-5,89,0,42,0,47,48,2,1
--3,101,-4,50,0,51,52,0,1
-0,95,0,52,8,40,44,4,4
--4,83,0,54,0,29,29,0,1
-0,98,-2,42,0,42,57,14,4
-0,88,0,42,5,47,46,0,1
--3,104,0,38,0,67,66,0,1
-0,86,-7,42,0,44,44,0,1
-0,77,0,-30,-9,22,108,86,4
-0,83,0,8,4,46,75,30,1
-0,82,0,36,-23,44,46,2,1
-0,76,-3,20,-3,39,55,16,1
-0,81,3,38,-7,41,43,2,1
-0,79,1,12,-25,23,66,42,4
-0,85,-4,46,8,39,39,0,1
--2,88,0,44,-15,42,44,2,1
-0,83,0,38,-20,42,44,2,1
-0,78,0,8,27,22,70,48,4
-1,108,0,70,0,1,38,36,5
-0,79,5,44,-30,34,35,2,1
-0,84,6,54,-3,29,30,0,1
-0,95,-1,36,-2,39,59,20,4
-0,81,0,46,3,35,35,0,1
--4,86,0,52,15,36,35,0,1
-5,85,0,46,0,37,39,2,1
-3,77,0,38,0,37,38,2,1
-0,79,2,16,27,23,63,40,4
-0,92,4,-4,4,36,97,60,4
-0,83,0,30,-9,46,52,6,1
-1,83,-6,44,-9,38,39,2,1
--3,80,0,18,-2,43,62,18,1
--1,77,3,38,0,38,39,2,1
-0,81,0,28,0,44,52,8,1
-0,109,3,60,0,47,49,2,1
--2,108,1,42,0,67,67,0,1
-0,86,0,50,16,37,37,0,1
-0,106,-3,50,6,57,57,0,1
-0,79,-1,42,-13,35,37,2,1
-0,76,-1,44,-2,31,32,0,1
-5,108,3,70,0,1,38,36,5
-2,79,6,0,0,42,79,38,1
--1,95,-7,44,-4,40,51,12,4
-0,76,-1,16,6,39,61,22,1
--1,97,0,38,-28,56,59,2,1
-0,102,-2,70,-10,1,33,32,5
-2,79,2,50,30,30,30,0,1
-0,86,0,54,31,34,32,0,1
--4,83,0,56,7,27,26,0,1
--1,82,0,42,7,41,41,0,1
-0,79,0,8,-14,42,71,28,1
-0,77,8,28,6,40,49,8,1
-0,89,7,42,27,48,48,0,1
--2,99,5,38,-2,43,60,18,4
-0,77,0,44,20,22,34,12,4
-3,83,-2,-28,0,3,112,108,5
-1,89,0,54,0,35,35,0,1
-0,95,-2,50,2,46,46,0,1
--1,96,0,54,2,40,42,2,1
-0,81,-3,-40,0,4,123,120,5
--4,82,0,42,0,41,41,0,1
-0,79,0,16,23,23,63,40,4
-3,81,0,56,0,25,24,0,1
-4,80,-7,38,0,41,41,0,1
-5,97,0,42,2,41,56,14,4
-0,86,0,54,-26,30,32,2,1
-0,79,-2,20,-4,24,59,34,4
-0,95,1,50,0,40,46,6,4
-0,107,0,28,15,69,78,8,1
--2,80,0,-4,14,25,85,60,4
-2,99,0,46,-5,42,52,10,4
-0,77,0,-10,-10,21,87,66,4
-0,103,0,30,5,66,72,6,1
--1,89,0,50,19,40,40,0,1
-0,81,0,54,-4,25,26,2,1
--2,78,0,54,0,25,24,0,1
-0,79,-1,38,-1,41,41,0,1
-0,82,0,-2,31,45,85,40,1
--1,80,0,38,-15,39,41,2,1
-0,77,0,34,7,40,43,4,1
-3,83,0,54,0,28,28,0,1
-1,86,0,54,-2,30,32,2,1
-1,86,0,42,5,45,44,0,1
--5,108,0,52,-24,55,56,2,1
-0,93,0,10,-1,56,83,28,1
-0,77,0,-22,0,22,101,78,4
--1,77,-3,44,0,22,34,12,4
-0,81,-1,20,0,44,61,16,1
-0,77,0,12,-30,22,65,42,4
-0,77,-1,-28,1,21,105,84,4
-0,79,8,24,0,42,56,14,1
-0,76,0,-14,12,21,92,70,4
-0,85,2,46,15,40,39,0,1
--4,77,0,44,0,33,34,0,1
-1,87,1,44,3,43,43,0,1
-0,79,-1,12,-3,43,66,24,1
-0,92,0,52,6,36,40,4,4
--1,84,0,52,0,32,32,0,1
-3,81,0,50,5,32,32,0,1
-0,76,0,30,-22,39,45,6,1
--5,88,0,46,0,41,41,0,1
-5,77,0,38,13,39,38,0,1
-0,96,0,52,-30,40,44,4,4
--1,81,0,52,-1,29,30,0,1
--4,79,0,54,0,24,24,0,1
--2,81,0,56,6,25,24,0,1
-4,85,0,42,0,43,44,2,1
-0,103,0,70,-7,1,33,32,5
-1,75,0,38,-24,34,36,2,1
-0,86,0,52,0,35,35,0,1
-0,79,0,28,8,42,50,8,1
-0,87,4,54,0,32,33,2,1
--5,86,-2,-4,-17,3,91,88,5
-0,77,7,42,0,35,36,2,1
-0,77,0,44,-24,32,34,2,1
-0,81,0,38,27,43,42,0,1
--2,77,0,0,27,40,77,36,1
-0,97,4,52,25,41,45,4,4
-1,83,0,46,0,36,37,0,1
--2,106,0,42,-10,62,64,2,1
-0,76,-4,18,-2,39,57,18,1
-0,87,0,42,-13,44,46,2,1
--2,83,5,34,0,46,49,4,1
-0,86,-4,44,4,43,42,0,1
-0,103,0,30,1,66,72,6,1
-0,83,4,34,0,46,49,4,1
-0,75,0,34,-14,38,41,2,1
-0,76,0,34,9,39,42,2,1
-0,81,0,-2,-2,25,83,58,4
--1,109,0,50,-7,59,60,2,1
-7,79,0,42,0,35,37,2,1
-0,76,0,16,-9,39,61,22,1
-0,87,-1,50,8,38,38,0,1
-0,86,-4,56,0,29,30,0,1
-2,95,0,54,13,39,41,2,1
-0,77,0,34,8,40,43,2,1
-0,95,-2,24,-23,58,72,14,1
-0,83,-3,44,-4,38,39,2,1
-0,77,0,42,15,36,35,0,1
-0,95,-7,12,-8,58,82,24,1
-0,88,0,46,0,43,42,0,1
-0,106,13,26,-2,69,80,12,1
-1,86,0,38,8,49,48,0,1
-0,86,0,56,30,31,30,0,1
-1,88,0,46,0,41,41,0,1
--1,85,0,-40,2,4,126,122,5
-0,76,0,24,-14,40,53,14,1
-0,90,8,46,0,44,44,0,1
-0,76,0,-18,-23,21,94,74,4
-1,76,0,36,-15,38,39,2,1
-0,83,2,8,-2,47,75,28,1
--2,82,0,44,-14,37,38,2,1
-1,93,-1,38,0,55,55,0,1
-0,89,0,42,-16,46,48,2,1
-1,83,-3,46,0,36,36,0,1
-0,97,0,50,-25,41,48,6,4
-0,88,0,2,-16,3,86,82,5
-0,77,0,46,1,31,30,0,1
--1,99,0,50,8,43,49,6,4
-0,83,0,16,20,46,67,22,1
-0,87,0,42,0,45,46,2,1
-0,79,0,56,12,23,22,0,1
-0,76,-1,46,-2,30,30,0,1
-0,98,0,42,-6,42,57,14,4
-4,83,0,42,7,41,41,0,1
-0,78,0,10,-14,41,68,26,1
--5,82,0,36,-1,45,46,0,1
-0,88,0,0,-23,3,88,86,5
--4,81,0,52,0,30,30,0,1
-0,79,0,16,18,42,63,22,1
-0,76,0,34,27,39,42,2,1
-0,80,0,-2,-2,43,83,40,1
--5,89,0,44,10,46,45,0,1
-0,78,-5,6,0,41,73,32,1
-4,80,0,36,-6,42,44,2,1
-0,76,0,-12,7,20,89,68,4
-1,108,0,70,0,2,38,36,5
-0,76,1,36,0,40,40,0,1
-0,110,-4,46,-2,61,64,2,1
-2,106,-2,42,7,65,65,0,1
-0,97,2,46,1,41,50,10,4
-0,97,0,46,5,41,50,10,4
--2,108,0,42,-17,64,66,2,1
-0,82,3,44,0,37,38,2,1
--1,79,1,0,0,42,79,36,1
-0,77,0,28,-16,40,48,8,1
-0,107,-4,38,0,68,68,0,1
-0,87,-11,46,-3,41,41,0,1
-1,79,0,56,0,22,22,0,1
-0,76,2,30,-30,40,45,6,1
-0,83,-7,30,0,46,52,6,1
-1,76,-2,42,-3,33,35,2,1
-0,86,2,46,-24,38,40,2,1
-0,106,0,36,17,68,69,2,1
-0,81,-1,50,-1,30,32,2,1
--5,81,0,46,6,35,34,0,1
-0,102,3,54,6,49,48,0,1
-0,81,0,8,-6,44,73,28,1
-0,79,0,18,-22,23,61,38,4
--3,97,1,44,9,41,53,12,4
-0,79,-1,36,-1,42,43,0,1
-0,78,0,16,18,41,63,22,1
--2,91,0,56,0,33,34,2,1
--1,85,0,38,0,45,46,2,1
-0,76,0,24,9,39,53,14,1
-0,79,-2,42,0,36,37,2,1
-0,77,0,-4,2,21,82,60,4
-1,107,0,46,0,59,60,0,1
-0,79,1,24,-8,23,55,32,4
-0,77,0,42,20,22,36,14,4
-1,76,0,42,-11,32,34,2,1
-0,81,0,-10,-5,25,91,66,4
-0,109,0,64,-9,43,45,2,1
-0,78,0,18,-26,42,60,18,1
-0,96,0,46,4,41,50,8,4
--1,91,0,50,-24,40,42,2,1
-0,78,0,18,-1,41,60,18,1
-0,83,0,-2,22,46,85,40,1
--4,76,0,42,-13,33,35,2,1
-5,86,0,38,-17,45,48,2,1
--2,95,-4,46,0,48,48,0,1
-0,86,0,54,-6,30,32,2,1
-1,78,-2,44,0,34,34,0,1
--3,100,0,46,0,54,53,0,1
-3,83,0,46,-3,34,37,2,1
-5,86,-1,50,0,36,37,2,1
-0,95,0,54,14,40,41,2,1
-3,93,0,42,16,52,52,0,1
-0,76,0,-18,-6,21,94,74,4
-0,79,0,54,5,25,24,0,1
-0,75,0,36,0,39,39,0,1
-3,81,-7,52,17,30,30,0,1
-0,85,4,46,24,40,39,0,1
-0,95,0,28,1,58,67,8,1
--1,77,7,38,0,38,38,0,1
-3,88,0,52,-6,35,36,2,1
--1,95,0,52,-7,40,44,4,4
-0,96,-1,42,-2,41,55,14,4
-1,86,0,44,3,43,42,0,1
-0,83,0,42,-23,39,41,2,1
-1532,106,-2,34,-35,42,72,30,6
-0,93,0,30,11,55,62,8,1
-0,75,0,36,17,37,39,2,1
-0,81,-2,50,-3,30,32,2,1
-0,93,0,10,19,55,82,28,1
-2,83,0,42,29,42,42,0,1
-0,81,1,44,11,37,37,0,1
--3,76,0,-18,-5,21,94,74,4
-0,77,0,38,4,40,39,0,1
-0,81,-1,-10,23,25,92,66,4
--5,79,0,56,0,22,22,0,1
-0,96,0,52,-11,40,44,4,4
--1,84,1,-20,0,4,105,100,5
-0,77,0,-14,-19,21,92,72,4
-0,106,0,38,8,68,67,0,1
-0,107,12,28,0,70,78,8,1
-0,103,0,18,-9,66,85,20,1
-0,78,0,8,-7,41,70,30,1
--2,87,-2,44,0,43,43,0,1
--2,87,6,46,0,41,41,0,1
--5,106,0,42,-9,62,64,2,1
-5,77,0,46,-8,28,30,2,1
-0,93,0,10,-16,56,83,26,1
-4,82,0,42,10,41,41,0,1
-0,77,0,18,13,40,59,18,1
-0,88,-5,46,10,43,42,0,1
-0,96,0,38,25,59,57,0,1
-0,74,0,34,22,37,41,4,1
-0,104,5,28,0,67,76,8,1
-1,79,0,42,-4,24,37,14,4
--4,81,0,38,0,43,42,0,1
-5,79,2,46,0,31,32,0,1
-0,88,0,44,-10,42,44,2,1
-1,81,7,50,0,30,32,2,1
-0,79,0,42,7,38,38,0,1
--1,105,0,34,-15,68,71,4,1
-0,95,0,44,6,40,51,12,4
-0,79,-1,38,-16,38,40,2,1
-0,76,0,18,-22,40,58,18,1
-2,75,1,-42,-11,4,119,114,5
-0,80,5,42,0,38,39,0,1
-0,95,0,42,22,40,54,14,4
-0,85,-7,52,0,33,33,0,1
-0,89,0,38,-15,48,50,2,1
--1,83,0,54,14,30,29,0,1
-0,77,0,44,-27,32,34,2,1
-0,85,0,38,0,44,46,2,1
-0,92,0,8,-2,37,84,48,4
--1,96,0,52,0,41,44,4,4
--5,76,0,42,8,35,34,0,1
--4,88,0,50,0,37,39,2,1
-0,80,0,44,-30,34,36,2,1
-0,92,0,30,5,36,61,24,4
-0,109,0,64,-18,43,45,2,1
-0,76,0,24,-19,39,52,14,1
-1,83,8,42,0,42,42,0,1
-0,88,0,42,-9,45,47,2,1
-3,78,-6,42,-1,23,37,14,4
-2,81,0,52,4,29,29,0,1
--2,79,0,42,0,36,37,2,1
-0,77,0,44,5,34,34,0,1
-0,80,-4,46,0,33,34,0,1
-0,81,0,36,-15,43,44,2,1
-0,105,0,36,12,68,69,2,1
-0,76,0,28,4,39,48,8,1
-0,77,1,34,6,40,43,2,1
--3,89,0,46,0,41,42,2,1
--2,106,0,38,0,66,67,0,1
-0,80,2,18,0,43,62,18,1
-0,96,8,34,0,40,62,22,4
-0,86,0,-6,-14,3,94,90,5
--5,81,0,44,15,38,37,0,1
--1,108,-1,38,-14,67,69,2,1
-0,79,0,42,4,38,38,0,1
-0,82,-1,42,0,39,41,2,1
-0,77,0,44,30,34,33,0,1
-5,97,5,52,-3,40,45,4,4
-0,81,3,38,19,44,43,0,1
-0,86,0,46,24,40,39,0,1
-0,88,2,44,-23,42,44,2,1
-0,79,0,10,6,23,68,46,4
--2,107,-9,28,0,70,78,8,1
-1,77,0,46,31,32,31,0,1
-3,81,0,52,5,29,29,0,1
-0,95,0,50,0,39,46,6,4
-4,81,0,56,4,24,24,0,1
-0,77,0,24,-30,40,54,14,1
-0,77,0,44,-25,31,33,2,1
-0,80,0,38,-11,39,41,2,1
-0,79,-5,8,0,42,72,30,1
-0,77,0,54,7,23,23,0,1
-3,83,0,46,7,37,36,0,1
-2,85,0,52,-8,32,33,2,1
-0,96,1,38,-9,40,57,18,4
-2,77,0,46,0,30,30,0,1
-0,103,0,24,-20,66,80,14,1
-0,76,0,26,-21,40,50,10,1
-0,82,3,44,0,37,38,0,1
-0,87,-3,50,0,38,38,0,1
--3,81,-1,44,0,36,37,2,1
-0,80,0,46,24,35,34,0,1
-0,100,0,30,-19,64,69,6,1
-2,79,0,38,0,39,41,2,1
-0,97,0,44,23,41,53,12,4
--1,79,1,42,0,36,37,2,1
-0,84,0,54,7,30,30,0,1
-0,82,0,50,-5,31,33,2,1
-0,79,-3,42,0,36,37,2,1
-0,104,8,24,0,66,80,14,1
-0,84,0,50,-6,34,35,2,1
-0,77,0,-20,-17,21,97,76,4
-2,76,-1,46,0,30,30,0,1
--2,79,0,42,0,38,37,0,1
-0,88,8,46,12,43,42,0,1
--2,82,0,50,-12,31,33,2,1
-0,85,1,44,-29,39,41,2,1
-0,79,0,18,-13,23,61,38,4
-4,82,0,-42,-6,5,126,120,5
-0,85,0,42,1,44,44,0,1
-2,79,0,16,4,23,63,40,4
-0,79,5,-22,0,24,103,80,4
-0,84,-5,-14,0,3,99,96,5
-0,77,0,30,-22,41,46,6,1
-0,96,0,52,-17,40,44,4,4
-0,88,0,52,-24,35,37,2,1
-2,89,2,42,0,47,48,0,1
-0,93,0,46,6,48,47,0,1
-0,79,6,38,0,38,40,2,1
-0,102,8,52,0,50,51,0,1
-0,77,0,-18,6,21,95,74,4
--1,81,0,44,4,38,37,0,1
--3,81,0,52,-19,28,30,2,1
-0,81,0,18,-22,44,63,18,1
-0,85,0,46,11,40,39,0,1
-0,88,-3,54,0,34,33,0,1
-1,81,-3,42,0,38,40,2,1
--5,104,-1,70,0,1,35,34,5
-0,79,-2,26,-9,42,53,10,1
--3,83,0,36,0,47,47,0,1
-0,81,0,30,9,45,50,6,1
-0,85,0,52,3,34,33,0,1
-0,77,0,-10,12,21,87,66,4
-0,105,0,38,7,67,66,0,1
-1,81,0,54,0,27,26,0,1
-0,81,0,24,21,44,58,14,1
-0,96,1,42,-15,41,55,14,4
-0,77,4,38,0,38,38,0,1
-0,88,3,52,0,36,36,0,1
--2,86,0,44,-18,40,42,2,1
-0,87,4,54,0,33,33,0,1
--1,91,0,50,0,41,42,0,1
-0,83,0,-32,22,4,117,112,5
-0,89,4,42,0,46,48,2,1
-0,88,-6,42,0,45,47,2,1
-0,84,3,44,-7,39,41,2,1
-0,86,0,38,-23,45,47,2,1
-1,87,0,44,-26,41,43,2,1
--5,107,0,38,4,69,68,0,1
-0,90,0,50,4,42,41,0,1
-0,77,0,26,-9,40,51,12,1
-5,85,2,-40,3,4,126,122,5
-0,79,-3,28,0,43,51,8,1
-0,88,0,46,-17,40,42,2,1
-0,96,0,52,12,41,44,4,4
-5,79,0,42,-17,35,37,2,1
-4,83,0,38,0,43,44,0,1
-0,86,8,44,-10,40,42,2,1
-0,86,0,38,-1,45,47,2,1
-0,80,0,56,15,24,23,0,1
-2,105,0,70,-29,1,35,34,5
-0,79,0,-2,-22,24,82,58,4
-0,101,3,30,14,64,70,6,1
-3,85,0,-12,0,3,98,94,5
-0,77,-2,24,-5,22,54,32,4
-5,76,0,38,0,38,37,0,1
-0,93,-4,18,0,38,75,38,4
--1,97,-7,50,0,42,48,6,4
-0,76,0,-12,22,20,89,68,4
-0,84,5,52,5,32,32,0,1
-0,79,-2,26,-5,23,53,30,4
-0,108,3,36,0,71,72,0,1
-0,77,0,-24,-28,40,103,62,1
-0,86,0,42,18,45,44,0,1
-1,79,0,44,4,35,35,0,1
-0,90,-2,46,-4,43,43,0,1
--3,83,-1,54,0,28,28,0,1
-0,107,0,46,9,61,60,0,1
-5,76,0,42,8,34,34,0,1
-0,81,0,-6,5,25,88,64,4
-0,87,1,44,-23,42,43,2,1
-3,86,-3,42,0,43,45,2,1
-5,79,0,54,-7,24,25,2,1
--3,77,0,50,1,28,28,0,1
-0,91,5,6,0,53,86,32,1
-2,83,0,-42,0,4,126,122,5
-0,81,0,54,8,27,26,0,1
-0,82,0,-32,-2,26,115,90,4
-1,85,0,38,0,46,46,0,1
-1,82,0,46,7,36,35,0,1
-2,80,0,36,0,43,44,0,1
-1,81,0,-40,177,4,123,120,5
-0,81,0,38,0,41,43,2,1
-0,81,0,46,10,36,35,0,1
-1,86,8,46,2,41,40,0,1
-0,86,8,42,20,46,45,0,1
-0,77,0,36,16,22,41,20,4
--3,76,0,36,0,39,39,0,1
-3,83,0,42,6,41,41,0,1
-0,93,2,38,6,37,54,16,4
-0,106,0,20,-12,69,85,16,1
-0,80,0,-10,0,25,90,66,4
-5,78,1,46,0,31,32,0,1
--2,81,0,-40,47,4,123,118,5
-0,76,3,28,-7,39,48,8,1
-0,77,0,42,-13,34,36,2,1
-0,75,0,44,8,31,31,0,1
-0,81,6,30,0,44,50,6,1
-0,104,0,16,-9,67,88,22,1
--2,86,0,54,5,33,32,0,1
-0,76,0,20,-16,39,55,16,1
-0,77,5,-2,0,21,79,58,4
-0,78,-2,8,-5,23,70,48,4
-0,85,-3,50,0,35,36,0,1
-0,78,0,20,-9,42,57,16,1
-0,90,4,26,0,53,64,12,1
-1,84,0,54,-3,29,30,2,1
-0,95,0,54,5,40,41,2,1
--3,80,0,44,0,36,36,0,1
-0,76,0,44,-5,30,32,2,1
-0,64,-36,42,-6,21,23,2,1
-0,86,-6,44,0,41,42,2,1
-0,104,0,16,-12,67,89,22,1
--2,76,0,46,0,28,29,0,1
-0,89,0,44,31,46,45,0,1
-0,76,7,28,12,40,48,8,1
-5,79,0,54,0,25,25,0,1
--4,76,0,42,0,34,34,0,1
-0,107,0,44,0,62,63,2,1
-0,109,0,52,0,56,57,0,1
-0,77,0,10,15,22,67,46,4
-0,91,6,6,0,53,86,32,1
-0,95,0,44,13,52,51,0,1
--5,77,0,54,0,24,23,0,1
-0,97,-3,50,0,41,48,6,4
-0,97,0,54,-10,41,42,2,1
-0,97,0,56,3,40,40,0,1
-0,87,1,44,-7,42,43,2,1
-0,83,0,42,13,42,42,0,1
-0,76,0,42,0,33,34,2,1
--1,77,0,26,-30,22,52,30,4
-0,80,-3,44,2,36,36,0,1
-0,76,0,38,15,39,37,0,1
-0,103,0,30,12,66,72,6,1
-0,95,0,42,-25,52,54,2,1
-0,108,-5,34,-1,71,74,4,1
-5,85,0,46,0,36,39,2,1
--1,77,0,-22,0,22,100,78,4
-0,81,0,2,2,25,78,54,4
-0,78,0,18,0,23,60,38,4
-0,100,0,30,-5,64,69,6,1
-0,97,0,52,16,41,45,4,4
-0,86,3,52,0,34,34,0,1
-4,81,0,46,3,35,35,0,1
-0,88,1,46,6,42,41,0,1
-0,108,0,36,0,72,72,0,1
-0,80,0,10,12,43,70,26,1
-22,77,0,28,0,26,48,22,2
-4,104,0,18,8,66,86,20,1
--3,107,0,38,0,69,68,0,1
--4,84,0,44,0,40,40,0,1
--1,80,-3,42,-3,39,39,0,1
--1,79,-1,38,11,41,40,0,1
-0,76,0,-14,3,20,92,72,4
-0,77,0,36,-4,39,41,2,1
-0,95,-2,16,-3,58,80,22,1
-0,83,-4,52,22,32,32,0,1
-0,82,-5,-4,0,45,87,42,1
-0,78,0,20,3,42,57,16,1
--2,92,0,56,0,35,35,0,1
-0,81,0,-10,-13,25,92,66,4
--4,75,0,46,0,28,28,0,1
-3,102,0,46,0,56,56,0,1
-0,98,0,50,-17,42,49,8,4
-0,89,6,46,-9,40,42,2,1
-0,77,-4,26,11,40,51,10,1
-0,94,0,50,31,46,45,0,1
-0,80,0,26,9,43,54,10,1
-0,79,0,42,-31,35,37,2,1
--4,87,5,50,0,37,38,0,1
-0,76,0,34,-13,39,42,2,1
-1,87,0,56,0,31,30,0,1
-0,77,0,-22,0,41,101,60,1
-0,79,-5,46,25,33,32,0,1
-0,82,0,46,0,36,35,0,1
--5,85,0,46,0,37,39,2,1
-0,108,3,54,-6,52,53,2,1
-0,77,0,50,-28,26,28,2,1
-0,78,0,16,-7,23,63,40,4
-2,83,0,36,-21,45,46,2,1
--5,87,0,44,-6,42,43,2,1
-0,92,1,26,7,37,66,30,4
--1,89,0,54,0,34,35,0,1
-0,76,0,26,-6,40,50,10,1
-0,77,0,-12,1,21,90,68,4
-1,82,-3,44,0,37,38,2,1
--5,88,0,46,0,42,41,0,1
-0,79,0,20,22,42,58,16,1
--5,82,0,56,30,26,25,0,1
-0,81,0,-18,4,25,99,74,4
--1,77,0,38,0,37,39,2,1
-5,87,-2,50,-18,36,38,2,1
-0,82,0,16,3,45,66,22,1
-0,85,0,44,59,41,41,0,1
-3,77,0,50,1,28,28,0,1
-0,85,0,38,9,44,46,2,1
-0,90,6,46,0,43,43,0,1
-0,82,0,38,4,44,43,0,1
-0,85,0,-6,24,3,93,90,5
-5,81,0,44,-16,35,37,2,1
-0,97,-1,20,-3,60,77,16,1
--1,76,-4,44,12,32,32,0,1
-0,76,0,30,31,39,45,6,1
-0,86,3,52,0,33,34,0,1
-0,85,2,42,-5,42,44,2,1
--1,87,0,46,-4,39,41,2,1
-0,86,-1,42,0,43,44,2,1
-0,81,4,38,22,43,42,0,1
--8,76,-4,-2,0,37,79,42,1
--1,83,0,-30,0,4,114,110,5
-0,77,0,6,7,40,72,32,1
-1,81,0,54,6,28,27,0,1
-0,77,0,10,26,40,66,26,1
-0,80,-2,26,-13,43,54,12,1
-0,77,0,44,-12,32,34,2,1
-0,77,0,0,-12,22,77,56,4
-0,82,0,44,-28,37,38,2,1
--1,81,0,46,0,34,34,0,1
-0,86,0,42,1,45,45,0,1
-2,98,0,52,12,42,46,4,4
-0,86,-7,44,-9,40,42,2,1
-4,77,1,-2,-28,40,80,40,1
-0,84,-6,42,0,42,43,0,1
--5,79,-4,38,0,40,40,0,1
-3,80,-2,46,0,34,34,0,1
-0,103,2,70,-4,1,33,32,5
-0,92,0,8,-1,37,84,48,4
-3,77,0,28,0,23,48,24,4
-2,106,0,38,0,66,67,0,1
--1,92,0,56,21,36,35,0,1
-0,79,0,12,9,42,66,24,1
-0,93,0,6,14,38,88,50,4
-3,77,0,44,12,33,33,0,1
-0,93,0,2,-19,38,91,52,4
-3,81,0,44,-4,35,37,2,1
-3,75,13,0,1,18,75,56,4
-1,86,0,44,-4,41,42,2,1
-2,81,1,52,0,29,30,0,1
-0,75,0,20,1,38,54,16,1
-0,108,0,42,8,67,67,0,1
-0,86,0,-12,0,3,99,96,5
-0,80,0,44,-4,35,36,2,1
-0,106,-7,36,0,69,70,0,1
-0,80,0,54,-4,25,26,2,1
-0,82,6,-14,-2,26,97,70,4
-0,76,6,24,12,39,53,14,1
-0,109,0,64,-16,43,45,2,1
-0,102,0,46,-6,53,55,2,1
-1,85,0,54,0,31,31,0,1
-1,81,0,36,-4,43,44,2,1
--2,85,0,54,7,32,31,0,1
-0,77,6,42,0,34,35,2,1
-0,77,0,10,-30,22,67,46,4
-0,86,0,42,-21,43,45,2,1
-0,99,-1,42,0,58,58,0,1
--1,83,-7,-40,0,4,125,120,5
-0,95,0,50,-18,40,46,6,4
--1,83,6,38,-5,42,44,2,1
-0,99,0,28,-4,61,70,8,1
-0,76,-2,34,0,39,42,4,1
-4,85,0,54,2,32,31,0,1
-0,81,0,-6,-18,25,89,64,4
-0,80,-1,34,-1,43,46,2,1
--3,76,-7,38,0,37,37,0,1
--1,87,0,46,-2,39,41,2,1
-0,86,8,-6,7,4,94,90,5
-0,75,5,24,-2,38,52,14,1
-0,95,0,46,16,40,49,10,4
-0,96,0,46,2,41,50,8,4
-1,76,0,36,18,39,40,2,1
-0,83,0,42,4,42,42,0,1
-0,87,0,56,-14,28,30,2,1
-0,84,5,50,0,35,35,0,1
-0,76,-5,-20,0,21,97,76,4
-0,79,0,16,15,23,63,40,4
-0,77,0,2,-4,40,75,34,1
-0,97,3,12,0,59,84,24,1
-0,93,0,16,-9,38,78,40,4
-0,88,-5,50,25,39,39,0,1
--5,86,0,54,-9,30,32,2,1
--1,76,0,42,-8,33,35,2,1
-0,97,1,42,-29,53,55,2,1
-0,79,0,10,10,42,68,26,1
-0,102,0,50,-21,51,53,2,1
--1,77,0,28,0,22,48,26,4
-1,86,8,46,0,39,40,2,1
-4,88,0,46,0,41,42,0,1
-0,81,0,50,6,32,32,0,1
-0,86,-4,60,27,28,27,0,1
-2,83,0,-40,11,4,125,120,5
--1,81,0,44,9,38,37,0,1
-0,81,6,16,0,44,65,22,1
-3,83,-3,42,-19,39,41,2,1
-0,88,-6,38,-1,48,50,2,1
-0,108,0,56,-8,49,51,2,1
-0,87,0,50,2,38,38,0,1
-0,98,8,46,0,42,51,8,4
-0,81,-1,36,0,44,44,0,1
-0,92,0,8,13,54,84,30,1
-0,80,-5,-2,0,43,83,40,1
--1,78,-3,0,-10,23,78,56,4
-0,81,0,46,-17,32,34,2,1
-0,95,-2,44,18,52,51,0,1
-0,87,-7,44,0,43,43,0,1
--1,79,0,36,0,43,43,0,1
-1,87,0,50,22,38,38,0,1
-0,79,0,36,-8,41,43,2,1
-0,79,0,2,-2,43,77,34,1
-0,82,3,42,0,39,41,2,1
-0,80,-7,8,0,43,72,28,1
-3,76,0,38,-4,35,37,2,1
-0,97,0,56,9,40,40,0,1
-0,85,0,46,-16,36,39,2,1
-3,112,0,68,0,44,45,0,1
--1,79,8,54,6,26,25,0,1
-0,76,-2,42,-4,35,35,0,1
-0,75,0,30,-9,38,44,6,1
--2,77,0,36,0,41,41,0,1
--5,86,0,44,9,43,42,0,1
--1,83,0,52,27,32,32,0,1
-0,81,0,42,-7,37,39,2,1
-0,88,2,50,0,39,39,0,1
-1,102,0,52,6,51,50,0,1
-0,87,-2,52,-4,34,35,2,1
-0,86,-7,46,0,38,39,2,1
-0,78,0,16,12,41,63,22,1
-0,82,-2,28,0,45,54,8,1
--1,79,0,46,21,33,32,0,1
-0,81,0,30,-5,45,50,6,1
-0,79,-7,10,0,42,69,26,1
-0,75,-5,42,-25,31,34,2,1
--5,102,0,52,0,50,50,0,1
-0,81,0,38,5,43,42,0,1
--1,79,0,38,-30,38,41,2,1
-0,84,-7,50,0,35,35,0,1
-0,79,-3,8,23,24,72,48,4
-0,76,0,34,0,38,42,4,1
--329,105,0,36,0,68,69,0,1
-0,81,0,44,-24,35,37,2,1
-0,86,0,38,-16,46,48,2,1
-0,84,3,-42,-6,4,128,124,5
-3,88,0,42,0,45,46,2,1
-0,97,0,52,-11,41,45,4,4
-0,81,0,42,28,40,39,0,1
-0,86,0,50,15,38,37,0,1
-0,76,-1,38,-1,36,37,0,1
-5,80,0,54,0,25,26,0,1
--5,86,-7,42,0,43,44,2,1
-0,87,1,52,-8,34,35,2,1
-1,91,0,54,-20,35,37,2,1
-0,87,1,52,-12,34,35,2,1
--2,81,0,42,4,40,39,0,1
-0,108,0,54,-6,53,54,2,1
-2,82,0,38,0,43,43,0,1
--4,89,0,42,0,47,48,0,1
-0,75,0,42,-25,32,34,2,1
--1,98,3,46,-25,42,51,8,4
--6,76,-1,44,-2,32,32,0,1
--1,108,0,72,1,1,36,34,5
--1,77,-3,-4,25,21,82,60,4
--4,83,0,42,-10,40,42,2,1
-2,83,0,44,-18,37,39,2,1
-0,77,6,38,1,39,38,0,1
--5,84,0,-14,5,4,100,96,5
--1,79,1,42,-9,35,37,2,1
-3,97,0,52,0,41,45,4,4
-0,77,0,44,-4,32,34,2,1
--2,95,0,52,-11,40,44,4,4
-0,86,-1,54,31,33,32,0,1
--1,85,0,-12,0,4,98,94,5
-0,79,0,8,6,42,71,30,1
-0,75,0,30,-18,38,44,6,1
-3,76,0,38,13,38,37,0,1
--5,76,0,38,0,36,37,2,1
-0,82,0,52,12,31,30,0,1
-0,77,-5,28,-15,21,48,28,4
-0,84,0,44,4,41,41,0,1
-2,83,0,46,-1,34,37,2,1
-0,77,0,46,-2,29,31,2,1
-0,77,-3,-12,-13,40,90,50,1
-5,97,0,38,0,56,58,2,1
--3,82,8,44,0,37,38,2,1
-0,106,0,28,0,69,77,8,1
-0,79,0,42,-10,36,38,2,1
-2,79,0,38,0,40,41,0,1
-2,83,0,36,0,46,46,0,1
-0,107,0,44,-28,61,63,2,1
--3,87,0,50,0,38,38,0,1
-0,78,0,46,20,33,32,0,1
-0,77,0,36,-21,40,41,2,1
-2,86,-1,46,10,41,40,0,1
--1,90,0,46,0,42,43,0,1
-2,77,0,42,20,36,36,0,1
-0,97,0,50,-18,41,48,6,4
-0,77,0,18,27,40,59,18,1
-0,79,0,20,-11,23,58,34,4
--3,76,0,42,0,34,35,2,1
--3,77,0,26,-1,22,52,30,4
-0,79,0,54,8,26,24,0,1
-2,104,0,70,0,1,34,34,5
-0,81,-2,38,-5,43,42,0,1
-0,83,-2,44,-3,37,39,2,1
-0,79,0,38,-4,39,41,2,1
--1,79,0,44,20,35,35,0,1
-0,77,0,0,-6,40,77,36,1
--3,81,0,38,24,44,42,0,1
--1,86,2,54,0,32,32,0,1
-0,77,0,26,16,40,51,12,1
-3,87,-1,54,-21,31,33,2,1
-0,77,0,12,0,41,65,24,1
-0,80,8,6,-28,43,75,32,1
-0,107,1,26,0,69,81,12,1
-0,89,0,42,-23,45,48,2,1
-0,78,0,10,9,41,68,26,1
--2,108,0,72,7,1,35,34,5
-1,75,0,20,19,38,54,16,1
-0,80,-5,38,18,43,41,0,1
-0,83,0,-32,68,4,117,112,5
-0,78,0,50,27,29,29,0,1
-0,96,0,56,24,40,39,0,1
-0,82,8,42,0,39,41,2,1
-0,82,4,-14,14,26,97,70,4
-0,86,1,44,9,43,42,0,1
-0,97,4,44,-2,41,53,12,4
-0,90,0,44,18,47,46,0,1
-0,77,1,26,11,40,51,12,1
-3,86,0,36,0,49,50,0,1
--1,82,0,38,17,45,43,0,1
-0,77,0,-18,13,21,95,74,4
-0,86,0,46,-2,38,40,2,1
-0,104,-6,38,0,66,66,0,1
-0,77,0,-18,-15,40,95,54,1
-0,91,0,50,-7,40,42,2,1
-4,102,0,50,0,52,53,0,1
-0,76,0,38,25,38,37,0,1
-1,83,0,46,0,35,36,0,1
-0,77,0,28,5,21,48,28,4
-0,76,0,28,8,39,48,8,1
-0,95,-3,56,7,40,39,0,1
-0,105,-2,28,0,68,77,8,1
-0,77,0,12,16,21,64,42,4
-0,80,0,42,0,38,39,2,1
-2,88,8,46,0,41,41,0,1
-0,86,3,56,3,31,30,0,1
-0,84,0,50,23,36,35,0,1
-3,78,3,24,0,22,55,32,4
-0,86,-3,44,3,42,42,0,1
-0,97,0,46,3,41,50,10,4
-0,77,-1,20,-23,40,56,16,1
-0,87,0,38,-4,46,48,2,1
-5,85,0,44,2,41,41,0,1
--3,108,0,42,0,65,66,2,1
-1,90,0,56,0,33,33,0,1
-0,97,0,46,7,41,50,10,4
-0,78,0,0,-10,42,78,36,1
-0,78,0,10,-4,42,68,26,1
-0,109,8,60,0,48,50,2,1
-3,77,0,36,-23,39,41,2,1
-0,76,0,36,-4,38,39,2,1
-4,87,0,56,0,29,30,2,1
--5,84,0,54,0,31,30,0,1
-0,84,0,54,-4,28,30,2,1
-3,79,0,38,0,41,41,0,1
-0,79,-1,24,22,24,56,32,4
-0,96,0,38,-4,40,57,18,4
-0,102,0,50,0,51,53,2,1
-0,83,-1,52,0,32,32,0,1
-0,81,8,44,0,36,37,2,1
-0,83,2,38,0,42,44,2,1
-0,76,0,26,-3,39,50,12,1
-0,88,-7,50,0,38,39,0,1
--5,90,0,6,0,52,85,34,1
--1,84,0,42,0,42,43,2,1
-0,77,2,26,6,40,51,12,1
--3,76,5,0,0,20,76,56,4
--4,77,0,46,0,29,30,2,1
-0,100,-1,46,0,54,53,0,1
-0,84,7,38,0,44,45,2,1
--4,111,1,62,-7,47,49,2,1
-0,81,0,38,23,44,43,0,1
-0,81,3,36,0,43,44,2,1
--1,77,0,38,-18,37,39,2,1
-1,81,0,44,5,37,37,0,1
-0,83,-3,44,22,40,39,0,1
--1,77,0,36,-16,39,41,2,1
-0,111,0,68,0,43,44,0,1
--5,86,0,46,0,38,40,2,1
-3,78,-5,46,0,31,32,0,1
-0,90,0,36,11,53,54,2,1
-0,77,0,24,5,40,54,14,1
-0,93,3,0,0,38,93,56,4
-0,86,0,54,-1,31,32,2,1
--3,87,3,-4,0,4,92,88,5
-0,97,0,52,-6,40,45,4,4
-0,77,0,28,-17,40,48,8,1
-4,88,0,42,0,45,46,2,1
-7,77,0,28,0,24,48,24,4
--2,86,0,-4,-11,4,92,88,5
-0,77,0,18,-8,40,59,18,1
-0,103,0,70,-20,1,33,32,5
-0,83,2,42,0,42,42,0,1
-0,79,0,8,2,42,71,28,1
-0,107,0,36,-10,69,71,2,1
-0,76,0,46,5,30,30,0,1
-0,81,0,36,-12,43,44,2,1
-1,78,0,46,13,32,32,0,1
-4,80,1,18,0,43,62,20,1
--3,77,0,38,0,38,38,0,1
-3,86,6,-40,1,5,128,124,5
--2,77,0,44,0,32,33,0,1
-0,80,-4,38,0,41,41,0,1
-2,97,0,38,0,57,59,2,1
-0,83,1,52,5,31,31,0,1
-0,76,-2,42,-3,35,35,0,1
-0,88,4,42,0,46,46,0,1
-0,95,0,52,3,39,43,4,4
-1,77,0,54,0,22,23,2,1
-0,77,0,44,-5,22,34,12,4
-0,83,-2,54,0,28,29,2,1
-1,77,0,-22,0,22,101,80,4
-0,74,0,30,5,37,43,6,1
--1,97,-1,46,0,41,51,10,4
--2,87,1,52,-1,35,35,0,1
-0,86,3,42,0,45,45,0,1
--1,81,-3,52,7,30,30,0,1
-0,81,-2,44,-24,35,37,2,1
-0,108,0,36,20,71,72,0,1
-0,92,0,-6,-1,36,99,64,4
-2,82,-5,44,0,38,38,0,1
-0,82,0,42,28,41,41,0,1
-0,84,0,44,3,40,41,0,1
-2,85,0,56,0,29,28,0,1
-0,95,0,42,-29,40,54,14,4
-1,78,0,46,-6,29,32,2,1
-0,85,0,44,3,41,41,0,1
-3,93,0,42,13,52,52,0,1
-0,77,0,44,6,33,33,0,1
--3,83,0,54,0,29,29,0,1
-0,79,0,42,-10,35,37,2,1
--1,40,-6,36,-10,4,4,0,1
-0,95,0,46,-23,40,49,8,4
-1,86,0,54,-6,30,32,2,1
-1,78,3,38,0,39,39,0,1
-1,82,0,38,-21,41,43,2,1
-0,109,3,42,31,68,67,0,1
--5,96,0,56,0,38,39,0,1
--2,86,-6,44,0,42,42,0,1
-0,77,0,-6,-18,21,85,64,4
-0,93,0,50,0,38,44,6,4
--1,82,0,56,0,24,25,0,1
-0,81,7,36,0,44,45,0,1
-0,96,8,50,0,41,47,6,4
--2,77,0,38,-12,36,38,2,1
-0,78,0,8,-9,41,70,30,1
--2,97,0,44,-21,41,53,12,4
-0,83,0,0,4,46,83,36,1
--2,99,0,50,8,43,49,6,4
-0,77,1,38,4,39,38,0,1
-0,108,0,44,10,64,64,0,1
--3,79,0,46,0,32,33,0,1
-3,83,2,50,0,32,33,2,1
-0,87,0,50,14,38,38,0,1
-0,83,0,46,11,37,36,0,1
-0,79,0,12,22,23,66,42,4
-4,86,0,54,1,32,32,0,1
-1,93,0,44,0,49,50,0,1
-0,77,3,26,13,41,52,10,1
-0,94,0,36,9,56,58,2,1
-2,80,0,-10,0,24,90,66,4
-1,86,0,54,0,30,32,2,1
-0,84,1,38,-9,43,45,2,1
-0,79,0,36,-15,41,43,2,1
-0,95,-5,44,0,40,51,12,4
--1,77,-6,44,0,22,34,12,4
-0,77,0,28,8,41,49,8,1
-0,96,0,54,-26,40,42,2,1
-0,81,5,24,0,44,57,14,1
-0,86,0,-10,13,3,96,92,5
-1,76,0,42,-22,32,34,2,1
-0,80,0,24,-22,43,57,14,1
-0,93,0,12,-4,55,80,24,1
-0,93,0,10,-12,56,83,28,1
-0,97,0,44,9,41,53,12,4
-0,80,0,24,11,43,57,14,1
-0,95,0,46,-11,40,49,8,4
--27,77,-2,44,-3,32,34,2,3
-1,86,0,50,12,38,37,0,1
--2,108,0,42,0,65,66,2,1
-0,111,-1,60,0,50,51,2,1
-0,84,0,50,-1,33,35,2,1
-0,86,0,52,-27,33,35,2,1
-0,79,2,56,0,22,23,0,1
-0,77,-1,38,0,39,38,0,1
-0,80,-7,18,0,43,62,18,1
-0,83,0,46,5,37,37,0,1
-23,77,0,28,0,35,48,14,2
-0,80,8,36,-4,43,44,2,1
-0,81,0,24,-12,45,58,14,1
-0,81,0,42,4,39,39,0,1
-0,82,2,56,0,25,25,0,1
-0,90,3,46,0,44,44,0,1
-0,79,0,12,27,42,66,24,1
-0,95,0,46,4,40,49,10,4
-0,75,0,30,-1,38,44,6,1
-0,82,-1,38,-1,44,43,0,1
-0,86,-1,50,-1,37,37,0,1
-4,82,0,56,0,24,25,2,1
--1,92,-1,6,-4,55,86,32,1
-0,86,-4,44,3,42,42,0,1
-0,86,-2,46,0,38,40,2,1
--4,76,0,44,1,32,32,0,1
--3,92,-1,44,0,48,48,0,1
-3,105,3,70,0,1,35,34,5
--1,86,0,56,9,30,29,0,1
-0,109,0,60,0,48,50,2,1
-0,77,0,-6,20,21,85,64,4
-0,77,0,-20,-6,21,97,76,4
-0,84,0,-12,7,3,97,94,5
-0,79,0,10,9,23,68,46,4
--2,80,0,46,0,34,34,0,1
-0,76,0,18,-4,40,58,18,1
-0,80,-1,42,-14,37,39,2,1
-0,95,0,16,4,58,80,22,1
-0,81,2,52,-14,28,29,2,1
-2,82,-1,44,0,37,38,2,1
-0,76,7,42,0,32,34,2,1
-0,77,0,26,-9,40,51,10,1
-0,98,-3,44,5,42,54,12,4
-1,84,0,-42,-23,4,128,124,5
-0,81,0,44,21,36,37,2,1
-0,104,0,36,-12,67,68,2,1
-0,104,-2,34,0,67,71,4,1
-0,84,1,56,0,27,27,0,1
-0,77,-2,36,-4,40,41,0,1
-0,95,0,52,1,39,43,4,4
-0,77,0,44,14,34,34,0,1
-0,83,0,-40,-13,4,125,120,5
-0,83,-1,50,-2,33,33,0,1
-0,77,2,42,-22,34,36,2,1
-4,106,0,34,0,68,72,4,1
-0,91,0,2,17,35,88,54,4
-0,81,0,26,-12,44,55,10,1
-0,80,0,36,-16,43,44,2,1
-0,84,0,44,-3,39,41,2,1
-0,81,0,38,-24,40,43,2,1
-0,93,6,8,0,55,85,30,1
-2,81,0,56,0,24,24,0,1
-0,78,-6,2,2,41,75,34,1
-0,97,0,46,21,41,50,8,4
-0,85,-3,-22,0,4,108,104,5
-0,82,0,50,-13,31,33,2,1
-0,83,0,46,-8,34,36,2,1
--98,81,0,44,0,36,37,2,3
-0,76,0,36,-15,38,39,2,1
-0,98,-4,30,0,61,67,6,1
-0,84,-3,42,0,41,43,2,1
-0,84,7,-38,0,4,123,118,5
-0,80,0,8,26,43,72,28,1
-5,77,5,36,0,40,41,0,1
-0,79,0,6,0,23,74,50,4
--2,82,0,52,0,30,30,0,1
-0,86,0,56,-17,28,30,2,1
-5,78,0,44,11,34,34,0,1
-3,85,0,-40,8,4,126,122,5
-0,88,-5,46,0,39,41,2,1
-0,97,3,50,0,41,48,6,4
-0,77,-4,0,0,41,77,36,1
-0,94,-3,8,-2,57,86,30,1
-0,103,0,26,6,66,77,12,1
-0,79,0,42,27,39,38,0,1
-0,106,3,24,-22,69,83,14,1
-0,92,3,46,0,45,45,0,1
-4,77,0,42,-23,33,35,2,1
-0,76,0,42,17,35,35,0,1
--1,83,0,46,17,38,37,0,1
-13,95,-3,50,0,44,46,2,1
--2,75,-3,46,-5,29,28,0,1
-9,78,0,38,-6,37,39,2,1
-0,95,0,16,-4,58,79,22,1
-0,83,4,8,-5,47,75,28,1
-0,98,1,54,20,42,44,2,1
-0,97,0,52,7,41,45,4,4
-0,76,0,24,-4,40,53,14,1
--2,83,0,54,-3,27,28,2,1
-0,82,0,-12,0,26,95,68,4
-3,86,0,38,0,47,47,0,1
-0,79,-3,42,8,38,37,0,1
-0,109,0,72,5,1,36,36,5
--1,81,-6,46,-9,34,34,0,1
-0,86,-3,42,0,43,44,2,1
-1,102,0,46,6,57,56,0,1
-0,93,0,28,20,55,64,8,1
-0,88,-1,42,-4,48,47,0,1
-0,84,0,46,2,38,37,0,1
--2,81,0,44,-17,36,37,2,1
-0,79,1,42,0,36,38,2,1
-0,88,0,54,-3,32,33,2,1
-0,82,0,46,10,37,35,0,1
-0,104,-7,18,0,66,86,20,1
--5,80,0,44,0,35,36,0,1
-0,82,0,-4,-8,45,87,42,1
-2,88,4,-2,0,3,91,88,5
-0,106,0,26,-13,69,80,12,1
--2,106,0,30,-318,69,75,6,1
-0,86,0,44,0,41,42,0,1
-0,86,0,-12,-4,3,99,96,5
-0,79,0,28,-13,42,50,8,1
-0,87,1,46,3,41,41,0,1
-0,96,7,42,-11,41,55,14,4
--3,83,0,42,-15,39,41,2,1
-3,82,0,52,7,31,30,0,1
-0,83,0,42,-13,39,41,2,1
--1,96,-4,50,-14,41,47,6,4
-0,75,-1,46,-2,29,28,0,1
-0,97,3,46,29,41,50,10,4
-5,98,2,46,0,42,51,10,4
-0,78,0,46,-17,29,32,2,1
-0,77,0,-30,-5,22,108,86,4
-0,78,0,42,7,37,37,0,1
-0,86,0,42,-28,42,44,2,1
-0,100,0,44,-30,54,56,2,1
--2,83,-6,44,-19,37,39,2,1
-4400,106,50,34,-13,-8,72,80,5
-4,100,0,36,0,64,64,0,1
--2,109,0,44,0,65,66,0,1
-0,77,-3,52,0,26,26,0,1
-0,90,0,44,-13,45,46,2,1
--1,86,0,50,5,37,37,0,1
--3,78,-5,50,0,28,29,2,1
-0,88,0,46,7,42,41,0,1
-0,96,4,44,26,40,52,12,4
-0,79,0,2,-12,42,76,34,1
-0,82,0,-2,3,45,85,40,1
-0,81,-1,34,0,43,47,4,1
-0,85,0,44,-21,39,41,2,1
-0,104,0,26,24,66,78,12,1
-0,88,1,46,-19,39,41,2,1
-0,80,0,42,-7,37,39,2,1
-1,81,0,-6,8,25,88,64,4
-4,78,1,38,0,39,39,0,1
-0,86,-1,54,1,33,32,0,1
-0,90,0,56,19,34,33,0,1
-0,99,0,28,-5,61,70,8,1
-0,80,0,46,17,35,34,0,1
--5,85,0,50,0,36,36,0,1
-3,95,0,46,0,40,49,10,4
-0,93,0,28,-3,56,65,8,1
-1,84,0,-28,-10,4,112,108,5
-0,81,0,42,13,40,39,0,1
-0,81,-5,10,0,44,70,26,1
-0,81,0,24,14,44,57,14,1
-1,109,6,72,1,2,36,34,5
-0,80,-2,42,-15,36,39,2,1
-0,76,0,24,14,40,53,14,1
-0,78,0,6,-9,42,73,32,1
-4,97,0,54,7,40,42,2,1
--1,81,5,38,0,42,42,0,1
--4,89,0,42,-13,46,48,2,1
-9,77,0,28,0,39,48,8,1
-0,79,0,20,-3,42,58,16,1
-0,83,2,26,0,46,57,12,1
-0,81,5,42,-3,38,40,2,1
-0,92,-2,0,3,36,92,56,4
-0,87,0,60,0,28,28,0,1
--2,85,-2,46,-4,38,39,0,1
-0,94,-3,10,3,57,84,28,1
--1,83,-5,44,-7,38,39,2,1
-0,92,0,0,12,36,92,56,4
--1,79,-6,26,-12,23,53,30,4
-0,86,0,60,17,28,27,0,1
-0,86,0,38,-17,45,48,2,1
-0,80,0,20,21,43,59,16,1
-0,86,0,44,-9,41,42,2,1
-3,82,0,52,-6,29,30,2,1
-0,80,0,18,-1,43,62,18,1
--2,83,0,-30,0,4,114,110,5
-0,85,0,56,3,29,28,0,1
-2,76,0,46,0,28,30,2,1
-5,78,-1,50,0,27,29,2,1
-4,79,0,42,-26,35,37,2,1
-0,102,0,52,13,51,50,0,1
-0,81,4,36,0,44,44,0,1
-0,86,3,-24,-11,4,112,108,5
-0,95,0,50,-23,40,46,6,4
-0,80,0,34,-7,43,46,2,1
-0,93,0,2,-20,38,91,52,4
--1,107,0,50,0,56,58,2,1
-0,83,0,30,-4,46,52,6,1
-3,77,0,46,1,31,31,0,1
--1,77,0,-2,-24,40,80,40,1
--64,80,0,34,0,43,46,2,3
-0,83,0,42,4,41,41,0,1
-0,77,0,-18,-11,40,95,54,1
-0,81,0,42,-14,38,40,2,1
--2,92,0,44,0,48,48,0,1
-0,88,-29,46,-241,42,41,0,1
-0,98,0,46,8,42,51,10,4
-0,87,0,46,6,41,41,0,1
--4,77,1,50,0,28,28,0,1
-0,86,-2,42,-16,43,45,2,1
--3,86,0,42,-20,42,44,2,1
-0,86,0,44,19,42,42,0,1
-4,78,0,16,2,41,63,22,1
-0,83,0,28,0,46,54,8,1
-4,81,0,54,-3,25,27,2,1
-0,79,0,46,8,33,32,0,1
-2,88,-1,50,1,39,39,0,1
-0,79,0,18,-28,23,61,38,4
-0,84,-1,-40,8,4,125,120,5
-0,92,0,54,-15,36,38,2,1
--2,104,0,20,-30,67,83,16,1
--1,75,0,18,-18,38,57,18,1
-1,89,0,42,-26,45,48,2,1
-4,93,0,44,16,50,50,0,1
-0,106,-5,36,0,69,70,2,1
--13,82,0,44,0,38,38,0,1
-0,79,0,56,11,23,22,0,1
-0,95,-7,42,11,40,54,14,4
-0,77,0,28,-10,40,48,8,1
-1,84,0,52,0,33,33,0,1
--1,85,0,46,-7,37,39,2,1
-0,81,0,36,-13,44,45,2,1
-0,93,0,2,0,38,91,52,4
-1,81,0,-6,14,25,88,64,4
-0,81,0,36,0,45,45,0,1
--26,88,0,44,0,44,44,0,1
-0,85,4,44,0,41,41,0,1
-0,85,0,46,4,39,39,0,1
-0,89,3,52,7,38,37,0,1
-3,82,0,52,0,29,30,0,1
-5,88,0,52,0,37,37,0,1
--1,81,-6,44,-12,36,37,2,1
-0,74,0,30,2,37,43,6,1
-0,82,0,52,-9,29,30,2,1
--1,88,0,56,0,31,31,0,1
-3,82,0,42,5,41,41,0,1
-0,89,0,42,-13,46,48,2,1
-0,83,0,0,13,47,83,36,1
-0,100,0,44,-13,54,56,2,1
--1,86,0,54,-11,31,32,2,1
-1,80,0,8,11,43,72,30,1
-0,97,0,50,-29,41,48,6,4
-4,106,0,46,0,58,60,2,1
-5,83,0,46,23,37,36,0,1
--2,97,5,44,6,53,53,0,1
-0,95,-7,54,0,40,41,2,1
-0,81,-6,42,0,38,40,2,1
-1,83,-1,38,0,42,44,2,1
-0,92,-2,18,7,55,74,20,1
-0,83,0,52,-3,30,31,0,1
-0,80,3,6,-20,43,75,32,1
-0,107,0,28,-18,70,78,8,1
-3,84,0,42,13,43,43,0,1
-1,87,1,52,0,35,35,0,1
-0,93,3,44,-1,37,49,12,4
--1,86,-4,52,-4,35,35,0,1
-0,81,0,42,-10,38,40,2,1
-0,88,-6,42,0,46,46,0,1
-0,104,0,16,-6,67,89,22,1
-0,83,2,38,0,45,44,0,1
-5,80,0,44,0,35,36,2,1
-0,81,0,20,-2,44,60,16,1
-0,81,-2,46,0,34,34,0,1
--2,84,0,46,-3,36,38,2,1
-5,93,-4,46,0,46,47,2,1
-0,80,0,34,26,43,46,2,1
-1,90,0,8,9,52,82,30,1
-1,78,0,46,10,32,32,0,1
-0,91,0,2,4,35,88,54,4
-0,81,0,42,30,41,40,0,1
-0,83,2,42,-5,39,41,2,1
--4,79,0,38,0,41,41,0,1
-0,77,1,54,13,25,23,0,1
-0,77,0,46,15,32,31,0,1
-4,81,8,42,-12,38,40,2,1
-0,77,3,36,16,41,41,0,1
-1,88,0,50,6,39,39,0,1
--1,78,-3,6,-9,22,73,50,4
-0,81,0,42,12,39,39,0,1
-4,81,0,42,0,39,40,2,1
-4,97,-1,50,-2,40,48,8,4
--1,95,0,50,0,40,46,6,4
-0,79,0,10,-30,43,69,26,1
-0,92,0,24,3,54,69,14,1
-0,79,5,38,0,40,41,0,1
-0,96,-5,56,0,38,39,2,1
-0,97,6,46,0,41,51,10,4
--1,88,0,46,0,42,42,0,1
-4,88,0,46,0,41,41,0,1
-3,78,0,46,0,30,32,2,1
-0,90,-4,36,0,52,53,2,1
-0,81,-1,38,-5,40,42,2,1
-0,78,0,30,1,41,47,6,1
--4,86,-1,38,-13,45,47,2,1
--5,77,0,42,0,35,35,0,1
--1,80,0,52,0,27,28,0,1
-0,81,0,42,-12,37,39,2,1
-0,95,-1,12,-29,58,82,24,1
--1,79,0,42,-18,35,37,2,1
--2,86,0,44,-20,40,42,2,1
-0,92,0,54,4,36,38,2,1
-0,108,7,70,0,2,38,36,5
-0,86,0,42,-4,42,44,2,1
--2,77,0,38,-30,36,38,2,1
--1,77,0,42,0,35,36,2,1
-0,85,0,44,20,42,41,0,1
-0,83,0,46,7,37,36,0,1
-0,76,0,-12,-1,20,89,68,4
--2,98,-3,38,-1,42,59,18,4
-0,81,-4,46,0,33,35,2,1
--3,84,0,56,0,26,27,2,1
-0,95,0,10,0,58,85,28,1
-1,79,0,42,11,38,38,0,1
-0,105,0,30,-3,68,74,6,1
--1,79,0,52,0,27,27,0,1
--2,77,0,38,0,38,39,0,1
-0,76,0,46,8,31,30,0,1
--36,91,0,2,0,47,88,42,3
--2,77,0,44,4,33,33,0,1
--5,106,0,50,0,57,57,0,1
-3,81,0,46,0,34,34,0,1
-0,81,1,44,16,37,37,0,1
-0,76,0,-14,-1,21,92,70,4
-2,86,0,50,0,37,37,0,1
--1,79,0,24,-6,42,55,14,1
-0,78,2,8,-27,22,70,48,4
-0,83,0,44,-17,37,39,2,1
-0,86,0,44,-22,40,42,2,1
-0,81,0,20,-3,44,60,16,1
-2,84,0,50,22,35,35,0,1
-0,77,5,-12,-16,41,90,50,1
-0,97,0,52,30,41,46,4,4
--44,79,2,0,0,34,79,44,3
--4,77,0,26,0,22,52,30,4
-0,86,0,50,16,38,37,0,1
--1,82,0,42,-29,38,41,2,1
-0,84,0,-20,5,4,105,102,5
-5,79,0,56,5,23,23,0,1
--1,97,0,38,0,58,59,0,1
-1,76,3,38,0,37,37,0,1
-3,81,0,44,11,37,37,0,1
-0,88,0,46,2,42,41,0,1
-0,89,1,44,0,44,45,0,1
-0,86,0,-2,21,4,89,86,5
-3,99,5,46,0,43,52,10,4
-0,81,-1,-42,-22,5,125,120,5
-0,77,0,-10,-26,41,88,46,1
-2,95,0,50,23,47,46,0,1
-1,85,1,46,0,38,39,0,1
-2,77,0,42,18,36,36,0,1
--3,79,0,46,23,33,32,0,1
-0,82,0,34,-9,45,48,2,1
-4,85,0,38,0,46,46,0,1
-2,81,0,54,-17,25,26,2,1
-0,93,0,30,5,55,62,8,1
-0,76,-3,46,-5,27,30,2,1
-0,78,0,6,-6,23,73,50,4
-0,95,0,18,0,58,77,18,1
-0,95,-1,42,-12,52,54,2,1
--5,78,0,38,0,40,39,0,1
-0,82,-1,50,-3,31,33,2,1
-0,85,-3,46,-3,39,39,0,1
--1,77,0,42,-10,34,36,2,1
--1,104,0,24,1,67,80,14,1
-0,86,0,46,28,41,40,0,1
-0,91,0,0,-8,35,91,56,4
--2,81,0,46,0,34,35,0,1
-0,81,0,10,-25,45,71,26,1
-0,79,3,10,-8,42,69,26,1
-0,76,2,38,0,36,37,2,1
-0,81,0,44,19,37,37,0,1
-0,104,0,26,4,67,78,12,1
-0,86,0,38,-10,46,48,2,1
-5,87,-1,46,0,40,41,0,1
-0,88,0,42,26,48,47,0,1
--4,88,0,52,0,36,36,0,1
-4,78,0,46,1,32,32,0,1
-4,93,0,46,3,48,47,0,1
-0,77,0,-14,26,21,92,72,4
-0,81,4,46,0,34,34,0,1
-0,96,0,52,9,41,44,4,4
-0,90,0,30,12,53,59,6,1
-1,76,-2,-14,31,21,92,70,4
-0,88,-2,44,25,45,44,0,1
--5,88,0,46,14,43,42,0,1
-0,78,0,42,-18,22,37,14,4
-4,103,2,70,-3,1,33,32,5
-4,86,0,-40,4,4,128,124,5
-0,95,0,46,-5,47,49,2,1
-0,77,0,-20,17,21,97,76,4
-0,96,0,50,-12,40,47,6,4
-1,106,1,72,7,1,33,32,5
--3,81,3,38,0,42,43,0,1
-0,104,0,36,-19,67,68,2,1
-0,88,0,-2,-13,3,90,88,5
-5,86,0,56,0,30,30,0,1
-0,76,0,36,14,39,40,2,1
-0,76,-2,-22,-5,21,99,78,4
-1,102,0,52,7,51,50,0,1
-0,77,0,8,15,40,69,30,1
-0,104,-2,18,-6,67,86,20,1
--4,83,0,42,-18,39,41,2,1
-0,87,-6,42,-8,43,46,2,1
-0,96,-4,50,0,41,47,6,4
-0,79,0,18,-8,23,61,38,4
-1,83,0,44,0,39,39,0,1
-0,76,0,38,29,38,37,0,1
--2,87,1,54,0,32,33,0,1
-0,106,0,44,27,62,62,0,1
--2,85,0,50,0,36,36,0,1
-0,78,0,18,-2,41,60,18,1
-0,78,0,16,1,41,63,22,1
-0,86,-2,-40,1,4,128,124,5
-0,77,0,16,-16,41,62,22,1
--1,77,0,26,-14,22,52,30,4
-2,97,0,54,0,40,42,2,1
-0,77,0,20,8,22,57,36,4
-5,77,0,-22,0,21,100,78,4
--2,79,0,36,0,42,43,0,1
-0,84,0,56,-5,25,27,2,1
-2,95,-2,50,0,41,46,6,4
-1,79,0,44,1,35,35,0,1
-0,95,0,42,24,40,54,14,4
--3,83,0,38,-1,42,44,2,1
--1,80,0,46,-1,32,34,2,1
-0,104,6,28,0,67,76,8,1
-0,86,-7,54,-30,30,32,2,1
-3,81,0,38,-23,39,42,2,1
-0,76,0,28,15,39,47,8,1
-5,83,0,44,-23,37,39,2,1
-1963,88,0,44,0,9,44,34,6
-0,76,0,36,-29,39,40,2,1
-0,77,-2,44,-3,32,33,0,1
-0,75,1,20,-4,38,54,16,1
-0,87,4,54,0,32,33,0,1
-3,88,0,54,3,35,34,0,1
-0,78,0,10,-7,41,68,26,1
-0,80,0,2,-7,43,77,34,1
-0,97,2,44,2,53,53,0,1
-5,81,0,46,16,35,35,0,1
-0,88,-1,2,-4,3,86,82,5
--1,82,-3,36,-26,45,46,2,1
-1,83,0,42,6,42,42,0,1
-4,83,5,38,-4,42,44,2,1
-0,93,0,44,-1,48,50,2,1
-0,84,0,52,18,33,33,0,1
-1,81,0,52,0,28,29,0,1
-1,75,0,42,4,34,34,0,1
-0,90,0,50,-19,38,41,2,1
-0,83,1,8,-1,47,75,28,1
-0,82,0,16,13,45,66,22,1
-0,76,0,24,11,39,52,14,1
-5,88,-2,44,9,44,44,0,1
-0,81,2,46,6,35,34,0,1
-0,80,0,46,14,34,34,0,1
-2,79,0,42,0,38,38,0,1
-0,80,0,46,1,34,34,0,1
--4,106,0,42,0,63,64,2,1
--3,88,2,46,0,41,41,0,1
-3,83,0,50,5,34,34,0,1
-0,95,-4,54,-29,40,41,2,1
-2,111,0,60,-1,50,52,2,1
-5,77,0,36,0,40,41,2,1
-0,76,8,20,0,39,55,16,1
-0,102,0,72,2,1,29,28,5
-0,78,0,46,-13,30,32,2,1
-0,96,0,50,1,40,47,6,4
-5,81,0,-20,0,25,102,76,4
-0,90,0,52,14,38,38,0,1
-5,77,0,38,0,39,39,0,1
--2,86,0,44,-16,40,42,2,1
-0,81,0,52,0,30,30,0,1
-0,95,0,8,-29,58,87,30,1
--1,88,-1,44,12,43,44,2,1
-1,78,0,46,0,32,32,0,1
-0,93,-7,12,0,56,81,24,1
--4,86,0,38,0,48,48,0,1
-0,80,0,18,-27,43,62,18,1
--5,82,4,38,0,43,43,0,1
-0,76,0,42,-17,32,34,2,1
--1,104,0,16,-26,67,88,22,1
-3,113,0,64,0,47,48,2,1
-0,95,5,52,0,40,44,4,4
-0,93,0,12,19,56,81,24,1
-0,88,8,52,-2,36,37,0,1
-0,84,5,52,3,32,32,0,1
-0,93,1,26,1,55,67,12,1
-0,78,0,20,-4,41,57,16,1
-1,78,0,42,2,37,37,0,1
-0,76,0,-12,8,20,89,68,4
--1,86,-3,-4,0,3,92,88,5
-2,81,8,-4,0,25,86,62,4
--4,84,0,46,0,37,38,2,1
-0,79,0,10,8,42,68,26,1
-0,96,1,46,0,40,50,10,4
-0,95,0,24,12,58,72,14,1
--2,83,0,52,-1,31,32,0,1
-0,84,0,42,20,44,43,0,1
-0,80,-4,34,-2,43,46,2,1
-0,95,0,50,-5,40,46,6,4
-0,83,5,-40,14,5,125,120,5
-2,84,0,54,0,30,30,0,1
--3,83,0,44,1,39,39,0,1
-0,84,0,50,1,35,35,0,1
-0,79,0,2,15,42,76,34,1
-0,84,0,-12,30,3,97,94,5
-0,82,0,18,-3,45,64,18,1
--2,86,0,42,0,44,44,0,1
-0,97,-1,52,11,41,45,4,4
-0,79,0,6,-5,42,74,32,1
-0,90,4,36,0,53,54,2,1
-0,79,0,24,-4,43,56,14,1
-5,86,0,46,0,38,39,2,1
-0,79,0,6,-19,43,74,32,1
-0,84,-6,46,0,37,38,0,1
-0,79,-1,52,0,28,28,0,1
-0,82,0,-42,-15,26,126,100,4
-1,83,0,46,0,37,37,0,1
-3,79,0,42,0,36,37,2,1
--38,107,0,68,-12,13,40,26,3
--5,95,0,46,0,47,49,2,1
-0,83,0,-42,24,4,127,122,5
-0,83,3,46,0,35,37,2,1
-0,96,0,16,-27,59,81,22,1
-0,77,0,26,0,21,51,30,4
-0,87,-3,52,2,36,35,0,1
-0,81,1,10,0,45,71,26,1
-0,77,0,52,14,26,25,0,1
-0,89,1,38,0,49,50,2,1
--4,76,0,38,15,39,37,0,1
-0,77,0,-20,9,21,97,76,4
-0,79,1,-6,0,42,86,44,1
--5,88,0,44,-18,42,44,2,1
-0,81,2,46,-11,33,35,2,1
-0,83,0,54,31,30,28,0,1
-0,85,0,44,12,41,41,0,1
-5,86,0,38,0,47,47,0,1
-0,83,0,42,-10,40,42,2,1
-0,76,0,26,8,39,50,10,1
--1,78,0,46,-24,29,32,2,1
-0,76,0,44,-20,31,32,2,1
-0,82,0,54,-2,26,28,2,1
--2,77,0,46,-2,29,31,2,1
-4,77,0,44,22,34,34,0,1
-0,106,1,50,0,56,57,0,1
-2,76,0,20,0,39,55,16,1
--1,91,0,6,0,53,86,32,1
-0,81,0,42,29,41,40,0,1
-0,76,0,30,5,39,45,6,1
--4,86,0,52,-1,33,34,0,1
-0,85,0,56,12,29,28,0,1
--4,77,0,20,0,41,57,16,1
--4,76,0,28,0,39,47,8,1
-0,85,0,42,-18,42,44,2,1
-0,104,0,18,15,67,86,18,1
-0,76,0,42,12,35,34,0,1
-0,88,-1,46,-7,42,41,0,1
-0,77,0,0,14,21,77,56,4
-0,76,0,-4,58,20,81,62,4
-0,95,0,42,-5,40,54,14,4
-0,100,0,42,11,59,59,0,1
-0,79,7,16,14,42,63,22,1
-0,86,0,42,9,46,45,0,1
-0,76,0,30,-12,39,45,6,1
--1,98,5,46,-14,42,51,10,4
--4,81,0,46,1,35,34,0,1
-0,96,0,52,27,41,44,4,4
--4,104,0,72,12,1,32,30,5
-0,89,2,44,-22,43,45,2,1
-0,81,0,56,25,25,24,0,1
-0,88,1,46,5,42,41,0,1
-0,81,0,46,13,35,35,0,1
-0,86,0,50,-7,35,37,2,1
-0,76,0,-6,31,20,84,64,4
-5,82,-2,46,0,36,35,0,1
--1,87,1,50,0,37,38,0,1
-0,79,0,36,7,43,43,0,1
-0,81,0,52,-29,28,30,2,1
-1,81,0,54,-18,25,26,2,1
-0,81,6,-2,0,44,84,40,1
-0,83,0,56,0,26,26,0,1
-0,96,0,42,-10,41,55,14,4
-0,108,7,50,0,58,58,0,1
-0,86,0,50,22,38,37,0,1
-1,85,6,44,0,40,41,2,1
-0,75,0,28,18,38,46,8,1
-0,80,0,38,13,43,41,0,1
-0,76,1,26,8,39,50,12,1
-0,87,-1,46,-2,40,41,0,1
-0,89,-2,38,-14,48,50,2,1
-0,95,-6,46,0,48,48,0,1
-1,77,-1,42,0,35,35,0,1
-0,106,0,34,-6,69,72,4,1
-0,83,0,46,19,37,36,0,1
-0,92,0,10,9,37,82,46,4
-0,80,0,6,-11,43,75,32,1
-0,97,7,50,-3,41,48,6,4
-1,85,6,42,-19,41,44,2,1
-0,106,-2,46,-17,57,59,2,1
--1,77,-3,44,-36,32,34,2,1
-0,75,-6,24,0,38,52,14,1
-5,96,0,42,0,53,55,2,1
-1,83,0,44,17,39,39,0,1
--2,79,0,46,25,34,33,0,1
-0,90,0,54,-3,34,35,2,1
--3,85,0,44,0,40,41,2,1
-0,81,0,54,61,27,26,0,1
-0,76,-1,30,-3,39,45,6,1
-1,88,3,46,18,42,41,0,1
-1,91,0,54,0,37,37,0,1
--1,86,0,46,0,40,40,0,1
--1,83,0,50,-1,32,34,2,1
-0,78,-1,0,0,23,78,56,4
--1,76,0,44,-21,31,32,2,1
-0,77,0,-18,-9,21,95,74,4
--1,84,-1,46,-1,38,38,0,1
--3,97,0,44,-24,41,53,12,4
-0,75,0,30,17,38,44,6,1
-0,90,0,30,-11,53,59,6,1
-0,77,1,36,9,40,41,0,1
--1,76,0,38,0,36,37,0,1
-3,83,1,38,-6,42,44,2,1
-0,90,0,46,0,41,43,2,1
-0,79,0,12,5,23,66,42,4
-0,80,0,34,7,43,46,2,1
-1,86,0,46,-17,38,40,2,1
-0,86,0,44,19,42,42,0,1
-0,81,0,42,3,40,40,0,1
-0,105,1,20,-6,68,84,16,1
-0,78,3,38,-19,37,39,2,1
-0,82,0,34,29,45,48,2,1
-0,80,0,36,6,43,44,2,1
--1,106,0,34,-15,68,72,4,1
-0,78,0,8,-17,22,70,48,4
--1,89,0,2,-1,4,86,82,5
-1,83,0,56,0,26,26,0,1
-0,84,2,50,-22,33,35,2,1
--5,77,0,44,0,32,33,2,1
-0,85,0,44,19,41,41,0,1
-0,80,0,30,-14,43,49,6,1
-0,83,0,42,25,42,41,0,1
--1,107,-8,26,0,70,81,12,1
-0,78,0,8,6,41,70,30,1
-4,74,-16,-2,5,19,76,58,4
-0,79,5,38,0,41,41,0,1
-0,79,1,46,22,34,33,0,1
-0,77,0,-6,18,21,85,64,4
-0,82,0,-4,-11,45,87,42,1
-5,84,-3,42,-10,41,43,2,1
--2,96,0,52,-7,41,44,4,4
--1,83,-1,44,-2,38,39,0,1
-92,80,0,34,0,23,46,24,2
-0,84,-1,46,14,39,38,0,1
-0,86,0,50,32,37,37,0,1
-0,95,8,52,0,40,44,4,4
-0,96,0,54,-18,40,42,2,1
-0,81,6,28,0,45,53,8,1
-1,77,0,46,-6,29,31,2,1
--2,81,-3,42,-5,37,39,2,1
-0,83,-1,56,0,26,26,0,1
-0,88,4,52,6,36,36,0,1
-1,108,1,72,10,1,36,34,5
-0,77,0,50,2,28,28,0,1
-0,79,0,44,18,36,35,0,1
-4,83,5,-42,-17,4,126,122,5
-4,95,0,46,4,39,49,10,4
-0,97,0,46,25,41,51,10,4
-0,77,0,-20,-24,41,98,58,1
-0,77,0,18,-13,22,59,38,4
-0,78,0,16,13,42,63,22,1
-0,99,0,50,13,43,49,6,4
--1,77,-3,44,-5,32,33,0,1
-5,87,0,50,4,38,38,0,1
-0,98,0,50,-27,42,49,6,4
-0,76,0,44,28,33,32,0,1
--5,79,0,26,0,23,53,30,4
-0,76,0,26,-24,40,50,10,1
-0,79,3,42,-8,35,37,2,1
-0,106,0,34,-24,69,72,4,1
-0,79,0,12,24,42,66,24,1
--1,80,-1,38,0,41,41,0,1
-0,83,0,16,4,46,67,22,1
--3,99,0,50,1,43,49,6,4
-0,78,0,2,16,41,75,34,1
-0,91,-3,-4,6,35,96,60,4
-0,87,0,44,15,44,43,0,1
-0,81,4,-2,0,44,84,40,1
-5,78,0,50,-8,27,29,2,1
-0,79,-1,0,0,42,79,36,1
-0,77,0,42,5,36,36,0,1
-1,95,-3,50,0,40,46,6,4
-0,88,5,54,0,34,33,0,1
--66,77,0,20,0,40,57,16,3
-0,81,0,44,-29,35,37,2,1
-0,88,0,44,18,44,44,0,1
-0,83,-3,46,-13,34,37,2,1
-3,80,-1,42,0,38,39,2,1
-0,79,0,52,-4,26,27,2,1
--3,83,4,38,0,44,44,0,1
-0,76,0,26,11,39,50,12,1
-0,76,0,20,-15,39,55,16,1
--39,107,0,64,-11,19,42,24,3
--1,84,0,46,-28,36,38,2,1
-4,82,3,56,0,24,25,0,1
-0,86,1,46,7,40,39,0,1
-0,106,-2,30,0,69,75,6,1
-0,86,0,38,8,48,47,0,1
-5,78,-1,42,0,35,37,2,1
-0,79,0,12,-1,23,66,42,4
-5,84,0,56,0,26,27,2,1
-3,81,1,52,0,29,30,0,1
-0,95,0,36,-30,40,59,20,4
--1,81,0,-40,0,4,123,118,5
-0,86,0,60,24,28,27,0,1
-1,83,-1,38,0,44,44,0,1
--3,85,0,54,0,31,31,0,1
-0,78,0,-4,2,41,83,42,1
-0,76,0,44,-2,31,32,2,1
-0,76,-2,-12,-13,21,89,68,4
-2,106,-1,36,0,69,70,0,1
-0,77,0,54,0,22,23,0,1
-0,86,0,36,-19,48,50,2,1
--3,84,0,52,0,32,32,0,1
-0,96,7,44,0,41,52,12,4
-5,98,4,50,9,42,49,6,4
-0,92,-3,46,0,36,45,8,4
-0,94,0,10,16,57,84,28,1
-1,81,-2,54,0,26,26,0,1
-0,97,1,54,0,40,42,2,1
-1,87,1,46,0,41,41,0,1
-0,78,0,44,0,23,34,12,4
-0,77,0,-10,18,21,87,66,4
-0,79,0,12,-8,43,66,24,1
--3,77,0,46,21,31,30,0,1
--5,106,0,42,0,64,64,0,1
-0,78,-18,42,0,36,37,2,1
-0,86,0,56,23,31,30,0,1
-4,107,5,42,0,65,66,0,1
-0,86,-1,46,23,40,39,0,1
-0,95,0,46,-1,47,49,2,1
-1,93,0,28,1,55,64,10,1
-0,86,0,54,-12,30,32,2,1
--2,76,-2,38,0,36,37,2,1
-2,77,0,28,0,40,48,8,1
-0,82,0,44,24,39,38,0,1
--1,81,-1,42,-30,37,39,2,1
-0,88,-7,42,0,45,47,2,1
--2,86,0,44,10,42,42,0,1
-0,77,0,34,-23,40,43,2,1
-0,78,0,-6,-3,41,86,44,1
-0,79,0,18,-12,23,61,38,4
--3,85,0,52,-27,32,33,2,1
-0,108,5,46,0,61,62,0,1
-0,76,0,-12,9,20,89,68,4
-0,77,0,16,6,40,61,22,1
-1,77,0,50,0,26,28,2,1
-0,95,0,44,-17,40,51,12,4
-0,82,2,-10,0,26,92,66,4
-6,79,0,42,0,25,37,12,4
-1,75,0,42,8,34,34,0,1
-1,82,0,42,0,39,41,2,1
-0,77,0,-6,0,41,85,44,1
-0,79,7,42,0,36,38,2,1
-0,87,0,44,11,43,43,0,1
-0,81,0,24,-5,45,58,14,1
--5,86,0,44,16,43,42,0,1
--1,80,-1,36,0,43,44,0,1
-0,82,0,-36,-17,26,118,92,4
--2,83,0,42,1,42,42,0,1
-0,80,-2,42,-2,37,39,2,1
-0,96,2,42,-3,41,55,14,4
--2,79,0,54,-3,23,24,2,1
-0,81,4,44,22,37,37,0,1
-0,96,-2,50,-5,40,47,6,4
-0,96,0,18,0,59,78,18,1
-0,106,-1,70,-1,1,36,36,5
-0,79,0,16,-9,23,63,40,4
-0,94,0,16,15,57,79,22,1
--5,104,0,38,0,67,66,0,1
--3,86,0,56,3,31,30,0,1
--1,98,0,46,0,42,51,10,4
-0,77,0,38,9,39,38,0,1
-0,108,3,70,0,2,38,36,5
--2,78,-1,46,0,31,32,0,1
-4,78,0,16,-2,22,63,40,4
-0,104,-5,24,0,67,81,14,1
-0,79,0,16,29,23,63,40,4
--1,75,0,36,-13,37,39,2,1
--5,108,-3,72,4,1,36,34,5
-0,85,3,46,19,40,39,0,1
-0,80,0,24,-14,43,57,14,1
-0,84,-1,50,18,36,35,0,1
-0,92,0,54,-2,36,38,2,1
-0,80,2,34,0,43,46,2,1
-0,81,0,50,-27,29,32,2,1
-0,83,0,50,13,34,34,0,1
-0,81,0,-14,2,25,97,72,4
-0,75,0,34,10,38,41,4,1
-0,78,0,-2,-27,42,81,40,1
-0,84,-1,42,-4,41,43,2,1
-0,81,0,46,16,36,35,0,1
-0,74,0,34,1,37,41,4,1
-0,97,-3,52,0,41,45,4,4
--3,85,0,-40,4,4,126,122,5
-0,79,0,8,11,42,71,28,1
-0,77,0,-28,-9,22,106,84,4
--1,81,0,54,1,28,26,0,1
--2,77,0,44,1,34,34,0,1
-2,95,-4,50,0,46,46,0,1
-0,78,-4,6,0,22,73,50,4
-0,86,0,38,-5,46,48,2,1
-0,87,0,42,-19,44,46,2,1
-5,86,0,44,14,43,42,0,1
-5,80,0,52,0,27,28,2,1
-0,84,3,-24,6,4,110,106,5
-2,105,0,38,22,67,66,0,1
-0,88,-1,2,-3,3,86,82,5
-0,107,-5,36,0,69,71,2,1
-0,102,-5,70,-3,1,33,32,5
-0,77,0,-28,-26,22,106,84,4
-8,95,0,50,0,41,46,6,4
-1,77,0,10,8,22,67,46,4
-5,77,0,46,0,30,31,0,1
-0,80,0,44,9,36,36,0,1
-0,97,1,44,-3,41,53,12,4
-0,108,1,54,-12,52,53,2,1
-5,79,0,46,19,33,32,0,1
-0,77,0,8,28,40,69,30,1
-0,90,0,50,10,42,41,0,1
-0,82,-1,38,11,45,43,0,1
-2,86,0,46,10,41,40,0,1
-0,86,0,46,7,41,40,0,1
--2,81,-1,46,0,33,34,2,1
-0,93,0,54,2,38,39,0,1
-2,102,0,42,0,60,61,2,1
-0,93,2,34,1,55,60,6,1
-0,81,0,42,-27,38,40,2,1
-1,81,0,36,-5,43,44,2,1
-0,78,-5,46,0,32,32,0,1
-0,86,3,46,12,41,40,0,1
-0,77,0,18,0,22,59,38,4
-1,86,4,46,-1,40,39,0,1
-0,79,-2,44,-11,33,35,2,1
--5,87,0,52,-2,35,35,0,1
-0,102,0,70,-15,1,32,32,5
-0,86,0,54,-30,29,32,2,1
-0,77,0,18,15,22,59,38,4
-0,87,0,42,-17,43,46,2,1
-0,95,-6,50,0,40,46,6,4
-0,88,1,44,-20,43,44,2,1
-0,79,-1,42,-2,37,37,0,1
--2,96,-3,52,0,40,44,4,4
-0,90,0,46,-1,43,43,0,1
-0,77,0,34,-4,40,43,2,1
--1,109,0,44,0,65,66,0,1
-0,81,1,38,0,41,42,0,1
-0,106,5,30,-31,69,75,6,1
-0,95,0,42,-10,40,54,14,4
-0,79,0,44,0,33,35,2,1
--5,86,0,42,0,45,45,0,1
-0,81,0,38,0,41,42,2,1
-0,80,0,36,4,43,44,2,1
-0,97,3,50,-11,41,48,6,4
-0,77,0,52,10,26,25,0,1
-0,96,0,52,-10,40,44,4,4
-0,89,1,6,20,4,84,80,5
-1,81,0,-6,0,25,88,64,4
-1,76,0,38,-25,35,37,2,1
-0,79,-7,44,-23,33,35,2,1
-0,76,-6,34,1,39,42,2,1
-0,77,8,42,0,34,35,2,1
--1,106,0,50,0,56,57,0,1
-0,85,2,50,0,36,36,0,1
-0,81,0,44,-27,35,37,2,1
-0,97,6,36,0,59,60,2,1
-1,85,0,50,22,36,36,0,1
--1,82,0,44,-19,37,38,2,1
-0,81,0,-6,-5,25,88,64,4
-0,83,2,46,0,37,37,0,1
-0,95,0,54,14,39,41,2,1
-0,96,3,24,0,59,73,14,1
-0,78,0,50,29,29,29,0,1
--1,81,-1,54,0,28,27,0,1
--3,98,0,44,-24,42,54,12,4
-5,79,0,46,15,33,32,0,1
-0,104,5,70,-2,2,34,32,5
--5,79,-7,46,0,32,32,0,1
--2,86,0,38,0,47,48,0,1
-0,98,0,44,-2,42,54,12,4
-0,83,-1,44,-13,37,39,2,1
--1,76,-2,38,-4,36,37,0,1
-0,76,1,26,10,39,50,12,1
--5,81,0,42,8,40,39,0,1
-0,98,0,52,-20,42,46,4,4
-0,83,0,34,4,46,50,4,1
-0,75,0,42,-9,32,34,2,1
-0,80,0,42,-1,38,39,0,1
-0,86,0,54,27,33,32,0,1
-0,86,-1,56,-11,28,30,2,1
-0,92,0,12,0,54,79,24,1
--4,83,0,42,-1,40,41,2,1
-0,77,0,30,26,40,46,6,1
-1,79,-4,36,-6,42,43,2,1
-0,93,0,8,-2,55,85,30,1
-1,86,1,44,1,42,42,0,1
-1,88,0,42,0,46,47,2,1
--1,83,0,38,5,45,44,0,1
-0,77,0,24,2,22,54,32,4
-0,88,1,44,2,43,44,2,1
--4,88,0,46,0,41,41,0,1
-1,84,0,46,-5,35,37,2,1
-0,86,0,46,10,41,40,0,1
-0,93,0,10,-22,37,82,46,4
--2,110,0,46,-2,62,64,2,1
-1,86,0,56,12,30,29,0,1
-4,98,0,46,3,42,51,10,4
-4,81,0,42,2,39,39,0,1
-0,79,0,16,3,23,63,40,4
-0,95,0,46,-3,47,49,2,1
--1,79,7,16,0,42,63,22,1
-0,82,3,44,0,38,38,0,1
-0,97,0,54,10,41,43,2,1
-0,79,2,42,2,38,38,0,1
-0,82,0,44,7,38,38,0,1
-0,82,0,54,-6,26,28,2,1
--3,83,-1,46,-1,36,37,0,1
-3,108,2,72,5,1,35,34,5
-0,89,0,42,-26,45,48,2,1
--1,98,0,50,-11,42,49,6,4
-3,84,0,52,0,32,33,0,1
-0,76,0,20,-30,40,55,16,1
-0,98,-1,30,3,61,67,6,1
-0,83,-6,46,6,37,36,0,1
-0,77,0,18,2,40,59,18,1
-1,76,1,38,0,35,37,2,1
-0,83,0,56,5,26,26,0,1
-0,105,1,30,-10,68,74,6,1
-0,95,1,46,-6,40,49,10,4
-0,75,0,18,-27,38,57,18,1
--1,97,-7,46,0,41,50,10,4
-0,76,0,38,3,38,37,0,1
-0,89,0,38,-6,48,50,2,1
-1,77,7,44,0,33,34,0,1
-2,79,-3,44,1,35,35,0,1
-0,80,-1,8,0,43,72,28,1
-0,82,0,44,-12,37,38,2,1
-0,77,0,50,19,28,28,0,1
-0,76,1,28,-4,39,47,8,1
-4,83,0,42,-22,39,41,2,1
--4,86,0,42,-9,43,45,2,1
-0,107,-1,50,0,56,58,2,1
-0,85,2,46,7,39,39,0,1
-4,87,7,46,7,41,41,0,1
-4,76,0,38,8,38,37,0,1
-0,84,0,42,2,43,43,0,1
-0,95,0,38,-8,40,57,16,4
-0,80,0,44,-12,35,36,2,1
--3,80,2,38,0,40,41,2,1
-0,95,0,54,-13,40,41,2,1
--3,87,0,54,3,34,33,0,1
-0,83,8,-46,0,4,129,124,5
--5,76,-1,46,-7,28,30,2,1
--1,86,0,46,-6,38,40,2,1
-0,99,0,30,9,61,68,6,1
-0,82,0,20,22,45,61,16,1
-0,79,-3,6,-9,24,74,50,4
-0,85,2,-12,0,4,98,94,5
-0,81,0,38,4,43,42,0,1
-0,76,-2,38,14,39,37,0,1
-0,97,0,36,-2,60,61,2,1
-0,104,0,20,5,67,84,16,1
-1,108,0,38,0,67,69,2,1
--5,79,-13,-2,0,24,81,58,4
-0,77,0,18,-25,40,59,18,1
--2,86,-1,-40,0,5,128,124,5
--4,81,0,54,0,25,26,2,1
-0,83,0,44,-24,37,39,2,1
-3,113,0,68,13,46,45,0,1
-0,86,0,44,-4,40,42,2,1
-0,100,0,44,0,56,56,0,1
-0,77,2,46,0,31,30,0,1
-0,76,0,38,23,38,37,0,1
-2,86,-2,-4,0,3,92,88,5
--4,77,-5,38,7,39,38,0,1
-0,79,0,42,-1,37,37,0,1
-0,76,-1,28,-23,39,47,8,1
-1,87,0,44,-21,41,43,2,1
-4,85,-1,38,0,45,46,2,1
-5,86,0,42,1,45,45,0,1
-5,76,0,42,0,33,34,2,1
-0,92,0,50,9,36,43,6,4
-1,97,0,38,0,58,59,0,1
-0,86,0,38,11,48,47,0,1
-0,77,2,-20,0,21,97,76,4
-0,76,4,26,-1,39,50,10,1
-11,78,0,42,31,37,37,0,1
--4,84,0,52,0,33,32,0,1
-0,79,-1,38,-1,39,41,2,1
-0,95,0,54,-3,40,41,2,1
-0,85,-2,42,-27,41,44,2,1
--1,93,0,44,0,49,50,0,1
-0,86,0,46,-7,37,39,2,1
-0,86,0,-10,7,3,96,92,5
-1,76,0,42,-1,33,35,2,1
-0,80,1,20,0,43,59,16,1
-0,95,0,8,-19,58,87,30,1
--1,84,-2,-40,4,4,125,122,5
-0,76,-4,28,-10,39,47,8,1
-0,80,0,34,-19,43,46,4,1
-0,88,0,44,-24,43,44,2,1
-0,101,0,28,-3,64,73,8,1
-0,77,0,10,-27,22,67,46,4
-0,83,-1,38,0,44,44,0,1
-0,77,0,2,-9,22,75,52,4
-0,75,-2,30,0,38,44,6,1
-0,77,0,2,-28,40,74,34,1
--2,83,0,38,6,45,44,0,1
-0,88,-4,2,0,3,85,82,5
-0,80,0,52,17,29,28,0,1
-6,76,3,-42,-4,4,119,116,5
-0,75,0,42,0,33,34,0,1
-0,87,1,52,-6,34,35,2,1
-0,96,-1,52,23,41,44,4,4
-0,79,0,38,0,41,41,0,1
--1,103,0,72,21,1,31,30,5
--1,79,-3,38,-5,41,41,0,1
-0,77,0,8,-30,22,70,48,4
-5,77,0,38,0,39,39,0,1
-2,81,0,50,0,30,32,2,1
-0,82,0,36,-21,44,46,2,1
-0,96,0,46,1,41,50,8,4
-0,99,-2,28,0,61,70,8,1
-3,88,0,42,0,44,46,2,1
-0,95,0,36,25,40,59,20,4
-0,76,-7,36,0,39,39,0,1
--4,83,0,42,0,41,41,0,1
-0,77,0,12,12,21,64,42,4
--3,89,0,46,0,42,42,0,1
-4,95,-2,50,0,40,46,6,4
-0,82,-1,46,0,34,35,2,1
-1,99,0,50,13,42,49,8,4
-4,86,3,42,-6,42,44,2,1
--1,89,0,38,0,49,50,2,1
--1,84,0,-42,0,5,128,124,5
-0,83,0,44,17,40,39,0,1
-0,107,0,50,2,58,58,0,1
-0,81,-1,42,-30,37,39,2,1
-0,83,0,42,6,42,42,0,1
-0,76,0,28,-5,40,48,8,1
-0,79,0,28,3,43,51,8,1
-0,96,0,42,30,41,55,14,4
--4,81,0,54,0,28,27,0,1
-0,93,0,46,-16,37,46,8,4
-0,77,-4,12,6,21,64,42,4
-0,104,0,26,22,66,78,12,1
-0,111,-6,68,0,43,44,0,1
-3,81,0,42,0,40,40,0,1
-0,77,0,26,0,40,51,10,1
-1,86,0,-22,5,4,109,106,5
-0,96,1,50,1,40,47,6,4
-0,81,0,50,13,32,32,0,1
-3,82,-1,46,0,34,35,0,1
-0,77,0,26,10,21,51,30,4
-2,80,0,-2,1,24,83,58,4
-0,108,0,54,-3,52,53,2,1
-1,81,0,46,-16,33,35,2,1
--2,81,0,44,0,36,37,2,1
-0,76,0,44,19,33,32,0,1
-0,78,0,6,6,41,73,32,1
-0,88,6,52,-5,35,36,2,1
-0,87,-1,50,0,37,38,0,1
-0,76,26,24,0,39,53,14,1
--5,84,0,50,-5,34,35,2,1
-1,87,0,54,0,33,33,0,1
-3,76,0,42,7,34,34,0,1
-5,86,0,46,3,41,40,0,1
-4,97,-1,42,-1,41,56,14,4
-1,77,0,44,1,22,34,12,4
-0,77,0,6,-2,40,72,32,1
-0,88,-2,6,-7,4,83,78,5
-0,104,0,54,0,50,49,0,1
-0,81,0,52,5,29,29,0,1
--4,86,-3,46,0,41,40,0,1
-1,77,0,42,-28,34,36,2,1
-3,77,0,50,4,28,28,0,1
-1,88,0,44,8,45,44,0,1
-0,92,0,12,2,54,79,24,1
-0,79,0,10,2,23,68,46,4
-0,80,5,42,0,39,39,0,1
-0,77,-1,12,1,21,64,42,4
-0,76,1,34,0,39,43,4,1
-0,89,1,46,0,41,42,2,1
-0,108,-4,36,0,72,72,0,1
-0,82,0,36,7,45,46,2,1
-3,96,0,52,0,40,44,4,4
-0,84,0,50,-13,34,35,2,1
-2,80,0,44,-5,35,36,2,1
-0,81,0,36,-29,43,45,2,1
-2,97,0,44,23,40,53,12,4
-0,83,0,44,21,39,39,0,1
-0,81,-5,30,0,45,50,6,1
-1,76,0,44,-25,30,32,2,1
-5,81,0,38,1,42,42,0,1
--5,76,0,20,0,40,55,16,1
-0,78,0,-4,8,41,83,42,1
-0,83,8,10,18,47,73,26,1
-0,96,0,52,-1,41,44,4,4
-1,75,0,38,0,36,36,0,1
-0,86,-1,52,11,35,35,0,1
-0,79,6,46,3,33,32,0,1
-0,83,-1,-30,29,4,114,110,5
-0,85,0,52,-21,32,33,2,1
-0,79,0,24,7,23,55,32,4
-0,103,0,20,24,66,82,16,1
-0,110,-7,68,0,42,43,0,1
-0,93,0,0,-24,38,93,56,4
-0,82,-7,42,-7,39,41,2,1
--4,80,0,20,2,43,59,16,1
-1,97,0,52,0,41,45,4,4
-0,86,0,44,-17,41,42,2,1
-2,106,0,50,4,56,57,0,1
-0,79,4,8,0,23,71,48,4
-0,80,0,36,8,43,44,2,1
-0,79,0,10,31,42,68,26,1
-0,104,1,26,11,67,78,12,1
-0,95,4,44,0,40,51,12,4
-1,81,-5,54,0,27,26,0,1
-0,80,0,38,30,43,41,0,1
-0,102,-1,72,0,1,29,28,5
-0,78,-1,2,-3,41,75,34,1
--3,107,0,38,0,68,68,0,1
-1,85,0,44,4,41,41,0,1
-0,83,2,46,18,37,36,0,1
--5,106,0,44,0,62,62,0,1
-0,109,0,36,-8,71,73,2,1
-0,76,111,20,0,40,55,16,1
-0,78,0,50,22,30,29,0,1
-1,81,-4,38,0,41,42,0,1
-0,81,2,36,-1,43,44,2,1
-3,86,0,42,13,45,45,0,1
-0,81,-5,52,0,29,30,0,1
-0,77,0,-6,-10,21,85,64,4
-0,83,-4,44,1,39,39,0,1
-4,83,0,52,-7,30,31,2,1
-0,83,0,56,8,27,26,0,1
-1,76,0,44,-2,31,32,2,1
-5,108,0,46,27,62,61,0,1
-0,79,4,42,0,35,37,2,1
-0,96,0,38,31,59,57,0,1
-0,79,-5,34,0,42,46,4,1
-0,93,3,54,0,37,39,2,1
-0,88,5,54,1,34,33,0,1
-0,110,0,64,0,46,46,0,1
-0,84,-7,38,0,45,46,2,1
-4,79,0,42,0,37,38,2,1
-0,78,0,50,31,30,29,0,1
-5,76,0,42,1,34,34,0,1
-0,80,0,52,-30,27,28,2,1
-0,96,0,42,-24,41,55,14,4
--2,77,-2,46,-21,29,31,2,1
-0,90,4,46,0,43,43,0,1
-0,77,0,-10,31,21,87,66,4
-0,77,-3,34,0,40,43,2,1
-1,108,0,36,0,71,72,0,1
--1,100,0,28,0,63,71,8,1
--2,85,0,46,-27,36,39,2,1
-0,83,0,52,-10,30,32,2,1
-2,86,0,46,3,40,39,0,1
-4,80,0,44,13,36,36,0,1
-0,89,0,44,22,46,45,0,1
--4,90,-2,54,-3,36,36,0,1
-0,106,0,42,16,64,64,0,1
-0,77,-1,36,-41,41,41,0,1
-0,96,-1,54,-2,41,42,2,1
-1,91,0,56,12,35,34,0,1
--2,97,2,42,-20,41,56,14,4
-0,79,0,16,-1,43,64,22,1
-1,77,0,50,0,27,28,0,1
-0,81,0,8,-24,44,73,28,1
-4,83,0,54,2,29,28,0,1
-0,88,8,52,6,36,36,0,1
--1,79,3,46,0,32,32,0,1
--1,80,0,18,0,43,62,18,1
-5,79,0,38,0,40,40,0,1
-0,77,0,38,4,22,39,16,4
-1,83,0,38,13,45,44,0,1
-4,89,0,8,2,2,81,78,5
-3,78,0,46,5,32,32,0,1
-0,95,0,50,6,47,46,0,1
-0,88,1,46,3,41,41,0,1
-0,86,0,56,-2,27,29,2,1
-0,83,0,34,-2,46,49,2,1
-0,81,-4,52,2,30,30,0,1
-5,79,0,44,13,35,35,0,1
--2,81,0,38,10,43,42,0,1
-0,86,-3,44,0,43,42,0,1
-0,80,0,20,-16,43,59,16,1
-0,86,0,44,22,43,42,0,1
--3,102,0,52,0,51,50,0,1
-0,108,6,54,-16,52,53,2,1
--1,82,0,54,-8,26,28,2,1
-0,88,0,46,-25,39,41,2,1
-3,86,0,56,0,29,29,0,1
-4,76,0,20,0,39,55,16,1
-0,75,0,30,10,38,44,6,1
-0,80,0,-2,-7,24,83,58,4
-0,77,0,-10,-5,41,88,46,1
-0,95,0,44,-20,40,51,12,4
-0,79,6,-22,0,23,102,80,4
-0,85,0,-40,5,4,126,122,5
-0,76,0,38,13,38,37,0,1
-0,103,-6,20,0,66,82,16,1
-0,80,1,36,-5,43,44,2,1
-0,85,0,46,-21,36,39,2,1
-0,92,0,20,31,54,71,18,1
--2,109,1,36,0,72,73,0,1
-0,75,-7,38,0,35,36,2,1
-0,86,0,42,-9,42,44,2,1
--3,85,-1,-40,5,4,126,122,5
-5,88,0,54,-1,32,33,2,1
-1,86,0,56,16,30,29,0,1
-1,75,0,42,7,34,34,0,1
-0,104,0,18,8,67,86,18,1
-0,75,0,38,-17,34,36,2,1
-0,78,5,36,13,41,42,0,1
-0,80,-5,16,0,43,65,22,1
-0,79,-2,10,5,43,69,26,1
-0,79,0,52,0,26,27,0,1
-4,78,0,42,-22,34,37,2,1
-0,97,0,50,-30,41,48,6,4
-0,86,-1,56,26,31,30,0,1
-0,79,0,46,24,34,33,0,1
-3,107,0,50,0,56,58,2,1
-0,78,6,24,0,23,55,32,4
-0,76,-2,30,9,39,45,6,1
-0,77,-4,44,19,34,33,0,1
-0,79,3,24,20,24,56,32,4
-0,79,0,18,-8,43,61,18,1
-0,93,1,44,0,37,49,12,4
-0,77,0,30,-5,22,46,24,4
-0,78,0,10,-6,22,68,46,4
-0,78,0,16,-29,42,63,22,1
--1,83,0,52,0,32,32,0,1
-0,77,0,20,-28,40,56,16,1
-0,82,0,42,15,39,41,2,1
-0,77,3,-20,0,21,97,76,4
-0,78,0,46,-19,29,32,2,1
-0,77,0,12,21,21,64,42,4
--1,79,6,52,9,28,27,0,1
-0,95,-7,16,0,58,79,22,1
-0,77,1,42,-8,34,36,2,1
-0,75,-1,30,11,38,44,6,1
-0,76,8,38,0,36,37,2,1
-0,76,-2,24,6,39,52,14,1
-0,77,0,-30,-7,22,108,86,4
-0,81,2,42,2,39,39,0,1
-0,102,0,72,6,1,29,28,5
-4,77,-1,42,0,36,36,0,1
--2,76,0,46,0,29,29,0,1
-1,81,0,44,3,37,37,0,1
-0,78,0,12,6,41,65,24,1
--1,99,0,42,-10,56,58,2,1
-1,88,0,42,13,47,47,0,1
-0,86,0,52,-28,33,35,2,1
--1,87,-6,52,0,35,35,0,1
--1,79,0,44,13,35,35,0,1
-0,88,0,42,4,47,46,0,1
-1,90,0,46,0,43,43,0,1
-4,86,0,50,0,37,37,0,1
-0,79,7,12,0,23,66,42,4
-0,82,0,34,22,45,48,2,1
--5,77,0,42,1,36,35,0,1
-0,80,0,34,2,43,46,4,1
-0,78,0,26,7,22,52,30,4
-0,92,0,28,9,36,63,28,4
--1,86,-3,44,-13,40,42,2,1
-0,81,0,54,-11,25,27,2,1
-0,76,0,38,17,39,37,0,1
-0,86,0,52,-24,33,34,2,1
-0,78,0,12,4,42,65,24,1
-0,91,0,-2,4,35,93,58,4
-0,77,0,10,7,22,67,46,4
-0,95,0,28,18,58,67,8,1
--1,78,0,46,0,32,32,0,1
-0,81,6,-10,-7,25,92,66,4
-9,95,-3,50,0,45,46,2,1
-0,77,0,18,-15,40,59,18,1
-0,78,0,10,-2,42,68,26,1
--2,98,0,44,0,42,54,12,4
-0,99,-4,50,0,43,50,6,4
--1,97,-1,46,-2,42,51,8,4
-0,77,0,18,-11,41,59,18,1
-1,83,0,46,30,37,36,0,1
-0,76,0,38,5,38,37,0,1
-0,77,0,42,-17,34,35,2,1
--5,76,0,36,-23,38,39,2,1
--2,79,0,46,0,33,33,0,1
-0,77,0,38,21,40,39,0,1
-2,82,5,-42,0,4,126,122,5
-5,98,6,46,-10,42,51,10,4
-0,77,4,36,0,41,41,0,1
-0,78,0,0,1,41,78,36,1
--2,76,0,44,14,33,32,0,1
-0,83,-6,16,0,46,67,22,1
-0,77,0,-4,-6,41,83,42,1
-0,83,0,42,-12,40,42,2,1
-0,81,0,38,0,42,42,0,1
-0,86,0,50,27,38,37,0,1
-4,85,3,44,-28,39,41,2,1
-0,76,0,26,-25,39,50,12,1
-5,84,0,54,2,31,30,0,1
-0,102,0,52,-5,49,50,2,1
--3,77,0,50,14,29,28,0,1
--2,76,0,42,-8,33,35,2,1
-0,76,0,42,11,34,34,0,1
--4,85,0,46,0,37,39,2,1
-0,79,0,16,24,23,63,40,4
-2,75,0,18,-16,38,57,18,1
-0,77,0,-10,-8,21,87,66,4
-0,93,0,10,-21,56,83,26,1
-0,79,0,42,-9,35,37,2,1
-0,78,0,16,1,23,63,40,4
-0,102,0,52,7,51,50,0,1
-0,95,1,44,16,40,51,12,4
-5,81,0,52,0,30,30,0,1
-0,92,3,50,0,36,43,6,4
-0,84,2,50,-18,33,35,2,1
-3,81,1,54,0,25,26,2,1
-0,88,0,52,-29,35,37,2,1
-0,77,1,-30,-17,22,108,86,4
-0,81,0,20,-19,44,60,16,1
-0,88,-36,0,0,3,88,84,5
-1,86,-3,46,0,40,40,0,1
-0,81,0,42,7,40,40,0,1
-0,77,0,-18,-9,40,95,54,1
--3,80,0,38,0,42,41,0,1
--2,82,0,38,-7,41,43,2,1
-0,79,0,8,19,42,71,28,1
-3,76,0,42,0,34,35,2,1
--3,78,0,36,0,41,42,0,1
-5,107,0,70,0,1,37,36,5
-0,95,0,38,-4,40,57,16,4
-0,87,0,46,19,42,41,0,1
-0,104,0,16,-7,67,89,22,1
-0,86,-1,46,-1,38,39,0,1
--2,83,0,50,0,33,34,2,1
--1,88,0,46,-20,39,41,2,1
-0,85,-2,50,0,36,36,0,1
-0,86,3,46,0,40,39,0,1
-0,85,0,50,-8,34,36,2,1
-2,86,-1,50,0,35,37,2,1
-0,91,0,54,6,38,37,0,1
-0,79,0,8,-30,23,71,48,4
-1,75,0,20,18,38,54,16,1
-1,83,1,38,0,44,44,0,1
-0,95,0,54,6,40,41,2,1
-0,79,0,42,24,38,37,0,1
-0,80,-1,42,-4,37,39,2,1
--3,77,0,50,6,28,28,0,1
-5,79,0,38,-22,38,40,2,1
--3,83,0,42,0,41,41,0,1
-5,83,0,42,0,40,42,2,1
-4,84,0,56,0,25,27,2,1
-0,83,0,54,4,30,28,0,1
-0,84,-2,50,-12,35,35,0,1
-0,87,0,52,-3,34,35,2,1
-0,98,0,42,-7,42,57,14,4
-0,79,-5,42,-14,35,37,2,1
-0,75,5,34,0,37,41,4,1
-2,95,-6,50,0,45,46,0,1
-0,81,0,54,0,28,27,0,1
-0,81,0,42,31,40,39,0,1
-3,86,0,42,0,44,45,2,1
-2,87,0,56,0,31,30,0,1
-4,79,0,46,5,33,32,0,1
--1,106,-3,28,-6,69,78,8,1
-0,77,0,-24,-22,41,103,62,1
-0,79,0,26,5,42,53,12,1
-0,76,0,20,24,40,55,16,1
-1,79,2,46,0,31,32,0,1
-0,76,0,36,-29,38,39,2,1
-0,77,0,16,8,41,62,22,1
-0,95,0,38,-12,40,57,16,4
-3,78,0,46,0,32,32,0,1
-0,76,5,44,18,32,32,0,1
-0,96,0,42,-25,41,55,14,4
-1,93,-2,38,0,55,55,0,1
-0,78,0,18,-30,42,60,18,1
--1,83,0,46,3,38,37,0,1
-0,96,0,42,0,54,55,2,1
-2,76,0,42,-14,32,34,2,1
--5,78,1,44,0,23,34,12,4
-0,87,-3,50,0,37,38,2,1
-0,86,0,52,-23,33,35,2,1
-0,76,0,44,-17,31,32,2,1
--5,89,0,42,0,47,48,0,1
-5,84,0,56,22,29,28,0,1
--4,100,0,46,0,53,54,0,1
-0,77,2,46,1,32,31,0,1
--1,107,-3,70,0,1,37,36,5
-3,80,0,42,-15,36,39,2,1
-0,112,-2,68,3,46,45,0,1
-0,86,0,46,12,40,39,0,1
-0,84,0,44,-24,38,40,2,1
-5,86,0,44,19,42,42,0,1
-0,93,1,44,0,49,50,0,1
-0,86,0,36,-2,48,50,2,1
--5,79,0,52,-1,26,27,0,1
-0,81,0,44,8,38,37,0,1
-0,78,0,6,-4,42,73,32,1
-0,76,-1,38,-2,36,37,0,1
-3,82,0,46,-3,33,35,2,1
-0,87,5,44,0,43,43,0,1
-1,79,0,44,0,35,35,0,1
-0,83,0,42,-25,40,42,2,1
-0,79,-1,10,-2,42,68,26,1
-0,80,0,34,14,43,46,4,1
--3,76,0,42,0,34,34,0,1
-0,79,0,54,-3,24,25,2,1
-0,86,0,46,-5,37,39,2,1
-0,77,0,36,-19,39,41,2,1
-2,96,0,54,1,40,42,2,1
-0,86,0,56,-5,27,29,2,1
-0,106,-7,44,0,61,62,2,1
-1,81,8,44,24,38,37,0,1
-0,79,0,0,-1,42,79,36,1
-0,84,0,54,8,32,30,0,1
-0,103,0,52,-3,50,51,2,1
-1,75,0,18,-1,38,57,18,1
-0,107,0,36,-5,69,71,2,1
-0,109,1,38,0,69,71,2,1
-0,77,0,-2,-17,41,80,40,1
-0,79,-2,38,-14,38,40,2,1
--1,76,0,38,9,39,37,0,1
-0,104,2,18,0,66,86,20,1
--4,83,0,44,-1,38,39,2,1
-0,76,0,46,10,30,29,0,1
-0,82,0,30,-5,45,51,6,1
-2,106,0,38,0,67,67,0,1
-1,79,2,46,0,31,32,2,1
--5,83,0,52,-3,31,32,0,1
-0,77,0,52,12,26,26,0,1
-0,79,0,10,-19,42,69,26,1
-0,88,0,44,-8,42,44,2,1
-0,87,-2,50,20,38,38,0,1
-0,81,5,-22,0,25,105,80,4
-0,89,2,2,-6,4,86,82,5
-0,76,2,46,3,30,29,0,1
--1,84,0,-14,2,4,100,96,5
-4,97,0,46,-3,41,51,10,4
-0,76,0,42,30,35,35,0,1
-0,91,0,10,9,53,81,28,1
-5,83,0,38,-17,41,44,2,1
-0,88,3,52,5,36,36,0,1
--4,102,0,50,-18,51,53,2,1
-0,95,8,46,-6,46,48,2,1
--2,107,0,46,16,62,60,0,1
-0,83,-6,54,0,28,28,0,1
-5,86,-4,50,0,36,37,0,1
--1,79,0,2,-26,23,76,52,4
-0,76,-2,38,-3,37,37,0,1
-3,93,1,46,0,37,46,10,4
--1,80,-5,44,18,37,36,0,1
-5,76,0,20,0,39,55,16,1
-0,84,0,50,28,36,35,0,1
-1,96,2,46,0,40,50,10,4
-0,96,0,36,7,40,60,20,4
-0,83,2,-24,0,27,108,82,4
-0,85,0,42,6,44,44,0,1
--4,105,-3,70,-21,1,35,34,5
--2,90,0,46,0,44,44,0,1
-0,76,0,30,8,40,45,6,1
-0,96,0,42,-12,41,55,14,4
-0,81,0,50,-23,30,32,2,1
--1,80,0,20,9,43,59,16,1
-0,103,0,34,7,66,69,4,1
-5,79,0,42,0,36,37,2,1
--2,109,-7,42,-8,66,67,2,1
-0,81,5,12,0,45,68,24,1
-0,93,0,44,0,49,50,0,1
--2,79,0,42,0,37,38,2,1
-0,81,0,-14,1,25,97,72,4
-0,81,0,-6,-28,25,89,64,4
--2,86,-1,44,-1,42,42,0,1
--3,83,0,36,-9,46,47,2,1
-0,81,0,-10,-2,25,91,66,4
--3,96,0,54,1,40,42,2,1
-1,87,0,52,5,36,35,0,1
-0,81,0,42,-16,37,39,2,1
--1,83,0,54,9,30,29,0,1
-2,86,0,36,0,49,50,2,1
-0,104,-1,24,5,67,81,14,1
-1,86,0,-40,3,4,127,122,5
-0,76,0,36,-12,39,40,2,1
-0,79,0,42,-5,36,38,2,1
-0,98,0,52,19,42,46,4,4
-0,77,0,54,1,23,23,0,1
--1,86,0,54,0,32,32,0,1
-0,76,0,30,-19,39,45,6,1
--1,80,0,52,-10,27,28,2,1
-0,83,-2,44,-3,38,39,2,1
-0,78,-7,54,0,24,24,0,1
-0,81,0,42,21,39,40,0,1
-0,86,0,42,30,46,45,0,1
-0,81,0,46,13,35,34,0,1
--4,81,0,52,-1,29,30,0,1
-0,77,1,38,0,36,38,2,1
-0,94,0,8,-20,57,86,30,1
-5,88,0,42,0,47,47,0,1
-0,95,0,8,-8,58,87,30,1
-0,87,0,52,-27,34,35,2,1
--1,75,0,42,-21,32,34,2,1
-0,96,0,34,2,59,62,4,1
-0,93,0,6,11,38,88,50,4
-4,98,0,44,-6,42,54,12,4
-0,78,0,20,-3,41,57,16,1
-5,77,0,36,-6,39,41,2,1
-0,86,0,56,10,31,30,0,1
-5,79,2,50,0,28,30,2,1
-3,76,0,36,-12,38,40,2,1
-0,88,-3,46,-7,39,41,2,1
-0,87,0,52,8,36,35,0,1
-0,80,0,38,-3,40,41,2,1
-0,86,0,54,10,33,32,0,1
-0,78,0,42,11,37,37,0,1
-5,97,-2,50,16,41,48,8,4
-1,81,0,56,24,25,24,0,1
-0,83,0,-28,0,27,111,84,4
-0,91,0,6,-3,53,86,32,1
-0,88,-2,52,-1,35,36,0,1
--1,85,2,46,0,38,39,0,1
-0,77,0,50,-1,27,28,2,1
-0,86,0,-40,5,4,128,124,5
-0,81,0,46,26,36,35,0,1
-0,77,0,28,9,22,49,26,4
-0,80,-1,-4,0,24,85,62,4
-0,107,-1,38,0,68,68,0,1
-0,81,-6,-4,0,45,86,42,1
-3,98,0,46,6,42,51,10,4
-0,97,2,38,0,59,58,0,1
-1,86,0,42,0,43,44,2,1
--5,107,0,36,-18,69,71,2,1
-0,78,0,54,-4,23,24,2,1
-0,79,2,38,0,39,40,2,1
-0,86,-5,42,0,44,44,0,1
-0,86,-2,46,-4,38,39,0,1
-0,75,0,44,14,32,31,0,1
--4,78,-2,46,0,32,32,0,1
-3,77,0,44,-1,32,34,2,1
-0,82,0,36,27,45,46,2,1
-2,108,0,44,-11,62,64,2,1
-0,79,-2,26,-26,42,53,12,1
-4,76,0,30,0,39,45,6,1
-0,79,6,6,0,42,74,32,1
-0,84,0,52,-13,31,32,0,1
--5,88,0,50,0,39,39,0,1
--3,81,0,38,0,42,42,0,1
--3,96,-3,52,0,40,44,4,4
-0,96,0,54,-8,40,42,2,1
-0,80,0,54,24,27,26,0,1
-3,79,0,38,14,42,41,0,1
-0,76,0,30,7,39,45,6,1
-0,92,0,56,2,36,35,0,1
-0,87,0,54,19,34,33,0,1
-5,93,0,44,20,50,50,0,1
-3,89,0,54,-8,33,35,2,1
-0,89,-6,44,0,44,45,0,1
-3,90,0,28,0,53,62,8,1
-0,77,0,50,29,29,28,0,1
-0,80,0,34,-3,43,46,2,1
-1,82,-2,50,0,32,33,2,1
-0,84,0,50,-21,33,35,2,1
-0,95,2,8,0,58,87,30,1
-0,77,0,-28,-6,21,105,84,4
-2,88,0,46,0,42,42,0,1
-0,90,0,54,-1,34,35,2,1
--2,86,2,42,0,44,45,2,1
-0,89,0,38,-12,48,50,2,1
-0,89,2,46,-5,41,42,2,1
-5,79,0,28,1,42,51,8,1
--5,76,0,46,0,28,30,2,1
--1,83,1,38,0,44,44,0,1
-0,77,0,-24,-3,21,103,82,4
-0,80,0,10,-7,43,70,26,1
-0,81,0,44,16,37,37,0,1
-1,78,0,42,12,37,37,0,1
-1,77,1,36,0,39,41,2,1
-5,81,0,50,0,31,32,0,1
-0,88,0,0,-11,3,88,86,5
-2,77,0,44,10,33,33,0,1
-0,86,0,42,-23,43,45,2,1
-0,108,2,54,0,53,54,0,1
-0,77,0,-4,21,41,83,42,1
-1,77,0,38,0,37,39,2,1
-0,93,0,6,13,38,88,50,4
-7,106,2,72,7,1,34,34,5
-0,77,-7,0,0,41,77,36,1
-1,106,0,36,-19,68,70,2,1
-0,77,0,12,19,40,64,24,1
-0,78,0,20,-15,42,57,16,1
-0,90,0,52,5,38,38,0,1
-5,81,0,46,0,34,34,0,1
-0,88,-2,6,-7,5,83,78,5
-0,105,-3,70,0,1,35,34,5
-0,83,0,52,-16,30,32,2,1
--2,98,0,46,5,42,51,8,4
-0,79,0,46,6,34,33,0,1
-0,104,-6,34,0,67,71,4,1
--3,111,1,62,-5,47,49,2,1
-0,86,0,46,30,40,39,0,1
-1,107,1,42,0,64,66,2,1
-2,79,5,42,0,37,38,0,1
-0,95,0,38,-23,40,57,16,4
-0,83,0,44,-16,37,39,2,1
-0,82,0,54,6,26,28,2,1
--5,86,0,38,0,46,47,2,1
-1,83,6,-42,-20,5,127,122,5
--2,97,0,42,3,56,56,0,1
-3,83,0,46,0,35,36,2,1
-0,93,6,54,0,37,39,2,1
-0,88,5,52,8,36,36,0,1
-0,78,-2,6,-5,22,73,50,4
-0,78,0,12,12,22,65,42,4
-0,86,0,-10,12,3,96,92,5
--2,77,0,38,0,37,38,2,1
--3,78,0,-6,0,42,86,44,1
-5,88,-6,46,0,40,41,2,1
-5,77,0,44,-6,32,34,2,1
-1,91,5,50,0,41,42,0,1
-0,108,-17,28,0,70,79,8,1
-2,81,0,50,1,32,32,0,1
-0,89,-1,38,-15,48,50,2,1
-1,79,3,46,0,33,33,0,1
-0,77,-1,36,28,40,41,0,1
-0,76,1,44,4,32,32,0,1
--1,86,-1,38,0,47,47,0,1
-5,84,0,56,0,28,28,0,1
-0,78,-4,50,0,28,29,0,1
-0,77,6,42,0,35,36,2,1
-0,77,0,44,-8,32,34,2,1
-0,97,-2,30,0,60,66,6,1
-0,83,0,52,-7,30,32,2,1
-0,84,0,-36,-6,4,120,116,5
-0,81,0,34,28,45,48,2,1
-0,107,0,56,19,51,50,0,1
--1,81,7,44,0,37,37,0,1
-0,76,6,26,-18,40,50,10,1
-0,95,7,42,0,40,54,14,4
--4,80,0,50,-9,29,31,2,1
-0,83,0,-38,15,4,122,118,5
--5,89,4,44,0,44,45,0,1
--3,88,0,44,0,43,44,2,1
-4,79,0,46,0,32,32,0,1
--1,83,0,46,0,36,37,0,1
-0,78,0,52,4,27,26,0,1
-1,81,0,54,19,28,26,0,1
-1,87,0,60,0,28,28,0,1
--5,90,2,56,0,34,33,0,1
-0,76,0,26,1,39,50,12,1
-0,76,0,36,6,39,39,0,1
-1,86,0,44,-9,41,42,2,1
-0,88,0,6,17,3,83,80,5
-0,77,0,36,3,40,41,0,1
-0,97,0,52,27,41,46,4,4
-0,77,-1,20,-3,40,57,16,1
-0,83,0,2,-1,46,80,34,1
--4,81,0,42,6,40,40,0,1
-0,90,0,56,18,34,33,0,1
--4,91,-5,56,11,35,34,0,1
--1,81,0,38,-20,40,42,2,1
-1,77,1,16,0,22,62,40,4
-0,94,0,10,-7,57,84,26,1
-1,88,0,44,15,44,44,0,1
--1,95,0,46,26,40,49,10,4
-0,81,0,10,8,44,70,26,1
--2,83,0,46,-2,34,36,2,1
-0,85,0,42,20,44,44,0,1
-4,77,0,44,2,33,33,0,1
-0,82,6,20,0,45,61,16,1
-0,80,0,56,0,23,23,0,1
-0,77,0,-18,0,41,96,54,1
-0,77,4,-24,0,22,103,82,4
--2,83,2,50,0,34,34,0,1
-1,102,0,50,0,52,53,0,1
-0,76,0,34,-19,40,43,2,1
-0,75,0,36,1,37,39,2,1
-1,84,0,46,0,36,37,0,1
-0,92,0,26,31,55,66,12,1
--1,80,0,42,9,39,39,0,1
-0,78,3,54,16,25,24,0,1
-0,77,6,42,14,36,35,0,1
--1,78,0,42,0,36,37,0,1
-0,82,-6,46,0,35,35,0,1
-0,81,-2,42,0,39,40,0,1
-0,83,0,-30,14,4,114,110,5
--1,97,0,46,4,41,51,10,4
-3049,106,-4,36,1,15,69,54,6
-0,108,4,60,0,46,49,2,1
-0,83,0,-4,-16,47,88,42,1
-5,102,-5,46,0,55,55,0,1
--1,98,0,42,-3,42,57,14,4
-0,80,0,18,31,43,62,18,1
--39,80,0,34,0,43,46,2,3
-0,83,0,44,-29,37,39,2,1
-0,80,0,44,-1,35,36,0,1
-43,78,0,38,0,37,39,2,1
--4,75,0,36,0,39,39,0,1
-1,86,0,52,4,35,35,0,1
--14,107,0,70,0,5,37,32,5
-1,90,-1,6,0,53,85,32,1
-0,109,0,38,9,72,71,0,1
-0,83,0,0,4,47,83,36,1
-4,102,0,44,-2,57,58,2,1
-0,76,0,28,-29,39,47,8,1
-2,86,-1,46,8,41,40,0,1
--5,86,0,44,8,42,42,0,1
--1,78,0,44,0,34,34,0,1
-6,95,-4,50,0,45,46,2,1
-2,84,0,44,0,40,41,2,1
-0,79,-2,36,-10,41,43,2,1
-0,79,0,26,-14,42,53,12,1
-0,80,0,0,15,43,80,36,1
-0,76,7,20,0,39,55,16,1
-0,80,0,34,18,43,46,4,1
--3,81,0,42,11,41,40,0,1
--2,88,0,46,7,42,41,0,1
-0,79,0,50,12,30,30,0,1
--5,80,0,50,-11,29,31,2,1
--2,87,0,54,-5,32,33,2,1
--1,82,1,44,0,38,38,0,1
-0,82,-6,8,0,45,74,30,1
-1,84,-3,46,13,39,38,0,1
--3,90,0,54,0,35,35,0,1
-0,97,0,26,-30,60,71,12,1
-0,84,0,50,0,34,35,2,1
-0,89,0,42,-11,46,48,2,1
-0,82,-1,38,0,41,43,2,1
-1,88,0,44,8,44,44,0,1
-0,76,0,38,14,38,37,0,1
-0,109,2,26,0,71,83,12,1
--2,109,0,44,-5,64,66,2,1
--3,106,0,70,0,1,36,34,5
-1,79,0,38,6,42,41,0,1
-0,75,0,18,-6,38,57,18,1
-0,95,0,10,13,58,84,26,1
-1,95,0,54,-1,40,41,2,1
-0,93,8,8,0,37,85,48,4
-1,88,0,44,0,44,44,0,1
-0,79,-7,44,0,33,35,2,1
-1,97,0,46,0,41,50,10,4
--2,86,1,46,0,39,40,0,1
-2,104,1,70,0,1,35,34,5
-2,77,0,0,31,39,77,38,1
-0,76,0,34,24,39,42,4,1
--4,76,0,42,0,34,35,0,1
--5,78,0,44,-4,23,34,12,4
-0,86,0,56,-23,28,30,2,1
-0,108,0,42,0,65,66,2,1
-2,76,5,-42,-7,4,119,116,5
-4,84,0,46,0,38,38,0,1
-2,86,0,56,0,30,30,0,1
-0,81,0,42,-4,37,39,2,1
-0,95,0,50,26,47,46,0,1
--1,88,0,42,10,48,47,0,1
-0,79,-1,38,5,41,40,0,1
--5,80,0,54,0,27,26,0,1
--2,78,2,46,0,31,32,0,1
-1,107,2,38,0,67,68,2,1
--4,100,0,38,-23,59,61,2,1
-0,97,0,56,0,40,40,0,1
-0,98,0,44,31,42,54,12,4
-4,92,0,56,17,36,35,0,1
-0,83,1,-46,0,4,129,124,5
-0,95,0,50,4,47,46,0,1
-0,77,0,0,-27,22,77,56,4
-0,81,8,38,0,42,43,0,1
-0,79,0,20,4,41,58,16,1
--3,76,-2,20,-6,39,55,16,1
-0,95,0,56,23,40,39,0,1
-2,81,0,54,0,28,27,0,1
-0,76,-4,46,0,30,29,0,1
-1,90,0,38,0,50,51,0,1
-0,80,0,18,-5,43,62,18,1
-0,97,2,52,28,41,45,4,4
-0,113,0,68,16,47,45,0,1
--2,79,3,46,0,32,32,0,1
--3,79,0,26,0,23,53,30,4
-4,95,0,46,6,39,49,10,4
-0,75,4,20,-10,38,54,16,1
-0,77,0,28,27,41,49,8,1
-0,87,2,54,0,33,33,0,1
-0,80,0,30,18,43,49,6,1
--2,83,0,44,-14,38,39,2,1
--3,77,0,36,-20,39,41,2,1
-0,93,0,16,-11,38,78,40,4
--5,79,0,56,1,23,22,0,1
-1,85,0,44,0,41,41,0,1
-0,102,0,72,10,1,29,28,5
-0,104,0,54,6,50,49,0,1
-2,107,0,42,31,66,66,0,1
-0,76,-1,38,-12,35,37,2,1
--2,76,0,-14,0,21,92,70,4
--3,100,0,44,0,55,56,2,1
-0,76,-3,42,-29,32,35,2,1
-0,77,0,34,-6,41,44,2,1
-3,81,0,42,3,40,40,0,1
-0,88,-1,-2,-7,3,90,88,5
-0,81,0,-6,-23,25,88,64,4
-0,90,300,6,0,53,85,32,1
-1,82,8,50,0,32,33,2,1
-2,81,2,38,0,42,42,0,1
-5,86,0,50,-12,35,37,2,1
-0,83,0,42,2,42,42,0,1
--2,76,0,36,-12,38,39,2,1
-0,89,4,52,5,38,37,0,1
--3,84,0,44,0,39,40,2,1
-1,79,3,-42,0,4,123,118,5
-0,79,0,24,9,42,55,14,1
-0,87,1,44,1,43,43,0,1
--2,83,-2,50,-8,32,34,2,1
-2,93,0,54,0,37,39,2,1
-0,81,0,46,6,35,34,0,1
-0,80,0,42,31,39,39,0,1
-0,76,0,34,21,39,43,4,1
-0,108,0,46,0,62,62,0,1
-0,78,-3,38,0,39,39,0,1
-0,77,0,46,23,22,31,10,4
--5,83,0,50,0,33,33,0,1
-0,81,0,-10,-1,25,91,66,4
--4,104,0,36,-2,67,68,0,1
--4,86,0,56,0,28,29,2,1
-0,87,3,42,28,46,46,0,1
-0,103,0,26,14,66,77,12,1
-0,80,-1,44,27,37,36,0,1
-0,77,0,28,2,40,48,8,1
-1,90,0,28,5,53,62,8,1
-0,79,0,10,13,42,69,26,1
-1,85,0,-40,12,4,126,122,5
--3,105,0,72,8,1,33,32,5
-0,77,-1,46,-2,31,30,0,1
-0,75,0,26,-10,38,49,12,1
-0,83,-2,46,9,37,36,0,1
-0,76,0,42,-2,33,35,2,1
-0,77,1,28,7,41,49,8,1
-3,77,0,46,0,29,31,2,1
-3,79,0,38,0,38,40,2,1
-0,109,0,60,0,49,49,0,1
-0,105,0,36,0,68,69,2,1
-0,96,0,12,-10,59,83,24,1
-0,78,0,38,-4,38,39,2,1
--5,83,0,50,2,34,34,0,1
-0,87,3,42,21,46,46,0,1
-0,83,0,18,4,47,65,18,1
-0,98,0,44,6,42,54,12,4
-0,92,0,8,-12,37,84,48,4
-0,80,-2,26,0,43,54,10,1
-0,84,0,56,-28,25,27,2,1
--2,80,0,44,0,35,36,0,1
-9,75,13,-2,24,19,77,58,4
--3,90,0,28,2,53,62,8,1
-0,76,2,36,-24,39,40,2,1
-0,87,-3,54,1,34,33,0,1
-0,78,0,42,0,36,37,2,1
-0,110,8,50,0,59,61,2,1
-0,83,0,42,-23,40,42,2,1
-0,81,0,8,-1,44,73,28,1
--1,88,-3,6,-9,5,83,78,5
-0,88,0,52,-4,36,37,0,1
--1,95,-1,44,27,40,51,12,4
-0,90,0,54,-26,34,35,2,1
-0,87,5,46,15,42,41,0,1
-0,86,-2,52,8,35,35,0,1
-0,104,0,24,14,67,80,14,1
-0,76,0,36,-26,38,39,2,1
-5,87,0,46,0,41,41,0,1
-0,78,0,36,-17,41,42,2,1
-0,93,0,12,29,56,81,24,1
-3,82,8,-40,19,5,123,118,5
-0,97,5,54,0,41,42,2,1
--4,84,0,56,-1,25,27,2,1
-0,95,0,50,-24,39,46,6,4
-0,75,0,20,-15,38,54,16,1
-0,85,-6,42,0,43,44,2,1
--1,96,0,50,1,40,47,6,4
-0,79,-5,44,0,35,35,0,1
-0,104,0,20,-24,67,83,16,1
-0,112,-1,68,6,46,45,0,1
--3,81,0,42,0,39,40,0,1
-2,88,0,42,10,47,47,0,1
-0,77,0,38,-23,22,39,16,4
-0,79,-3,12,1,42,66,24,1
-0,97,0,44,-5,41,53,12,4
-0,94,0,46,-2,46,48,2,1
-0,88,-3,52,0,36,36,0,1
-5,77,0,-22,16,40,101,60,1
-3,84,0,42,-17,40,43,2,1
--4,88,0,46,-5,39,41,2,1
-0,81,3,56,0,24,24,0,1
-0,103,0,24,17,66,80,14,1
-0,81,0,36,-20,44,45,2,1
-0,86,0,-40,7,4,128,124,5
-0,81,0,-10,0,25,92,66,4
--1,96,0,50,-21,41,47,6,4
-3,79,0,44,-6,33,35,2,1
-3,108,0,70,0,1,38,36,5
-0,79,0,34,-13,43,46,2,1
-0,79,2,28,10,43,51,8,1
-0,82,-6,42,28,41,41,0,1
-2,97,0,56,1,40,40,0,1
-0,93,0,50,8,37,44,6,4
--4,86,4,50,0,36,37,0,1
-0,86,2,42,0,43,45,2,1
-0,82,0,52,-9,29,30,0,1
-0,88,5,44,6,43,44,2,1
--29,107,0,60,-10,37,47,10,3
-0,85,0,44,-5,40,41,2,1
-0,87,0,50,24,38,38,0,1
-0,103,1,52,-7,51,51,0,1
-1,93,0,42,4,52,52,0,1
-0,82,0,54,-17,26,28,2,1
--1,79,-3,36,-7,42,43,2,1
-1,82,0,44,-16,36,38,2,1
-0,74,0,44,0,30,30,0,1
-0,95,0,46,2,40,49,10,4
-0,96,0,18,12,59,78,18,1
-0,81,0,44,-27,35,37,2,1
-0,76,0,38,2,39,37,0,1
-0,81,-4,42,0,39,40,2,1
--2,77,0,16,-6,22,62,40,4
-5,87,0,50,0,37,38,0,1
-0,88,0,2,7,3,86,82,5
-0,89,0,54,0,35,35,0,1
-0,84,-4,38,0,45,46,2,1
-0,82,0,38,-5,41,43,2,1
-0,80,-3,20,0,43,59,16,1
-1,75,0,44,4,31,31,0,1
--5,79,0,50,0,29,30,0,1
-0,81,0,42,-25,38,40,2,1
-2,78,0,38,-35,37,39,2,1
--4,81,0,50,-15,30,32,2,1
-0,95,0,42,27,40,54,14,4
-0,86,-2,38,0,46,48,2,1
--4,79,0,46,5,33,32,0,1
-2,77,0,54,0,22,23,2,1
-0,86,0,44,-16,41,42,2,1
-0,81,0,24,-8,45,58,14,1
-3,102,0,38,18,64,63,0,1
-0,77,0,-22,-3,21,100,80,4
-0,80,-5,38,0,41,41,0,1
-0,79,0,38,0,39,40,0,1
-0,79,1,6,0,42,74,32,1
-0,81,0,-10,-4,25,92,66,4
--4,109,-2,68,0,43,42,0,1
-0,109,4,34,0,72,75,4,1
-0,112,0,68,5,46,45,0,1
-0,89,4,42,0,47,48,2,1
--2,88,2,46,-2,40,41,0,1
-1,87,5,42,0,45,46,0,1
--1,81,0,44,-24,35,37,2,1
-0,77,0,-2,10,21,79,58,4
-1,79,0,42,-25,35,37,2,1
-0,96,3,54,0,41,42,2,1
-0,107,0,30,31,69,76,6,1
-0,88,0,46,11,43,42,0,1
-0,82,0,44,19,38,38,0,1
-0,78,0,8,21,42,70,28,1
-0,108,0,30,-10,71,77,6,1
-0,77,0,10,4,40,66,26,1
-0,79,0,26,5,42,53,10,1
-1,80,0,44,13,36,36,0,1
-0,86,4,44,17,42,42,0,1
-0,95,-7,46,0,48,48,0,1
-0,76,0,36,-4,39,40,2,1
-0,80,0,12,25,43,67,24,1
-0,83,0,2,3,46,81,34,1
-0,80,0,36,11,43,44,0,1
-0,109,1,50,-15,58,60,2,1
-0,87,-3,52,1,36,35,0,1
-1,87,0,46,16,41,41,0,1
-0,95,0,36,-7,39,59,20,4
-0,88,0,46,17,42,41,0,1
-0,81,2,42,26,41,40,0,1
-0,106,-9,26,0,69,80,12,1
-0,77,0,-28,-11,21,105,84,4
--3,86,0,52,21,35,34,0,1
-0,77,0,16,-12,22,62,40,4
--1,77,1,46,1,32,31,0,1
-2,79,0,44,-24,33,35,2,1
-1,82,0,46,-10,33,35,2,1
-0,80,3,52,0,28,28,0,1
--1,107,0,46,14,62,60,0,1
-0,88,6,46,0,39,41,2,1
-0,79,0,20,5,43,59,16,1
--1,98,7,46,0,42,51,10,4
-0,77,3,34,-5,40,43,2,1
--1,76,0,46,21,30,29,0,1
-0,87,-5,46,0,39,41,2,1
-0,86,3,46,0,39,40,2,1
-0,90,5,46,0,43,43,0,1
-0,77,0,24,-3,40,54,14,1
-0,105,0,24,11,68,82,14,1
-0,76,2,42,-1,33,35,2,1
-4,87,0,46,0,39,41,2,1
-0,102,2,52,0,50,51,0,1
-5,79,0,46,9,33,32,0,1
-0,82,0,-22,-2,26,105,78,4
-0,97,5,34,0,59,63,4,1
-0,95,0,52,0,39,43,4,4
-0,84,0,54,6,30,30,0,1
-0,77,0,28,29,40,48,8,1
-0,79,0,46,9,34,33,0,1
-0,83,0,-42,8,4,127,122,5
-0,79,1,24,0,42,55,14,1
-0,86,0,52,-17,33,35,2,1
-4,106,0,36,0,69,70,0,1
-0,77,0,2,18,40,74,34,1
-0,85,0,42,-9,42,44,2,1
-0,77,0,38,-26,37,39,2,1
-0,82,0,38,7,45,43,0,1
-0,79,-1,34,-2,42,46,4,1
--4,82,4,-4,0,45,87,42,1
-0,92,-1,36,-8,37,56,20,4
-0,83,0,10,-22,46,72,26,1
--5,86,0,44,-2,41,42,2,1
--3,80,-2,20,-5,25,59,34,4
-0,92,0,50,-22,36,43,6,4
-0,79,-4,42,25,38,37,0,1
-0,87,0,44,-21,42,43,2,1
-5,108,0,44,0,63,64,2,1
-0,84,0,54,7,31,30,0,1
--2,83,0,42,-13,40,42,2,1
-0,78,6,42,0,37,37,0,1
--1,84,-1,46,-1,37,37,0,1
-5,76,0,38,31,39,37,0,1
--2,95,0,46,0,40,49,10,4
-0,105,4,18,17,68,87,18,1
-0,95,0,50,5,47,46,0,1
-0,92,0,54,8,36,38,2,1
-0,81,5,50,0,32,32,0,1
-3,106,0,38,0,68,67,0,1
--3,90,0,46,6,44,44,0,1
-0,88,5,46,0,41,42,0,1
-0,79,1,42,-10,35,37,2,1
-2,81,3,-4,0,25,86,62,4
-0,77,0,38,-4,37,39,2,1
-0,95,0,52,2,40,44,4,4
-0,83,0,44,-6,37,39,2,1
-2,76,0,44,1,32,32,0,1
-0,97,2,46,0,41,50,10,4
-0,104,0,18,2,66,86,20,1
--4,95,0,50,30,47,46,0,1
-0,83,8,10,-4,47,73,26,1
-0,77,3,44,1,34,34,0,1
-2,83,0,36,16,47,47,0,1
-0,76,0,-14,3,21,92,70,4
-0,96,0,42,-16,41,55,14,4
-0,112,0,68,0,45,45,0,1
-0,81,0,56,27,25,24,0,1
-0,76,-2,28,-5,40,48,8,1
-3,104,0,18,7,66,86,20,1
--4,77,0,44,0,32,33,0,1
-0,95,0,46,21,40,49,10,4
-0,88,4,52,0,36,36,0,1
-0,79,0,12,13,23,66,42,4
-0,88,8,54,0,35,34,0,1
--2,87,0,54,2,34,33,0,1
-1,76,3,46,0,30,30,0,1
-0,84,0,50,0,35,35,0,1
-0,83,0,46,12,37,36,0,1
-0,76,2,38,11,39,37,0,1
-5,93,0,46,0,47,47,0,1
-0,83,0,2,-30,46,80,34,1
-0,77,0,44,-15,32,34,2,1
-0,87,0,52,0,36,35,0,1
-0,78,0,6,25,23,73,50,4
-0,77,0,18,14,40,59,18,1
-2,110,1,62,0,47,48,0,1
-0,78,0,16,-12,23,63,40,4
-1,86,0,-40,6,4,128,124,5
-1,81,-4,54,0,27,26,0,1
-0,77,0,24,-1,22,54,32,4
-0,108,4,56,22,52,51,0,1
-0,87,0,54,8,34,33,0,1
-0,80,-3,38,21,43,41,0,1
--52,76,0,36,0,39,40,2,3
-0,77,0,28,10,22,49,26,4
-0,79,-7,20,-1,24,59,34,4
--4,81,0,38,-25,41,43,2,1
-0,81,-2,34,0,43,47,4,1
-0,102,-7,72,0,1,29,28,5
-4,76,0,-18,-30,20,94,74,4
-1,86,0,42,10,45,45,0,1
-0,81,0,46,3,35,34,0,1
-0,76,0,36,-19,39,40,2,1
--3,111,0,62,0,47,49,2,1
-0,82,8,46,0,34,35,2,1
--1,90,0,56,0,34,33,0,1
--1,79,0,42,-11,35,37,2,1
-1,95,0,44,15,52,51,0,1
--2,98,0,44,-9,42,54,12,4
-0,87,0,50,0,37,38,2,1
-0,99,3,46,0,42,52,10,4
-1,76,0,44,4,31,32,0,1
-0,84,0,-20,3,4,105,102,5
-0,108,0,72,3,1,35,34,5
-0,83,0,34,19,46,49,4,1
-0,84,-3,54,0,30,30,0,1
--4,108,0,54,0,54,53,0,1
-0,86,-38,46,0,40,40,0,1
-0,92,0,28,7,36,63,28,4
-0,80,0,46,31,35,34,0,1
-0,81,0,-10,8,25,92,66,4
-0,82,0,52,-3,29,30,2,1
--1,86,0,46,0,39,40,2,1
-0,83,0,38,11,45,44,0,1
-0,97,-2,50,26,41,48,6,4
-0,80,0,0,24,24,80,56,4
-2,86,-1,42,-1,44,44,0,1
-0,109,0,64,-4,43,45,2,1
-0,84,0,52,-5,31,32,2,1
--5,83,0,42,0,41,42,2,1
-4,77,0,36,19,40,41,0,1
--2,84,0,-22,-30,4,108,104,5
--1,78,0,42,5,37,37,0,1
-0,74,0,30,4,37,43,6,1
-0,82,-1,50,0,32,33,0,1
-2,106,0,46,0,58,60,2,1
-0,75,0,30,15,38,44,6,1
--4,84,0,42,0,43,43,0,1
-5,87,1,46,1,41,41,0,1
-0,77,0,50,0,26,28,2,1
-0,96,6,24,0,59,73,14,1
--1,81,0,44,11,37,37,0,1
-0,79,0,8,9,42,71,30,1
-0,80,7,20,-8,25,59,34,4
-0,92,-2,0,0,36,92,56,4
-0,79,0,16,28,43,64,22,1
-0,77,0,-2,4,41,80,40,1
-0,76,0,-12,4,20,89,68,4
-0,83,0,10,6,46,72,26,1
-0,76,-5,34,-6,40,43,2,1
-4,95,-2,42,0,39,54,14,4
-0,77,-3,42,0,34,35,2,1
-0,80,-7,56,0,23,23,0,1
-0,82,0,-38,2,26,121,94,4
-0,95,0,10,20,58,84,26,1
--2,86,0,56,0,29,29,0,1
-0,88,4,54,0,35,34,0,1
-3,84,0,44,0,39,41,2,1
-0,93,4,34,1,55,60,6,1
-1,90,0,24,4,52,66,14,1
-0,77,0,20,3,40,56,16,1
-0,84,0,-22,0,3,108,104,5
--4,86,-2,42,0,45,44,0,1
-3,77,0,54,0,23,23,0,1
-0,79,0,52,16,27,27,0,1
-0,77,0,12,-9,40,64,24,1
--1,102,0,50,0,51,53,2,1
-0,77,0,46,-7,29,31,2,1
-3,87,0,44,0,42,43,2,1
-2,84,0,56,0,27,28,0,1
-0,106,2,28,-33,69,78,8,1
-0,77,0,28,-18,40,48,8,1
-3,75,0,42,17,34,34,0,1
--1,82,0,38,-4,41,43,2,1
--4,100,1,38,0,61,62,2,1
-0,88,0,42,15,48,47,0,1
-0,87,2,50,11,38,38,0,1
-0,85,8,-40,12,5,126,122,5
-5,81,0,50,-19,30,32,2,1
-0,77,-2,-12,-1,40,90,50,1
--2,83,0,42,-9,39,41,2,1
-0,79,-7,24,0,42,55,14,1
-0,91,1,50,0,41,42,0,1
-0,79,0,8,-18,23,71,48,4
-0,96,0,30,11,59,65,6,1
-0,100,0,36,-4,63,64,2,1
-0,86,2,42,13,46,45,0,1
--32,91,0,2,0,48,88,40,3
-0,108,0,34,-30,71,75,4,1
-0,81,0,44,-28,36,37,2,1
-0,96,1,54,0,40,42,2,1
--1,88,0,50,0,39,39,0,1
-16,77,-5,-22,6,41,101,60,1
--3,110,0,46,-3,62,64,2,1
--4,84,-2,46,0,37,38,0,1
-0,90,0,24,15,52,66,14,1
-0,84,-1,46,-3,36,38,2,1
-1,86,0,38,0,47,48,2,1
--3,86,0,46,0,40,39,0,1
-0,86,0,52,-24,32,34,2,1
-0,107,0,46,0,59,60,0,1
-5,86,-2,44,0,41,42,2,1
-0,97,0,30,-27,60,66,6,1
-0,88,0,46,-30,39,41,2,1
-0,85,0,44,28,42,41,0,1
-0,76,3,28,-14,40,48,8,1
-0,90,0,36,6,53,54,2,1
-0,77,0,36,16,40,41,2,1
-0,77,0,50,20,28,28,0,1
-0,97,0,28,13,60,69,8,1
-3,81,0,46,0,33,34,2,1
-0,97,0,50,-18,41,48,6,4
--4,85,-1,44,0,41,41,0,1
-1,98,0,44,-16,42,54,12,4
--2,82,0,56,0,24,25,0,1
-0,83,1,46,0,37,37,0,1
-1,112,-4,68,6,46,45,0,1
-0,96,2,46,0,40,50,10,4
-0,88,4,44,5,43,44,2,1
-2,78,0,38,0,37,39,2,1
--4,78,0,42,0,35,37,2,1
-0,92,6,10,0,54,81,28,1
-4,90,0,50,0,41,41,0,1
-4,78,0,46,0,30,32,2,1
-4,86,0,52,-4,33,34,2,1
-0,106,-15,28,0,69,77,8,1
--3,86,0,38,-10,45,47,2,1
-5,86,0,52,25,35,34,0,1
-0,79,0,42,10,39,38,0,1
-5,99,0,46,0,43,52,10,4
-46,78,0,38,-222,37,39,2,1
-0,77,3,42,0,35,36,0,1
-1,97,0,42,0,40,55,14,4
-0,86,-7,50,0,36,37,0,1
-0,77,0,20,-7,40,56,16,1
-0,81,0,10,-26,45,71,26,1
--1,82,-3,-20,15,26,103,76,4
-0,104,0,16,-22,67,88,22,1
-0,85,7,42,-14,42,44,2,1
-0,96,0,30,2,59,65,6,1
-1,86,0,54,0,31,32,2,1
-0,87,4,50,18,38,38,0,1
-1,82,0,46,-1,33,35,2,1
-0,98,0,28,-10,61,70,8,1
--1,82,0,42,10,41,41,0,1
-0,102,-7,36,0,64,66,2,1
-3,77,0,42,31,37,36,0,1
-0,97,0,26,-20,60,71,12,1
-0,95,0,36,-1,39,59,20,4
-1,80,0,52,20,29,28,0,1
-0,96,0,54,5,40,42,2,1
-0,86,0,38,10,48,47,0,1
-0,78,0,8,7,23,70,48,4
-0,76,2,28,-6,39,47,8,1
-0,102,0,72,0,1,29,28,5
--1,76,-5,46,0,30,29,0,1
-0,84,6,50,0,35,35,0,1
-0,79,0,30,-9,43,48,6,1
-0,81,0,42,-13,37,39,2,1
-0,92,-7,16,-6,55,77,22,1
-0,98,0,44,15,42,54,12,4
-0,79,-1,26,12,23,53,30,4
-0,79,8,46,0,31,32,0,1
-0,86,0,50,-15,35,37,2,1
-5,86,3,42,0,44,45,2,1
-1,79,0,44,31,24,35,10,4
-0,104,0,28,30,66,75,8,1
-0,79,-7,44,0,35,35,0,1
-3,79,0,44,-3,33,35,2,1
-0,87,2,46,0,41,41,0,1
--3,80,0,52,0,28,28,0,1
--2,75,0,36,0,39,39,0,1
--1,105,-1,70,0,1,35,34,5
-0,90,0,44,-4,45,46,2,1
-0,92,0,56,16,36,35,0,1
--2,100,5,38,-1,60,62,2,1
-1,87,2,52,9,36,35,0,1
--5,77,0,38,0,38,39,0,1
--4,78,0,16,-8,23,63,40,4
--5,111,0,62,0,49,49,0,1
-3,86,0,38,0,46,48,2,1
-0,82,-1,-2,8,45,85,40,1
-3,81,0,44,0,36,37,0,1
--3,85,0,52,0,33,33,0,1
-0,76,4,26,0,39,50,10,1
--2,110,2,50,0,60,61,2,1
-7,85,-3,42,-5,42,44,2,1
-1,86,0,38,7,49,48,0,1
--3,81,5,50,0,32,32,0,1
--2,88,-1,56,0,31,31,0,1
-0,88,0,50,-4,37,39,2,1
-3,87,0,56,0,30,30,0,1
--5,86,0,38,-11,45,47,2,1
-0,104,0,24,11,67,80,14,1
-0,107,0,28,-3,70,78,8,1
-0,86,-1,44,-10,40,42,2,1
-2,96,0,54,4,40,42,2,1
-0,75,0,42,23,34,34,0,1
-0,79,0,52,-11,26,27,0,1
--4,106,0,34,5,69,72,4,1
-0,88,0,52,1,37,37,0,1
-1,81,0,-6,6,25,88,64,4
-0,95,0,52,-11,40,44,4,4
-0,92,-1,18,-4,55,74,20,1
-0,81,6,44,0,36,37,2,1
-0,82,-4,42,0,40,41,0,1
-3,84,0,54,3,30,30,0,1
-0,76,0,26,-2,39,50,12,1
-0,96,0,36,-10,59,60,2,1
-0,79,-1,8,0,43,72,28,1
--1,86,0,-4,-10,3,91,88,5
-0,95,0,42,27,40,54,14,4
-0,79,0,44,11,35,35,0,1
-0,77,0,-30,-30,22,108,86,4
-0,77,0,26,26,40,51,12,1
-0,83,0,34,10,46,49,2,1
-0,85,0,44,179,41,41,0,1
-0,87,-4,46,-9,38,41,2,1
--5,86,-1,38,-17,45,47,2,1
--3,101,0,50,0,52,52,0,1
-0,77,-3,38,0,39,38,0,1
-0,77,0,52,12,26,25,0,1
-2,88,0,44,7,45,44,0,1
-0,95,-2,46,0,40,49,8,4
--4,77,0,46,7,32,31,0,1
-0,83,0,6,-6,47,78,32,1
-0,76,0,-10,10,20,86,66,4
--3,82,1,42,0,41,41,0,1
-0,81,-1,52,3,30,30,0,1
-0,101,1,28,-25,64,73,8,1
-0,76,0,42,-26,32,34,2,1
-1,81,1,38,0,41,43,2,1
--2,86,0,-40,0,5,128,124,5
-4,100,0,28,0,63,72,8,1
-0,83,0,44,0,38,39,0,1
-1,76,0,44,31,33,32,0,1
-0,95,-7,16,-14,58,80,22,1
-0,78,0,-4,-11,42,83,42,1
-0,88,7,56,15,32,31,0,1
--5,78,-5,50,0,28,29,2,1
-5,76,0,42,0,33,34,2,1
-0,96,0,20,6,59,75,16,1
-0,76,0,-10,6,20,86,66,4
-4,102,0,42,7,61,60,0,1
-0,81,0,-6,31,25,88,64,4
-0,77,-4,10,2,22,67,46,4
-0,78,0,20,-1,42,57,16,1
-0,76,-4,36,2,40,40,0,1
-0,78,0,52,8,27,26,0,1
-1,86,0,46,-14,37,39,2,1
-1,77,0,42,31,37,36,0,1
-5,82,0,54,0,26,28,2,1
-0,81,0,44,15,38,37,0,1
-3,81,0,46,15,35,35,0,1
--2,79,0,26,11,42,53,12,1
-5,81,0,-42,0,4,125,120,5
-0,81,-2,28,0,44,52,8,1
-0,95,8,10,5,57,84,28,1
-0,83,0,46,0,37,37,0,1
--1,76,0,46,12,31,30,0,1
-0,81,0,54,-16,25,27,2,1
-0,76,0,44,5,31,32,0,1
-0,76,0,28,26,40,48,8,1
--1,78,8,0,7,41,78,36,1
-0,87,-7,44,0,42,43,2,1
-0,79,0,44,-1,34,35,0,1
--4,78,0,42,0,37,37,0,1
-0,86,1,54,3,33,32,0,1
-1,79,0,54,22,26,24,0,1
-0,95,0,56,24,40,39,0,1
-3,113,0,64,-20,46,48,2,1
-0,88,0,56,22,32,31,0,1
-0,98,0,44,7,42,54,12,4
-0,89,4,44,-18,43,45,2,1
--1,83,-1,-40,2,4,124,120,5
--3,99,0,50,1,43,49,6,4
-0,79,0,16,21,23,63,40,4
-0,94,6,38,0,56,55,0,1
-0,81,0,-4,19,25,86,62,4
-0,83,2,-30,3,27,114,86,4
-0,77,4,46,0,31,31,0,1
-0,77,0,44,-1,32,33,0,1
-0,78,0,26,2,22,52,30,4
-0,81,-7,20,20,44,61,16,1
-0,80,0,-2,-5,24,83,58,4
--1,76,0,36,0,39,40,0,1
-0,97,0,50,-3,41,48,6,4
-0,80,0,24,9,43,57,14,1
-0,95,0,42,4,40,54,14,4
--5,77,3,42,0,35,35,0,1
-0,76,0,-10,4,20,86,66,4
-0,97,0,46,18,41,50,10,4
-4,82,0,56,18,26,25,0,1
-0,78,0,8,-19,23,70,48,4
-1,86,0,56,0,30,30,0,1
-0,89,1,52,8,38,37,0,1
-0,78,-2,46,-4,29,32,2,1
-0,86,-1,54,9,33,32,0,1
-0,97,0,42,4,55,55,0,1
-0,86,6,38,0,47,48,0,1
-5,78,0,42,18,37,37,0,1
-2,79,2,38,0,39,40,0,1
--2,76,0,44,23,32,32,0,1
-0,78,1,8,-19,22,70,48,4
-5,77,0,-22,0,23,101,78,4
-0,77,0,-4,3,21,82,62,4
-27,77,0,28,0,33,48,16,2
-3,80,0,50,4,31,31,0,1
--3161,86,-2,46,0,39,39,0,1
-0,95,0,18,-9,57,77,20,1
--3,76,0,42,0,33,35,2,1
-1,86,0,50,-17,35,37,2,1
--5,109,0,46,0,64,63,0,1
-0,88,0,0,10,3,88,84,5
-2,108,0,44,0,63,64,0,1
-0,81,0,36,-6,44,44,0,1
-0,81,0,-4,16,25,86,62,4
--3,80,0,50,2,31,31,0,1
-2,104,0,24,13,66,80,14,1
-0,76,0,44,8,32,32,0,1
-2,81,0,36,-30,43,45,2,1
-1,77,2,44,0,33,33,0,1
-0,92,0,54,-25,36,38,2,1
-0,95,0,26,0,58,70,12,1
-2,90,0,42,0,48,49,0,1
-0,93,0,6,-23,37,88,50,4
-0,80,0,42,5,39,39,0,1
-0,100,0,30,-4,64,69,6,1
-0,82,0,36,-3,45,46,2,1
-0,78,3,16,0,42,63,22,1
-0,82,0,34,5,45,48,2,1
-0,84,0,44,-11,38,40,2,1
--1,97,0,46,6,41,51,10,4
-0,80,0,8,-6,43,72,30,1
-4,88,0,46,0,42,42,0,1
-0,108,-4,34,0,71,75,4,1
-0,89,0,42,-4,46,48,2,1
-0,97,-1,38,-15,56,58,2,1
-3,77,0,-28,-30,21,105,84,4
-0,95,0,24,31,58,72,14,1
-0,79,4,42,-9,36,38,2,1
-3,83,0,38,0,44,44,0,1
--1,88,2,46,0,41,41,0,1
-0,76,0,24,-17,40,53,14,1
-0,76,0,44,5,32,32,0,1
-0,81,0,24,-9,44,57,14,1
-0,80,0,52,3,29,28,0,1
-3,106,0,46,7,60,60,0,1
-0,83,0,42,-3,40,42,2,1
-0,77,0,2,-1,40,74,34,1
-0,79,-4,20,0,24,59,34,4
-2,81,0,44,5,37,37,0,1
-0,86,6,54,12,33,32,0,1
--2,87,0,46,-12,38,41,2,1
-0,76,0,38,16,38,37,0,1
-0,91,0,52,-3,38,39,0,1
-0,87,0,56,10,31,30,0,1
--1,90,0,56,0,33,33,0,1
-0,77,5,36,9,40,41,0,1
-1,76,-1,38,0,36,37,2,1
-1,108,0,38,-23,67,69,2,1
-0,77,0,-14,7,21,92,72,4
-0,84,0,46,-13,36,38,2,1
-4,86,0,56,18,30,29,0,1
-3,106,1,70,0,1,36,34,5
-0,81,0,50,29,33,32,0,1
-0,80,0,36,-2,43,44,2,1
--1,106,-3,70,0,1,36,34,5
--2,81,2,54,-21,25,26,2,1
-0,93,0,50,-1,38,44,6,4
-3,86,0,44,7,43,42,0,1
-0,75,0,34,2,38,41,4,1
-0,81,0,-6,-4,25,88,64,4
-0,79,0,18,5,42,61,18,1
-0,78,0,26,1,22,52,30,4
-0,78,0,18,18,42,60,18,1
-0,78,-1,38,-31,37,39,2,1
-2,80,0,56,2,24,23,0,1
-0,76,3,36,-30,39,40,2,1
-0,83,0,42,24,42,42,0,1
-0,76,0,28,-11,40,48,8,1
-0,77,4,-12,-5,41,90,50,1
-0,76,0,36,13,40,40,0,1
-0,77,5,38,1,39,38,0,1
-2,84,0,46,0,38,38,0,1
-0,96,-2,50,0,41,47,6,4
-0,77,0,-22,8,40,101,60,1
--1,83,0,44,-4,37,39,2,1
--1,82,-3,38,-5,44,43,0,1
-0,76,7,44,2,32,32,0,1
--3,109,0,64,-17,43,45,2,1
-5,79,0,42,-15,35,37,2,1
-0,79,0,10,-19,23,68,46,4
--1,81,0,38,0,42,42,0,1
-0,85,0,44,-26,39,41,2,1
-0,84,0,44,23,41,41,0,1
-0,77,0,34,18,22,44,22,4
--5,81,0,38,4,44,43,0,1
-0,76,1,24,19,39,52,14,1
-0,90,-7,54,0,36,36,0,1
-4,77,0,42,10,36,35,0,1
-0,96,8,50,0,47,47,0,1
--2,81,0,52,-2,29,30,0,1
-3,77,0,38,0,37,39,2,1
--5,108,0,42,0,66,66,0,1
-0,79,0,34,-1,42,46,4,1
-5,88,0,50,0,39,39,0,1
-0,77,0,18,31,40,59,18,1
-0,77,0,42,5,22,36,14,4
--1,89,0,42,-4,46,48,2,1
-0,97,0,28,-4,60,69,8,1
-0,86,0,50,31,37,37,0,1
-0,76,0,28,0,39,48,8,1
--1,86,-3,50,-4,37,37,0,1
-0,87,1,56,10,31,30,0,1
-0,100,0,38,-3,59,61,2,1
-0,83,2,-42,-16,5,127,122,5
-0,75,-4,42,0,32,34,2,1
-2,88,0,2,-27,3,86,82,5
-0,75,-1,42,0,32,34,2,1
-3,80,6,44,0,35,36,0,1
-5,89,-1,38,0,48,50,2,1
--5,89,0,42,0,46,48,2,1
-0,79,0,16,-22,43,64,22,1
-0,82,0,42,-19,38,41,2,1
-0,87,5,54,0,33,33,0,1
-0,77,0,12,-19,22,65,42,4
-0,96,4,56,9,40,39,0,1
-2,86,0,56,0,27,29,2,1
-0,91,0,-4,-6,35,96,62,4
-1,82,-3,44,-26,36,38,2,1
-3,86,0,44,-4,41,42,2,1
-0,79,4,46,0,33,32,0,1
-0,81,-1,-12,0,26,94,68,4
-0,96,0,54,1,41,42,0,1
-0,84,-1,-38,-7,4,123,118,5
-0,86,4,-40,4,5,127,122,5
--4,81,6,46,7,36,35,0,1
-0,76,-2,24,0,39,52,14,1
-0,78,0,8,-3,42,70,28,1
-4,86,-1,52,0,33,34,0,1
-0,95,-3,42,0,40,54,14,4
--2,106,0,50,0,57,57,0,1
-0,82,0,52,-7,29,30,2,1
-2,105,0,34,0,67,71,4,1
--3,86,-3,-40,0,4,127,122,5
-0,75,-1,42,-1,32,34,2,1
--1,82,0,50,11,33,33,0,1
-0,77,-1,28,-28,40,48,8,1
--1,84,0,38,-16,43,45,2,1
-0,96,0,10,0,59,86,28,1
-0,79,0,20,22,23,58,34,4
-0,91,0,50,-8,40,42,2,1
-1,80,-5,46,0,32,34,2,1
-3,85,0,52,0,33,33,0,1
-1,84,0,46,-1,36,38,2,1
-0,86,0,54,1,33,32,0,1
-0,77,0,52,-13,25,26,2,1
-0,78,3,12,0,42,65,24,1
-0,95,0,50,19,47,46,0,1
-0,76,-3,28,-4,39,47,8,1
-2,83,0,52,12,31,31,0,1
-0,79,0,34,1,41,45,4,1
-5,76,0,46,0,28,29,2,1
-3,90,0,38,0,51,51,0,1
-0,93,0,52,24,38,42,4,4
-1,77,1,42,-16,34,36,2,1
-3,81,0,44,-8,36,37,2,1
-3,90,0,44,0,45,46,0,1
-0,78,-5,42,-1,35,37,2,1
-4,95,0,44,31,39,51,12,4
-1,79,5,38,0,39,40,0,1
-0,80,-2,44,-4,35,36,0,1
-0,108,0,38,-4,67,69,2,1
-0,77,0,36,12169,39,41,2,1
--1,100,-2,28,0,63,71,8,1
--2,106,0,34,-8,68,72,4,1
-0,81,0,54,6,27,26,0,1
-4,97,-5,46,0,41,51,10,4
--3,83,0,46,0,36,37,0,1
-0,81,0,-18,9,25,99,74,4
-1,76,4,38,0,36,37,2,1
--1,108,0,38,0,68,69,0,1
--5,78,6,44,0,23,34,12,4
-0,75,0,34,8,38,41,2,1
-0,96,-3,54,9,40,42,2,1
-0,93,0,2,-1,38,91,52,4
-5,76,0,42,15,35,35,0,1
-0,77,0,42,-7,34,36,2,1
-0,86,2,54,0,33,32,0,1
-4,86,0,42,-15,43,45,2,1
-0,84,0,-14,-6,3,99,96,5
-0,83,0,28,-7,46,54,8,1
-0,81,-2,30,0,45,50,6,1
--2,79,0,46,21,33,32,0,1
--3,80,0,56,0,23,23,0,1
--5,75,0,38,0,36,36,0,1
-0,95,0,34,-11,40,62,22,4
-0,86,0,54,-10,30,32,2,1
-0,97,0,28,-14,60,69,8,1
-0,89,2,2,-14,4,86,82,5
-0,83,0,46,-12,34,37,2,1
-0,97,0,56,25,41,40,0,1
--1,102,0,50,-7,51,53,2,1
-0,95,0,34,-12,40,62,22,4
-0,84,5,38,-20,44,46,2,1
-0,76,57,20,0,40,55,16,1
-3,97,0,54,0,40,42,2,1
-0,79,8,8,-27,42,71,28,1
-0,90,0,52,-11,37,39,2,1
-0,83,0,2,-6,46,80,34,1
-3,108,0,70,0,2,38,36,5
-0,106,-5,36,0,69,70,0,1
-3,88,0,42,0,46,47,2,1
-3,79,0,44,-2,33,35,2,1
-0,76,0,46,17,31,30,0,1
--3,96,0,52,0,40,44,4,4
-0,97,0,52,26,41,45,4,4
-0,79,0,44,0,34,35,2,1
-0,107,-4,46,2,61,60,0,1
-0,78,3,50,5,29,29,0,1
--3,88,1,42,0,45,46,2,1
-0,86,-1,52,0,34,34,0,1
--2,86,-7,46,0,39,39,0,1
-0,84,0,-20,19,4,105,102,5
-0,79,0,6,-23,42,74,32,1
-0,78,0,16,-22,23,63,40,4
-0,95,0,54,-7,40,41,2,1
-0,79,-1,0,4,42,79,36,1
-0,82,0,46,26,37,35,0,1
-0,79,0,46,15,34,33,0,1
--2,86,0,-6,0,4,94,90,5
-0,88,0,52,10,36,36,0,1
-1,84,0,56,14,29,28,0,1
-0,79,0,44,12,35,35,0,1
-0,87,6,38,-4,46,48,2,1
-0,81,0,56,26,26,24,0,1
-0,95,0,16,-6,58,79,22,1
--4,77,0,20,0,40,56,16,1
--1,80,0,52,-19,27,28,2,1
--1,82,-3,52,-4,29,30,0,1
-0,90,0,38,0,52,51,0,1
-0,81,2,-42,0,5,125,120,5
-0,82,0,38,0,44,43,0,1
-0,81,0,-10,-5,25,92,66,4
-0,83,0,38,-15,42,44,2,1
-0,88,1,46,-1,41,41,0,1
-1,104,0,16,-23,66,88,22,1
-5,95,0,44,0,39,51,12,4
--3,102,0,54,0,49,48,0,1
--1,107,0,38,0,69,68,0,1
--1,81,0,42,-28,38,40,2,1
--1,87,0,56,3,31,30,0,1
-0,79,2,42,-13,35,37,2,1
-0,82,0,52,-22,29,30,2,1
-4,83,0,36,0,46,46,0,1
-0,97,0,38,-14,41,58,18,4
-0,81,4,52,-7,28,30,2,1
-0,82,0,38,13,45,43,0,1
-0,107,-3,36,0,69,71,2,1
--3,77,0,38,7,39,38,0,1
-0,79,0,28,-4,42,50,8,1
-0,91,0,-4,-7,35,96,62,4
--1,83,1,46,-4,35,37,2,1
-0,80,2,-2,-14,24,83,58,4
--4,96,0,54,-15,41,42,2,1
-1,80,0,46,13,34,34,0,1
-0,86,0,38,14,48,47,0,1
-0,98,2,52,0,42,46,4,4
--2,108,0,42,0,66,67,0,1
--1,86,0,38,0,48,48,0,1
-0,97,0,52,25,41,45,4,4
--5,81,0,42,-4,38,40,2,1
-0,96,0,52,15,40,44,4,4
-0,86,0,44,-27,41,42,2,1
-0,77,0,24,-4,40,54,14,1
--1,83,0,44,-17,38,39,2,1
-1,81,0,42,-11,37,39,2,1
-0,83,0,50,6,34,34,0,1
-2,79,0,42,1,37,37,0,1
--5,86,-3,50,0,36,37,0,1
-0,79,0,56,11,24,23,0,1
-0,86,0,46,11,40,39,0,1
-0,76,1,38,0,35,37,2,1
-0,79,-2,38,-13,38,40,2,1
--2,76,0,44,-17,31,32,2,1
-5,83,1,42,0,40,42,2,1
--2,95,0,46,1,40,49,10,4
-1,93,0,50,0,37,44,6,4
-1,75,0,44,9,31,31,0,1
-5,105,1,18,0,68,87,20,1
-0,83,0,36,-5,45,46,2,1
-0,103,5,72,30,1,31,30,5
-4,81,0,46,7,35,35,0,1
-2,88,1,46,0,42,42,0,1
--4,86,0,42,0,44,45,0,1
-0,76,-4,26,0,39,50,10,1
-0,81,-2,-14,-16,26,97,70,4
-0,78,0,42,1,37,37,0,1
-0,79,0,34,-13,42,46,4,1
-0,77,8,20,0,40,56,16,1
-0,84,0,44,-7,39,41,2,1
-0,77,0,-2,9,21,79,58,4
-1,87,0,46,27,41,41,0,1
-0,86,7,42,0,44,45,0,1
-0,76,0,46,0,30,30,0,1
-4,86,0,38,0,46,48,2,1
-0,83,0,52,21,31,31,0,1
-3,85,0,50,0,34,36,2,1
-0,86,0,50,0,36,37,2,1
-3,77,0,44,1,33,34,0,1
-0,96,-1,50,-5,40,47,6,4
--1,97,0,46,-5,41,50,10,4
--8,75,0,28,16,38,46,8,1
-0,97,-2,34,-3,59,63,4,1
-0,94,0,10,-23,57,84,26,1
-0,77,0,34,21,40,43,2,1
-0,77,0,50,25,28,28,0,1
-4,77,0,28,0,24,48,24,4
-4,88,0,56,2,31,31,0,1
-1,84,0,52,11,33,32,0,1
-0,79,-1,10,0,42,68,26,1
-0,97,4,46,0,41,50,8,4
-0,76,6,44,4,32,32,0,1
-0,79,4,52,0,27,27,0,1
-5,83,0,34,0,45,49,4,1
-0,76,0,-12,-6,20,89,68,4
--2,77,0,42,-12,34,36,2,1
-0,81,0,-6,18,25,89,64,4
-3,98,0,44,-3,42,54,12,4
-2,83,-4,42,0,41,41,0,1
-0,76,7,20,-1,40,55,16,1
-0,78,7,46,0,30,32,2,1
-0,80,0,36,-23,43,44,2,1
-0,87,-4,50,10,38,38,0,1
-0,87,5,44,-15,42,43,2,1
--4,78,0,-2,0,41,81,40,1
-5,93,0,42,0,51,52,0,1
-0,96,-2,56,0,38,39,2,1
--1,88,3,52,-12,35,36,2,1
-3,95,0,50,0,41,46,6,4
-0,81,5,42,-2,37,39,2,1
-0,82,2,42,1,41,41,0,1
-0,83,8,44,0,38,39,2,1
-0,84,0,52,-7,32,33,0,1
-0,77,1,28,0,22,49,26,4
-0,104,2,20,0,67,83,16,1
-0,107,0,28,-11,70,78,8,1
-0,82,7,56,0,24,25,0,1
-0,81,2,46,0,33,34,2,1
-3,95,0,46,0,47,49,2,1
-0,84,-1,50,-1,35,35,0,1
-0,84,0,46,24,38,37,0,1
-0,86,0,54,-24,31,32,2,1
-0,88,0,6,0,4,83,80,5
-0,83,0,30,-5,46,52,6,1
-5,79,0,42,14,38,38,0,1
-0,81,-7,-2,0,44,83,40,1
-5,107,0,44,21,63,63,0,1
-0,88,0,44,-8,43,44,2,1
-0,77,0,16,-21,40,62,22,1
-0,81,1,38,-11,40,42,2,1
-0,104,0,26,9,66,78,12,1
-0,93,2,8,0,37,85,48,4
-0,77,1,34,0,41,44,2,1
-0,76,0,30,26,40,45,6,1
-2,82,0,38,0,42,43,2,1
--4,84,0,42,-23,41,43,2,1
-0,76,4,44,0,32,32,0,1
-4,86,-1,-4,0,3,92,88,5
--1,87,0,42,-30,43,46,2,1
--2,108,0,42,0,66,66,0,1
-5,81,0,38,9,43,42,0,1
-4,81,0,54,27,28,27,0,1
-8,78,4,-42,0,4,122,118,5
--1,88,0,44,0,43,44,2,1
--5,80,0,36,0,44,44,0,1
-0,77,-6,8,0,40,69,28,1
-0,79,6,8,-21,42,71,28,1
-2,83,0,44,0,38,39,0,1
-0,76,1,34,1,40,43,2,1
--1,86,-6,44,0,43,42,0,1
--1,83,-10,-32,-26739,4,117,112,5
-0,95,0,50,25,47,46,0,1
-0,105,-1,38,0,67,66,0,1
-0,96,0,30,22,59,65,6,1
-0,79,2,2,-5,43,77,34,1
-0,109,0,62,8,48,47,0,1
-0,77,0,-20,-15,41,98,58,1
-0,96,-5,54,31,40,42,2,1
-5,84,0,50,0,33,35,2,1
-0,78,0,-4,-4,42,83,42,1
-2,83,0,46,8,37,37,0,1
-0,96,1,42,-4,41,55,14,4
-3,108,5,72,1,1,36,34,5
-0,80,0,16,-26,43,65,22,1
-2,86,0,46,-8,37,39,2,1
-0,88,-1,6,21,3,83,80,5
-0,89,-1,46,-1,41,42,2,1
-0,79,-1,42,12,38,37,0,1
-0,98,0,52,6,42,46,4,4
-0,79,0,38,0,40,40,0,1
-0,77,0,20,-4,40,56,16,1
-0,98,1,28,0,61,70,8,1
--2,77,0,0,19,40,77,36,1
-0,81,-6,38,-5,43,43,0,1
-3,88,0,52,17,37,37,0,1
-0,77,0,36,0,41,41,0,1
-0,81,0,28,-2,44,52,8,1
-0,79,0,6,1,23,74,50,4
-0,79,-3,38,-6,38,40,2,1
-0,97,0,42,-10,41,55,14,4
-0,93,-4,50,0,38,44,6,4
-0,82,0,38,-10,41,43,2,1
--3,99,0,50,2,43,49,6,4
-0,82,0,54,-4,26,28,2,1
--1,87,-5,46,-7,40,41,0,1
--1,79,-4,24,-8,23,55,32,4
-0,95,0,36,19,40,59,20,4
-0,91,0,56,1,35,34,0,1
-0,82,0,-22,7,26,105,78,4
--3,83,0,50,0,34,34,0,1
-0,80,0,42,20,39,39,0,1
-0,95,-7,42,-3,52,54,2,1
-0,88,5,42,0,45,46,2,1
-0,79,0,8,-3,42,71,28,1
--1,79,-4,24,-9,23,55,32,4
-0,79,-2,20,-3,23,58,34,4
-0,84,3,52,2,32,32,0,1
-0,92,4,50,0,36,43,6,4
--2,80,0,36,0,43,44,0,1
-1,78,0,38,-24,37,39,2,1
-0,108,0,42,2,66,66,0,1
--2,79,0,44,3,35,35,0,1
-1,77,3,38,0,39,38,0,1
-0,103,0,24,28,66,80,14,1
--5,93,1,54,0,38,39,0,1
--5,76,0,36,0,39,39,0,1
-2,77,0,38,6,39,38,0,1
--5,108,0,60,0,49,49,0,1
--2,85,0,42,-15,42,44,2,1
-0,82,0,18,0,45,64,18,1
-0,97,0,42,12,41,55,14,4
--1,77,0,44,-12,32,34,2,1
--2,81,0,38,-20,40,42,2,1
-0,79,2,38,-7,38,40,2,1
-0,95,1,10,7,57,84,28,1
-0,79,0,16,-26,43,64,22,1
-0,106,2,50,0,56,57,0,1
-4,81,0,56,0,25,24,0,1
-2,97,0,44,2,41,53,12,4
-0,81,-1,44,2,37,37,0,1
-0,93,0,28,-3,55,64,10,1
-0,80,0,8,19,43,72,30,1
-0,77,0,50,-1,27,28,0,1
-0,86,1,42,2,45,45,0,1
-1,82,1,52,0,30,30,0,1
-0,86,0,52,-21,33,34,2,1
-0,79,0,42,-15,36,38,2,1
--2,89,0,42,-8,46,48,2,1
-0,79,0,10,157,42,69,26,1
--1,100,-2,50,16,52,51,0,1
--1,86,2,-40,7,5,127,122,5
-0,85,0,54,-4,29,31,2,1
-0,84,6,-14,-12,4,100,96,5
-0,113,1,64,31,49,48,0,1
-0,96,2,52,-11,41,44,4,4
-0,84,0,54,-3,28,30,2,1
-0,78,0,0,-30,42,78,36,1
--2,76,0,42,-13,33,35,2,1
-0,75,0,20,-9,38,54,16,1
-5,83,0,50,-1,33,33,0,1
--5,80,0,42,0,39,39,0,1
--1,86,0,44,23,42,42,0,1
-0,81,0,56,22,26,24,0,1
-0,103,0,18,-8,66,85,20,1
--1,77,-2,54,0,24,23,0,1
-1,86,0,50,-8,35,37,2,1
-0,86,0,-6,-9,3,94,90,5
-0,77,0,24,1,22,54,32,4
-0,87,-2,38,-2,46,48,2,1
-0,84,0,-42,-6,4,128,124,5
-0,106,-1,46,-23,57,59,2,1
-4,76,0,46,0,28,29,0,1
-0,107,4,26,0,69,81,12,1
-0,82,2,50,0,31,33,2,1
-4,86,1,44,-3,41,42,2,1
-1,77,0,44,7,34,34,0,1
-0,81,0,-18,1,25,99,74,4
-0,85,-7,-22,0,4,108,104,5
-1,90,0,24,26,52,66,14,1
-4,78,0,52,0,26,26,0,1
-0,79,0,10,-20,43,69,26,1
--2,83,0,38,-1,42,44,2,1
-0,106,0,50,25,58,57,0,1
--3,83,-4,44,-6,38,39,0,1
-0,82,1,-12,-21,26,95,68,4
-0,79,-1,54,0,24,24,0,1
-0,77,0,-2,-16,21,79,58,4
-0,94,0,10,0,57,84,26,1
-0,81,0,-2,8,25,83,58,4
-0,82,0,-2,16,45,85,40,1
-0,92,0,-6,-17,36,99,64,4
-0,90,1,42,0,47,48,2,1
--4,86,0,46,0,39,40,2,1
-5,95,3,46,0,48,49,0,1
--5,77,0,46,0,29,30,2,1
-0,96,0,54,9,41,42,0,1
-3,86,0,52,-20,33,34,2,1
-0,77,0,8,6,22,70,48,4
-0,77,0,42,8,36,35,0,1
-0,83,0,42,-10,39,41,2,1
-0,79,0,-2,-29,42,82,40,1
-0,82,1,54,14,29,28,0,1
-0,88,0,38,-12,48,50,2,1
-0,104,0,54,5,50,49,0,1
--1,75,0,26,-25,38,49,12,1
-0,90,-1,20,31,53,70,16,1
--1,76,0,28,0,40,48,8,1
-0,77,0,16,-9,41,62,22,1
--3,77,0,38,-15,36,38,2,1
-0,78,0,2,5,41,75,34,1
-0,85,0,46,-1,36,39,2,1
-0,106,0,20,-30,69,85,16,1
-0,83,0,38,-9,42,44,2,1
-2,113,0,64,0,47,48,0,1
--2,77,0,26,-13,22,52,30,4
-0,76,0,36,-20,38,39,2,1
-0,88,5,38,0,48,50,2,1
-0,76,0,38,16,38,37,0,1
-0,76,-1,42,0,34,35,0,1
-0,81,0,46,15,35,34,0,1
-1,112,0,68,0,45,45,0,1
--4,79,0,42,0,37,37,0,1
-0,97,1,52,27,41,45,4,4
-0,85,-3,-2,10,3,88,84,5
--5,86,0,54,-30,31,32,2,1
-0,77,2,44,0,32,34,2,1
-0,95,0,42,-14,40,54,14,4
-0,96,3,12,-18,59,83,24,1
--19,76,0,42,0,34,35,2,1
-0,97,0,50,1,41,48,6,4
-0,81,8,30,0,44,50,6,1
-1,83,6,44,0,38,39,2,1
-0,79,3,2,1,42,76,34,1
--48,106,-362,30,-22,69,75,6,3
-0,81,0,52,-7,28,30,2,1
-0,102,-2,54,0,49,48,0,1
-0,92,2,-4,3,36,97,60,4
-0,78,-2,6,0,41,73,32,1
-0,83,-5,50,-11,32,34,2,1
-0,97,0,34,8,60,64,4,1
-0,77,0,18,-28,22,59,38,4
-0,76,0,20,-18,39,55,16,1
-1,90,0,50,14,42,41,0,1
-0,81,1,46,15,36,35,0,1
-0,77,0,38,6,22,39,16,4
-0,99,5,38,0,43,60,16,4
--1,77,0,44,-8,31,33,2,1
-2,85,0,44,17,41,41,0,1
-0,88,5,54,0,34,33,0,1
-0,77,3,42,10,36,35,0,1
-0,106,8,30,0,69,75,6,1
-1,86,0,50,19,38,37,0,1
-0,76,6,30,16,40,45,6,1
-0,107,0,50,15,58,58,0,1
-5,77,0,34,0,40,44,4,1
-0,80,0,10,-13,43,70,26,1
--5,80,0,38,-1,40,41,2,1
-0,78,0,46,8,23,32,8,4
--2,90,0,46,5,44,44,0,1
-0,77,0,36,-1,40,41,2,1
-0,86,0,36,0,48,50,2,1
-0,87,-2,50,25,38,38,0,1
-1,85,0,46,0,38,39,0,1
-0,95,0,52,23,40,44,4,4
-0,81,0,18,0,44,63,18,1
-0,76,0,18,-16,40,58,18,1
-0,79,0,54,10,26,24,0,1
-1,81,0,56,0,24,24,0,1
-3,76,0,36,-7,38,39,2,1
-0,79,1,46,4,33,32,0,1
-0,100,0,30,5,64,69,6,1
--1,84,0,46,15,38,37,0,1
-0,96,0,38,-14,41,57,16,4
-0,78,1,50,0,28,29,2,1
-0,78,0,6,-7,41,73,32,1
-0,106,-2,70,-2,1,36,36,5
-0,97,7,46,0,42,51,8,4
-0,80,0,30,-24,43,49,6,1
--4,75,0,42,-27,32,34,2,1
-4,98,0,50,-2,42,49,6,4
-0,97,8,52,0,41,45,4,4
-0,83,-3,42,-12,40,42,2,1
-0,80,0,12,12,43,67,24,1
-4,98,0,50,-15,42,49,6,4
-2,86,-1,52,0,33,34,0,1
-0,84,0,-18,-22,3,103,100,5
-0,80,4,30,0,43,49,6,1
-0,77,-2,34,-12,40,44,4,1
-0,77,0,10,0,22,67,46,4
-0,87,0,56,-9,28,30,2,1
--2,81,0,-10,-2,26,92,66,4
-0,106,-6,36,0,69,70,2,1
-4,98,0,52,10,42,46,4,4
-2,78,0,44,0,34,34,0,1
-22,79,0,42,0,30,37,8,2
--4,77,2,50,0,28,28,0,1
-0,77,0,46,-1,28,30,2,1
-1,81,-3,54,0,27,27,0,1
-0,85,0,46,11,39,39,0,1
-0,79,0,26,-1,42,53,10,1
-2,78,2,24,0,22,55,32,4
-0,77,0,-10,-17,41,88,46,1
-0,88,2,52,0,36,36,0,1
-2,83,0,42,-14,40,42,2,1
--1,80,0,42,-11,37,39,2,1
-0,83,0,46,0,35,37,2,1
--5,87,8,46,0,40,41,0,1
-1,77,0,38,17,39,38,0,1
-0,78,-3,42,-5,37,37,0,1
--1,97,-6,26,-12,60,71,12,1
-0,83,-1,42,0,40,41,2,1
-0,81,0,-6,31,25,89,64,4
-2,79,0,42,15,38,38,0,1
-1,88,0,44,0,43,44,2,1
-0,105,0,18,4,68,87,18,1
-0,79,-1,0,10,42,79,36,1
-0,77,-1,42,-1,35,36,0,1
-0,79,-1,24,-1,42,55,14,1
--3,83,0,44,-8,37,39,2,1
-0,86,0,56,6,30,29,0,1
-0,86,-1,44,-4,40,42,2,1
-0,81,0,42,-1,39,39,0,1
--2,76,0,42,19,35,34,0,1
-2,77,0,36,-28,39,41,2,1
-1,80,0,-2,0,24,83,58,4
-0,75,0,30,-3,38,44,6,1
-2,77,0,44,11,34,34,0,1
-0,106,-4,72,10,1,34,34,5
-5,78,0,44,0,34,34,0,1
-0,82,0,54,17,29,28,0,1
-0,81,0,50,-24,29,32,2,1
-0,79,0,46,12,33,32,0,1
-0,96,0,52,-15,40,44,4,4
-0,113,0,64,14,48,48,0,1
-0,77,0,46,11,32,31,0,1
-0,79,0,34,-4,41,45,4,1
--1,88,-5,46,0,40,41,2,1
-3,76,0,42,18,35,35,0,1
--1,76,0,44,11,32,32,0,1
-0,106,0,46,-22,57,59,2,1
-2,88,0,42,0,45,46,2,1
-5,77,0,46,1,31,30,0,1
-0,77,-1,38,0,38,39,0,1
-0,84,0,56,0,29,28,0,1
-0,81,5,36,-4,43,44,2,1
-0,79,-5,34,0,42,45,2,1
-0,92,-1,0,3,36,92,56,4
-4,83,0,42,0,40,41,2,1
--5,86,-1,42,0,44,45,2,1
-0,109,5,38,0,69,71,2,1
-0,82,0,-42,-6,26,126,100,4
-0,107,-4,36,0,69,71,2,1
-0,86,0,54,-14,30,32,2,1
-0,80,-3,36,-6,43,44,0,1
-0,87,0,46,-9,39,41,2,1
-0,80,-7,6,16,24,75,50,4
-0,77,0,10,11,21,66,46,4
-0,76,-2,28,-5,39,47,8,1
-0,77,-1,26,-8,41,52,10,1
-2,81,0,42,-14,37,39,2,1
-0,79,0,46,-30,30,32,2,1
-0,79,5,10,0,42,69,26,1
--3,77,-2,24,0,22,54,32,4
--2,84,0,52,0,32,32,0,1
--2,75,0,28,9,38,46,8,1
-0,83,0,-30,6,4,114,110,5
-2,106,0,50,0,56,57,0,1
-0,83,0,42,27,42,41,0,1
-0,81,-4,46,0,35,34,0,1
-4,77,1,34,0,40,44,4,1
--4,73,-10,-4,-6,18,78,60,4
-3,90,0,44,26,47,46,0,1
--2,87,1,52,-2,35,35,0,1
--11,86,0,46,0,39,39,0,1
-1,81,0,56,1,24,24,0,1
-0,77,0,24,17,22,54,32,4
-0,78,0,8,0,42,70,28,1
-0,78,0,26,-5,42,52,10,1
--4,85,3,44,0,40,41,2,1
-3,102,0,44,15,59,58,0,1
-0,88,-4,2,0,3,86,82,5
-0,86,-5,38,-9,46,48,2,1
-0,77,0,-4,6,21,82,62,4
-4,93,0,44,0,48,50,2,1
-0,85,5,44,29,42,41,0,1
-0,105,-2,38,0,67,66,0,1
-0,95,2,50,0,40,46,6,4
--1,86,0,46,-7,37,39,2,1
-5,75,0,44,2,31,31,0,1
-0,84,0,38,-21,43,45,2,1
-0,77,0,52,30,26,25,0,1
-0,81,0,46,-30,31,34,2,1
-1,90,0,26,0,53,64,12,1
-0,93,5,46,0,37,46,8,4
-0,77,0,-6,22,41,85,44,1
--1,95,0,42,9,40,54,14,4
-0,93,-5,50,0,38,44,6,4
-0,79,2,44,-18,34,35,2,1
-0,86,0,44,-18,40,42,2,1
--1,86,4,46,0,39,40,0,1
--3,90,0,44,0,45,46,2,1
-0,76,-1,42,0,32,34,2,1
-0,83,-3,50,-3,34,34,0,1
-0,77,0,12,21,40,64,24,1
-0,83,0,0,22,46,83,36,1
-0,96,4,52,0,40,44,4,4
-0,95,-1,16,6,58,80,22,1
-0,109,0,44,-8,64,66,2,1
--18,86,0,46,0,39,39,0,1
-0,108,3,46,0,59,61,2,1
-0,79,8,38,0,40,41,0,1
-0,83,-7,42,0,41,41,0,1
--1,78,-1,42,-2,37,37,0,1
-1,83,0,46,0,34,37,2,1
-0,83,0,-4,-17,47,88,42,1
-0,87,1,54,-23,31,33,2,1
-5,83,0,50,-20,31,33,2,1
-0,88,0,44,-27,42,44,2,1
-3,105,6,70,0,1,35,34,5
-0,86,-1,-6,-24,3,94,90,5
-4,83,-2,44,1,38,39,0,1
--2,79,0,50,-12,28,30,2,1
-0,79,-2,38,-11,38,40,2,1
-3,82,0,42,8,41,41,0,1
-0,84,0,38,0,44,46,2,1
-1,81,0,54,0,26,27,0,1
-0,81,0,46,-9,32,34,2,1
-0,77,0,28,6,21,48,28,4
-5,79,3,50,0,29,30,0,1
--1,86,0,44,13,42,42,0,1
-2,83,0,-40,14,4,125,120,5
-0,79,0,24,-10,43,56,14,1
--3,105,-2,70,-30,1,35,34,5
-0,83,-4,54,0,27,28,2,1
--5,86,0,42,0,44,45,2,1
-0,83,0,54,12,30,28,0,1
-0,79,-1,20,-3,42,58,16,1
-0,81,6,34,1,43,47,4,1
-0,109,-5,68,0,42,42,0,1
-0,87,0,42,19,46,46,0,1
-0,84,0,52,7,33,32,0,1
-0,78,0,-2,9,41,81,40,1
-0,108,0,30,-1,71,77,6,1
-0,86,0,52,-7,33,34,0,1
-0,86,0,44,8,42,42,0,1
-0,97,0,24,-7,60,74,14,1
--3,86,0,50,0,37,37,0,1
-0,82,0,36,16,45,46,0,1
-3,106,-1,44,-4,61,62,2,1
-0,80,0,50,7,31,31,0,1
-0,88,0,0,30,3,88,84,5
-0,88,-2,44,-22,43,44,2,1
-2,79,0,46,19,33,32,0,1
-0,78,0,18,-4,41,60,18,1
-0,94,0,34,3,57,61,4,1
-0,85,0,54,23,32,31,0,1
-0,83,0,46,5,37,36,0,1
-3,88,0,46,0,40,42,2,1
--2,104,-6,70,-23,1,34,34,5
-0,104,0,16,-9,67,89,22,1
-1,94,0,38,13,56,55,0,1
-0,83,5,38,-10,42,44,2,1
--1,84,-5,46,0,38,38,0,1
-0,76,0,-14,20,20,92,72,4
-0,79,0,46,-26,30,33,2,1
--1,76,0,36,1,40,40,0,1
--4,78,0,52,24,27,26,0,1
-0,83,-1,50,13,34,34,0,1
--3,82,0,38,-17,41,43,2,1
-0,77,0,16,7,40,61,22,1
-0,90,-2,24,-5,52,66,14,1
-0,106,0,50,0,56,57,0,1
-0,76,0,28,25,39,47,8,1
--2,81,0,44,12,38,37,0,1
-0,77,0,30,-2,22,46,24,4
--5,106,-3,44,3,62,62,0,1
-0,97,0,30,-4,60,66,6,1
--1,77,0,46,1,32,31,0,1
-2,84,6,54,0,29,30,0,1
-0,77,0,-2,-19,21,79,58,4
-0,79,0,26,-1,23,53,30,4
-5,97,0,44,0,41,53,12,4
-0,79,-2,42,12,38,37,0,1
-1,86,0,52,31,35,34,0,1
-4,95,0,54,24,39,41,2,1
-1,86,1,46,0,40,40,0,1
--1,86,0,44,28,43,42,0,1
-1,85,3,-24,0,4,111,106,5
-0,79,0,18,6,43,61,18,1
-0,77,0,-20,-2,21,97,76,4
-0,77,0,36,19,41,41,0,1
-0,77,0,-28,3,22,106,84,4
-0,82,0,38,-1,41,43,2,1
--8,78,0,-2,-24,39,81,42,1
-5,105,0,38,0,67,66,0,1
-1,84,0,42,0,42,43,2,1
-0,75,0,34,-4,38,41,2,1
--1,77,0,42,4,36,36,0,1
-2,88,-3,46,0,40,41,2,1
--1,95,0,38,-23,40,57,18,4
--4,86,0,-4,-27,4,91,88,5
--1,84,0,44,6,40,40,0,1
-0,81,0,52,0,28,30,2,1
-0,77,2,36,6,40,41,0,1
-4,75,0,36,0,39,39,0,1
-0,87,0,54,6,34,33,0,1
--1,79,2,46,0,32,32,0,1
-0,81,-4,-2,0,44,83,40,1
-0,77,-5,42,-4,34,35,2,1
-0,95,0,50,-10,40,46,6,4
-4,95,0,50,1,46,46,0,1
-0,104,1,24,0,67,80,14,1
-0,86,0,46,13,41,40,0,1
-0,93,-1,50,20,37,44,6,4
-1,90,-3,6,0,52,85,32,1
-0,95,-7,44,7,40,51,12,4
-0,95,0,10,4,57,84,28,1
-0,106,0,28,23,68,77,8,1
-0,106,4,18,0,69,88,18,1
-0,96,6,50,0,47,47,0,1
-0,109,-6,60,0,49,49,0,1
-5,102,0,50,0,52,53,0,1
-0,81,0,-6,20,25,88,64,4
--4,99,0,42,0,57,58,0,1
-0,78,4,38,-11,37,39,2,1
-6,89,0,8,0,3,81,78,5
-1,86,1,46,0,40,39,0,1
-0,80,0,6,-22,43,75,32,1
-0,82,2,30,0,45,51,6,1
-0,88,8,46,0,39,41,2,1
-0,77,-1,12,-9,40,64,24,1
-0,93,0,50,16,37,44,6,4
-0,84,-5,46,0,37,38,0,1
-3,76,0,36,0,39,39,0,1
--4,86,-2,44,0,41,42,0,1
-0,86,0,42,-9,43,45,2,1
-0,81,0,46,-11,32,34,2,1
--2,87,2,44,0,43,43,0,1
--2,85,0,46,-20,36,39,2,1
--2,86,-5,50,0,36,37,0,1
--2,85,-6,54,0,32,31,0,1
-0,96,0,56,21,40,39,0,1
-4,94,4,46,0,46,48,2,1
-0,80,1,6,-11,43,75,32,1
-2,86,0,-2,5,3,88,84,5
-0,97,0,38,-12,56,58,2,1
--2,97,0,42,-12,41,55,14,4
-3,83,0,38,5,45,44,0,1
--4,93,3,28,5,55,64,10,1
-0,95,-3,16,-6,58,80,22,1
-0,77,0,-4,-6,21,82,60,4
--4,77,0,38,0,36,38,2,1
-0,83,0,46,-5,34,37,2,1
-0,81,0,44,29,38,37,0,1
-4,79,0,54,24,26,24,0,1
--3,81,3,44,0,37,37,0,1
-0,89,0,46,-11,40,42,2,1
-1,84,0,54,0,31,30,0,1
--1,79,0,42,-17,35,37,2,1
-0,75,-2,24,-10,38,52,14,1
-0,86,2,-6,5,4,94,90,5
--4,76,0,36,-20,38,39,2,1
-0,81,8,-6,0,25,89,64,4
-0,76,-3,38,0,38,37,0,1
-0,88,-1,6,-3,4,83,78,5
-0,81,7,38,-7,41,43,2,1
-4,76,0,46,9,30,29,0,1
-0,76,-2,-10,16,21,86,66,4
-3,81,0,42,2,40,40,0,1
--2,76,0,42,-30,32,34,2,1
-0,83,6,0,0,46,83,36,1
-5,81,0,42,0,39,39,0,1
-0,95,0,54,-4,40,41,2,1
-0,86,0,54,-8,30,32,2,1
-0,103,0,54,19,50,49,0,1
--4,81,0,38,0,42,43,0,1
-0,76,0,46,29,30,29,0,1
-0,81,1,46,23,35,34,0,1
-0,95,0,26,3,58,70,12,1
-0,85,-4,42,-4,43,44,0,1
-0,77,0,50,25,28,28,0,1
-0,77,0,-4,-2,21,82,60,4
--1,79,-3,20,-7,43,59,16,1
-0,92,0,56,6,35,35,0,1
-0,76,8,38,0,38,37,0,1
-0,82,0,-20,-15,26,103,76,4
--9,77,0,20,0,40,56,16,1
-0,79,0,8,6,24,72,48,4
-0,86,1,46,0,40,39,0,1
-3,79,5,38,0,39,40,0,1
-0,83,0,42,-21,40,42,2,1
-0,79,0,8,0,23,71,48,4
-0,87,2,52,0,35,35,0,1
--4,76,0,44,12,32,32,0,1
-0,85,3,44,0,41,41,0,1
-0,82,3,42,0,39,41,2,1
-3,82,-3,46,0,34,35,2,1
-0,82,0,-40,-28,26,123,96,4
-0,79,0,20,12,23,58,34,4
-2,75,0,20,0,38,54,16,1
-0,107,0,46,0,61,60,0,1
--5,85,0,54,0,31,31,0,1
-0,88,0,50,8,40,39,0,1
-0,79,-1,0,5,42,79,36,1
-0,77,0,34,-6,40,43,2,1
-0,81,1,54,15,28,26,0,1
-0,87,-1,46,5,41,41,0,1
--5,88,0,2,0,3,85,82,5
-1,76,0,42,-27,32,35,2,1
--8,107,-1,70,0,3,37,34,5
-5,95,0,46,0,47,49,2,1
--1,78,-4,42,-6,37,37,0,1
-0,79,-6,6,-4,24,74,50,4
--1,104,0,24,0,67,80,14,1
-0,96,4,42,2,40,55,14,4
-2,87,0,44,0,43,43,0,1
--3,81,0,52,0,29,30,0,1
-0,79,4,-22,0,24,103,80,4
--3,77,0,38,0,36,38,2,1
-0,81,-4,54,-26,25,27,2,1
-1,111,11,28,0,73,82,8,1
-0,78,0,12,3,42,65,24,1
-0,82,0,44,-16,36,38,2,1
-0,76,-1,36,1,40,40,0,1
-0,78,7,46,0,31,32,0,1
-0,77,0,6,1,40,72,32,1
-0,74,-6,28,0,38,46,8,1
-0,80,-4,36,0,43,44,0,1
-0,77,0,16,6,41,62,22,1
-0,77,0,0,-9,22,77,56,4
-0,83,0,6,0,46,78,32,1
-3,93,-1,38,0,53,55,2,1
-0,77,0,-22,10,40,101,60,1
-0,77,0,26,-7,40,51,10,1
-0,78,0,10,-3,23,68,46,4
-0,96,0,28,-11,59,68,8,1
-0,97,0,54,1,40,42,2,1
-0,76,0,-10,-19,20,86,66,4
-0,78,0,18,25,41,60,18,1
-0,77,-1,38,-30,36,38,2,1
-0,83,0,46,8,37,37,0,1
-0,108,5,46,12,62,62,0,1
-1,86,6,46,0,38,39,0,1
-0,76,-3,44,0,31,32,0,1
-2,76,0,36,-28,38,40,2,1
-0,77,0,12,-4,40,64,24,1
-0,82,1,-40,0,4,123,120,5
--2,86,0,38,0,48,48,0,1
-0,76,-1,44,4,32,32,0,1
-1,109,8,72,1,2,36,34,5
-0,103,6,72,28,1,31,30,5
-0,100,0,36,-30,63,64,2,1
-5,87,0,54,1,34,33,0,1
-0,83,0,10,-16,46,72,26,1
--1,79,-1,42,0,37,37,0,1
-0,77,0,-20,-9,21,97,76,4
-0,75,0,30,-16,38,44,6,1
-5,98,0,42,-16,42,57,14,4
--2,81,0,50,6,33,32,0,1
-0,83,0,44,19,40,39,0,1
-0,109,0,44,-4,64,66,2,1
-0,86,-1,42,0,43,45,2,1
-5,85,0,52,0,33,33,0,1
--3,80,-4,46,0,32,34,2,1
-0,83,0,46,13,38,37,0,1
-3,98,0,44,-7,42,54,12,4
-0,80,0,50,2,31,31,0,1
--7,90,2,6,0,51,85,34,1
-1,84,-2,46,-4,38,37,0,1
-0,83,1,42,30,42,41,0,1
-0,109,0,68,0,43,42,0,1
-0,84,0,56,-4,25,27,2,1
-0,85,0,44,-24,40,41,2,1
-0,106,-6,44,0,61,62,2,1
--3,108,-6,26,0,71,82,12,1
-0,77,-2,28,-17,21,48,28,4
-0,83,-6,38,-7,42,44,2,1
-0,87,0,52,-5,34,35,2,1
-0,81,1,54,19,28,26,0,1
-0,80,0,-2,0,24,83,58,4
--111,83,0,44,618,38,39,0,1
-0,80,0,56,0,22,23,2,1
-0,81,0,-4,5,25,86,60,4
--1,75,-3,24,-7,38,52,14,1
-0,104,-1,70,0,1,35,34,5
-0,76,0,26,-10,40,50,10,1
--1,88,0,6,0,4,83,78,5
-0,95,-5,42,0,39,53,14,4
-0,79,0,52,18,28,27,0,1
-1,82,0,46,-7,33,35,2,1
-0,77,0,16,3,41,62,22,1
-0,95,0,12,-1,58,82,24,1
--3,76,0,42,0,33,34,2,1
-0,76,0,20,-15,40,55,16,1
--4,77,0,42,-11,34,36,2,1
-4,81,0,-42,0,4,125,120,5
-4,97,0,50,0,41,48,8,4
-0,77,0,46,9,32,31,0,1
-0,81,0,42,-5,38,40,2,1
-2,82,0,46,-12,33,35,2,1
-0,81,-1,28,0,44,52,8,1
-3,81,0,54,1,26,26,0,1
-0,106,-1,30,4,69,75,6,1
-0,79,-1,44,22,35,35,0,1
-0,105,0,28,0,68,77,8,1
-0,80,-5,24,0,43,57,14,1
--16,77,-1,44,-2,32,34,2,1
--1,82,0,44,5,38,38,0,1
-78,82,0,-42,-6,18,126,108,2
-0,77,-2,-28,12,21,105,84,4
-0,77,-3,44,18,34,33,0,1
-0,84,0,54,-12,28,30,2,1
-2,81,0,54,0,27,26,0,1
-0,91,0,52,25,40,39,0,1
-0,105,0,38,0,67,66,0,1
-1,86,0,42,-11,43,45,2,1
-0,97,-3,50,-16,41,48,6,4
-0,95,0,44,12,40,51,12,4
-3,86,1,-40,10,4,127,122,5
-0,77,2,-24,-15,21,103,82,4
-0,98,0,28,-30,61,70,8,1
--1,82,-1,46,0,35,35,0,1
--2,79,0,26,0,23,53,30,4
-0,104,0,28,6,67,75,8,1
--2,82,0,46,0,34,35,0,1
--2,86,0,-2,25,4,89,86,5
-4,75,0,42,21,34,34,0,1
-0,84,-6,44,0,40,40,0,1
-4,79,0,6,0,42,74,32,1
-0,82,-1,42,3,41,41,0,1
-0,82,0,54,3,26,28,2,1
-0,77,0,-4,-10,21,82,62,4
-3,88,0,54,0,34,33,0,1
-0,80,1,38,0,40,41,2,1
-0,81,-2,42,-25,37,39,2,1
-0,78,0,6,-7,23,73,50,4
-0,87,4,54,12,34,33,0,1
-3,87,0,46,4,41,41,0,1
-0,77,3,36,3,40,41,0,1
-3,106,0,46,0,58,60,2,1
--1,76,0,44,-10,31,32,2,1
--3,98,0,46,0,42,51,8,4
-4,90,0,38,0,51,51,0,1
-0,106,0,26,4,69,80,12,1
-3,76,0,44,22,32,32,0,1
-0,86,-4,46,0,39,40,0,1
-0,81,2,42,-4,38,40,2,1
-0,75,-7,34,0,38,41,2,1
-0,81,1,16,0,44,65,22,1
-0,79,0,42,-7,35,37,2,1
-0,86,-5,44,0,42,42,0,1
-0,78,-4,0,0,22,78,56,4
-4,76,-1,44,2,32,32,0,1
-0,75,-3,24,-16,38,52,14,1
-1,76,0,36,-17,38,40,2,1
-2,84,0,38,0,44,46,2,1
-1,76,-2,42,0,34,35,0,1
-0,102,2,52,-24,49,51,2,1
--1,79,0,44,-17,33,35,2,1
--4,90,0,24,1,53,66,14,1
--1,98,0,50,-10,42,49,6,4
-0,77,0,28,3378,40,48,8,1
--1,86,0,44,6,43,42,0,1
-0,76,0,24,8,39,52,14,1
--5,77,0,28,0,40,48,8,1
-0,77,0,2,7,22,75,52,4
-0,76,0,-14,-26,21,92,70,4
-4,96,0,54,16,40,42,2,1
-0,106,0,30,3,69,75,6,1
--2,88,1,50,0,38,39,0,1
-0,79,-3,42,0,37,38,2,1
-0,97,0,12,15,59,84,24,1
-0,84,0,50,-14,33,35,2,1
-3,78,-2,50,-25,27,29,2,1
--1,109,0,52,0,57,57,0,1
--4,88,0,56,0,31,31,0,1
-0,86,-1,52,0,35,35,0,1
-0,77,0,42,3,37,36,0,1
-0,86,5,42,0,44,45,2,1
-2,81,4,46,9,35,35,0,1
-5,86,0,38,0,45,47,2,1
-0,83,0,-30,9,4,114,110,5
-3,84,0,-40,15,4,125,122,5
-0,77,0,26,19,40,51,12,1
--5,76,-1,44,0,32,32,0,1
-0,77,0,26,13,40,51,12,1
--1,79,0,44,28,35,35,0,1
-0,106,-7,28,0,69,78,8,1
-0,83,0,42,-8,40,42,2,1
-1,78,0,52,-10,25,26,2,1
-1,84,0,-36,1,4,121,116,5
--2,81,0,-22,-5,26,105,78,4
--7,76,-18,0,0,21,76,54,4
-0,95,0,52,4,40,44,4,4
-5,85,2,46,11,39,39,0,1
--5,79,0,52,-20,26,27,2,1
-0,85,1,46,12,40,39,0,1
-0,88,0,44,2,45,44,0,1
-0,78,0,6,-29,23,73,50,4
-0,85,-4,44,0,41,41,0,1
-0,86,1,-40,7,5,128,124,5
-0,104,4,28,0,67,76,8,1
-0,83,3,46,0,36,37,0,1
-0,104,0,20,22,67,84,16,1
-1,83,0,46,7,37,36,0,1
-0,77,-1,26,13,40,51,10,1
--2,111,0,62,0,49,49,0,1
-0,81,6,42,-4,37,39,2,1
-0,80,0,20,29,43,59,16,1
-0,97,0,50,-22,41,48,6,4
-3,102,0,46,-13,53,55,2,1
-0,75,0,18,-31,38,57,18,1
-2,109,0,72,5,1,36,36,5
-0,85,0,42,-13,42,44,2,1
-0,83,0,54,0,28,28,0,1
-0,76,0,34,5,39,42,2,1
--4,86,0,42,6,46,45,0,1
--3,84,0,50,30,36,35,0,1
-0,80,0,30,-10,43,49,6,1
--5,89,0,50,0,40,40,0,1
-0,83,0,52,-5,30,32,2,1
-0,88,0,46,-2,39,41,2,1
-5,78,-1,42,0,23,37,14,4
-0,78,0,8,-6,22,70,48,4
-0,87,0,0,4,3,87,84,5
-0,104,0,16,-12,67,88,22,1
-0,87,4,42,0,44,46,2,1
-0,86,0,56,0,28,29,0,1
-0,84,4,30,0,47,53,6,1
-0,79,0,38,0,38,40,2,1
-3,106,0,50,5,56,57,0,1
-5,88,0,46,14,42,41,0,1
-0,76,1,46,15,30,30,0,1
-0,77,0,20,-20,22,57,34,4
-0,80,0,52,28,29,28,0,1
--2,86,0,46,0,40,39,0,1
-1,84,0,46,-4,35,37,2,1
-5,95,0,46,0,39,49,10,4
-0,79,0,44,31,36,35,0,1
-0,76,0,34,-2,39,43,4,1
-0,76,-7,20,0,39,55,16,1
--1,86,0,52,-1,33,34,0,1
-5,97,0,38,0,41,58,18,4
--1,96,0,50,-16,40,47,6,4
-0,102,-1,46,0,55,55,0,1
-0,92,8,6,0,54,86,32,1
--5,88,0,42,0,47,46,0,1
-0,81,0,18,-14,44,63,18,1
-0,87,0,42,-2,44,46,2,1
-0,85,-2,42,0,43,44,0,1
--4,107,-2,70,0,2,37,34,5
--84,106,0,34,0,69,72,4,3
-0,77,0,26,16,21,51,30,4
-0,86,0,-4,25,3,92,88,5
-0,81,0,26,-22,44,55,10,1
-0,83,0,2,6,46,80,34,1
--5,81,8,50,0,32,32,0,1
-0,77,0,20,-8,22,57,34,4
-0,83,-1,50,0,33,33,0,1
-0,80,0,20,14,43,59,16,1
-0,86,0,56,5,30,29,0,1
--3,80,0,-2,0,25,83,58,4
-5,107,9,72,5,1,35,34,5
--3,86,0,38,8,48,47,0,1
-1,80,-7,42,0,37,39,2,1
-0,81,3,54,0,28,27,0,1
-0,84,1,42,-1,41,43,2,1
-0,82,0,38,26,45,43,0,1
-0,95,0,46,-14,40,49,8,4
-0,93,0,28,-26,56,65,8,1
-1,78,0,42,21,37,37,0,1
-3,89,0,46,0,41,42,2,1
-0,81,0,44,15,37,37,0,1
--1,88,0,42,0,46,47,2,1
--2,76,-7,36,-11,39,40,0,1
-0,106,0,28,5,68,77,8,1
--3,78,0,0,8,39,78,40,1
-0,87,0,42,29,46,46,0,1
-0,103,3,70,-4,1,33,32,5
-0,76,-1,44,6,32,32,0,1
-0,75,0,28,-17,38,46,8,1
-3,81,0,56,22,25,24,0,1
-0,86,5,44,6,43,42,0,1
-2,79,0,50,0,30,30,0,1
-3,81,2,38,0,41,43,2,1
-1,78,-3,52,3,27,26,0,1
-0,75,7,24,22,38,52,14,1
-0,82,-1,-20,8,26,103,76,4
-0,78,0,12,22,22,65,42,4
-5,78,0,50,1,29,29,0,1
-0,76,-1,30,16,40,45,6,1
-0,96,0,38,17,59,57,0,1
-0,79,0,24,25,42,55,14,1
-0,79,3,2,4,42,76,34,1
-0,77,0,38,29,40,39,0,1
-0,86,0,36,-15,48,50,2,1
--5,99,0,42,0,57,58,2,1
-0,79,0,42,23,38,37,0,1
-1,102,0,38,1,64,63,0,1
-0,95,-1,42,-15,40,54,14,4
-1,78,0,38,0,37,39,2,1
-0,77,0,18,30,22,59,38,4
-0,84,0,28,1,47,55,8,1
--4,108,0,60,0,49,49,0,1
--2,77,0,34,-9,22,44,22,4
-3,86,0,56,12,30,29,0,1
-0,98,0,50,-14,42,49,6,4
-3,83,1,34,0,45,49,4,1
--3,77,0,38,-17,36,38,2,1
-0,85,2,44,-12,40,41,2,1
-2,82,1,42,0,40,41,0,1
-0,83,-7,52,9,32,32,0,1
-0,91,0,54,0,35,37,2,1
-0,83,5,52,0,31,31,0,1
-0,86,0,46,-1,40,39,0,1
--1,76,0,42,0,34,34,0,1
--2,84,0,52,-3,31,32,0,1
-0,77,0,44,-27,32,34,2,1
-0,84,0,46,-19,35,37,2,1
-4,86,-2,-4,0,3,92,88,5
--3,90,-2,6,0,53,85,32,1
-3,102,0,38,2,64,63,0,1
-0,81,0,54,-18,25,26,2,1
--536,88,0,44,0,44,44,0,1
-13,77,-4,-22,5,41,101,60,1
-0,95,0,46,-27,40,49,8,4
-3,93,0,44,0,49,50,0,1
--4,82,0,50,-12,31,33,2,1
-0,85,0,42,12,44,44,0,1
-0,77,0,46,-3,29,31,2,1
-0,83,-7,46,0,36,36,0,1
-0,77,0,38,-21,36,38,2,1
-0,96,0,52,11,40,44,4,4
-0,77,0,38,30,39,38,0,1
-0,77,3,38,0,39,39,0,1
--1,79,0,18,0,42,61,18,1
-0,107,0,44,-16,62,63,2,1
-0,83,0,50,-10,32,33,2,1
-0,99,5,30,0,61,68,6,1
-2,93,0,54,0,38,39,2,1
--5,78,0,54,0,23,24,0,1
--5,97,0,50,0,42,48,6,4
-3,95,0,50,26,47,46,0,1
-1,106,-1,42,4,65,65,0,1
-0,77,-1,42,-2,34,35,2,1
-4,87,0,54,0,32,33,0,1
-0,106,0,24,2,69,82,14,1
-0,97,-4,52,18,41,45,4,4
-0,86,-6,44,0,43,42,0,1
--3,86,0,38,0,48,47,0,1
-0,75,0,28,-18,38,46,8,1
-0,82,-2,38,-3,44,43,0,1
-0,79,0,36,0,43,43,0,1
-0,77,-1,44,13,34,33,0,1
--2,76,0,44,6,32,32,0,1
-0,93,2,10,0,37,82,46,4
-4,76,2,46,0,30,30,0,1
-0,79,-3,0,0,42,79,36,1
-3,86,1,44,-3,41,42,2,1
-0,95,-7,44,0,39,51,12,4
-0,80,1,38,0,42,41,0,1
-0,82,0,44,-7,37,38,2,1
--1,106,-2,30,67,69,75,6,1
-0,77,-1,42,-4,34,36,2,1
-0,81,3,44,-30,35,37,2,1
-0,76,0,34,25,39,43,4,1
-0,88,0,2,23,3,86,82,5
--5,88,0,54,7,35,34,0,1
--2,76,6,38,0,37,37,0,1
-3,79,0,38,10,41,40,0,1
-0,81,0,20,16,44,60,16,1
-1,79,0,38,0,39,41,2,1
-0,108,0,54,6,55,54,0,1
-0,94,-5,16,0,57,79,22,1
--3,77,0,44,-11,31,33,2,1
-0,81,0,46,-20,32,34,2,1
--5,89,0,50,0,39,40,0,1
-0,90,-4,44,2,46,46,0,1
-0,79,0,26,-5,42,53,12,1
-0,81,0,-20,7,26,102,76,4
-5,84,0,46,0,38,38,0,1
-0,77,0,18,0,40,59,18,1
-0,76,0,42,-17,32,35,2,1
-2,86,0,36,0,49,50,0,1
--1,86,0,42,-14,42,44,2,1
-0,76,-4,24,0,40,53,14,1
-2,83,0,44,0,38,39,2,1
-0,83,0,44,16,40,39,0,1
-0,97,0,34,-6,59,63,4,1
-0,96,0,56,23,40,39,0,1
-0,93,0,16,-1,38,78,40,4
-0,102,0,46,0,57,56,0,1
-1,102,0,42,25,61,60,0,1
-1,77,1,50,0,27,28,0,1
-0,95,0,10,29,58,84,26,1
-0,74,-13,0,0,19,74,54,4
--3,78,0,52,20,27,26,0,1
-0,76,0,36,0,39,39,0,1
-0,96,0,52,-6,41,44,4,4
-0,83,-1,-40,0,4,125,120,5
-0,81,0,54,0,28,27,0,1
--4,83,0,52,0,31,32,0,1
-1,81,0,54,5,28,27,0,1
--1,80,-4,42,-6,38,39,0,1
--3,91,0,54,-15,35,37,2,1
--1,86,0,54,-7,31,32,2,1
--2,106,-6,36,-11,69,69,0,1
--3,83,0,42,0,42,42,0,1
-3,90,0,46,0,42,43,2,1
-0,84,5,42,-10,41,43,2,1
-0,81,0,52,-3,29,30,0,1
--1,77,-6,42,0,35,35,0,1
-0,85,0,42,-20,41,44,2,1
-0,98,5,50,22,42,49,6,4
-0,84,0,-40,1,4,125,120,5
-0,77,-1,0,8,22,77,56,4
-0,102,0,52,-7,49,50,2,1
-1,87,0,52,4,36,35,0,1
-4,78,0,18,26,22,60,38,4
-0,78,-2,8,0,41,70,30,1
-0,104,0,24,1,67,80,14,1
--1,79,0,46,12,34,33,0,1
-0,81,0,50,0,32,32,0,1
-0,79,-2,26,-11,42,53,10,1
-0,82,2,-12,6,26,95,68,4
--2,87,3,50,0,37,38,0,1
-1,95,0,42,-5,40,54,14,4
--5,106,1,72,3,2,34,32,5
-0,106,0,28,-19,68,77,8,1
--5,106,0,42,0,64,64,0,1
-0,79,0,26,1,42,53,10,1
-0,83,0,52,17,31,31,0,1
-2,77,0,-24,7,21,103,82,4
--5,100,0,38,0,62,62,0,1
-0,79,2,38,0,41,40,0,1
-1,81,0,38,7,43,42,0,1
--5,88,6,56,0,32,31,0,1
-0,73,-12,0,5,18,73,54,4
-3,79,-5,46,0,33,32,0,1
-0,83,0,-2,-19,46,85,40,1
-0,80,-3,42,0,39,39,0,1
-0,82,-5,42,0,39,41,2,1
-0,81,0,24,-2,44,57,14,1
-0,77,0,28,27,40,48,8,1
-0,80,0,54,-27,24,26,2,1
--3,86,0,56,0,29,29,0,1
-0,78,-1,8,-4,22,70,48,4
--1,97,0,46,2,41,51,10,4
--6,90,-3,8,-8,53,82,30,1
--1,84,-7,-20,0,4,105,100,5
--1,80,-6,24,14,24,57,32,4
-2,81,0,-42,0,4,125,120,5
-0,78,-7,46,21,32,32,0,1
--2,92,0,56,0,36,35,0,1
-0,103,6,52,-6,51,51,0,1
-0,96,1,42,-1,41,55,14,4
-0,78,0,42,2,37,37,0,1
-0,81,0,-20,-2,25,102,76,4
-0,82,0,-40,15,26,123,96,4
-0,96,0,42,-11,41,55,14,4
-0,79,0,42,9,39,38,0,1
-0,81,-2,44,-4,36,37,2,1
--1,86,0,38,-23,46,48,2,1
-2,77,0,-22,0,23,101,78,4
-4,79,0,52,0,26,27,0,1
-0,77,0,50,-23,26,28,2,1
-0,84,0,42,9,43,43,0,1
-0,78,8,50,0,29,29,0,1
-0,90,0,50,-30,38,41,2,1
--1,87,0,42,0,44,46,2,1
--3,102,0,52,0,50,50,0,1
--2,84,0,38,0,45,46,2,1
-0,77,0,34,15,40,44,4,1
-0,81,0,-42,0,4,125,122,5
--3,77,0,42,-9,34,36,2,1
-0,98,0,28,-8,61,70,8,1
-5,106,6,70,-29,1,36,34,5
-4,79,0,42,2,37,37,0,1
-1,93,0,36,17,54,57,2,1
-0,83,0,36,0,46,46,0,1
-0,79,0,12,7,23,66,42,4
--2,104,-1,70,0,1,35,34,5
-0,86,-1,-10,3,3,96,92,5
--1,87,-5,50,0,37,38,0,1
--2,102,-3,72,0,1,29,28,5
-1,87,0,54,22,34,33,0,1
-0,86,4,38,-30,45,48,2,1
-0,90,0,44,-6,45,46,2,1
-1,77,0,34,0,40,43,4,1
-0,86,-2,44,0,42,42,0,1
-0,81,-2,-14,0,25,97,72,4
-0,81,0,50,-19,30,32,2,1
-0,81,1,46,-10,33,35,2,1
-0,95,-4,50,0,39,46,6,4
--1,83,0,-32,85,4,117,112,5
-0,77,0,38,-30,36,38,2,1
-0,86,0,46,28,41,39,0,1
-0,92,0,-4,-6,36,97,60,4
-0,79,3,26,24,23,53,30,4
-3,83,0,44,-6,37,39,2,1
-5,83,0,46,4,37,37,0,1
--4,97,0,42,0,41,55,14,4
-0,79,0,44,-19,34,35,2,1
-0,78,0,18,25,23,60,38,4
-3,106,0,38,0,67,67,0,1
-0,82,-8,44,0,37,38,0,1
-0,93,0,30,22,55,62,8,1
-2,89,0,8,1,2,81,78,5
-0,86,0,44,11,42,42,0,1
-2,76,0,44,0,32,32,0,1
-1,102,0,44,8,59,58,0,1
-0,87,1,46,28,42,41,0,1
-0,77,0,8,-19,41,70,28,1
-0,82,-1,36,-2,45,46,2,1
--1,96,0,52,-5,41,44,4,4
--5,97,0,34,-8,61,64,2,1
-0,76,4,42,0,34,35,2,1
-0,87,6,-2,0,3,90,86,5
-0,81,3,38,0,42,43,0,1
-0,77,-5,10,12,22,67,46,4
-0,88,0,38,0,47,49,2,1
-0,87,2,46,3,41,41,0,1
-0,76,6,26,0,39,50,12,1
-0,78,0,-2,-12,42,81,40,1
-0,79,0,38,28,42,41,0,1
-0,94,0,16,27,57,79,22,1
--4,87,0,44,0,43,43,0,1
-0,79,0,54,31,26,24,0,1
--3,86,0,38,-22,45,47,2,1
-0,80,0,-42,-17,4,124,120,5
-1,88,0,54,29,35,33,0,1
--1,88,8,44,15,43,44,2,1
-0,89,0,2,-11,4,86,82,5
-1,84,0,-38,0,4,123,118,5
-0,81,-7,28,15,45,53,8,1
--4,90,0,26,0,53,64,12,1
-0,83,5,46,31,37,36,0,1
-0,79,-2,36,-4,42,43,0,1
-0,82,4,-4,0,45,87,42,1
-0,77,0,24,11,22,54,32,4
-0,78,0,16,-12,42,63,22,1
-3,81,0,52,0,28,29,0,1
--3,81,-2,46,0,33,34,2,1
-0,75,0,20,22,38,54,16,1
-0,86,3,-12,0,4,99,94,5
-0,79,0,34,5,42,46,4,1
-4,76,0,44,4,32,32,0,1
-5,106,1,36,-3,68,70,2,1
-0,103,0,30,8,66,72,6,1
-3,107,0,44,13,63,63,0,1
-0,76,0,-4,-22,20,81,62,4
-0,97,0,44,-1,41,53,12,4
-5,85,0,44,0,41,41,0,1
-0,81,0,-10,10,25,92,66,4
-2,96,0,56,0,39,39,0,1
-1,86,0,46,0,40,39,0,1
--1,76,0,36,-17,38,39,2,1
-2561,106,-4,34,-20,24,72,48,6
-0,79,0,38,-22,38,40,2,1
-0,81,-2,44,12,37,37,0,1
-4,102,1,72,18,1,30,30,5
-0,98,0,50,-24,42,49,6,4
-5,77,0,46,22,32,31,0,1
--1,107,0,50,11,58,58,0,1
-0,84,0,42,16,43,43,0,1
-0,81,0,54,0,26,27,2,1
-0,84,0,46,13,38,37,0,1
-0,80,0,36,-1,43,44,2,1
-0,79,8,42,0,38,38,0,1
-1,76,-4,-4,0,20,81,62,4
-0,78,-2,42,0,36,37,2,1
-0,81,0,50,1,32,32,0,1
-0,89,0,42,28,48,48,0,1
--1,82,0,42,-6,39,41,2,1
-0,84,0,-38,-3,4,123,118,5
-1,86,0,44,-1,41,42,2,1
-0,79,0,44,5,35,35,0,1
--2,97,-4,46,-10,41,51,10,4
-0,80,0,8,17,43,72,30,1
-0,82,0,52,0,29,30,2,1
--2,107,-4,70,0,2,37,36,5
-0,79,0,42,-12,35,37,2,1
-0,76,0,-10,2,20,86,66,4
-0,97,0,54,10,40,42,2,1
-0,77,8,28,8,22,49,28,4
-0,92,0,24,4,55,69,14,1
-0,86,6,56,0,29,29,0,1
-0,84,0,42,-26,40,43,2,1
-0,89,1,54,0,35,35,0,1
-0,77,3,34,-30,40,43,2,1
--38,107,0,64,-36,16,42,26,3
-0,92,0,18,5,54,74,20,1
-0,95,-4,36,-12,39,59,20,4
-4,106,0,38,0,66,67,2,1
-1,87,0,56,8,31,30,0,1
-5,85,0,42,20,44,44,0,1
-0,86,0,54,7,33,32,0,1
-0,82,0,34,8,45,48,2,1
-2,91,0,56,0,33,34,0,1
--5,85,0,44,0,41,41,0,1
--1,84,0,54,0,30,30,0,1
--5,86,0,52,0,35,34,0,1
-0,98,0,44,9,42,54,12,4
-0,86,1,54,2,33,32,0,1
-0,81,2,54,-7,25,26,2,1
-0,95,0,10,8,58,84,26,1
--5,80,0,56,22,25,23,0,1
-0,89,0,2,-10,4,86,82,5
-0,95,0,46,4,40,49,8,4
-1,85,0,-40,9,4,126,122,5
-3,76,-3,42,0,35,35,0,1
--3,88,0,0,0,3,88,84,5
-2,77,0,34,-14,39,43,4,1
-0,88,0,50,0,39,39,0,1
-0,79,0,50,7,31,30,0,1
-0,77,0,44,-11,32,34,2,1
-4,80,10,24,0,43,57,14,1
--2,81,0,56,0,24,24,0,1
-0,106,0,24,-4,69,83,14,1
-0,80,0,8,-19,43,72,30,1
-0,97,0,44,-8,41,53,12,4
-0,105,-2,38,-4,67,66,0,1
-0,77,0,-14,-14,40,92,52,1
-0,78,7,34,-13,41,45,4,1
-3,79,0,54,0,25,24,0,1
-1,86,0,50,0,35,37,2,1
-0,83,5,54,6,30,29,0,1
-0,109,0,44,-24,64,66,2,1
-4,86,0,38,0,48,48,0,1
-2,88,0,44,-1,42,44,2,1
--1,79,0,38,8,41,40,0,1
-0,107,0,28,3,69,78,8,1
-0,84,1,46,0,36,37,2,1
-0,81,0,24,-4,44,57,14,1
-0,81,7,46,0,33,34,2,1
-0,83,0,36,0,45,46,2,1
-0,76,0,-10,25,20,86,66,4
-0,88,0,46,-11,39,41,2,1
-0,80,0,46,12,35,34,0,1
-0,97,2,42,0,41,55,14,4
-0,92,1,6,-20,54,86,32,1
-4,81,0,56,0,23,24,2,1
-1,84,0,-12,13,3,97,94,5
-0,76,0,28,-29,40,48,8,1
-0,78,0,0,10,41,78,36,1
-1,87,0,52,8,36,35,0,1
-0,83,5,-46,0,4,129,124,5
-0,88,-2,2,-9,3,86,82,5
-0,104,0,28,14,67,75,8,1
-0,86,6,46,0,41,40,0,1
--1,87,2,50,0,37,38,0,1
-5,97,0,54,1,40,42,2,1
-0,76,0,18,27,39,58,18,1
--5,108,0,42,0,65,66,2,1
-0,77,0,2,-19,40,74,34,1
-0,78,-3,0,0,42,78,36,1
-0,86,0,44,0,43,42,0,1
--1,77,-4,46,-5,31,31,0,1
-0,80,0,12,-18,43,67,24,1
--1,90,4,46,-2,42,44,2,1
--8,75,-5,-40,7,4,116,112,5
-0,96,0,52,10,41,44,4,4
-0,86,0,54,0,33,32,0,1
--2,81,0,52,0,29,30,0,1
-2,103,0,70,-13,1,33,32,5
-0,77,-2,18,0,22,59,38,4
-5,85,0,56,0,27,28,2,1
-2,85,5,-24,0,4,111,106,5
-0,79,0,6,4,23,74,50,4
-2,78,0,42,11,37,37,0,1
-0,90,0,34,3,53,57,4,1
-0,81,7,42,-19,38,40,2,1
--2,80,1,36,0,43,44,0,1
-0,78,0,16,-2,22,63,40,4
-0,75,-1,26,-10,38,49,12,1
-0,84,0,28,-12,47,55,8,1
-0,95,0,34,-7,40,62,22,4
-0,93,-6,44,0,48,49,0,1
-5,85,0,38,0,45,46,2,1
--1,76,-2,46,-2,28,30,2,1
-0,78,0,38,30,41,39,0,1
-0,79,0,16,21,43,64,22,1
--1,85,0,-22,0,4,108,104,5
-0,79,5,0,-27,42,79,36,1
--2,79,0,42,23,38,37,0,1
-1,79,1,46,5,33,32,0,1
-3,87,0,44,-2,42,43,2,1
--5,81,0,46,-3,33,35,2,1
-0,97,0,12,17,59,84,24,1
-3,98,3,38,-30,42,59,18,4
-0,76,-3,46,-28,27,30,2,1
-1,76,0,42,3,34,34,0,1
-0,86,0,52,29,35,34,0,1
-1,79,1,50,23,30,30,0,1
-0,86,0,38,-22,45,48,2,1
-0,104,5,18,0,67,86,18,1
-0,76,-6,38,0,38,37,0,1
-0,90,0,54,-14,34,35,2,1
-0,87,0,42,23,46,46,0,1
-0,97,-4,30,-19,60,66,6,1
-0,93,5,46,0,48,47,0,1
-0,97,-6,30,0,60,66,6,1
-4,75,0,20,0,38,54,16,1
-1,82,0,46,9,36,35,0,1
--5,79,0,42,2,38,37,0,1
-0,76,-2,16,20,39,61,22,1
--1,97,-2,50,13,42,48,6,4
-0,93,0,12,28,56,81,24,1
--1,79,0,42,-15,35,37,2,1
--5,88,0,50,-13,37,39,2,1
--1,82,2,44,0,38,38,0,1
-0,77,0,20,4,40,57,16,1
-1,108,0,44,-9,62,64,2,1
--5,86,-2,50,-4,36,37,0,1
-0,87,-3,50,0,37,38,0,1
-1,97,0,56,13,40,40,0,1
-0,79,-4,2,0,43,77,34,1
-0,87,0,50,-16,36,38,2,1
-0,84,0,-28,-6,4,112,108,5
-0,81,3,28,0,45,53,8,1
-0,95,0,50,-8,40,46,6,4
-4,84,0,-14,1,3,100,96,5
-0,77,0,-4,16,21,82,62,4
-656,105,1,36,-4,-18,69,86,5
-0,82,-1,38,28,45,43,0,1
-0,77,-5,30,-6,40,46,6,1
--25,77,0,-2,0,34,79,46,3
-0,83,0,50,19,34,34,0,1
--69,88,0,8,6,36,81,44,3
--4,86,-2,50,-3,36,37,0,1
-0,95,0,46,-4,40,49,8,4
-0,86,0,54,18,33,32,0,1
--3,83,5,44,0,38,39,0,1
-0,84,1,-42,-1,4,128,124,5
-4,83,0,-42,0,4,126,122,5
-0,76,2,34,-17,39,43,4,1
-3,82,0,44,0,37,38,2,1
-2,100,0,36,0,64,64,0,1
-0,86,0,-40,4,4,127,122,5
-0,81,0,38,-20,40,43,2,1
-0,95,-3,46,0,40,49,10,4
-0,86,0,44,7,43,42,0,1
-0,77,1,-2,22,21,79,58,4
-2,81,0,56,17,25,24,0,1
-0,79,0,10,29,42,68,26,1
-5,104,2,70,-27,1,35,34,5
-0,80,0,54,-30,24,26,2,1
-0,88,0,46,24,42,41,0,1
-0,77,-3,-10,13,40,87,46,1
-0,84,2,56,0,27,27,0,1
-0,77,0,2,19,40,74,34,1
-0,82,0,44,-21,37,38,2,1
-0,79,0,6,8,42,74,32,1
--3,82,0,42,7,41,41,0,1
--3,77,-7,0,0,22,77,56,4
-0,77,-2,42,-4,34,36,2,1
-0,76,-3,36,-13,39,40,2,1
-0,97,0,56,10,40,40,0,1
-0,95,-4,44,0,40,51,12,4
-2,81,0,46,0,35,35,0,1
-0,96,8,56,0,40,39,0,1
-0,77,-2,8,0,40,69,30,1
-4,79,0,36,0,42,43,0,1
-0,76,0,46,31,30,29,0,1
-3,76,0,20,0,39,55,16,1
-0,88,0,50,22,39,39,0,1
-0,77,-1,-4,74,21,82,60,4
-0,76,0,36,9,40,40,0,1
-0,79,6,42,11,39,38,0,1
-0,90,0,42,0,47,48,2,1
-3,88,0,42,1,47,47,0,1
-0,77,-2,38,0,38,39,2,1
-0,77,0,38,7,39,38,0,1
-0,86,3,44,0,42,42,0,1
-0,76,0,44,22,33,32,0,1
-0,84,-6,42,0,41,43,2,1
-0,79,0,10,-15,23,68,46,4
-0,96,0,54,3,41,42,0,1
-0,95,-5,50,10,46,46,0,1
-0,84,0,-18,31,4,103,98,5
--2,84,-7,42,0,42,43,0,1
-5,89,0,46,8,43,42,0,1
--2,77,0,38,-11,37,39,2,1
-5,83,0,46,0,37,37,0,1
-0,76,0,20,19,40,55,16,1
-1,84,0,56,0,27,28,0,1
-0,97,0,50,17,42,48,6,4
-0,81,0,46,-7,33,35,2,1
-4,97,0,44,1,41,53,12,4
-0,86,2,42,0,43,44,2,1
-4,105,0,72,5,1,33,32,5
-0,86,1,42,10,45,45,0,1
-0,88,-2,44,-3,44,44,0,1
-0,83,-3,-38,0,4,122,118,5
-3,75,0,26,-1,38,49,12,1
-0,78,4,42,23,37,37,0,1
-0,96,0,54,0,40,42,2,1
-0,79,2,8,0,42,71,30,1
-5,95,0,42,0,39,54,14,4
--1,98,0,50,-21,42,49,6,4
-0,76,0,28,-14,39,48,8,1
-0,98,0,52,30,42,46,4,4
-0,75,-2,20,-6,38,54,16,1
-0,96,0,36,-28,58,60,2,1
-0,80,0,52,0,27,28,2,1
-0,92,3,10,0,54,81,28,1
-0,76,0,44,-12,30,32,2,1
-0,83,0,42,23,42,41,0,1
-0,79,-1,44,-6,33,35,2,1
-0,90,-2,46,0,43,43,0,1
-0,87,0,50,-13,36,38,2,1
--2,86,0,44,0,43,42,0,1
--2,79,0,44,-24,33,35,2,1
-0,95,0,52,11,40,44,4,4
--2,81,6,44,1,38,37,0,1
-0,79,0,46,17,34,33,0,1
--1,79,0,46,11,33,32,0,1
--63,78,0,42,8,51,37,-14,1
-2,93,0,36,21,54,57,2,1
-0,83,2,42,29,42,41,0,1
-0,104,0,18,-11,67,86,18,1
-1,83,0,42,10,41,41,0,1
-5,97,5,38,0,40,58,18,4
-0,109,0,62,0,47,47,0,1
-0,79,1,42,3,38,38,0,1
-0,81,-2,-40,16,5,122,118,5
-0,94,0,34,29,57,61,4,1
-0,76,0,24,7,40,53,14,1
-5,82,1,56,0,25,25,0,1
-1,86,0,46,13,41,40,0,1
-0,78,1,10,16,22,68,46,4
-3,81,0,54,-1,25,27,2,1
--3,88,0,46,-4,39,41,2,1
--4,102,-1,34,0,65,69,4,1
-0,84,0,44,11,41,41,0,1
--1,79,0,54,-1,23,24,2,1
--1,77,0,42,-11,34,36,2,1
-0,79,-6,44,29,35,35,0,1
-0,76,2,20,-7,39,55,16,1
-0,87,5,42,-5,44,46,2,1
--3,89,1,42,0,48,48,0,1
--1,77,0,44,-16,32,34,2,1
-0,85,0,44,-20,39,41,2,1
-0,83,0,-30,18,4,114,110,5
--1,77,0,42,-8,34,36,2,1
-0,76,0,34,-29,40,43,2,1
-0,75,0,26,9,38,49,12,1
-0,77,0,36,-21,22,41,20,4
-1,105,1,70,0,1,35,34,5
-0,81,0,38,26,43,42,0,1
-0,104,-7,70,0,1,34,34,5
-0,80,0,46,-14,31,34,2,1
-0,97,5,34,0,60,64,4,1
-3,77,0,36,-21,40,41,2,1
-0,102,0,72,19,1,30,28,5
-0,92,0,12,0,55,79,24,1
-0,78,0,38,-6,38,39,2,1
-0,86,3,44,-24,41,42,2,1
--1,79,0,28,0,42,50,8,1
--1,79,0,44,7,35,35,0,1
--1,81,4,-2,0,44,83,40,1
-0,76,-3,34,-8,40,43,2,1
--1,96,-1,52,0,40,44,4,4
--5,107,0,72,0,1,35,34,5
-0,102,0,46,3,57,56,0,1
-5,81,0,50,14,32,32,0,1
-1,77,0,-22,13,40,101,60,1
-0,77,0,-4,24,41,83,42,1
-0,83,6,54,8,30,29,0,1
-2,81,0,50,16,33,32,0,1
--1,82,-5,46,-8,34,35,0,1
--3,92,0,54,0,36,38,2,1
-1,83,0,50,-3,32,33,2,1
-0,77,0,-4,2,21,82,62,4
-0,86,1,44,-2,41,42,2,1
-0,89,1,46,16,44,42,0,1
--2,77,0,42,0,36,36,0,1
-2,81,0,52,-15,28,29,2,1
-3,84,0,52,19,33,33,0,1
-0,92,0,-6,-24,36,99,64,4
--2,86,-3,50,0,35,37,2,1
-4,77,4,36,0,40,41,0,1
-0,76,0,28,-5,39,48,8,1
-1,103,0,70,-5,1,33,32,5
-0,79,0,26,-26,42,53,12,1
-0,96,0,12,-3,59,83,24,1
-0,104,0,28,14,67,76,8,1
--4,80,0,42,0,38,39,2,1
-0,81,4,46,2,35,35,0,1
-0,84,0,-14,21,3,100,96,5
-0,81,1,38,-3,40,42,2,1
-0,83,0,34,-22,46,49,2,1
--9,107,-1,70,0,3,37,34,5
-0,90,0,54,-18,34,35,2,1
--1,83,-2,46,-4,37,37,0,1
-0,76,0,16,11,39,61,22,1
-0,76,6,18,0,40,58,18,1
-0,79,-3,38,-12,39,41,2,1
--5,79,0,38,0,39,40,0,1
-0,79,4,44,0,34,35,2,1
-3,105,0,72,2,1,33,32,5
-0,112,4,62,0,49,50,0,1
-0,74,0,28,26,38,46,8,1
-2,91,0,56,0,32,34,2,1
-0,78,-2,26,3,22,52,30,4
-0,76,-1,46,0,29,29,0,1
-0,81,5,46,0,32,34,2,1
-0,84,0,-10,32,4,94,90,5
-0,78,0,20,-6,41,57,16,1
-0,81,0,42,677,39,40,0,1
-0,78,0,12,8,42,65,24,1
-0,87,5,42,0,44,46,2,1
-0,106,0,28,-24,69,78,8,1
-0,118,1751,310,15164,73,-191,-264,1
-0,84,0,52,24,33,32,0,1
--2,87,0,46,20,42,41,0,1
-0,77,3,36,2,41,41,0,1
-1,80,0,52,9,29,28,0,1
--1,84,0,-14,6,4,100,96,5
-0,87,-3,52,-6,34,35,2,1
-0,93,6,28,10,55,64,10,1
-0,79,-7,42,-10,36,38,2,1
-0,78,0,24,17,41,55,14,1
--4,87,1,56,0,31,30,0,1
-2,98,0,46,5,42,51,10,4
-0,86,1,38,-24,46,48,2,1
-0,81,-3,34,0,43,47,4,1
-0,77,1,38,24,39,38,0,1
-0,109,0,62,6,48,47,0,1
-1,96,1,46,0,40,50,10,4
--3,80,0,-4,0,25,85,60,4
-0,76,0,20,-2,39,55,16,1
-0,86,0,46,-15,37,39,2,1
--2,106,-3,72,1,1,33,32,5
-0,81,0,-6,-25,25,89,64,4
-0,86,3,36,0,50,50,0,1
-1,86,1,44,11,42,42,0,1
-0,87,3,38,-6,46,48,2,1
--1,86,0,46,-22,37,39,2,1
-0,77,0,42,20,36,36,0,1
-0,81,0,52,7,29,29,0,1
-5,84,0,46,0,38,37,0,1
--3,107,0,56,3,51,50,0,1
--3,79,1,46,0,34,33,0,1
-0,76,-6,24,11,39,52,14,1
--5,83,0,44,-21,37,39,2,1
-0,78,0,46,25,33,32,0,1
-3,106,0,46,0,60,60,0,1
-0,77,-1,36,18,40,41,0,1
-0,79,3,56,0,22,23,0,1
-0,79,-4,42,0,37,38,2,1
-0,105,0,72,1,1,33,32,5
-0,77,0,16,-5,22,62,40,4
--2,86,0,56,25,31,30,0,1
-0,76,0,26,4,39,50,12,1
--1,81,0,42,0,39,39,0,1
-1,84,0,-20,0,4,105,102,5
-0,82,0,-36,-5,26,118,92,4
-0,80,-3,36,0,43,44,0,1
-0,82,-4,44,0,37,38,0,1
--4,83,0,52,-20,30,32,2,1
-0,75,0,44,14,31,31,0,1
-0,83,-1,42,17,41,41,0,1
-0,83,0,34,6,46,49,2,1
-0,82,0,54,8,29,28,0,1
-1,108,0,70,0,1,38,36,5
-0,79,1,2,-2,43,77,34,1
-5,106,5,72,6,1,34,32,5
-0,81,0,10,-2,45,71,26,1
-0,86,3,56,2,31,30,0,1
--1,76,0,38,21,38,37,0,1
-0,97,0,38,-9,57,59,2,1
-3,87,8,46,0,41,41,0,1
-0,84,0,-18,-12,3,103,100,5
-0,97,-1,50,-11,41,48,6,4
-0,79,0,44,18,35,35,0,1
-0,76,0,38,-1,37,37,0,1
-0,97,2,10,0,59,86,28,1
-1,83,2,38,0,44,44,0,1
-0,77,3,36,-8,39,41,2,1
-0,106,0,70,0,1,36,34,5
-4,88,0,52,0,35,36,2,1
--1,81,-3,54,-5,26,27,0,1
-0,93,0,44,-13,37,49,12,4
-0,97,0,50,31,41,48,6,4
--3,86,0,-22,0,4,109,104,5
-1,88,0,38,-30,47,50,2,1
-0,76,0,28,9,40,48,8,1
-1,84,0,46,-7,35,37,2,1
-0,83,0,52,-6,30,32,2,1
--1,84,0,-32,0,4,117,112,5
-0,77,0,-20,18,21,97,76,4
-0,84,-6,44,0,39,40,0,1
-0,81,0,30,0,45,50,6,1
-1,86,0,42,-11,42,44,2,1
--1,77,0,54,6,25,23,0,1
--4,81,-1,42,0,40,40,0,1
-0,78,2,26,0,23,52,30,4
-5,85,0,38,0,46,46,0,1
-4,82,0,50,1,33,33,0,1
-0,78,0,0,-20,23,78,56,4
-0,102,0,50,6,53,53,0,1
-0,77,0,52,-9,25,26,2,1
-0,78,0,10,-14,22,68,46,4
-0,107,0,46,-4,58,60,2,1
-0,83,3,42,-10,40,42,2,1
--2,87,0,52,0,35,35,0,1
-0,76,0,44,31,33,32,0,1
-0,76,0,46,15,31,30,0,1
-0,81,0,54,28,28,27,0,1
-0,103,0,18,-13,66,85,20,1
-0,79,-6,42,0,35,37,2,1
-4,82,0,46,-7,33,35,2,1
-5,83,0,42,0,42,42,0,1
--2,86,0,42,-12,42,44,2,1
-0,77,0,42,31,37,36,0,1
-0,96,0,42,-30,41,55,14,4
-0,87,0,44,-20,42,43,2,1
-0,84,0,-18,19,4,103,98,5
-4,86,5,44,0,42,42,0,1
-0,80,0,50,-1,29,31,2,1
--4,89,0,50,0,39,40,0,1
-0,80,0,26,11,43,54,10,1
-0,110,-3,50,29,61,61,0,1
-3,79,3,-42,0,4,123,120,5
-5,81,0,52,0,29,30,0,1
-0,106,0,24,-20,68,82,14,1
-0,77,0,26,15,40,51,10,1
-2,80,0,46,0,32,34,2,1
-3,80,0,50,2,31,31,0,1
-0,84,-1,42,0,42,43,2,1
-0,79,0,56,1,23,22,0,1
-0,87,-1,38,-2,47,48,2,1
--3,98,1,46,0,42,51,8,4
-0,94,0,34,15,57,61,4,1
-3,81,0,50,1,32,32,0,1
-0,81,0,28,20,44,52,8,1
-1,85,0,50,0,36,36,0,1
-0,76,6,34,0,39,43,4,1
--2,88,0,6,0,4,83,80,5
-0,75,-3,36,0,38,39,0,1
-5,77,0,50,7,28,28,0,1
-4,78,-1,46,0,31,32,0,1
-0,76,0,42,4,35,35,0,1
-0,106,-5,46,-10,58,60,2,1
-0,93,0,8,26,37,85,48,4
-0,80,0,50,-5,29,31,2,1
-0,81,5,44,0,36,37,2,1
-0,95,5,50,12,47,46,0,1
-0,92,0,30,0,36,61,24,4
-0,86,0,52,-23,32,34,2,1
-0,79,0,24,4,42,55,14,1
-0,102,0,38,0,62,63,2,1
--23,106,-2,34,-3,69,72,4,1
-0,77,0,-22,-1,41,101,60,1
-0,74,0,28,22,38,46,8,1
-0,88,8,46,0,40,41,0,1
-0,76,-7,28,-5,39,47,8,1
--3,92,0,54,-3,37,38,2,1
--1,111,0,62,0,48,49,0,1
-1,80,0,8,9,43,72,30,1
-3,85,-1,46,0,38,39,0,1
-0,103,0,70,-19,1,33,32,5
--1,106,258,34,-9,69,72,4,1
--5,91,0,56,24,35,34,0,1
-3,79,1,46,-12,30,32,2,1
--2,86,0,44,-11,41,42,2,1
-2,77,0,42,0,34,35,2,1
-0,77,0,18,381,21,59,38,4
-1,83,8,46,0,35,36,2,1
-0,80,0,52,-3,27,28,0,1
-0,76,6,34,0,39,42,2,1
-0,97,0,44,-23,41,53,12,4
--3,108,0,54,-5,52,53,2,1
-0,76,13,24,0,39,53,14,1
-0,77,0,36,17,40,41,0,1
-0,87,4,46,0,41,41,0,1
-0,83,0,44,-3,38,39,2,1
-0,95,0,50,22,47,46,0,1
-0,109,8,60,0,47,49,2,1
-0,104,0,18,3,66,86,20,1
-0,82,-1,36,-5,45,46,2,1
-0,76,0,34,-15,40,43,2,1
-0,83,-2,44,0,39,39,0,1
-0,79,0,10,16,42,68,26,1
-0,95,1,10,6,57,84,28,1
-0,83,0,38,-14,42,44,2,1
-0,77,0,36,7,40,41,2,1
-0,85,0,38,-10,44,46,2,1
-3,81,-1,44,-1,36,37,2,1
-0,80,2,-4,0,24,85,62,4
--1,77,0,50,0,28,28,0,1
-0,88,-3,2,-7,3,86,82,5
-0,79,8,0,0,42,79,36,1
-0,94,-6,10,8,57,84,28,1
-1,89,0,8,1,2,81,78,5
-0,87,0,50,0,36,38,2,1
--1,92,0,56,3,36,35,0,1
-4,77,0,42,0,35,35,0,1
-1,80,0,52,-3,27,28,2,1
-0,85,0,44,-15,40,41,2,1
-0,81,-4,38,0,43,43,0,1
--3,78,0,42,0,37,37,0,1
-0,80,0,46,15,34,34,0,1
-0,102,0,52,4,51,50,0,1
-0,77,0,46,14,31,30,0,1
-0,89,3,46,0,43,42,0,1
--4,80,-1,42,-5,37,39,2,1
-1,108,0,54,0,53,54,2,1
-5,81,0,44,-2,36,37,2,1
-0,79,2,8,0,24,72,48,4
-0,78,0,-2,7,42,81,40,1
--2,77,8,46,0,29,30,2,1
-0,87,0,52,17,36,35,0,1
--5,75,-3,20,0,38,54,16,1
-0,97,0,52,27,41,45,4,4
-0,78,0,8,26,41,70,30,1
-4,80,0,6,0,43,75,32,1
-0,79,7,42,0,38,38,0,1
-0,79,0,30,-1,43,48,6,1
-0,97,0,54,28,41,42,2,1
-3,82,0,50,0,32,33,2,1
-0,77,0,10,-6,40,66,26,1
-0,91,-4,-6,-29,35,99,64,4
-0,87,-2,46,0,39,41,2,1
-0,76,0,42,-1,32,34,2,1
-0,82,1,44,-8,37,38,2,1
-0,79,0,12,-22,43,66,24,1
-0,94,5,10,-24,57,84,26,1
-1,102,0,44,0,57,58,2,1
-0,82,0,18,-17,45,64,18,1
-0,77,-5,42,15,37,36,0,1
-0,82,0,-36,-1,26,118,92,4
-0,77,0,10,2,22,67,46,4
-0,86,2,54,-23,31,32,2,1
-0,83,0,50,9,34,34,0,1
-0,81,0,46,-13,32,34,2,1
-1,92,5,6,0,54,86,32,1
-0,96,-2,18,0,59,78,18,1
-3,77,0,44,0,33,34,0,1
-0,98,0,42,-9,42,57,14,4
--4,90,0,44,-1,45,46,2,1
-0,79,2,44,0,34,35,2,1
-4,84,0,56,0,28,28,0,1
-0,76,4,38,1,39,37,0,1
-1,79,0,38,0,40,40,0,1
-0,83,0,42,0,42,42,0,1
-0,87,2,46,0,39,41,2,1
-0,88,1,50,15,39,39,0,1
--10,106,-4,34,-7,69,72,4,1
--4,86,0,54,15,33,32,0,1
-2,86,0,50,-12,35,37,2,1
-0,96,3,50,0,47,47,0,1
-1,86,-3,44,15,42,42,0,1
-0,81,0,44,0,36,37,2,1
-3,78,0,46,1,32,32,0,1
--3,77,0,44,0,32,33,2,1
-0,76,0,38,19,38,37,0,1
-2,107,5,70,0,1,37,36,5
-0,105,1,18,0,68,87,18,1
-0,95,0,44,25,40,51,12,4
-4,80,0,-4,6,24,85,62,4
-0,75,0,20,-22,38,54,16,1
--1,81,0,50,-16,30,32,2,1
-2,86,0,44,9,42,42,0,1
-0,81,-7,-4,0,45,86,42,1
-0,84,8,-20,0,4,105,100,5
--3,87,0,50,-10,36,38,2,1
-4,79,0,46,0,33,33,0,1
-0,82,0,-20,-4,26,103,76,4
--1,76,0,44,24,32,32,0,1
--3,97,0,46,0,41,50,10,4
-0,77,0,42,-3,22,36,14,4
-0,77,0,16,-9,22,62,40,4
-0,76,-1,36,-2,39,39,0,1
-0,107,0,28,-4,70,78,8,1
-0,98,0,50,-4,42,49,8,4
-0,104,0,54,12,51,49,0,1
-0,104,6,24,0,67,80,14,1
-0,76,4,20,0,39,55,16,1
-4,81,0,42,-16,37,39,2,1
-0,95,2,10,12,57,84,28,1
-5,84,2,-38,-13,4,123,118,5
--1,88,-1,44,9,43,44,2,1
-0,85,0,44,12,41,41,0,1
-0,84,5,30,-11,47,53,6,1
--1,86,0,44,9,42,42,0,1
--4,85,2,44,0,40,41,2,1
-0,106,2,24,-18,69,83,14,1
-0,76,0,42,-18,32,34,2,1
-0,80,0,44,25,37,36,0,1
--1,80,0,46,-25,31,34,2,1
-0,83,0,44,-1,38,39,0,1
-0,95,0,50,12,47,46,0,1
--2,84,0,56,0,28,27,0,1
-0,76,2,42,-2,33,35,2,1
-0,83,-3,54,3,30,28,0,1
--4,86,0,52,0,34,34,0,1
-0,82,0,46,14,37,35,0,1
--4,78,0,42,2,37,37,0,1
-0,78,-7,12,0,42,65,24,1
-0,81,-3,44,19,37,37,0,1
-3,98,6,52,-13,42,46,4,4
-0,93,4,46,0,37,46,8,4
-0,77,0,16,14,22,62,40,4
-0,88,0,0,12,3,88,84,5
-1,104,0,54,3,50,49,0,1
-0,88,0,42,-11,44,46,2,1
-0,81,4,50,-13,30,32,2,1
--1,108,8,46,0,61,62,0,1
-0,89,0,38,-4,48,50,2,1
-1,75,0,44,14,31,31,0,1
-0,77,2,-28,11,22,106,84,4
-0,75,-1,24,-3,38,52,14,1
--3,86,1,50,0,37,37,0,1
-4,85,0,46,0,39,39,0,1
--5,83,0,56,9,27,26,0,1
-0,86,0,42,-19,43,45,2,1
-4,93,0,44,1,49,50,0,1
-0,76,0,-14,-3,21,92,70,4
-3,84,0,-40,6,4,126,122,5
--1,77,0,38,18,39,38,0,1
--1,83,0,54,7,30,29,0,1
-0,77,-1,46,31,31,30,0,1
-0,82,0,-32,-4,26,115,90,4
--2,96,0,54,0,41,42,0,1
-0,87,0,46,-3,39,41,2,1
-0,81,0,-4,15,25,86,62,4
-0,83,0,34,6,46,49,4,1
-0,87,3,52,-17,34,35,2,1
-0,104,0,28,8,67,75,8,1
-0,86,2,44,16,43,42,0,1
-0,76,-1,42,-2,34,35,0,1
-4,95,-5,46,0,47,48,0,1
-0,90,0,50,-1,39,41,2,1
--4,108,0,46,0,60,61,2,1
-0,97,0,52,-1,41,45,4,4
-0,79,0,50,0,29,30,0,1
-0,79,0,26,16,42,53,10,1
-0,77,0,50,-7,26,28,2,1
-3,112,0,68,1,45,45,0,1
-1,79,0,38,13,41,40,0,1
-0,78,0,-2,5,42,81,40,1
-0,83,0,98,8098,4,-14,-18,5
-0,77,0,26,9,40,51,12,1
-0,96,0,50,-7,40,47,6,4
-4,86,0,38,0,45,47,2,1
-1,81,-1,56,0,24,24,0,1
-1,84,0,42,0,42,43,2,1
-0,77,5,34,0,41,44,2,1
-0,108,0,42,-30,63,66,2,1
-0,87,0,54,15,34,33,0,1
-0,76,0,26,6,39,50,10,1
-3,107,1,72,0,1,35,34,5
-0,88,0,52,14,37,36,0,1
--1,89,0,44,2,45,45,0,1
--2,86,0,54,0,32,32,0,1
--4,77,0,46,-21,29,31,2,1
-3,82,0,42,-14,38,41,2,1
-0,87,-1,46,-1,40,41,0,1
-0,86,-1,54,-9,31,32,2,1
-0,83,-2,46,0,36,36,0,1
-0,80,-3,-42,-11,4,124,120,5
-4,96,0,52,0,41,44,4,4
-0,81,1,-2,5,44,84,40,1
-0,91,0,10,7,53,81,28,1
-0,96,0,52,-25,40,44,4,4
-0,88,0,38,-5,48,50,2,1
-0,77,2,-18,0,21,95,74,4
-0,77,0,52,2,26,25,0,1
-5,77,0,42,0,35,36,0,1
--5,86,0,54,0,31,32,0,1
--2,88,0,46,0,42,42,0,1
-3,102,0,72,12,1,30,30,5
-0,86,8,46,0,38,40,2,1
-0,82,0,-40,-11,26,123,96,4
-0,86,-1,38,0,46,48,2,1
--1,97,0,50,5,41,48,6,4
-0,107,1,50,0,58,58,0,1
-0,76,1,30,-16,39,45,6,1
-2,77,-6,46,0,29,30,2,1
-0,77,0,46,16,32,31,0,1
-0,83,-3,44,-14,37,39,2,1
-0,83,-2,42,-4,40,42,2,1
-0,80,0,46,14,35,34,0,1
--5,83,0,54,0,29,29,0,1
-0,76,0,44,31,32,32,0,1
-0,77,0,34,7,40,43,2,1
--1,80,2,44,5,36,36,0,1
--5,92,0,54,-30,36,38,2,1
-0,79,0,8,-7,23,71,48,4
-0,78,2,0,16,22,78,56,4
-0,84,2,-32,-7,4,117,112,5
-0,79,0,52,-15,26,27,2,1
-2,86,0,46,-19,38,40,2,1
--1,88,0,54,-1,32,33,2,1
-0,108,1,56,19,52,51,0,1
-2,89,5,38,0,48,50,2,1
-0,77,0,20,1,40,57,16,1
-0,102,0,42,-22,59,61,2,1
--4,79,0,50,0,28,30,2,1
--4,84,0,46,0,36,37,0,1
-0,90,0,26,1,52,64,12,1
--3,78,0,44,-1,33,34,2,1
-0,81,6,44,17,38,37,0,1
-0,92,0,56,24,36,35,0,1
--3,77,0,50,-12,27,28,2,1
--3,84,-4,-42,-30,4,128,124,5
-0,78,0,16,28,22,63,40,4
-0,87,7,42,-2,44,46,2,1
-0,79,0,16,10,42,63,22,1
-0,88,0,42,-10,44,46,2,1
-0,81,0,-2,5,44,84,40,1
-0,81,-2,36,-7,43,44,2,1
-0,86,-1,56,0,28,29,0,1
-0,97,-3,30,0,60,66,6,1
--1,81,1,38,0,42,42,0,1
--2,84,-2,-40,12,4,126,122,5
-0,77,0,44,-28,31,33,2,1
-0,75,-3,44,-4,30,31,2,1
-0,95,-2,18,0,58,77,18,1
-5,86,0,42,-17,42,44,2,1
-0,83,-5,46,8,37,36,0,1
-0,77,0,36,4,40,41,2,1
-0,108,0,44,-2,62,64,2,1
-0,109,0,52,0,58,57,0,1
-0,76,46,20,0,40,55,16,1
-0,99,0,42,0,43,57,14,4
--3,86,0,54,0,32,32,0,1
-1,77,-4,46,0,29,30,2,1
-4,91,0,56,0,33,34,0,1
-0,90,0,54,13,37,36,0,1
-1,80,1,20,-1,24,59,36,4
-0,75,-5,46,0,29,28,0,1
-0,86,0,52,8,36,35,0,1
--5,86,-2,56,0,29,29,0,1
--5,81,0,46,0,34,34,0,1
-0,82,0,54,12,26,28,2,1
-0,75,0,36,4,37,39,2,1
-1,78,0,50,17,29,29,0,1
--5,88,2,42,0,45,46,2,1
-0,96,5,50,0,47,47,0,1
--2,80,0,44,22,37,36,0,1
-0,79,0,20,-27,23,58,34,4
-0,83,0,-2,-15,47,86,40,1
-0,75,0,26,13,38,49,12,1
-0,81,0,44,-16,35,37,2,1
-0,87,6,56,0,30,30,0,1
-3,81,0,38,-22,39,42,2,1
-0,96,0,50,-18,40,47,6,4
--5,76,0,38,0,37,37,0,1
--3,87,0,44,0,42,43,2,1
-0,110,0,38,0,71,71,0,1
-0,77,0,-24,5,21,103,82,4
--2,88,0,44,-20,42,44,2,1
-1,77,0,44,-6,32,34,2,1
--3,81,0,46,21,36,35,0,1
-0,78,0,8,11,41,70,30,1
-0,80,0,8,11,43,72,30,1
-0,85,-3,42,0,42,44,2,1
-0,87,4,42,0,45,46,0,1
-0,77,0,28,12,21,48,28,4
-0,90,1,46,0,43,43,0,1
--3,78,0,46,-3,30,32,2,1
-0,97,0,24,-30,60,74,14,1
-0,97,0,12,0,59,84,24,1
-0,84,-1,46,-2,36,38,2,1
-0,79,0,2,-6,43,77,34,1
-5,83,-6,34,0,45,49,4,1
--1,89,-4,42,-6,46,48,2,1
-0,103,1,70,-8,1,33,32,5
--3,81,0,54,5,28,27,0,1
-3,89,0,8,0,2,81,80,5
--10,89,0,8,0,5,81,76,5
-0,97,0,30,9,60,66,6,1
-0,79,0,12,-4,43,66,24,1
-1,81,0,44,8,38,37,0,1
--1,76,0,42,1,35,35,0,1
-0,83,-3,-32,-3,4,117,112,5
-5,86,0,-24,-24,4,112,108,5
--1,86,2,44,20,43,42,0,1
-0,108,0,30,-6,71,77,6,1
--2,83,0,42,0,41,41,0,1
-0,93,0,38,-4,37,54,16,4
-0,83,-3,38,0,44,44,0,1
-1,75,0,26,-5,38,49,12,1
-0,76,0,36,-29,38,40,2,1
-2,90,1,42,0,48,49,0,1
-0,86,1,46,0,39,40,2,1
--2,77,0,50,0,28,28,0,1
-3,86,0,52,-3,33,34,2,1
--4,79,0,42,0,37,38,0,1
-0,82,0,24,-11,45,59,14,1
-4,81,0,-40,0,4,123,120,5
-0,106,0,30,9,69,75,6,1
--3,95,0,54,0,40,41,2,1
-0,90,3,56,0,34,33,0,1
--2,77,0,26,0,22,52,30,4
-0,79,-3,34,0,41,45,4,1
-0,77,0,52,14,26,26,0,1
-0,86,0,52,-6,33,34,2,1
-5,83,8,42,25,42,42,0,1
-0,92,-7,10,0,37,82,46,4
-0,106,0,38,11,68,67,0,1
-5,77,0,-22,27,40,101,60,1
-0,103,0,72,31,1,31,30,5
-0,77,0,18,5,41,59,18,1
--1,108,0,46,0,61,62,0,1
-1,85,0,44,3,41,41,0,1
-1,81,0,52,9,29,29,0,1
-0,82,0,50,20,33,33,0,1
-0,77,4,30,14,41,46,6,1
-0,90,0,20,18,53,70,16,1
-0,77,-2,38,0,39,38,0,1
--1,103,0,72,23,1,31,30,5
-1,95,3,46,0,48,49,0,1
--2,91,0,54,-9,35,37,2,1
-0,76,6,26,0,39,50,10,1
-0,76,0,26,-21,39,50,10,1
-0,86,2,56,0,30,30,0,1
-5,84,0,50,0,34,35,0,1
-0,78,0,10,19,41,68,26,1
-0,79,0,26,8,23,53,30,4
-0,79,-2,20,-5,24,59,34,4
-0,79,0,8,12,42,71,28,1
--5,86,0,54,0,32,32,0,1
--2,86,0,42,-27,42,44,2,1
-1,88,0,50,-9,36,39,2,1
-0,88,-1,46,0,41,41,0,1
-0,97,-2,42,15,56,55,0,1
-4,89,0,8,0,2,81,80,5
-5,86,0,-2,0,3,89,86,5
--3,85,0,44,0,41,41,0,1
-2,83,0,56,0,26,26,0,1
-0,81,4,38,-9,40,42,2,1
-0,80,0,26,4,43,54,12,1
--4,99,0,46,0,43,52,10,4
-0,107,-2,36,0,69,71,2,1
-3,104,0,54,5,50,49,0,1
-1,83,0,44,-19,37,39,2,1
--2,77,1,0,5,40,77,36,1
-2,98,0,44,-9,42,54,12,4
-1,77,0,26,0,22,52,30,4
-0,86,0,44,1,42,42,0,1
-0,81,0,26,-4,45,55,10,1
-0,98,0,44,0,42,54,12,4
-2,98,0,46,2,42,51,10,4
--1,78,0,8,-2,23,70,48,4
-0,77,-3,18,2,22,59,38,4
-0,79,0,38,-12,39,41,2,1
--3,96,0,56,9,40,39,0,1
-0,92,0,16,1,54,76,22,1
-0,76,6,36,7,39,40,2,1
-0,76,-4,42,0,35,35,0,1
-0,98,0,30,-4,61,67,6,1
-0,95,0,34,-19,40,62,22,4
-0,92,0,0,24,36,92,56,4
-0,77,0,-18,21,21,95,74,4
-0,74,0,24,2,37,51,14,1
-0,97,1,38,0,41,58,16,4
-3,76,0,28,0,39,47,8,1
-0,78,-6,6,0,41,73,32,1
-0,80,0,44,-18,35,36,2,1
-0,100,0,28,-29,64,72,8,1
-1,105,0,34,0,67,71,4,1
--2,77,1,42,-12,34,36,2,1
--2,91,-2,6,-9,53,86,32,1
-0,106,-3,28,-1,69,77,8,1
--5,76,0,42,-17,33,35,2,1
--14,77,0,20,0,40,56,16,1
-0,77,0,-12,3,21,90,68,4
--1,81,0,46,0,33,34,0,1
-0,89,-3,44,-30,43,45,2,1
-3,78,0,38,0,38,39,2,1
-0,78,-5,38,0,37,39,2,1
--4,81,0,52,-24,28,30,2,1
-0,83,0,56,25,27,26,0,1
--2,107,0,50,0,58,58,0,1
-0,77,-4,42,0,34,35,2,1
--5,76,0,38,6,39,37,0,1
-0,86,0,-10,23,3,96,92,5
-0,77,0,20,-10,22,57,36,4
-0,86,7,54,0,31,32,0,1
-2,75,0,42,12,34,34,0,1
-4,83,0,44,0,38,39,2,1
-0,100,0,30,-9,64,69,6,1
-1,107,0,56,2,51,50,0,1
-0,82,0,56,14,26,25,0,1
-0,78,-1,16,0,23,63,40,4
--5,77,0,42,-12,33,35,2,1
-0,78,5,26,-4,42,52,10,1
-0,81,-2,42,-7,37,39,2,1
-0,80,0,10,3,43,70,26,1
-0,83,0,12,-11,46,70,24,1
-1,76,0,38,0,35,37,2,1
-0,74,0,26,0,38,48,10,1
-0,86,0,54,29,33,32,0,1
-0,95,0,38,5,40,57,16,4
-0,80,0,12,26,43,67,24,1
-0,86,3,42,0,45,45,0,1
-5,81,0,42,5,40,40,0,1
--1,96,-3,54,-4,41,42,2,1
-0,81,0,26,-17,44,55,10,1
-1,77,0,42,-14,34,36,2,1
-0,84,0,54,6,31,30,0,1
--5,106,0,38,-18,65,67,2,1
-0,76,0,24,-11,39,53,14,1
-0,78,0,0,3,42,78,36,1
--5,83,0,42,0,40,41,2,1
-4,83,0,44,0,39,39,0,1
-0,78,0,-4,6,42,83,42,1
-0,106,4,26,0,69,80,12,1
-0,79,0,50,2,30,30,0,1
--5,85,0,42,0,43,44,2,1
-0,94,0,16,6,57,79,22,1
-0,85,-6,44,0,41,41,0,1
-0,80,0,34,-16,43,46,4,1
-0,78,0,2,11,23,75,52,4
-1,95,0,54,0,39,41,2,1
-0,95,0,46,-22,47,49,2,1
-0,84,0,52,0,32,32,0,1
-0,76,0,30,-27,40,45,6,1
--1,102,-1,72,0,1,29,28,5
-6,106,2,70,0,1,36,36,5
-0,81,6,38,0,42,43,0,1
-0,77,3,-2,0,39,79,40,1
--2,83,0,54,13,30,29,0,1
--2,84,0,-14,-3,4,99,96,5
-0,79,-2,-4,0,24,85,60,4
--2,86,0,56,0,29,30,0,1
-0,79,0,10,-20,42,69,26,1
-0,77,2,38,0,39,38,0,1
-0,79,0,20,8,23,58,34,4
-0,77,0,-30,-6,22,108,86,4
-0,79,7,38,-18,39,41,2,1
-0,79,-5,36,0,42,43,0,1
-0,77,0,-24,19,21,103,82,4
-0,85,-1,-2,0,3,88,84,5
--2,77,0,34,0,41,44,2,1
-0,77,-1,20,-2,40,57,16,1
-4,75,0,38,0,35,36,0,1
-0,80,0,6,-1,43,75,32,1
-0,86,-1,42,-2,43,45,2,1
-0,95,4,36,0,40,59,20,4
--2,81,0,54,0,26,27,0,1
--5,79,0,42,0,36,37,2,1
--4,89,0,42,-30,45,48,2,1
-0,77,0,46,24,31,30,0,1
-0,85,-2,44,4,41,41,0,1
-0,78,1,10,-30,42,68,26,1
-0,83,0,2,9,46,81,34,1
-0,81,0,-6,-4,25,89,64,4
--1,78,-4,34,-8,41,45,4,1
--1,76,-3,42,0,34,35,2,1
--2,81,0,42,19,41,40,0,1
-0,108,3,54,0,54,54,0,1
-0,89,0,50,31,41,40,0,1
-0,76,0,28,25,40,48,8,1
--2,84,0,46,0,37,38,0,1
-0,77,4,38,0,39,38,0,1
-0,84,0,46,21,38,37,0,1
-0,84,-1,46,0,37,37,0,1
-0,106,-4,30,23,69,75,6,1
-2,77,0,52,-30,24,26,2,1
-0,82,0,30,-6,45,51,6,1
-0,96,0,54,-20,40,42,2,1
-0,77,-3,36,-6,39,41,2,1
-0,92,0,-6,-25,36,99,64,4
-0,80,-6,42,0,39,39,0,1
-0,84,0,44,29,41,41,0,1
--1,96,-3,42,104,53,55,2,1
-0,77,0,34,7,22,44,22,4
-0,79,0,44,-16,34,35,2,1
--1,86,0,52,0,35,35,0,1
-0,77,5,-12,0,41,90,50,1
-1,91,0,54,-4,35,37,2,1
-0,76,0,34,18,39,42,2,1
-0,89,3,42,26,48,48,0,1
-0,89,1,54,0,34,35,0,1
-0,81,-1,42,-18,37,39,2,1
-0,84,0,42,0,43,43,0,1
-1,88,0,42,0,46,46,0,1
-0,106,0,50,12,57,57,0,1
--3,88,0,50,5,39,39,0,1
-4,83,5,46,0,35,36,2,1
-0,86,0,46,-2,37,39,2,1
-1,109,0,72,1,1,36,36,5
-0,77,0,10,20,40,66,26,1
-0,86,0,56,18,31,30,0,1
-0,80,0,-2,-1,25,83,58,4
-0,81,0,26,-14,44,55,10,1
--5,85,0,54,6,32,31,0,1
-0,76,0,20,0,40,55,16,1
-0,83,0,28,-8,46,54,8,1
-0,103,0,24,0,66,80,14,1
--3,77,-5,42,0,34,35,2,1
-0,87,2,42,16,46,46,0,1
-0,103,0,34,31,66,69,4,1
-2,77,-3,34,0,40,43,2,1
-2,88,2,54,0,32,33,2,1
-0,80,0,50,-3,29,31,2,1
-0,79,-3,10,6,43,69,26,1
-0,89,0,38,-8,48,50,2,1
-2,84,0,46,0,36,37,0,1
-0,88,0,2,25,3,86,82,5
-0,108,0,72,8,1,36,34,5
-2,75,0,42,-13,31,34,2,1
-0,77,2,-22,0,22,101,78,4
--2,86,0,54,7,33,32,0,1
--4,82,0,38,0,42,43,0,1
-0,76,0,16,-4,39,61,22,1
-0,79,0,30,12,43,48,6,1
-0,77,0,28,11,40,48,8,1
-0,95,0,46,30,40,49,8,4
-0,88,4,42,26,47,46,0,1
-0,95,0,16,-21,58,79,22,1
-4,106,0,50,27,58,57,0,1
-0,80,2,12,-16,43,67,24,1
-0,83,0,-2,-20,47,86,40,1
-0,110,-6,60,0,50,51,2,1
--1,99,-6,50,0,43,49,6,4
-0,80,0,50,12,31,31,0,1
--2,76,0,38,6,39,37,0,1
-0,107,0,72,6,1,35,34,5
-0,76,0,-14,5,21,92,70,4
-0,77,0,36,-23,39,41,2,1
--4,86,0,46,0,38,39,0,1
-0,84,0,-28,-28,4,112,108,5
-0,86,0,46,6,41,40,0,1
-4,88,0,52,21,37,37,0,1
-0,77,0,46,31,32,31,0,1
-0,96,0,52,-4,41,44,4,4
-0,81,0,54,1,27,26,0,1
-0,75,0,38,23,37,36,0,1
-0,104,-4,70,0,1,35,34,5
-0,85,0,44,-13,40,41,2,1
-0,77,0,-10,-5,21,87,66,4
-0,84,0,42,-27,40,43,2,1
-0,89,0,38,-19,48,50,2,1
-0,95,-6,44,0,40,51,12,4
-2,76,0,46,10,30,29,0,1
-0,77,0,42,4,36,36,0,1
-0,78,0,8,-11,22,70,48,4
-1,86,0,44,0,40,42,2,1
-0,83,8,42,0,41,41,0,1
-0,88,1,54,6,35,34,0,1
--5,90,3,6,0,51,85,34,1
-0,97,8,50,-3,41,48,6,4
-0,76,0,-12,18,20,89,68,4
-0,93,0,12,-30,38,81,42,4
-0,94,0,8,-28,57,86,30,1
--1,87,0,54,0,32,33,0,1
-0,76,5,34,0,40,43,2,1
-0,85,0,44,7,41,41,0,1
-0,106,0,28,-15,69,78,8,1
-0,86,1,44,17,43,42,0,1
-0,77,1,36,4,40,41,0,1
-0,88,0,46,4,42,41,0,1
-0,82,3,52,20,31,30,0,1
--3,84,0,-14,1,4,100,96,5
-0,86,0,42,-3,42,44,2,1
-0,77,0,46,27,32,31,0,1
-0,86,6,46,-14,38,40,2,1
-0,85,-1,46,4,39,39,0,1
-0,77,-4,8,0,40,69,28,1
-0,80,-2,42,0,39,39,0,1
-0,77,0,44,26,22,34,12,4
-0,91,-1,0,0,35,91,56,4
--4,106,-6,44,0,61,62,2,1
-0,96,0,44,1,40,52,12,4
-0,77,0,26,1,40,51,12,1
-0,81,0,54,-2,25,26,2,1
-0,86,6,38,0,46,47,0,1
-1,80,0,20,0,43,59,16,1
--1,81,0,52,0,29,29,0,1
-0,84,-2,42,0,41,43,2,1
-4,106,1,36,-3,68,70,2,1
--2,77,0,46,13,32,31,0,1
-0,87,0,44,-12,41,43,2,1
-0,74,-4,44,0,30,30,0,1
-0,81,0,42,6,39,39,0,1
-0,87,-5,52,0,36,35,0,1
-0,77,0,20,-7,22,57,34,4
-3,87,0,46,0,41,41,0,1
-0,103,0,70,-4,1,33,32,5
-0,76,0,-14,9,21,92,70,4
-0,96,-5,50,-9,40,47,6,4
-0,95,0,52,13,39,43,4,4
-2,86,-1,50,0,36,37,0,1
--1,76,0,42,-15,33,35,2,1
-5,81,4,44,0,37,37,0,1
-0,86,1,-2,6,4,88,84,5
--1,90,-1,56,6,34,33,0,1
-3,87,0,54,0,33,33,0,1
-1,93,0,44,4,50,50,0,1
-0,85,-2,-10,0,3,95,92,5
-4,96,0,54,1,40,42,2,1
-0,88,0,44,-14,42,44,2,1
-0,79,0,38,18,42,41,0,1
--4,86,0,46,-1,38,40,2,1
-4,83,0,-46,0,4,130,126,5
-0,97,0,54,2,40,42,2,1
--9,81,0,44,0,36,37,2,1
-2,86,0,46,8,41,40,0,1
-0,77,0,-2,-1,21,79,58,4
-0,84,-2,52,-3,32,32,0,1
-0,82,1,52,-21,29,30,2,1
-0,79,2,44,-11,34,35,2,1
--51,106,-1,34,-1,69,72,4,3
-0,78,0,52,12,27,26,0,1
-0,80,0,12,22,43,67,24,1
--4,88,0,52,0,37,37,0,1
-0,87,0,60,12,28,28,0,1
-0,107,0,38,23,69,68,0,1
--1,74,2,-4,-2,19,79,60,4
-0,86,-1,44,7,42,42,0,1
-0,77,0,34,4,40,43,4,1
-5,81,0,46,0,34,34,0,1
-1,78,0,52,10,27,26,0,1
-0,96,0,30,4,59,65,6,1
-0,106,0,28,17,68,77,8,1
-0,81,0,50,-28,30,32,2,1
-3,98,0,38,-11,42,59,18,4
-0,83,2,46,25,37,36,0,1
-0,93,0,46,9,48,47,0,1
-0,77,0,18,-1,22,59,38,4
-0,82,0,-24,-28,26,108,82,4
-0,83,-6,42,0,41,41,0,1
-0,78,0,16,-3,42,63,22,1
--4,86,0,42,0,43,44,2,1
-5,97,0,54,-8,40,42,2,1
-4,79,0,56,0,22,23,0,1
-5,78,0,50,0,27,29,2,1
--5,86,0,46,0,40,40,0,1
-0,77,0,26,22,40,51,12,1
-0,82,-2,36,-8,45,46,2,1
-0,87,0,42,28,46,46,0,1
--1,76,0,36,-16,38,39,2,1
-0,95,0,42,30,40,54,14,4
-5,77,0,46,11,32,31,0,1
-0,83,0,6,5,46,78,32,1
-0,86,0,52,-21,32,34,2,1
-0,79,-4,10,0,42,69,26,1
--5,80,0,50,0,30,31,2,1
-0,76,0,34,-4,38,42,4,1
-0,92,-3,18,9,55,74,20,1
-0,87,0,46,-26,38,41,2,1
-4,77,0,36,-24,39,41,2,1
-5,77,0,44,0,32,33,2,1
-2,84,0,46,0,37,38,0,1
-0,81,0,44,13,38,37,0,1
--4,83,-4,50,-15,32,34,2,1
-1,95,5,50,0,46,46,0,1
-0,107,2,56,0,51,50,0,1
-3,86,0,44,0,41,42,0,1
-1,95,0,54,10,39,41,2,1
-0,74,0,24,4,37,51,14,1
--4,95,0,52,0,40,44,4,4
-0,81,0,44,0,37,37,0,1
-0,76,-2,20,-4,40,55,16,1
-0,77,7,28,-4,41,49,8,1
-0,83,1,38,0,45,44,0,1
--1,76,0,38,0,38,37,0,1
--3,84,0,50,0,34,35,0,1
-0,78,-2,20,-6,42,57,16,1
-1,76,0,46,6,30,29,0,1
--1,84,3,46,0,36,37,2,1
--2,102,0,50,-15,51,53,2,1
-3,86,0,54,-11,31,32,2,1
-0,82,0,-2,25,45,85,40,1
-5,95,0,42,-17,39,54,14,4
-3,76,0,38,0,37,37,0,1
-4,77,0,36,0,41,41,0,1
--3,109,0,38,0,68,70,2,1
-0,81,0,46,-22,33,35,2,1
--5,86,-2,46,-4,39,40,0,1
-1,83,0,52,2,31,31,0,1
--3,86,0,50,0,38,37,0,1
-0,109,-1,46,0,61,63,2,1
-1,90,0,6,-26,52,84,32,1
--2,86,0,44,6,43,42,0,1
-3,84,0,56,0,28,28,0,1
--1,77,1,46,0,31,31,0,1
-0,77,2,46,2,32,31,0,1
--4,84,0,56,0,26,27,0,1
-2,87,0,46,-10,38,41,2,1
-0,77,0,46,-4,29,31,2,1
--1,83,0,50,-7,32,33,2,1
--3,79,-2,46,0,33,32,0,1
-0,86,0,42,-28,43,45,2,1
--3,100,0,38,18,63,62,0,1
-0,80,0,50,-4,29,31,2,1
-0,106,0,70,0,1,36,34,5
-0,84,2,46,0,38,38,0,1
-0,85,-2,46,0,39,39,0,1
-0,83,2,56,0,25,26,0,1
-5,88,3,46,0,40,41,0,1
-0,78,0,12,28,41,65,24,1
--2,88,0,44,23,43,44,2,1
-0,81,0,-10,-2,25,91,66,4
-0,84,0,-18,22,4,103,98,5
--2,77,0,46,-1,29,31,2,1
-0,89,2,42,23,48,48,0,1
-3,81,-2,38,0,41,42,0,1
-0,78,0,10,-3,41,68,26,1
-0,80,0,0,20,43,80,36,1
-1,86,0,52,13,35,34,0,1
-3,95,0,42,0,39,54,14,4
--5,87,0,46,0,41,41,0,1
-0,76,2,34,0,39,42,2,1
-0,88,-2,44,-4,44,44,0,1
-0,79,0,0,-3,42,79,36,1
-0,85,0,-40,4,4,126,122,5
-0,82,0,46,15,37,35,0,1
-0,81,-6,-42,-11,5,125,120,5
-1,90,0,44,0,45,46,2,1
-3,80,0,42,10,39,39,0,1
-0,82,0,16,-7,45,66,22,1
-2,79,0,42,7,38,37,0,1
-0,83,0,2,9,46,80,34,1
--5,77,0,54,0,25,23,0,1
-0,76,0,20,-30,39,55,16,1
-0,77,0,34,9,40,44,4,1
-0,86,0,-4,11,3,92,88,5
-3,81,0,50,0,30,32,2,1
-0,79,-1,26,0,42,54,12,1
-0,79,0,38,-19,38,41,2,1
--4,109,0,44,0,65,66,0,1
-5,77,0,38,0,36,38,2,1
-0,76,3,26,-1,39,50,10,1
-0,77,0,-2,15,21,79,58,4
-0,79,0,24,19,42,55,14,1
-1,88,0,0,2,3,88,84,5
--4,107,0,46,0,61,60,0,1
-3,79,0,42,11,38,37,0,1
-0,80,-7,38,18,43,41,0,1
-0,83,0,-24,8,27,108,82,4
-5,83,1,-42,0,4,126,122,5
-2,86,0,42,-23,42,44,2,1
-1,77,0,38,-6,36,38,2,1
-0,75,0,34,15,38,41,2,1
-0,81,0,12,11,45,68,24,1
-0,87,-4,38,0,46,48,2,1
-3,84,0,56,16,29,28,0,1
-0,88,-1,0,0,3,88,84,5
-1,88,0,46,4,42,41,0,1
-0,78,0,-4,-23,42,83,42,1
-0,80,0,36,-25,43,44,2,1
-0,79,0,10,-11,42,69,26,1
-0,76,-5,46,-5,27,30,2,1
--1,83,0,46,-4,35,37,2,1
-0,107,0,50,16,58,58,0,1
--1,81,0,44,-25,36,37,2,1
-0,105,0,24,12,68,82,14,1
-0,92,0,-4,20,36,97,60,4
-0,76,0,36,15,40,40,0,1
-2,76,-3,42,-5,33,35,2,1
-0,79,0,10,-5,43,69,26,1
-0,86,-1,46,17,40,39,0,1
-0,86,0,38,-24,46,48,2,1
-0,85,0,46,6,39,39,0,1
-0,96,0,54,14,41,42,0,1
-1,88,0,54,0,34,33,0,1
-0,85,0,46,9,39,39,0,1
-3,88,5,46,0,40,42,2,1
--4,98,0,52,7,42,46,4,4
-1,84,0,-32,0,4,117,114,5
-0,77,0,42,-18,34,36,2,1
-0,77,-2,54,4,25,23,0,1
-0,88,0,54,16,35,33,0,1
-0,76,-1,24,-11,39,52,14,1
-0,87,-6,52,0,36,35,0,1
-0,76,-2,24,9,39,52,14,1
-0,85,-1,-2,7,3,88,84,5
-1,76,0,42,0,33,34,2,1
-0,77,0,42,16,36,35,0,1
-1,85,3,42,8,44,44,0,1
-0,78,0,-4,0,42,83,42,1
-0,91,0,2,5,35,88,54,4
--4,85,0,50,6,36,36,0,1
-5,91,0,52,0,39,39,0,1
-5,75,2,-40,16,4,116,112,5
-0,75,0,36,-4,37,39,2,1
-0,83,-5,42,0,41,41,0,1
--13,106,-15,30,-10,69,75,6,1
-5,94,0,46,0,46,48,2,1
-1,110,0,38,0,71,71,0,1
-0,76,0,18,24,39,58,18,1
-0,88,-3,38,-15,48,50,2,1
-0,106,-7,72,16,1,34,34,5
--1,94,0,10,26,57,84,26,1
-0,77,6,-12,0,41,90,50,1
-0,86,0,36,0,49,50,0,1
-0,89,2,42,0,47,48,2,1
-0,87,2,42,-7,44,46,2,1
--1,111,0,60,-19,50,52,2,1
-2,85,4,46,10,39,39,0,1
-0,77,0,-24,-10,41,103,62,1
-0,75,0,28,54,38,46,8,1
--1,78,0,44,0,33,34,2,1
-0,81,6,50,0,30,32,2,1
-0,97,0,38,0,57,58,2,1
-1,84,0,46,-22,35,37,2,1
--38,107,0,64,-3,22,42,20,3
-1,75,0,36,-19,37,39,2,1
-0,89,6,2,-11,4,86,82,5
-0,81,3,20,0,44,60,16,1
--5,79,0,38,0,40,40,0,1
-0,79,0,54,6,25,24,0,1
--1,88,0,50,1,40,39,0,1
-0,92,0,-4,25,36,97,60,4
-0,108,0,60,0,49,49,0,1
-0,84,0,52,-23,31,32,2,1
-0,76,0,24,15,39,53,14,1
-0,76,1,36,-26,39,40,2,1
--2,87,4,46,0,40,41,0,1
-1,88,0,52,0,35,36,0,1
-2,84,0,56,0,26,27,2,1
-1,86,0,44,17,42,42,0,1
-0,84,-4,42,0,42,43,0,1
-0,79,0,6,-7,43,74,32,1
-0,77,0,52,3,26,26,0,1
-1,81,1,-40,9,5,122,118,5
-0,77,-2,-28,1,21,105,84,4
-0,81,2,20,0,44,60,16,1
-0,78,-2,38,-4,39,39,0,1
-0,78,0,38,3,40,39,0,1
-0,98,2,50,-1,42,49,8,4
-0,79,0,16,-4,23,63,40,4
--4,81,0,54,0,28,27,0,1
-0,76,0,20,21,39,55,16,1
-0,84,0,56,-9,25,27,2,1
-0,78,0,26,31,22,52,30,4
-0,102,0,52,-15,49,50,2,1
-2,76,0,38,-29,35,37,2,1
-0,80,0,50,23,32,31,0,1
-0,97,4,52,31,41,45,4,4
-1,85,0,54,-12,29,31,2,1
-0,76,0,44,-14,30,32,2,1
-1,85,0,42,0,43,44,2,1
-0,86,-2,54,4,33,32,0,1
-0,81,3,38,0,41,43,2,1
-0,93,0,52,-7,38,42,4,4
-0,86,0,52,-4,34,35,0,1
-0,81,-2,-4,0,25,86,62,4
-0,86,1,44,0,42,42,0,1
--3,78,1,44,0,23,34,12,4
-0,95,0,44,2,52,51,0,1
--1,88,-2,-2,-8,3,90,88,5
-0,77,0,26,-21,40,51,10,1
-0,107,-3,36,-4,69,71,2,1
-5,77,0,50,0,26,28,2,1
-0,77,0,8,13,40,69,30,1
-0,104,0,20,-9,67,84,16,1
-2,77,0,42,0,35,35,0,1
-1,78,-3,44,26,23,34,12,4
-0,77,-5,38,0,39,39,0,1
-2,88,0,52,17,37,37,0,1
-0,102,-2,34,0,65,69,4,1
-0,84,0,46,-26,36,38,2,1
-0,79,0,42,9,38,38,0,1
-0,78,0,16,0,42,63,22,1
-0,81,0,38,-30,40,43,2,1
-0,79,0,18,5,43,61,18,1
-0,80,-2,-4,0,24,85,62,4
-0,78,0,16,15,41,63,22,1
-0,77,1,42,0,35,36,0,1
-0,94,2,50,0,38,45,6,4
-0,95,0,50,-7,40,46,6,4
-0,83,0,54,-5,28,29,2,1
-0,88,0,44,25,45,44,0,1
-0,84,-3,44,0,39,40,0,1
-0,78,0,42,-28,22,37,14,4
-4,82,0,52,0,29,30,2,1
-0,83,0,42,-7,39,41,2,1
-0,102,6,28,0,65,73,8,1
-0,76,-2,36,-3,39,39,0,1
-4,79,1,50,1,30,30,0,1
--1,80,0,38,-14,39,41,2,1
-0,77,0,36,-21,40,41,2,1
-1,79,1,52,9,27,27,0,1
--4,98,0,44,-3,42,54,12,4
-3,93,0,46,27,48,47,0,1
-1,90,0,54,6,37,36,0,1
-0,93,0,10,-8,55,82,28,1
-0,78,0,-4,-2,42,83,42,1
-0,81,0,42,-9,38,40,2,1
-0,99,0,28,0,61,70,8,1
--4,79,3,36,0,42,43,0,1
-0,77,5,42,0,36,35,0,1
-3,79,0,56,26,24,23,0,1
-3,89,0,8,19,3,81,78,5
--6,78,-5,42,-7,37,37,0,1
--8,76,-1,-2,0,37,79,42,1
-0,81,-1,56,0,24,24,0,1
-0,88,4,38,-1,47,49,2,1
-0,83,0,52,25,32,31,0,1
--4,106,0,46,0,58,60,2,1
-0,90,6,56,0,33,33,0,1
-1,93,-1,46,0,47,47,0,1
-0,77,0,-2,-30,21,79,58,4
-0,88,-273,0,0,3,88,84,5
--3,77,0,38,0,39,39,0,1
-0,76,0,30,1,40,45,6,1
--4,86,0,44,-7,41,42,2,1
-0,106,0,24,-28,69,82,14,1
-0,95,0,50,25,47,46,0,1
-0,81,-1,44,-3,36,37,2,1
--5,91,0,6,0,53,86,32,1
-0,97,-1,46,-4,41,51,10,4
--4,77,0,38,0,38,38,0,1
-2,86,-4,46,0,40,40,0,1
-0,77,0,50,-10,26,28,2,1
--1,94,0,10,18,57,84,26,1
-0,79,-4,38,0,40,40,0,1
-0,94,0,46,-7,46,48,2,1
-0,76,0,34,-14,40,43,2,1
-0,83,0,6,-26,47,78,32,1
-0,76,0,38,9,38,37,0,1
--1,106,-5,34,-25,69,72,4,1
-5,79,0,46,-3,30,32,2,1
-0,88,0,44,7,44,44,0,1
-0,78,0,-2,0,40,81,40,1
-0,86,1,54,8,33,32,0,1
--64,106,-1,34,-2,69,72,4,3
-0,97,0,38,3,59,59,0,1
-0,82,0,-36,-24,26,118,92,4
-0,107,0,56,16,51,50,0,1
-1,85,0,46,-1,36,39,2,1
-0,86,0,46,31,41,39,0,1
-0,79,0,16,18,43,64,22,1
--4,88,0,46,14,42,41,0,1
-0,79,0,50,-3,28,30,2,1
--1,81,-3,38,0,41,42,0,1
-0,86,1,54,29,33,32,0,1
-0,92,6,-2,0,36,94,58,4
-0,84,0,-40,31,4,125,122,5
-0,78,-2,46,0,31,32,0,1
-1,80,-5,56,13,24,23,0,1
-0,88,8,38,0,48,50,2,1
-1,81,-6,52,9,30,30,0,1
-0,84,-7,42,0,42,43,0,1
-0,80,-2,12,-7,43,67,24,1
-0,96,0,50,-11,40,47,6,4
-0,92,0,18,8,54,74,20,1
-0,109,4,38,0,69,71,2,1
-0,86,-2,44,-8,40,42,2,1
-0,83,-1,44,-2,38,39,2,1
-5,97,0,52,17,40,45,4,4
--2,81,0,46,12,36,35,0,1
-0,81,-7,44,0,37,37,0,1
-0,93,0,50,2,37,44,6,4
-3,80,0,-4,0,24,85,62,4
-0,81,0,-40,6,4,123,118,5
-0,92,0,-4,21,36,97,60,4
-0,77,8,30,3,41,46,6,1
--1,81,1,44,9,37,37,0,1
-0,82,-2,-24,0,26,108,82,4
-0,76,0,44,19,32,32,0,1
-0,79,0,2,-15,42,76,34,1
-4,83,0,44,-6,38,39,2,1
-0,78,0,0,9,42,78,36,1
--2,109,-1,38,0,72,71,0,1
-0,95,-2,52,-22,40,44,4,4
--1,81,5,44,0,37,37,0,1
-1,83,0,52,4,31,31,0,1
-5,80,0,46,8,34,34,0,1
-0,83,4,38,-8,42,44,2,1
-0,85,-2,42,-13,42,44,2,1
-1,76,0,36,2,39,39,0,1
-0,81,6,42,-1,37,39,2,1
-0,77,0,30,-5,40,46,6,1
-0,86,8,46,0,38,39,0,1
-0,84,0,56,-1,25,27,2,1
-0,81,0,20,-11,44,60,16,1
-0,77,8,36,-26,39,41,2,1
-0,92,6,6,0,54,86,32,1
-0,80,1,36,0,43,44,0,1
-0,80,0,18,16,43,62,18,1
-3,93,0,54,0,38,39,2,1
-1,84,0,54,1,30,30,0,1
-2,80,0,46,-17,31,34,2,1
-4,84,0,52,12,33,32,0,1
-0,81,0,36,-4,44,45,2,1
--1,88,2,44,0,44,44,0,1
-1,93,0,42,26,53,52,0,1
-3,79,0,46,0,32,32,0,1
-0,82,2,24,0,45,59,14,1
-0,76,-5,46,-18,27,30,2,1
--2,86,0,44,3,42,42,0,1
-0,92,2,16,15,54,77,22,1
-0,79,8,2,-11,43,77,34,1
-1,79,0,44,16,35,35,0,1
-0,97,0,52,8,41,45,4,4
-0,77,0,50,10,28,28,0,1
-0,77,-2,54,3,25,23,0,1
--2,86,0,46,-1,37,39,2,1
--1,93,2,46,4,47,46,0,1
--3,79,2,56,0,23,22,0,1
-0,79,0,8,-15,43,72,28,1
--3,98,0,52,4,42,46,4,4
-0,83,0,2,18,46,80,34,1
-0,88,-1,46,0,40,42,2,1
--1,111,0,60,0,50,51,2,1
-4,76,0,42,0,34,35,0,1
-0,76,-4,44,8,32,32,0,1
-0,78,-2,42,-4,37,37,0,1
-0,76,-7,28,0,40,48,8,1
-0,87,0,46,9,42,41,0,1
-3,111,0,62,0,48,49,2,1
-0,97,0,36,0,60,61,0,1
--11,106,0,34,11,69,72,4,1
-0,84,0,56,-14,25,27,2,1
-0,97,0,38,0,57,59,2,1
-0,108,0,70,0,1,38,36,5
-1,107,6,70,0,1,37,36,5
--1,82,0,46,22,37,35,0,1
--5,86,1,46,0,39,40,0,1
-0,92,-3,12,0,55,79,24,1
-0,78,0,50,-4,27,29,2,1
-0,81,6,44,12,38,37,0,1
--4,108,0,52,-19,55,56,2,1
--4,86,0,44,18,43,42,0,1
-0,79,1,2,0,42,76,34,1
-0,85,-1,-6,6,3,93,90,5
-0,83,0,6,6,46,78,32,1
-0,78,-1,42,-1,36,37,2,1
--4,79,0,52,-1,26,27,0,1
-0,97,0,20,-13,60,77,16,1
-0,102,0,50,2,53,53,0,1
-0,106,0,38,12,68,67,0,1
-3,76,0,44,8,32,32,0,1
-0,76,-1,36,-25,38,40,2,1
-4,91,3,56,0,33,34,2,1
-4,77,0,46,0,31,31,0,1
-0,93,1,8,0,37,85,48,4
-0,83,0,52,11,31,31,0,1
-0,83,-5,42,-13,39,41,2,1
--1,77,0,42,-7,34,36,2,1
--1,82,0,52,0,29,30,0,1
--5,88,0,52,0,36,37,0,1
-0,76,2,30,27,39,45,6,1
-0,88,1,52,2,36,36,0,1
-0,83,0,46,-8,34,36,2,1
-0,93,0,42,-30,37,51,14,4
-0,85,0,46,-14,36,39,2,1
-0,84,0,54,16,31,30,0,1
--1,77,0,46,0,28,30,2,1
-0,108,0,30,-4,71,77,6,1
-0,80,-2,38,-33,39,41,2,1
--2,86,-1,50,0,36,37,0,1
-0,77,0,8,11,40,70,30,1
--5,93,0,46,0,37,46,8,4
-0,77,0,-22,-4,21,100,80,4
-3,83,0,54,0,28,28,0,1
-0,106,8,18,0,69,88,18,1
-0,77,0,6,13,40,72,32,1
-0,88,1,50,0,37,39,2,1
-0,96,0,46,-21,41,50,8,4
-0,84,1,44,-11,39,41,2,1
-0,108,-2,56,-17,49,51,2,1
-0,97,-1,46,-3,41,51,10,4
-0,97,0,24,-15,60,73,14,1
-0,75,0,24,21,38,52,14,1
-0,78,0,44,-2,33,34,2,1
-0,77,0,-18,-4,21,95,74,4
--1,80,0,56,3,24,23,0,1
-0,80,-6,16,0,43,65,22,1
-0,93,-2,12,0,56,81,24,1
-4,82,0,38,0,43,43,0,1
-0,88,0,6,16,3,83,80,5
-0,77,0,-10,-8,21,87,66,4
-5,91,0,50,0,40,42,2,1
-0,77,1,54,0,22,23,0,1
-0,106,7,50,14,58,57,0,1
-0,84,0,56,0,28,28,0,1
-0,77,0,8,-7,40,69,30,1
-0,76,0,28,-16,39,47,8,1
-0,81,-4,38,0,40,42,2,1
-0,82,0,46,-1,36,35,0,1
--3,86,0,46,-15,37,39,2,1
-0,86,1,52,-3,33,35,2,1
-1,85,0,46,-7,36,39,2,1
-1,86,0,46,29,41,40,0,1
-0,83,0,56,14,27,26,0,1
-1,81,1,-4,0,25,86,62,4
-0,81,0,24,26,44,57,14,1
--1,84,0,42,-29,41,43,2,1
-0,84,7,-14,0,4,100,96,5
-0,74,0,28,1,38,46,8,1
--1,106,-4,30,241,69,75,6,1
--2,88,0,56,0,31,31,0,1
--4,77,0,38,0,37,38,2,1
-0,78,0,6,7,23,73,50,4
-5,102,0,50,3,53,53,0,1
--2,97,-1,42,-14,41,55,14,4
-5,81,0,38,31,43,42,0,1
-0,86,0,38,-6,46,48,2,1
-0,78,0,16,8,23,63,40,4
--1,76,-4,36,-7,39,40,0,1
-0,76,6,-22,0,21,99,78,4
-1,85,2,42,5,44,44,0,1
-5,89,0,42,0,47,48,0,1
-0,77,0,38,-28,36,38,2,1
-0,102,0,52,0,50,51,0,1
--3,83,0,46,11,38,37,0,1
-0,77,0,38,31,40,39,0,1
--5,82,0,42,0,41,41,0,1
-0,106,0,28,-15,68,77,8,1
-3,80,0,42,4,39,39,0,1
-4,88,0,50,2,39,39,0,1
-0,107,0,54,-15,51,53,2,1
--3,86,0,46,0,39,40,2,1
--1,79,-7,46,0,33,32,0,1
-0,103,-7,28,0,66,75,8,1
--1,89,-6,54,0,34,35,0,1
--1,103,1,52,-4,51,51,0,1
-4,84,0,54,0,30,30,0,1
-0,96,0,50,-2,41,47,6,4
-0,96,0,44,8,40,52,12,4
--4,106,0,44,0,62,62,0,1
-2,95,0,56,12,39,39,0,1
--3,85,0,56,0,28,28,0,1
-0,82,0,36,0,45,46,2,1
--2,76,0,38,7,38,37,0,1
-0,87,3,56,0,31,30,0,1
-0,97,0,44,-13,41,53,12,4
-0,78,0,2,-17,23,75,52,4
-0,81,0,38,11,43,42,0,1
-0,81,0,-6,1,25,88,64,4
--2,77,0,50,-10,26,28,2,1
-0,76,0,20,-3,39,55,16,1
--1,79,0,42,0,38,38,0,1
--1,89,0,50,0,40,40,0,1
-0,80,0,46,-16,31,34,2,1
-0,95,0,46,-19,40,49,8,4
-0,83,0,42,0,40,41,2,1
--5,81,0,-4,11,26,86,60,4
-0,78,0,0,-7,41,78,36,1
-0,78,0,46,11,33,32,0,1
-0,86,8,38,-4,46,48,2,1
-0,88,-1,50,3,39,39,0,1
-0,77,0,28,-2,21,48,28,4
-1,77,0,38,0,39,39,0,1
-0,75,0,34,0,38,41,2,1
-0,96,-3,36,0,59,60,2,1
-0,85,2,-40,3,5,126,122,5
-0,83,0,50,2,33,33,0,1
--2,87,0,46,-15,38,41,2,1
-2,80,0,42,4,39,39,0,1
-0,76,0,26,3,39,50,12,1
-0,80,0,44,-6,35,36,2,1
-0,82,0,46,-2,33,35,2,1
-0,90,0,28,-13,53,62,8,1
--203,106,0,36,8,69,69,0,1
--4,109,0,42,0,66,67,2,1
-0,86,3,44,6,43,42,0,1
--1,76,-1,38,0,38,37,0,1
-0,93,0,12,6,56,81,24,1
--4,88,0,46,17,42,41,0,1
-5,86,0,54,11,33,32,0,1
-1,96,0,42,0,54,55,0,1
--2,81,0,54,-5,26,27,2,1
-0,104,3,26,24,67,78,12,1
-0,106,0,26,-7,69,80,12,1
-0,78,1,12,6,42,65,24,1
-0,87,-1,46,-1,41,41,0,1
-0,76,0,34,-26,40,43,2,1
-4,74,-12,-4,-27,19,79,60,4
-0,86,2,42,0,45,45,0,1
-2,81,2,54,0,28,27,0,1
-0,81,0,0,15,25,81,56,4
-0,83,0,2,11,46,80,34,1
-0,77,0,42,26,37,36,0,1
-1,88,1,-2,0,3,91,88,5
--1,83,0,50,7,34,34,0,1
-0,86,5,46,0,37,39,2,1
--2,81,0,46,8,36,35,0,1
-0,79,-3,36,-5,42,43,0,1
-0,78,0,20,-21,42,57,16,1
-0,82,-2,36,0,45,46,0,1
-0,75,0,28,6,38,46,8,1
-0,92,3,30,-2,37,61,24,4
-0,80,4,2,0,43,77,34,1
-0,97,6,52,-1,41,45,4,4
--3,101,6,46,-29,52,55,2,1
-0,84,0,44,0,39,40,2,1
--9,106,0,34,9,69,72,4,1
-0,106,1,28,-21,69,78,8,1
-1,82,0,38,0,42,43,0,1
-0,84,0,42,-19,40,43,2,1
--3,80,-1,52,2,29,28,0,1
-0,76,0,44,26,33,32,0,1
-0,76,0,36,-28,38,40,2,1
-0,78,0,42,-23,22,37,14,4
-0,78,0,-4,10,41,83,42,1
--2,82,0,44,-23,37,38,2,1
-4,79,0,44,23,35,35,0,1
-0,79,0,20,20,23,58,34,4
-5,81,0,50,-12,29,32,2,1
-0,76,1,44,14,32,32,0,1
-2,81,0,46,-1,33,35,2,1
-0,79,0,18,21,42,61,18,1
-0,81,6,42,-3,37,39,2,1
-0,77,0,26,2,40,51,12,1
-0,82,0,18,4,45,64,18,1
-2,87,0,-2,0,3,90,86,5
-0,89,0,42,-27,45,48,2,1
-0,87,8,56,0,31,30,0,1
-0,76,-1,26,-4,39,50,12,1
-4,83,0,38,0,44,44,0,1
-0,92,0,18,7,54,74,20,1
--1,98,3,46,0,42,51,8,4
--2,88,0,38,0,49,50,0,1
-0,96,2,38,-13,41,57,16,4
-0,77,0,26,-8,21,51,30,4
--1,82,0,36,-19,45,46,2,1
-0,79,0,42,22,39,38,0,1
-0,86,5,-2,0,4,89,86,5
-0,88,4,38,-8,47,49,2,1
-0,86,-4,46,14,41,40,0,1
-5,81,2,46,0,34,35,0,1
--1,84,0,46,0,37,38,2,1
-0,104,0,26,30,66,78,12,1
-0,86,0,44,12,43,42,0,1
--2,82,0,46,0,36,35,0,1
-2,83,0,54,-9,27,28,2,1
-0,81,0,-20,10,26,102,76,4
-1,81,0,54,14,28,26,0,1
--2,91,0,6,1,53,86,34,1
-0,87,0,50,-2,36,38,2,1
-0,87,0,42,21,46,46,0,1
-0,74,0,26,-11,38,48,10,1
--1,77,0,44,-15,32,34,2,1
-0,82,0,42,1,41,41,0,1
-0,78,0,30,3,41,47,6,1
-0,77,8,24,-14,40,54,14,1
--2,92,-2,6,-7,55,86,32,1
-0,81,0,50,2,32,32,0,1
-3,102,0,46,0,53,55,2,1
-0,79,0,42,-16,35,37,2,1
-0,86,2,56,2,31,30,0,1
-1,94,0,46,-7,45,48,2,1
-0,77,0,38,-30,22,39,16,4
-0,76,0,42,-27,32,34,2,1
--1,83,0,42,0,41,41,0,1
--2,83,-8,46,-12,35,37,2,1
-0,83,0,0,8,46,83,36,1
-0,81,1,54,-5,25,26,2,1
-0,104,0,26,0,67,78,12,1
-0,81,0,30,-9,45,50,6,1
-1,79,4,46,0,32,32,0,1
-0,81,-2,-2,0,25,83,58,4
-0,83,0,30,-15,46,52,6,1
-1,83,0,56,8,27,26,0,1
-0,79,0,44,12,36,35,0,1
-0,109,0,64,-23,43,45,2,1
-0,98,7,46,-3,42,51,10,4
-0,86,0,52,-2,33,34,0,1
--5,108,2,72,0,2,35,34,5
-0,77,-3,42,-12,34,35,2,1
--5,81,0,56,2,25,24,0,1
-0,75,-2,42,-22,32,34,2,1
-0,81,-1,46,-4,35,34,0,1
--1,98,0,44,-9,42,54,12,4
-0,82,1,54,86,26,28,2,1
-0,79,0,46,7,34,33,0,1
--4,81,0,36,-1,44,44,0,1
-0,78,5,8,-30,22,70,48,4
-1,86,0,-40,9,4,128,124,5
-2,83,0,-30,0,4,114,110,5
-4,85,0,44,2,41,41,0,1
-0,87,0,44,-5,42,43,2,1
--5,101,2,50,11,52,52,0,1
-0,77,0,-24,1,21,103,82,4
--3,91,0,56,0,33,34,0,1
-0,95,-2,44,-3,40,51,12,4
--2,82,0,38,0,44,43,0,1
--5,77,0,42,0,35,36,2,1
-0,80,0,20,-10,43,59,16,1
-0,81,-1,44,-2,36,37,2,1
-0,75,0,44,1,31,31,0,1
-0,79,-2,42,3,38,37,0,1
-0,77,0,-22,1,41,101,60,1
-0,79,0,50,31,31,30,0,1
--4,80,0,42,20,39,39,0,1
-0,97,0,52,29,41,45,4,4
-1,81,-4,34,0,44,48,4,1
-0,81,0,36,-18,43,44,2,1
-0,90,0,44,-8,45,46,2,1
-0,77,0,44,18,34,34,0,1
--5,76,-3,38,0,38,37,0,1
-0,106,0,28,-4,69,78,8,1
-3,86,0,52,16,35,35,0,1
-0,93,0,50,-11,38,44,6,4
-0,95,-2,36,-5,39,59,20,4
-0,74,1,44,0,29,30,2,1
--3,80,0,42,8,39,39,0,1
-0,102,0,52,-19,49,50,2,1
--3,76,1,38,0,36,37,0,1
-0,78,1,52,0,26,26,0,1
-0,81,0,24,-6,44,57,14,1
-2,86,0,44,-2,41,42,2,1
--3,77,0,28,0,22,48,26,4
-5,88,0,44,15,44,44,0,1
-0,88,0,46,-2,40,42,2,1
-0,83,0,-4,-3,46,88,42,1
-5,95,0,46,0,40,49,10,4
-0,88,0,0,14,3,88,84,5
--4,99,2,46,0,43,52,10,4
-0,81,0,42,6,40,40,0,1
--1,79,0,42,-7,35,37,2,1
-0,79,0,12,39,42,66,24,1
-0,95,-5,12,-14,58,82,24,1
-0,96,0,42,1,40,55,14,4
-0,83,-3,18,0,47,65,18,1
-0,87,6,44,-19,42,43,2,1
-0,98,0,54,22,42,44,2,1
--3,78,0,42,0,37,37,0,1
-0,77,0,-20,-4,21,97,76,4
-0,98,0,46,5,42,51,10,4
-0,78,0,-6,-16,42,86,44,1
-2,79,0,52,0,26,27,0,1
-0,77,-2,-28,5,21,105,84,4
-0,75,0,26,11,38,49,12,1
-2,84,0,46,0,38,37,0,1
--5,85,0,46,0,38,39,0,1
-0,86,5,50,19,38,37,0,1
-3,98,0,46,28,42,51,10,4
-0,106,0,24,21,69,82,14,1
-0,106,0,30,-12,69,75,6,1
-0,95,0,44,24,40,51,12,4
--5,76,0,46,7,31,30,0,1
-0,77,-1,12,0,22,65,42,4
-0,78,-1,44,8,22,34,12,4
-0,102,-6,72,25,1,30,30,5
-2,79,0,44,6,36,35,0,1
-0,76,4,46,0,30,30,0,1
-0,86,0,38,0,48,48,0,1
-5,79,0,42,-11,35,37,2,1
-0,83,0,16,6,46,67,22,1
-0,77,0,24,-7,40,54,14,1
-0,77,0,30,-27,40,46,6,1
-3,88,0,52,0,36,37,0,1
-0,106,0,36,1,68,69,2,1
-0,87,7,54,-1,33,33,0,1
--1,76,-3,38,0,36,37,2,1
-1,83,0,42,4,42,42,0,1
-0,79,0,8,9,42,71,28,1
-0,85,0,46,12,39,39,0,1
-0,83,2,38,-6,42,44,2,1
-0,77,0,-10,-21,41,88,46,1
-0,79,0,12,6,43,66,24,1
-0,76,-3,28,-36,40,48,8,1
-0,79,0,16,7,23,63,40,4
-0,79,5,42,1,38,38,0,1
-3,77,0,28,0,21,48,28,4
--2,76,-1,42,-8,32,34,2,1
-0,93,0,30,16,56,62,6,1
-0,75,0,44,25,32,31,0,1
-0,106,0,50,31,58,57,0,1
-0,83,-1,42,-12,40,42,2,1
-0,79,0,6,-10,42,74,32,1
-0,98,0,44,24,42,54,12,4
-4,77,0,16,-3,22,62,40,4
--3,79,7,36,-28,42,43,2,1
-0,84,0,-22,-28,4,108,104,5
-1,82,0,52,4,31,30,0,1
--2,88,0,46,7,43,42,0,1
--3,98,0,44,-4,42,54,12,4
-0,79,-3,42,0,37,38,2,1
-0,108,1,72,2,1,35,34,5
-0,108,5,46,0,59,61,2,1
-0,104,0,18,27,67,86,18,1
-1,76,0,38,19,38,37,0,1
-1,95,0,46,-11,47,49,2,1
-0,81,-1,50,-7,32,32,0,1
-0,86,5,42,-28,43,45,2,1
-5,90,-6,56,0,32,33,2,1
-0,82,-1,42,2,41,41,0,1
-3,78,-6,46,0,31,32,0,1
-0,96,3,44,0,41,52,12,4
-0,79,2,16,-4,42,63,22,1
-0,77,6,-18,-1,41,96,54,1
-0,87,4,46,18,42,41,0,1
-0,81,0,38,-26,39,42,2,1
-0,88,0,50,7,39,39,0,1
--3,78,0,44,0,34,34,0,1
-2,87,0,52,0,34,35,2,1
-5,86,1,-2,4,3,88,84,5
-0,78,0,16,-1,23,63,40,4
-0,78,0,46,15,33,32,0,1
-0,77,0,38,6,40,39,0,1
-0,77,0,10,15,40,66,26,1
-3,88,-4,46,0,40,41,2,1
--3,83,0,42,-11,39,41,2,1
-0,79,-7,8,0,42,72,30,1
-0,82,-7,38,0,41,43,2,1
-0,77,0,34,14,40,44,4,1
-0,75,0,28,-12,38,46,8,1
-3,102,0,46,0,54,55,2,1
--1,76,0,46,9,31,30,0,1
-0,77,0,42,12,36,36,0,1
-0,91,0,56,28,35,34,0,1
-0,76,-5,-12,-27,21,89,68,4
-0,84,0,52,-6,31,32,0,1
-0,108,5,36,0,71,71,0,1
-0,95,7,36,-3,40,59,20,4
-0,88,-5,46,-4,41,41,0,1
-0,88,2,52,-5,35,36,2,1
--1,83,8,38,0,43,44,2,1
-0,74,0,30,-10,37,43,6,1
--1,88,-3,52,13,37,37,0,1
-0,82,6,38,0,42,43,2,1
-1,79,0,38,-16,38,40,2,1
--5,87,-2,44,0,43,43,0,1
-0,83,0,54,29,30,28,0,1
-4,88,0,42,0,46,46,0,1
-4,100,0,34,0,64,67,4,1
-0,81,0,50,-24,30,32,2,1
-0,86,-1,-40,8,4,128,124,5
-0,95,-7,54,7,40,41,2,1
-0,83,2,38,-9,42,44,2,1
-0,106,-7,30,0,69,75,6,1
-0,77,0,-14,23,40,92,52,1
--5,81,6,42,0,38,40,2,1
-0,87,-1,56,1,31,30,0,1
-0,86,0,52,-1,34,35,0,1
-0,84,7,-38,-2,5,123,118,5
-0,76,0,26,-9,39,50,12,1
--1,76,-1,46,0,28,30,2,1
-0,88,0,50,-13,37,39,2,1
--4,88,0,44,56,43,44,2,1
-0,77,0,36,-1,39,41,2,1
-3,76,0,38,9,38,37,0,1
-4,83,0,50,0,34,34,0,1
-0,103,0,24,-17,66,80,14,1
-0,77,-4,12,-2,22,65,42,4
-0,74,-3,28,0,37,46,8,1
-0,79,0,20,-12,23,58,34,4
-0,87,0,46,-3,38,41,2,1
-0,77,0,36,-18,39,41,2,1
-0,92,0,36,-5,37,56,20,4
--1,89,0,46,0,42,42,0,1
-0,86,0,54,-10,31,32,2,1
--3,107,0,56,4,51,50,0,1
-0,98,0,52,-9,42,46,4,4
-0,88,0,44,-20,42,44,2,1
--2,82,0,36,0,45,46,0,1
-0,83,-3,42,19,42,41,0,1
-5,88,0,44,6,45,44,0,1
--2,81,0,54,0,26,26,0,1
-0,75,0,18,-10,38,57,18,1
-3,109,21,28,0,72,81,8,1
-0,88,2,46,0,41,41,0,1
-0,83,0,54,-9,27,28,2,1
-0,107,3,50,20,58,58,0,1
-0,78,-3,16,0,23,63,40,4
-0,92,-1,26,13,55,66,12,1
-0,106,0,24,-16,69,83,14,1
-0,86,0,-42,-29,5,130,126,5
-0,82,0,-40,-16,26,123,96,4
--4,82,0,38,0,43,43,0,1
-5,86,0,52,0,34,34,0,1
-2,105,2,70,0,1,35,34,5
-0,81,0,50,-1,30,32,2,1
-0,77,0,0,16,41,77,36,1
-0,105,3,34,15,68,71,4,1
-0,81,0,52,1,29,29,0,1
--4,81,6,42,-11,38,40,2,1
-4,77,0,46,3,31,31,0,1
-0,76,0,24,2,39,53,14,1
-0,76,0,-4,10,20,81,62,4
-0,78,0,10,-5,42,68,26,1
-0,97,-1,46,0,41,50,10,4
-0,79,0,42,4,38,37,0,1
-0,108,-2,34,0,71,75,4,1
-0,76,6,30,-22,40,45,6,1
-5,84,0,52,16,33,32,0,1
-3,77,0,46,17,32,31,0,1
-2,83,0,46,0,36,36,0,1
-2,77,0,54,0,23,23,0,1
-0,78,0,46,-24,29,32,2,1
-0,80,-7,44,17,36,36,0,1
-3,76,0,42,0,35,35,0,1
-0,83,0,44,18,39,39,0,1
--4,89,0,2,0,4,86,82,5
-0,84,-3,52,-4,32,32,0,1
-0,77,0,-14,5,21,92,72,4
-0,76,2,44,0,32,32,0,1
-4,85,0,52,0,33,33,0,1
-1,86,0,50,19,37,37,0,1
--5,76,1,38,0,36,37,2,1
-1,76,0,38,4,38,37,0,1
-0,81,0,36,-1,44,45,2,1
-4,84,0,50,20,35,35,0,1
-4,77,0,50,0,26,28,2,1
-0,84,-2,-18,17,4,103,98,5
-0,84,4,-36,25,5,121,116,5
-4,83,2,54,1,30,29,0,1
-0,75,0,20,31,38,54,16,1
-0,82,0,44,-15,36,38,2,1
-0,79,0,42,-30,35,37,2,1
-0,76,3,26,16,39,50,12,1
-0,100,0,46,-14,52,54,2,1
-0,83,0,44,9,40,39,0,1
-0,80,0,28,12,43,52,8,1
--4,83,0,54,0,28,28,0,1
-3,86,0,42,0,43,44,2,1
-0,77,0,38,2,40,39,0,1
-0,81,0,42,17,41,40,0,1
--2,86,0,52,-5,33,34,0,1
-4,98,0,38,-1,42,59,18,4
-0,79,-2,10,-5,42,68,26,1
-0,76,0,46,21,30,29,0,1
-0,80,0,24,-16,43,57,14,1
-0,84,0,54,23,32,30,0,1
-4,88,0,44,12,44,44,0,1
-0,95,0,46,-7,40,49,10,4
-0,77,0,-20,3,21,97,76,4
-0,78,0,20,12,42,57,16,1
-0,84,3,-20,0,4,105,100,5
-0,86,0,52,-12,33,34,2,1
-0,77,0,0,13,21,77,56,4
--3,87,0,52,0,36,35,0,1
--2,79,0,46,17,33,32,0,1
-0,77,0,44,4,33,33,0,1
--2,106,4,44,7,63,62,0,1
-0,76,0,26,29,39,50,12,1
-0,80,0,42,4,39,39,0,1
--2,82,0,56,28,26,25,0,1
-1,90,0,28,1,53,62,8,1
-0,80,-3,38,0,41,41,0,1
-0,79,0,20,0,23,58,34,4
-0,76,0,34,24,40,43,2,1
-5,83,0,36,0,46,46,0,1
--3,79,8,54,0,26,25,0,1
--2,98,0,38,-1,42,59,16,4
--5,81,0,-40,0,4,122,118,5
-0,81,0,50,22,32,32,0,1
-0,98,0,54,26,42,44,2,1
-0,88,2,44,2,43,44,2,1
--3,77,0,42,0,36,36,0,1
-2,87,0,42,0,44,46,2,1
-3,81,8,46,0,34,35,0,1
-0,76,0,28,2,39,47,8,1
-4,82,0,42,0,40,41,0,1
--1,76,13,0,0,20,76,56,4
-0,86,0,56,20,30,29,0,1
-0,80,-2,12,-5,43,67,24,1
--2,97,0,36,0,60,61,0,1
-0,85,-2,44,-3,40,41,2,1
-0,78,0,20,30,41,57,16,1
-1,91,0,54,0,35,37,2,1
-0,79,6,44,-2,33,35,2,1
-3,75,17,0,1,18,75,56,4
-0,78,0,46,-4,30,32,2,1
-0,97,-5,50,-15,41,48,6,4
-0,83,0,52,29,32,31,0,1
-0,95,0,46,-21,47,49,2,1
--10,88,0,44,0,44,44,0,1
--1,79,0,44,-26,33,35,2,1
-4,113,0,62,-11,48,51,2,1
--1,77,2,42,0,35,35,0,1
-0,84,2,46,0,36,37,0,1
-1,85,0,50,0,35,36,2,1
-5,79,0,46,0,33,32,0,1
--1,96,0,52,7,40,44,4,4
--1,76,0,42,0,34,35,2,1
-0,79,2,12,0,43,66,24,1
--3,97,0,52,0,41,45,4,4
-0,77,0,0,20,21,77,56,4
-0,82,0,42,-8,38,41,2,1
-0,76,-1,28,20,39,47,8,1
-0,86,1,52,-1,33,35,2,1
-0,81,4,46,0,33,34,2,1
--1,81,-4,46,-5,34,34,0,1
--1,83,0,-40,1,4,124,120,5
-0,82,0,18,13,45,64,18,1
-3,102,0,46,-16,53,55,2,1
--1,90,0,54,-3,34,35,2,1
-0,81,-4,-4,0,44,86,42,1
-0,78,-1,0,0,22,78,56,4
--1,78,0,50,-9,27,29,2,1
--40,107,0,62,-6,28,45,16,3
-0,80,0,46,-4,31,34,2,1
-0,93,0,30,2,55,62,8,1
-0,105,-4,20,-6,68,84,16,1
-0,76,0,36,-6,39,40,2,1
-0,80,0,34,-6,43,46,4,1
-0,79,0,50,-5,28,30,2,1
-0,88,-1,6,19,3,83,80,5
-0,92,0,18,4,54,74,20,1
-4,106,2,72,6,1,33,32,5
-0,104,0,28,21,67,75,8,1
-2,106,-6,46,0,58,60,2,1
-0,95,0,28,2,58,67,8,1
--1,83,0,44,-5,37,39,2,1
-0,95,0,54,-12,40,41,2,1
-0,82,5,46,17,37,35,0,1
-0,78,0,-6,-12,41,86,44,1
-0,93,0,30,8,56,62,6,1
--1,109,1,46,0,62,62,0,1
-4,81,4,46,0,32,34,2,1
-0,95,0,50,21,40,46,6,4
-0,108,-2,44,-13,62,64,2,1
-5,88,0,46,0,41,42,0,1
-4,88,0,46,0,40,41,2,1
-2,81,0,-4,0,25,86,62,4
-0,96,-5,50,0,40,47,6,4
-0,83,0,0,-27,46,83,36,1
-0,76,0,-14,-2,21,92,70,4
-1,84,0,52,14,33,32,0,1
-0,86,0,-4,-7,4,92,88,5
--3,100,7,38,-1,60,62,2,1
-0,87,0,44,-24,42,43,2,1
--5,106,0,34,6,69,72,4,1
-0,108,0,70,-1,1,38,36,5
-0,78,0,42,-1,36,37,2,1
-0,79,3,12,4,42,66,24,1
-0,81,-4,-12,0,26,94,68,4
-0,107,0,28,26,69,78,8,1
-0,77,-4,44,0,32,33,2,1
-0,90,-2,56,0,33,33,0,1
-0,77,0,46,-9,28,30,2,1
-0,76,0,-4,8,20,81,62,4
-0,97,-1,46,0,41,51,10,4
-0,84,-2,-22,0,3,108,104,5
-0,100,-2,46,0,54,53,0,1
--3,82,-7,46,5,37,35,0,1
--3,104,0,54,0,50,49,0,1
-0,81,0,-2,3,44,84,40,1
-0,78,-4,16,0,22,63,40,4
-0,83,0,-42,-81,4,127,124,5
-0,84,-4,44,1,41,41,0,1
-0,103,-2,28,0,66,75,8,1
-3,81,0,44,18,37,37,0,1
-0,96,2,42,0,40,55,14,4
-0,75,0,44,9,32,31,0,1
-1,81,0,38,3,43,43,0,1
--3,81,0,44,6,38,37,0,1
-5,83,0,42,0,41,41,0,1
-0,76,0,38,15,38,37,0,1
-4,85,1,44,0,41,41,0,1
-0,84,0,52,14,33,32,0,1
-5,89,0,6,-5,4,84,80,5
-0,91,0,-2,19,35,93,58,4
-0,97,0,50,8,40,48,8,4
-0,97,5,42,0,41,55,14,4
-0,97,0,52,1,41,45,4,4
-0,77,-2,28,-3,40,48,8,1
--5,88,-6,42,0,46,46,0,1
-0,80,0,16,-18,43,65,22,1
-0,100,0,44,0,55,56,2,1
--3,79,0,42,0,36,37,2,1
--4,81,-3,38,-25,43,42,0,1
--1,81,0,46,17,36,35,0,1
-1,88,4,46,0,40,42,2,1
-0,109,-1,60,0,47,49,2,1
-9,78,0,42,-19,37,37,0,1
-3,81,0,36,-4,43,44,2,1
-0,80,0,52,24,29,28,0,1
-1,76,-1,46,0,29,29,0,1
-0,80,0,24,-7,43,57,14,1
-0,74,-3,20,-6,37,54,16,1
-1,90,0,46,0,42,43,0,1
-0,77,3,36,4,40,41,0,1
-0,97,-6,18,-9,60,79,18,1
-0,76,4,26,0,39,50,12,1
--1,97,0,42,0,54,55,2,1
--3,80,-6,20,-13,25,59,34,4
-0,78,0,24,-4,22,55,32,4
-1,84,6,-40,9,5,126,122,5
-0,82,2,46,11,36,35,0,1
-5,81,-1,54,0,26,26,0,1
--2,83,0,50,-7,32,34,2,1
-0,99,-1,28,-3,61,70,8,1
-1,83,0,42,25,42,42,0,1
-0,82,8,52,0,30,30,0,1
-0,79,0,8,-9,23,71,48,4
-0,84,-3,-42,0,4,128,124,5
--3,98,0,44,-18,42,54,12,4
-0,78,0,8,0,23,70,48,4
-0,95,0,46,12,40,49,10,4
-0,77,0,-22,19,41,101,60,1
-0,80,0,52,20,29,28,0,1
-0,78,0,26,6,41,52,12,1
-0,83,0,16,-22,47,68,22,1
--5,86,0,-4,-15,4,92,88,5
-0,81,-4,44,6,38,37,0,1
-0,77,0,18,26,22,59,38,4
-0,103,0,18,-12,66,85,18,1
--1,87,5,56,0,31,30,0,1
-0,81,0,54,-5,26,27,2,1
-0,88,-3,46,0,43,42,0,1
-1,83,0,50,15,34,33,0,1
-0,86,5,42,0,45,45,0,1
-0,78,0,18,14,42,60,18,1
-0,78,0,10,-3,42,68,26,1
-0,85,0,42,32,44,44,0,1
--1,77,0,38,14,39,38,0,1
--1,83,0,46,0,36,36,0,1
-4,77,0,-24,0,21,103,82,4
-0,79,0,10,5,43,69,26,1
-0,79,0,26,3,43,54,10,1
-0,77,6,28,-19,41,49,8,1
-0,81,0,-22,-8,26,105,78,4
-0,76,0,36,31,39,40,2,1
-0,79,0,2,-23,23,76,52,4
--32,88,-6,8,0,9,81,72,3
-0,88,-4,50,29,40,39,0,1
-0,79,6,38,0,41,41,0,1
--4,87,0,42,0,44,46,2,1
--1,106,-3,70,-4,1,36,34,5
--1,81,3,54,0,28,27,0,1
--5,81,0,54,0,27,26,0,1
-0,92,0,18,1,54,74,20,1
-1,86,-1,54,1,32,32,0,1
-2,81,0,42,-1,40,40,0,1
-0,76,0,44,13,32,32,0,1
-0,92,0,54,11,36,38,2,1
-0,79,0,28,13,42,50,8,1
-0,96,0,34,12,59,62,4,1
--5,86,0,52,-24,33,35,2,1
--2,106,-4,44,0,61,62,2,1
-2,77,0,44,0,32,33,2,1
-0,83,0,52,-26,30,32,2,1
-0,78,0,54,-1,23,24,2,1
-0,97,0,42,3,41,55,14,4
-0,77,-2,10,7,22,67,46,4
-0,77,0,34,-3,40,43,2,1
-3,88,-4,44,-24,42,44,2,1
-0,103,-1,24,-2,66,80,14,1
--3,84,0,44,14,41,40,0,1
-0,86,0,56,16,30,29,0,1
-0,100,0,34,16,64,67,4,1
-1,88,-1,42,0,45,47,2,1
-0,83,2,38,-3,42,44,2,1
--3,77,0,46,8,32,31,0,1
-0,76,0,-2,10,20,79,58,4
-0,77,0,34,15,40,43,4,1
-0,77,0,30,-3,22,46,24,4
-0,102,5,28,0,65,73,8,1
-0,88,0,2,-13,3,86,82,5
-3,77,0,34,0,39,43,4,1
-0,88,0,38,-23,48,50,2,1
-3,78,0,42,6,37,37,0,1
-4,80,0,34,5,43,46,4,1
--1,77,-3,24,-8,22,54,32,4
--4,102,0,70,-6,1,33,32,5
--2,77,0,38,-24,37,39,2,1
-0,77,0,38,22,40,39,0,1
-1,82,0,56,17,26,25,0,1
-11,77,9,-42,-5,4,121,118,5
-1,86,0,52,3,35,34,0,1
-0,95,0,52,31,40,44,4,4
-3,75,1,-40,16,4,116,112,5
-0,84,0,38,-19,43,45,2,1
-0,96,0,42,3,41,55,14,4
-0,95,0,46,0,47,49,2,1
-1,96,0,38,10,58,57,0,1
--4,81,0,54,0,26,26,0,1
-1,87,0,50,1,38,38,0,1
-0,75,0,36,-2,37,39,2,1
-0,80,-1,-2,8,25,83,58,4
-0,82,-2,-2,15,45,85,40,1
-0,105,-6,34,0,68,71,4,1
--2,80,0,54,0,26,26,0,1
--2,100,0,38,0,61,62,2,1
-0,79,0,10,0,42,69,26,1
-5,83,0,-42,0,4,127,122,5
-0,78,-2,12,18,42,65,24,1
-1,98,0,42,-10,42,57,14,4
-0,79,1,38,0,39,41,2,1
-0,91,-1,56,23,35,34,0,1
--3,83,0,54,-4,28,29,2,1
-0,77,0,18,26,22,59,38,4
-0,79,0,54,-22,23,24,2,1
-1,82,1,-40,12,4,123,120,5
-0,81,0,54,-20,25,27,2,1
-0,103,0,70,-3,1,33,32,5
-0,95,0,12,-16,58,82,24,1
-0,82,1,44,7,38,38,0,1
-0,76,0,-14,10,20,92,72,4
-0,83,5,54,3,30,29,0,1
-0,96,0,54,-28,40,42,2,1
-0,95,-5,18,0,58,77,18,1
--2,100,0,38,0,62,62,0,1
-1,79,0,42,-6,35,37,2,1
-0,92,6,46,0,46,46,0,1
--1,76,-1,42,0,35,35,0,1
--1,77,0,34,-3,41,44,2,1
-1,81,0,42,6,39,39,0,1
-0,81,0,54,13,28,27,0,1
-0,83,0,44,27,40,39,0,1
-0,79,0,16,4,43,64,22,1
-2,81,0,44,6,37,37,0,1
--2,83,0,38,-9,42,44,2,1
-0,91,0,50,-18,40,42,2,1
--4,80,0,54,0,25,26,0,1
-0,79,0,8,3,43,72,28,1
-0,96,0,36,5,40,60,20,4
--2,84,0,46,-1,36,38,2,1
-0,87,0,46,0,41,41,0,1
--4,83,0,36,-11,46,47,2,1
-0,77,0,28,28,40,48,8,1
-0,96,0,50,-21,41,47,6,4
--2,83,0,44,-27,37,39,2,1
-0,83,7,-4,0,46,88,42,1
-0,78,-4,18,0,23,60,38,4
-7,89,0,8,22,4,81,78,5
-4,84,1,42,0,42,43,0,1
-0,76,0,20,14,40,55,16,1
-4,75,0,26,-1,38,49,12,1
--5,76,0,-2,0,38,79,40,1
-0,77,5,-22,1,21,100,78,4
-0,95,0,34,-26,40,62,22,4
-0,77,7,42,0,35,36,2,1
-0,80,-1,36,-4,43,44,2,1
-0,106,2,38,18,69,67,0,1
-0,79,0,34,-1,43,46,2,1
--3,97,0,38,0,57,59,2,1
-0,84,0,46,-3,36,38,2,1
--5,100,0,46,0,53,54,0,1
--2,81,0,42,-11,38,40,2,1
-0,95,0,54,28,40,41,2,1
-0,106,-2,70,-1,1,36,36,5
--4,81,0,42,0,40,40,0,1
-3,83,0,38,-26,41,44,2,1
-3,97,0,44,0,41,53,12,4
-0,97,0,38,-4,56,58,2,1
-0,76,0,24,-3,40,53,14,1
-0,76,0,34,-11,39,42,2,1
-1,86,0,52,0,35,35,0,1
--1,86,0,38,-29,46,48,2,1
-4,86,3,46,0,40,40,0,1
-0,82,-6,34,0,45,48,2,1
-0,80,0,42,-4,37,39,2,1
-0,96,0,54,-4,40,42,2,1
-0,81,0,-18,5,25,99,74,4
-0,96,3,42,-1,53,55,2,1
-0,77,7,38,0,38,39,0,1
--3,98,0,46,24,42,51,8,4
--5,107,-1,50,0,58,58,0,1
-0,104,0,24,27,67,81,14,1
-0,77,0,46,8,31,30,0,1
-0,91,-7,-4,7,35,96,60,4
-0,86,0,38,-11,46,48,2,1
-0,77,0,46,0,29,31,2,1
-1,107,0,44,0,62,63,0,1
--3,81,3,46,7,36,35,0,1
-1,84,0,52,-7,32,33,2,1
-1,87,8,44,0,43,43,0,1
-5,86,0,46,2,40,39,0,1
-4,78,0,50,0,29,29,0,1
-0,86,-2,50,-2,37,37,0,1
-0,105,-2,18,11,68,87,18,1
--5,81,0,50,-1,32,32,0,1
-0,81,4,36,-2,43,44,2,1
-0,81,0,44,-5,35,37,2,1
-0,106,0,26,-23,68,80,12,1
-0,78,0,20,-8,41,57,16,1
-0,77,-1,44,-2,31,33,2,1
-0,79,2,42,5,38,38,0,1
-1,83,4,34,0,45,49,4,1
-0,80,0,18,4,43,62,18,1
--1,87,4,52,0,35,35,0,1
-3,78,0,38,-27,37,39,2,1
-0,81,0,-14,12,25,97,72,4
--1,108,0,42,0,65,66,2,1
-0,97,0,50,13,42,48,6,4
-0,106,-2,44,9,62,62,0,1
-3,83,-1,34,0,45,49,4,1
-0,82,0,52,0,29,30,0,1
-0,97,0,56,7,40,40,0,1
-0,95,4,42,0,40,54,14,4
-0,88,0,42,21,48,47,0,1
--3,82,0,46,0,36,35,0,1
-0,84,0,30,3,47,53,6,1
--1,86,-7,44,10,40,42,2,1
-0,90,2,42,0,47,48,2,1
-0,92,3,-2,0,36,94,58,4
-0,96,0,42,14,41,55,14,4
-0,100,0,46,0,54,53,0,1
-0,79,0,26,-8,43,54,10,1
-0,79,0,6,28,42,74,32,1
--1,83,2,38,0,44,44,0,1
-5,76,-1,20,0,39,55,16,1
-0,82,0,-36,1,26,118,92,4
--1,86,0,54,-4,31,32,2,1
--5,77,0,44,0,33,34,0,1
-4,83,0,46,0,34,36,2,1
-0,89,0,44,1,45,45,0,1
-0,86,8,44,0,42,42,0,1
-0,81,0,52,2,30,30,0,1
-0,79,0,18,24,43,61,18,1
-0,100,0,50,10,52,51,0,1
-0,80,-4,42,0,38,39,2,1
-0,86,-1,50,0,35,37,2,1
-0,81,0,52,29,30,29,0,1
-0,79,0,24,3,23,55,32,4
-3,85,0,-12,0,4,98,94,5
-2,109,0,72,4,1,36,36,5
-0,97,0,42,-14,41,55,14,4
-0,79,4,50,0,29,30,0,1
-3,81,0,42,0,37,39,2,1
-0,100,0,46,-8,52,54,2,1
-0,90,0,34,31,53,57,4,1
-0,97,0,44,-13,41,53,12,4
-0,76,2,44,0,31,32,2,1
-0,77,0,-20,14,21,97,76,4
-0,77,0,10,7,21,66,46,4
-1,79,0,42,7,38,38,0,1
-0,77,0,36,-10,22,41,20,4
-0,103,0,70,-2,1,33,32,5
-0,78,0,18,-17,42,60,18,1
-0,82,8,50,0,32,33,2,1
-0,82,-6,46,0,34,35,0,1
-0,77,-2,34,0,40,43,4,1
-1,79,0,38,7,41,40,0,1
-0,95,0,46,-2,47,49,2,1
-0,76,0,28,23,39,47,8,1
-0,82,4,52,2,31,30,0,1
-5,78,0,52,0,25,26,2,1
-0,78,0,-2,8,41,81,40,1
--2,85,0,54,0,31,31,0,1
-0,77,0,12,8,21,64,42,4
-2,78,0,38,-21,37,39,2,1
-0,81,-2,20,0,44,61,16,1
-0,83,0,16,-4,47,68,22,1
-2,81,-6,52,0,29,30,0,1
-0,77,3,28,17,41,49,8,1
-0,102,0,42,0,60,61,2,1
-1,88,0,2,3,3,86,82,5
-1,85,0,54,19,32,31,0,1
-0,96,0,44,4,41,52,12,4
-0,78,0,-4,-6,42,83,42,1
-0,96,0,38,-25,40,57,18,4
-2,81,0,44,11,38,37,0,1
-0,77,-6,38,0,39,38,0,1
-0,107,-2,70,0,1,37,36,5
-2,76,0,44,-2,31,32,2,1
-1,88,2,46,0,41,41,0,1
-0,97,0,50,0,41,48,6,4
-3,88,2,46,0,41,41,0,1
-0,97,1,44,-8,41,53,12,4
-2,81,0,50,19,33,32,0,1
-0,77,-1,46,-1,32,31,0,1
--1,97,0,52,2,41,45,4,4
-0,77,0,42,-12,34,36,2,1
-0,88,0,42,-10,45,47,2,1
--5,86,0,44,0,41,42,0,1
-2,102,0,46,0,54,55,2,1
-0,74,0,34,3,37,41,4,1
-4,77,0,44,2,33,34,0,1
-4,77,0,38,0,37,38,2,1
--1,99,7,38,0,43,60,16,4
-4,79,1,44,0,35,35,0,1
-0,97,-5,50,0,41,48,6,4
-4,82,0,42,24,41,41,0,1
-0,79,0,46,0,33,33,0,1
-0,77,0,-14,-11,21,92,72,4
-0,82,2,-12,13,26,95,68,4
-2,87,2,54,0,32,33,2,1
-0,79,1,42,22,38,37,0,1
-0,76,0,26,25,39,50,12,1
-0,97,0,52,14,41,46,4,4
-4,79,6,52,0,27,27,0,1
--1,87,0,42,0,45,46,0,1
-2,79,0,52,11,27,27,0,1
-0,77,0,24,3,22,54,32,4
-0,92,0,28,-2,36,63,28,4
-0,82,7,44,0,38,38,0,1
--4,77,0,38,0,37,38,0,1
-0,77,0,38,-11,36,39,2,1
-0,76,0,38,-2,35,37,2,1
-0,76,-1,28,-24,39,47,8,1
-0,86,0,54,4,32,32,0,1
-0,84,0,54,18,31,30,0,1
-0,77,0,52,18,26,25,0,1
-3,86,0,56,0,27,29,2,1
--2,98,-3,42,-4,42,57,14,4
--1,83,0,38,-25,42,44,2,1
-0,77,-2,8,-26,22,70,48,4
--3,84,0,60,0,25,24,0,1
-0,86,3,46,-8,38,40,2,1
-5,83,0,46,8,37,36,0,1
-0,84,0,56,1,29,28,0,1
-0,86,0,-6,-12,3,94,90,5
-0,86,0,-4,10,3,92,88,5
--2,80,0,20,26,43,59,16,1
-5,95,0,42,-4,40,54,14,4
-0,90,0,46,8,44,44,0,1
-0,80,2,42,0,38,39,0,1
-0,86,-3,54,7,33,32,0,1
--1,97,1,50,0,41,48,6,4
-0,82,0,42,-12,39,41,2,1
-0,82,0,46,9,36,35,0,1
-0,76,0,38,-19,35,37,2,1
-0,76,-1,24,-2,39,53,14,1
-1,79,5,52,0,27,27,0,1
-0,86,0,42,-1,42,44,2,1
-0,77,0,38,-29,36,38,2,1
--2,88,1,52,-2,35,36,0,1
-0,107,0,46,3,61,60,0,1
-0,89,-3,54,0,34,35,0,1
-2,75,0,38,0,35,36,2,1
--1,81,0,54,0,28,27,0,1
-5,88,0,50,29,40,39,0,1
-0,81,0,8,-9,44,73,28,1
-0,93,3,20,0,38,73,34,4
-0,76,0,38,25,39,37,0,1
-0,96,0,42,-26,41,55,14,4
-0,76,0,20,-4,40,55,16,1
-0,94,2,18,-2,39,76,38,4
-2,87,0,52,13,36,35,0,1
--4,76,-2,38,-10,35,37,2,1
--1,80,-2,54,-3,27,26,0,1
--3,102,0,52,0,49,50,0,1
--5,100,0,36,0,64,64,0,1
-0,80,0,46,10,34,34,0,1
-0,93,0,10,31,55,82,28,1
-0,81,-2,50,-3,32,32,0,1
--3,77,0,38,-30,36,38,2,1
-5,86,0,46,-4,37,39,2,1
-0,95,0,10,5,58,84,26,1
-0,86,7,38,0,46,47,0,1
-0,77,0,20,12,22,57,34,4
--1,76,0,46,0,30,29,0,1
-0,77,0,36,-1,22,41,20,4
-0,80,0,44,11,36,36,0,1
-0,77,0,38,-17,37,39,2,1
-0,107,0,50,0,57,58,0,1
-0,77,0,12,3,21,64,42,4
-0,77,2,42,3,36,36,0,1
-0,79,-3,36,-12,41,43,2,1
-5,106,0,42,1,65,65,0,1
--5,90,2,6,0,51,85,34,1
-0,77,0,2,0,40,75,34,1
--3,83,0,42,0,40,42,2,1
-0,77,0,-14,24,40,92,52,1
-0,77,0,54,21,25,23,0,1
-0,86,0,56,-8,27,29,2,1
-4,95,0,44,4,39,51,12,4
-0,78,0,6,-19,23,73,50,4
-0,97,0,38,18,41,58,18,4
-0,83,0,42,-21,39,41,2,1
-0,90,-5,56,0,32,33,2,1
-5,84,5,54,0,29,30,0,1
--2,76,0,38,-14,35,37,2,1
-5,84,0,50,0,34,35,2,1
-0,81,4,42,-13,37,39,2,1
-0,76,0,34,16,39,42,4,1
--3,90,-1,8,3,53,82,30,1
--1,97,0,46,7,41,51,10,4
-0,86,-3,42,1,45,44,0,1
-0,75,0,38,-1,34,36,2,1
-2,76,0,42,0,33,34,2,1
-0,80,0,28,14,43,52,8,1
-2,99,0,50,2,43,49,6,4
-0,81,0,-14,0,25,97,72,4
-0,93,0,50,14,37,44,6,4
-0,84,0,46,0,37,38,0,1
--1,98,5,50,20,42,49,6,4
-1,81,-2,34,0,44,48,4,1
-2,83,8,44,0,38,39,2,1
-1,81,0,42,0,38,39,2,1
-0,76,0,44,28,32,32,0,1
--4,83,0,46,0,35,37,2,1
-1,79,0,42,0,36,37,2,1
--3,88,0,42,0,46,46,0,1
-0,77,0,2,14,40,74,34,1
--5,106,2,70,0,2,36,34,5
-0,80,-5,46,3,34,34,0,1
-0,76,0,-22,5,21,99,78,4
--4,79,0,20,0,42,58,16,1
-0,106,-4,36,0,69,70,0,1
-0,104,0,18,-23,67,86,18,1
-1,102,0,46,0,56,56,0,1
-0,93,4,8,0,55,85,30,1
-0,95,0,52,-26,40,44,4,4
-1,87,1,46,5,41,41,0,1
-0,95,2,8,-4,58,87,30,1
-0,93,0,44,0,48,50,2,1
-0,82,0,-38,0,26,121,94,4
-4,88,-3,54,0,35,34,0,1
-2,77,0,38,6,40,39,0,1
-2,105,4,70,0,1,35,34,5
-0,81,0,-6,-6,25,88,64,4
-0,84,0,46,-2,36,37,2,1
-0,78,-1,42,0,36,37,2,1
-0,81,-2,44,31,37,37,0,1
-4,86,0,46,12,40,39,0,1
-0,86,0,46,0,38,39,2,1
-0,77,0,10,-25,21,66,46,4
--6,86,-1,-40,0,5,127,122,5
-0,80,-1,-10,0,25,90,66,4
--4,108,0,44,0,63,64,2,1
-0,108,4,70,0,2,38,36,5
-170,105,0,36,-1,-18,69,86,5
-0,88,0,46,14,43,42,0,1
-0,77,-5,34,0,40,43,4,1
-5,81,0,38,0,41,43,2,1
-0,92,0,-6,-21,36,99,64,4
-1,86,0,-22,4,4,109,106,5
-1,81,-4,38,0,41,42,2,1
-0,79,-3,38,0,40,41,0,1
-4,80,0,50,0,30,31,2,1
--1,84,0,50,-7,33,35,2,1
--1,107,0,46,13,62,60,0,1
-0,79,-2,44,7,35,35,0,1
-3,76,0,-18,-6,20,94,74,4
-0,78,4,30,-9,41,47,6,1
--3,81,-1,44,0,37,37,0,1
-0,77,0,2,-25,40,74,34,1
--3,96,0,56,0,39,39,0,1
-0,106,-7,50,11,57,57,0,1
--2,83,-3,44,-4,38,39,0,1
-0,77,0,20,5,40,56,16,1
-0,75,0,30,13,38,44,6,1
-2,86,-1,46,0,40,40,0,1
-0,76,737,20,0,40,55,16,1
-0,87,-4,46,0,40,41,0,1
-2,98,0,46,8,42,51,10,4
--2,110,6,64,0,46,46,0,1
-0,90,0,56,15,34,33,0,1
-0,82,-3,-32,-17,26,115,90,4
-0,76,-1,20,-3,40,55,16,1
-0,77,-1,-14,0,40,92,52,1
-0,108,0,54,0,54,54,0,1
-0,95,0,36,11,40,59,20,4
-0,81,0,-6,3,25,88,64,4
-0,81,0,24,-14,44,57,14,1
--4,86,0,50,19,37,37,0,1
-0,79,-5,34,-8,42,46,4,1
-0,105,0,24,1,68,82,14,1
-0,75,0,44,10,31,31,0,1
-3,81,0,38,13,43,42,0,1
-0,83,0,-4,-13,46,88,42,1
-4,81,-2,44,-2,36,37,2,1
-0,81,0,-6,10,25,89,64,4
-4,81,0,38,3,43,42,0,1
--3,84,0,-40,4,5,126,122,5
-0,83,0,54,3,30,28,0,1
--1,84,0,54,-30,28,30,2,1
-0,86,4,38,-8,46,48,2,1
-0,78,0,36,-14,41,42,2,1
-1,77,0,42,8,36,36,0,1
-0,78,-1,8,0,41,70,30,1
-0,77,-3,10,3,22,67,46,4
-0,76,0,18,-20,40,58,18,1
-0,88,4,44,8,44,44,0,1
-0,83,-7,46,21,37,37,0,1
-0,88,5,46,-1,40,42,2,1
-0,81,0,-14,28,25,97,72,4
-0,108,0,56,-11,49,51,2,1
-0,95,0,46,-3,47,49,2,1
-0,77,0,38,10,40,39,0,1
--4,76,0,38,5,39,37,0,1
-1,85,-1,38,0,46,46,0,1
-0,78,0,42,28,37,37,0,1
-0,83,-6,30,0,46,52,6,1
--1,82,-2,38,-3,44,43,0,1
-0,88,3,46,-1,40,42,2,1
-0,89,0,6,16,4,84,80,5
-2,83,0,46,4,37,36,0,1
-0,83,8,44,0,39,39,0,1
-4,83,0,38,0,42,44,2,1
-2,85,0,50,0,36,36,0,1
-3,81,-7,38,0,41,42,2,1
--1,81,0,44,-12,36,37,2,1
-0,78,0,12,-13,22,65,42,4
-3,107,0,46,0,60,60,0,1
-0,78,0,52,-10,25,26,2,1
-0,97,8,54,-7,41,42,2,1
--4,106,0,70,0,2,36,34,5
-0,96,-3,52,-5,40,44,4,4
-0,81,4,44,1,37,37,0,1
-0,79,0,34,-18,43,46,2,1
-4,76,0,42,-19,32,34,2,1
--1,77,-3,42,0,34,35,2,1
--1,84,-3,-18,26,4,103,98,5
-0,79,-1,20,-2,42,58,16,1
-0,82,0,-20,-30,26,103,76,4
-0,77,-2,16,-4,21,61,40,4
-0,77,0,46,0,29,30,0,1
-0,97,1,50,0,41,48,6,4
--1,89,0,50,0,39,40,0,1
-0,77,3,36,0,40,41,0,1
-0,79,0,34,-8,43,46,2,1
-0,76,-5,44,0,31,32,2,1
-0,79,5,-22,0,23,102,80,4
-0,84,0,-18,0,4,103,98,5
-0,95,0,54,13,39,41,2,1
-0,103,0,70,-1,1,33,32,5
-0,83,0,46,-16,34,36,2,1
--5,81,0,42,0,40,40,0,1
-0,78,0,56,25,22,21,0,1
-0,77,0,38,28,39,38,0,1
-0,86,0,54,13,33,32,0,1
-1,81,1,54,0,25,26,2,1
-0,93,-5,0,0,37,93,56,4
-0,84,0,-24,28,4,110,106,5
-0,74,7,44,0,29,30,2,1
-0,78,0,2,-6,23,75,52,4
-0,97,0,36,-16,41,60,20,4
-0,90,0,50,-26,38,41,2,1
-1,79,0,38,8,41,40,0,1
--3,85,0,-22,0,4,108,104,5
-0,84,0,26,-13,47,58,10,1
--3,99,0,46,-22,43,52,10,4
-0,79,0,42,0,38,38,0,1
--32,106,0,34,-1,69,72,4,3
-0,76,0,26,10,39,50,12,1
--1,87,1,46,0,41,41,0,1
--1,106,0,70,0,1,36,36,5
-0,83,0,2,-5,46,80,34,1
--4,98,0,46,18,42,51,10,4
-0,97,0,42,5,42,56,14,4
-0,95,0,44,-13,40,51,12,4
-0,106,-2,34,1,68,72,4,1
-0,77,0,54,17,25,23,0,1
-0,77,1,46,0,29,30,0,1
--2,108,1,60,0,46,49,2,1
-0,76,2,34,3,40,43,2,1
-0,77,5,38,25,39,38,0,1
--1,82,0,50,26,34,33,0,1
-0,97,-4,30,0,60,66,6,1
-0,77,4,28,0,40,48,8,1
-0,86,-6,54,0,31,32,0,1
-0,82,0,38,27,45,43,0,1
-3,77,0,36,-18,40,41,2,1
-0,77,-6,2,0,40,75,34,1
-0,81,-2,54,0,26,26,0,1
-0,86,0,54,0,32,32,0,1
-0,95,0,38,-24,40,57,16,4
-0,81,0,46,20,35,34,0,1
-0,77,0,-2,12,21,79,58,4
-0,81,0,44,-13,35,37,2,1
-5,84,3,54,-1,28,30,2,1
-22,79,0,42,0,31,37,6,2
-0,84,0,-32,16,4,117,114,5
--2,81,0,42,-9,38,40,2,1
-0,78,0,6,10,41,73,32,1
-0,94,0,8,-2,57,86,30,1
-0,77,3,38,12,40,39,0,1
--1,98,0,50,-7,42,49,6,4
--3,82,0,46,0,34,35,0,1
--1,79,0,44,-9,33,35,2,1
-0,106,0,38,6,68,67,0,1
-2,76,0,36,-4,38,39,2,1
-0,106,0,26,4,68,80,12,1
-0,96,2,52,0,40,44,4,4
-0,77,-3,36,-5,40,41,0,1
-0,81,-2,42,-18,38,40,2,1
-0,85,0,50,-25,34,36,2,1
--2,83,0,54,0,28,28,0,1
-0,87,0,-42,-30,4,131,126,5
-0,86,0,50,0,36,37,0,1
-0,81,0,-18,-19,25,99,74,4
-0,86,0,54,29,33,32,0,1
-2,81,0,-6,-22,25,88,64,4
-0,76,0,24,27,39,52,14,1
-1,76,0,42,-7,32,34,2,1
--3,87,0,42,-15,44,46,2,1
-0,96,3,46,0,41,50,8,4
-0,81,-2,42,-2,37,39,2,1
--4,107,-6,72,0,1,35,34,5
-0,79,0,34,-30,43,46,2,1
-0,84,0,-38,-4,4,123,118,5
--3,80,0,44,4,36,36,0,1
-0,76,0,34,-4,39,43,4,1
-5,81,0,44,6,37,37,0,1
-2,86,0,42,0,42,44,2,1
--1,81,-1,42,-10,37,39,2,1
-0,106,5,36,0,69,70,2,1
--1,79,0,26,6,42,53,12,1
-0,88,-2,46,-7,39,41,2,1
--3,86,0,52,-1,33,34,0,1
--4,79,0,42,8,38,37,0,1
-5,77,0,44,-2,32,34,2,1
--3,79,0,46,-27,30,32,2,1
-0,84,0,44,19,40,40,0,1
-0,95,0,38,-3,40,57,18,4
-0,104,0,26,18,66,78,12,1
-0,83,0,0,-6,46,83,36,1
-3,88,0,46,0,39,41,2,1
-0,76,-2,16,16,39,61,22,1
-0,77,0,6,9,40,72,32,1
-4,96,0,56,0,39,39,0,1
-0,82,0,-24,-8,26,108,82,4
--3,76,-1,42,-15,33,35,2,1
--2,86,0,38,-6,45,47,2,1
-0,84,0,30,15,47,53,6,1
-0,100,2,42,0,58,59,0,1
--1,86,0,-6,0,4,94,90,5
-0,88,0,52,0,37,37,0,1
-0,76,-7,36,2,38,39,2,1
-0,105,0,20,-25,68,84,16,1
-0,86,2,-2,0,4,89,86,5
-0,97,0,54,15,41,43,2,1
-0,82,-1,-2,10,45,85,40,1
-0,76,0,36,-24,38,40,2,1
-0,103,0,24,-19,66,80,14,1
-0,81,0,-20,28,26,102,76,4
-0,77,0,34,-22,40,43,2,1
-0,96,0,46,-12,41,50,8,4
-5,76,0,38,7,38,37,0,1
-0,83,0,-4,-12,47,88,42,1
-0,82,0,44,-16,37,38,2,1
-0,100,0,28,0,64,72,8,1
-0,88,-2,50,-10,37,39,2,1
-0,109,4,52,-8,56,57,2,1
-0,82,0,-38,-16,26,121,94,4
-0,75,0,28,13,38,46,8,1
-0,96,0,42,11,40,55,14,4
-0,83,0,38,-11,42,44,2,1
-0,111,0,46,-30,62,64,2,1
-0,107,3,46,0,60,60,0,1
-0,80,0,6,-19,43,75,32,1
--1,81,0,-20,29,26,102,76,4
-2,76,0,42,13,34,34,0,1
-1,86,0,50,15,38,37,0,1
-0,92,0,-4,30,36,97,60,4
-0,77,0,-14,17,21,92,72,4
-0,79,0,0,0,23,79,56,4
-0,76,1,24,0,39,52,14,1
-2,86,0,38,0,45,47,2,1
-4,79,0,50,-15,27,30,2,1
-0,76,5,38,0,38,37,0,1
--5,77,0,-4,1,21,82,60,4
-4,81,1,38,0,41,43,2,1
-3,79,0,42,0,36,37,2,1
-5,79,1,50,0,29,30,0,1
--5,86,0,44,18,43,42,0,1
--3,77,0,46,13,32,31,0,1
-0,78,0,8,-13,42,70,28,1
-0,78,0,50,-10,27,29,2,1
-0,93,0,44,-2,48,50,2,1
-0,77,4,38,23,40,39,0,1
-0,80,0,42,14,39,39,0,1
-0,97,0,44,0,41,53,12,4
--2,81,0,46,0,33,34,0,1
-0,97,0,42,6,56,55,0,1
-0,86,0,50,0,38,37,0,1
-5,82,4,56,0,24,25,0,1
--3,86,0,36,0,49,50,0,1
-0,97,0,52,20,41,46,4,4
-4,81,-3,46,0,33,34,2,1
-0,76,-1,38,14,39,37,0,1
-0,83,0,46,30,38,37,0,1
--5,90,0,54,0,35,35,0,1
--5,86,0,46,-24,37,39,2,1
--2,85,2,50,0,35,36,0,1
-0,77,0,18,10,22,59,38,4
-0,81,0,30,16,45,50,6,1
-3,81,0,50,19,33,32,0,1
--1,75,0,38,0,35,36,2,1
-0,75,0,38,16,37,36,0,1
-0,106,-4,38,25,68,67,0,1
-0,76,0,34,-3,38,42,4,1
-0,77,0,54,4,23,23,0,1
-0,86,0,46,15,40,39,0,1
-0,104,-5,16,-22,67,89,22,1
--4,77,0,38,0,38,39,2,1
-1,86,0,52,0,34,34,0,1
-1,77,0,38,0,37,38,0,1
-0,106,0,24,5,69,82,14,1
--1,78,-3,38,-11,37,39,2,1
-5,79,0,56,0,22,23,0,1
-0,77,-1,44,29,34,34,0,1
-0,77,0,50,-20,26,28,2,1
-0,80,0,52,-2,27,28,2,1
-0,79,0,8,-8,42,71,30,1
-0,75,-2,44,5,31,31,0,1
-0,80,-7,46,0,33,34,0,1
-1,81,0,46,13,35,35,0,1
--37,107,0,64,-14,18,42,24,3
-0,97,0,50,-8,41,48,6,4
-0,79,7,38,0,38,40,2,1
--2,77,0,44,0,33,34,0,1
-0,97,-2,50,0,42,48,6,4
-2,81,0,38,5,43,42,0,1
-0,80,0,30,-23,43,49,6,1
-0,82,0,42,-7,39,41,2,1
--1,77,-1,44,0,33,33,0,1
-0,79,0,12,-8,42,66,24,1
--5,95,0,50,0,40,46,6,4
-0,81,0,-6,-2,25,88,64,4
-0,86,7,50,0,36,37,0,1
-5,81,-1,42,0,38,40,2,1
-1,96,7,50,0,41,47,6,4
-0,84,4,38,-5,43,45,2,1
-0,79,-2,42,0,38,37,0,1
-4,106,4,72,5,1,34,32,5
--1,87,0,52,19,36,35,0,1
-3,86,-1,42,0,44,45,2,1
-0,85,-1,38,0,44,46,2,1
-0,92,0,50,24,36,43,6,4
-0,86,-1,42,-4,42,44,2,1
-0,87,1,56,9,31,30,0,1
-0,79,0,18,-5,23,61,38,4
-0,87,1,44,27,44,43,0,1
-2,104,0,18,10,66,86,20,1
-0,86,-1,-4,15,3,92,88,5
-0,90,6,6,-6,53,85,32,1
-1,80,-6,46,9,34,34,0,1
-0,77,0,24,-20,40,54,14,1
-0,77,0,-18,0,21,95,74,4
-4,79,-3,42,0,37,37,0,1
-0,84,0,-22,-6,4,108,104,5
-0,81,0,-2,12,44,84,40,1
-0,85,-1,52,0,33,33,0,1
-0,79,0,38,23,41,40,0,1
-0,86,0,50,157,37,37,0,1
-0,78,0,6,-9,22,73,50,4
-0,76,-2,42,-4,34,35,0,1
-0,76,-1,42,-5,32,34,2,1
-0,78,0,2,-7,42,75,34,1
--2,83,3,44,0,38,39,0,1
-3,86,0,-2,0,3,89,86,5
-0,76,1,28,-3,39,47,8,1
--1,76,-3,28,-6,40,48,8,1
-0,77,0,-4,11,21,82,62,4
-5,112,0,68,2,45,45,0,1
-0,86,0,46,2,41,40,0,1
-0,82,0,46,6,36,35,0,1
-0,83,0,44,8,39,39,0,1
-0,90,4,46,0,42,43,0,1
-0,86,6,42,-6,43,45,2,1
-0,77,0,16,0,41,62,22,1
-0,105,-2,34,0,68,71,4,1
-5,88,0,42,0,45,46,2,1
-0,77,0,12,-7,41,65,24,1
-0,87,0,44,-4,42,43,2,1
-0,97,0,28,-18,60,69,8,1
--1,77,0,44,7,33,33,0,1
-0,80,-3,34,-2,43,46,2,1
-0,74,0,30,18,37,43,6,1
--1,85,-7,-2,1,3,88,84,5
--4,86,1,42,0,45,45,0,1
-0,77,0,8,0,40,69,30,1
-4,81,0,44,0,36,37,0,1
-5,75,0,20,0,38,54,16,1
-0,97,0,46,-7,40,50,10,4
-3,86,0,-22,15,4,109,106,5
-6,89,0,8,23,5,81,76,5
--4,86,0,56,23,30,29,0,1
-0,106,2,24,-3,68,82,14,1
-0,81,0,36,-2,43,44,2,1
-0,88,0,44,-5,42,44,2,1
-0,79,0,12,-11,23,66,42,4
--4,86,0,50,0,35,37,2,1
-0,76,2,26,13,39,50,12,1
-0,88,1,50,-30,36,39,2,1
--1,79,0,44,18,35,35,0,1
--3,79,0,38,0,39,41,2,1
-0,79,-1,42,-27,35,37,2,1
-0,77,0,-2,-7,21,79,58,4
--1,81,-5,54,-7,26,27,0,1
-5,83,1,-40,9,4,125,120,5
-1,87,0,46,-5,38,41,2,1
--3,109,0,42,0,66,67,2,1
-0,78,-1,52,6,27,26,0,1
-0,77,0,10,11,40,66,26,1
--1,93,-3,50,-4,37,44,6,4
-0,79,0,46,-19,31,33,2,1
-0,93,0,28,7,55,64,8,1
-0,76,0,26,-20,39,50,10,1
-0,83,8,46,20,37,36,0,1
-0,106,-6,26,0,69,80,12,1
--2,81,0,56,5,25,24,0,1
-1,83,3,44,0,38,39,0,1
--3,107,0,50,0,57,58,0,1
--1,90,0,50,0,39,41,2,1
-0,76,0,34,-16,39,42,2,1
-0,76,0,20,-12,40,55,16,1
--5,79,1,38,0,38,40,2,1
--1,77,0,50,9,28,28,0,1
-0,81,0,-2,2,25,83,58,4
--2,102,0,70,-2,1,33,32,5
-0,83,-5,46,0,36,36,0,1
-0,76,0,18,-14,39,58,18,1
-2,81,1,54,0,28,27,0,1
-0,78,0,12,-30,23,65,42,4
-0,83,-3,44,-25,37,39,2,1
-0,84,0,-42,0,5,128,124,5
-0,78,0,10,-13,42,68,26,1
-2,76,0,46,9,30,30,0,1
-0,86,-2,46,-18,38,40,2,1
--27,75,0,28,19,38,46,8,1
--1,109,0,62,2,48,47,0,1
-0,97,2,52,0,41,45,4,4
-0,85,0,46,0,39,39,0,1
-0,81,0,38,-17,41,43,2,1
-0,82,0,-40,16,26,123,96,4
-2,80,0,42,5,39,39,0,1
-0,83,0,8,2,46,75,30,1
-1,77,0,54,5,24,23,0,1
--3,104,-1,72,14,1,31,30,5
--2,79,1,38,0,38,40,2,1
-0,88,-2,6,-6,3,83,80,5
-1,79,0,52,-21,26,27,2,1
-1,84,0,60,3,25,24,0,1
-0,83,0,56,7,27,26,0,1
-0,88,-7,38,-1,48,50,2,1
-4,77,0,34,0,39,43,4,1
-0,81,0,-20,0,26,102,76,4
-0,81,0,16,7,44,65,22,1
--3,90,0,54,4,37,36,0,1
-0,83,0,46,3,37,36,0,1
-0,78,0,50,-5,27,29,2,1
-0,105,-1,18,7,68,87,18,1
-0,75,-4,44,0,31,31,0,1
-0,86,0,42,-18,43,45,2,1
-1,82,0,46,5,36,35,0,1
--1,86,0,60,30,28,27,0,1
-0,81,0,54,7,28,26,0,1
-5,81,0,50,2,32,32,0,1
-3,97,1,44,14,41,53,12,4
-3,77,0,34,0,22,44,22,4
-0,76,0,42,10,35,34,0,1
-0,82,0,44,-10,36,38,2,1
-0,84,0,50,23,35,35,0,1
-2,87,-2,44,1,43,43,0,1
-0,76,4,44,-1,31,32,2,1
-0,81,0,2,-3,25,78,54,4
--2,86,5,46,30,41,40,0,1
-0,81,0,10,-3,45,71,26,1
-0,104,0,20,9,67,84,16,1
-3,79,0,54,0,24,25,2,1
-3,86,0,52,-4,33,34,2,1
-2,86,-2,44,0,42,42,0,1
-0,97,0,42,0,41,55,14,4
-0,84,-3,44,0,40,40,0,1
--1,85,-4,46,-14,39,39,0,1
-0,77,0,44,-6,32,34,2,1
-0,98,0,44,11,42,54,12,4
--2,88,-3,46,11,42,41,0,1
-0,83,0,42,10,42,41,0,1
-0,86,-4,42,-6,42,44,2,1
-0,96,0,46,-6,41,50,8,4
-0,86,1,42,-27,43,45,2,1
-0,98,-1,42,-17,42,57,14,4
--5,82,0,50,10,33,33,0,1
-0,78,-2,18,0,23,60,38,4
-5,79,0,44,1,35,35,0,1
-2,77,0,46,-1,30,31,0,1
-4,77,0,44,0,31,33,2,1
-0,79,0,30,9,42,48,6,1
--1,85,0,42,-10,42,44,2,1
-0,76,8,42,0,33,35,2,1
-0,80,0,30,24,43,49,6,1
-2,79,0,38,18,42,41,0,1
-0,102,0,70,-3,1,33,32,5
--2,80,-4,38,0,41,41,0,1
-0,81,1,42,-9,37,39,2,1
-0,87,0,46,-12,38,41,2,1
-0,84,0,-36,-29,4,120,116,5
-0,81,0,-20,25,26,102,76,4
-0,77,0,12,-22,22,65,42,4
-0,103,0,18,-16,66,85,20,1
-2,98,0,52,1,42,46,4,4
+,time,rad_flow,fpv_close,fpv_open,high,bypass,bpv_close,bpv_open,class,0
+0,56,0,96,0,52,-4,40,44,4,4
+1,50,-1,89,-7,50,0,39,40,2,1
+2,53,9,79,0,42,-2,25,37,12,4
+3,55,2,82,0,54,-6,26,28,2,1
+4,41,0,84,3,38,-4,43,45,2,1
+5,37,0,100,0,36,-8,63,64,2,1
+6,46,0,83,0,46,0,37,36,0,1
+7,44,0,79,0,42,-17,35,37,2,1
+8,44,-1,78,0,44,0,34,34,0,1
+9,55,0,81,0,54,-10,25,26,2,1
+10,56,0,95,0,52,-3,40,44,4,4
+11,37,0,100,0,34,6,64,67,4,1
+12,43,-3,86,2,44,14,43,42,0,1
+13,46,-5,84,0,46,0,38,37,0,1
+14,45,0,81,0,44,0,36,37,0,1
+15,48,0,86,0,50,30,38,37,0,1
+16,56,0,78,0,42,-2,22,37,14,4
+17,56,0,77,0,18,-18,22,59,38,4
+18,45,5,90,0,44,0,44,46,2,1
+19,37,0,77,0,-20,27,41,98,58,1
+20,37,0,90,-6,18,0,53,72,20,1
+21,37,-8,77,0,20,0,40,57,16,1
+22,50,5,95,-3,50,0,45,46,2,1
+23,43,-2,76,0,44,15,32,32,0,1
+24,42,-1,85,-5,42,0,44,44,0,1
+25,55,0,97,0,46,-2,42,51,8,4
+26,37,0,76,0,26,20,39,50,12,1
+27,37,0,76,8,30,0,40,45,6,1
+28,45,0,106,0,46,9,61,60,0,1
+29,37,0,81,0,38,17,44,43,0,1
+30,49,4,83,0,46,0,34,37,2,1
+31,50,0,88,1,50,0,38,39,0,1
+32,42,2,77,0,42,0,36,36,0,1
+33,49,0,78,0,50,11,29,29,0,1
+34,55,0,95,0,44,-12,40,51,12,4
+35,37,0,77,0,34,-12,40,43,2,1
+36,37,3,81,0,36,0,44,44,0,1
+37,37,0,84,0,26,-3,47,58,10,1
+38,53,0,86,0,54,0,33,32,0,1
+39,44,0,81,-3,44,17,37,37,0,1
+40,46,0,81,7,46,3,35,34,0,1
+41,45,-4,83,0,44,-14,37,39,2,1
+42,79,0,84,0,-36,-196,4,120,116,5
+43,81,0,84,0,-20,26,3,105,102,5
+44,55,-5,87,2,54,0,32,33,0,1
+45,45,0,89,-3,44,0,44,45,0,1
+46,51,0,86,0,52,22,35,34,0,1
+47,80,0,84,-1,-28,-24,4,112,108,5
+48,53,0,87,-6,52,-7,34,35,2,1
+49,56,0,86,0,56,2,30,30,0,1
+50,49,0,87,0,50,1,38,38,0,1
+51,55,0,97,5,46,-19,41,50,8,4
+52,56,0,96,0,56,10,40,39,0,1
+53,37,0,95,0,18,-24,57,77,20,1
+54,48,0,86,-4,46,0,39,40,2,1
+55,108,3,109,0,72,7,1,36,36,5
+56,41,5,93,0,38,0,53,55,2,1
+57,85,0,88,7,2,0,3,86,82,5
+58,55,0,78,1,26,0,23,52,30,4
+59,56,3,77,0,-24,0,21,103,82,4
+60,56,0,85,0,56,15,29,28,0,1
+61,81,0,84,0,-20,-17,4,105,102,5
+62,53,0,88,0,52,-4,35,37,2,1
+63,37,0,78,0,-6,-5,42,86,44,1
+64,41,5,80,0,42,7,39,39,0,1
+65,45,2,108,0,44,0,63,64,2,1
+66,48,2,89,0,46,0,41,42,2,1
+67,56,0,95,0,50,-26,39,46,6,4
+68,55,0,77,0,8,-18,22,70,48,4
+69,49,0,85,0,46,-5,36,39,2,1
+70,44,0,76,2,42,-29,32,34,2,1
+71,49,0,95,4,50,0,46,46,0,1
+72,51,0,88,0,52,8,36,36,0,1
+73,56,0,97,0,44,6,41,53,12,4
+74,49,3,95,0,46,-9,47,49,2,1
+75,40,0,84,6,38,0,44,45,2,1
+76,59,0,86,-2,60,18,27,26,0,1
+77,37,0,108,15,26,-1,71,82,12,1
+78,37,0,104,0,28,1,66,75,8,1
+79,55,1,83,0,54,0,28,29,0,1
+80,43,0,97,0,42,-9,53,55,2,1
+81,45,-1,83,0,44,0,38,39,0,1
+82,37,0,76,-7,20,-6,39,55,16,1
+83,38,0,81,0,36,-30,43,45,2,1
+84,37,0,77,0,30,-9,40,46,6,1
+85,37,0,102,0,36,0,64,66,2,1
+86,52,5,78,-1,52,0,26,26,0,1
+87,43,0,88,0,42,-11,45,47,2,1
+88,42,0,86,1,42,0,45,45,0,1
+89,53,0,79,0,52,-26,26,27,2,1
+90,37,0,74,-7,28,0,37,46,8,1
+91,55,0,96,2,46,0,41,50,8,4
+92,58,0,79,0,56,0,21,22,0,1
+93,41,-1,84,-3,42,-1,43,43,0,1
+94,56,0,97,3,50,-8,41,48,6,4
+95,37,0,79,0,20,1,42,58,16,1
+96,41,0,88,0,42,24,48,47,0,1
+97,44,0,82,6,44,0,38,38,0,1
+98,37,0,77,8,36,6,40,41,0,1
+99,37,0,78,0,2,25,41,75,34,1
+100,44,4,80,0,42,-14,36,39,2,1
+101,41,1,86,0,42,26,46,45,0,1
+102,39,2,85,-2,38,0,46,46,0,1
+103,37,0,76,6,34,26,39,43,4,1
+104,55,0,96,-1,38,-1,41,57,16,4
+105,37,0,77,0,-20,6,41,98,58,1
+106,50,-2,111,0,50,0,61,62,0,1
+107,41,0,78,0,42,31,37,37,0,1
+108,55,0,93,0,42,-20,37,51,14,4
+109,43,3,76,0,42,-2,33,35,2,1
+110,37,0,76,1,26,-6,39,50,10,1
+111,56,0,76,0,-18,-25,20,94,74,4
+112,42,-3,90,0,42,0,47,48,2,1
+113,49,0,95,5,46,-10,46,48,2,1
+114,46,-5,86,-1,46,-2,40,40,0,1
+115,47,2,85,4,46,0,38,39,0,1
+116,41,2,77,0,42,8,36,36,0,1
+117,45,1,80,2,44,0,35,36,0,1
+118,45,0,86,1,44,0,40,42,2,1
+119,48,-1,89,-1,46,-4,41,42,2,1
+120,46,0,92,6,46,0,45,45,0,1
+121,37,0,80,-6,18,0,43,62,18,1
+122,49,0,81,0,46,0,33,35,2,1
+123,45,-3,77,2,44,0,32,33,0,1
+124,37,0,77,0,34,9,41,44,2,1
+125,48,-1,79,0,46,0,30,32,2,1
+126,41,0,86,0,42,29,46,45,0,1
+127,50,-5,83,0,50,0,32,33,2,1
+128,37,1,99,0,28,0,62,71,8,1
+129,46,-1,107,0,46,0,61,60,0,1
+130,38,0,92,0,16,3,54,77,22,1
+131,53,0,83,0,52,-30,30,32,2,1
+132,47,1,78,-6,46,0,31,32,0,1
+133,44,4,86,4,44,13,43,42,0,1
+134,37,0,83,5,-2,0,46,85,40,1
+135,37,5,79,0,18,0,42,61,20,1
+136,55,0,77,0,26,2,21,51,30,4
+137,55,0,95,0,38,0,40,57,16,4
+138,41,-1,83,4,38,-3,42,44,2,1
+139,56,2,95,0,34,0,40,62,22,4
+140,46,2,90,0,46,8,44,43,0,1
+141,48,-2,110,0,46,-3,62,64,2,1
+142,81,0,84,0,-14,-2,4,100,96,5
+143,54,-1,87,0,54,0,33,33,0,1
+144,45,0,81,0,44,14,36,37,2,1
+145,37,0,84,0,26,0,47,58,10,1
+146,56,0,83,0,54,-11,27,29,2,1
+147,37,0,82,0,16,11,45,66,22,1
+148,80,-4,84,0,-42,0,5,128,124,5
+149,49,-1,81,0,50,0,32,32,0,1
+150,53,0,87,0,54,27,34,33,0,1
+151,37,0,78,0,0,8,41,78,36,1
+152,56,0,92,0,52,2,36,40,4,4
+153,37,0,77,0,34,-30,40,43,2,1
+154,55,-1,79,-3,24,-7,23,55,32,4
+155,46,0,81,1,46,0,35,35,0,1
+156,55,0,77,4,0,0,22,77,56,4
+157,56,0,108,3,54,-5,52,53,2,1
+158,56,0,81,0,-18,11,25,99,74,4
+159,50,0,87,-2,50,0,37,38,0,1
+160,41,0,76,-3,38,0,35,37,2,1
+161,37,0,79,0,30,-7,43,48,6,1
+162,37,0,79,2,12,0,42,66,24,1
+163,81,0,84,0,-20,16,4,105,102,5
+164,56,-4,79,0,56,0,22,22,0,1
+165,44,0,76,-2,44,2,32,32,0,1
+166,37,0,108,0,36,2,71,72,0,1
+167,37,0,79,0,18,2,42,61,18,1
+168,37,0,97,6,34,0,60,64,4,1
+169,43,0,77,0,44,21,34,34,0,1
+170,46,0,79,8,46,2,34,33,0,1
+171,53,2,81,0,54,23,28,26,0,1
+172,46,1,83,0,46,14,37,37,0,1
+173,37,0,80,0,34,-1,43,46,2,1
+174,46,0,76,2,46,2,30,30,0,1
+175,37,0,80,2,26,0,43,54,10,1
+176,56,-1,96,0,52,0,40,44,4,4
+177,37,0,83,0,34,18,46,49,4,1
+178,55,0,77,3,-24,0,22,103,82,4
+179,47,0,88,-2,46,-4,41,41,0,1
+180,56,2,97,0,42,0,40,55,14,4
+181,45,0,80,0,44,-9,35,36,2,1
+182,43,-1,81,4,42,-3,38,40,2,1
+183,55,0,96,2,42,-24,41,55,14,4
+184,39,1,106,0,38,0,68,67,0,1
+185,56,0,85,0,56,5,29,28,0,1
+186,45,-3,84,0,46,17,38,37,0,1
+187,37,0,76,0,36,-18,38,39,2,1
+188,50,0,86,-5,50,0,35,37,2,1
+189,40,-1,80,-3,38,14,40,41,2,1
+190,37,0,105,0,24,9,68,82,14,1
+191,56,-5,97,0,50,0,41,48,6,4
+192,38,0,92,0,20,17,54,71,18,1
+193,43,-4,79,0,42,3,36,38,2,1
+194,51,-1,86,0,50,-2,35,37,2,1
+195,41,2,79,0,38,-21,38,41,2,1
+196,37,0,76,-4,20,-6,40,55,16,1
+197,37,0,74,0,34,2,37,41,4,1
+198,56,0,77,0,16,-1,22,62,40,4
+199,37,0,79,0,28,29,42,50,8,1
+200,53,0,82,0,54,27,29,28,0,1
+201,53,-3,81,0,54,15,28,26,0,1
+202,46,0,82,0,46,3,36,35,0,1
+203,36,-2,82,-1,36,0,46,46,0,1
+204,37,-5,106,0,34,0,69,72,2,1
+205,37,0,95,0,20,-26,58,75,16,1
+206,76,0,81,0,-42,-20,5,125,120,5
+207,49,0,90,0,46,-13,42,44,2,1
+208,42,-1,76,1,42,0,34,35,0,1
+209,53,0,88,0,54,8,35,34,0,1
+210,82,0,86,0,-10,10,3,96,92,5
+211,49,0,86,3,50,0,37,37,0,1
+212,53,0,88,0,54,6,35,33,0,1
+213,37,0,105,3,20,0,68,84,16,1
+214,56,0,86,0,54,-11,31,32,2,1
+215,37,0,83,0,16,-7,47,68,22,1
+216,45,-4,76,0,44,0,32,32,0,1
+217,45,0,83,6,44,-5,38,39,2,1
+218,106,0,107,0,72,0,1,35,34,5
+219,76,-1,81,0,-42,-3,5,125,120,5
+220,46,0,83,0,44,-16,37,39,2,1
+221,48,5,90,0,46,0,41,43,2,1
+222,54,-3,86,-3,54,-4,32,32,0,1
+223,41,-2,82,0,42,10,41,41,0,1
+224,37,0,83,0,8,6,46,75,30,1
+225,56,0,81,0,-18,24,25,99,74,4
+226,84,-2,88,0,0,0,4,88,84,5
+227,43,-3,83,0,42,-12,39,41,2,1
+228,37,0,76,-3,34,-21,38,42,4,1
+229,41,-5,86,0,42,0,45,45,0,1
+230,55,0,77,0,12,4,22,65,42,4
+231,37,0,79,0,8,-26,42,71,28,1
+232,55,0,95,0,50,-1,40,46,6,4
+233,41,0,83,6,38,-13,42,44,2,1
+234,37,0,106,-1,26,0,69,80,12,1
+235,55,0,96,1,52,0,41,44,4,4
+236,38,1,77,0,38,5,40,39,0,1
+237,55,0,76,0,-14,-8,21,92,70,4
+238,42,1,85,0,42,0,43,44,0,1
+239,55,0,76,-1,-18,0,21,94,74,4
+240,55,0,96,5,54,0,41,42,2,1
+241,37,0,74,0,26,-30,38,48,10,1
+242,42,0,79,-7,42,0,37,38,2,1
+243,39,6,76,-1,38,-1,37,37,0,1
+244,47,-3,109,0,46,0,61,62,0,1
+245,41,5,82,0,42,8,41,41,0,1
+246,51,0,80,0,52,22,29,28,0,1
+247,77,4,81,3,-40,10,4,123,118,5
+248,38,-5,86,0,38,0,48,47,0,1
+249,43,2,85,0,42,-1,42,44,2,1
+250,37,0,97,0,36,9,59,60,2,1
+251,56,0,96,-3,54,11,40,42,2,1
+252,41,0,109,3,38,-6,68,70,2,1
+253,45,0,81,0,44,-25,35,37,2,1
+254,51,0,91,0,52,4,40,39,0,1
+255,50,1,106,0,50,0,57,57,0,1
+256,44,3,85,0,44,15,41,41,0,1
+257,56,-4,88,0,54,-29,32,33,2,1
+258,37,0,78,-2,2,5,41,75,34,1
+259,37,0,77,0,18,17,40,59,18,1
+260,53,0,85,0,52,-23,32,33,2,1
+261,56,0,79,0,56,14,23,22,0,1
+262,56,0,77,0,20,5,22,57,36,4
+263,43,0,95,0,42,-20,52,54,2,1
+264,55,-1,80,0,-4,5,25,85,60,4
+265,37,0,105,0,36,10,68,69,2,1
+266,56,7,74,9,-4,-1,18,79,62,4
+267,55,0,95,0,42,-15,40,54,14,4
+268,41,1,84,0,38,-30,43,45,2,1
+269,50,5,83,0,50,0,33,33,0,1
+270,46,1,87,0,46,8,41,41,0,1
+271,84,0,86,-1,-2,0,3,89,86,5
+272,50,4,88,0,50,0,39,39,0,1
+273,41,1,81,0,42,11,39,39,0,1
+274,51,3,86,0,50,-12,35,37,2,1
+275,55,0,78,0,8,10,23,70,48,4
+276,41,-3,77,0,42,8,37,36,0,1
+277,55,0,77,0,26,-13,21,51,30,4
+278,49,0,77,0,50,24,28,28,0,1
+279,46,1,77,0,44,-10,31,33,2,1
+280,37,0,79,0,12,-19,43,66,24,1
+281,55,0,77,0,26,19,21,51,30,4
+282,43,0,86,0,42,-20,42,44,2,1
+283,37,0,81,0,24,7,44,57,14,1
+284,37,0,79,-1,26,-21,42,53,12,1
+285,44,0,81,0,42,-29,37,39,2,1
+286,73,8,77,9,-42,-4,4,121,116,5
+287,46,-5,79,0,46,0,33,32,0,1
+288,102,0,102,-5,70,-10,1,33,32,5
+289,37,0,95,0,18,5,58,77,20,1
+290,37,0,77,0,20,3,40,57,16,1
+291,41,0,84,0,42,10,43,43,0,1
+292,44,0,87,-6,44,2,43,43,0,1
+293,41,0,78,4,42,12,37,37,0,1
+294,42,1,102,0,42,0,60,61,2,1
+295,55,0,86,0,56,21,31,30,0,1
+296,37,0,76,-3,28,-3,39,47,8,1
+297,105,0,107,2,70,0,1,37,36,5
+298,47,-2,80,0,46,0,33,34,0,1
+299,43,0,82,0,42,-19,39,41,2,1
+300,42,0,77,2,42,0,35,35,0,1
+301,47,4,84,0,46,0,37,37,0,1
+302,37,0,78,0,10,4,41,68,26,1
+303,55,4,83,0,54,0,27,28,2,1
+304,52,0,86,-6,52,0,33,34,0,1
+305,85,0,88,0,0,-1,3,88,86,5
+306,55,0,82,0,-18,7,26,100,74,4
+307,44,2,77,0,42,-21,33,35,2,1
+308,45,-4,100,0,44,0,55,56,2,1
+309,48,-1,86,0,46,-11,38,40,2,1
+310,55,0,89,0,56,29,34,32,0,1
+311,49,1,86,0,50,2,37,37,0,1
+312,45,0,83,8,44,-3,38,39,2,1
+313,37,0,95,4,10,0,58,84,26,1
+314,46,2,87,0,46,1,41,41,0,1
+315,53,0,79,0,52,-22,26,27,2,1
+316,37,0,79,0,0,-12,42,79,36,1
+317,55,0,82,-7,-24,0,26,108,82,4
+318,41,0,87,-4,38,-10,46,48,2,1
+319,55,0,77,5,30,0,22,46,24,4
+320,37,0,76,8,26,8,39,50,12,1
+321,37,0,108,0,34,13,71,75,4,1
+322,79,0,83,0,-42,21,4,127,122,5
+323,44,0,83,0,42,-11,39,41,2,1
+324,40,-2,86,0,38,0,46,48,2,1
+325,55,0,82,0,54,889,26,28,2,1
+326,55,0,80,0,54,0,25,26,2,1
+327,45,0,79,0,44,-20,34,35,2,1
+328,49,2,87,0,46,-6,38,41,2,1
+329,74,5,79,10,-42,0,4,123,118,5
+330,46,3,80,0,46,0,34,34,0,1
+331,52,-5,86,0,52,-2,33,34,0,1
+332,41,-5,100,2,42,0,59,59,0,1
+333,82,0,86,0,-40,16,4,128,124,5
+334,42,0,82,-7,42,0,40,41,0,1
+335,49,-1,80,0,50,7,31,31,0,1
+336,37,0,79,-4,36,0,41,43,2,1
+337,44,0,79,0,42,-23,35,37,2,1
+338,45,0,86,-1,44,4,40,42,2,1
+339,57,-2,80,0,56,0,23,23,0,1
+340,37,0,106,3,36,0,69,70,2,1
+341,43,0,82,-6,42,-4,39,41,2,1
+342,47,1,86,0,46,0,40,40,0,1
+343,44,0,81,0,42,-25,37,39,2,1
+344,54,-5,88,0,54,0,34,34,0,1
+345,57,5,92,0,56,0,35,35,0,1
+346,37,0,76,0,34,5,40,43,2,1
+347,41,0,79,3,38,-4,39,41,2,1
+348,49,1,84,0,46,-9,35,37,2,1
+349,51,3,85,0,50,-12,34,36,2,1
+350,38,0,75,0,36,-24,37,39,2,1
+351,56,0,81,0,-6,13,25,89,64,4
+352,37,3,108,0,36,0,71,72,0,1
+353,55,0,77,0,-24,7,21,103,82,4
+354,56,2,97,6,52,0,40,45,4,4
+355,56,0,78,0,6,0,22,73,50,4
+356,80,0,84,6,-36,29,5,121,116,5
+357,52,-1,81,0,52,-1,28,29,0,1
+358,55,0,96,0,52,-15,41,44,4,4
+359,37,0,81,-1,30,0,45,50,6,1
+360,48,-3,83,0,46,0,34,36,2,1
+361,56,0,76,0,-14,14,20,92,72,4
+362,55,0,78,0,6,2,23,73,50,4
+363,46,1,86,3,46,0,40,39,0,1
+364,45,1,90,0,44,0,45,46,0,1
+365,37,0,108,1,36,5,71,72,0,1
+366,45,0,77,8,44,0,32,33,2,1
+367,55,0,87,-1,56,23,32,30,0,1
+368,45,-1,109,0,44,0,64,66,2,1
+369,37,0,79,-4,30,0,42,48,6,1
+370,51,0,84,0,52,0,33,32,0,1
+371,37,0,76,3,36,0,39,40,0,1
+372,37,0,97,0,26,-12,60,71,12,1
+373,79,0,83,-1,-40,7,4,124,120,5
+374,47,-2,90,-2,46,0,43,43,0,1
+375,49,0,77,0,46,-10,28,30,2,1
+376,37,0,79,-1,26,-4,42,53,10,1
+377,56,0,86,0,56,2,31,30,0,1
+378,55,0,93,-1,10,-3,37,82,46,4
+379,42,0,84,8,42,0,43,43,0,1
+380,37,0,97,-2,34,5,60,64,4,1
+381,37,0,79,0,16,14,42,63,22,1
+382,81,5,85,0,-12,0,4,98,94,5
+383,45,0,80,-2,44,0,35,36,0,1
+384,46,1,83,0,44,-25,37,39,2,1
+385,48,0,88,2,46,0,40,42,2,1
+386,107,5,108,1,72,6,1,36,34,5
+387,37,-2,77,0,36,0,41,41,0,1
+388,55,0,99,8,42,-1,43,57,14,4
+389,55,1,86,1,54,0,31,32,2,1
+390,45,0,83,0,46,15,37,36,0,1
+391,56,-3,87,1,56,0,31,30,0,1
+392,56,0,96,0,52,-16,40,44,4,4
+393,37,0,75,0,28,10,38,46,8,1
+394,49,-2,88,0,46,-28,39,41,2,1
+395,44,0,83,8,44,0,38,39,0,1
+396,37,0,78,0,24,24,42,55,14,1
+397,43,0,80,3,42,-17,37,39,2,1
+398,41,0,78,0,38,-1,37,39,2,1
+399,47,-3,75,0,46,0,28,28,0,1
+400,55,-2,80,-5,20,-11,25,59,34,4
+401,50,-1,88,0,50,0,38,39,2,1
+402,37,0,100,0,34,-23,64,67,4,1
+403,55,0,79,0,20,9,23,58,34,4
+404,56,0,77,-3,24,0,22,54,32,4
+405,45,1,81,0,44,-3,35,37,2,1
+406,52,-1,81,0,52,-2,28,29,0,1
+407,38,0,81,0,38,9,43,42,0,1
+408,55,0,77,0,28,-4,21,48,28,4
+409,43,0,76,6,42,-5,33,35,2,1
+410,38,0,82,0,38,6,44,43,0,1
+411,82,0,85,0,-6,5,3,93,90,5
+412,43,1,77,0,42,0,35,36,2,1
+413,56,0,81,2,54,-24,24,26,2,1
+414,46,3,78,0,44,-25,32,34,2,1
+415,37,0,79,0,28,10,42,50,8,1
+416,44,0,77,4,44,0,33,34,0,1
+417,47,-3,76,0,46,0,29,30,0,1
+418,43,0,86,-3,42,-2,42,44,2,1
+419,44,0,88,0,44,3,45,44,0,1
+420,55,0,95,0,46,-3,40,49,8,4
+421,37,1,83,0,36,0,45,46,2,1
+422,37,0,77,0,6,-22,40,72,32,1
+423,44,0,83,0,44,3,39,39,0,1
+424,41,1,76,0,42,17,35,35,0,1
+425,44,1,86,0,44,12,43,42,0,1
+426,37,0,80,5,10,0,43,70,26,1
+427,48,2,77,0,46,0,29,30,2,1
+428,49,0,77,0,46,-7,28,30,2,1
+429,45,0,86,-4,46,22,41,40,0,1
+430,45,-2,83,0,44,-15,37,39,2,1
+431,39,1,77,8,38,0,39,39,0,1
+432,44,1,85,0,44,5,41,41,0,1
+433,51,3,85,0,50,-9,34,36,2,1
+434,56,-3,96,-3,56,0,40,39,0,1
+435,41,0,81,1,42,25,40,39,0,1
+436,38,4,96,0,38,14,58,57,0,1
+437,44,-1,84,0,44,2,40,40,0,1
+438,37,0,78,0,2,-10,41,75,34,1
+439,58,2,84,0,56,0,25,27,2,1
+440,50,0,101,-1,50,0,51,52,0,1
+441,44,1,82,0,44,0,38,38,0,1
+442,42,2,83,0,42,0,41,41,0,1
+443,86,2,89,0,8,4,3,81,78,5
+444,37,0,77,0,8,11,40,69,30,1
+445,49,0,77,4,50,4,28,28,0,1
+446,53,-1,77,4,54,18,25,23,0,1
+447,38,-2,76,-1,38,0,37,37,0,1
+448,51,0,88,0,52,20,37,37,0,1
+449,51,0,83,0,52,10,32,32,0,1
+450,37,0,107,0,30,3,70,76,6,1
+451,46,0,76,1,46,8,30,29,0,1
+452,46,0,88,0,44,-23,42,44,2,1
+453,40,2,81,3,38,0,41,43,2,1
+454,37,0,77,7,20,-6,41,57,16,1
+455,51,0,88,0,50,-12,37,39,2,1
+456,49,5,78,0,50,4,29,29,0,1
+457,49,-1,81,-4,50,-6,32,32,0,1
+458,52,-3,109,0,52,-1,56,57,0,1
+459,57,2,86,0,56,0,29,30,0,1
+460,49,0,77,0,46,-19,28,30,2,1
+461,41,0,81,0,42,24,40,39,0,1
+462,45,-3,81,-4,44,-27,35,37,2,1
+463,37,0,78,0,18,-18,42,60,18,1
+464,37,0,78,0,20,-20,41,57,16,1
+465,56,-1,80,-6,54,-13,24,26,2,1
+466,55,0,98,0,50,-9,42,49,6,4
+467,37,0,78,0,10,6,42,68,26,1
+468,37,0,79,0,28,19,42,50,8,1
+469,51,1,81,0,52,11,29,29,0,1
+470,37,0,90,0,34,-4,53,57,4,1
+471,52,-1,82,0,52,0,30,30,0,1
+472,53,3,86,0,52,-7,33,34,2,1
+473,49,2,86,0,46,-16,38,40,2,1
+474,49,0,79,0,46,-12,30,32,2,1
+475,56,-2,96,-1,52,0,40,44,4,4
+476,37,0,77,0,2,5,40,74,34,1
+477,55,0,79,0,20,0,24,59,34,4
+478,37,0,77,0,26,13,40,51,10,1
+479,43,0,79,5,42,0,35,37,2,1
+480,45,0,83,-1,44,-7,37,39,2,1
+481,56,0,83,0,54,-7,27,28,2,1
+482,49,0,81,0,50,4,33,32,0,1
+483,55,0,77,0,18,5,22,59,38,4
+484,40,0,97,-4,38,0,57,58,2,1
+485,55,0,83,0,-30,-5,27,114,86,4
+486,41,-3,81,0,42,18,40,39,0,1
+487,37,0,82,0,10,31,45,72,26,1
+488,43,0,90,3,42,0,46,48,2,1
+489,52,2,82,0,52,0,30,30,0,1
+490,41,0,86,0,38,-27,45,47,2,1
+491,37,0,79,0,20,31,42,58,16,1
+492,55,-1,91,0,54,-6,35,37,2,1
+493,45,0,86,1,46,20,41,40,0,1
+494,45,0,88,0,46,8,42,41,0,1
+495,37,0,106,0,26,2,68,80,12,1
+496,56,5,86,0,54,-2,30,32,2,1
+497,37,0,108,4,36,0,71,71,0,1
+498,55,0,77,0,-2,-8,21,79,58,4
+499,53,2,84,0,52,-11,31,32,2,1
+500,53,0,108,0,52,-12,55,56,2,1
+501,40,-4,109,0,38,0,70,71,2,1
+502,49,0,86,0,50,25,38,37,0,1
+503,80,0,84,5,-42,0,5,128,124,5
+504,55,0,82,0,-36,-3,26,118,92,4
+505,37,0,77,2,28,0,40,48,8,1
+506,58,-1,86,0,56,-6,27,29,2,1
+507,105,-1,106,-4,70,-5,1,36,36,5
+508,44,3,81,0,44,13,37,37,0,1
+509,51,0,77,0,50,-14,26,28,2,1
+510,56,0,95,0,46,8,40,49,10,4
+511,56,0,78,-1,44,6,22,34,12,4
+512,44,0,83,7,44,0,39,39,0,1
+513,40,-1,88,0,38,0,48,49,2,1
+514,55,0,79,0,-4,2,24,85,60,4
+515,47,-5,90,7,46,0,43,44,0,1
+516,64,-5,111,2,62,-9,47,49,2,1
+517,55,0,77,0,12,-15,22,65,42,4
+518,56,-4,81,0,54,-28,25,26,2,1
+519,55,0,95,0,54,-8,40,41,2,1
+520,37,0,80,-1,38,15,43,41,0,1
+521,41,0,79,0,42,10,38,37,0,1
+522,45,0,86,1,44,-17,41,42,2,1
+523,44,0,79,0,42,-21,35,37,2,1
+524,37,0,83,0,34,10,46,50,4,1
+525,45,0,76,-1,44,-1,31,32,2,1
+526,43,0,80,1,42,-24,37,39,2,1
+527,53,1,81,0,52,-4,28,30,2,1
+528,44,-1865,82,-2,44,-4,38,38,0,1
+529,43,-1,86,0,42,-7,43,45,2,1
+530,50,5,81,0,50,0,32,32,0,1
+531,37,0,74,0,30,22,37,43,6,1
+532,37,0,76,-4,36,0,39,39,0,1
+533,55,0,93,8,6,0,38,88,50,4
+534,43,0,80,2,44,17,37,36,0,1
+535,52,-2,86,0,52,-1,34,35,0,1
+536,45,2,90,0,44,0,45,46,2,1
+537,45,-1,81,0,44,-15,36,37,2,1
+538,56,0,97,6,54,0,41,42,2,1
+539,37,0,93,0,12,14,56,81,24,1
+540,44,0,85,0,44,0,41,41,0,1
+541,43,0,84,2,42,-2,41,43,2,1
+542,38,0,100,0,38,0,62,62,0,1
+543,37,0,76,0,20,10,40,55,16,1
+544,45,-1,79,2,46,13,33,32,0,1
+545,37,0,79,0,24,-12,43,56,14,1
+546,56,0,92,0,56,5,36,35,0,1
+547,52,0,86,8,52,0,33,34,0,1
+548,37,0,77,-3,-10,18,40,87,46,1
+549,47,4,87,-5,46,0,40,41,0,1
+550,37,0,94,1,30,-3,57,63,6,1
+551,37,0,76,0,24,25,39,52,14,1
+552,37,1,75,0,20,14,38,54,16,1
+553,53,3,86,-1,52,-12,33,34,2,1
+554,37,0,106,0,20,-22,69,85,16,1
+555,56,4,85,0,56,1,29,28,0,1
+556,48,-2,89,0,46,0,41,42,2,1
+557,46,0,90,7,46,0,44,44,0,1
+558,56,3,77,1,10,9,22,67,46,4
+559,53,0,104,0,54,3,50,49,0,1
+560,49,5,78,-7,50,2,29,29,0,1
+561,45,2,83,0,44,0,37,39,2,1
+562,45,0,90,0,46,11,44,43,0,1
+563,104,0,106,0,72,2,1,33,32,5
+564,54,0,81,-3,54,0,27,26,0,1
+565,80,0,84,0,-36,0,4,120,116,5
+566,53,0,77,0,52,-16,25,26,2,1
+567,37,-18,106,-1,34,-3,69,72,4,1
+568,45,0,80,0,44,-22,35,36,2,1
+569,37,1,109,7,26,0,71,83,12,1
+570,45,0,84,0,44,-2,38,40,2,1
+571,37,0,76,0,28,-3,40,48,8,1
+572,41,3,102,0,42,6,61,60,0,1
+573,56,4,94,0,50,0,38,45,6,4
+574,37,0,76,0,26,5,39,50,12,1
+575,37,0,106,0,34,28,69,73,4,1
+576,37,0,77,0,30,0,40,46,6,1
+577,47,4,102,0,46,0,56,56,0,1
+578,37,0,83,0,36,13,46,46,0,1
+579,62,1,109,0,60,-30,47,50,2,1
+580,56,0,77,0,-6,-24,21,85,64,4
+581,81,0,86,0,-22,15,4,109,104,5
+582,50,-4,111,3,50,0,61,62,0,1
+583,52,0,88,0,52,-2,35,36,0,1
+584,56,2,82,0,56,4,26,25,0,1
+585,55,0,92,0,-6,-14,36,99,64,4
+586,84,2,87,2,-4,0,3,92,88,5
+587,41,2,81,0,38,-18,39,42,2,1
+588,41,0,79,0,38,-11,39,41,2,1
+589,55,0,97,0,52,14,41,45,4,4
+590,47,0,83,0,46,-1,35,36,0,1
+591,37,5,79,3,0,0,41,79,38,1
+592,55,0,77,0,12,7,21,64,42,4
+593,45,-3,83,0,46,20,37,36,0,1
+594,37,-1,78,-3,12,22,42,65,24,1
+595,56,1,89,0,56,0,33,32,0,1
+596,101,0,102,0,72,8,1,29,28,5
+597,78,1,82,3,-42,0,4,126,122,5
+598,37,0,76,0,36,9,39,39,0,1
+599,44,0,108,0,44,8,64,64,0,1
+600,37,0,92,0,18,2,55,74,20,1
+601,37,0,77,7,34,-6,41,44,2,1
+602,37,1,81,-8,34,0,44,48,4,1
+603,59,0,84,0,60,9,25,24,0,1
+604,49,-4,83,0,50,0,34,34,0,1
+605,37,0,74,-2,24,-5,37,51,14,1
+606,55,5,83,0,54,0,28,28,0,1
+607,49,5,106,0,50,13,56,57,0,1
+608,56,0,84,0,54,-15,28,30,2,1
+609,106,-1,108,0,72,3,1,35,34,5
+610,55,1,82,3,54,0,27,28,0,1
+611,44,2,76,0,44,13,32,32,0,1
+612,37,0,77,0,26,-14,41,52,10,1
+613,107,1,109,5,72,1,2,36,34,5
+614,38,0,97,5,38,1,59,58,0,1
+615,37,0,78,0,6,5,41,73,32,1
+616,43,5,75,-1,42,0,32,34,2,1
+617,56,1,81,0,-10,-16,25,91,66,4
+618,56,0,97,0,54,26,40,42,2,1
+619,37,0,79,0,16,-4,43,64,22,1
+620,47,3,93,0,46,0,47,47,0,1
+621,37,-1,77,0,0,0,40,77,36,1
+622,47,0,84,-2,46,0,37,38,0,1
+623,37,4,78,0,-6,0,41,86,44,1
+624,45,2,83,0,44,0,39,39,0,1
+625,48,0,78,0,50,24,30,29,0,1
+626,56,0,76,0,-12,25,20,89,68,4
+627,37,0,83,0,16,-2,47,68,22,1
+628,55,0,77,-1,-10,0,21,87,66,4
+629,37,-1,81,-4,36,-13,43,44,2,1
+630,37,0,83,0,-4,-1,46,88,42,1
+631,47,1,79,5,46,0,32,32,0,1
+632,57,-4,86,0,56,0,30,30,0,1
+633,46,-1,82,0,46,0,36,35,0,1
+634,37,0,83,0,2,-19,46,80,34,1
+635,61,0,111,-3,60,0,50,51,2,1
+636,59,0,87,0,56,-6,28,30,2,1
+637,40,2,79,0,38,0,38,40,2,1
+638,102,2,103,1,72,29,1,31,30,5
+639,46,0,81,7,46,2,35,35,0,1
+640,37,0,77,0,34,-1,40,43,2,1
+641,56,0,77,0,46,15,22,31,10,4
+642,37,0,79,0,8,-10,43,72,28,1
+643,44,1,84,0,42,-24,41,43,2,1
+644,37,0,106,6,24,-18,69,83,14,1
+645,37,0,76,-1,36,-18,39,40,2,1
+646,37,0,79,0,8,1,42,71,30,1
+647,79,2,83,0,-46,0,4,129,126,5
+648,55,0,77,0,-18,-12,21,95,74,4
+649,37,0,77,-4,10,0,41,67,26,1
+650,45,0,82,0,44,-20,37,38,2,1
+651,42,-3,85,0,42,0,43,44,0,1
+652,55,-2,85,0,54,-6,30,31,2,1
+653,46,-1,86,-5,46,-8,40,39,0,1
+654,56,-1,95,0,46,1,40,49,10,4
+655,50,0,79,-7,50,0,30,30,0,1
+656,83,0,87,7,-6,-18,4,95,90,5
+657,56,0,97,0,50,13,41,48,6,4
+658,41,1,77,0,38,-3,37,39,2,1
+659,42,5,77,0,42,0,35,36,2,1
+660,46,0,81,1,46,7,35,35,0,1
+661,46,-3,93,3,46,6,47,46,0,1
+662,37,0,76,-1,26,-14,39,50,10,1
+663,42,0,80,-1,42,0,38,39,2,1
+664,37,0,77,0,6,16,40,72,32,1
+665,51,0,86,0,50,-6,35,37,2,1
+666,56,0,78,0,10,10,22,68,46,4
+667,55,0,93,0,46,-14,37,46,8,4
+668,37,0,75,-5,24,0,38,52,14,1
+669,37,0,92,4,8,3,55,84,30,1
+670,53,2,88,0,54,3,35,34,0,1
+671,37,0,76,0,34,-23,40,43,2,1
+672,37,0,104,1,24,0,66,80,14,1
+673,47,0,82,-3,46,0,35,35,0,1
+674,38,3,83,0,36,-26,45,46,2,1
+675,44,0,81,-6,42,-30,38,40,2,1
+676,42,4,79,0,42,0,37,38,2,1
+677,55,0,92,-6,-2,-30,36,94,58,4
+678,48,1,80,-2,46,0,32,34,2,1
+679,46,-5,83,0,46,0,37,36,0,1
+680,56,0,96,1,44,8,40,52,12,4
+681,56,0,95,0,46,-11,40,49,10,4
+682,55,0,93,0,50,1,37,44,6,4
+683,82,0,86,8,-10,14,4,97,92,5
+684,51,0,84,0,50,-27,33,35,2,1
+685,43,0,81,0,44,24,38,37,0,1
+686,44,0,95,0,44,0,52,51,0,1
+687,42,-2,76,1,42,0,34,35,0,1
+688,53,0,78,0,54,1,25,24,0,1
+689,55,0,77,0,-2,-7,21,79,58,4
+690,53,0,78,0,54,24,25,24,0,1
+691,43,0,81,-2,42,-23,38,40,2,1
+692,45,0,86,5,44,-1,41,42,2,1
+693,37,0,77,0,8,-15,40,69,30,1
+694,105,-4,106,0,72,6,1,34,32,5
+695,85,-7,89,0,8,0,4,81,78,5
+696,50,5,96,0,50,0,46,47,0,1
+697,37,0,76,0,24,-13,39,52,14,1
+698,43,0,86,-2,42,-1,43,45,2,1
+699,56,1,83,0,56,0,26,26,0,1
+700,55,0,79,0,2,-26,23,76,52,4
+701,56,1,80,5,-4,0,24,85,62,4
+702,56,0,92,0,56,20,36,35,0,1
+703,40,0,110,5,38,0,70,71,2,1
+704,37,0,97,0,24,-8,60,74,14,1
+705,53,2,82,0,54,2,29,28,0,1
+706,47,5,84,-7,46,0,37,38,0,1
+707,37,0,78,0,-2,-4,42,81,40,1
+708,41,0,75,0,38,-23,34,36,2,1
+709,38,1,77,0,38,8,39,38,0,1
+710,43,0,77,-3,42,0,34,35,2,1
+711,45,-1,106,-2,44,0,61,62,2,1
+712,51,0,86,0,50,-20,35,37,2,1
+713,44,4,86,0,44,8,43,42,0,1
+714,44,0,85,0,44,10,41,41,0,1
+715,45,0,88,-2,44,-3,43,44,2,1
+716,55,0,92,0,8,-27,37,84,48,4
+717,37,0,83,0,10,5,46,72,26,1
+718,49,5,86,0,50,13,37,37,0,1
+719,38,0,79,8,38,0,41,41,0,1
+720,45,-1,88,0,44,-12,43,44,2,1
+721,45,0,79,-1,46,8,33,32,0,1
+722,82,3,86,-2,-10,14,3,96,92,5
+723,38,0,82,7,38,0,44,43,0,1
+724,44,2,81,2,44,1,37,37,0,1
+725,37,0,96,-4,20,0,59,75,16,1
+726,48,0,88,1,46,-3,40,42,2,1
+727,37,0,80,-5,34,0,43,46,4,1
+728,55,0,78,0,44,-4,23,34,12,4
+729,55,-2,99,0,50,0,43,49,6,4
+730,43,0,77,3,42,-6,34,36,2,1
+731,44,-1,77,0,44,3,33,33,0,1
+732,37,0,105,0,16,-23,68,89,22,1
+733,49,0,79,-1,50,0,30,30,0,1
+734,37,0,83,0,28,-9,46,54,8,1
+735,41,3,107,0,38,0,66,68,2,1
+736,41,-1,79,0,42,11,39,38,0,1
+737,79,2,83,0,-40,15,4,124,120,5
+738,41,0,82,-1,42,23,41,41,0,1
+739,41,0,81,0,38,-12,40,42,2,1
+740,42,-3,87,0,42,0,45,46,0,1
+741,55,1,83,-1,54,0,28,29,0,1
+742,43,3,88,-1,42,0,45,47,2,1
+743,58,0,83,8,56,0,25,26,0,1
+744,55,0,97,0,46,20,41,50,8,4
+745,46,0,80,0,46,2,34,34,0,1
+746,45,5,84,0,44,0,39,40,2,1
+747,37,0,81,0,28,3,44,52,8,1
+748,37,0,76,3,28,0,40,48,8,1
+749,37,0,79,0,8,-9,43,72,28,1
+750,55,1,81,2,54,0,25,26,2,1
+751,37,0,77,0,36,3,40,41,2,1
+752,51,1,84,0,52,17,33,32,0,1
+753,45,-10,77,0,44,-1,32,34,2,1
+754,37,-1,77,0,36,-18,39,41,2,1
+755,37,0,104,-5,28,0,67,75,8,1
+756,56,0,81,0,-10,-12,25,92,66,4
+757,52,0,88,0,52,-3,35,36,0,1
+758,48,0,78,0,46,-3,30,32,2,1
+759,56,0,78,0,10,-16,22,68,46,4
+760,41,0,81,1,42,29,40,39,0,1
+761,56,0,76,0,-12,-23,20,89,68,4
+762,56,1,96,0,54,4,40,42,2,1
+763,40,0,77,-6,38,0,38,39,2,1
+764,45,-1,79,0,44,-13,33,35,2,1
+765,37,0,93,8,26,16,55,67,12,1
+766,82,0,86,0,-4,-10,3,91,88,5
+767,37,0,107,15,28,0,70,78,8,1
+768,43,0,86,0,42,-4,42,44,2,1
+769,37,0,76,0,34,7,39,42,4,1
+770,55,0,92,0,28,-12,36,63,28,4
+771,37,0,97,1,20,-22,60,77,16,1
+772,49,2,80,0,50,3,31,31,0,1
+773,37,0,83,0,12,-14,46,70,24,1
+774,56,0,79,0,12,-2,23,66,42,4
+775,44,0,81,7,44,7,38,37,0,1
+776,57,0,92,4,56,0,34,35,0,1
+777,43,0,88,0,42,-5,44,46,2,1
+778,49,0,95,0,50,5,46,46,0,1
+779,56,0,95,0,52,10,40,44,4,4
+780,44,2,83,0,42,-27,39,41,2,1
+781,41,0,83,1,38,-6,42,44,2,1
+782,37,0,77,0,26,5,40,51,12,1
+783,47,-4,76,0,46,0,28,29,0,1
+784,56,0,79,0,0,13,24,79,56,4
+785,43,0,86,6,42,0,44,45,2,1
+786,45,0,85,0,44,12588,41,41,0,1
+787,51,0,85,3,50,0,34,36,2,1
+788,55,-4,83,0,54,0,28,28,0,1
+789,52,-1,87,1,52,-1,35,35,0,1
+790,37,0,77,0,36,31,41,41,0,1
+791,53,0,80,0,52,-18,27,28,2,1
+792,37,0,79,4,2,0,42,76,34,1
+793,43,0,88,-5,42,0,45,46,2,1
+794,49,0,86,2,50,0,37,37,0,1
+795,62,-5,112,0,62,0,50,50,0,1
+796,102,0,103,2,72,30,1,31,30,5
+797,41,-4,77,0,42,15,37,36,0,1
+798,47,-2,108,0,46,0,61,62,0,1
+799,56,0,83,0,54,-10,27,29,2,1
+800,44,0,86,-1,42,-25,42,44,2,1
+801,53,2,86,0,52,-3,33,34,2,1
+802,41,0,81,0,42,5,40,39,0,1
+803,102,0,103,0,70,-26,1,33,32,5
+804,53,2,80,0,54,9,27,26,0,1
+805,39,5,85,-3,38,0,46,46,0,1
+806,37,0,104,0,26,16,66,78,12,1
+807,83,0,86,0,-6,0,3,94,90,5
+808,47,0,90,0,46,0,43,43,0,1
+809,76,3,80,2,-42,0,4,124,120,5
+810,56,1,97,0,50,0,41,48,6,4
+811,43,0,80,0,42,-9,37,39,2,1
+812,37,0,80,0,34,2,43,46,2,1
+813,53,0,77,2,54,14,25,23,0,1
+814,37,1,76,-2,30,-4,40,45,6,1
+815,45,0,79,0,46,16,34,33,0,1
+816,37,0,78,-3,12,0,42,65,24,1
+817,52,-1,88,1,52,-3,35,36,0,1
+818,55,-1,79,-3,20,-15,24,59,34,4
+819,41,0,80,0,42,13,39,39,0,1
+820,37,0,78,1,10,-26,42,68,26,1
+821,49,1,80,0,46,-20,31,34,2,1
+822,43,0,95,-1,44,14,52,51,0,1
+823,51,-4,79,0,52,0,27,27,0,1
+824,56,0,95,0,44,13,40,51,12,4
+825,44,0,82,1,42,-30,38,41,2,1
+826,49,1,111,0,50,2,62,62,0,1
+827,53,5,86,0,52,-7,33,35,2,1
+828,37,0,83,0,10,0,46,72,26,1
+829,53,2,86,0,54,29,33,32,0,1
+830,56,0,97,0,54,18,41,42,2,1
+831,38,0,79,5,38,0,41,41,0,1
+832,64,0,111,2,62,-12,46,49,2,1
+833,56,0,97,0,54,15,41,42,2,1
+834,37,1,83,6,36,0,46,46,0,1
+835,39,0,76,-2,38,-4,37,37,0,1
+836,64,2,111,1,62,-6,46,49,2,1
+837,46,0,102,0,46,7,57,56,0,1
+838,37,0,81,0,36,-21,44,45,2,1
+839,37,0,79,0,6,4,42,74,32,1
+840,37,0,78,0,-4,23,42,83,42,1
+841,51,2,86,0,50,-22,35,37,2,1
+842,37,0,76,0,24,-6,40,53,14,1
+843,102,0,104,0,70,-10,1,34,32,5
+844,42,1,83,0,42,0,41,41,0,1
+845,85,-2,89,0,2,-4,4,86,82,5
+846,56,0,81,0,6,20,25,75,50,4
+847,43,0,88,0,44,8,45,44,0,1
+848,55,-4,81,0,-4,2,26,86,60,4
+849,37,0,78,0,-2,0,42,81,40,1
+850,41,-2,79,0,38,-9,38,40,2,1
+851,79,0,83,0,-42,1,4,127,122,5
+852,37,0,74,0,30,9,37,43,6,1
+853,37,-1,76,0,38,17,39,37,0,1
+854,37,0,97,0,18,-26,60,79,18,1
+855,38,0,86,0,38,0,48,47,0,1
+856,37,0,106,-2,26,0,69,80,12,1
+857,44,0,83,3,44,0,39,39,0,1
+858,49,0,86,0,46,-3,37,39,2,1
+859,46,-1,85,-5,46,14,39,39,0,1
+860,46,4,79,0,46,12,33,32,0,1
+861,51,4,88,0,52,13,36,36,0,1
+862,52,0,86,0,52,-14,33,34,0,1
+863,37,-1,76,0,36,-13,39,40,2,1
+864,55,-5,95,0,46,0,40,49,8,4
+865,46,0,86,0,44,-19,40,42,2,1
+866,56,0,77,0,-12,4,21,90,68,4
+867,51,-1,84,0,50,-30,33,35,2,1
+868,40,0,81,-4,38,0,41,43,2,1
+869,49,0,77,6,50,0,28,28,0,1
+870,51,-3,90,0,52,5,38,38,0,1
+871,52,0,88,1,52,0,36,37,0,1
+872,55,0,96,0,44,-9,41,52,12,4
+873,48,0,81,0,46,-3,33,35,2,1
+874,37,0,81,0,38,20,43,42,0,1
+875,55,0,96,0,46,-8,41,50,8,4
+876,47,-1,88,-6,46,-9,41,41,0,1
+877,55,0,81,0,54,-2,26,27,2,1
+878,43,0,81,-2,42,-1,37,39,2,1
+879,80,0,84,0,-24,14,4,110,106,5
+880,56,0,97,-1,46,-5,41,51,10,4
+881,41,0,83,0,42,14,42,41,0,1
+882,37,0,83,0,12,-22,46,70,24,1
+883,53,0,79,0,52,-13,26,27,2,1
+884,49,0,106,-7,50,20,57,57,0,1
+885,48,3,94,2,46,0,46,48,2,1
+886,39,2,97,0,38,0,58,59,0,1
+887,41,0,81,0,38,-27,40,43,2,1
+888,47,-2,95,-5,46,0,48,48,0,1
+889,45,0,86,6,44,0,42,42,0,1
+890,54,-1,81,0,54,-1,27,27,0,1
+891,37,0,79,0,28,11,42,50,8,1
+892,56,-2,97,0,54,4,41,42,2,1
+893,44,-1,92,-2,44,0,47,48,0,1
+894,44,4,83,0,42,-14,40,42,2,1
+895,49,3,86,0,50,22,38,37,0,1
+896,42,0,83,4,42,0,41,41,0,1
+897,50,-1,101,0,50,0,52,52,0,1
+898,47,-2,84,1,46,0,37,37,0,1
+899,37,0,82,0,16,-11,45,66,22,1
+900,40,-5,82,0,38,0,42,43,2,1
+901,45,0,76,0,46,14,31,30,0,1
+902,37,0,78,0,-2,10,41,81,40,1
+903,37,0,82,0,36,3,45,46,2,1
+904,56,0,96,-2,50,-6,40,47,6,4
+905,40,4,77,-1,38,0,38,39,2,1
+906,56,4,76,-1,-18,-10,20,94,74,4
+907,46,-1,84,-2,46,-3,38,38,0,1
+908,41,0,86,0,42,7,45,45,0,1
+909,43,-2,76,0,44,24,33,32,0,1
+910,56,4,98,0,42,-5,42,57,14,4
+911,55,0,77,0,36,-2,22,41,20,4
+912,45,-1,86,-4,46,22,40,39,0,1
+913,37,0,106,0,30,17,68,75,6,1
+914,42,2,78,0,42,0,36,37,0,1
+915,55,0,79,0,10,15,23,68,46,4
+916,47,0,84,7,46,0,38,38,0,1
+917,37,0,80,3,2,0,43,77,34,1
+918,55,-2,95,0,46,-1,40,49,8,4
+919,37,1,93,0,10,0,56,83,28,1
+920,42,5,93,0,42,1,52,52,0,1
+921,37,-70,105,0,36,-1,68,69,0,1
+922,52,0,82,0,54,23,29,28,0,1
+923,55,0,78,3,46,0,23,32,8,4
+924,37,0,100,0,30,0,64,69,6,1
+925,37,0,79,0,34,0,41,45,4,1
+926,44,4,83,0,44,8,39,39,0,1
+927,38,0,75,0,36,-30,37,39,2,1
+928,37,0,95,2,20,0,58,75,16,1
+929,43,0,75,0,42,-12,32,34,2,1
+930,55,0,81,-3,-12,0,26,94,68,4
+931,55,0,79,0,12,-3,23,66,42,4
+932,37,0,108,-14,28,0,70,79,8,1
+933,44,-1,93,2,44,0,49,50,0,1
+934,56,0,81,2,-2,0,25,83,58,4
+935,41,0,77,0,42,17,36,35,0,1
+936,44,0,81,0,44,21,37,37,0,1
+937,102,-5,104,-2,72,16,1,31,30,5
+938,47,1,84,-5,46,0,37,38,0,1
+939,53,2,88,0,54,2,35,34,0,1
+940,41,0,78,0,42,22,37,37,0,1
+941,37,0,81,-6,-2,0,44,83,40,1
+942,42,3,82,0,42,0,39,41,2,1
+943,37,-2,76,0,38,13,39,37,0,1
+944,38,-1,76,-2,38,0,37,37,0,1
+945,50,-5,78,0,50,0,28,29,2,1
+946,37,0,79,-3,20,0,43,59,16,1
+947,49,0,87,2,50,5,38,38,0,1
+948,37,0,81,0,26,5,44,55,10,1
+949,48,0,88,0,46,0,40,42,2,1
+950,38,0,86,0,38,3,48,47,0,1
+951,55,0,85,0,54,-6,30,31,2,1
+952,56,0,78,-2,26,-5,22,52,30,4
+953,59,0,86,1,56,-17,28,30,2,1
+954,51,1,81,8,50,0,30,32,2,1
+955,48,0,83,0,46,-1,34,36,2,1
+956,41,0,88,-2,38,-45,48,50,2,1
+957,46,0,81,-2,46,0,35,34,0,1
+958,53,7,79,0,42,-1,25,37,12,4
+959,55,0,98,0,50,-20,42,49,6,4
+960,41,-1,78,0,38,-19,37,39,2,1
+961,56,0,97,0,52,13,41,46,4,4
+962,55,-5,78,0,10,1,23,68,46,4
+963,56,0,78,0,10,9,22,68,46,4
+964,56,0,97,2,44,-6,41,53,12,4
+965,37,-2,76,-2,20,-4,39,55,16,1
+966,55,0,97,-7,42,0,42,56,14,4
+967,44,0,106,-6,44,4,61,62,0,1
+968,42,-3,77,0,42,0,35,36,2,1
+969,45,1,102,0,44,0,58,58,0,1
+970,55,0,93,0,38,-3,37,54,16,4
+971,45,0,84,0,46,28,38,37,0,1
+972,42,0,86,8,42,0,44,45,0,1
+973,106,-1,107,-6,70,0,1,37,36,5
+974,43,0,79,-2,42,-5,35,37,2,1
+975,56,0,97,0,54,5,40,42,2,1
+976,37,0,95,2,10,6,57,84,28,1
+977,50,-3,78,0,50,0,28,29,0,1
+978,47,1,81,0,46,0,34,35,0,1
+979,56,1,97,0,54,0,41,42,2,1
+980,40,0,79,-3,38,0,39,41,2,1
+981,37,0,75,0,34,2,38,41,2,1
+982,37,0,106,8,24,-6,68,82,14,1
+983,39,1,76,0,38,0,36,37,0,1
+984,37,0,104,0,26,-17,66,78,12,1
+985,43,-1,82,0,42,-14,39,41,2,1
+986,43,-1,86,0,42,-27,42,44,2,1
+987,41,-1,82,0,42,11,41,41,0,1
+988,45,-4,83,0,46,8,37,36,0,1
+989,43,-3,77,0,42,0,34,35,2,1
+990,37,0,77,0,28,-24,40,48,8,1
+991,37,0,75,0,30,5,38,44,6,1
+992,41,0,80,0,38,-28,39,41,2,1
+993,45,0,85,-3,44,-4,40,41,2,1
+994,37,0,97,0,34,6,60,64,4,1
+995,56,3,98,1,38,-15,42,59,18,4
+996,56,0,86,0,56,1,31,30,0,1
+997,55,0,82,7,54,-1,26,28,2,1
+998,80,-1,84,-1,-42,4,5,128,124,5
+999,41,0,81,0,42,10,40,40,0,1
+1000,48,0,87,-2,46,-3,39,41,2,1
+1001,37,0,79,-2,18,-36,43,61,18,1
+1002,55,1,83,0,54,0,29,29,0,1
+1003,53,0,85,0,52,-24,32,33,2,1
+1004,45,0,82,0,46,24,37,35,0,1
+1005,56,0,97,6,54,0,40,42,2,1
+1006,43,-1,81,0,44,14,37,37,0,1
+1007,37,0,83,6,26,0,46,57,12,1
+1008,49,1,78,0,50,1,29,29,0,1
+1009,38,1,76,0,36,-22,38,39,2,1
+1010,56,0,92,0,46,-15,36,46,10,4
+1011,46,0,78,0,46,3,32,32,0,1
+1012,48,1,88,2,46,0,40,41,2,1
+1013,56,0,77,0,0,11,21,77,56,4
+1014,49,1,106,0,50,28,58,57,0,1
+1015,43,-1,109,-6,42,-6,66,67,2,1
+1016,44,0,85,4,44,3,41,41,0,1
+1017,37,0,74,0,26,-15,38,48,10,1
+1018,37,0,80,-5,18,0,43,62,18,1
+1019,46,0,83,0,44,-27,37,39,2,1
+1020,37,0,77,0,6,-17,40,72,32,1
+1021,41,0,86,0,42,20,45,44,0,1
+1022,37,0,76,0,38,15,38,37,0,1
+1023,45,-5,87,0,44,-22,42,43,2,1
+1024,56,0,98,0,44,18,42,54,12,4
+1025,45,0,85,0,44,-10,40,41,2,1
+1026,37,-1,76,0,36,-4,39,39,0,1
+1027,51,-2,88,0,52,8,37,36,0,1
+1028,39,-1,77,5,38,0,38,38,0,1
+1029,43,0,88,0,42,-19,44,46,2,1
+1030,51,1,84,0,52,4,33,32,0,1
+1031,37,0,79,0,10,5,42,68,26,1
+1032,55,0,96,0,54,16,41,42,2,1
+1033,55,0,95,0,52,12,40,44,4,4
+1034,43,0,83,0,42,-1,39,41,2,1
+1035,82,0,86,3,-10,-30,4,96,92,5
+1036,55,0,81,0,54,-1,26,27,0,1
+1037,45,-2,82,5,44,-17,37,38,2,1
+1038,49,-4,86,0,50,0,37,37,0,1
+1039,43,0,77,-2,44,11,34,33,0,1
+1040,43,0,83,1,44,26,39,39,0,1
+1041,49,0,79,1,50,2,31,30,0,1
+1042,37,-2,77,-1,34,-5,41,44,2,1
+1043,45,-3,88,0,46,19,42,41,0,1
+1044,38,5,79,0,36,-16,42,43,2,1
+1045,55,0,80,0,-6,-29,25,88,64,4
+1046,53,1,84,0,52,-10,31,32,2,1
+1047,42,3,83,0,42,0,41,41,0,1
+1048,45,-4,83,-5,44,-7,38,39,0,1
+1049,55,0,77,0,10,6,22,67,46,4
+1050,48,2,94,2,46,0,46,48,2,1
+1051,41,0,82,-2,42,3,41,41,0,1
+1052,43,0,83,2,44,31,40,39,0,1
+1053,49,0,86,2,46,-15,38,40,2,1
+1054,82,0,86,0,-12,-28,3,99,96,5
+1055,56,0,97,0,46,-14,41,50,10,4
+1056,42,0,79,8,42,0,37,37,0,1
+1057,41,0,86,0,42,17,46,45,0,1
+1058,43,-3,76,0,42,-12,32,34,2,1
+1059,37,0,77,0,28,-14,40,48,8,1
+1060,56,1,88,0,56,0,31,31,0,1
+1061,55,0,76,0,-18,-19,21,94,74,4
+1062,45,1,80,0,44,-2,35,36,2,1
+1063,45,0,78,0,46,27,33,32,0,1
+1064,51,1,86,0,50,-24,35,37,2,1
+1065,37,0,76,5,24,0,39,52,14,1
+1066,55,0,79,0,26,7,23,53,30,4
+1067,48,-1,86,0,46,-5,37,39,2,1
+1068,45,-2,78,0,44,-13,33,34,2,1
+1069,43,0,75,0,42,-15,32,34,2,1
+1070,37,0,76,0,30,22,40,45,6,1
+1071,56,0,97,0,42,31,41,55,14,4
+1072,50,-1,81,3,50,0,32,32,0,1
+1073,56,0,107,0,54,-21,51,53,2,1
+1074,55,-4,98,-1,46,0,42,51,8,4
+1075,37,0,84,0,24,-17,47,61,14,1
+1076,37,0,95,-2,26,6,58,70,12,1
+1077,56,0,79,0,8,18,24,72,48,4
+1078,58,5,97,0,56,0,39,40,2,1
+1079,55,0,78,0,56,30,23,21,0,1
+1080,39,0,79,1,38,0,39,40,0,1
+1081,37,0,80,5,8,16,43,72,28,1
+1082,37,0,76,-1,24,4,39,52,14,1
+1083,48,0,86,-2,46,0,38,39,2,1
+1084,37,0,79,0,10,-13,42,68,26,1
+1085,45,0,87,1,44,-4,42,43,2,1
+1086,83,0,86,0,-2,0,3,88,86,5
+1087,53,0,83,0,54,6,30,29,0,1
+1088,39,-3,83,0,38,0,44,44,0,1
+1089,45,-1,76,0,46,17,30,29,0,1
+1090,37,0,106,-2,36,0,68,69,2,1
+1091,37,0,101,0,28,-5,64,73,8,1
+1092,37,0,104,0,26,11,67,78,12,1
+1093,55,0,78,0,54,0,23,24,2,1
+1094,39,-5,90,1,6,0,52,85,34,1
+1095,45,-1,81,0,46,13,36,35,0,1
+1096,53,1,77,0,54,4,24,23,0,1
+1097,59,0,87,0,56,-8,28,30,2,1
+1098,53,3,86,0,52,-4,33,35,2,1
+1099,46,0,76,1,46,4,30,29,0,1
+1100,37,0,78,0,24,20,41,55,14,1
+1101,56,0,80,0,56,16,24,23,0,1
+1102,41,1,76,0,42,7,35,35,0,1
+1103,80,0,84,0,-38,0,4,123,118,5
+1104,77,-44,107,0,62,-4,30,45,16,3
+1105,44,-2,84,0,44,2,41,41,0,1
+1106,56,0,98,0,46,1,42,51,10,4
+1107,56,-1,97,0,52,5,41,45,4,4
+1108,55,3,81,0,54,0,26,26,0,1
+1109,45,0,86,2,44,0,40,42,2,1
+1110,37,0,76,3,26,20,39,50,12,1
+1111,51,1,86,0,52,7,35,34,0,1
+1112,44,0,76,3,44,0,32,32,0,1
+1113,41,0,81,0,42,12,40,40,0,1
+1114,40,3,76,0,38,0,36,37,2,1
+1115,56,-1,97,0,36,-4,41,60,20,4
+1116,56,3,76,0,-18,-3,20,94,74,4
+1117,79,-5,83,0,-40,0,4,125,120,5
+1118,56,2,81,0,-6,-16,25,88,64,4
+1119,44,-1,77,0,42,-30,33,35,2,1
+1120,52,0,83,-1,52,0,31,32,0,1
+1121,49,0,88,0,50,6,39,39,0,1
+1122,37,0,77,0,36,7,41,41,0,1
+1123,42,-2,80,8,42,0,38,39,0,1
+1124,37,0,106,0,34,-3,69,72,4,1
+1125,55,0,79,0,12,7,23,66,42,4
+1126,37,0,84,0,30,18,47,53,6,1
+1127,55,0,81,0,56,29,26,24,0,1
+1128,41,-2,86,0,42,9,46,45,0,1
+1129,37,0,95,0,20,31,57,74,16,1
+1130,46,1,88,5,44,-20,42,44,2,1
+1131,44,4,76,0,44,0,31,32,0,1
+1132,37,0,77,0,36,12,41,41,0,1
+1133,37,0,83,0,34,8,46,49,4,1
+1134,106,0,107,0,72,7,1,35,34,5
+1135,56,0,77,0,-20,-19,21,97,76,4
+1136,39,-4,88,0,38,0,49,50,0,1
+1137,49,-1,88,0,46,-21,39,41,2,1
+1138,51,0,78,-5,52,0,27,26,0,1
+1139,45,-1,81,2,44,0,36,37,0,1
+1140,41,5,102,0,38,0,61,63,2,1
+1141,42,1,86,0,42,0,45,45,0,1
+1142,105,-1,106,-3,70,-4,1,36,36,5
+1143,49,-4,77,0,50,2,28,28,0,1
+1144,48,0,78,0,46,-7,30,32,2,1
+1145,81,4,84,0,-24,0,3,110,106,5
+1146,49,0,86,0,50,12,38,37,0,1
+1147,49,-5,79,0,50,0,30,30,0,1
+1148,52,2,102,0,52,0,50,50,0,1
+1149,56,4,91,0,-4,0,35,96,62,4
+1150,43,0,81,3,42,-7,37,39,2,1
+1151,48,-4,110,0,46,-4,62,64,2,1
+1152,80,0,84,-5,-20,0,4,105,100,5
+1153,41,0,83,0,38,-18,42,44,2,1
+1154,45,2,77,0,44,-1,32,34,2,1
+1155,37,0,83,0,-4,-2,46,88,42,1
+1156,50,5,78,0,50,0,29,29,0,1
+1157,42,-2,77,-2,42,0,35,36,2,1
+1158,45,4,86,0,44,-3,40,42,2,1
+1159,39,0,83,7,38,0,44,44,0,1
+1160,56,0,92,0,50,1,36,43,6,4
+1161,66,0,113,0,64,-20,47,48,2,1
+1162,37,0,76,0,28,-23,40,48,8,1
+1163,55,0,86,-7,54,0,31,32,2,1
+1164,37,0,80,0,8,14,43,72,30,1
+1165,39,1,77,4,38,0,38,38,0,1
+1166,41,-2,76,0,38,-19,35,37,2,1
+1167,53,0,81,0,52,-22,28,29,2,1
+1168,59,0,87,0,56,-19,28,30,2,1
+1169,56,0,95,0,56,7,39,39,0,1
+1170,41,-5,80,0,42,6,39,39,0,1
+1171,55,0,79,0,24,6,23,55,32,4
+1172,46,0,77,-2,46,1,31,30,0,1
+1173,46,0,85,0,46,21,39,39,0,1
+1174,37,0,79,0,28,4,43,51,8,1
+1175,49,-1,111,0,50,9,62,62,0,1
+1176,38,0,77,0,36,-29,40,41,2,1
+1177,44,0,81,-3,44,11,37,37,0,1
+1178,55,-1,78,0,16,-7,23,63,40,4
+1179,53,0,85,0,52,-6,32,33,2,1
+1180,44,1,81,0,44,16,37,37,0,1
+1181,36,-2,79,0,36,0,43,43,0,1
+1182,55,0,96,0,46,-20,41,50,8,4
+1183,46,2,76,0,46,0,29,29,0,1
+1184,56,5,97,0,42,0,40,55,14,4
+1185,41,4,80,0,42,13,39,39,0,1
+1186,84,0,87,-5,0,1,3,87,84,5
+1187,38,1,77,1,38,17,39,38,0,1
+1188,56,0,96,0,42,18,40,55,14,4
+1189,46,0,88,0,46,10,43,42,0,1
+1190,64,0,110,0,62,-27,46,48,2,1
+1191,45,0,79,0,46,21,33,32,0,1
+1192,45,5,86,0,44,0,42,42,0,1
+1193,37,0,80,0,34,8,43,46,4,1
+1194,46,0,76,-3,46,0,30,30,0,1
+1195,49,0,83,0,46,-30,33,36,2,1
+1196,37,0,77,0,38,25,39,38,0,1
+1197,37,0,77,0,30,23,40,46,6,1
+1198,42,0,77,-7,42,0,34,35,2,1
+1199,51,1,84,0,50,-23,33,35,2,1
+1200,52,-3,87,3,52,0,35,35,0,1
+1201,54,5,79,0,54,0,25,24,0,1
+1202,37,-27,77,0,20,0,40,57,16,1
+1203,55,0,95,0,42,-4,40,54,14,4
+1204,55,0,91,0,54,-8,35,37,2,1
+1205,41,-5,81,0,38,-30,40,43,2,1
+1206,56,0,81,8,-10,0,25,91,66,4
+1207,37,0,79,0,10,-26,43,69,26,1
+1208,55,4,81,7,54,0,26,27,0,1
+1209,45,-2,87,0,44,0,42,43,2,1
+1210,38,1,81,0,36,-19,43,44,2,1
+1211,55,-2,86,0,54,-13,31,32,2,1
+1212,41,0,79,-4,38,-6,38,40,2,1
+1213,55,0,79,-1,20,-2,23,58,34,4
+1214,41,0,87,0,38,-3,46,48,2,1
+1215,50,-5,78,0,50,0,28,29,0,1
+1216,53,3,86,0,52,-2,33,34,2,1
+1217,45,-1,86,-6,46,22,40,39,0,1
+1218,37,0,77,0,36,31,40,41,0,1
+1219,49,1,85,0,46,-3,36,39,2,1
+1220,56,1,84,0,56,11,29,28,0,1
+1221,46,0,86,-5,46,0,40,39,0,1
+1222,44,0,87,-2,44,0,43,43,0,1
+1223,39,1,79,-1,38,-2,41,41,0,1
+1224,41,0,83,0,42,4,42,41,0,1
+1225,37,0,77,4,-2,0,39,79,40,1
+1226,55,-2,86,-2,54,0,31,32,0,1
+1227,53,5,84,0,54,3,30,30,0,1
+1228,56,0,96,0,52,-28,40,44,4,4
+1229,37,0,107,0,28,-1,70,78,8,1
+1230,55,-1,108,5,54,-6,53,54,2,1
+1231,56,0,77,-5,44,0,22,34,12,4
+1232,50,-3,81,0,50,0,32,32,0,1
+1233,55,0,93,0,46,-10,37,46,8,4
+1234,49,0,88,0,46,-29,39,41,2,1
+1235,56,0,92,4,-2,0,36,95,58,4
+1236,37,0,104,0,16,-22,67,89,22,1
+1237,46,0,79,0,46,2,33,32,0,1
+1238,37,0,77,-4,-12,-4,40,90,50,1
+1239,56,-2,95,-7,42,-10,40,54,14,4
+1240,48,0,86,0,46,0,38,40,2,1
+1241,51,0,86,0,52,21,36,35,0,1
+1242,55,0,77,-4,28,-17,21,48,28,4
+1243,43,-1,87,2,42,0,44,46,2,1
+1244,47,-1,76,-4,46,-6,30,30,0,1
+1245,45,-4,88,0,44,0,43,44,2,1
+1246,56,0,81,0,-6,-1,25,88,64,4
+1247,38,0,79,-1,38,0,41,41,0,1
+1248,56,-2,95,0,52,0,40,44,4,4
+1249,53,1,78,0,54,2,25,24,0,1
+1250,39,0,81,-6,38,0,42,42,0,1
+1251,43,0,83,3,42,-2,39,41,2,1
+1252,41,-2,79,0,42,0,38,38,0,1
+1253,80,1,84,0,-24,26,4,110,106,5
+1254,37,0,80,0,6,-26,43,75,32,1
+1255,37,0,77,0,6,-11,40,72,32,1
+1256,40,1,88,0,38,0,47,49,2,1
+1257,55,0,92,-2,36,-13,37,56,20,4
+1258,41,0,88,0,42,8,47,47,0,1
+1259,49,-1,83,0,46,-27,34,37,2,1
+1260,51,4,82,0,50,0,31,33,2,1
+1261,37,0,104,-4,24,0,67,81,14,1
+1262,41,1,77,0,38,-28,36,39,2,1
+1263,39,1,86,0,38,0,47,47,0,1
+1264,41,1,76,0,42,15,35,35,0,1
+1265,55,0,76,0,-22,-1,21,99,78,4
+1266,55,0,77,-1,16,0,21,61,40,4
+1267,45,-1,86,0,44,-6,41,42,2,1
+1268,44,2,84,0,42,-19,40,43,2,1
+1269,37,0,77,0,24,15,40,54,14,1
+1270,55,0,98,-1,46,-9,42,51,8,4
+1271,45,0,77,0,44,-9,32,34,2,1
+1272,53,0,85,0,54,10,32,31,0,1
+1273,56,2,94,0,50,0,38,45,6,4
+1274,51,3,83,0,50,0,32,33,2,1
+1275,46,4,81,0,44,-17,35,37,2,1
+1276,51,0,86,0,50,-28,35,37,2,1
+1277,44,0,79,1,44,0,35,35,0,1
+1278,37,0,80,0,6,24,43,75,32,1
+1279,48,-3,86,0,46,0,38,40,2,1
+1280,45,-5,88,0,46,8,42,41,0,1
+1281,57,0,84,5,56,0,27,27,0,1
+1282,37,0,82,0,34,-19,45,48,2,1
+1283,56,0,97,0,56,2,40,40,0,1
+1284,45,0,83,0,44,-21,37,39,2,1
+1285,55,0,95,0,44,-6,40,51,12,4
+1286,44,3,86,-2,44,0,42,42,0,1
+1287,49,-1,81,0,46,-24,33,35,2,1
+1288,41,0,77,0,42,23,36,35,0,1
+1289,55,0,97,-1,46,-2,41,50,8,4
+1290,56,0,81,0,-4,-6,25,86,62,4
+1291,46,2,79,1,46,0,33,33,0,1
+1292,52,0,84,0,52,-5,32,33,0,1
+1293,42,3,89,0,42,0,47,48,2,1
+1294,37,0,95,-1,26,7,58,70,12,1
+1295,58,0,85,2,56,0,28,28,0,1
+1296,49,4,81,0,46,-14,33,35,2,1
+1297,41,4,79,0,38,-27,38,41,2,1
+1298,80,0,84,0,-24,24,4,110,106,5
+1299,42,-3,86,4,42,-1,44,44,0,1
+1300,56,0,97,0,54,27,41,42,2,1
+1301,41,0,88,0,42,18,48,47,0,1
+1302,43,0,82,0,44,23,39,38,0,1
+1303,45,3,83,0,44,0,38,39,0,1
+1304,38,3,83,-1,38,-1,44,44,0,1
+1305,56,0,77,0,-4,20,21,82,62,4
+1306,56,0,97,0,54,-22,40,42,2,1
+1307,37,0,76,-2,36,0,39,40,0,1
+1308,37,0,84,0,20,-5,47,63,16,1
+1309,45,0,88,-7,46,-53,42,41,0,1
+1310,46,2,88,0,46,2,42,41,0,1
+1311,56,3,78,0,8,-8,22,70,48,4
+1312,55,-1,97,-3,50,16,42,48,6,4
+1313,37,4,79,1,18,20,41,61,20,1
+1314,38,1,94,0,38,10,56,55,0,1
+1315,52,0,91,0,54,31,38,37,0,1
+1316,37,1,106,-7,28,0,68,77,8,1
+1317,38,2,81,0,38,0,42,42,0,1
+1318,37,0,81,0,26,-5,44,55,10,1
+1319,39,-1,91,0,6,2,52,86,34,1
+1320,37,0,79,0,16,-12,42,63,22,1
+1321,39,-6,91,0,6,21,52,86,34,1
+1322,55,-2,95,0,46,-2,40,49,8,4
+1323,42,0,87,-2,42,-4,45,46,0,1
+1324,41,0,80,-4,42,0,39,39,0,1
+1325,56,0,91,0,-4,-18,35,96,62,4
+1326,44,5,83,0,44,1,38,39,0,1
+1327,55,0,96,0,42,-13,41,55,14,4
+1328,56,0,78,4,44,0,22,34,12,4
+1329,44,0,85,0,44,4,41,41,0,1
+1330,48,-1,95,0,46,-6,47,49,2,1
+1331,42,-4,76,0,42,0,34,35,2,1
+1332,46,0,85,3,46,0,39,39,0,1
+1333,82,0,86,5,-6,2,4,94,90,5
+1334,43,0,88,0,44,20,45,44,0,1
+1335,39,-5,86,0,38,0,47,47,0,1
+1336,37,0,106,0,34,-30,69,72,4,1
+1337,49,4,82,0,50,25,33,33,0,1
+1338,55,0,97,0,46,-7,42,51,8,4
+1339,44,0,81,5,44,2,38,37,0,1
+1340,55,0,77,-1,20,-3,22,57,34,4
+1341,46,0,88,0,46,12,42,41,0,1
+1342,42,0,88,-4,42,0,46,46,0,1
+1343,43,0,80,-4,44,23,37,36,0,1
+1344,49,0,82,0,50,0,33,33,0,1
+1345,52,-3,90,-1,52,-1,37,38,0,1
+1346,37,0,104,0,26,-6,67,78,12,1
+1347,45,-44,77,0,-2,0,32,79,48,3
+1348,37,0,79,6,-6,0,42,86,44,1
+1349,76,0,81,5,-42,-25,5,125,120,5
+1350,37,0,83,0,18,9,47,65,18,1
+1351,53,4,81,-1,54,6,28,27,0,1
+1352,42,0,87,1,42,0,45,46,0,1
+1353,56,3,81,0,-20,0,25,102,76,4
+1354,37,0,80,2,36,0,43,44,0,1
+1355,52,2,81,-1,52,0,30,30,0,1
+1356,37,0,77,0,20,-2,40,56,16,1
+1357,53,0,87,-1,54,0,34,33,0,1
+1358,37,0,75,0,26,19,38,49,12,1
+1359,55,0,78,0,6,22,23,73,50,4
+1360,51,23,77,0,28,0,26,48,22,2
+1361,57,3,81,0,56,0,24,24,0,1
+1362,66,-2,109,0,68,17,43,42,0,1
+1363,49,0,84,0,46,-17,35,38,2,1
+1364,79,0,83,0,-38,13,4,122,118,5
+1365,37,0,76,-3,30,11,39,45,6,1
+1366,53,0,78,0,52,-30,25,26,2,1
+1367,46,0,79,0,44,-28,34,35,2,1
+1368,42,-4,86,0,42,0,44,44,0,1
+1369,37,0,75,4,24,-2,38,52,14,1
+1370,41,0,83,-5,38,-5,42,44,2,1
+1371,56,0,96,3,42,-20,40,55,14,4
+1372,41,0,79,0,42,11,38,37,0,1
+1373,37,0,108,-3,34,0,71,74,4,1
+1374,46,-1,79,2,46,0,34,33,0,1
+1375,37,0,81,0,-2,11,44,84,40,1
+1376,81,5,85,0,-24,0,4,111,108,5
+1377,47,-5,81,-6,46,0,33,34,0,1
+1378,46,3,77,0,46,0,31,31,0,1
+1379,41,0,108,8,38,-3,67,69,2,1
+1380,42,-4,88,1,42,0,45,46,2,1
+1381,55,4,79,0,54,0,24,25,0,1
+1382,55,0,77,0,8,-14,22,70,48,4
+1383,37,0,81,0,36,31,43,44,2,1
+1384,49,0,81,0,46,-11,33,35,2,1
+1385,85,-5,88,0,0,-2,3,88,84,5
+1386,37,0,94,1,30,-6,57,63,6,1
+1387,56,0,79,1,-4,0,24,85,62,4
+1388,49,1,77,0,46,-13,28,30,2,1
+1389,52,0,85,0,52,-10,33,33,0,1
+1390,45,1,81,0,44,-1,36,37,2,1
+1391,51,0,82,0,52,13,31,30,0,1
+1392,37,0,106,-7,28,-11,69,78,8,1
+1393,56,0,78,6,24,0,22,55,32,4
+1394,44,0,77,0,42,-30,33,35,2,1
+1395,43,0,75,-2,42,-17,32,34,2,1
+1396,45,0,83,1,44,-8,37,39,2,1
+1397,56,0,79,0,56,7,23,22,0,1
+1398,44,0,75,0,44,7,31,31,0,1
+1399,42,5,90,0,42,0,48,49,2,1
+1400,45,-5,81,0,44,0,36,37,2,1
+1401,42,0,78,-1,42,0,37,37,0,1
+1402,56,0,76,0,-4,46,20,81,62,4
+1403,42,0,79,-7,42,0,37,38,0,1
+1404,55,0,95,0,42,26,40,54,14,4
+1405,85,0,88,0,0,-30,3,88,84,5
+1406,56,0,86,0,56,0,29,29,0,1
+1407,37,-4,81,-3,34,0,44,48,4,1
+1408,45,0,83,7,46,22,38,37,0,1
+1409,37,0,81,-2,36,-4,44,44,0,1
+1410,56,-2,77,12,0,0,21,77,56,4
+1411,39,3,79,0,38,0,41,41,0,1
+1412,55,-2,80,-4,20,-8,25,59,34,4
+1413,37,0,78,0,2,-1,41,75,34,1
+1414,43,2,82,4,42,0,39,41,2,1
+1415,37,0,90,5,8,26,53,82,30,1
+1416,38,-5,79,0,38,0,41,41,0,1
+1417,43,0,86,-4,42,0,43,45,2,1
+1418,56,0,95,0,52,12,39,43,4,4
+1419,56,0,86,0,56,5,31,30,0,1
+1420,55,0,95,0,50,19,40,46,6,4
+1421,44,4,79,0,44,5,35,35,0,1
+1422,38,2,75,0,36,-8,37,39,2,1
+1423,41,0,88,0,42,7,47,46,0,1
+1424,56,0,92,0,54,16,36,38,2,1
+1425,38,0,93,0,34,17,55,59,4,1
+1426,42,0,78,-4,42,0,36,37,0,1
+1427,37,0,103,0,20,5,66,82,16,1
+1428,79,0,83,0,-42,16,4,127,122,5
+1429,37,0,77,0,34,-2,41,44,2,1
+1430,57,-4,86,0,56,0,29,30,0,1
+1431,44,0,86,0,42,-30,42,45,2,1
+1432,38,0,105,0,38,1,67,66,0,1
+1433,46,0,83,2,46,10,37,37,0,1
+1434,41,0,86,-1,42,5,45,44,0,1
+1435,44,1,83,0,44,5,40,39,0,1
+1436,42,0,87,8,42,0,45,46,2,1
+1437,37,0,104,6,24,0,66,80,14,1
+1438,55,-5,83,-4,54,0,28,28,0,1
+1439,55,0,77,0,10,3,22,67,46,4
+1440,105,0,107,3,70,0,1,37,36,5
+1441,55,0,78,0,6,28,23,73,50,4
+1442,81,0,84,0,-18,-15,3,103,100,5
+1443,53,2,86,0,54,23,33,32,0,1
+1444,75,-43,88,-1,8,0,14,81,68,3
+1445,41,1,82,0,42,16,41,41,0,1
+1446,56,3,86,0,56,1,29,29,0,1
+1447,56,0,92,0,54,-19,36,38,2,1
+1448,51,5,79,0,50,0,28,30,2,1
+1449,47,0,79,-7,46,0,32,32,0,1
+1450,53,0,88,0,54,17,35,33,0,1
+1451,44,-1,82,0,42,-21,38,41,2,1
+1452,46,0,102,0,46,8,57,56,0,1
+1453,45,0,79,-1,44,-2,34,35,0,1
+1454,45,0,78,-1,44,-5,33,34,2,1
+1455,45,-1,81,0,46,9,35,34,0,1
+1456,47,0,88,8,46,0,41,42,0,1
+1457,40,2,89,-4,38,0,49,50,2,1
+1458,37,0,82,0,18,20,45,64,18,1
+1459,55,0,77,0,38,19,22,39,16,4
+1460,82,-1,86,0,-4,-8,3,91,88,5
+1461,51,0,88,5,50,0,37,39,2,1
+1462,56,4,98,0,50,0,42,49,6,4
+1463,55,0,83,1,-30,8,27,114,86,4
+1464,37,0,79,0,34,1,42,46,4,1
+1465,37,0,76,0,20,-11,39,55,16,1
+1466,37,1,76,0,36,3,39,39,0,1
+1467,45,0,81,0,44,-20,36,37,2,1
+1468,38,-3,91,3,6,0,53,86,32,1
+1469,59,0,84,0,56,-3,25,27,2,1
+1470,54,-2,90,0,54,0,36,36,0,1
+1471,49,1,88,0,46,-28,39,41,2,1
+1472,56,0,93,0,50,0,37,44,6,4
+1473,56,0,81,0,-10,-7,25,91,66,4
+1474,41,1,77,8,42,13,36,35,0,1
+1475,37,3,77,0,36,0,40,41,2,1
+1476,56,0,95,0,56,9,40,39,0,1
+1477,45,0,76,8,44,0,32,32,0,1
+1478,41,0,83,-2,38,-2,42,44,2,1
+1479,55,-1,82,0,54,0,27,28,0,1
+1480,37,0,76,-1,38,21,39,37,0,1
+1481,45,-1,87,0,44,-18,42,43,2,1
+1482,49,1,79,2,50,3,30,30,0,1
+1483,37,0,76,0,26,-4,40,50,10,1
+1484,56,-3,97,0,54,0,41,42,2,1
+1485,37,0,76,1,24,23,39,53,14,1
+1486,37,0,76,0,28,7,39,47,8,1
+1487,56,4,81,0,56,22,25,24,0,1
+1488,45,-2,79,0,46,13,33,32,0,1
+1489,37,0,104,0,28,4,66,75,8,1
+1490,37,0,104,0,30,-16,67,73,6,1
+1491,79,0,83,5,-46,0,5,130,126,5
+1492,53,4,80,0,52,-16,27,28,2,1
+1493,82,-1,86,-3,-40,0,4,128,124,5
+1494,39,-4,79,3,38,0,40,40,0,1
+1495,56,4,81,0,56,24,25,24,0,1
+1496,45,0,102,0,44,-4,57,58,2,1
+1497,56,4,76,-1,-14,26,20,92,72,4
+1498,45,0,83,5,46,26,38,37,0,1
+1499,45,0,79,6,44,-9,34,35,2,1
+1500,56,-1,97,0,56,1,40,40,0,1
+1501,37,2,98,0,34,10,61,64,4,1
+1502,49,0,86,0,46,-22,38,40,2,1
+1503,55,-2,91,0,-4,0,35,96,60,4
+1504,55,0,86,-3,56,31,31,30,0,1
+1505,82,2,86,0,-22,12,4,109,106,5
+1506,50,3,102,0,50,0,51,53,2,1
+1507,46,0,88,9,46,0,42,42,0,1
+1508,42,0,84,0,42,-1,42,43,2,1
+1509,53,1,88,0,54,23,35,33,0,1
+1510,56,0,98,0,46,9,42,51,10,4
+1511,85,0,88,-14,0,0,3,88,84,5
+1512,45,0,86,-2,44,-12,40,42,2,1
+1513,56,0,77,0,24,18,22,54,32,4
+1514,37,0,78,0,-4,3,41,83,42,1
+1515,53,-2,86,0,52,-19,33,34,2,1
+1516,37,3,80,0,36,0,43,44,0,1
+1517,41,0,77,0,42,17,36,36,0,1
+1518,49,-5,77,0,50,11,29,28,0,1
+1519,37,-2,107,0,38,15,69,68,0,1
+1520,42,0,83,5,42,0,41,41,0,1
+1521,39,1,79,0,38,0,41,41,0,1
+1522,56,4,77,1,10,5,22,67,46,4
+1523,79,0,83,0,-30,-13,4,114,110,5
+1524,102,0,103,1,70,-9,1,33,32,5
+1525,51,0,82,7,52,4,31,30,0,1
+1526,37,0,107,-4,30,0,70,76,6,1
+1527,55,-1,81,0,-22,-4,26,105,78,4
+1528,52,-2,88,0,52,-5,36,37,0,1
+1529,56,0,77,0,-2,12,21,79,58,4
+1530,49,0,84,0,46,-10,36,38,2,1
+1531,37,0,91,0,18,0,53,73,20,1
+1532,56,0,97,1,54,0,41,43,2,1
+1533,55,0,94,1,18,-2,39,76,38,4
+1534,39,5,79,-4,38,0,40,41,0,1
+1535,38,1,76,0,38,3,38,37,0,1
+1536,55,0,95,-6,36,-18,39,59,20,4
+1537,53,1,84,0,52,-6,31,32,2,1
+1538,49,0,85,0,50,16,36,36,0,1
+1539,49,-3,78,0,46,-27,29,32,2,1
+1540,55,0,91,0,54,-5,35,37,2,1
+1541,50,-3,89,-4,50,0,39,40,0,1
+1542,38,0,76,0,36,-28,38,39,2,1
+1543,55,-3,81,0,-4,11,25,86,60,4
+1544,81,0,86,0,-24,-15,4,112,108,5
+1545,55,0,77,-1,16,-2,22,62,40,4
+1546,37,0,79,0,8,10,42,71,30,1
+1547,42,-1,85,0,42,0,43,44,2,1
+1548,55,0,79,0,12,1,23,66,42,4
+1549,37,0,104,1,18,0,67,86,18,1
+1550,54,3,78,0,54,0,24,24,0,1
+1551,37,0,77,1,34,-8,40,43,2,1
+1552,37,0,81,0,30,18,45,50,6,1
+1553,56,3,98,0,52,2,42,46,4,4
+1554,55,0,78,0,2,-12,23,75,52,4
+1555,37,0,77,0,10,-12,40,66,26,1
+1556,41,0,77,6,42,24,36,35,0,1
+1557,51,1,79,0,50,0,28,30,2,1
+1558,37,0,82,-3,-4,0,45,87,42,1
+1559,56,3,77,0,0,0,22,77,56,4
+1560,56,4,83,0,56,1,27,26,0,1
+1561,37,0,74,-1,20,-11,37,54,16,1
+1562,49,0,77,-3,50,0,28,28,0,1
+1563,82,0,86,0,-12,-1,3,99,96,5
+1564,56,0,81,0,-22,0,25,104,80,4
+1565,41,0,76,0,42,16,35,35,0,1
+1566,41,0,86,0,42,8,45,45,0,1
+1567,55,0,77,0,26,-9,22,52,30,4
+1568,43,-3,83,0,42,-16,40,42,2,1
+1569,54,-7,74,-17,0,0,20,74,54,4
+1570,56,0,99,4,46,0,42,52,10,4
+1571,52,2,88,0,52,0,37,37,0,1
+1572,37,0,105,2,16,-21,68,89,22,1
+1573,37,0,84,8,26,0,48,59,12,1
+1574,37,0,97,6,10,0,59,86,28,1
+1575,37,-4,76,0,36,-21,38,39,2,1
+1576,44,0,75,0,42,-27,31,34,2,1
+1577,83,-1,87,6,-4,0,4,92,88,5
+1578,37,0,94,0,12,-24,57,81,24,1
+1579,45,1,92,-4,44,0,48,48,0,1
+1580,37,0,77,-3,34,0,40,43,4,1
+1581,45,-2,87,0,46,12,42,41,0,1
+1582,46,0,83,0,46,7,37,36,0,1
+1583,105,0,106,0,72,0,1,34,34,5
+1584,39,0,79,0,38,-1,41,41,0,1
+1585,48,-1,108,6,46,0,59,61,2,1
+1586,37,0,83,0,34,15,46,49,4,1
+1587,55,0,79,0,24,-4,23,55,32,4
+1588,53,5,86,0,54,5,32,32,0,1
+1589,41,0,87,2,38,-20,46,48,2,1
+1590,55,5,77,0,54,0,22,23,0,1
+1591,37,0,77,0,30,29,40,46,6,1
+1592,37,-4,81,0,38,2,44,43,0,1
+1593,37,-5,108,-11,28,0,71,79,8,1
+1594,79,0,84,6,-38,0,4,123,118,5
+1595,37,0,77,0,30,-30,40,46,6,1
+1596,51,0,86,0,52,12,35,35,0,1
+1597,37,0,95,-1,18,0,58,77,18,1
+1598,37,0,77,-1,20,-5,40,56,16,1
+1599,37,0,79,0,8,0,42,71,28,1
+1600,45,0,88,0,46,23,43,42,0,1
+1601,55,0,95,0,50,-13,40,46,6,4
+1602,37,-4,76,0,36,-1,39,40,0,1
+1603,37,0,77,4,26,0,40,51,10,1
+1604,40,0,79,6,38,0,39,41,2,1
+1605,44,5,83,0,44,5,38,39,0,1
+1606,55,0,96,-1,42,0,41,55,14,4
+1607,47,0,86,0,46,0,40,40,0,1
+1608,48,0,81,6,46,0,33,34,2,1
+1609,56,0,96,1,38,-12,40,57,18,4
+1610,41,0,85,0,42,5,44,44,0,1
+1611,41,4,86,0,42,3,45,44,0,1
+1612,55,-1,91,0,54,0,36,37,0,1
+1613,56,0,81,0,-2,0,25,83,58,4
+1614,101,0,102,0,72,15,1,30,28,5
+1615,47,1,79,0,46,0,32,32,0,1
+1616,47,2,75,0,46,0,28,28,0,1
+1617,56,0,76,0,-14,8,20,92,72,4
+1618,47,-5,81,0,46,0,35,35,0,1
+1619,55,0,98,0,52,9,42,46,4,4
+1620,37,0,75,0,36,-1,37,39,2,1
+1621,37,-5,78,0,36,-1,41,42,0,1
+1622,37,1,75,0,28,0,38,46,8,1
+1623,49,0,82,0,46,-4,33,35,2,1
+1624,49,3,83,0,50,6,34,34,0,1
+1625,56,0,96,-1,50,-4,40,47,6,4
+1626,55,0,77,0,-20,-18,21,97,76,4
+1627,38,0,78,1,38,0,40,39,0,1
+1628,39,0,97,4,38,0,58,59,0,1
+1629,53,0,81,0,52,-25,28,29,2,1
+1630,51,0,89,3,52,4,38,37,0,1
+1631,37,0,77,0,-22,3,40,101,60,1
+1632,39,5,97,1,38,0,58,59,0,1
+1633,54,1,80,-6,54,0,26,26,0,1
+1634,41,4,78,0,42,10,37,37,0,1
+1635,42,2,77,0,42,0,35,36,2,1
+1636,42,3,90,1,42,0,48,49,0,1
+1637,37,0,77,-2,-12,-29,40,90,50,1
+1638,45,0,89,3,44,-7,44,45,2,1
+1639,49,0,82,0,46,-24,33,35,2,1
+1640,37,0,80,6,34,0,43,46,4,1
+1641,42,-1,77,0,42,0,34,35,2,1
+1642,37,0,78,0,2,-4,42,75,34,1
+1643,55,-5,86,0,54,0,32,32,0,1
+1644,55,0,93,0,52,5,38,42,4,4
+1645,52,0,83,-1,52,-1,31,32,0,1
+1646,56,0,97,0,52,-15,41,46,4,4
+1647,37,-1,76,0,34,0,40,43,2,1
+1648,37,-1,83,10,24,0,46,59,14,1
+1649,40,0,79,0,38,0,38,40,2,1
+1650,45,-1,81,-3,44,-14,36,37,2,1
+1651,37,0,80,0,36,10,43,44,0,1
+1652,48,-1,86,-3,46,-5,39,40,2,1
+1653,43,0,83,0,42,-20,40,42,2,1
+1654,47,0,87,-1,46,0,40,41,0,1
+1655,41,0,82,-1,42,4,41,41,0,1
+1656,59,0,86,0,60,4,28,27,0,1
+1657,56,3,97,0,54,-7,40,42,2,1
+1658,45,0,87,0,46,6,42,41,0,1
+1659,37,0,77,0,38,23,39,38,0,1
+1660,55,0,95,7,36,-4,40,59,20,4
+1661,83,0,86,0,-4,-2,4,92,88,5
+1662,79,0,84,3,-42,-8,4,128,124,5
+1663,42,-2,79,0,42,0,37,38,0,1
+1664,44,0,85,-1,44,0,41,41,0,1
+1665,44,4,85,0,44,1,41,41,0,1
+1666,57,3,87,0,56,0,30,30,0,1
+1667,41,1,86,0,42,2,45,45,0,1
+1668,43,0,106,0,42,-4,62,64,2,1
+1669,56,3,81,0,54,-13,25,26,2,1
+1670,56,0,79,6,6,0,23,74,50,4
+1671,49,2,94,0,46,-7,45,48,2,1
+1672,49,2,88,0,46,-9,40,42,2,1
+1673,56,4,86,0,54,-5,31,32,2,1
+1674,46,0,81,-2,46,11,35,34,0,1
+1675,49,-3,107,0,46,-28,58,60,2,1
+1676,56,1,99,0,50,0,43,50,6,4
+1677,38,1,79,0,38,10,41,40,0,1
+1678,53,-3,84,0,54,1,31,30,0,1
+1679,44,0,76,-1,44,3,32,32,0,1
+1680,56,0,78,6,12,0,22,65,42,4
+1681,49,1,83,0,50,1,34,34,0,1
+1682,44,0,87,-2,44,8,43,43,0,1
+1683,55,-5,96,-1,54,-5,41,42,2,1
+1684,45,0,76,7,44,-3,31,32,2,1
+1685,37,0,77,0,6,-18,40,72,32,1
+1686,43,0,84,0,44,16,41,40,0,1
+1687,44,0,77,0,42,-19,34,36,2,1
+1688,62,0,109,0,62,5,48,47,0,1
+1689,56,0,79,0,8,4,24,72,48,4
+1690,37,-5,81,2,36,0,44,44,0,1
+1691,55,0,82,4,-18,-19,26,100,74,4
+1692,45,4,79,0,44,-3,33,35,2,1
+1693,66,-5,109,0,68,11,43,42,0,1
+1694,49,0,106,0,46,-3,58,60,2,1
+1695,50,-5,81,0,50,0,30,32,2,1
+1696,84,0,87,0,0,3,3,87,84,5
+1697,58,-1,86,0,56,0,28,30,2,1
+1698,55,0,95,0,46,-24,40,49,8,4
+1699,78,0,81,-2,-40,0,4,123,120,5
+1700,85,0,88,-1,2,0,3,85,82,5
+1701,37,0,90,0,26,7,52,64,12,1
+1702,55,0,98,0,44,-10,42,54,12,4
+1703,41,5,81,0,42,13,39,39,0,1
+1704,46,0,77,0,44,-22,31,33,2,1
+1705,49,0,88,1,50,29,40,39,0,1
+1706,37,0,108,-12,28,0,71,80,8,1
+1707,37,0,77,-2,38,22,39,38,0,1
+1708,38,3,76,0,38,1,38,37,0,1
+1709,51,0,84,0,52,31,34,33,0,1
+1710,55,0,79,0,24,-28,23,55,32,4
+1711,46,1,80,0,46,16,34,34,0,1
+1712,44,0,76,-1,44,5,32,32,0,1
+1713,49,-1,87,0,50,3,38,38,0,1
+1714,56,0,95,0,46,20,40,49,10,4
+1715,39,-4,78,0,38,0,39,39,0,1
+1716,41,0,81,7,38,-9,40,42,2,1
+1717,56,0,78,8,0,0,22,78,56,4
+1718,45,0,83,-1,46,21,37,36,0,1
+1719,49,0,110,-1,46,-5,61,64,2,1
+1720,40,0,84,5,38,0,44,45,2,1
+1721,55,0,98,0,50,28,42,49,6,4
+1722,48,-2,95,0,46,0,47,49,2,1
+1723,41,0,83,0,42,17,42,41,0,1
+1724,55,0,81,-2,-14,-27,26,97,70,4
+1725,43,0,76,0,42,-16,33,35,2,1
+1726,37,0,76,0,18,-15,40,58,18,1
+1727,46,0,93,0,46,0,48,47,0,1
+1728,43,0,76,-1,42,-15,33,35,2,1
+1729,39,-3,97,0,38,0,58,59,0,1
+1730,51,4,86,0,52,9,35,35,0,1
+1731,44,2,79,0,42,-14,35,37,2,1
+1732,43,0,83,0,42,-13,40,42,2,1
+1733,41,-1,83,0,38,-23,41,44,2,1
+1734,45,-3,79,0,46,15,33,32,0,1
+1735,56,1,79,-1,-4,0,24,85,62,4
+1736,37,0,82,0,34,-16,45,48,4,1
+1737,37,0,79,0,8,-18,42,71,28,1
+1738,37,5,80,5,-2,0,43,83,40,1
+1739,37,3,75,7,34,0,37,41,4,1
+1740,37,0,77,0,10,16,40,66,26,1
+1741,55,-3,98,0,46,4,42,51,8,4
+1742,37,0,77,0,6,-4,40,72,32,1
+1743,56,4,74,0,-2,17,18,77,58,4
+1744,41,0,79,-1,38,-10,38,40,2,1
+1745,37,0,95,-2,16,10,58,80,22,1
+1746,42,4,84,0,42,0,41,43,2,1
+1747,85,0,88,0,0,-15,3,88,86,5
+1748,44,1,86,0,44,12,42,42,0,1
+1749,54,0,81,-2,54,12,27,26,0,1
+1750,56,0,81,0,-18,2,25,99,74,4
+1751,37,0,76,-3,20,-4,39,55,16,1
+1752,45,0,85,-4,44,0,40,41,2,1
+1753,45,0,84,0,44,-2,39,41,2,1
+1754,49,-5,83,0,50,5,34,34,0,1
+1755,41,1,83,0,38,-6,42,44,2,1
+1756,37,0,83,0,12,-13,46,70,24,1
+1757,55,-2,95,0,44,14,40,51,12,4
+1758,42,4,108,-2,42,-2,66,66,0,1
+1759,48,0,85,0,50,25,37,36,0,1
+1760,43,-5,79,-1,42,0,36,37,2,1
+1761,49,0,81,0,50,12,32,32,0,1
+1762,42,-3,76,0,42,0,34,34,0,1
+1763,37,0,92,1,6,-19,54,86,32,1
+1764,45,0,79,-1,46,7,33,32,0,1
+1765,41,0,88,0,42,2,47,47,0,1
+1766,43,0,80,-1,44,10,37,36,0,1
+1767,57,11,73,11,0,3,16,73,56,4
+1768,54,-3,76,-21,-2,11,22,79,56,4
+1769,49,0,83,0,50,30,34,34,0,1
+1770,37,0,94,0,12,-10,57,81,24,1
+1771,55,0,95,0,54,22,40,41,2,1
+1772,51,0,79,0,50,-17,27,30,2,1
+1773,46,0,79,3,46,5,34,33,0,1
+1774,43,0,96,0,42,-4,53,55,2,1
+1775,56,0,78,5,24,-5,22,55,32,4
+1776,39,0,79,-3,38,0,40,40,0,1
+1777,37,0,96,-3,12,0,59,83,24,1
+1778,44,0,88,-3,44,0,44,44,0,1
+1779,53,0,88,0,52,-2,35,37,2,1
+1780,55,3,77,0,54,0,22,23,2,1
+1781,63,0,111,5,62,0,48,49,0,1
+1782,56,0,81,0,-20,25,25,102,76,4
+1783,41,0,79,5,42,10,38,38,0,1
+1784,78,0,82,-4,-40,0,4,123,120,5
+1785,37,0,80,0,0,13,43,80,36,1
+1786,82,0,86,1,-6,2,4,94,90,5
+1787,37,0,97,-4,26,-2,60,71,12,1
+1788,41,0,83,-3,38,-14,42,44,2,1
+1789,55,0,77,0,8,-1,22,70,48,4
+1790,48,0,81,5,46,0,33,34,2,1
+1791,41,0,82,0,42,29,41,41,0,1
+1792,41,0,85,0,42,0,44,44,0,1
+1793,37,0,81,0,20,-27,44,60,16,1
+1794,51,4,78,0,50,0,27,29,2,1
+1795,53,0,88,0,54,0,34,33,0,1
+1796,55,0,78,0,16,-6,23,63,40,4
+1797,40,0,88,0,38,0,47,49,2,1
+1798,37,0,80,0,30,15,43,49,6,1
+1799,46,0,75,-1,46,-1,29,28,0,1
+1800,43,-1,79,1,44,25,35,35,0,1
+1801,57,0,81,-1,56,-2,24,24,0,1
+1802,37,0,92,0,20,2,55,71,16,1
+1803,39,5,75,0,38,0,36,36,0,1
+1804,47,0,78,8,46,0,31,32,0,1
+1805,41,0,80,0,38,-4,39,41,2,1
+1806,42,23,77,0,28,0,34,48,14,2
+1807,48,2,84,0,46,0,37,38,2,1
+1808,45,0,81,-6,44,0,37,37,0,1
+1809,51,0,77,0,50,-22,26,28,2,1
+1810,50,-1,83,0,50,0,33,34,2,1
+1811,43,0,78,-2,42,0,35,37,2,1
+1812,37,0,76,0,26,-12,39,50,10,1
+1813,37,0,80,1,12,-26,43,67,24,1
+1814,37,0,77,0,8,7,40,69,30,1
+1815,44,0,81,-1,44,10,38,37,0,1
+1816,37,0,76,-2,24,-5,39,52,14,1
+1817,47,-109,86,0,46,0,39,39,0,1
+1818,55,0,77,-6,0,0,21,77,56,4
+1819,56,5,83,0,54,-8,27,29,2,1
+1820,37,0,77,-1,34,-13,40,44,4,1
+1821,41,-1,106,0,38,-6,65,67,2,1
+1822,42,-1,87,-4,42,-6,45,46,0,1
+1823,37,0,104,-7,28,0,67,75,8,1
+1824,51,5,83,-1,50,0,32,33,2,1
+1825,37,0,96,4,24,-8,59,73,14,1
+1826,43,-2,79,0,42,-11,36,38,2,1
+1827,56,0,95,0,56,1,39,39,0,1
+1828,44,0,78,0,42,-15,34,37,2,1
+1829,55,0,77,0,42,17,22,36,14,4
+1830,52,2,80,0,52,0,27,28,0,1
+1831,37,0,83,-7,18,0,47,65,18,1
+1832,37,0,96,0,38,20,59,57,0,1
+1833,45,0,82,0,44,-10,37,38,2,1
+1834,56,0,76,0,-4,177,20,81,62,4
+1835,55,0,98,8,50,0,42,49,6,4
+1836,43,0,86,7,42,-6,43,45,2,1
+1837,48,-2,87,0,46,0,39,41,2,1
+1838,41,0,85,1,38,-19,44,46,2,1
+1839,41,0,88,0,42,0,47,46,0,1
+1840,44,-4,88,0,44,0,44,44,0,1
+1841,53,0,77,-5,54,12,25,23,0,1
+1842,48,0,84,-1,46,0,37,38,2,1
+1843,37,0,82,-1,36,16,45,46,2,1
+1844,41,0,85,0,38,6,44,46,2,1
+1845,37,0,97,0,36,3,59,60,2,1
+1846,39,2,102,0,38,0,63,63,0,1
+1847,56,4,89,0,54,-10,33,35,2,1
+1848,58,3,81,-4,56,0,24,24,0,1
+1849,39,-1,76,-1,38,-2,36,37,0,1
+1850,48,-1,95,0,46,-5,47,49,2,1
+1851,41,0,83,2,38,-20,42,44,2,1
+1852,43,3,76,7,42,0,32,34,2,1
+1853,53,3,81,0,54,17,28,27,0,1
+1854,37,0,108,-3,34,0,71,75,4,1
+1855,51,0,82,0,52,6,31,30,0,1
+1856,45,1,82,8,44,0,37,38,2,1
+1857,37,0,79,0,30,8,43,48,6,1
+1858,43,5,81,0,42,0,38,40,2,1
+1859,51,2,82,0,52,7,31,30,0,1
+1860,38,-3,82,3,38,0,44,43,0,1
+1861,46,4,79,0,46,13,33,32,0,1
+1862,41,0,82,0,42,17,41,41,0,1
+1863,55,-3,99,0,38,0,43,60,16,4
+1864,57,-4,92,0,56,0,35,35,0,1
+1865,37,0,97,4,10,0,59,86,28,1
+1866,41,-2,89,0,38,-17,48,50,2,1
+1867,39,0,76,-2,38,0,37,37,0,1
+1868,59,3,108,0,56,-23,49,51,2,1
+1869,49,2,78,0,50,18,29,29,0,1
+1870,41,1,82,0,42,5,41,41,0,1
+1871,37,0,108,-5,26,0,71,82,12,1
+1872,37,0,93,4,26,3,55,67,12,1
+1873,45,0,84,-1,44,0,39,40,0,1
+1874,55,4,81,5,54,0,25,26,2,1
+1875,42,0,88,6,42,0,46,46,0,1
+1876,46,-1,77,0,46,0,31,30,0,1
+1877,42,4,79,0,42,0,37,38,0,1
+1878,49,-1,84,0,50,11,36,35,0,1
+1879,54,10,95,-2,50,0,41,46,6,4
+1880,55,0,77,0,28,3,21,48,28,4
+1881,37,4,79,0,28,1,41,50,8,1
+1882,50,-4,102,0,50,0,51,53,2,1
+1883,55,1,93,0,54,0,38,39,2,1
+1884,43,0,81,-1,42,0,38,39,2,1
+1885,55,0,79,2,24,13,24,56,32,4
+1886,41,1,86,1,38,-19,45,48,2,1
+1887,37,0,78,0,-2,7,41,81,40,1
+1888,37,0,82,0,12,3,45,69,24,1
+1889,43,0,83,3,42,0,40,41,2,1
+1890,45,-2,80,0,46,14,35,34,0,1
+1891,40,3,102,0,38,0,61,63,2,1
+1892,55,0,77,0,0,-22,22,77,56,4
+1893,56,0,79,6,0,3,24,79,56,4
+1894,45,0,81,0,44,-1,36,37,2,1
+1895,82,0,86,0,-4,-14,3,91,88,5
+1896,45,1,81,0,44,-4,36,37,2,1
+1897,48,-5,110,0,46,-7,62,64,2,1
+1898,41,-3,89,0,42,11,48,48,0,1
+1899,37,0,106,-6,34,4,68,72,4,1
+1900,37,0,81,7,8,0,44,73,28,1
+1901,45,0,76,-2,44,0,31,32,2,1
+1902,39,-5,91,0,2,-14,52,88,36,1
+1903,41,-5,75,0,42,0,34,34,0,1
+1904,56,4,97,-1,46,0,41,51,10,4
+1905,37,-4,82,0,36,0,45,46,0,1
+1906,80,0,84,0,-36,-2,4,120,116,5
+1907,47,5,79,0,46,0,32,33,0,1
+1908,38,0,82,0,38,5,44,43,0,1
+1909,39,0,80,-6,38,0,41,41,0,1
+1910,45,-1,77,0,44,-15,31,33,2,1
+1911,39,-1,97,0,38,0,59,59,0,1
+1912,44,1,76,0,44,20,32,32,0,1
+1913,82,0,86,0,-22,6,4,109,106,5
+1914,49,0,86,0,50,12,37,37,0,1
+1915,48,-42,78,-7,0,0,30,78,48,3
+1916,39,0,76,2,38,0,38,37,0,1
+1917,37,2,76,0,36,14,39,40,2,1
+1918,55,0,77,0,12,4,21,64,42,4
+1919,55,0,96,0,44,24,41,52,12,4
+1920,43,0,96,0,42,2,53,55,2,1
+1921,46,-3,90,0,46,0,44,44,0,1
+1922,48,0,88,0,46,-4,40,42,2,1
+1923,37,0,80,6,2,0,43,77,34,1
+1924,56,5,95,0,44,-5,39,51,12,4
+1925,37,0,97,0,24,-23,60,74,14,1
+1926,56,-1,96,0,54,28,40,42,2,1
+1927,45,0,86,0,44,-1,41,42,2,1
+1928,46,0,75,-1,46,0,29,28,0,1
+1929,56,0,76,0,-4,1329,20,81,62,4
+1930,37,0,75,-2,20,-4,38,54,16,1
+1931,56,0,96,6,44,11,40,52,12,4
+1932,37,0,75,-7,30,1,38,44,6,1
+1933,102,3,103,2,70,-22,1,33,32,5
+1934,55,0,97,-2,46,-4,41,50,8,4
+1935,55,0,96,2,38,0,41,57,16,4
+1936,44,1,81,0,44,20,38,37,0,1
+1937,41,0,80,0,42,0,39,39,0,1
+1938,51,0,79,0,52,6,27,27,0,1
+1939,46,0,89,4,46,0,43,42,0,1
+1940,47,-1,88,0,46,0,40,41,0,1
+1941,55,0,96,3,42,-6,41,55,14,4
+1942,46,0,80,-4,46,0,34,34,0,1
+1943,43,-1,89,0,42,0,46,48,2,1
+1944,56,1,78,0,18,31,22,60,38,4
+1945,53,-1,87,0,52,-30,34,35,2,1
+1946,50,4,106,-1,50,0,57,57,0,1
+1947,46,0,81,5,46,3,35,35,0,1
+1948,44,0,81,4,44,5,37,37,0,1
+1949,49,0,106,-3,50,19,58,57,0,1
+1950,37,0,107,0,36,-6,69,71,2,1
+1951,37,0,78,0,36,-19,41,42,2,1
+1952,44,0,82,3,44,2,38,38,0,1
+1953,37,3,76,0,34,2,38,42,4,1
+1954,45,-2,81,0,44,-18,36,37,2,1
+1955,55,0,96,0,44,-13,41,52,12,4
+1956,46,-1,75,-1,46,-2,29,28,0,1
+1957,41,2,86,0,38,0,46,48,2,1
+1958,53,0,82,0,54,23,29,28,0,1
+1959,51,0,86,0,52,20,35,34,0,1
+1960,48,0,89,3,46,-7,41,42,2,1
+1961,49,0,83,8,50,3,34,33,0,1
+1962,37,0,77,0,38,23,40,39,0,1
+1963,41,0,76,0,42,2,35,35,0,1
+1964,55,0,96,2,42,-19,41,55,14,4
+1965,78,1,83,1,-40,13,4,124,120,5
+1966,41,0,83,5,42,6,41,41,0,1
+1967,48,1,88,3,46,0,40,41,2,1
+1968,55,-3,93,0,46,0,37,46,8,4
+1969,37,0,77,-3,8,0,40,69,30,1
+1970,45,-5,78,0,44,0,33,34,2,1
+1971,37,1,90,0,20,6,53,70,16,1
+1972,41,0,84,0,38,-13,44,46,2,1
+1973,37,2,77,8,36,0,39,41,2,1
+1974,48,-5,88,0,46,0,40,41,2,1
+1975,44,1,81,0,44,0,37,37,0,1
+1976,56,1,99,0,50,28,42,49,8,4
+1977,37,0,97,0,18,0,60,79,18,1
+1978,45,0,81,-2,44,-6,36,37,2,1
+1979,37,0,94,-1,16,0,57,79,22,1
+1980,43,0,79,-4,42,0,37,38,2,1
+1981,42,5,88,0,42,0,45,46,2,1
+1982,38,1,103,2,34,0,65,69,4,1
+1983,37,0,106,0,30,6,69,75,6,1
+1984,55,0,87,3,54,0,32,33,0,1
+1985,37,0,77,0,36,19,40,41,0,1
+1986,37,0,97,0,34,-22,59,63,4,1
+1987,37,0,80,0,6,-9,43,75,32,1
+1988,83,0,86,8,-2,0,4,89,86,5
+1989,45,0,85,-6,44,0,40,41,2,1
+1990,37,0,78,0,-6,-4,41,86,44,1
+1991,41,0,108,0,42,10,67,67,0,1
+1992,37,0,91,0,18,3,53,73,20,1
+1993,37,0,94,0,16,0,57,79,22,1
+1994,52,-2,88,0,52,-3,36,37,0,1
+1995,37,0,78,0,24,9,42,55,14,1
+1996,55,-1,78,-4,8,-10,23,70,48,4
+1997,56,0,97,0,54,6,40,42,2,1
+1998,71,1,75,4,-42,-9,4,119,114,5
+1999,51,0,81,2,50,-10,30,32,2,1
+2000,49,0,79,1,50,4,30,30,0,1
+2001,37,0,76,6,30,9,39,45,6,1
+2002,37,0,105,0,18,10,68,87,18,1
+2003,55,0,79,0,18,-6,23,61,38,4
+2004,56,3,96,2,52,0,40,44,4,4
+2005,37,0,77,0,28,12,40,48,8,1
+2006,56,0,97,0,52,-5,41,45,4,4
+2007,37,0,81,0,28,-4,45,53,8,1
+2008,37,0,79,-1,36,-2,42,43,0,1
+2009,51,0,78,0,52,19,27,26,0,1
+2010,41,0,79,0,42,17,38,37,0,1
+2011,55,0,97,0,46,-8,41,50,8,4
+2012,55,0,95,-3,44,0,40,51,12,4
+2013,51,1,79,0,50,-22,27,30,2,1
+2014,37,0,105,1,28,3,68,77,8,1
+2015,41,0,83,0,42,0,42,42,0,1
+2016,43,1,83,0,42,0,40,42,2,1
+2017,56,0,95,0,50,-24,40,46,6,4
+2018,45,-1,86,0,44,-24,41,42,2,1
+2019,37,0,78,0,16,11,42,63,22,1
+2020,37,-25,78,0,10,0,42,68,26,1
+2021,37,0,79,0,10,15,42,68,26,1
+2022,49,4,85,0,50,3,36,36,0,1
+2023,53,0,83,0,52,-23,30,32,2,1
+2024,49,0,81,0,46,-8,33,35,2,1
+2025,43,0,78,0,44,31,35,34,0,1
+2026,49,5,86,0,50,24,38,37,0,1
+2027,51,0,82,0,52,22,31,30,0,1
+2028,47,0,81,8,46,0,34,35,0,1
+2029,37,0,97,0,24,18,60,74,14,1
+2030,51,3,87,-1,52,16,36,35,0,1
+2031,57,-3,81,0,56,0,25,24,0,1
+2032,49,4,83,0,46,-30,34,37,2,1
+2033,55,0,78,5,10,1,23,68,46,4
+2034,42,-1,77,0,42,0,36,36,0,1
+2035,46,-4,80,-1,46,0,34,34,0,1
+2036,44,-2,89,0,44,0,45,45,0,1
+2037,38,0,92,0,18,20,54,74,20,1
+2038,56,0,79,0,0,6,23,79,56,4
+2039,53,0,104,0,54,0,50,49,0,1
+2040,37,0,77,0,36,976,39,41,2,1
+2041,37,0,76,-7,12,0,39,63,24,1
+2042,56,0,86,0,54,-11,30,32,2,1
+2043,44,0,75,-2,44,0,31,31,0,1
+2044,45,0,84,0,44,-1,40,41,2,1
+2045,47,-4,88,0,46,0,41,42,0,1
+2046,37,0,78,0,-6,-7,42,86,44,1
+2047,47,-1,106,-1,46,0,60,60,0,1
+2048,49,3,82,0,50,0,33,33,0,1
+2049,45,5,81,2,44,0,36,37,2,1
+2050,43,-3,86,-2,42,0,43,44,2,1
+2051,57,0,86,5,56,0,29,29,0,1
+2052,79,0,83,0,-46,-2,4,130,126,5
+2053,104,4,106,5,72,7,1,33,32,5
+2054,37,0,83,0,-2,-3,47,86,40,1
+2055,45,2,76,0,44,0,31,32,2,1
+2056,37,0,83,0,8,21,47,75,28,1
+2057,51,0,109,0,50,0,59,60,2,1
+2058,37,0,79,-2,0,16,42,79,36,1
+2059,37,0,77,7,36,3,40,41,0,1
+2060,49,-1,87,5,50,0,38,38,0,1
+2061,121,962,106,-2,34,-3,-15,72,88,5
+2062,37,0,93,0,16,2,55,77,22,1
+2063,41,0,77,1,38,-30,36,39,2,1
+2064,37,0,106,0,36,-16,68,69,2,1
+2065,56,0,81,0,-2,5,25,83,58,4
+2066,53,1,81,0,54,571,27,26,0,1
+2067,37,0,83,0,34,1,46,49,4,1
+2068,51,0,78,0,52,20,27,26,0,1
+2069,102,3,102,1,72,14,1,30,30,5
+2070,37,0,96,0,28,-14,59,68,8,1
+2071,56,0,77,0,-18,-10,21,95,74,4
+2072,37,2,76,5,34,0,39,43,4,1
+2073,55,-3,97,0,52,0,42,46,4,4
+2074,44,0,83,0,42,-30,39,42,2,1
+2075,51,-1,89,8,52,0,38,37,0,1
+2076,42,0,108,2,42,0,67,67,0,1
+2077,58,-4,96,0,56,0,38,39,0,1
+2078,55,0,78,0,46,10,23,32,8,4
+2079,37,0,77,-1,28,0,40,48,8,1
+2080,37,0,99,0,28,-11,61,70,8,1
+2081,56,0,79,0,16,0,23,63,40,4
+2082,56,0,77,0,46,25,22,31,10,4
+2083,37,0,77,1,36,-9,39,41,2,1
+2084,44,4,76,0,44,0,32,32,0,1
+2085,41,3,83,0,42,4,41,41,0,1
+2086,54,2,104,0,54,0,50,49,0,1
+2087,56,0,77,0,46,30,22,31,10,4
+2088,58,0,86,0,56,-1,27,29,2,1
+2089,37,0,76,-3,28,-1,39,47,8,1
+2090,56,1,87,0,56,1,31,30,0,1
+2091,37,0,80,0,36,23,43,44,2,1
+2092,55,0,98,0,50,-10,42,49,6,4
+2093,44,1,76,0,42,-22,32,35,2,1
+2094,56,0,96,1,34,-8,40,62,22,4
+2095,47,0,84,-3,46,0,38,38,0,1
+2096,83,3,86,0,-2,0,3,88,86,5
+2097,37,0,77,0,30,14,40,46,6,1
+2098,57,5,83,0,56,0,26,26,0,1
+2099,41,1,80,0,42,31,39,39,0,1
+2100,56,0,91,0,2,15,35,88,54,4
+2101,56,0,86,0,54,-30,31,32,2,1
+2102,55,-1,82,-3,-20,16,26,103,76,4
+2103,51,0,81,0,50,-8,30,32,2,1
+2104,56,0,95,0,44,15,40,51,12,4
+2105,37,0,76,-3,30,-24,39,45,6,1
+2106,55,0,77,0,16,16,22,62,40,4
+2107,82,0,85,0,-10,-18,3,95,92,5
+2108,46,0,86,0,44,-19,41,42,2,1
+2109,45,0,86,-2,44,0,41,42,0,1
+2110,55,0,97,0,50,-25,41,48,6,4
+2111,56,0,95,0,54,-22,40,41,2,1
+2112,37,0,100,0,36,-1,63,64,2,1
+2113,59,3,84,0,60,0,25,24,0,1
+2114,55,0,78,0,10,-2,23,68,46,4
+2115,37,0,80,0,36,7,43,44,2,1
+2116,49,1,81,0,46,-20,33,35,2,1
+2117,47,0,77,-2,46,-3,31,31,0,1
+2118,53,-2,83,0,54,15,30,29,0,1
+2119,42,0,86,1,42,0,44,45,2,1
+2120,103,5,104,1,72,6,1,31,30,5
+2121,37,0,79,0,12,-20,43,66,24,1
+2122,39,-3,91,0,6,16,52,86,34,1
+2123,41,0,75,0,38,-30,34,36,2,1
+2124,85,-2,89,0,2,-6,4,86,82,5
+2125,41,0,83,3,42,0,42,42,0,1
+2126,37,0,77,1,34,-10,40,43,2,1
+2127,45,4,86,0,46,25,41,40,0,1
+2128,37,0,76,-3,28,-10,39,47,8,1
+2129,37,0,92,2,12,31,54,79,24,1
+2130,55,0,77,1,-24,-19,21,103,82,4
+2131,37,0,77,0,16,9,40,61,22,1
+2132,37,0,79,1,26,0,42,53,12,1
+2133,55,0,77,0,2,-1,22,75,52,4
+2134,37,0,76,0,30,22,39,45,6,1
+2135,53,-5,86,0,54,0,33,32,0,1
+2136,40,1,79,0,38,0,39,40,2,1
+2137,41,0,97,0,42,23,56,55,0,1
+2138,37,0,78,0,18,-5,42,60,18,1
+2139,43,-1,76,83,42,-8,33,35,2,1
+2140,37,1,76,3,34,0,39,43,4,1
+2141,53,0,90,0,52,-18,37,39,2,1
+2142,49,0,76,-5,46,-8,27,30,2,1
+2143,83,0,86,0,-4,-4,4,92,88,5
+2144,37,0,81,2,24,0,44,57,14,1
+2145,56,0,81,0,-18,-6,25,99,74,4
+2146,37,0,80,0,18,-14,43,62,18,1
+2147,56,4,95,0,44,0,39,51,12,4
+2148,37,0,77,0,6,11,40,72,32,1
+2149,45,0,78,0,44,-15,33,34,2,1
+2150,55,0,77,0,36,5,22,41,20,4
+2151,37,0,78,0,8,-4,41,70,30,1
+2152,38,0,107,0,38,0,69,68,0,1
+2153,85,0,89,0,6,30,4,84,80,5
+2154,37,0,75,-6,28,0,38,46,8,1
+2155,55,0,80,0,54,-2,25,26,2,1
+2156,37,-2,76,0,36,-24,38,39,2,1
+2157,41,1,79,0,38,0,39,41,2,1
+2158,53,1,80,0,52,-1,27,28,2,1
+2159,56,0,78,0,8,-15,22,70,48,4
+2160,56,0,76,0,-12,5,20,89,68,4
+2161,37,0,76,0,26,5,40,50,10,1
+2162,56,0,95,-1,46,6,40,49,10,4
+2163,46,0,76,0,46,15,30,30,0,1
+2164,106,1,108,4,70,0,2,38,36,5
+2165,55,0,98,0,52,-6,42,46,4,4
+2166,41,0,79,-2,38,-26,38,40,2,1
+2167,37,0,78,0,6,-17,41,73,32,1
+2168,46,-1,78,-2,46,0,32,32,0,1
+2169,56,0,81,0,56,13,25,24,0,1
+2170,39,3,75,0,38,0,36,36,0,1
+2171,55,0,77,0,-10,-1,21,87,66,4
+2172,55,0,79,0,24,-2,23,55,32,4
+2173,83,0,87,0,-40,5,4,128,124,5
+2174,38,0,90,0,8,5,52,82,30,1
+2175,41,-3,77,0,42,20,36,35,0,1
+2176,58,3,83,0,56,0,26,26,0,1
+2177,55,0,79,0,16,6,23,63,40,4
+2178,56,-1,96,-1,52,-1,40,44,4,4
+2179,45,0,86,-1,44,-8,41,42,2,1
+2180,74,-11,79,-9,-40,5,4,120,116,5
+2181,37,0,100,-1,28,0,63,71,8,1
+2182,51,1,86,0,52,28,35,34,0,1
+2183,46,0,102,0,46,10,57,56,0,1
+2184,45,5,76,0,44,0,30,32,2,1
+2185,45,0,80,0,46,3,35,34,0,1
+2186,44,2,76,0,44,11,32,32,0,1
+2187,44,1,86,0,44,1,42,42,0,1
+2188,53,0,81,0,54,21,28,27,0,1
+2189,102,2,103,2,72,13,1,31,30,5
+2190,47,-2,90,-1,46,0,43,43,0,1
+2191,40,-4,86,0,38,0,45,47,2,1
+2192,37,0,106,0,34,-28,69,72,4,1
+2193,49,0,88,0,50,28,39,39,0,1
+2194,37,0,78,0,0,-2,42,78,36,1
+2195,37,0,78,0,-4,27,42,83,42,1
+2196,56,0,79,0,8,12,24,72,48,4
+2197,49,-1,83,-3,46,-16,34,37,2,1
+2198,43,0,87,0,44,22,44,43,0,1
+2199,37,2,76,0,36,5,39,39,0,1
+2200,51,1,81,0,50,-6,30,32,2,1
+2201,44,3,77,0,42,-20,33,35,2,1
+2202,49,0,83,0,46,-10,34,36,2,1
+2203,45,2,88,0,44,0,43,44,0,1
+2204,53,0,79,0,54,9,26,24,0,1
+2205,45,0,106,-1,44,0,61,62,2,1
+2206,51,0,84,0,52,22,33,32,0,1
+2207,56,0,91,0,56,6,35,34,0,1
+2208,56,0,96,0,56,9,40,39,0,1
+2209,56,0,95,0,56,9,39,39,0,1
+2210,37,0,97,0,34,10,60,64,4,1
+2211,37,0,76,-1,36,0,38,39,2,1
+2212,37,0,104,0,24,-9,66,80,14,1
+2213,37,0,93,0,30,1,56,62,6,1
+2214,51,0,78,-1,50,-11,27,29,2,1
+2215,51,0,102,0,50,-23,51,53,2,1
+2216,44,1,81,0,42,-14,37,39,2,1
+2217,56,0,77,0,-10,-4,21,87,66,4
+2218,42,0,100,8,42,0,58,59,0,1
+2219,56,2,79,0,6,0,23,74,50,4
+2220,54,-3,88,0,54,0,34,33,0,1
+2221,51,-2,79,0,50,-10,28,30,2,1
+2222,37,0,95,-4,18,0,57,77,20,1
+2223,45,0,77,3,44,0,32,34,2,1
+2224,42,5,84,0,42,0,41,43,2,1
+2225,58,0,86,-3,56,0,28,29,0,1
+2226,37,0,79,0,36,9,43,43,0,1
+2227,41,-5,81,0,42,18,41,40,0,1
+2228,47,1,86,0,46,0,39,40,0,1
+2229,37,0,77,0,30,5,40,46,6,1
+2230,41,-1,80,0,38,-13,39,41,2,1
+2231,37,0,76,-5,28,0,40,48,8,1
+2232,46,3,89,0,44,-23,43,45,2,1
+2233,44,0,88,0,42,-25,44,46,2,1
+2234,56,1,96,0,42,29,40,55,14,4
+2235,56,0,78,1,-2,-23,22,81,58,4
+2236,51,0,84,0,50,-5,34,35,2,1
+2237,37,-2,76,0,38,31,39,37,0,1
+2238,45,1,81,0,44,-4,35,37,2,1
+2239,44,0,86,0,42,-15,43,45,2,1
+2240,50,-1,84,0,50,0,34,35,0,1
+2241,46,1,87,0,46,21,41,41,0,1
+2242,56,0,97,0,52,-18,40,45,4,4
+2243,37,0,76,-4,18,-3,39,57,18,1
+2244,37,-5,77,0,20,0,40,57,16,1
+2245,37,0,104,0,24,5,67,81,14,1
+2246,37,0,79,0,24,-7,42,55,14,1
+2247,56,0,107,0,54,-18,51,53,2,1
+2248,51,0,84,0,50,-10,34,35,2,1
+2249,37,0,75,-1,28,24,38,46,8,1
+2250,37,0,79,0,24,-15,43,56,14,1
+2251,45,0,81,7,44,0,36,37,2,1
+2252,55,0,94,2,18,-3,39,76,38,4
+2253,46,1,85,-7,46,0,39,39,0,1
+2254,55,0,97,0,44,-10,41,53,12,4
+2255,64,1,113,5,62,0,49,51,2,1
+2256,76,1,81,1,-42,-19,5,125,120,5
+2257,37,0,80,0,18,13,43,62,18,1
+2258,55,0,77,0,24,-12,21,54,32,4
+2259,37,0,78,1,16,0,41,63,22,1
+2260,53,0,84,0,54,1,32,30,0,1
+2261,41,0,79,0,42,14,38,37,0,1
+2262,44,0,86,-1,44,-2,42,42,0,1
+2263,83,-31,107,0,62,-26,24,45,22,3
+2264,66,0,109,0,64,-12,43,45,2,1
+2265,55,0,79,-1,-4,0,24,85,60,4
+2266,46,0,86,2,46,7,41,40,0,1
+2267,53,0,104,3,54,7,51,49,0,1
+2268,44,0,90,-3,44,0,45,46,0,1
+2269,37,0,76,-5,28,13,39,47,8,1
+2270,37,0,92,0,24,17,55,69,14,1
+2271,55,-4,78,2,24,0,23,55,32,4
+2272,41,0,77,-3,38,-16,37,39,2,1
+2273,37,0,81,0,-4,-24,44,86,42,1
+2274,37,0,79,5,-2,0,41,81,40,1
+2275,37,0,80,1,36,-16,43,44,2,1
+2276,37,-16,80,0,34,0,43,46,2,1
+2277,42,4,77,0,42,0,34,35,2,1
+2278,53,0,79,0,52,-10,26,27,2,1
+2279,37,0,79,0,8,24,42,71,28,1
+2280,50,4,86,-1,50,0,36,37,2,1
+2281,45,0,86,0,44,-14,41,42,2,1
+2282,46,1,77,0,46,11,32,31,0,1
+2283,37,0,80,3,8,5,43,72,28,1
+2284,45,0,86,7,44,-3,41,42,2,1
+2285,48,0,83,0,46,-2,34,36,2,1
+2286,46,0,86,-2,46,0,40,39,0,1
+2287,41,0,81,0,42,7,40,39,0,1
+2288,101,0,102,0,70,-20,1,32,32,5
+2289,41,4,76,0,42,1,35,35,0,1
+2290,55,0,82,-1,-32,-6,26,115,90,4
+2291,41,0,81,-7,42,1,40,40,0,1
+2292,45,0,86,0,46,17,41,40,0,1
+2293,56,0,81,-1,-12,-12,25,94,68,4
+2294,37,-2,97,0,34,0,60,64,4,1
+2295,56,0,83,0,54,-10,27,28,2,1
+2296,48,0,77,-1,46,0,29,31,2,1
+2297,67,2,112,0,68,0,45,45,0,1
+2298,41,1,84,0,38,-19,43,45,2,1
+2299,51,-5,85,0,52,0,34,33,0,1
+2300,59,4,86,0,60,24,28,27,0,1
+2301,49,0,88,-2,50,5,40,39,0,1
+2302,56,0,81,0,-10,-6,25,92,66,4
+2303,56,0,78,-1,6,0,22,73,50,4
+2304,41,0,76,0,42,14,35,34,0,1
+2305,37,0,80,-1,36,-18,43,44,2,1
+2306,56,0,95,0,54,5,40,41,2,1
+2307,37,0,80,0,20,-25,43,59,16,1
+2308,80,0,84,0,-40,26,4,125,122,5
+2309,37,0,80,0,36,12,43,44,2,1
+2310,43,0,79,-2,42,-4,35,37,2,1
+2311,48,0,83,-2,46,-4,35,37,2,1
+2312,55,0,79,0,26,19,23,53,30,4
+2313,39,1,77,5,38,0,38,38,0,1
+2314,37,0,75,0,24,-14,38,52,14,1
+2315,48,0,88,-7,46,0,40,41,2,1
+2316,46,-3,83,0,46,0,37,37,0,1
+2317,49,-1,84,0,46,-20,36,38,2,1
+2318,37,0,93,2,18,26,55,75,20,1
+2319,37,0,74,0,26,-8,38,48,10,1
+2320,56,0,96,0,34,-12,40,62,22,4
+2321,56,0,78,0,6,-1,22,73,50,4
+2322,37,0,74,0,28,14,38,46,8,1
+2323,37,0,103,-3,28,0,66,75,8,1
+2324,55,0,77,0,0,0,21,77,56,4
+2325,49,0,86,0,50,17,37,37,0,1
+2326,47,5,79,3,46,0,31,32,0,1
+2327,83,0,86,-2,-4,2,3,92,88,5
+2328,81,0,84,0,-18,2,4,103,98,5
+2329,37,0,79,0,10,-19,43,69,26,1
+2330,51,-3,77,0,52,0,26,26,0,1
+2331,37,0,77,0,-22,0,40,101,60,1
+2332,39,0,80,1,38,0,41,41,0,1
+2333,43,-4,86,3,42,-20,43,45,2,1
+2334,46,-1,79,2,46,0,33,32,0,1
+2335,37,1,74,0,34,0,37,41,4,1
+2336,45,0,90,0,46,17,44,43,0,1
+2337,37,0,78,0,-4,-8,42,83,42,1
+2338,39,0,77,3,38,0,38,38,0,1
+2339,37,0,77,8,34,0,41,44,2,1
+2340,56,0,77,0,16,-20,22,62,40,4
+2341,37,-4,82,0,38,4,45,43,0,1
+2342,42,2,76,2,42,0,34,35,2,1
+2343,37,0,80,0,6,-17,43,75,32,1
+2344,39,5,78,2,38,0,39,39,0,1
+2345,37,0,76,0,26,-28,39,50,10,1
+2346,44,0,86,-3,44,4,42,42,0,1
+2347,38,0,78,4,38,0,40,39,0,1
+2348,56,0,97,0,46,3,41,51,10,4
+2349,42,0,85,-1,42,0,43,44,0,1
+2350,41,0,79,2,38,-5,39,41,2,1
+2351,46,0,86,3,46,1,41,40,0,1
+2352,43,-5,77,1,44,13,34,34,0,1
+2353,102,0,102,-5,70,-11,1,33,32,5
+2354,40,2,93,0,38,0,53,55,2,1
+2355,37,0,80,0,36,9,43,44,2,1
+2356,68,0,110,-3,68,0,42,43,0,1
+2357,53,0,86,0,54,24,33,32,0,1
+2358,46,0,86,-6,46,1,41,40,0,1
+2359,37,0,78,7,26,-5,42,52,10,1
+2360,49,0,84,0,46,-29,35,37,2,1
+2361,56,0,86,8,56,0,30,30,0,1
+2362,45,0,85,0,44,-6,40,41,2,1
+2363,56,0,95,1,44,10,40,51,12,4
+2364,49,0,83,0,46,0,34,37,2,1
+2365,55,0,83,4,54,0,28,29,2,1
+2366,58,2,86,-1,56,0,28,29,0,1
+2367,47,-8,83,-3,46,-5,36,37,0,1
+2368,37,0,80,0,24,15,43,57,14,1
+2369,49,5,83,0,50,17,34,33,0,1
+2370,42,0,79,-5,42,0,37,38,0,1
+2371,37,-21,75,0,28,15,38,46,8,1
+2372,56,2,97,0,52,-3,40,45,4,4
+2373,55,0,95,0,46,28,40,49,8,4
+2374,37,0,79,6,-2,0,42,82,40,1
+2375,57,-5,80,-3,56,0,23,23,0,1
+2376,41,2,79,0,38,-13,38,40,2,1
+2377,79,-1,83,0,-32,132,4,117,112,5
+2378,37,0,98,0,34,22,61,64,4,1
+2379,37,-1,82,0,38,15,45,43,0,1
+2380,46,0,85,-4,46,1,39,39,0,1
+2381,37,-4,106,-8,30,-10,69,75,6,1
+2382,40,-4,82,0,38,0,42,43,2,1
+2383,38,0,94,0,34,0,56,61,4,1
+2384,55,0,84,0,54,0,29,30,0,1
+2385,37,0,109,0,36,-4,71,73,2,1
+2386,44,0,86,0,42,-23,42,44,2,1
+2387,53,-1,86,0,52,-27,33,35,2,1
+2388,39,0,79,-6,38,0,40,40,0,1
+2389,51,0,90,0,50,-7,39,41,2,1
+2390,45,0,83,1,46,17,37,36,0,1
+2391,43,0,86,0,44,25,42,42,0,1
+2392,55,2,86,0,54,0,30,32,2,1
+2393,46,0,77,2,46,8,32,31,0,1
+2394,37,0,80,0,34,24,43,46,2,1
+2395,55,-2,98,0,46,12,42,51,8,4
+2396,41,0,79,0,42,20,39,38,0,1
+2397,56,0,78,9,0,1,22,78,56,4
+2398,46,0,86,0,46,3,40,39,0,1
+2399,48,0,100,0,46,0,53,54,2,1
+2400,55,-1,98,0,52,12,42,46,4,4
+2401,45,0,81,0,44,-2,36,37,2,1
+2402,37,-4,79,0,34,0,42,46,4,1
+2403,37,0,77,0,34,26,40,43,4,1
+2404,56,0,92,8,50,0,36,43,6,4
+2405,37,2,79,3,0,0,42,79,38,1
+2406,43,0,76,14,44,26,33,32,0,1
+2407,53,-2,82,0,54,0,29,28,0,1
+2408,81,0,84,0,-22,-10,4,108,104,5
+2409,56,0,92,0,54,21,36,38,2,1
+2410,37,0,96,5,26,14,59,70,12,1
+2411,41,-1,86,0,42,6,46,45,0,1
+2412,49,4,106,0,50,28,58,57,0,1
+2413,48,-4,109,0,46,0,62,63,2,1
+2414,38,1,79,0,38,14,41,40,0,1
+2415,46,1,79,0,46,8,33,32,0,1
+2416,46,-1,75,-2,46,-4,29,28,0,1
+2417,79,5,83,0,-46,0,4,129,126,5
+2418,41,0,79,-1,42,1,38,38,0,1
+2419,55,0,92,0,-4,-3,36,97,60,4
+2420,44,1,77,6,44,1,33,33,0,1
+2421,41,1,79,0,38,-7,38,40,2,1
+2422,37,0,76,0,24,23,40,53,14,1
+2423,46,1,89,0,46,3,43,42,0,1
+2424,56,0,77,0,-10,0,21,87,66,4
+2425,56,0,86,1,56,16,31,30,0,1
+2426,46,2,102,0,46,4,57,56,0,1
+2427,41,2,84,0,42,11,43,43,0,1
+2428,56,0,78,3,24,0,22,55,32,4
+2429,49,0,107,8,50,0,58,58,0,1
+2430,47,0,86,5,46,0,39,40,0,1
+2431,55,2,91,1,54,0,36,37,0,1
+2432,49,2,86,0,50,23,38,37,0,1
+2433,43,0,84,0,42,-18,41,43,2,1
+2434,37,0,76,0,30,9,39,45,6,1
+2435,37,0,107,0,28,-16,70,78,8,1
+2436,37,0,77,1,24,0,40,54,14,1
+2437,38,0,77,0,38,6,39,38,0,1
+2438,37,0,90,0,24,17,52,66,14,1
+2439,49,0,83,0,50,0,33,33,0,1
+2440,37,0,81,8,12,0,45,68,24,1
+2441,37,0,80,0,12,15,43,67,24,1
+2442,56,0,77,0,-20,-3,21,97,76,4
+2443,37,0,79,0,24,-16,43,56,14,1
+2444,45,-1,87,0,44,-17,42,43,2,1
+2445,47,4,77,0,46,0,30,31,0,1
+2446,37,0,77,8,24,10,41,54,14,1
+2447,52,4,88,-1,52,-2,36,36,0,1
+2448,52,-4,87,0,52,0,35,35,0,1
+2449,56,0,80,0,-2,-8,24,83,58,4
+2450,55,0,82,0,-36,5,26,118,92,4
+2451,41,0,81,1,38,-8,40,42,2,1
+2452,56,0,91,0,-2,17,35,93,58,4
+2453,56,0,77,0,-22,-9,21,100,80,4
+2454,37,0,77,5,36,-8,40,41,2,1
+2455,50,1,78,-3,50,0,28,29,0,1
+2456,55,3,87,-6,54,0,32,33,2,1
+2457,41,4,77,0,38,-25,36,39,2,1
+2458,37,0,95,0,28,4,58,67,8,1
+2459,45,-2,76,0,44,0,31,32,0,1
+2460,56,0,96,0,52,3,40,44,4,4
+2461,56,0,96,0,36,13,40,60,20,4
+2462,37,0,77,0,2,-20,40,74,34,1
+2463,55,0,97,0,44,-7,41,53,12,4
+2464,56,-2,99,4,38,-4,43,60,18,4
+2465,38,1,79,0,38,23,41,40,0,1
+2466,56,0,84,0,56,5,28,27,0,1
+2467,45,-4,88,0,44,-14,42,44,2,1
+2468,45,0,84,0,46,19,38,37,0,1
+2469,79,0,84,0,-42,-24,4,128,124,5
+2470,54,2,78,0,54,0,24,24,0,1
+2471,37,0,93,0,12,26,56,81,24,1
+2472,50,3,78,-5,50,0,29,29,0,1
+2473,50,3,81,0,50,0,31,32,2,1
+2474,37,0,81,4,36,0,44,45,0,1
+2475,55,0,77,0,-6,-8,21,85,64,4
+2476,49,0,86,0,46,-15,38,40,2,1
+2477,37,0,80,5,2,0,43,77,34,1
+2478,43,-1,81,0,42,-5,38,40,2,1
+2479,82,0,86,0,-10,29,3,96,92,5
+2480,48,0,84,-7,46,0,36,37,2,1
+2481,46,0,86,1,44,-19,41,42,2,1
+2482,54,0,88,-7,54,0,35,34,0,1
+2483,45,-2,82,-1,44,-21,37,38,2,1
+2484,49,1,84,0,46,-3,36,38,2,1
+2485,53,1,86,-3,54,3,32,32,0,1
+2486,55,0,82,1,54,1,26,28,2,1
+2487,38,-3,76,-1,38,0,37,37,0,1
+2488,55,0,78,0,6,4,23,73,50,4
+2489,56,0,97,6,50,0,41,48,8,4
+2490,77,-4,81,0,-40,91,4,123,118,5
+2491,37,0,96,0,30,8,59,65,6,1
+2492,37,0,95,-3,16,3,58,79,22,1
+2493,40,0,80,-4,38,0,40,41,2,1
+2494,55,0,95,0,42,-2,40,54,14,4
+2495,37,0,76,1,36,0,39,39,0,1
+2496,46,4,107,-2,46,1,61,60,0,1
+2497,105,3,106,1,72,5,1,33,32,5
+2498,56,0,96,-1,50,-3,40,47,6,4
+2499,37,0,77,0,2,-21,40,74,34,1
+2500,53,0,87,-4,52,-7,34,35,2,1
+2501,55,0,92,0,30,-12,37,61,24,4
+2502,49,4,106,0,50,10,56,57,0,1
+2503,44,2,86,0,42,-20,42,44,2,1
+2504,37,1,79,0,34,6,41,45,4,1
+2505,81,4,85,8,-24,0,4,111,106,5
+2506,45,-5,76,0,46,12,31,30,0,1
+2507,37,0,93,5,26,4,55,67,12,1
+2508,46,0,84,2,46,0,38,37,0,1
+2509,37,0,77,5,36,-14,39,41,2,1
+2510,51,0,84,0,50,-15,33,35,2,1
+2511,49,0,106,0,50,1,56,57,0,1
+2512,59,0,86,-6,60,19,27,26,0,1
+2513,53,0,102,0,52,-27,49,50,2,1
+2514,37,0,77,2,-2,0,39,79,40,1
+2515,55,0,95,2,36,-19,40,59,20,4
+2516,42,-4,77,0,42,0,35,35,0,1
+2517,55,0,78,0,6,27,23,73,50,4
+2518,46,3,77,0,46,0,31,30,0,1
+2519,44,0,77,-1,42,-16,33,35,2,1
+2520,47,2,81,-2,46,0,34,34,0,1
+2521,37,0,80,0,20,7,43,59,16,1
+2522,43,0,81,0,44,30,37,37,0,1
+2523,56,0,81,0,-2,9,25,83,58,4
+2524,49,2,82,0,46,-15,33,35,2,1
+2525,39,-4,106,0,38,0,66,67,0,1
+2526,41,1,77,0,38,-26,36,38,2,1
+2527,78,1,83,1,-42,-22,4,126,122,5
+2528,51,0,91,0,50,-3,40,42,2,1
+2529,51,0,88,0,50,-19,37,39,2,1
+2530,38,1,77,0,38,5,39,38,0,1
+2531,37,0,78,0,10,-8,41,68,26,1
+2532,37,0,76,0,24,-30,39,53,14,1
+2533,44,0,82,0,42,-26,38,41,2,1
+2534,51,0,81,0,50,-30,29,32,2,1
+2535,57,2,84,0,56,0,28,28,0,1
+2536,44,0,88,6,44,0,44,44,0,1
+2537,37,5,77,0,0,0,40,77,36,1
+2538,59,1,86,2,60,21,28,27,0,1
+2539,107,-2,108,0,70,0,1,38,36,5
+2540,85,0,88,-1,6,23,3,83,80,5
+2541,37,0,76,0,36,-10,38,39,2,1
+2542,37,0,75,-3,34,0,38,41,2,1
+2543,55,0,80,0,-6,-30,25,88,64,4
+2544,57,-3,92,0,56,0,35,35,0,1
+2545,37,3,81,0,36,-3,43,44,2,1
+2546,53,-1,87,0,52,-17,34,35,2,1
+2547,55,0,93,0,12,-25,38,81,42,4
+2548,44,-1,80,-4,44,0,36,36,0,1
+2549,37,0,79,2,36,0,42,43,0,1
+2550,37,0,77,0,36,-13,40,41,2,1
+2551,48,0,81,-6,46,0,33,35,2,1
+2552,37,0,76,-3,24,8,39,52,14,1
+2553,37,0,82,-1,36,-1,45,46,2,1
+2554,44,0,81,0,42,-7,38,40,2,1
+2555,55,0,95,0,46,-13,40,49,8,4
+2556,41,0,75,0,42,0,34,34,0,1
+2557,37,0,94,0,16,5,57,79,22,1
+2558,80,0,84,8,-24,8,4,110,106,5
+2559,79,0,83,0,-40,-10,4,125,120,5
+2560,56,0,95,0,54,-31,39,41,2,1
+2561,41,2,83,0,42,10,42,42,0,1
+2562,37,0,82,0,-4,-12,45,87,42,1
+2563,37,0,78,0,0,-8,41,78,36,1
+2564,41,2,97,0,38,-26,55,58,2,1
+2565,72,3,76,7,-40,29,4,117,114,5
+2566,56,0,96,0,50,-17,40,47,6,4
+2567,48,0,95,0,46,-4,47,49,2,1
+2568,55,3,90,-7,54,0,36,36,0,1
+2569,37,0,76,-6,28,-4,39,47,8,1
+2570,57,0,87,5,56,0,30,30,0,1
+2571,49,0,86,0,50,50,37,37,0,1
+2572,56,0,95,0,52,12,40,44,4,4
+2573,45,0,82,0,46,21,37,35,0,1
+2574,44,1,79,0,44,23,35,35,0,1
+2575,46,-3,75,0,46,0,29,28,0,1
+2576,37,0,78,0,-2,3,41,81,40,1
+2577,56,-2,97,0,54,6,41,42,2,1
+2578,49,0,88,3,50,16,39,39,0,1
+2579,41,0,77,1,42,0,36,35,0,1
+2580,55,-4,91,0,56,19,35,34,0,1
+2581,38,3,76,0,38,7,38,37,0,1
+2582,41,0,79,0,38,-25,38,41,2,1
+2583,51,0,82,1,50,-16,31,33,2,1
+2584,56,0,97,0,56,4,40,40,0,1
+2585,52,1,102,0,52,0,50,51,0,1
+2586,48,0,82,0,50,27,34,33,0,1
+2587,56,1,82,-7,56,0,26,25,0,1
+2588,42,-3,77,0,42,0,35,36,0,1
+2589,37,0,77,0,28,24,40,48,8,1
+2590,55,0,96,5,38,0,41,57,16,4
+2591,43,0,87,1,44,29,44,43,0,1
+2592,37,0,90,-1,36,0,52,53,2,1
+2593,37,0,97,-3,18,-4,60,79,18,1
+2594,55,0,77,0,12,-20,22,65,42,4
+2595,53,0,86,0,54,8,32,32,0,1
+2596,37,0,93,0,12,10,56,81,24,1
+2597,55,0,80,1,20,-1,25,59,34,4
+2598,50,2,96,2,50,0,46,47,0,1
+2599,55,0,93,0,18,-30,38,75,38,4
+2600,55,0,77,0,28,0,22,49,26,4
+2601,54,0,103,2,54,0,49,49,0,1
+2602,45,0,86,2,46,31,41,40,0,1
+2603,84,0,87,0,0,2,3,87,84,5
+2604,37,0,106,0,36,4,68,69,2,1
+2605,51,0,83,0,50,-11,32,33,2,1
+2606,49,1,83,0,46,-5,34,37,2,1
+2607,37,0,76,-1,30,8,39,45,6,1
+2608,41,0,81,0,42,0,40,40,0,1
+2609,55,4,79,0,54,0,24,24,0,1
+2610,52,3,86,0,52,0,34,35,0,1
+2611,41,-5,78,0,42,8,37,37,0,1
+2612,37,0,80,-1,28,19,43,52,8,1
+2613,103,6,104,3,72,5,1,32,30,5
+2614,44,-2,108,0,42,-27,64,66,2,1
+2615,37,0,76,0,38,9,38,37,0,1
+2616,52,0,86,-7,52,0,35,35,0,1
+2617,37,0,77,0,8,-26,40,69,30,1
+2618,56,0,81,-2,-12,-3,25,94,68,4
+2619,55,-2,85,0,54,-5,30,31,2,1
+2620,37,0,104,0,26,-9,66,78,12,1
+2621,56,3,88,0,54,-7,32,33,2,1
+2622,51,2,87,0,50,0,36,38,2,1
+2623,46,-5,85,0,46,0,39,39,0,1
+2624,56,0,86,0,56,23,30,29,0,1
+2625,45,0,77,0,46,15,31,30,0,1
+2626,38,3,76,0,38,14,38,37,0,1
+2627,55,-4,89,0,54,0,34,35,0,1
+2628,53,0,81,1,52,-2,28,30,2,1
+2629,47,-2,84,0,46,0,36,37,0,1
+2630,46,1,81,0,46,8,35,35,0,1
+2631,43,0,86,-6,42,-6,43,45,2,1
+2632,45,0,93,4,44,0,49,50,0,1
+2633,37,0,78,0,20,-7,41,57,16,1
+2634,37,0,79,2,34,9,42,46,4,1
+2635,56,0,96,0,50,-2,40,47,6,4
+2636,37,0,79,0,28,17,42,50,8,1
+2637,53,1,81,-7,52,-21,28,30,2,1
+2638,37,0,76,-3,34,25,39,42,2,1
+2639,39,-1,86,0,38,0,46,47,0,1
+2640,56,3,81,0,54,-10,25,27,2,1
+2641,56,-1,78,-3,8,-9,22,70,48,4
+2642,56,-1,86,0,56,8,31,30,0,1
+2643,37,0,94,0,8,0,57,86,30,1
+2644,48,0,108,1,46,0,59,61,2,1
+2645,45,0,82,-96,44,0,37,38,0,1
+2646,37,0,75,0,28,-28,38,46,8,1
+2647,46,4,79,0,44,-16,33,35,2,1
+2648,56,0,97,2,52,24,41,46,4,4
+2649,37,0,79,6,26,0,42,53,12,1
+2650,55,3,74,1,-4,-1,18,79,60,4
+2651,56,1,79,0,16,16,23,63,40,4
+2652,37,-1,79,1,16,0,42,63,22,1
+2653,45,5,86,0,44,-6,40,42,2,1
+2654,37,0,104,0,26,-21,67,78,12,1
+2655,52,-2,88,6,52,0,36,37,0,1
+2656,55,0,81,-5,-12,0,26,94,68,4
+2657,45,-49,77,0,-2,0,32,79,48,3
+2658,56,5,80,5,20,-11,24,59,36,4
+2659,46,2,85,4,46,6,39,39,0,1
+2660,55,0,81,0,54,-3,26,27,2,1
+2661,44,0,75,-2,42,-23,31,34,2,1
+2662,44,0,82,-7,44,-2,38,38,0,1
+2663,53,0,104,2,54,6,51,49,0,1
+2664,37,5,79,0,26,0,41,53,12,1
+2665,46,-2,107,0,46,0,61,60,0,1
+2666,56,0,81,0,-10,-22,25,91,66,4
+2667,55,0,77,0,12,6,21,64,42,4
+2668,56,0,97,0,52,22,41,45,4,4
+2669,47,-14,86,0,46,0,39,39,0,1
+2670,79,0,84,0,-36,-1471,4,120,116,5
+2671,37,-1,77,0,36,-18,40,41,2,1
+2672,49,0,88,0,50,18,39,39,0,1
+2673,42,-2,82,0,42,0,40,41,0,1
+2674,41,0,76,0,38,-11,35,37,2,1
+2675,37,0,97,0,12,24,59,84,24,1
+2676,37,0,78,-5,0,0,41,78,36,1
+2677,37,0,81,0,8,-25,44,73,28,1
+2678,55,0,77,0,8,-4,22,70,48,4
+2679,44,-5,77,0,44,5,34,34,0,1
+2680,56,0,96,0,44,-4,40,52,12,4
+2681,41,0,86,-1,38,-2,45,47,2,1
+2682,45,0,85,0,44,2,41,41,0,1
+2683,37,0,95,0,8,-25,58,87,30,1
+2684,37,0,78,0,26,30,41,52,12,1
+2685,44,0,80,0,42,-24,36,39,2,1
+2686,54,4,86,0,54,0,33,32,0,1
+2687,37,0,76,0,20,-5,40,55,16,1
+2688,105,5,106,2,72,8,1,33,32,5
+2689,55,0,77,0,-22,-4,21,100,78,4
+2690,78,-2,83,0,-40,2,4,124,120,5
+2691,37,0,79,0,28,2,42,50,8,1
+2692,55,-1,96,0,52,-4,41,44,4,4
+2693,51,4,83,0,52,7,31,31,0,1
+2694,44,2,88,0,44,8,45,44,0,1
+2695,45,4,82,0,44,0,37,38,2,1
+2696,86,4,89,0,8,0,3,81,78,5
+2697,37,0,79,0,24,5,42,55,14,1
+2698,41,0,76,0,38,-15,34,37,2,1
+2699,52,-2,80,0,52,0,28,28,0,1
+2700,90,-37,107,0,64,-23,17,42,26,3
+2701,106,-4,108,0,72,11,1,35,34,5
+2702,43,0,81,2,42,0,38,40,2,1
+2703,55,-1,71,-4,0,0,16,71,56,4
+2704,45,1,83,0,44,0,37,39,2,1
+2705,42,0,81,0,42,66,39,40,0,1
+2706,55,0,95,0,42,6,40,54,14,4
+2707,105,-5,106,0,70,0,1,36,36,5
+2708,37,0,104,5,24,-11,67,81,14,1
+2709,55,0,79,0,12,4,23,66,42,4
+2710,49,2,81,0,50,30,33,32,0,1
+2711,45,-4,87,0,46,13,42,41,0,1
+2712,56,1,82,0,54,-6,26,28,2,1
+2713,53,0,83,0,54,24,30,29,0,1
+2714,43,-3,81,0,44,19,38,37,0,1
+2715,42,-1,86,1,42,0,44,45,2,1
+2716,46,3,83,0,46,0,36,36,0,1
+2717,37,0,79,-1,36,-2,42,43,2,1
+2718,44,1,79,0,44,3,36,35,0,1
+2719,53,0,82,3,52,-20,29,30,2,1
+2720,37,0,80,0,18,-24,43,62,18,1
+2721,50,-1,80,0,50,0,30,31,2,1
+2722,50,0,86,0,50,0,37,37,0,1
+2723,106,6,108,4,72,10,1,35,34,5
+2724,81,0,84,0,-14,26,3,100,96,5
+2725,37,0,77,0,0,-9,40,77,36,1
+2726,84,1,88,0,0,3,3,88,84,5
+2727,77,5,81,4,-40,12,4,123,118,5
+2728,55,0,79,4,24,-8,23,55,32,4
+2729,41,0,87,2,38,-1,46,48,2,1
+2730,45,0,81,3,44,0,36,37,0,1
+2731,48,-4,89,0,46,0,41,42,2,1
+2732,84,-4,88,0,6,0,4,83,78,5
+2733,49,0,106,-1,50,14,57,57,0,1
+2734,37,0,77,-1,18,31,40,59,18,1
+2735,62,-2,108,2,60,0,46,49,2,1
+2736,37,0,76,0,36,-7,38,39,2,1
+2737,37,0,84,0,28,-5,47,55,8,1
+2738,44,0,87,-5,44,5,43,43,0,1
+2739,45,5,78,0,44,0,33,34,2,1
+2740,37,0,76,-3,28,1,39,47,8,1
+2741,45,0,86,-4,44,-15,41,42,2,1
+2742,76,0,80,-1,-42,-11,4,124,120,5
+2743,56,0,97,0,52,-28,41,46,4,4
+2744,37,0,79,0,12,2,43,66,24,1
+2745,56,0,95,0,50,-16,39,46,6,4
+2746,53,0,77,0,54,2,24,23,0,1
+2747,59,-1,84,0,60,13,25,24,0,1
+2748,45,0,84,0,44,-14,38,40,2,1
+2749,55,-4,91,0,-4,0,35,96,60,4
+2750,37,5,80,0,20,1,43,59,16,1
+2751,56,0,77,0,18,13,22,59,38,4
+2752,37,0,76,0,36,3,38,39,2,1
+2753,55,0,92,-4,46,0,37,46,8,4
+2754,37,-1,76,0,36,-6,39,39,0,1
+2755,58,0,84,0,56,0,26,27,2,1
+2756,76,1,80,0,-40,0,4,121,118,5
+2757,47,-4,77,0,46,0,29,30,0,1
+2758,53,5,80,0,54,23,27,26,0,1
+2759,55,0,79,-7,-4,0,24,85,60,4
+2760,42,5,83,0,42,0,41,42,0,1
+2761,41,-3,82,0,38,-11,41,43,2,1
+2762,82,0,86,0,-22,7,4,109,106,5
+2763,84,0,87,-2,0,0,3,87,84,5
+2764,48,-1,83,0,46,-3,35,37,2,1
+2765,55,5,81,0,54,0,26,26,0,1
+2766,48,2,77,1,46,0,30,31,2,1
+2767,44,-5,87,1,44,0,43,43,0,1
+2768,37,0,80,0,30,-12,43,49,6,1
+2769,37,0,81,0,20,-8,44,60,16,1
+2770,38,0,77,8,38,8,39,38,0,1
+2771,51,-4,90,0,50,-17,39,41,2,1
+2772,45,0,85,0,44,-21,40,41,2,1
+2773,55,0,77,0,-2,-17,21,79,58,4
+2774,40,2,93,-1,38,0,53,55,2,1
+2775,38,0,77,0,38,12,39,38,0,1
+2776,45,-2,79,0,44,0,34,35,0,1
+2777,37,0,76,0,30,3,39,45,6,1
+2778,56,-2,89,0,56,0,33,32,0,1
+2779,37,0,77,0,26,12,40,51,10,1
+2780,56,-1,97,0,38,0,41,58,18,4
+2781,51,2,107,0,50,0,56,58,2,1
+2782,55,0,77,-3,-4,31,21,82,60,4
+2783,45,-3,76,0,46,9,31,30,0,1
+2784,37,0,77,-1,0,0,41,77,36,1
+2785,55,0,96,0,50,16,41,47,6,4
+2786,85,2,88,0,0,-30,3,88,86,5
+2787,55,0,92,0,10,14,37,82,46,4
+2788,37,0,93,-4,12,0,55,80,24,1
+2789,49,0,79,1,50,3,30,30,0,1
+2790,47,3,85,4,46,0,38,39,0,1
+2791,37,0,76,0,26,-18,39,50,12,1
+2792,46,0,85,-1,46,0,39,39,0,1
+2793,56,2,96,3,46,0,40,50,10,4
+2794,56,-2,86,0,54,-30,31,32,2,1
+2795,37,0,80,0,38,25,43,41,0,1
+2796,50,23,77,0,-22,0,27,101,74,2
+2797,56,0,85,0,56,10,29,28,0,1
+2798,37,4,80,0,36,0,43,44,2,1
+2799,37,0,81,0,28,5,44,52,8,1
+2800,36,-3,83,5,36,0,46,46,0,1
+2801,53,1,86,0,54,11,33,32,0,1
+2802,39,1,81,6,38,0,42,42,0,1
+2803,55,0,96,0,44,19,41,52,12,4
+2804,57,1,81,-6,56,0,24,24,0,1
+2805,41,0,79,0,38,-7,38,40,2,1
+2806,44,0,77,0,42,-18,33,35,2,1
+2807,51,0,81,0,52,11,29,29,0,1
+2808,37,0,76,-2,28,-4,40,48,8,1
+2809,56,-2,97,0,44,1,41,53,12,4
+2810,37,2,100,3,28,0,62,71,8,1
+2811,47,0,84,-7,46,0,38,38,0,1
+2812,37,0,77,0,-22,12,40,101,60,1
+2813,46,5,87,0,46,14,41,41,0,1
+2814,45,0,82,2,44,0,37,38,2,1
+2815,53,-1,86,-3,54,-4,32,32,0,1
+2816,61,-2,111,0,60,-24,50,52,2,1
+2817,44,0,81,0,42,-17,38,40,2,1
+2818,38,2,76,0,38,15,38,37,0,1
+2819,49,5,81,0,50,16,33,32,0,1
+2820,49,0,100,-7,46,-25,51,54,2,1
+2821,55,1,96,6,50,0,41,47,6,4
+2822,53,-1,81,0,54,3,28,27,0,1
+2823,41,0,88,0,42,19,48,47,0,1
+2824,56,0,86,0,56,28,30,29,0,1
+2825,41,0,87,-2,38,-1,46,48,2,1
+2826,56,-2,80,0,56,5,24,23,0,1
+2827,79,0,83,0,-38,7,4,122,118,5
+2828,37,0,97,0,24,-7,60,73,14,1
+2829,56,0,77,5,24,0,22,54,32,4
+2830,37,0,76,-1,34,0,39,42,4,1
+2831,53,-1,87,-4,54,2,34,33,0,1
+2832,42,4,86,0,42,0,44,44,0,1
+2833,44,0,76,-6,44,0,31,32,0,1
+2834,47,-1,77,-6,46,-9,31,31,0,1
+2835,41,0,76,-3,42,4,34,34,0,1
+2836,45,-5,100,0,44,0,55,56,0,1
+2837,39,0,77,6,38,0,38,39,0,1
+2838,44,0,86,0,42,-22,43,45,2,1
+2839,51,-1,83,0,50,-4,32,34,2,1
+2840,46,1,88,-7,44,-28,43,44,2,1
+2841,56,3,96,-2,52,0,40,44,4,4
+2842,37,0,98,0,30,0,61,67,6,1
+2843,86,4,89,0,2,-8,3,86,84,5
+2844,37,-1,80,0,24,0,43,57,14,1
+2845,37,0,106,-2,28,0,69,78,8,1
+2846,48,2,77,0,46,0,28,30,2,1
+2847,44,-2,77,0,42,-14,33,35,2,1
+2848,55,0,78,1,16,-20,23,63,40,4
+2849,44,4,90,0,44,0,45,46,0,1
+2850,41,1,78,0,38,-11,37,39,2,1
+2851,55,0,83,0,54,0,28,28,0,1
+2852,81,0,86,3,-40,3,5,127,122,5
+2853,37,-3,80,0,36,-15,43,44,2,1
+2854,50,2,87,-4,50,0,37,38,2,1
+2855,51,0,86,0,52,25,35,35,0,1
+2856,56,1,87,0,56,20,31,30,0,1
+2857,44,-3,85,0,42,-30,41,44,2,1
+2858,37,0,79,-1,34,0,43,46,2,1
+2859,37,0,91,6,8,1,53,83,30,1
+2860,41,0,78,0,38,-31,37,39,2,1
+2861,51,0,86,0,50,0,35,37,2,1
+2862,56,1,98,7,52,0,42,46,4,4
+2863,56,9,75,11,-4,0,19,80,62,4
+2864,37,5,83,3,34,0,45,49,4,1
+2865,55,-3,89,0,54,0,34,35,0,1
+2866,37,2,80,0,20,22,43,59,16,1
+2867,55,0,98,0,52,27,42,46,4,4
+2868,62,2,109,0,62,1,47,47,0,1
+2869,37,0,77,0,-14,-5,40,92,52,1
+2870,51,0,86,0,52,29,36,35,0,1
+2871,41,0,81,5,38,-14,40,42,2,1
+2872,52,0,87,5,52,0,35,35,0,1
+2873,56,2,97,0,56,20,40,40,0,1
+2874,79,0,83,-1,-42,-29,4,126,122,5
+2875,49,-3,78,0,50,0,29,29,0,1
+2876,56,0,78,-1,26,1,22,52,30,4
+2877,37,1,76,-1,30,-3,40,45,6,1
+2878,37,0,77,0,34,-7,40,43,2,1
+2879,49,-1,83,0,46,-11,34,36,2,1
+2880,85,0,88,0,6,4,3,83,80,5
+2881,55,0,79,0,12,-10,23,66,42,4
+2882,46,1,80,0,44,-12,34,36,2,1
+2883,53,3,85,0,52,-4,32,33,2,1
+2884,46,-4,77,0,46,6,32,31,0,1
+2885,37,0,106,-4,34,1,68,72,4,1
+2886,37,0,77,0,26,4,41,52,10,1
+2887,46,1,77,-1,46,0,31,30,0,1
+2888,37,0,76,0,34,22,39,43,4,1
+2889,55,0,92,0,28,0,36,63,28,4
+2890,37,0,81,0,26,4,44,55,10,1
+2891,37,0,77,5,36,-2,39,41,2,1
+2892,41,0,77,0,42,10,36,36,0,1
+2893,37,0,77,0,8,5,40,69,28,1
+2894,43,-1,82,0,44,26,39,38,0,1
+2895,43,0,83,-7,44,21,39,39,0,1
+2896,37,0,75,0,34,12,38,41,4,1
+2897,49,3,77,0,46,-5,28,30,2,1
+2898,41,0,76,0,42,18,35,34,0,1
+2899,37,0,106,0,34,-10,68,72,4,1
+2900,49,1,88,0,46,-3,40,42,2,1
+2901,45,0,77,0,46,5,32,31,0,1
+2902,54,0,103,1,54,0,49,49,0,1
+2903,87,1,89,0,8,0,2,81,80,5
+2904,37,0,78,0,18,-3,41,60,18,1
+2905,44,0,77,5,44,4,34,34,0,1
+2906,37,-1,105,1,18,0,68,87,18,1
+2907,44,0,90,-6,44,0,46,46,0,1
+2908,46,4,86,0,44,-8,40,42,2,1
+2909,79,1,83,0,-40,9,4,125,120,5
+2910,50,2,102,0,50,0,52,53,0,1
+2911,37,0,81,0,-2,10,44,84,40,1
+2912,46,0,88,-5,46,0,43,42,0,1
+2913,41,0,86,0,38,-9,46,48,2,1
+2914,37,-2,97,0,36,0,61,61,0,1
+2915,37,0,90,0,38,25,52,51,0,1
+2916,40,-4,82,0,38,-1,42,43,2,1
+2917,43,0,83,0,42,-4,40,42,2,1
+2918,76,0,81,0,-42,-3,5,125,120,5
+2919,56,0,81,0,-18,16,25,99,74,4
+2920,46,-1,100,2,46,0,54,54,0,1
+2921,41,4,88,0,42,12,47,47,0,1
+2922,37,0,83,0,34,-3,46,49,2,1
+2923,55,0,82,0,-38,3,26,121,94,4
+2924,48,-1,81,1,46,0,33,34,2,1
+2925,48,0,88,-6,50,25,40,39,0,1
+2926,56,2,98,0,44,0,42,54,12,4
+2927,53,-2,86,0,52,-30,33,35,2,1
+2928,48,-1,83,-5,46,-8,35,37,2,1
+2929,46,3,83,0,44,-24,37,39,2,1
+2930,56,3,98,0,46,24,42,51,10,4
+2931,45,-4,88,0,44,0,43,44,0,1
+2932,46,3,82,-5,46,-8,36,35,0,1
+2933,46,0,88,3,46,0,42,42,0,1
+2934,45,2,87,0,44,-2,42,43,2,1
+2935,50,-5,83,0,50,0,34,34,0,1
+2936,37,-2,102,0,38,28,64,63,0,1
+2937,46,0,77,-3,46,1,31,30,0,1
+2938,37,0,82,0,12,7,45,69,24,1
+2939,37,0,77,0,34,-9,40,43,4,1
+2940,37,0,76,-2,38,24,39,37,0,1
+2941,53,0,88,0,52,-11,35,37,2,1
+2942,55,-2,77,0,-24,0,21,103,82,4
+2943,55,0,92,-2,10,0,37,82,46,4
+2944,51,0,77,0,52,10,26,26,0,1
+2945,37,0,83,0,-4,-6,46,88,42,1
+2946,55,0,92,0,-2,-4,36,94,58,4
+2947,102,-1,103,-2,72,22,1,31,30,5
+2948,55,0,87,0,54,0,32,33,2,1
+2949,55,0,93,0,46,-27,37,46,8,4
+2950,49,0,77,-1,50,6,28,28,0,1
+2951,37,0,76,0,28,23,40,48,8,1
+2952,49,-3,83,-1,50,11,34,33,0,1
+2953,55,0,77,0,6,-13,22,72,50,4
+2954,56,0,78,0,0,0,22,78,56,4
+2955,37,0,75,0,34,-5,38,41,2,1
+2956,55,0,77,0,10,-2,21,66,46,4
+2957,50,3,84,0,50,0,34,35,0,1
+2958,47,0,86,0,46,-1,39,39,0,1
+2959,45,0,88,-1,46,16,42,41,0,1
+2960,37,0,83,0,8,11,46,75,30,1
+2961,43,-3,106,0,42,0,63,64,2,1
+2962,37,0,106,-2,28,-19,69,78,8,1
+2963,104,-1,105,0,72,9,1,33,32,5
+2964,42,-5,88,0,42,0,46,47,2,1
+2965,52,1,83,0,52,0,31,32,0,1
+2966,37,0,79,0,18,4,43,61,18,1
+2967,49,-2,89,0,50,9,40,40,0,1
+2968,45,2,102,0,46,30,57,56,0,1
+2969,56,0,81,0,-14,31,25,97,72,4
+2970,43,0,84,-2,42,-5,41,43,2,1
+2971,56,0,97,0,46,-8,40,50,10,4
+2972,37,-5,76,0,20,0,39,55,16,1
+2973,45,1,79,0,44,-14,33,35,2,1
+2974,56,0,95,1,52,0,40,44,4,4
+2975,43,0,77,5,42,0,35,36,2,1
+2976,37,0,75,0,28,24,38,46,8,1
+2977,43,0,75,0,42,-3,32,34,2,1
+2978,47,0,84,2,46,0,37,38,0,1
+2979,42,0,79,-1,42,0,37,38,2,1
+2980,37,-1063,106,-1,34,-2,69,72,4,7
+2981,54,5,83,-4,54,0,29,29,0,1
+2982,45,2,86,-7,44,0,40,42,2,1
+2983,56,0,92,0,0,31,36,92,56,4
+2984,42,2,79,3,42,0,37,38,0,1
+2985,37,0,97,-7,30,0,60,66,6,1
+2986,44,0,76,-1,44,7,32,32,0,1
+2987,40,5,76,0,38,0,35,37,2,1
+2988,44,2,83,0,42,-18,39,41,2,1
+2989,45,0,76,5,44,0,31,32,2,1
+2990,38,0,80,0,36,-24,42,44,2,1
+2991,37,0,104,0,20,2,67,84,16,1
+2992,41,0,79,4,38,-9,38,40,2,1
+2993,37,0,81,0,36,-8,43,44,2,1
+2994,40,4,75,0,38,0,35,36,2,1
+2995,37,0,81,0,36,-27,43,44,2,1
+2996,43,-1,87,0,42,-7,44,46,2,1
+2997,51,5,81,0,52,12,29,29,0,1
+2998,71,-4,75,-2,-42,-16,4,119,114,5
+2999,55,0,77,-6,-28,9,21,105,84,4
+3000,37,0,82,-4,34,0,45,48,2,1
+3001,52,3,79,-2,52,0,27,28,0,1
+3002,37,0,97,1,34,0,60,64,4,1
+3003,84,0,88,0,0,24,3,88,84,5
+3004,37,0,81,1,24,0,44,57,14,1
+3005,37,0,106,0,26,-12,68,80,12,1
+3006,56,0,76,0,-18,-6,20,94,74,4
+3007,50,5,86,0,50,0,36,37,0,1
+3008,51,-2,82,0,52,5,31,30,0,1
+3009,37,0,100,-2,30,-3,64,69,6,1
+3010,76,0,80,-1,-42,-13,4,124,120,5
+3011,46,0,81,-4,46,1,35,34,0,1
+3012,46,-3,76,-2,46,-3,30,30,0,1
+3013,56,0,91,0,-2,3,35,93,58,4
+3014,44,1,86,1,44,9,43,42,0,1
+3015,51,-1,109,0,52,0,58,57,0,1
+3016,52,-1,81,0,52,-6,29,30,0,1
+3017,44,1,81,0,44,13,37,37,0,1
+3018,47,-4,81,3,46,0,34,35,0,1
+3019,55,0,77,4,10,0,22,67,46,4
+3020,46,4,77,1,46,1,31,31,0,1
+3021,37,0,78,0,0,7,41,78,36,1
+3022,50,1,85,0,50,0,35,36,0,1
+3023,41,0,76,0,42,0,34,34,0,1
+3024,37,0,76,20,24,0,39,53,14,1
+3025,52,5,82,6,52,0,29,30,0,1
+3026,41,1,76,0,38,-30,35,37,2,1
+3027,47,4,80,0,46,0,33,34,0,1
+3028,48,3,84,0,46,0,37,38,2,1
+3029,47,0,107,4,46,0,60,60,0,1
+3030,54,0,81,-1,54,5,27,26,0,1
+3031,39,5,93,1,34,0,54,60,6,1
+3032,41,-2,75,0,38,-20,34,36,2,1
+3033,55,1,83,0,54,0,28,28,0,1
+3034,37,-1,79,0,34,1,42,46,4,1
+3035,37,0,80,7,10,9,43,70,26,1
+3036,56,1,85,0,56,2,29,28,0,1
+3037,46,3,83,0,44,-21,37,39,2,1
+3038,45,-1,77,0,46,18,32,31,0,1
+3039,40,1,81,-3,38,0,41,42,2,1
+3040,37,0,78,0,8,25,41,70,30,1
+3041,56,0,77,2,-4,-4,21,82,62,4
+3042,43,0,86,-7,44,16,42,42,0,1
+3043,37,0,76,0,20,-1,39,55,16,1
+3044,37,3,77,0,-22,13,40,101,60,1
+3045,37,0,105,0,34,15,68,71,4,1
+3046,45,0,90,0,46,21,44,43,0,1
+3047,37,0,104,3,24,0,66,80,14,1
+3048,45,0,88,-2,44,0,43,44,2,1
+3049,56,0,82,6,-12,-3,26,95,68,4
+3050,46,2,76,0,46,4,30,29,0,1
+3051,40,0,76,-1,38,0,36,37,2,1
+3052,37,0,76,0,20,-6,39,55,16,1
+3053,43,0,80,0,44,24,37,36,0,1
+3054,37,0,97,-2,34,-4,59,63,4,1
+3055,37,5,76,-2,34,0,38,42,4,1
+3056,55,0,93,0,12,3,37,80,42,4
+3057,37,0,82,1,20,9,45,61,16,1
+3058,45,0,88,0,44,-2,43,44,2,1
+3059,37,0,93,0,10,-4,56,83,28,1
+3060,45,1,77,0,44,-4,31,33,2,1
+3061,55,0,77,0,24,-26,21,54,32,4
+3062,41,-5,86,0,42,0,45,44,0,1
+3063,56,4,97,0,50,13,41,48,8,4
+3064,37,0,81,0,38,21,43,42,0,1
+3065,49,1,102,0,50,12,53,53,0,1
+3066,55,0,79,-2,20,-17,24,59,34,4
+3067,55,0,94,1,18,0,39,76,38,4
+3068,56,0,77,0,-20,22,21,97,76,4
+3069,37,0,77,0,-18,-13,40,95,54,1
+3070,44,0,85,2,44,0,41,41,0,1
+3071,57,4,83,0,56,0,26,26,0,1
+3072,37,0,77,0,34,2,41,44,2,1
+3073,53,0,109,5,54,28,56,55,0,1
+3074,40,-4,79,0,38,0,39,41,2,1
+3075,47,-253,86,-1,46,0,39,39,0,1
+3076,43,0,80,8,42,-14,37,39,2,1
+3077,105,-14,108,0,70,0,3,38,34,5
+3078,64,0,113,1,64,17,49,48,0,1
+3079,49,0,83,0,50,15,34,34,0,1
+3080,45,0,88,0,44,2503,42,44,2,1
+3081,43,0,86,3,42,-2,42,44,2,1
+3082,37,0,77,0,26,3,41,52,10,1
+3083,45,0,78,0,46,6,33,32,0,1
+3084,104,4,106,4,70,0,1,36,34,5
+3085,37,0,77,0,-14,-17,40,92,52,1
+3086,37,0,77,0,6,2,40,72,32,1
+3087,41,5,102,0,42,9,61,60,0,1
+3088,40,2,85,0,38,0,45,46,2,1
+3089,49,3,84,0,46,-14,35,37,2,1
+3090,59,1,87,6,60,0,28,28,0,1
+3091,85,0,88,3,2,0,3,86,82,5
+3092,41,5,81,-1,38,-23,39,42,2,1
+3093,58,-1,86,2,56,0,28,30,2,1
+3094,37,0,76,0,18,-5,40,58,18,1
+3095,56,0,79,1,8,0,24,72,48,4
+3096,45,0,80,3,44,0,35,36,2,1
+3097,37,0,78,0,12,-4,41,65,24,1
+3098,46,-1,83,0,46,17,37,36,0,1
+3099,37,0,84,1,28,-10,47,55,8,1
+3100,43,1,76,0,44,26,32,32,0,1
+3101,37,0,82,-6,-4,0,45,87,42,1
+3102,71,1,75,0,-42,-5,4,119,114,5
+3103,37,0,106,0,20,-18,69,85,16,1
+3104,56,0,77,2,-2,-6,21,79,58,4
+3105,37,1,79,0,34,0,42,45,4,1
+3106,37,0,78,0,16,-16,42,63,22,1
+3107,37,0,78,-2,12,14,42,65,24,1
+3108,56,0,77,0,20,16,22,57,36,4
+3109,65,-1,109,0,64,0,45,45,0,1
+3110,44,0,81,0,42,-11,38,40,2,1
+3111,47,1,108,0,46,0,62,62,0,1
+3112,41,1,76,0,42,2,34,34,0,1
+3113,46,0,85,-3,46,-2,39,39,0,1
+3114,43,0,86,0,44,18,42,42,0,1
+3115,48,0,83,-2,46,0,35,37,2,1
+3116,55,0,77,0,-24,21,21,103,82,4
+3117,51,5,86,0,52,8,35,35,0,1
+3118,37,-1,79,-3,10,-8,42,68,26,1
+3119,80,5,84,1,-38,-20,4,123,118,5
+3120,53,-2,108,0,54,0,55,54,0,1
+3121,42,0,83,6,42,0,41,42,2,1
+3122,56,3,95,0,38,0,40,57,18,4
+3123,41,0,109,1,38,-1,68,70,2,1
+3124,84,0,88,0,-2,-10,3,90,88,5
+3125,37,4,83,-3,34,0,45,49,4,1
+3126,37,4,79,6,16,0,41,63,22,1
+3127,53,0,88,0,52,-22,35,37,2,1
+3128,37,0,95,0,10,6,58,84,26,1
+3129,55,0,78,0,16,7,23,63,40,4
+3130,56,0,77,0,18,28,22,59,38,4
+3131,37,0,79,2,8,-14,42,71,28,1
+3132,37,0,83,0,34,3,46,50,4,1
+3133,80,0,84,0,-24,11,4,110,106,5
+3134,37,0,97,0,34,-4,59,63,4,1
+3135,49,0,107,0,46,-6,58,60,2,1
+3136,37,0,76,-2,38,11,39,37,0,1
+3137,56,0,76,0,-4,221,20,81,62,4
+3138,38,0,81,0,36,-19,43,44,2,1
+3139,53,0,84,0,52,-10,31,32,2,1
+3140,37,0,76,0,24,-16,39,53,14,1
+3141,102,0,102,0,70,-6,1,33,32,5
+3142,55,0,77,0,42,14,22,36,14,4
+3143,37,0,96,8,24,0,59,73,14,1
+3144,46,0,108,-4,46,4,62,61,0,1
+3145,42,0,83,6,42,0,42,42,0,1
+3146,41,0,83,0,38,-6,42,44,2,1
+3147,49,0,88,-1,50,0,39,39,0,1
+3148,51,0,81,0,52,13,30,30,0,1
+3149,47,4,83,-2,46,0,36,36,0,1
+3150,44,0,83,3,44,0,38,39,0,1
+3151,43,0,99,-1,42,-4,56,58,2,1
+3152,51,0,83,0,50,-19,31,33,2,1
+3153,49,2,81,0,50,17,32,32,0,1
+3154,49,0,81,0,46,-28,33,35,2,1
+3155,49,-5,84,0,50,4,36,35,0,1
+3156,58,-1,87,0,56,0,30,30,0,1
+3157,60,-1,109,-1,60,0,49,50,0,1
+3158,51,0,86,-6,50,-9,36,37,2,1
+3159,47,0,86,8,46,0,39,40,0,1
+3160,76,0,81,0,-40,25,5,123,118,5
+3161,55,0,77,-5,-10,0,21,87,66,4
+3162,44,0,81,-7,44,0,38,37,0,1
+3163,37,-8,76,0,20,0,39,55,16,1
+3164,55,-1,95,0,52,0,40,44,4,4
+3165,47,4,82,0,46,0,35,35,0,1
+3166,64,0,113,0,64,17,48,48,0,1
+3167,53,0,81,3,52,-6,28,30,2,1
+3168,51,3,91,0,52,14,40,39,0,1
+3169,37,0,101,-4,28,0,64,73,8,1
+3170,37,-4,78,0,38,15,41,39,0,1
+3171,54,3,86,-3,54,0,32,32,0,1
+3172,105,-2,107,0,72,0,1,35,34,5
+3173,44,0,109,0,44,0,65,66,0,1
+3174,37,0,76,0,34,28,39,43,4,1
+3175,84,4,88,0,6,0,4,83,78,5
+3176,46,0,86,-3,46,0,40,39,0,1
+3177,46,2,82,0,46,0,36,35,0,1
+3178,37,0,79,0,16,1,42,64,22,1
+3179,38,1,77,-6,38,9,39,38,0,1
+3180,39,-2,106,0,38,0,67,67,0,1
+3181,56,-2,97,0,52,4,41,45,4,4
+3182,37,0,83,5,0,0,47,83,36,1
+3183,56,0,78,0,8,19,22,70,48,4
+3184,37,0,76,-1,34,-2,40,43,2,1
+3185,55,0,96,7,50,0,41,47,6,4
+3186,37,-3,80,0,36,0,43,44,0,1
+3187,49,0,83,-1,50,-1,34,34,0,1
+3188,41,-3,86,0,42,22,45,44,0,1
+3189,56,0,77,0,-20,1,21,97,76,4
+3190,42,3,106,0,42,1,65,65,0,1
+3191,57,0,85,6,56,0,28,28,0,1
+3192,44,-1,81,0,44,7,38,37,0,1
+3193,55,0,92,0,34,-8,37,59,22,4
+3194,49,0,77,0,50,11,29,28,0,1
+3195,55,-5,81,0,-4,2,26,86,60,4
+3196,40,0,77,-3,38,0,38,39,2,1
+3197,55,0,95,0,46,8,40,49,8,4
+3198,56,2,97,-7,52,0,41,46,4,4
+3199,56,1,95,0,54,-25,39,41,2,1
+3200,37,0,80,0,38,21,43,41,0,1
+3201,56,1,87,2,56,0,31,30,0,1
+3202,46,5,77,0,46,2,31,31,0,1
+3203,53,0,82,0,52,-19,29,30,2,1
+3204,45,3,106,-1,44,-3,61,62,2,1
+3205,56,0,97,0,50,21,40,48,8,4
+3206,51,3,88,0,50,0,37,39,2,1
+3207,37,0,74,0,34,0,37,41,4,1
+3208,49,0,106,0,50,10,57,57,0,1
+3209,41,1,84,0,38,-24,43,45,2,1
+3210,47,-3,106,0,46,0,60,60,0,1
+3211,56,0,97,2,46,0,41,51,10,4
+3212,41,0,76,-1,38,-13,35,37,2,1
+3213,55,0,92,0,46,-1,37,46,8,4
+3214,51,0,84,0,52,5,33,33,0,1
+3215,45,-1,85,0,44,-12,40,41,2,1
+3216,37,-1,80,-5,20,-10,43,59,16,1
+3217,41,-4,80,0,42,23,39,39,0,1
+3218,37,0,77,0,34,10,41,44,2,1
+3219,37,0,79,0,30,21,42,48,6,1
+3220,81,-1,84,0,-14,3,4,100,96,5
+3221,58,5,88,0,56,0,30,31,0,1
+3222,48,0,77,0,46,-1,29,31,2,1
+3223,55,-1,71,-6,0,0,16,71,56,4
+3224,37,0,83,0,38,12,45,44,0,1
+3225,37,0,80,3,8,6,43,72,28,1
+3226,37,0,94,0,16,4,57,79,22,1
+3227,56,0,97,0,46,2,41,51,10,4
+3228,46,0,88,0,46,1,43,42,0,1
+3229,41,1,86,0,38,-9,45,47,2,1
+3230,44,2,90,-7,42,-14,46,48,2,1
+3231,50,0,87,1,50,0,37,38,0,1
+3232,37,0,104,0,20,8,67,84,16,1
+3233,55,0,77,0,38,2,22,39,16,4
+3234,51,-3,81,0,50,-8,30,32,2,1
+3235,42,0,78,-2,42,0,36,37,0,1
+3236,56,0,77,1,-6,0,21,85,64,4
+3237,41,0,86,-4,42,2,45,44,0,1
+3238,41,0,83,0,42,15,42,42,0,1
+3239,53,1,79,0,54,12,26,24,0,1
+3240,86,3,89,0,2,0,3,86,84,5
+3241,46,1,86,0,44,-22,41,42,2,1
+3242,37,0,76,6,20,-15,39,55,16,1
+3243,49,-2,86,0,46,-30,38,40,2,1
+3244,46,0,88,0,44,-25,43,44,2,1
+3245,81,0,84,0,-14,1,4,100,96,5
+3246,81,-1,84,0,-14,5,4,100,96,5
+3247,45,-1,79,-5,44,-7,34,35,0,1
+3248,57,0,84,-6,56,0,28,28,0,1
+3249,55,0,89,0,54,-6,34,35,2,1
+3250,42,0,79,8,42,0,36,37,2,1
+3251,37,-2,76,0,36,-23,39,40,2,1
+3252,38,5,80,0,38,0,42,41,0,1
+3253,49,0,87,-1,50,7,38,38,0,1
+3254,55,-3,79,0,54,-5,23,24,2,1
+3255,50,-5,88,0,50,0,38,39,0,1
+3256,44,-1,76,0,44,0,31,32,0,1
+3257,50,4,78,-5,50,0,28,29,2,1
+3258,45,0,79,0,46,22,33,32,0,1
+3259,37,0,79,0,20,19,43,59,16,1
+3260,53,1,91,0,52,-13,38,39,2,1
+3261,52,0,83,0,52,-4,30,31,0,1
+3262,53,0,102,0,54,7,49,48,0,1
+3263,39,0,81,-1,38,0,41,42,0,1
+3264,37,0,76,1,28,-13,40,48,8,1
+3265,46,0,76,0,44,-19,30,32,2,1
+3266,37,0,91,0,16,-6,53,75,22,1
+3267,49,0,95,0,46,-26,46,48,2,1
+3268,37,0,76,-4,38,22,39,37,0,1
+3269,85,0,89,2,2,0,4,86,82,5
+3270,56,0,79,0,54,-25,23,24,2,1
+3271,101,0,102,0,72,7,1,29,28,5
+3272,55,0,78,0,8,17,23,70,48,4
+3273,47,-1,80,0,46,0,33,34,0,1
+3274,42,0,77,0,42,5,35,35,0,1
+3275,38,-4,97,0,38,0,59,59,0,1
+3276,64,-1,110,4,64,0,46,46,0,1
+3277,37,0,96,-5,12,0,59,83,24,1
+3278,56,0,97,0,52,-16,41,45,4,4
+3279,56,-4,90,-4,56,0,34,33,0,1
+3280,41,0,76,0,38,-18,35,37,2,1
+3281,53,0,86,2,54,10,33,32,0,1
+3282,43,0,76,0,42,-19,33,35,2,1
+3283,38,4,76,0,38,0,37,37,0,1
+3284,38,5,76,0,38,10,38,37,0,1
+3285,46,1,102,0,44,-25,57,58,2,1
+3286,56,-1,97,0,44,-4,41,53,12,4
+3287,41,0,90,1,42,3,48,48,0,1
+3288,49,-3,84,1,50,0,35,35,0,1
+3289,55,0,83,-3,54,0,28,28,0,1
+3290,41,5,77,0,42,17,36,35,0,1
+3291,56,0,92,0,0,9,36,92,56,4
+3292,37,0,80,0,30,-7,43,49,6,1
+3293,37,0,106,-1,36,0,69,70,0,1
+3294,49,-4,80,0,50,0,31,31,0,1
+3295,37,0,79,0,26,2,43,54,10,1
+3296,38,0,106,0,38,2,68,67,0,1
+3297,37,0,79,-3,36,0,41,43,2,1
+3298,46,0,77,8,46,4,31,30,0,1
+3299,49,4,81,0,50,11,32,32,0,1
+3300,55,0,77,0,16,-16,22,62,40,4
+3301,46,0,85,0,46,2,39,39,0,1
+3302,45,0,88,0,44,1,43,44,2,1
+3303,37,-3,75,0,26,-2,38,49,10,1
+3304,56,0,92,0,52,14,36,40,4,4
+3305,43,0,99,0,42,-1,56,58,2,1
+3306,56,0,77,0,-18,9,21,95,74,4
+3307,41,0,75,0,38,0,34,36,2,1
+3308,51,1,80,0,50,-16,29,31,2,1
+3309,56,0,97,0,42,19,41,55,14,4
+3310,79,0,84,4,-38,0,4,123,118,5
+3311,55,-5,86,-3,54,0,31,32,0,1
+3312,55,4,77,0,26,-5,22,52,30,4
+3313,55,2,79,0,54,0,24,25,0,1
+3314,44,0,81,6,44,3,38,37,0,1
+3315,52,0,86,0,52,0,35,35,0,1
+3316,51,-3,79,0,50,-15,28,30,2,1
+3317,55,0,78,0,0,-18,23,78,56,4
+3318,56,5,86,0,54,-30,29,32,2,1
+3319,37,0,96,4,28,0,59,68,8,1
+3320,56,0,95,0,44,2,40,51,12,4
+3321,46,1,82,0,44,-23,36,38,2,1
+3322,37,0,81,-4,26,-6,45,55,10,1
+3323,41,0,79,-4,38,-8,38,40,2,1
+3324,37,0,97,-2,34,6,60,64,4,1
+3325,37,0,76,5,28,0,39,48,8,1
+3326,56,1,95,0,34,0,40,62,22,4
+3327,44,0,78,0,44,5,34,34,0,1
+3328,55,0,92,-7,0,0,37,92,56,4
+3329,46,0,76,0,44,-22,30,32,2,1
+3330,41,0,81,0,42,12,41,40,0,1
+3331,55,0,73,-18,-2,-30,18,76,58,4
+3332,37,0,105,0,18,17,68,87,18,1
+3333,56,0,79,0,8,-11,23,71,48,4
+3334,50,2,78,-3,50,0,28,29,0,1
+3335,37,-2460,105,0,36,0,68,69,0,1
+3336,37,-1,78,3,0,2,41,78,36,1
+3337,48,0,88,0,50,31,40,39,0,1
+3338,43,0,86,8,42,-8,43,45,2,1
+3339,56,4,97,0,54,-9,40,42,2,1
+3340,56,-1,98,0,38,-5,42,59,18,4
+3341,44,5,83,0,42,-18,40,42,2,1
+3342,46,0,78,-2,46,2,32,32,0,1
+3343,37,1,97,1,30,0,60,66,6,1
+3344,43,-4,82,0,44,19,39,38,0,1
+3345,56,0,81,-1,-12,-21,25,94,68,4
+3346,55,0,98,0,52,-10,42,46,4,4
+3347,37,0,106,-6,24,0,69,82,14,1
+3348,56,0,82,0,54,-24,26,28,2,1
+3349,49,0,82,0,50,29,33,33,0,1
+3350,37,0,82,0,12,19,45,69,24,1
+3351,104,0,105,0,70,-14,1,35,34,5
+3352,38,0,76,0,38,0,38,37,0,1
+3353,46,0,80,-2,46,0,34,34,0,1
+3354,55,0,77,1,-10,0,21,87,66,4
+3355,37,0,106,0,28,-5,69,78,8,1
+3356,44,-1,79,1,44,0,35,35,0,1
+3357,37,0,108,1,36,3,71,72,0,1
+3358,81,-35,107,0,62,-10,26,45,18,3
+3359,44,0,92,-1,44,0,47,48,0,1
+3360,84,0,88,0,0,5,4,88,84,5
+3361,55,0,81,0,-14,3,26,97,70,4
+3362,37,0,78,0,20,8,42,57,16,1
+3363,45,0,84,0,46,31,40,38,0,1
+3364,41,0,106,0,38,-4,65,67,2,1
+3365,37,-4,90,-2,6,0,53,85,32,1
+3366,37,0,76,3,28,4,39,48,8,1
+3367,41,0,78,0,38,-14,37,39,2,1
+3368,47,3,80,0,46,0,33,34,0,1
+3369,38,0,102,-3,34,0,65,69,4,1
+3370,43,0,79,2,42,-12,35,37,2,1
+3371,37,0,77,0,-4,-3,41,83,42,1
+3372,37,0,79,-1,0,3,42,79,36,1
+3373,37,0,74,0,28,4,38,46,8,1
+3374,49,-5,79,0,50,6,30,30,0,1
+3375,104,4,105,8,70,0,1,35,34,5
+3376,43,0,77,-1,42,0,34,35,2,1
+3377,53,0,77,-3,54,5,25,23,0,1
+3378,56,0,80,2,-2,-11,24,83,58,4
+3379,53,0,83,0,54,16,30,29,0,1
+3380,55,0,96,0,44,25,41,52,12,4
+3381,55,0,79,2,16,9,23,63,40,4
+3382,37,0,97,-3,34,10,60,64,4,1
+3383,37,0,77,0,20,25,40,56,16,1
+3384,52,3,79,-5,52,0,28,28,0,1
+3385,56,0,98,0,44,11,42,54,12,4
+3386,47,0,81,5,46,0,34,35,0,1
+3387,37,0,77,0,-20,10,41,98,58,1
+3388,50,-3,77,-7,50,0,27,28,2,1
+3389,45,-4,80,0,44,-1,35,36,2,1
+3390,37,0,77,4,36,-2,39,41,2,1
+3391,41,1,77,0,42,17,36,36,0,1
+3392,49,0,82,0,50,15,33,33,0,1
+3393,104,3,105,4,70,0,1,35,34,5
+3394,44,-2,76,-7,44,0,31,32,0,1
+3395,49,0,84,0,46,-15,36,38,2,1
+3396,52,0,91,0,52,0,38,39,0,1
+3397,39,2,77,-2,38,0,39,39,0,1
+3398,51,0,77,0,50,-9,26,28,2,1
+3399,37,0,80,0,34,-12,43,46,2,1
+3400,46,-1,84,0,46,-1,38,38,0,1
+3401,37,0,80,0,24,8,43,57,14,1
+3402,53,0,83,0,54,5,30,28,0,1
+3403,41,0,82,-1,42,24,41,41,0,1
+3404,55,0,78,0,6,-4,23,73,50,4
+3405,47,5,107,0,46,0,59,60,0,1
+3406,37,0,96,-5,18,0,59,78,18,1
+3407,37,0,80,0,16,19,43,65,22,1
+3408,43,0,87,0,42,-8,44,46,2,1
+3409,37,-2,80,-6,36,-10,43,44,0,1
+3410,56,1,96,4,46,0,40,50,10,4
+3411,40,-1,109,0,38,0,68,70,2,1
+3412,37,0,79,4,38,15,42,41,0,1
+3413,38,0,79,0,38,0,42,41,0,1
+3414,56,0,97,0,50,20,41,48,6,4
+3415,37,0,76,8,26,0,39,50,10,1
+3416,37,0,77,0,34,-16,40,43,2,1
+3417,44,0,81,7,42,-7,37,39,2,1
+3418,45,0,80,0,44,-17,35,36,2,1
+3419,37,0,80,-5,34,-3,43,46,2,1
+3420,49,1,87,0,46,-13,38,41,2,1
+3421,49,0,88,0,50,20,39,39,0,1
+3422,37,0,97,-6,28,0,60,69,8,1
+3423,37,-1,76,0,36,-9,39,40,2,1
+3424,55,0,79,0,10,25,23,68,46,4
+3425,44,0,85,6,44,4,41,41,0,1
+3426,85,-1,89,0,2,-4,4,86,82,5
+3427,37,0,77,0,38,18,39,38,0,1
+3428,45,0,86,-3,44,0,40,42,2,1
+3429,56,0,95,0,46,-22,40,49,10,4
+3430,53,3,86,0,54,3,32,32,0,1
+3431,56,0,108,0,54,-4,52,53,2,1
+3432,53,3,86,0,54,2,33,32,0,1
+3433,45,0,85,0,46,17,40,39,0,1
+3434,55,0,83,6,-24,0,27,108,82,4
+3435,86,-3,89,0,8,0,3,81,78,5
+3436,46,0,81,5,46,1,35,35,0,1
+3437,56,-2,86,0,56,0,31,30,0,1
+3438,55,0,77,-6,16,0,21,61,40,4
+3439,43,-2,84,0,42,-21,41,43,2,1
+3440,46,3,84,0,44,-19,38,40,2,1
+3441,45,0,78,-2,44,-4,33,34,2,1
+3442,41,0,83,2,38,-19,42,44,2,1
+3443,38,-1,78,0,38,0,40,39,0,1
+3444,37,0,77,0,34,-19,40,43,4,1
+3445,43,0,80,-1,42,-3,37,39,2,1
+3446,43,-1,75,-3,42,-27,32,34,2,1
+3447,37,0,80,0,2,-3,43,77,34,1
+3448,37,0,79,0,26,0,42,54,12,1
+3449,44,0,81,-1,42,-26,37,39,2,1
+3450,56,1,81,0,-22,-10,25,105,80,4
+3451,41,0,76,0,38,-24,35,37,2,1
+3452,42,0,87,8,42,0,45,46,0,1
+3453,83,0,86,0,-6,-13,3,94,90,5
+3454,37,0,76,-1,26,-10,39,50,12,1
+3455,37,0,107,-1,36,0,69,71,2,1
+3456,83,0,87,8,-4,10,4,92,88,5
+3457,41,2,77,0,42,14,36,36,0,1
+3458,41,1,75,0,38,-6,34,36,2,1
+3459,37,0,75,0,36,21,37,39,2,1
+3460,46,3,76,0,46,6,30,29,0,1
+3461,41,0,80,0,42,26,39,39,0,1
+3462,55,0,77,0,26,-29,21,51,30,4
+3463,38,-1,82,-4,38,-6,44,43,0,1
+3464,45,-1,86,0,46,7,41,40,0,1
+3465,37,0,104,-1,16,-7,67,89,22,1
+3466,46,0,87,-2,46,-4,41,41,0,1
+3467,37,0,81,0,28,-26,45,53,8,1
+3468,37,-1,78,-5,34,-10,41,45,4,1
+3469,55,0,77,0,6,-4,22,72,50,4
+3470,55,0,78,0,16,2,23,63,40,4
+3471,52,0,82,-2,52,0,29,30,0,1
+3472,41,0,75,0,38,-4,34,36,2,1
+3473,45,0,81,0,46,11,35,34,0,1
+3474,44,2,83,0,44,17,40,39,0,1
+3475,37,0,80,-1,38,16,43,41,0,1
+3476,47,-1,95,0,46,0,48,49,0,1
+3477,55,-4,99,7,46,0,43,52,8,4
+3478,37,0,79,0,20,1,41,58,16,1
+3479,56,0,95,-3,54,1,40,41,2,1
+3480,44,1,77,0,44,12,33,33,0,1
+3481,55,0,97,0,50,-17,41,48,6,4
+3482,55,0,96,-1,50,0,41,47,6,4
+3483,37,0,97,-2,18,-2,60,79,18,1
+3484,83,0,86,0,-2,26,4,89,86,5
+3485,58,0,86,0,56,0,27,29,2,1
+3486,37,0,104,3,18,0,66,86,20,1
+3487,41,0,81,5,38,-12,40,42,2,1
+3488,37,0,104,0,36,-4,67,68,2,1
+3489,37,0,77,1,36,8,40,41,0,1
+3490,37,0,77,5,34,-3,41,44,2,1
+3491,55,-1,77,-4,16,-9,21,61,40,4
+3492,41,-4,81,0,38,-30,41,43,2,1
+3493,37,0,80,0,38,16,43,41,0,1
+3494,45,5,77,0,44,0,31,33,2,1
+3495,41,0,76,0,42,10,34,34,0,1
+3496,37,-2,77,0,-24,-18,41,103,62,1
+3497,53,0,86,-1,54,3,33,32,0,1
+3498,43,-2,81,2,44,23,37,37,0,1
+3499,44,2,77,7,44,1,33,33,0,1
+3500,55,1,83,-2,54,0,28,29,0,1
+3501,45,0,79,0,44,-8,34,35,2,1
+3502,41,3,79,0,42,9,38,38,0,1
+3503,53,0,86,0,54,8,33,32,0,1
+3504,45,4,86,0,44,-6,40,42,2,1
+3505,43,1,82,0,42,0,39,41,2,1
+3506,52,3,77,0,52,0,25,25,0,1
+3507,49,0,77,0,46,-23,29,31,2,1
+3508,37,0,96,0,28,-22,59,68,8,1
+3509,49,0,77,0,50,7,28,28,0,1
+3510,50,2,91,0,50,0,41,42,0,1
+3511,43,-1,79,0,42,-9,35,37,2,1
+3512,48,0,88,0,46,-6,39,41,2,1
+3513,37,0,77,0,12,1,40,64,24,1
+3514,49,1,88,0,46,0,40,42,2,1
+3515,37,0,79,0,38,29,41,40,0,1
+3516,55,0,83,0,-28,-1,27,111,84,4
+3517,49,0,87,-2,50,10,38,38,0,1
+3518,56,0,98,0,44,-3,42,54,12,4
+3519,46,0,79,0,44,-24,34,35,2,1
+3520,51,-1,88,0,50,-11,37,39,2,1
+3521,37,0,78,-2,12,1,41,65,24,1
+3522,56,0,96,-1,52,-6,40,44,4,4
+3523,37,0,76,0,24,22,39,52,14,1
+3524,37,0,74,0,28,3,38,46,8,1
+3525,38,0,86,0,38,15,48,47,0,1
+3526,37,0,76,0,16,2,39,61,22,1
+3527,46,0,88,2,46,0,42,42,0,1
+3528,37,0,79,-1,36,31,41,43,2,1
+3529,37,0,76,-4,34,8,39,42,2,1
+3530,43,0,77,0,42,-5,34,36,2,1
+3531,41,-3,79,0,42,15,39,38,0,1
+3532,43,0,79,0,42,-7,36,38,2,1
+3533,43,-3,86,-7,42,-12,42,44,2,1
+3534,43,3,85,0,42,0,42,44,2,1
+3535,37,0,104,0,18,-11,67,86,20,1
+3536,43,-2,99,0,44,22,56,55,0,1
+3537,45,0,90,0,46,7,44,43,0,1
+3538,44,-2,79,0,44,0,35,35,0,1
+3539,48,0,77,-1,46,0,29,30,2,1
+3540,37,0,77,0,30,-16,40,46,6,1
+3541,82,5,86,0,-12,0,3,99,96,5
+3542,59,0,87,0,60,15,28,28,0,1
+3543,37,0,106,2,36,0,69,70,0,1
+3544,59,0,86,1,60,13,28,27,0,1
+3545,37,-3,80,0,20,1,43,59,16,1
+3546,41,0,108,0,42,5,67,67,0,1
+3547,37,0,79,1,8,-4,42,71,28,1
+3548,37,0,82,0,18,-13,45,64,18,1
+3549,77,0,81,6,-42,0,4,125,120,5
+3550,37,4,80,0,6,-11,43,75,32,1
+3551,55,0,92,0,8,-7,37,84,48,4
+3552,37,0,83,0,0,-2,46,83,36,1
+3553,56,4,95,0,42,11,39,54,14,4
+3554,44,0,82,0,44,24,38,38,0,1
+3555,43,4,84,0,42,0,42,43,2,1
+3556,41,0,80,0,38,-27,39,41,2,1
+3557,56,1,95,0,56,8,39,39,0,1
+3558,49,1,78,0,50,11,29,29,0,1
+3559,80,0,84,0,-32,4,4,117,114,5
+3560,38,1,83,0,38,11,45,44,0,1
+3561,55,5,96,0,54,0,41,42,2,1
+3562,56,1,86,2,56,2,31,30,0,1
+3563,80,0,84,0,-20,2,4,105,100,5
+3564,37,0,83,2,36,-3,45,46,2,1
+3565,53,0,86,2,54,6,33,32,0,1
+3566,50,2,88,0,50,0,39,39,0,1
+3567,55,0,95,-1,42,-14,40,54,14,4
+3568,51,1,81,0,52,24,29,29,0,1
+3569,37,0,76,2,28,0,39,47,8,1
+3570,37,0,83,6,36,0,46,46,0,1
+3571,37,0,103,0,18,-2,66,85,18,1
+3572,37,0,77,0,-20,-9,41,98,58,1
+3573,50,3,79,0,50,0,29,30,0,1
+3574,37,0,106,0,20,-29,69,85,16,1
+3575,37,-4,76,0,36,0,40,40,0,1
+3576,55,-3,86,0,56,19,30,29,0,1
+3577,83,0,86,0,-4,-13,3,92,88,5
+3578,43,0,95,-1,44,21,52,51,0,1
+3579,56,1,98,0,46,11,42,51,10,4
+3580,49,-3,84,0,46,-20,35,37,2,1
+3581,55,0,92,0,26,-15,36,66,30,4
+3582,79,0,83,0,-30,-11,4,114,110,5
+3583,83,0,86,-1,-6,-30,3,94,90,5
+3584,51,3,86,0,52,23,35,34,0,1
+3585,37,0,82,0,26,-18,45,56,10,1
+3586,42,4,77,2,42,0,35,36,2,1
+3587,56,3,98,4,46,-12,42,51,10,4
+3588,49,0,89,5,46,-25,40,42,2,1
+3589,51,0,82,2,50,-18,31,33,2,1
+3590,56,0,79,0,56,0,23,23,0,1
+3591,37,0,77,0,2,15,40,74,34,1
+3592,50,-4,80,0,50,0,30,31,2,1
+3593,37,0,106,0,28,7,68,77,8,1
+3594,85,0,88,0,2,15,3,86,82,5
+3595,37,0,82,0,36,4,45,46,2,1
+3596,45,-2,81,0,44,-2,36,37,2,1
+3597,41,0,81,0,38,-4,40,42,2,1
+3598,45,-2,79,0,46,23,33,32,0,1
+3599,37,0,83,-3,34,11,46,50,4,1
+3600,41,0,81,-6,42,0,40,40,0,1
+3601,44,4,77,-1,44,2,33,33,0,1
+3602,37,5,104,0,24,2,66,80,14,1
+3603,55,0,77,0,-2,-20,21,79,58,4
+3604,51,0,85,0,50,-6,34,36,2,1
+3605,47,0,78,1,46,0,31,32,0,1
+3606,56,0,77,0,-22,7,21,100,80,4
+3607,57,0,84,3,56,0,27,27,0,1
+3608,44,0,84,-2,44,10,41,41,0,1
+3609,46,0,84,0,46,12,39,38,0,1
+3610,56,0,77,0,12,0,22,65,42,4
+3611,57,0,90,-3,56,0,33,33,0,1
+3612,59,0,87,0,60,9,28,28,0,1
+3613,52,-2,86,0,54,30,33,32,0,1
+3614,53,1,86,0,54,5,32,32,0,1
+3615,82,0,86,-1,-40,0,4,128,124,5
+3616,55,0,77,0,28,30,21,48,28,4
+3617,44,2,76,0,44,6,32,32,0,1
+3618,43,0,86,0,44,23,43,42,0,1
+3619,55,0,76,-1,-22,-3,21,99,78,4
+3620,83,0,86,0,-4,15,3,92,88,5
+3621,43,0,89,0,42,-14,46,48,2,1
+3622,47,2,78,0,46,0,31,32,0,1
+3623,51,-1,77,0,50,-5,27,28,2,1
+3624,37,0,104,0,20,29,67,84,16,1
+3625,58,-2,86,0,56,-1,28,30,2,1
+3626,37,0,81,-6,20,7,44,61,16,1
+3627,43,1,83,2,42,0,40,42,2,1
+3628,65,-2,109,0,64,0,44,45,0,1
+3629,84,0,88,6,-2,0,4,90,86,5
+3630,37,0,106,-6,36,0,69,70,0,1
+3631,55,-4,81,0,-22,-8,26,105,78,4
+3632,55,0,77,0,26,-4,21,51,30,4
+3633,37,0,96,4,24,0,59,73,14,1
+3634,37,0,79,0,28,-37,43,51,8,1
+3635,55,0,78,3,26,0,23,52,30,4
+3636,62,1,109,0,62,1,47,47,0,1
+3637,37,0,75,0,28,28,38,46,8,1
+3638,49,0,87,6,50,1,38,38,0,1
+3639,37,0,95,0,10,25,58,84,26,1
+3640,55,5,80,-7,54,0,25,26,2,1
+3641,51,0,78,0,52,0,27,26,0,1
+3642,37,0,95,2,10,31,58,84,26,1
+3643,41,0,108,0,42,2,67,67,0,1
+3644,56,2,97,5,52,0,40,45,4,4
+3645,37,0,83,0,2,23,46,80,34,1
+3646,55,4,93,0,54,0,38,39,2,1
+3647,47,-2,78,0,46,0,31,32,0,1
+3648,37,3,83,-3,34,0,45,49,4,1
+3649,47,-4,89,0,46,0,42,42,0,1
+3650,37,5,79,0,36,0,43,43,0,1
+3651,37,-2,90,0,8,2,53,82,30,1
+3652,37,0,79,0,8,31,42,71,30,1
+3653,41,5,79,0,38,-16,38,40,2,1
+3654,56,0,77,13,-4,0,21,83,62,4
+3655,37,0,105,-4,20,-2,68,84,16,1
+3656,50,0,107,-2,50,-4,56,58,2,1
+3657,43,0,86,5,42,-1,43,45,2,1
+3658,43,0,77,0,42,-17,34,36,2,1
+3659,81,0,86,5,-40,5,5,127,122,5
+3660,37,0,83,0,-2,-22,47,86,40,1
+3661,42,-3,86,0,42,0,44,44,0,1
+3662,53,0,88,0,54,15,35,33,0,1
+3663,42,3,108,0,42,0,66,67,0,1
+3664,55,0,93,0,46,-9,37,46,8,4
+3665,55,0,79,0,20,16,23,58,34,4
+3666,39,-1,77,0,38,0,39,39,0,1
+3667,80,0,84,-1,-38,-6,4,123,118,5
+3668,52,0,88,0,52,0,36,36,0,1
+3669,51,0,86,-4,50,-27,35,37,2,1
+3670,45,0,82,6,44,0,37,38,2,1
+3671,39,0,78,1,38,0,39,39,0,1
+3672,80,-3,84,-3,-42,9,5,128,124,5
+3673,55,0,77,0,-20,-5,21,97,76,4
+3674,44,0,76,2,44,0,32,32,0,1
+3675,56,3,98,4,54,24,42,44,2,1
+3676,45,-1,81,0,46,16,36,35,0,1
+3677,43,-4,76,0,42,-18,33,35,2,1
+3678,43,0,81,8,44,30,38,37,0,1
+3679,45,-1,86,-3,44,-6,41,42,2,1
+3680,42,0,78,-6,42,0,36,37,0,1
+3681,42,-2,78,0,42,0,36,37,2,1
+3682,47,-1,81,0,46,0,34,35,0,1
+3683,83,0,86,0,-4,30,3,92,88,5
+3684,39,4,86,0,38,0,48,48,0,1
+3685,37,0,76,0,20,6,40,55,16,1
+3686,37,0,77,0,-22,5,41,101,60,1
+3687,43,-4,85,0,42,0,42,44,2,1
+3688,51,-2,83,0,50,-31,32,34,2,1
+3689,45,0,76,0,46,20,30,29,0,1
+3690,37,-5,81,0,36,0,44,45,0,1
+3691,55,0,98,5,50,0,42,49,6,4
+3692,56,0,95,-8,44,-1,39,51,12,4
+3693,56,0,97,0,44,27,41,53,12,4
+3694,55,0,82,1,-18,-11,26,100,74,4
+3695,37,-1,76,0,20,0,39,55,16,1
+3696,50,2,83,0,50,0,32,33,2,1
+3697,55,-5,72,-3,0,0,17,72,56,4
+3698,37,1,79,0,-2,0,42,81,40,1
+3699,41,0,79,3,42,27,39,38,0,1
+3700,38,-2,107,0,38,0,69,68,0,1
+3701,44,-2,97,4,44,5,53,53,0,1
+3702,51,-3,77,0,52,22,26,25,0,1
+3703,107,0,108,-3,70,0,1,38,36,5
+3704,55,0,77,-7,54,0,22,23,0,1
+3705,55,0,78,0,18,20,23,60,38,4
+3706,37,0,80,-2,20,-5,43,59,16,1
+3707,38,0,90,0,8,0,52,82,30,1
+3708,55,-4,81,0,-4,13,25,86,60,4
+3709,49,0,79,0,50,23,31,30,0,1
+3710,41,0,75,0,42,5,34,34,0,1
+3711,45,1,77,0,44,0,32,33,0,1
+3712,55,0,95,-1,52,-18,40,44,4,4
+3713,55,0,77,0,-2,6,21,79,58,4
+3714,37,0,97,0,36,21,59,60,2,1
+3715,55,0,81,-7,54,248,26,27,2,1
+3716,45,0,84,-1,44,0,40,41,0,1
+3717,41,3,78,0,42,2,37,37,0,1
+3718,56,0,81,0,-10,-8,25,92,66,4
+3719,48,2,86,0,46,0,37,39,2,1
+3720,56,0,81,0,-6,0,25,89,64,4
+3721,50,0,84,0,50,0,33,35,2,1
+3722,55,0,92,0,36,-1,37,56,20,4
+3723,46,5,76,3,46,0,30,30,0,1
+3724,37,0,78,-1,12,-4,41,65,24,1
+3725,55,5,77,0,34,0,22,44,22,4
+3726,56,1,81,0,-6,-19,25,88,64,4
+3727,56,0,77,0,46,2,22,31,10,4
+3728,56,1,88,0,54,-3,32,33,2,1
+3729,37,0,78,0,26,3,41,52,12,1
+3730,43,1,107,0,42,0,64,66,2,1
+3731,56,0,95,0,56,8,39,39,0,1
+3732,53,0,103,0,52,-14,50,51,2,1
+3733,51,-1,78,0,50,-7,27,29,2,1
+3734,55,0,77,5,-22,0,22,101,78,4
+3735,49,-3,80,0,50,0,31,31,0,1
+3736,56,3,82,0,56,15,26,25,0,1
+3737,37,3,79,0,18,0,41,61,20,1
+3738,42,-1,82,0,42,0,40,41,0,1
+3739,47,4,83,0,46,0,37,37,0,1
+3740,37,0,92,0,16,5,54,76,22,1
+3741,49,-4,79,0,50,0,30,30,0,1
+3742,37,0,100,-1,28,0,64,72,8,1
+3743,37,0,104,0,20,1,67,84,16,1
+3744,48,-1,83,-4,46,-6,35,37,2,1
+3745,51,0,109,0,50,-9,58,60,2,1
+3746,55,0,96,0,46,7,41,50,8,4
+3747,47,-2,88,0,46,0,41,42,0,1
+3748,41,0,81,-2,38,-27,40,42,2,1
+3749,45,0,79,0,46,19,34,33,0,1
+3750,37,0,80,0,26,0,43,54,12,1
+3751,44,0,82,0,44,4,38,38,0,1
+3752,49,-1,83,-3,46,10,34,37,2,1
+3753,102,0,103,5,70,-10,1,33,32,5
+3754,48,0,83,4,46,0,35,36,2,1
+3755,46,0,86,0,46,13,40,39,0,1
+3756,56,0,79,0,56,4,23,22,0,1
+3757,38,0,86,0,38,2,49,48,0,1
+3758,43,0,76,17,42,-5,33,35,2,1
+3759,49,0,95,0,46,-19,47,49,2,1
+3760,47,0,79,-2,46,0,32,32,0,1
+3761,41,0,83,0,38,-24,41,44,2,1
+3762,42,5,81,0,42,0,39,40,0,1
+3763,37,0,76,5,30,0,39,45,6,1
+3764,53,0,84,0,54,5,30,30,0,1
+3765,59,0,86,0,60,7,28,27,0,1
+3766,44,-5,83,0,42,-30,40,42,2,1
+3767,55,-1,95,-3,54,-5,40,41,2,1
+3768,37,0,79,0,8,20,42,71,28,1
+3769,37,-3,76,0,20,0,39,55,16,1
+3770,53,0,88,2,52,-12,35,36,2,1
+3771,55,4,74,1,-4,-2,18,79,60,4
+3772,56,0,95,0,50,-21,40,46,6,4
+3773,40,0,87,0,38,-1,47,48,2,1
+3774,45,0,79,0,44,-6,33,35,2,1
+3775,37,1,82,0,36,0,45,46,2,1
+3776,37,0,90,53,6,0,53,85,32,1
+3777,37,-2,79,-6,12,-16,42,66,24,1
+3778,37,1,75,0,20,0,38,54,16,1
+3779,47,-4,86,1,46,0,39,40,0,1
+3780,106,0,108,0,72,2,1,35,34,5
+3781,62,0,109,0,62,3,47,47,0,1
+3782,106,0,108,-2,70,-2,1,38,36,5
+3783,37,0,78,-6,0,0,42,78,36,1
+3784,41,2,76,0,38,-25,35,37,2,1
+3785,37,0,104,-1,20,27,67,84,16,1
+3786,53,0,103,0,52,-15,50,51,2,1
+3787,55,0,96,1,46,0,41,50,8,4
+3788,43,0,81,0,42,0,38,40,2,1
+3789,37,0,79,0,28,15,42,51,8,1
+3790,37,-2,75,0,26,-1,38,49,10,1
+3791,56,0,91,0,54,-13,35,37,2,1
+3792,79,-3,83,0,-46,0,5,130,126,5
+3793,41,-3,89,4,42,0,48,48,0,1
+3794,49,5,77,0,50,2,28,28,0,1
+3795,41,1,75,0,42,10,34,34,0,1
+3796,47,0,77,-3,46,0,29,30,0,1
+3797,37,0,108,-1,34,0,71,74,4,1
+3798,56,0,78,8,10,1,22,68,46,4
+3799,53,6,79,0,42,-1,25,37,12,4
+3800,56,0,76,0,-18,-14,20,94,74,4
+3801,45,5,86,0,44,0,41,42,2,1
+3802,38,0,107,0,38,7,69,68,0,1
+3803,50,-2,88,0,50,0,37,39,2,1
+3804,46,0,83,3,44,-26,37,39,2,1
+3805,37,0,81,0,24,-11,44,57,14,1
+3806,41,0,83,7,38,-10,42,44,2,1
+3807,37,0,80,0,30,5,43,49,6,1
+3808,41,0,109,2,38,-4,68,70,2,1
+3809,47,-1,84,-4,46,0,38,38,0,1
+3810,37,0,100,0,34,0,64,67,4,1
+3811,37,0,93,0,28,8,55,64,8,1
+3812,45,0,79,-1,44,5,33,35,2,1
+3813,50,5,82,0,50,0,32,33,2,1
+3814,64,-2,111,1,62,-4,47,49,2,1
+3815,37,1,97,0,34,1,60,64,4,1
+3816,37,0,104,0,26,6,67,78,12,1
+3817,44,1,93,0,44,5,50,50,0,1
+3818,55,0,92,-7,30,-5,36,61,24,4
+3819,37,0,80,0,36,-15,43,44,2,1
+3820,37,0,76,0,34,9,39,43,4,1
+3821,37,0,82,4,26,-5,45,56,10,1
+3822,39,4,77,0,38,0,38,38,0,1
+3823,56,3,77,-2,44,0,22,34,12,4
+3824,56,2,77,1,10,8,22,67,46,4
+3825,37,0,81,0,36,3,43,44,2,1
+3826,55,0,76,0,-14,15,21,92,70,4
+3827,45,0,79,-2,44,-6,33,35,2,1
+3828,37,4,82,0,36,0,45,46,2,1
+3829,54,1,79,6,54,0,26,25,0,1
+3830,37,-6,106,0,36,0,69,69,0,1
+3831,56,4,79,0,-4,0,24,85,62,4
+3832,47,1,102,0,46,0,55,55,0,1
+3833,39,-3,81,0,38,0,43,43,0,1
+3834,49,0,83,-1,50,31,34,34,0,1
+3835,44,0,76,6,44,6,32,32,0,1
+3836,55,0,82,7,-12,0,26,95,68,4
+3837,49,0,79,0,50,9,30,30,0,1
+3838,51,0,86,0,52,28,36,35,0,1
+3839,44,3,75,0,44,1,31,31,0,1
+3840,41,0,77,-4,42,0,36,35,0,1
+3841,56,1,91,0,-4,0,35,96,62,4
+3842,46,0,85,3,44,-30,39,41,2,1
+3843,57,1,86,-6,56,0,30,30,0,1
+3844,37,0,107,0,28,-24,70,78,8,1
+3845,55,0,77,0,16,22,22,62,40,4
+3846,50,-1,88,-2,50,0,38,39,0,1
+3847,56,0,77,0,44,-21,22,34,12,4
+3848,41,1,79,0,42,14,38,38,0,1
+3849,47,0,77,-3,46,0,31,31,0,1
+3850,56,3,87,5,56,0,31,30,0,1
+3851,59,1,84,0,56,-25,25,27,2,1
+3852,41,0,81,0,42,11,39,39,0,1
+3853,58,3,97,0,56,0,39,40,0,1
+3854,37,0,77,-5,36,7,40,41,0,1
+3855,82,0,85,-1,-2,9,3,88,84,5
+3856,46,0,88,1,46,12,43,42,0,1
+3857,52,0,88,0,52,-6,35,36,0,1
+3858,37,-17,106,-2,34,-4,69,72,4,1
+3859,43,-2,86,0,42,0,43,44,2,1
+3860,40,-1,108,0,38,0,68,69,2,1
+3861,37,0,79,-5,2,0,43,77,34,1
+3862,37,0,106,0,36,0,68,69,2,1
+3863,45,0,76,0,44,-1,30,32,2,1
+3864,48,2,95,0,46,0,47,49,2,1
+3865,44,0,75,0,42,-24,31,34,2,1
+3866,56,0,96,-3,50,-3,40,47,6,4
+3867,37,0,97,0,34,12,60,64,4,1
+3868,44,3,81,0,44,22,37,37,0,1
+3869,56,-1,95,0,56,12,40,39,0,1
+3870,37,-1,82,0,36,-23,45,46,2,1
+3871,50,-2,101,0,50,0,52,52,0,1
+3872,51,4,102,0,52,7,51,50,0,1
+3873,46,2,93,0,46,1,48,47,0,1
+3874,37,0,77,0,18,-7,41,59,18,1
+3875,51,-3,86,0,52,0,35,34,0,1
+3876,43,0,81,-5,42,0,37,39,2,1
+3877,55,0,77,0,-10,6,21,87,66,4
+3878,37,0,77,0,6,-24,40,72,32,1
+3879,46,0,76,0,46,14,30,30,0,1
+3880,55,0,78,0,10,-5,23,68,46,4
+3881,56,3,98,0,42,0,42,57,14,4
+3882,55,0,71,-1,0,0,16,71,56,4
+3883,44,0,84,0,42,-18,40,43,2,1
+3884,55,-5,80,-7,-2,0,25,83,58,4
+3885,56,2,91,0,56,2,35,34,0,1
+3886,83,1,88,0,6,0,5,83,78,5
+3887,39,2,81,0,38,0,42,42,0,1
+3888,43,0,81,0,42,-16,38,40,2,1
+3889,37,0,79,0,2,-20,42,76,34,1
+3890,53,-2,80,0,52,-25,27,28,2,1
+3891,41,0,79,-2,42,2,38,37,0,1
+3892,104,0,104,-7,70,0,1,35,34,5
+3893,41,0,76,0,42,4,34,34,0,1
+3894,47,-4,76,0,46,0,30,30,0,1
+3895,56,0,78,0,24,-3,22,55,32,4
+3896,37,0,79,-2,36,-4,42,43,2,1
+3897,41,3,79,0,38,-22,38,40,2,1
+3898,55,0,77,0,-28,22,22,106,84,4
+3899,52,0,88,-4,52,0,35,36,0,1
+3900,45,4,83,0,44,0,37,39,2,1
+3901,37,0,104,0,18,0,67,86,18,1
+3902,45,0,82,0,44,-5,37,38,2,1
+3903,37,0,92,-2,18,6,55,74,20,1
+3904,44,-1,86,0,44,5,43,42,0,1
+3905,56,0,80,0,54,-24,24,26,2,1
+3906,49,0,86,0,46,-17,37,39,2,1
+3907,43,1,90,0,42,0,47,49,2,1
+3908,55,5,79,0,54,0,24,25,2,1
+3909,45,-1,86,0,44,-13,40,42,2,1
+3910,43,0,85,-1,42,-8,42,44,2,1
+3911,37,0,107,2,36,0,69,71,2,1
+3912,43,0,76,0,44,23,33,32,0,1
+3913,45,0,88,0,44,0,42,44,2,1
+3914,43,0,85,-1,42,0,42,44,2,1
+3915,44,0,84,0,44,2,40,40,0,1
+3916,43,3,83,0,42,0,39,41,2,1
+3917,40,0,106,0,38,0,66,67,2,1
+3918,37,0,79,0,2,1,42,76,34,1
+3919,58,5,81,0,56,0,23,24,2,1
+3920,43,1,85,0,42,-2,42,44,2,1
+3921,46,0,86,0,46,6,40,39,0,1
+3922,55,0,81,-4,54,0,26,27,2,1
+3923,45,1,86,0,46,29,40,39,0,1
+3924,37,-3,106,-5,30,-5,69,75,6,1
+3925,46,0,79,0,46,19,34,33,0,1
+3926,45,0,80,0,44,-15,35,36,2,1
+3927,37,0,76,0,36,22,39,40,2,1
+3928,37,-110,106,0,34,-3,69,72,4,3
+3929,37,0,76,0,30,3,40,45,6,1
+3930,41,-1,77,0,38,-6,36,38,2,1
+3931,43,-3,99,0,42,-14,56,58,2,1
+3932,37,0,76,0,26,6,39,50,12,1
+3933,40,0,88,1,38,0,48,50,2,1
+3934,49,-2,78,0,46,-23,29,32,2,1
+3935,42,2,79,0,42,0,37,38,2,1
+3936,107,0,108,-2,72,8,1,35,34,5
+3937,41,0,83,0,42,28,42,41,0,1
+3938,37,0,75,-2,28,-4,38,46,8,1
+3939,41,0,76,0,38,-29,35,37,2,1
+3940,59,-4,108,0,60,4,49,49,0,1
+3941,37,0,104,0,18,18,67,86,18,1
+3942,37,0,83,7,10,0,47,73,26,1
+3943,41,5,86,0,38,-3,46,48,2,1
+3944,81,5,84,2,-20,0,4,105,102,5
+3945,55,0,96,0,50,9,41,47,6,4
+3946,46,-2,76,0,46,6,30,30,0,1
+3947,45,-4,86,0,44,-1,41,42,2,1
+3948,56,-1,92,0,54,-30,35,37,2,1
+3949,37,0,81,0,10,-9,45,71,26,1
+3950,39,-2,107,0,38,0,68,68,0,1
+3951,37,0,79,0,2,-24,42,76,34,1
+3952,56,2,86,0,54,-7,30,32,2,1
+3953,37,-1,107,0,36,0,70,71,0,1
+3954,84,0,88,-1,6,-5,5,83,78,5
+3955,46,0,88,5,46,0,42,42,0,1
+3956,45,-1,86,0,44,-3,41,42,2,1
+3957,43,0,78,0,44,22,35,34,0,1
+3958,38,1,94,0,38,20,56,55,0,1
+3959,44,0,86,0,44,3,42,42,0,1
+3960,76,3,81,2,-40,9,5,122,118,5
+3961,37,0,78,0,20,7,41,57,16,1
+3962,41,2,81,0,38,0,40,42,2,1
+3963,46,0,76,-1,46,3,30,30,0,1
+3964,39,-1,81,0,38,0,43,43,0,1
+3965,59,0,86,0,56,-8,28,30,2,1
+3966,53,1,81,0,52,-6,28,30,2,1
+3967,48,0,81,0,46,-7,33,35,2,1
+3968,37,0,80,0,24,16,43,57,14,1
+3969,44,1,76,0,42,-18,32,34,2,1
+3970,37,0,95,0,8,0,58,87,30,1
+3971,55,0,79,0,20,-13,24,59,34,4
+3972,56,0,81,0,-14,16,25,97,72,4
+3973,41,0,76,-1,38,-17,35,37,2,1
+3974,37,0,79,0,6,-8,42,74,32,1
+3975,55,0,95,-7,52,-14,40,44,4,4
+3976,38,0,81,0,38,1,43,42,0,1
+3977,83,0,86,0,-2,31,3,89,86,5
+3978,43,0,86,1,42,-6,43,45,2,1
+3979,59,0,86,-3,60,18,27,26,0,1
+3980,45,0,77,4,44,0,32,34,2,1
+3981,41,-1,83,0,42,11,42,41,0,1
+3982,37,0,95,0,10,30,58,84,26,1
+3983,55,0,94,5,18,0,39,76,38,4
+3984,49,-1,81,0,46,-19,33,35,2,1
+3985,46,0,85,-1,44,-21,39,41,2,1
+3986,102,0,102,-3,72,11,1,30,30,5
+3987,37,0,97,0,30,-6,60,66,6,1
+3988,79,0,83,0,-46,-12,4,130,126,5
+3989,55,0,92,0,34,-12,37,59,22,4
+3990,48,0,81,0,50,31,32,32,0,1
+3991,56,0,96,6,46,0,40,50,10,4
+3992,37,0,82,0,38,25,45,43,0,1
+3993,51,0,87,0,50,-7,36,38,2,1
+3994,56,3,97,0,52,17,41,45,4,4
+3995,56,0,84,0,56,6,29,28,0,1
+3996,49,2,78,0,50,4,29,29,0,1
+3997,54,1,83,-1,54,0,29,29,0,1
+3998,45,0,86,-2,44,-5,41,42,2,1
+3999,37,0,79,0,2,2,42,76,34,1
+4000,59,1,84,0,56,-8,25,27,2,1
+4001,56,0,78,0,24,-9,22,55,32,4
+4002,56,5,93,3,46,0,37,46,10,4
+4003,44,0,76,0,44,0,32,32,0,1
+4004,40,-2,78,0,38,0,38,39,2,1
+4005,50,-3,79,0,50,0,28,30,2,1
+4006,37,-28,106,5,36,0,69,69,0,1
+4007,56,-1,77,-4,24,-13,22,54,32,4
+4008,55,0,78,0,24,-14,23,55,32,4
+4009,54,1,81,1,54,0,28,27,0,1
+4010,49,0,88,-2,50,6,40,39,0,1
+4011,53,0,82,0,52,-6,29,30,2,1
+4012,37,4,75,0,34,0,37,41,4,1
+4013,49,-58,88,0,6,-17,40,83,44,3
+4014,37,0,94,0,34,5,57,61,4,1
+4015,37,0,76,0,36,8,39,39,0,1
+4016,51,0,109,5,50,-30,58,60,2,1
+4017,55,-1,80,0,-10,0,25,90,66,4
+4018,44,1,79,0,44,2,36,35,0,1
+4019,43,0,83,0,42,-4,39,41,2,1
+4020,44,0,76,4,42,-28,32,35,2,1
+4021,81,0,84,0,-14,17,3,100,96,5
+4022,41,4,86,0,38,-1,46,48,2,1
+4023,53,-1,80,0,52,-13,27,28,2,1
+4024,47,1,83,7,46,0,37,37,0,1
+4025,45,1,86,-4,44,0,40,42,2,1
+4026,55,0,95,0,44,-29,40,51,12,4
+4027,37,0,76,0,38,26,38,37,0,1
+4028,48,4,102,0,46,0,53,55,2,1
+4029,37,0,75,0,30,-14,38,44,6,1
+4030,45,0,81,-1,44,-9,36,37,2,1
+4031,37,0,84,0,20,-1,47,63,16,1
+4032,37,0,76,5,36,0,40,40,0,1
+4033,37,-22,77,0,20,0,40,56,16,1
+4034,37,0,97,0,36,14,59,60,2,1
+4035,37,0,77,0,34,-26,40,43,4,1
+4036,49,0,77,0,50,26,29,28,0,1
+4037,43,-3,78,0,42,0,35,37,2,1
+4038,56,0,92,0,56,31,36,35,0,1
+4039,45,5,102,0,44,-3,57,58,2,1
+4040,80,0,84,0,-32,20,4,117,114,5
+4041,41,0,83,0,38,-1,42,44,2,1
+4042,44,0,79,0,44,16,36,35,0,1
+4043,44,-1,79,0,44,5,35,35,0,1
+4044,46,0,86,0,44,-28,40,42,2,1
+4045,47,-1,81,-5,46,-7,34,34,0,1
+4046,44,1,83,0,44,15,39,39,0,1
+4047,55,0,96,0,44,15,41,52,12,4
+4048,46,0,86,0,44,-22,41,42,2,1
+4049,49,0,77,0,50,20,28,28,0,1
+4050,76,0,80,-2,-42,-8,4,124,120,5
+4051,41,0,88,-5,38,-14,48,50,2,1
+4052,41,0,79,0,42,0,38,37,0,1
+4053,46,0,79,3,46,0,33,32,0,1
+4054,53,0,82,0,54,11,29,28,0,1
+4055,52,-3,81,0,52,0,30,30,0,1
+4056,56,0,95,0,42,-20,40,54,14,4
+4057,56,0,96,0,38,-23,40,57,18,4
+4058,37,0,100,0,36,-13,63,64,2,1
+4059,41,0,81,0,42,20,41,40,0,1
+4060,55,-4,79,0,54,-6,23,24,2,1
+4061,37,0,76,0,28,22,39,47,8,1
+4062,82,0,85,0,-6,8,3,93,90,5
+4063,59,0,84,0,60,18,25,24,0,1
+4064,42,0,81,-7,42,0,39,40,0,1
+4065,43,0,80,0,42,-12,37,39,2,1
+4066,56,0,78,0,10,4,22,68,46,4
+4067,53,-2,80,0,52,-20,27,28,2,1
+4068,55,0,95,0,44,0,40,51,12,4
+4069,37,0,77,0,26,-4,41,52,10,1
+4070,46,-2,88,0,46,0,42,41,0,1
+4071,55,0,81,-7,54,0,26,27,0,1
+4072,37,-19,78,0,10,0,42,68,26,1
+4073,48,0,83,0,46,-6,34,36,2,1
+4074,46,4,77,0,46,1,31,30,0,1
+4075,47,-4,86,-1,46,0,39,40,0,1
+4076,56,0,95,0,42,-14,40,54,14,4
+4077,45,-5,88,0,44,0,44,44,0,1
+4078,56,4,96,0,54,4,40,42,2,1
+4079,101,-1,102,0,70,-2,1,33,32,5
+4080,37,0,78,7,34,-7,41,45,4,1
+4081,43,-2,76,0,42,-17,33,35,2,1
+4082,37,-1,104,0,24,2,67,80,14,1
+4083,41,-5,78,0,38,-16,37,39,2,1
+4084,52,2,86,0,52,0,34,34,0,1
+4085,41,0,86,-1,42,15,45,44,0,1
+4086,37,0,79,6,2,6,42,76,34,1
+4087,37,0,76,0,26,-13,39,50,10,1
+4088,49,-4,81,0,50,0,32,32,0,1
+4089,54,5,83,0,54,0,29,29,0,1
+4090,55,-1,76,0,-18,-15,21,94,74,4
+4091,50,4,79,0,50,0,29,30,0,1
+4092,37,0,92,0,12,-4,54,79,24,1
+4093,55,0,96,8,46,0,41,50,8,4
+4094,37,0,77,1,36,-5,39,41,2,1
+4095,49,0,88,2,46,-4,40,42,2,1
+4096,37,2,97,0,34,-5,60,64,4,1
+4097,37,0,80,0,16,-5,43,65,22,1
+4098,56,0,80,0,56,11,24,23,0,1
+4099,49,0,83,-1,50,26,34,34,0,1
+4100,46,0,85,0,46,-1,39,39,0,1
+4101,43,-2,76,0,42,0,33,34,2,1
+4102,37,0,78,0,12,-20,42,65,24,1
+4103,44,0,85,0,44,2,41,41,0,1
+4104,55,2,84,0,54,-6,29,30,2,1
+4105,79,0,83,0,-46,-21,4,130,126,5
+4106,37,-1,80,2,-2,0,43,83,40,1
+4107,37,0,83,0,0,6,46,83,36,1
+4108,56,0,96,0,56,0,40,39,0,1
+4109,51,-1,79,0,50,-30,27,30,2,1
+4110,41,0,79,3,38,-6,39,41,2,1
+4111,45,-1,78,0,44,-11,33,34,2,1
+4112,50,5,107,0,50,0,56,58,2,1
+4113,56,0,97,4,50,-10,41,48,6,4
+4114,56,-5,81,0,56,3,25,24,0,1
+4115,37,0,76,0,30,-16,39,45,6,1
+4116,41,0,83,0,38,-19,42,44,2,1
+4117,48,-5,81,0,46,-6,33,35,2,1
+4118,39,0,75,0,38,0,35,36,0,1
+4119,43,0,86,-6,42,0,43,44,2,1
+4120,39,-4,76,0,38,0,37,37,0,1
+4121,45,-1,84,0,46,21,38,37,0,1
+4122,64,-5,109,0,64,0,45,45,0,1
+4123,55,0,77,0,12,19,21,64,42,4
+4124,45,-4,87,0,46,14,42,41,0,1
+4125,37,1,90,0,24,21,52,66,14,1
+4126,48,0,84,0,46,0,37,38,2,1
+4127,38,0,96,0,38,5,58,57,0,1
+4128,41,-5,97,0,42,18,57,56,0,1
+4129,43,0,79,5,42,0,36,37,2,1
+4130,37,0,83,0,10,-6,46,72,26,1
+4131,37,0,80,-4,8,0,43,72,28,1
+4132,37,0,78,0,18,-1,42,60,18,1
+4133,49,0,76,-2,46,-25,27,30,2,1
+4134,47,-1,85,-1,46,-1,38,39,0,1
+4135,49,3,81,0,50,1,31,32,0,1
+4136,55,-2,98,0,44,-8,42,54,12,4
+4137,45,0,86,0,44,-14,40,42,2,1
+4138,37,-1,77,0,38,9,39,38,0,1
+4139,62,0,110,6,62,0,48,48,0,1
+4140,41,0,87,1,38,-14,46,48,2,1
+4141,37,0,78,-1,12,-2,41,65,24,1
+4142,37,0,76,-6,34,7,39,42,2,1
+4143,37,0,81,0,26,9,45,55,10,1
+4144,56,0,81,0,-6,-11,25,88,64,4
+4145,55,0,83,1,-24,9,27,108,82,4
+4146,55,0,81,0,56,31,26,24,0,1
+4147,37,0,83,0,-2,-7,47,86,40,1
+4148,46,0,79,0,44,-18,34,35,2,1
+4149,56,0,107,0,54,-14,51,53,2,1
+4150,37,0,81,0,12,3,45,68,24,1
+4151,56,3,97,0,46,11,41,51,10,4
+4152,37,0,81,-4,26,-4,45,55,10,1
+4153,38,0,90,-4,6,0,52,85,32,1
+4154,42,0,77,-6,42,0,34,35,2,1
+4155,80,-2,84,-3,-42,-24,4,128,124,5
+4156,80,2,84,0,-40,4,4,126,122,5
+4157,59,0,86,0,56,-22,28,30,2,1
+4158,37,0,79,0,2,24,42,76,34,1
+4159,56,3,85,0,56,1,29,28,0,1
+4160,56,0,92,2,-2,0,36,95,58,4
+4161,37,0,95,0,24,25,58,72,14,1
+4162,51,-1,79,0,50,-8,28,30,2,1
+4163,56,5,86,0,56,1,29,29,0,1
+4164,43,-4,75,0,42,0,32,34,2,1
+4165,37,0,78,0,10,-11,41,68,26,1
+4166,41,-3,79,0,38,-12,38,40,2,1
+4167,76,2,81,0,-40,20,4,122,118,5
+4168,41,0,83,0,42,5,41,41,0,1
+4169,53,0,86,0,54,20,33,32,0,1
+4170,55,0,98,0,50,-8,42,49,6,4
+4171,45,0,84,0,46,30,39,38,0,1
+4172,37,0,77,-3,28,0,40,48,8,1
+4173,49,2,85,0,46,-1,36,39,2,1
+4174,43,0,86,-7,44,16,43,42,0,1
+4175,51,1,82,1,50,0,31,33,2,1
+4176,55,0,95,3,38,12,40,57,16,4
+4177,56,0,77,0,-2,8,21,79,58,4
+4178,44,-1,77,0,44,8,33,33,0,1
+4179,51,0,88,0,50,-20,36,39,2,1
+4180,41,0,86,1,38,-30,45,48,2,1
+4181,37,0,80,0,24,1,43,57,14,1
+4182,58,0,86,0,56,-3,27,29,2,1
+4183,37,0,95,0,20,22,57,74,16,1
+4184,44,1,79,0,42,-11,35,37,2,1
+4185,48,-4,76,-1,46,-6,28,30,2,1
+4186,41,0,76,0,38,-23,35,37,2,1
+4187,44,0,86,1,44,9,42,42,0,1
+4188,55,0,79,0,12,-17,23,66,42,4
+4189,46,1,83,0,46,3,37,36,0,1
+4190,83,0,86,0,-4,27,3,92,88,5
+4191,49,0,83,0,50,21,34,34,0,1
+4192,41,0,79,0,42,20,38,37,0,1
+4193,47,-1,90,6,46,0,42,43,0,1
+4194,44,0,76,0,44,17,32,32,0,1
+4195,55,0,96,-3,52,0,41,44,4,4
+4196,37,0,77,0,36,-8,39,41,2,1
+4197,51,-2,81,0,50,-20,30,32,2,1
+4198,37,0,76,0,28,20,40,48,8,1
+4199,45,0,88,-1,44,-2,43,44,2,1
+4200,37,0,96,0,30,-6,59,65,6,1
+4201,55,0,99,0,50,11,43,49,6,4
+4202,55,0,82,-7,-30,5,26,113,86,4
+4203,56,2,96,0,52,0,40,44,4,4
+4204,37,1,80,-1,36,0,43,44,2,1
+4205,76,0,81,4,-40,0,5,122,118,5
+4206,41,1,83,0,42,31,42,42,0,1
+4207,56,0,77,0,-20,21,21,97,76,4
+4208,56,1,81,0,54,-6,25,27,2,1
+4209,77,2,81,0,-42,0,4,125,120,5
+4210,53,1,81,0,52,-5,28,30,2,1
+4211,55,0,81,0,-6,26,25,88,64,4
+4212,41,-5,77,0,38,-27,36,38,2,1
+4213,45,0,77,0,44,-14,31,33,2,1
+4214,37,0,104,0,34,3,67,71,4,1
+4215,37,0,104,0,24,1,67,81,14,1
+4216,40,2,106,5,38,0,66,67,2,1
+4217,55,0,77,0,12,-1,22,65,42,4
+4218,48,0,77,-7,46,0,29,31,2,1
+4219,56,1,98,0,42,11,42,57,14,4
+4220,38,0,81,0,36,-30,43,44,2,1
+4221,41,-1,78,0,42,6,37,37,0,1
+4222,42,-5,81,0,42,0,39,40,0,1
+4223,39,-1,82,0,38,0,43,43,0,1
+4224,46,0,81,0,46,11,35,35,0,1
+4225,55,0,77,0,24,-2,21,54,32,4
+4226,42,0,86,-6,42,0,44,44,0,1
+4227,55,0,98,0,52,-5,42,46,4,4
+4228,38,-2,81,0,38,0,43,42,0,1
+4229,45,4,86,0,44,-4,40,42,2,1
+4230,45,-2,82,0,44,0,37,38,0,1
+4231,53,0,103,0,54,28,50,49,0,1
+4232,37,-1,82,-3,36,-6,45,46,2,1
+4233,46,1,85,0,46,5,39,39,0,1
+4234,44,0,81,0,42,-20,38,40,2,1
+4235,37,0,83,0,0,-30,46,83,36,1
+4236,56,0,97,0,56,30,41,40,0,1
+4237,49,0,106,1,46,-11,58,60,2,1
+4238,49,0,88,0,50,25,40,39,0,1
+4239,41,-1,77,0,38,-13,36,38,2,1
+4240,37,0,76,0,26,9,40,50,10,1
+4241,37,0,78,0,12,5,42,65,24,1
+4242,41,0,79,0,38,-30,38,40,2,1
+4243,55,-2,97,0,54,0,41,42,2,1
+4244,56,0,97,0,52,4,41,45,4,4
+4245,45,0,78,0,44,-8,33,34,2,1
+4246,50,-1,77,-3,50,-4,27,28,0,1
+4247,44,-2,109,0,44,0,66,66,0,1
+4248,52,1,82,7,52,0,29,30,0,1
+4249,45,0,81,0,46,23,35,34,0,1
+4250,45,-5,76,0,44,0,31,32,0,1
+4251,56,0,97,0,52,-12,41,46,4,4
+4252,57,0,82,-1,56,0,25,25,0,1
+4253,46,0,90,0,46,6,44,44,0,1
+4254,37,0,83,0,34,8,46,49,2,1
+4255,56,0,77,0,44,-12,22,34,12,4
+4256,55,-1,98,3,46,-26,42,51,8,4
+4257,56,-1,84,0,56,4,28,27,0,1
+4258,45,4,95,0,44,0,51,51,0,1
+4259,37,0,95,0,20,6,57,74,16,1
+4260,56,0,79,7,0,0,23,79,56,4
+4261,85,0,88,-5,6,2,3,83,80,5
+4262,56,5,86,0,54,-15,30,32,2,1
+4263,49,0,79,0,50,21,30,30,0,1
+4264,37,0,95,2,18,0,58,77,20,1
+4265,37,0,108,-1,36,0,70,71,2,1
+4266,47,-5,86,0,46,0,39,40,0,1
+4267,55,0,85,0,54,-1,30,31,2,1
+4268,45,0,77,0,46,12,32,31,0,1
+4269,58,5,91,2,56,0,32,34,2,1
+4270,55,0,81,-1,-14,4,26,97,70,4
+4271,55,0,93,0,50,-4,38,44,6,4
+4272,43,3,82,0,42,0,39,41,2,1
+4273,38,0,82,-1,38,-2,44,43,0,1
+4274,80,5,84,1,-40,9,4,126,122,5
+4275,44,1,78,0,44,9,34,34,0,1
+4276,56,0,92,-1,46,0,36,46,10,4
+4277,85,0,88,0,0,-18,3,88,86,5
+4278,41,-1,79,0,42,6,38,38,0,1
+4279,56,2,78,2,44,0,22,34,12,4
+4280,46,1,88,4,44,-16,42,44,2,1
+4281,37,0,82,0,38,30,45,43,0,1
+4282,56,-4,95,0,54,0,40,41,2,1
+4283,48,5,81,0,46,0,33,35,2,1
+4284,45,0,79,-1,44,-2,33,35,2,1
+4285,37,0,80,-8,34,0,43,46,4,1
+4286,82,0,85,0,-10,-23,3,95,92,5
+4287,37,0,94,0,10,-14,57,84,26,1
+4288,56,0,97,0,52,31,41,45,4,4
+4289,44,0,88,0,44,18,44,44,0,1
+4290,56,0,81,0,-20,-3,25,102,76,4
+4291,41,0,86,0,42,24,46,45,0,1
+4292,41,-1,76,0,38,-30,35,37,2,1
+4293,58,-2,87,0,56,0,29,30,2,1
+4294,51,-65,88,0,8,5,37,81,44,3
+4295,47,0,86,-5,46,0,40,40,0,1
+4296,48,-2,106,0,46,0,58,60,2,1
+4297,53,1,84,0,52,-13,31,32,2,1
+4298,47,3,82,0,46,0,34,35,0,1
+4299,37,0,79,0,18,26,43,61,18,1
+4300,43,0,77,0,44,17,34,33,0,1
+4301,37,0,79,-1,36,-6,42,43,2,1
+4302,37,0,78,-1,2,-4,41,75,34,1
+4303,55,0,92,0,26,-7,36,66,30,4
+4304,50,-3,83,0,50,0,32,33,2,1
+4305,46,-1,83,0,46,0,37,37,0,1
+4306,45,-2,84,0,44,-10,38,40,2,1
+4307,43,0,78,0,42,-4,35,37,2,1
+4308,56,0,80,-3,20,-12,24,59,36,4
+4309,37,-4,78,0,36,0,41,42,0,1
+4310,47,0,109,6,46,0,62,62,0,1
+4311,57,-2,81,7,56,0,24,24,0,1
+4312,49,1,83,0,50,14,34,33,0,1
+4313,53,0,80,0,54,7,27,26,0,1
+4314,37,0,97,0,28,-13,60,69,8,1
+4315,56,0,97,0,44,4,41,53,12,4
+4316,49,-1,87,0,50,0,38,38,0,1
+4317,79,2,83,0,-46,0,4,130,126,5
+4318,40,0,77,-4,38,0,38,39,2,1
+4319,37,0,77,0,26,-22,40,51,10,1
+4320,55,0,95,0,52,-22,40,44,4,4
+4321,51,0,87,-3,52,0,36,35,0,1
+4322,45,0,90,0,44,-9,45,46,2,1
+4323,56,0,97,0,46,7,41,51,10,4
+4324,56,0,77,0,24,0,21,54,32,4
+4325,45,0,74,-7,44,0,30,30,0,1
+4326,45,0,83,0,46,26,37,36,0,1
+4327,45,0,76,0,44,-18,30,32,2,1
+4328,80,3,84,0,-38,-21,4,123,118,5
+4329,46,2,83,0,46,11,37,36,0,1
+4330,38,0,86,0,36,-22,48,50,2,1
+4331,37,0,80,1,6,0,43,75,32,1
+4332,38,0,76,0,36,-27,38,39,2,1
+4333,37,0,80,-6,20,0,43,59,16,1
+4334,50,0,86,0,50,0,35,37,2,1
+4335,56,0,81,1,-10,-4,25,91,66,4
+4336,55,0,93,0,46,-5,37,46,8,4
+4337,37,0,96,-6,36,0,59,60,2,1
+4338,53,0,81,0,52,-10,28,30,2,1
+4339,50,0,86,-3,50,0,36,37,0,1
+4340,37,0,76,-2,28,1,39,47,8,1
+4341,53,-4,81,-2,54,0,27,26,0,1
+4342,56,0,92,0,56,28,36,35,0,1
+4343,43,0,81,-3,42,-1,37,39,2,1
+4344,49,0,87,0,46,-4,38,41,2,1
+4345,51,0,78,0,52,11,27,26,0,1
+4346,37,0,79,0,34,8,42,46,4,1
+4347,43,4,89,1,42,0,46,48,2,1
+4348,42,0,86,-6,42,0,44,45,0,1
+4349,53,1,78,0,54,28,25,24,0,1
+4350,38,0,81,-1,38,0,43,43,0,1
+4351,41,0,78,0,42,13,37,37,0,1
+4352,84,0,88,0,-2,0,3,90,88,5
+4353,37,0,78,-3,28,0,41,50,8,1
+4354,44,0,78,0,42,-25,34,37,2,1
+4355,55,0,76,0,-14,-11,21,92,70,4
+4356,37,0,82,-3,34,0,45,48,2,1
+4357,81,0,86,5,-24,-6,4,112,108,5
+4358,37,-4,75,0,26,-3,38,49,10,1
+4359,49,1,106,0,50,22,58,57,0,1
+4360,51,-1,84,0,50,-9,33,35,2,1
+4361,55,0,77,0,18,31,22,59,38,4
+4362,84,-4,88,0,2,0,3,85,82,5
+4363,46,-1,83,0,46,4,37,37,0,1
+4364,55,0,98,0,54,20,42,44,2,1
+4365,55,-1,81,0,-22,-2,26,105,78,4
+4366,37,-2,81,0,36,-3,44,44,0,1
+4367,46,0,87,0,44,-23,41,43,2,1
+4368,37,4,79,0,24,14,41,55,14,1
+4369,43,0,83,0,44,15,39,39,0,1
+4370,42,1,77,0,42,0,35,36,0,1
+4371,44,0,77,0,42,-15,34,36,2,1
+4372,40,1,90,3,38,0,49,51,2,1
+4373,41,0,81,0,38,-22,40,42,2,1
+4374,37,0,79,0,28,5,43,51,8,1
+4375,46,-1,82,-2,46,-4,36,35,0,1
+4376,37,0,77,0,-14,-7,40,92,52,1
+4377,37,0,79,0,16,6,42,64,22,1
+4378,37,0,79,0,10,14,43,69,26,1
+4379,44,0,87,-1,44,4,43,43,0,1
+4380,53,0,86,-4,54,9,33,32,0,1
+4381,56,0,81,0,54,-3,25,27,2,1
+4382,55,-3,81,0,-22,-6,26,105,78,4
+4383,49,0,79,0,50,9,31,30,0,1
+4384,41,0,100,0,42,29,59,59,0,1
+4385,39,0,97,5,38,0,58,59,0,1
+4386,54,0,91,1,54,0,37,37,0,1
+4387,56,0,97,0,36,-10,41,60,20,4
+4388,51,0,83,0,50,-16,32,34,2,1
+4389,38,2,102,0,38,1,64,63,0,1
+4390,37,0,97,0,34,1,60,64,4,1
+4391,55,5,84,0,54,0,30,30,0,1
+4392,81,0,84,0,-20,17,4,105,102,5
+4393,59,1,87,5,60,0,28,28,0,1
+4394,51,2,79,0,52,19,27,27,0,1
+4395,55,0,92,0,24,-2,37,69,32,4
+4396,79,1,83,0,-46,0,4,129,126,5
+4397,56,0,78,0,54,-3,22,24,2,1
+4398,44,-4,76,-2,44,3,32,32,0,1
+4399,37,-1,82,-3,-2,19,45,85,40,1
+4400,55,0,77,0,10,-14,21,66,46,4
+4401,46,0,85,-1,46,-2,39,39,0,1
+4402,41,0,81,0,42,27,41,40,0,1
+4403,37,0,79,0,34,1,43,46,2,1
+4404,37,0,77,0,24,22,40,54,14,1
+4405,37,0,84,0,24,-3,47,61,14,1
+4406,41,-3,81,0,42,5,40,40,0,1
+4407,37,0,97,1,18,-12,60,79,18,1
+4408,44,-4,80,3,44,13,36,36,0,1
+4409,53,1,82,0,54,1,29,28,0,1
+4410,37,0,76,3,34,20,39,43,4,1
+4411,84,-3,88,0,0,1,4,88,84,5
+4412,56,0,97,0,52,-22,40,45,4,4
+4413,55,0,76,-6,-20,0,21,97,76,4
+4414,55,0,78,0,8,11,23,70,48,4
+4415,50,0,78,4,50,0,28,29,0,1
+4416,37,0,76,8,38,1,39,37,0,1
+4417,55,-1,81,0,-10,-1,26,92,66,4
+4418,45,2,84,0,44,0,39,40,0,1
+4419,49,0,85,0,50,0,36,36,0,1
+4420,44,2,79,0,44,20,35,35,0,1
+4421,43,0,89,-2,42,-3,46,48,2,1
+4422,55,0,82,0,-42,-12,26,126,100,4
+4423,39,5,86,0,38,0,47,48,0,1
+4424,107,0,108,-2,70,0,1,38,36,5
+4425,42,-5,85,-1,42,0,43,44,0,1
+4426,52,-4,81,0,52,-4,28,29,0,1
+4427,57,0,84,8,56,0,27,27,0,1
+4428,55,0,77,0,16,20,22,62,40,4
+4429,53,0,81,0,54,12,28,26,0,1
+4430,51,0,102,0,52,3,51,50,0,1
+4431,42,1,93,0,42,0,51,52,0,1
+4432,46,1,81,0,46,19,35,35,0,1
+4433,123,136,105,0,36,-1,-18,69,86,5
+4434,43,0,81,0,44,25,38,37,0,1
+4435,41,0,81,-1,42,-1,40,40,0,1
+4436,45,2,90,0,44,-2,44,46,2,1
+4437,55,0,92,0,26,-6,36,66,30,4
+4438,63,0,112,3,62,0,49,50,0,1
+4439,45,0,83,-1,46,23,37,36,0,1
+4440,37,0,80,0,24,-2,43,57,14,1
+4441,55,0,77,0,26,9,21,51,30,4
+4442,41,-2,77,0,42,2,36,35,0,1
+4443,55,0,93,0,2,-10,38,91,52,4
+4444,38,-4,77,0,38,0,40,39,0,1
+4445,45,0,88,0,46,25,42,41,0,1
+4446,45,-1,85,-6,44,-9,40,41,2,1
+4447,37,0,76,-1,20,0,40,55,16,1
+4448,55,0,92,0,34,-5,37,59,22,4
+4449,44,-5,106,0,44,0,62,62,0,1
+4450,55,3,74,-10,-4,-21,19,79,60,4
+4451,41,3,79,0,42,13,38,38,0,1
+4452,37,0,104,1,26,13,67,78,12,1
+4453,55,1,96,0,52,0,41,44,4,4
+4454,55,0,79,6,20,-21,24,59,34,4
+4455,51,1,82,2,50,0,31,33,2,1
+4456,55,-2,97,0,46,0,42,51,8,4
+4457,55,0,96,-7,50,0,41,47,6,4
+4458,81,0,84,0,-14,-10,3,99,96,5
+4459,55,-1,77,0,26,-24,22,52,30,4
+4460,41,0,79,0,38,-12,38,40,2,1
+4461,52,1,82,-4,52,0,29,30,0,1
+4462,84,0,87,0,-4,0,3,92,88,5
+4463,39,16,77,0,28,0,38,48,10,1
+4464,37,0,104,0,20,-29,67,83,16,1
+4465,41,-1,81,0,42,12,40,39,0,1
+4466,44,3,85,0,44,12,41,41,0,1
+4467,55,-1,77,0,16,-1,22,62,40,4
+4468,42,1,79,1,42,0,37,38,0,1
+4469,37,0,75,0,34,7,38,41,2,1
+4470,46,-1,77,0,46,5,31,30,0,1
+4471,37,0,79,0,6,-9,42,74,32,1
+4472,41,0,77,8,38,0,36,38,2,1
+4473,37,0,74,0,34,23,37,41,4,1
+4474,56,-1,78,-3,26,-6,22,52,30,4
+4475,37,-3,81,2,36,0,44,44,0,1
+4476,41,0,82,0,42,9,41,41,0,1
+4477,37,0,78,0,24,4,42,55,14,1
+4478,41,2,76,0,42,6,34,34,0,1
+4479,43,3,77,0,42,0,35,36,2,1
+4480,47,0,87,6,46,0,40,41,0,1
+4481,79,0,83,2,-42,0,5,127,122,5
+4482,55,0,97,0,50,-23,41,48,6,4
+4483,53,-19,79,0,0,0,25,79,54,4
+4484,37,-21,76,0,20,0,39,55,16,1
+4485,38,2,92,0,26,9,54,66,12,1
+4486,37,0,86,-3,36,0,49,50,0,1
+4487,37,0,81,-1,36,-1,44,44,0,1
+4488,42,4,79,0,42,0,38,38,0,1
+4489,49,0,95,0,46,-1,47,49,2,1
+4490,57,1,84,-7,56,0,28,28,0,1
+4491,72,8,76,5,-42,-8,4,120,116,5
+4492,64,0,113,1,64,21,49,48,0,1
+4493,75,2,79,1,-42,0,4,123,118,5
+4494,41,0,77,0,42,13,36,35,0,1
+4495,41,0,79,1,42,29,39,38,0,1
+4496,51,0,85,0,50,-1,34,36,2,1
+4497,37,0,78,0,-6,-10,42,86,44,1
+4498,42,-1,77,3,42,0,35,35,0,1
+4499,50,-4,77,0,50,0,27,28,0,1
+4500,37,0,77,0,18,23,40,59,18,1
+4501,37,0,76,0,30,-3,39,45,6,1
+4502,37,0,76,0,18,-6,40,58,18,1
+4503,37,0,83,0,30,10,46,52,6,1
+4504,37,0,79,-2,10,0,42,69,26,1
+4505,58,0,86,0,56,-2,27,29,2,1
+4506,37,7,77,-2,-22,2,41,101,60,1
+4507,44,-5,83,0,44,0,38,39,0,1
+4508,51,0,78,-1,52,27,27,26,0,1
+4509,42,1,89,1,42,0,47,48,0,1
+4510,38,0,110,0,38,0,72,71,0,1
+4511,38,0,75,0,38,0,37,36,0,1
+4512,55,0,93,0,52,-4,38,42,4,4
+4513,37,0,109,0,36,0,71,73,2,1
+4514,49,0,77,0,46,-25,28,30,2,1
+4515,50,0,91,2,50,0,41,42,0,1
+4516,47,-1,95,1,46,0,48,49,0,1
+4517,55,0,96,-6,50,0,41,47,6,4
+4518,37,-1,76,0,36,-8,38,39,2,1
+4519,38,-2,79,-1,38,0,41,40,0,1
+4520,44,0,106,-1,42,-25,62,64,2,1
+4521,55,0,77,0,36,-7,22,41,20,4
+4522,46,0,85,0,46,19,39,39,0,1
+4523,47,3,86,-1,46,0,40,40,0,1
+4524,37,0,83,-1,34,6,46,50,4,1
+4525,45,0,86,0,44,-6,41,42,2,1
+4526,38,0,79,0,38,6,41,40,0,1
+4527,51,-1,87,0,52,3,36,35,0,1
+4528,41,0,86,0,42,0,45,45,0,1
+4529,56,0,107,0,56,10,51,50,0,1
+4530,37,0,76,0,26,-11,40,50,10,1
+4531,106,0,107,-3,70,0,1,37,36,5
+4532,50,0,87,0,50,0,37,38,0,1
+4533,41,0,82,-6,38,-4,41,43,2,1
+4534,46,0,88,4,46,0,42,42,0,1
+4535,37,0,106,0,38,16,68,67,0,1
+4536,48,-1,79,0,50,21,31,30,0,1
+4537,45,-1,76,0,46,11,31,30,0,1
+4538,37,0,104,0,26,-30,67,78,12,1
+4539,39,-2,75,0,38,0,36,36,0,1
+4540,37,0,77,6,28,17,41,49,8,1
+4541,56,-1,97,0,46,-3,41,50,10,4
+4542,37,0,77,0,-4,4,41,83,42,1
+4543,37,0,77,0,12,12,40,64,24,1
+4544,39,3,80,-4,38,0,41,41,0,1
+4545,37,0,80,0,34,-6,43,46,2,1
+4546,41,1,79,0,38,-10,38,40,2,1
+4547,37,0,81,-3,36,-11,43,44,2,1
+4548,55,0,95,-2,54,-4,40,41,2,1
+4549,56,0,81,0,-6,-3,25,89,64,4
+4550,45,4,76,0,44,0,32,32,0,1
+4551,37,0,78,0,-4,-9,41,83,42,1
+4552,55,0,79,0,12,-13,23,66,42,4
+4553,53,5,79,0,52,-8,26,27,2,1
+4554,37,1,79,0,34,18,41,45,4,1
+4555,47,-1,86,-3,46,-5,39,40,0,1
+4556,45,1,81,0,44,0,37,37,0,1
+4557,37,0,77,0,0,-21,40,77,36,1
+4558,38,1,78,0,38,19,40,39,0,1
+4559,49,-1,83,0,50,2,34,33,0,1
+4560,56,0,98,0,52,28,42,46,4,4
+4561,46,0,79,0,44,-19,33,35,2,1
+4562,41,-1,75,0,42,15,34,34,0,1
+4563,41,0,81,0,42,18,40,40,0,1
+4564,55,0,95,3,38,22,40,57,16,4
+4565,51,1,78,-5,52,12,27,26,0,1
+4566,45,1,108,0,44,0,63,64,2,1
+4567,38,3,81,0,38,6,43,42,0,1
+4568,49,-2,88,0,50,4,39,39,0,1
+4569,38,4,76,0,38,11,38,37,0,1
+4570,41,0,78,6,38,-8,37,39,2,1
+4571,37,3,82,0,36,0,45,46,2,1
+4572,45,0,86,5,44,-2,40,42,2,1
+4573,38,1,83,0,38,17,45,44,0,1
+4574,40,0,81,-6,38,0,40,42,2,1
+4575,40,0,78,4,38,0,38,39,2,1
+4576,37,1,81,0,-2,0,44,83,40,1
+4577,55,0,77,0,6,-14,22,72,50,4
+4578,37,0,92,0,24,1,55,69,14,1
+4579,45,0,86,-7,44,-3,40,42,2,1
+4580,37,0,99,3,28,0,62,71,8,1
+4581,37,0,90,0,24,-6,52,66,14,1
+4582,55,0,93,0,2,-8,38,91,52,4
+4583,37,0,78,-1,34,-2,41,45,4,1
+4584,58,-1,91,0,56,0,33,34,0,1
+4585,50,1,86,6,50,0,37,37,0,1
+4586,74,11,78,12,-42,-2,4,122,118,5
+4587,49,0,77,0,46,-2,29,31,2,1
+4588,52,-5,81,0,52,0,29,30,0,1
+4589,41,0,79,-4,42,5,38,37,0,1
+4590,45,-1,79,0,46,12,33,32,0,1
+4591,41,0,97,0,42,15,56,55,0,1
+4592,46,-4,83,0,46,0,37,36,0,1
+4593,55,0,77,0,-14,14,21,92,70,4
+4594,37,1,97,0,30,-16,60,66,6,1
+4595,37,0,84,3,30,12,47,53,6,1
+4596,56,0,78,-6,26,-6,22,52,30,4
+4597,38,5,81,0,38,0,42,42,0,1
+4598,48,-4,76,0,46,0,28,30,2,1
+4599,55,0,95,-4,54,7,40,41,2,1
+4600,37,0,76,-1,34,13,39,42,2,1
+4601,42,2,88,0,42,0,45,46,2,1
+4602,46,0,88,0,44,-29,43,44,2,1
+4603,45,-1,85,1,44,0,40,41,2,1
+4604,56,-1,78,-3,26,-5,22,52,30,4
+4605,49,-5,87,0,46,-20,38,41,2,1
+4606,38,1,80,0,38,11,42,41,0,1
+4607,41,0,86,0,38,-13,46,48,2,1
+4608,37,0,99,0,30,4,61,68,6,1
+4609,37,0,82,-1,-2,6,45,85,40,1
+4610,39,4,102,0,38,0,62,63,0,1
+4611,37,0,81,-1,36,-5,43,44,2,1
+4612,49,1,86,0,46,-18,37,39,2,1
+4613,55,0,78,0,26,8,23,52,30,4
+4614,37,0,83,-3,-4,-12,46,88,42,1
+4615,37,-4,75,-1,20,0,38,54,16,1
+4616,45,0,85,1,44,-10,40,41,2,1
+4617,37,0,105,0,36,4,68,69,2,1
+4618,39,0,78,-1,38,-2,39,39,0,1
+4619,80,4,84,1,-40,7,4,126,122,5
+4620,50,1,83,0,50,0,33,34,0,1
+4621,52,1,77,0,52,0,25,25,0,1
+4622,57,2,79,0,56,0,23,23,0,1
+4623,56,0,95,0,50,0,40,46,6,4
+4624,55,0,97,0,46,-1,42,51,8,4
+4625,45,0,82,0,46,18,37,35,0,1
+4626,48,0,87,-2,46,-4,39,41,2,1
+4627,43,0,79,0,42,-1,35,37,2,1
+4628,55,0,92,0,8,-4,37,84,48,4
+4629,47,0,88,6,46,0,41,41,0,1
+4630,55,0,92,4,26,0,37,66,30,4
+4631,55,0,77,0,8,7,22,70,48,4
+4632,46,0,79,0,44,-15,34,35,2,1
+4633,46,0,81,-3,46,8,35,34,0,1
+4634,43,0,83,0,44,10,40,39,0,1
+4635,37,0,77,0,-24,-29,40,103,62,1
+4636,49,0,77,0,46,-12,28,30,2,1
+4637,37,0,104,7,18,0,67,86,20,1
+4638,37,0,76,-3,30,13,39,45,6,1
+4639,45,-1,85,2,46,9,40,39,0,1
+4640,37,0,93,0,18,31,55,75,20,1
+4641,46,0,82,0,46,22,36,35,0,1
+4642,56,0,80,4,-4,0,24,85,62,4
+4643,55,0,83,2,54,0,28,29,2,1
+4644,51,0,81,-3,50,-9,30,32,2,1
+4645,37,0,76,-2,36,0,39,39,0,1
+4646,57,-4,88,-3,56,0,31,31,0,1
+4647,56,2,79,0,56,2,23,23,0,1
+4648,55,0,77,-2,-4,16,21,82,60,4
+4649,49,-2,83,0,50,7,34,34,0,1
+4650,37,0,82,1,-2,9,45,85,40,1
+4651,54,-2,83,0,54,0,28,28,0,1
+4652,41,-2,76,0,42,16,35,35,0,1
+4653,45,2,76,-1,44,0,31,32,0,1
+4654,39,0,85,-1,38,0,46,46,0,1
+4655,42,-2,81,0,42,0,39,40,2,1
+4656,48,0,85,0,46,-13,37,39,2,1
+4657,51,0,83,3,50,-1,32,33,2,1
+4658,43,0,102,0,44,12,59,58,0,1
+4659,85,1,88,0,0,0,3,88,86,5
+4660,37,0,104,0,26,2,67,78,12,1
+4661,42,-1,86,0,42,0,44,45,2,1
+4662,39,-5,81,4,38,0,42,43,0,1
+4663,44,5,81,0,44,1,37,37,0,1
+4664,49,-1,81,0,50,8,33,32,0,1
+4665,37,0,76,2,20,0,40,55,16,1
+4666,56,0,96,0,38,-2,40,57,18,4
+4667,46,-4,77,4,46,0,31,31,0,1
+4668,55,-2,97,-2,46,-4,42,51,8,4
+4669,56,0,84,0,54,-10,28,30,2,1
+4670,45,-3,109,0,44,0,65,66,0,1
+4671,37,0,83,0,6,-8,47,78,32,1
+4672,46,0,83,-5,46,17,37,37,0,1
+4673,37,0,80,3,36,0,43,44,0,1
+4674,37,0,80,0,18,12,43,62,18,1
+4675,39,0,81,-1,38,0,42,43,0,1
+4676,45,0,82,1,44,-2,37,38,2,1
+4677,55,0,77,0,-28,-9,21,105,84,4
+4678,55,0,77,0,-4,-12,21,82,60,4
+4679,79,0,83,0,-38,1,4,122,118,5
+4680,37,0,76,0,38,14,39,37,0,1
+4681,55,0,95,0,52,-19,40,44,4,4
+4682,37,0,79,4,36,0,42,43,2,1
+4683,49,0,88,-3,50,11,40,39,0,1
+4684,60,0,109,-3,60,0,49,49,0,1
+4685,55,-2,81,-7,54,0,27,27,0,1
+4686,82,0,86,1,-6,0,4,94,90,5
+4687,55,-1,80,0,54,-2,25,26,2,1
+4688,37,0,103,0,30,-4,66,72,6,1
+4689,42,0,87,-7,42,0,45,46,2,1
+4690,49,4,88,0,50,10,39,39,0,1
+4691,37,-1,79,-4,18,0,42,61,18,1
+4692,41,2,80,0,38,-28,39,41,2,1
+4693,55,2,84,2,54,0,28,30,2,1
+4694,47,4,87,2,46,0,40,41,0,1
+4695,55,0,81,0,-6,6,25,88,64,4
+4696,56,0,79,0,54,-8,23,24,2,1
+4697,55,0,95,0,44,-23,40,51,12,4
+4698,46,-2,85,-7,46,18,39,39,0,1
+4699,40,1,102,0,38,0,61,63,2,1
+4700,37,0,79,0,12,-5,42,66,24,1
+4701,44,1,86,0,44,6,43,42,0,1
+4702,38,0,107,0,36,-27,69,71,2,1
+4703,45,5,75,0,44,0,30,31,0,1
+4704,37,0,75,0,34,26,38,41,2,1
+4705,40,-1,86,0,38,0,45,47,2,1
+4706,39,-8,90,1,6,0,52,85,34,1
+4707,52,3,82,0,52,0,30,30,0,1
+4708,56,0,96,0,50,0,40,47,6,4
+4709,56,1,80,0,54,-30,24,26,2,1
+4710,44,0,76,5,44,3,32,32,0,1
+4711,53,0,86,0,52,-8,33,34,2,1
+4712,45,-3,77,0,46,10,32,31,0,1
+4713,37,0,78,-1,20,-3,42,57,16,1
+4714,37,1,81,0,36,0,44,45,0,1
+4715,37,0,77,0,6,-1,40,72,32,1
+4716,55,0,78,0,18,21,23,60,38,4
+4717,49,-2,89,0,46,-23,40,42,2,1
+4718,41,0,86,0,42,13,45,44,0,1
+4719,37,4,77,0,36,0,40,41,2,1
+4720,41,1,77,0,38,-4,36,38,2,1
+4721,51,-3,80,0,50,-7,29,31,2,1
+4722,38,0,92,8,12,0,54,79,24,1
+4723,45,-1,81,0,44,-19,36,37,2,1
+4724,37,0,79,0,8,-25,43,72,28,1
+4725,42,5,75,0,42,1,33,34,0,1
+4726,43,0,86,0,42,-22,42,44,2,1
+4727,79,0,84,8,-42,-21,4,128,124,5
+4728,46,-4,80,0,46,0,34,34,0,1
+4729,37,-2,77,0,36,-16,39,41,2,1
+4730,44,1,77,0,44,0,33,34,0,1
+4731,41,0,83,2,42,22,42,41,0,1
+4732,37,0,75,-1,28,21,38,46,8,1
+4733,45,-6,81,0,44,0,36,37,2,1
+4734,50,-4,90,0,50,0,39,41,2,1
+4735,55,0,79,-2,6,-5,23,74,50,4
+4736,55,0,95,-5,46,0,40,49,8,4
+4737,44,0,78,0,44,0,34,34,0,1
+4738,48,0,88,1,46,-2,40,42,2,1
+4739,41,0,89,1,38,-9,48,50,2,1
+4740,42,0,90,0,42,0,48,49,2,1
+4741,56,0,96,0,56,31,40,39,0,1
+4742,37,0,79,0,36,21,42,43,2,1
+4743,56,0,97,0,46,0,41,51,10,4
+4744,37,4,79,0,24,2,41,55,14,1
+4745,46,0,83,0,44,-20,37,39,2,1
+4746,85,0,88,-5,6,0,3,83,80,5
+4747,37,0,105,0,18,0,68,87,18,1
+4748,37,0,106,0,34,-25,69,72,4,1
+4749,51,-1,81,0,50,-4,30,32,2,1
+4750,40,0,88,6,38,0,48,50,2,1
+4751,45,0,107,1,44,0,62,63,2,1
+4752,37,0,78,-3,-6,0,41,86,44,1
+4753,55,-4,86,0,56,24,31,30,0,1
+4754,38,4,83,-1,38,-2,44,44,0,1
+4755,44,-1,86,2,44,0,42,42,0,1
+4756,37,0,75,-1,26,-9,38,49,10,1
+4757,55,0,96,0,50,-17,41,47,6,4
+4758,55,0,81,0,54,-18,26,27,2,1
+4759,55,0,92,-6,46,0,36,45,8,4
+4760,81,-4,86,-4,-40,0,4,127,122,5
+4761,43,0,84,0,42,-5,41,43,2,1
+4762,37,0,79,0,20,-16,42,58,16,1
+4763,42,22,77,0,28,0,35,48,14,2
+4764,42,0,75,0,42,0,32,34,2,1
+4765,46,0,81,4,46,1,35,35,0,1
+4766,56,0,78,0,44,7,22,34,12,4
+4767,37,0,79,0,30,-24,43,48,6,1
+4768,43,0,88,-5,44,13,44,44,0,1
+4769,105,-4,106,0,70,0,1,36,36,5
+4770,39,4,93,1,34,0,54,60,6,1
+4771,50,4,80,0,50,0,30,31,0,1
+4772,85,0,89,6,2,0,4,86,82,5
+4773,43,1,85,0,42,-4,42,44,2,1
+4774,37,1,79,0,20,15,41,58,16,1
+4775,54,8,77,0,-22,0,23,101,78,4
+4776,37,0,79,-5,12,26,42,66,24,1
+4777,51,0,78,-2,50,-8,27,29,2,1
+4778,46,0,88,2,46,6,41,41,0,1
+4779,56,0,95,0,56,19,40,39,0,1
+4780,56,0,79,0,12,-1,23,66,42,4
+4781,47,0,84,1,46,0,36,37,0,1
+4782,51,0,83,0,50,-5,32,34,2,1
+4783,46,0,82,6,46,1,36,35,0,1
+4784,81,0,84,0,-18,4,4,103,98,5
+4785,37,0,78,-2,0,0,42,78,36,1
+4786,51,1,107,-1,50,0,56,58,2,1
+4787,56,3,79,0,54,-10,24,25,2,1
+4788,39,-1,76,4,38,0,37,37,0,1
+4789,38,0,75,0,36,-21,37,39,2,1
+4790,81,0,84,0,-24,0,4,110,106,5
+4791,43,-1,83,0,44,20,39,39,0,1
+4792,39,-1,77,0,38,-1,37,38,0,1
+4793,56,0,92,0,54,-1,36,38,2,1
+4794,49,-1,79,-1,50,0,30,30,0,1
+4795,56,4,86,0,56,18,31,30,0,1
+4796,81,-1,84,0,-12,17,4,97,94,5
+4797,53,-2,79,0,54,14,26,24,0,1
+4798,55,0,78,0,26,10,23,52,30,4
+4799,49,31,77,0,-22,0,28,101,72,2
+4800,55,0,77,0,38,27,22,39,16,4
+4801,49,1,87,0,46,-8,38,41,2,1
+4802,49,-1,80,0,50,11,31,31,0,1
+4803,41,-3,76,-1,42,0,35,35,0,1
+4804,46,1,81,0,46,8,35,34,0,1
+4805,45,0,83,0,44,-25,37,39,2,1
+4806,43,0,78,0,42,-11,35,37,2,1
+4807,56,0,96,-6,50,-9,40,47,6,4
+4808,37,0,76,0,38,26,39,37,0,1
+4809,49,-5,86,-4,50,-5,37,37,0,1
+4810,43,-3,84,0,44,22,41,41,0,1
+4811,51,0,86,0,52,13,36,35,0,1
+4812,44,0,89,0,42,-18,45,48,2,1
+4813,52,-3,109,0,52,0,57,57,0,1
+4814,83,0,86,0,-4,-3,4,92,88,5
+4815,37,0,90,-3,24,-7,52,66,14,1
+4816,56,0,76,0,-12,6,20,89,68,4
+4817,55,3,71,-2,0,0,16,71,56,4
+4818,45,-4,86,0,46,5,40,39,0,1
+4819,56,4,95,0,46,0,40,49,10,4
+4820,51,2,78,0,52,11,27,26,0,1
+4821,37,0,81,0,24,9,44,57,14,1
+4822,47,0,85,1,46,0,38,39,0,1
+4823,45,0,83,0,46,11,37,36,0,1
+4824,45,0,85,0,46,30,40,39,0,1
+4825,56,0,95,0,46,18,40,49,10,4
+4826,49,0,87,0,50,9,38,38,0,1
+4827,37,0,79,0,0,-6,42,79,36,1
+4828,58,-2,91,0,56,0,33,34,0,1
+4829,37,0,108,-1,30,0,71,77,6,1
+4830,37,0,76,-1,16,4,39,61,22,1
+4831,44,0,79,0,44,20,35,35,0,1
+4832,37,0,92,0,16,29,54,76,22,1
+4833,56,1,85,0,54,-21,29,31,2,1
+4834,57,0,81,1,56,0,24,24,0,1
+4835,41,0,82,-6,38,-6,41,43,2,1
+4836,42,-3,81,0,42,0,39,40,2,1
+4837,45,0,79,0,46,24,33,32,0,1
+4838,46,4,86,0,44,-7,40,42,2,1
+4839,45,0,87,0,44,-1,42,43,2,1
+4840,53,5,88,0,52,-3,35,37,2,1
+4841,37,0,105,-6,24,0,68,82,14,1
+4842,55,0,77,0,2,4,22,75,52,4
+4843,55,0,95,0,50,18,40,46,6,4
+4844,55,0,96,0,38,-7,41,57,16,4
+4845,41,-4,75,0,42,11,34,34,0,1
+4846,47,2,87,-1,46,0,40,41,0,1
+4847,37,0,104,0,26,5,67,78,12,1
+4848,64,0,111,0,62,-1,47,49,2,1
+4849,44,0,89,0,44,18,45,45,0,1
+4850,55,-1,86,0,54,-5,31,32,2,1
+4851,53,0,87,0,54,5,34,33,0,1
+4852,51,0,88,0,52,24,37,36,0,1
+4853,37,-51,106,-1,30,0,69,75,6,3
+4854,41,1,81,0,38,-6,40,42,2,1
+4855,37,0,77,-4,-10,0,40,87,46,1
+4856,45,-4,81,0,44,0,36,37,2,1
+4857,37,0,93,0,28,-4,56,65,8,1
+4858,37,0,83,0,30,-20,47,52,6,1
+4859,55,0,78,-2,8,-7,23,70,48,4
+4860,44,0,81,-1,44,1,38,37,0,1
+4861,56,0,96,6,52,0,40,44,4,4
+4862,37,0,84,0,24,-1,47,61,14,1
+4863,45,0,85,0,44,143,41,41,0,1
+4864,42,0,86,-7,42,0,44,45,0,1
+4865,48,0,88,0,46,-1,39,41,2,1
+4866,45,0,88,0,46,16,42,41,0,1
+4867,49,-1,77,0,50,12,28,28,0,1
+4868,46,0,79,0,44,-25,33,35,2,1
+4869,37,0,77,0,28,-1,40,48,8,1
+4870,56,1,86,0,56,0,29,29,0,1
+4871,37,0,78,0,0,-7,42,78,36,1
+4872,55,0,86,0,56,18,30,29,0,1
+4873,50,0,82,7,50,0,32,33,2,1
+4874,37,0,80,0,20,18,43,59,16,1
+4875,37,-1,78,-3,2,-10,41,75,34,1
+4876,58,-2,84,0,56,0,25,27,2,1
+4877,48,-1,83,-5,46,-7,35,37,2,1
+4878,45,0,83,0,46,13,37,36,0,1
+4879,42,1,97,0,38,-30,56,59,2,1
+4880,81,0,84,0,-14,5,3,100,96,5
+4881,45,0,77,0,46,23,32,31,0,1
+4882,51,0,86,0,50,-27,35,37,2,1
+4883,54,0,79,3,54,0,26,25,0,1
+4884,42,0,83,7,42,0,41,42,2,1
+4885,51,1,86,0,52,2,35,35,0,1
+4886,42,2,75,0,42,0,32,34,2,1
+4887,55,0,81,-5,54,0,26,27,2,1
+4888,37,0,104,0,26,-14,67,78,12,1
+4889,37,0,77,-1,-20,5,41,98,58,1
+4890,56,0,95,0,54,-4,40,41,2,1
+4891,45,0,79,0,46,29,33,32,0,1
+4892,55,0,77,0,-2,-6,21,79,58,4
+4893,45,-5,84,0,44,0,39,40,0,1
+4894,40,-5,81,0,38,0,41,43,2,1
+4895,55,0,92,0,-2,13,36,94,58,4
+4896,44,0,86,0,44,22,43,42,0,1
+4897,44,-1,79,0,44,4,35,35,0,1
+4898,49,0,82,0,50,9,33,33,0,1
+4899,49,0,81,0,50,25,33,32,0,1
+4900,50,5,87,-1,50,0,37,38,0,1
+4901,39,-1,79,-1,38,0,39,40,0,1
+4902,56,3,97,0,54,8,40,42,2,1
+4903,53,0,86,-1,54,-2,32,32,0,1
+4904,53,-2,83,0,52,-27,30,32,2,1
+4905,56,0,78,0,8,-14,22,70,48,4
+4906,53,0,78,0,54,22,25,24,0,1
+4907,49,0,95,4,46,-30,46,49,2,1
+4908,105,5,106,0,70,0,1,36,36,5
+4909,41,3,108,1,38,-19,66,69,2,1
+4910,46,-1,85,-1,46,0,39,39,0,1
+4911,42,-2,86,0,42,0,45,45,0,1
+4912,58,-5,85,0,56,0,28,28,0,1
+4913,45,1,76,0,46,31,30,29,0,1
+4914,37,0,79,0,36,2,42,43,2,1
+4915,49,1,78,0,50,9,29,29,0,1
+4916,45,0,81,2,44,0,36,37,2,1
+4917,56,0,78,0,44,12,22,34,12,4
+4918,101,0,102,1,70,-15,1,33,32,5
+4919,46,4,79,0,46,0,33,32,0,1
+4920,37,5,100,0,28,0,63,72,8,1
+4921,46,2,86,0,46,7,41,40,0,1
+4922,57,-3,81,0,56,0,24,24,0,1
+4923,45,0,83,0,46,5,37,36,0,1
+4924,41,-1,81,0,38,-18,41,43,2,1
+4925,51,0,79,0,52,5,27,27,0,1
+4926,44,0,82,0,42,-24,38,41,2,1
+4927,38,1,76,0,38,2,37,37,0,1
+4928,56,0,95,0,44,20,40,51,12,4
+4929,43,0,89,0,44,19,46,45,0,1
+4930,49,0,106,0,46,-25,57,59,2,1
+4931,53,-1,79,0,54,19,26,24,0,1
+4932,37,0,77,0,28,18,40,48,8,1
+4933,44,-1,77,0,44,2,33,33,0,1
+4934,41,0,79,2,38,-9,38,40,2,1
+4935,56,0,76,0,-10,0,20,86,66,4
+4936,73,-13,77,-13,-40,2,4,119,114,5
+4937,40,1,78,8,38,0,38,39,2,1
+4938,37,0,80,0,12,8,43,67,24,1
+4939,41,1,76,0,38,-4,35,37,2,1
+4940,39,0,79,-5,38,0,40,40,0,1
+4941,41,0,86,-1,42,24,45,44,0,1
+4942,43,0,87,0,44,29,44,43,0,1
+4943,56,0,86,0,56,7,31,30,0,1
+4944,41,0,81,0,38,-6,40,42,2,1
+4945,37,0,103,0,34,0,66,69,4,1
+4946,38,0,81,-1,38,0,43,42,0,1
+4947,37,-3,81,0,36,-14,43,44,2,1
+4948,43,0,84,6,42,-15,41,43,2,1
+4949,46,0,102,0,46,2,57,56,0,1
+4950,56,0,77,10,-4,0,21,83,62,4
+4951,56,0,80,0,-2,-6,24,83,58,4
+4952,37,0,106,4,24,-4,68,82,14,1
+4953,37,0,77,0,12,0,40,64,24,1
+4954,82,0,86,0,-2,14,3,88,84,5
+4955,55,0,77,0,-18,-21,21,95,74,4
+4956,55,-3,81,0,-22,-7,26,105,78,4
+4957,53,1,87,0,52,-1,34,35,2,1
+4958,41,0,76,0,42,19,35,35,0,1
+4959,55,0,83,0,-30,-25,27,114,86,4
+4960,48,0,79,0,50,31,30,30,0,1
+4961,43,0,75,0,42,-10,32,34,2,1
+4962,56,0,92,6,-2,0,36,95,58,4
+4963,52,1,88,0,52,-1,35,36,0,1
+4964,53,0,87,-5,52,-9,34,35,2,1
+4965,38,3,76,0,38,11,38,37,0,1
+4966,37,0,77,0,2,-21,40,75,34,1
+4967,43,3,79,0,42,0,37,38,2,1
+4968,55,0,82,0,-40,-19,26,123,96,4
+4969,84,-28,107,0,64,-2,22,42,20,3
+4970,46,4,78,0,46,9,32,32,0,1
+4971,44,0,79,0,42,-26,35,37,2,1
+4972,37,0,82,4,34,0,45,48,2,1
+4973,37,0,79,0,24,-18,43,56,14,1
+4974,43,0,79,0,44,22,35,35,0,1
+4975,45,0,79,2,46,22,34,33,0,1
+4976,56,0,95,0,52,9,40,44,4,4
+4977,41,0,77,0,42,12,37,36,0,1
+4978,37,0,104,0,16,-8,67,88,22,1
+4979,49,3,88,0,46,0,39,41,2,1
+4980,37,0,80,-7,36,0,43,44,0,1
+4981,55,0,97,4,38,0,41,58,16,4
+4982,55,0,92,1,26,9,37,66,30,4
+4983,49,0,88,-4,50,6,40,39,0,1
+4984,49,0,106,-1,50,17,57,57,0,1
+4985,53,0,79,0,54,27,26,24,0,1
+4986,37,0,97,-7,34,16,60,64,4,1
+4987,60,0,110,-7,60,0,50,51,2,1
+4988,62,-1,111,0,62,0,50,49,0,1
+4989,56,5,95,0,50,14,40,46,6,4
+4990,43,0,90,0,44,23,47,46,0,1
+4991,37,0,98,0,28,-1,61,70,8,1
+4992,55,0,96,0,44,-14,41,52,12,4
+4993,44,0,76,2,44,10,32,32,0,1
+4994,55,0,77,0,30,-9,22,46,24,4
+4995,43,-3,83,0,42,-1,40,41,2,1
+4996,37,0,97,0,18,-18,60,79,18,1
+4997,52,-4,82,0,52,0,29,30,0,1
+4998,44,0,82,0,42,-10,38,41,2,1
+4999,55,0,92,0,28,-31,36,63,28,4
+5000,42,0,80,-4,42,0,38,39,0,1
+5001,48,0,86,2,46,0,37,39,2,1
+5002,51,0,81,0,52,21,30,30,0,1
+5003,51,0,88,0,50,-15,37,39,2,1
+5004,37,0,105,-2,30,2,68,74,6,1
+5005,37,0,78,0,16,2,41,63,22,1
+5006,50,0,81,-1,50,0,31,32,2,1
+5007,53,2,86,0,54,21,33,32,0,1
+5008,56,0,96,4,46,0,40,50,10,4
+5009,50,4,83,0,50,0,33,34,0,1
+5010,37,0,76,-1,34,11,39,42,2,1
+5011,37,0,76,-5,28,9,39,47,8,1
+5012,41,-5,77,0,38,-26,36,38,2,1
+5013,37,0,78,0,-2,-1,42,81,40,1
+5014,58,5,80,0,56,0,22,23,2,1
+5015,37,0,95,0,28,5,58,67,8,1
+5016,56,0,77,-4,24,-3,22,54,32,4
+5017,37,0,80,-3,26,0,43,54,10,1
+5018,37,-1,76,-5,30,-8,40,45,6,1
+5019,44,5,81,0,44,26,37,37,0,1
+5020,48,0,85,7,46,0,37,39,2,1
+5021,41,2,79,0,42,9,38,38,0,1
+5022,104,-2,105,-1,72,5,1,33,32,5
+5023,38,0,90,0,8,6,52,82,30,1
+5024,37,2,82,-3,34,0,45,48,4,1
+5025,50,1,83,0,50,0,32,33,2,1
+5026,49,0,79,0,50,15,30,30,0,1
+5027,85,4,88,0,6,0,3,83,80,5
+5028,52,1,81,0,52,0,29,29,0,1
+5029,37,0,78,0,18,-11,42,60,18,1
+5030,58,2,86,0,56,0,28,30,2,1
+5031,55,1,91,0,54,-3,35,37,2,1
+5032,55,0,82,0,54,0,27,28,0,1
+5033,38,0,104,0,38,0,67,66,0,1
+5034,50,-5,77,1,50,0,28,28,0,1
+5035,46,1,76,0,46,4,30,29,0,1
+5036,37,0,80,0,34,-26,43,46,2,1
+5037,45,1,76,0,44,-12,30,32,2,1
+5038,37,0,77,2,24,-1,40,54,14,1
+5039,37,0,81,0,26,-1,45,55,10,1
+5040,57,-2,88,2,56,0,31,31,0,1
+5041,37,0,81,-1,24,-7,44,57,14,1
+5042,79,0,83,0,-38,31,4,122,118,5
+5043,78,-1,82,0,-40,0,4,123,120,5
+5044,41,-2,76,-5,42,0,35,35,0,1
+5045,37,0,79,0,18,-27,43,61,18,1
+5046,54,-1,83,0,54,0,29,29,0,1
+5047,41,-1,108,0,38,-11,67,69,2,1
+5048,37,0,92,0,20,0,55,71,16,1
+5049,48,0,86,0,46,-2,38,40,2,1
+5050,41,0,84,-3,42,-3,43,43,0,1
+5051,41,0,89,2,38,-12,48,50,2,1
+5052,55,0,77,0,6,-2,22,72,50,4
+5053,55,-2,99,0,38,0,43,60,16,4
+5054,37,0,83,0,28,9,46,54,8,1
+5055,53,-1,87,0,54,1,34,33,0,1
+5056,56,0,86,0,54,-14,31,32,2,1
+5057,37,-37,106,-3,34,-6,69,72,4,3
+5058,55,-5,81,0,54,-2,25,26,2,1
+5059,55,0,77,0,-22,17,21,100,78,4
+5060,37,0,80,0,10,11,43,70,26,1
+5061,37,0,79,0,2,-17,42,76,34,1
+5062,43,0,84,0,44,16,41,41,0,1
+5063,55,0,93,0,16,6,38,78,40,4
+5064,84,4,86,0,-2,0,3,89,86,5
+5065,55,0,88,-1,54,0,34,34,0,1
+5066,37,-5,79,4,36,0,42,43,0,1
+5067,37,0,106,0,28,15,68,77,8,1
+5068,55,0,81,0,-22,-27,26,105,78,4
+5069,42,1,83,-3,42,0,41,41,0,1
+5070,41,-3,108,1,42,0,67,67,0,1
+5071,37,0,97,-7,28,0,60,69,8,1
+5072,37,0,76,0,26,-7,40,50,10,1
+5073,55,0,78,0,6,21,23,73,50,4
+5074,37,0,78,0,36,-6,41,42,2,1
+5075,37,0,76,0,24,-12,39,52,14,1
+5076,37,0,77,0,2,28,40,74,34,1
+5077,57,1,87,0,56,0,30,30,0,1
+5078,55,5,88,0,54,0,33,33,0,1
+5079,43,0,86,7,44,17,43,42,0,1
+5080,53,2,104,0,54,3,50,49,0,1
+5081,56,0,81,-1,-10,29,25,92,66,4
+5082,37,0,95,-5,26,25,58,70,12,1
+5083,41,-1,83,0,38,-11,42,44,2,1
+5084,48,0,90,8,46,-3,42,44,2,1
+5085,37,0,81,0,24,22,44,58,14,1
+5086,49,-1,81,-3,50,-4,32,32,0,1
+5087,40,-2,109,0,38,0,70,71,2,1
+5088,37,1,111,13,28,0,73,82,8,1
+5089,45,0,87,3,44,-17,42,43,2,1
+5090,56,0,82,0,54,-18,26,28,2,1
+5091,37,0,103,0,18,-1,66,85,18,1
+5092,80,3,84,0,-40,5,4,125,122,5
+5093,52,-5,88,0,52,0,36,36,0,1
+5094,55,6,77,0,-22,0,23,101,78,4
+5095,44,1,85,6,44,16,41,41,0,1
+5096,56,0,81,0,-18,31,25,99,74,4
+5097,45,-5,85,0,46,3,40,39,0,1
+5098,50,3,79,0,50,0,28,30,2,1
+5099,46,0,100,-3,46,0,54,53,0,1
+5100,37,0,79,-1,6,-18,43,74,32,1
+5101,47,-4,83,0,46,0,36,37,0,1
+5102,56,0,97,0,52,-3,41,45,4,4
+5103,39,3,85,-2,38,0,46,46,0,1
+5104,46,-1,87,-7,46,0,41,41,0,1
+5105,46,-5,75,0,46,0,29,28,0,1
+5106,49,0,80,0,46,-28,31,34,2,1
+5107,37,0,79,0,36,7,42,43,2,1
+5108,37,0,77,0,10,11,41,67,26,1
+5109,81,1,84,0,-14,-4,3,99,96,5
+5110,37,0,82,0,16,5,45,66,22,1
+5111,37,0,76,4,30,18,40,45,6,1
+5112,47,2,102,0,46,0,56,56,0,1
+5113,43,0,76,27,42,-9,33,35,2,1
+5114,37,0,76,0,28,22,40,48,8,1
+5115,82,0,87,2,-42,-30,5,131,126,5
+5116,44,0,81,0,42,-12,38,40,2,1
+5117,55,0,88,3,54,0,32,33,2,1
+5118,107,-5,108,0,70,0,1,38,36,5
+5119,49,0,78,0,50,9,29,29,0,1
+5120,37,0,77,8,28,21,41,49,8,1
+5121,53,3,82,0,52,0,29,30,2,1
+5122,37,0,79,-2,10,-10,43,69,26,1
+5123,37,0,75,0,34,19,38,41,4,1
+5124,43,0,99,0,42,-7,56,58,2,1
+5125,37,0,107,0,36,-12,69,71,2,1
+5126,46,-3,81,0,46,0,34,34,0,1
+5127,80,3,84,0,-28,-10,4,112,108,5
+5128,37,0,81,-4,26,-9,45,55,10,1
+5129,43,0,82,-2,42,0,39,41,2,1
+5130,49,0,88,-1,50,27,39,39,0,1
+5131,37,0,80,0,24,24,43,57,14,1
+5132,39,-1,82,1,38,0,43,43,0,1
+5133,56,0,76,0,-6,1,20,84,64,4
+5134,56,2,87,6,54,-19,31,33,2,1
+5135,55,0,93,0,20,6,38,73,34,4
+5136,40,0,80,2,38,0,40,41,2,1
+5137,51,2,78,0,52,14,27,26,0,1
+5138,51,0,88,-1,50,-6,37,39,2,1
+5139,39,4,81,0,38,0,42,42,0,1
+5140,47,-3,88,0,46,0,41,41,0,1
+5141,63,-4,111,0,62,0,48,49,2,1
+5142,56,0,98,0,44,7,42,54,12,4
+5143,45,0,76,7,44,0,32,32,0,1
+5144,50,5,78,0,50,0,28,29,0,1
+5145,37,0,78,0,0,5,41,78,36,1
+5146,50,0,87,2,50,0,37,38,2,1
+5147,44,0,85,0,42,-30,41,44,2,1
+5148,52,-4,88,0,52,0,35,36,0,1
+5149,37,0,81,-4,20,0,44,61,16,1
+5150,49,2,82,0,50,25,33,33,0,1
+5151,37,10,77,-3,-22,4,41,101,60,1
+5152,52,0,90,0,52,0,37,38,0,1
+5153,42,-3,77,4,42,0,35,35,0,1
+5154,37,0,75,3,24,0,38,52,14,1
+5155,37,0,97,0,28,6,60,69,8,1
+5156,37,0,104,0,26,-3,67,78,12,1
+5157,38,1,102,0,36,-16,64,66,2,1
+5158,37,0,95,2,8,-27,57,87,30,1
+5159,37,0,76,0,24,-17,39,53,14,1
+5160,44,-1,81,0,42,-25,37,39,2,1
+5161,56,1,86,0,56,13,30,29,0,1
+5162,43,1,80,0,42,0,37,39,2,1
+5163,37,-1521,77,0,20,0,40,57,16,7
+5164,46,0,83,0,46,17,37,36,0,1
+5165,52,0,86,5,52,0,33,34,0,1
+5166,42,1,106,0,42,0,64,64,0,1
+5167,37,0,76,2,30,0,39,45,6,1
+5168,43,0,90,8,42,0,46,48,2,1
+5169,41,1,81,0,38,-17,40,43,2,1
+5170,45,4,86,0,44,-2,40,42,2,1
+5171,55,0,95,4,36,-8,40,59,20,4
+5172,45,0,78,0,46,28,33,32,0,1
+5173,56,4,77,0,0,1,22,77,56,4
+5174,47,0,88,0,46,0,41,42,0,1
+5175,39,4,80,0,38,0,41,41,0,1
+5176,55,0,95,0,38,-30,40,57,16,4
+5177,46,0,86,8,46,0,40,40,0,1
+5178,39,0,79,-1,38,-2,40,40,0,1
+5179,47,3,83,-3,46,0,36,36,0,1
+5180,84,0,88,0,0,15,3,88,84,5
+5181,43,-3,81,0,42,-22,38,40,2,1
+5182,47,1,78,0,46,0,31,32,0,1
+5183,55,0,81,-3,-12,9,26,94,68,4
+5184,51,0,86,-1,50,-20,36,37,2,1
+5185,58,-4,87,0,56,0,30,30,0,1
+5186,37,0,76,-1,34,-5,38,42,4,1
+5187,55,0,83,0,-28,-4,27,111,84,4
+5188,55,0,83,0,-28,7,27,111,84,4
+5189,55,-1,78,0,8,-5,23,70,48,4
+5190,46,0,84,0,44,-20,38,40,2,1
+5191,53,0,88,1,52,-9,35,36,2,1
+5192,41,1,86,0,38,-18,45,48,2,1
+5193,37,0,86,-1,36,0,49,50,0,1
+5194,55,0,92,0,-2,0,36,94,58,4
+5195,56,0,96,0,52,9,40,44,4,4
+5196,38,3,76,0,38,19,38,37,0,1
+5197,45,0,86,-8,44,-2,40,42,2,1
+5198,80,4,84,0,-28,-13,4,112,108,5
+5199,41,0,86,0,38,-6,45,47,2,1
+5200,44,-3,79,0,44,0,36,35,0,1
+5201,55,0,98,-5,46,-19,42,51,8,4
+5202,41,0,81,0,38,-15,41,43,2,1
+5203,37,0,83,0,8,1,46,75,30,1
+5204,37,-2,77,0,0,9,40,77,36,1
+5205,38,0,92,1,16,4,54,77,22,1
+5206,56,0,79,1,12,-6,23,66,42,4
+5207,47,0,86,-3,46,0,39,39,0,1
+5208,53,-1,102,-2,54,1,49,48,0,1
+5209,56,0,77,0,-18,-8,21,95,74,4
+5210,52,5,84,0,52,0,32,33,0,1
+5211,82,0,85,0,-10,0,3,95,92,5
+5212,37,0,75,0,34,-4,37,41,4,1
+5213,49,1,88,0,46,-7,39,41,2,1
+5214,52,1,79,-2,52,0,28,28,0,1
+5215,52,2,78,0,52,0,26,26,0,1
+5216,116,4501,106,-2,30,47,-10,75,84,5
+5217,37,0,76,0,20,12,39,55,16,1
+5218,51,0,84,0,50,-26,33,35,2,1
+5219,37,0,82,0,34,-6,45,48,4,1
+5220,37,-1,82,-2,38,9,45,43,0,1
+5221,37,0,105,0,24,6,68,82,14,1
+5222,54,4,89,1,54,0,35,35,0,1
+5223,47,-4,85,4,46,0,38,39,0,1
+5224,37,0,103,-2,24,0,66,80,14,1
+5225,55,0,97,0,50,16,42,48,6,4
+5226,37,0,76,4,30,21,40,45,6,1
+5227,55,0,77,0,2,-14,22,75,52,4
+5228,37,0,76,0,20,-3,40,55,16,1
+5229,43,-5,86,-2,42,0,44,45,2,1
+5230,37,-5,80,0,38,17,43,41,0,1
+5231,56,0,76,0,-14,-7,20,92,72,4
+5232,43,-2,87,0,42,0,44,46,2,1
+5233,45,3,88,0,44,-2,42,44,2,1
+5234,41,0,86,-5,38,0,46,48,2,1
+5235,105,0,106,-1,72,1,1,33,32,5
+5236,37,0,74,0,30,7,37,43,6,1
+5237,51,0,85,0,52,7,34,33,0,1
+5238,55,0,93,0,0,-12,38,93,56,4
+5239,56,0,77,1,-4,-7,21,82,62,4
+5240,37,0,77,0,2,-3,40,75,34,1
+5241,54,-2,82,7,54,0,28,28,0,1
+5242,37,2,80,0,18,-11,43,62,20,1
+5243,77,2,82,6,-40,15,5,123,118,5
+5244,51,0,82,0,50,-17,31,33,2,1
+5245,49,2,88,0,46,-3,39,41,2,1
+5246,49,-1,82,0,50,0,33,33,0,1
+5247,44,-3,88,0,44,0,44,44,0,1
+5248,37,0,80,-1,38,13,43,41,0,1
+5249,39,1,78,4,38,0,39,39,0,1
+5250,42,0,81,-18,42,0,38,39,2,1
+5251,55,0,97,0,50,27,41,48,6,4
+5252,38,2,90,0,8,15,52,82,30,1
+5253,102,0,102,-7,70,-6,1,33,32,5
+5254,37,0,95,0,12,-9,58,82,24,1
+5255,49,2,87,0,50,22,38,38,0,1
+5256,41,2,81,0,42,11,39,39,0,1
+5257,37,0,79,0,6,-6,42,74,32,1
+5258,85,0,88,-2,6,-7,3,83,80,5
+5259,37,0,104,0,26,-4,66,78,12,1
+5260,45,-1,108,0,44,0,63,64,2,1
+5261,45,-1,81,0,44,-22,35,37,2,1
+5262,44,0,80,0,44,0,36,36,0,1
+5263,55,0,95,1,42,-1,40,54,14,4
+5264,49,0,83,-5,50,0,33,33,0,1
+5265,55,-3,98,0,38,-8,42,59,16,4
+5266,55,0,93,0,6,-3,37,88,50,4
+5267,38,0,105,2,38,0,67,66,0,1
+5268,49,0,79,0,50,17,30,30,0,1
+5269,37,0,104,8,24,0,67,80,14,1
+5270,49,0,88,0,50,16,40,39,0,1
+5271,37,0,80,0,20,15,43,59,16,1
+5272,40,0,78,0,38,0,38,39,2,1
+5273,45,0,83,0,44,6,38,39,0,1
+5274,50,0,87,-6,50,0,37,38,0,1
+5275,45,-1,83,-5,44,-8,38,39,2,1
+5276,56,1,98,0,52,10,42,46,4,4
+5277,37,0,79,0,12,-30,43,66,24,1
+5278,55,0,92,0,-2,-3,36,94,58,4
+5279,45,0,86,0,46,28,40,39,0,1
+5280,55,0,96,0,50,-5,41,47,6,4
+5281,44,0,80,0,44,12,36,36,0,1
+5282,49,5,87,0,50,1,38,38,0,1
+5283,45,-1,76,0,44,0,32,32,0,1
+5284,37,4,104,0,20,-22,66,83,16,1
+5285,37,0,104,0,20,0,67,83,16,1
+5286,45,0,88,0,44,-14,43,44,2,1
+5287,41,0,106,0,38,-3,65,67,2,1
+5288,79,0,83,0,-38,20,4,122,118,5
+5289,56,0,77,-3,24,-1,22,54,32,4
+5290,61,0,111,0,62,23,50,49,0,1
+5291,41,-1,80,0,42,12,39,39,0,1
+5292,46,0,86,0,46,14,41,40,0,1
+5293,48,-1,86,0,46,0,38,40,2,1
+5294,46,4,87,0,44,-22,41,43,2,1
+5295,41,0,88,0,38,-21,48,50,2,1
+5296,55,0,81,-4,-14,0,26,97,70,4
+5297,41,-4,81,0,38,-26,41,43,2,1
+5298,79,1,83,0,-42,0,4,127,122,5
+5299,80,0,84,0,-42,-9,4,128,124,5
+5300,43,-1,75,0,42,0,32,34,2,1
+5301,37,0,107,0,36,-2,69,71,2,1
+5302,56,0,81,3,-22,0,25,105,80,4
+5303,55,5,71,-8,0,0,16,71,56,4
+5304,55,0,97,2,50,21,41,48,6,4
+5305,56,-2,77,10,0,0,21,77,56,4
+5306,41,0,81,0,42,5,40,40,0,1
+5307,41,0,81,0,38,-19,40,43,2,1
+5308,56,3,81,0,56,1,25,24,0,1
+5309,47,1,84,0,46,0,38,38,0,1
+5310,41,0,77,0,42,11,37,36,0,1
+5311,37,0,80,0,34,8,43,46,2,1
+5312,37,1,83,7,38,31,45,44,0,1
+5313,41,0,77,0,38,-25,36,38,2,1
+5314,105,0,106,-7,72,5,1,33,32,5
+5315,37,0,90,0,26,23,52,64,12,1
+5316,37,0,79,0,24,-5,43,56,14,1
+5317,37,0,76,1,26,-13,40,50,10,1
+5318,48,-2,108,0,46,0,60,61,2,1
+5319,48,2,88,6,46,0,40,41,2,1
+5320,37,0,96,0,12,-6,59,83,24,1
+5321,44,-5,97,8,44,0,53,53,0,1
+5322,55,0,77,-1,24,-3,22,54,32,4
+5323,83,0,87,6,-4,0,4,92,88,5
+5324,37,0,77,0,18,6,41,59,18,1
+5325,42,0,81,0,42,132,39,40,0,1
+5326,43,4,77,0,42,0,34,35,2,1
+5327,45,-1,86,0,46,16,40,39,0,1
+5328,37,0,76,0,30,12,40,45,6,1
+5329,50,5,77,0,50,0,28,28,0,1
+5330,37,0,82,0,24,-10,45,59,14,1
+5331,44,3,81,0,42,-7,38,40,2,1
+5332,45,3,86,0,44,0,41,42,2,1
+5333,43,0,86,0,44,17,43,42,0,1
+5334,41,-1,78,-3,42,-5,37,37,0,1
+5335,55,-2,98,0,50,-6,42,49,6,4
+5336,56,2,99,0,46,-28,42,52,10,4
+5337,46,0,100,0,44,-17,54,56,2,1
+5338,37,0,76,-5,20,0,39,55,16,1
+5339,55,0,79,2,20,-20,24,59,34,4
+5340,78,0,83,6,-46,0,4,129,124,5
+5341,41,-5,75,0,42,14,34,34,0,1
+5342,37,0,79,0,16,2,43,64,22,1
+5343,53,0,81,-6,54,11,28,27,0,1
+5344,56,-1,79,2,56,5,23,22,0,1
+5345,55,0,93,0,6,-30,37,88,50,4
+5346,37,0,75,0,34,21,38,41,2,1
+5347,56,4,95,0,38,-2,39,57,18,4
+5348,46,5,86,0,46,11,40,39,0,1
+5349,37,0,93,0,16,11,55,77,22,1
+5350,51,0,91,0,50,-2,40,42,2,1
+5351,55,0,86,-1,54,0,31,32,0,1
+5352,57,3,92,0,56,0,35,35,0,1
+5353,56,1,98,0,44,22,42,54,12,4
+5354,55,0,77,0,-22,-6,21,100,78,4
+5355,49,5,82,0,50,7,33,33,0,1
+5356,37,0,106,2,20,-9,69,85,16,1
+5357,41,0,77,0,38,-23,36,38,2,1
+5358,46,-1,78,-3,46,-20,32,32,0,1
+5359,43,0,84,0,44,26,41,40,0,1
+5360,56,1,96,0,54,1,40,42,2,1
+5361,43,-5,81,0,44,16,38,37,0,1
+5362,49,0,82,0,50,1,33,33,0,1
+5363,37,0,95,0,24,10,58,72,14,1
+5364,48,0,83,-3,46,-5,35,37,2,1
+5365,55,0,90,-2,54,0,36,36,0,1
+5366,37,0,79,0,6,24,42,74,32,1
+5367,45,5,90,0,44,0,45,46,0,1
+5368,55,0,82,0,-20,-6,26,103,76,4
+5369,41,0,82,0,38,-22,41,43,2,1
+5370,37,-2,106,0,34,-11,68,72,4,1
+5371,83,0,87,0,-40,1,4,128,124,5
+5372,45,0,86,0,46,7,41,40,0,1
+5373,49,1,94,0,50,25,45,45,0,1
+5374,56,0,96,2,42,1,40,55,14,4
+5375,45,0,88,0,46,28,43,42,0,1
+5376,56,1,79,0,54,-9,23,24,2,1
+5377,56,0,82,1,-12,5,26,95,68,4
+5378,37,-1,76,0,38,9,38,37,0,1
+5379,37,0,80,0,28,-28,43,52,8,1
+5380,55,-1,95,0,56,31,40,39,0,1
+5381,45,3,78,0,44,0,33,34,2,1
+5382,37,0,86,0,36,-14,48,50,2,1
+5383,53,4,77,0,-22,0,25,101,76,4
+5384,37,0,80,0,38,7,43,41,0,1
+5385,55,0,77,2,28,0,22,49,26,4
+5386,55,0,97,0,46,-2,41,50,8,4
+5387,45,0,83,0,44,-13,38,39,2,1
+5388,37,0,107,0,38,26,69,68,0,1
+5389,55,0,77,0,-10,17,21,87,66,4
+5390,41,0,81,1,42,3,39,39,0,1
+5391,80,0,84,-2,-20,0,4,105,100,5
+5392,41,0,77,-1,38,-2,36,38,2,1
+5393,43,-5,76,1,42,-19,33,35,2,1
+5394,51,0,80,0,52,8,29,28,0,1
+5395,55,-4,96,-1,54,-4,41,42,2,1
+5396,86,5,89,0,6,28,3,84,80,5
+5397,53,1,88,0,54,20,35,34,0,1
+5398,45,0,77,0,44,-22,32,34,2,1
+5399,49,2,79,2,50,7,30,30,0,1
+5400,44,5,77,0,44,3,33,33,0,1
+5401,56,0,77,0,-14,4,21,92,72,4
+5402,54,-1,83,0,54,0,28,28,0,1
+5403,55,0,82,-5,-32,-17,26,115,90,4
+5404,37,0,76,0,34,13,39,43,4,1
+5405,43,0,80,0,44,19,37,36,0,1
+5406,37,0,79,0,30,20,42,48,6,1
+5407,52,-4,79,0,52,0,26,27,0,1
+5408,45,4,82,2,44,0,37,38,0,1
+5409,48,5,81,2,46,0,33,34,2,1
+5410,37,0,97,-5,30,0,60,66,6,1
+5411,41,0,86,0,38,-8,45,47,2,1
+5412,56,0,78,0,6,-4,22,73,50,4
+5413,41,0,79,0,38,-24,38,40,2,1
+5414,55,0,81,0,-4,30,25,86,60,4
+5415,51,-3,81,0,50,-12,30,32,2,1
+5416,45,-1,79,0,46,5,33,32,0,1
+5417,37,0,80,0,8,-3,43,72,30,1
+5418,41,0,83,0,42,3,42,42,0,1
+5419,44,0,83,4,44,1,40,39,0,1
+5420,44,-3,76,0,44,6,32,32,0,1
+5421,56,0,81,0,-14,13,25,97,72,4
+5422,55,0,79,0,24,23,24,56,32,4
+5423,37,0,106,0,26,7,68,80,12,1
+5424,45,-1,76,-3,44,-5,31,32,2,1
+5425,45,0,88,-1,44,0,43,44,2,1
+5426,49,-1,77,0,50,5,28,28,0,1
+5427,41,5,78,0,42,23,37,37,0,1
+5428,55,0,76,0,-14,-9,21,92,70,4
+5429,56,0,95,0,50,22,40,46,6,4
+5430,37,0,76,0,26,21,40,50,10,1
+5431,44,5,81,0,42,-19,37,39,2,1
+5432,56,1,83,0,56,6,27,26,0,1
+5433,41,0,85,-4,38,0,44,46,2,1
+5434,57,1,86,-4,56,0,30,30,0,1
+5435,50,0,87,-3,50,-4,37,38,0,1
+5436,41,4,76,0,38,-16,35,37,2,1
+5437,44,4,79,0,44,15,35,35,0,1
+5438,82,4,86,0,-22,0,4,109,106,5
+5439,45,-3,78,0,44,0,33,34,2,1
+5440,44,5,76,0,44,16,32,32,0,1
+5441,37,0,78,0,6,8,42,73,32,1
+5442,45,0,82,-30,44,0,37,38,0,1
+5443,38,0,77,0,38,14,40,39,0,1
+5444,37,0,97,0,12,2,59,84,24,1
+5445,37,0,95,0,8,-11,58,87,30,1
+5446,45,0,83,0,44,0,39,39,0,1
+5447,43,0,86,0,44,23,42,42,0,1
+5448,53,1,88,0,52,-9,35,36,2,1
+5449,53,-2,80,0,54,0,27,26,0,1
+5450,37,0,90,0,36,8,53,54,2,1
+5451,37,0,79,0,18,-5,42,61,18,1
+5452,45,0,88,0,46,3,42,41,0,1
+5453,49,-4,80,0,50,2,31,31,0,1
+5454,55,0,82,0,-42,-18,26,126,100,4
+5455,80,-2,84,0,-42,0,5,128,124,5
+5456,37,0,107,0,28,-7,69,78,8,1
+5457,46,5,83,0,46,12,37,36,0,1
+5458,56,0,81,0,54,-26,25,27,2,1
+5459,55,0,83,0,56,28,28,26,0,1
+5460,44,0,77,0,44,0,33,34,0,1
+5461,39,-1,77,8,38,0,38,39,0,1
+5462,51,0,77,0,50,-26,26,28,2,1
+5463,52,0,78,-3,52,0,26,26,0,1
+5464,82,0,86,6,-12,0,4,99,94,5
+5465,45,0,82,0,46,25,37,35,0,1
+5466,55,0,77,-1,16,-3,22,62,40,4
+5467,55,0,95,-2,44,9,40,51,12,4
+5468,37,-1,104,0,24,11,67,80,14,1
+5469,45,0,83,0,44,-17,38,39,2,1
+5470,45,-1,79,0,44,-20,33,35,2,1
+5471,37,0,77,0,6,-29,40,72,32,1
+5472,56,0,97,0,46,4,41,51,10,4
+5473,47,0,77,0,46,0,30,30,0,1
+5474,53,0,81,0,54,6,28,27,0,1
+5475,56,0,81,0,54,-22,25,27,2,1
+5476,103,-2,104,0,70,0,1,35,34,5
+5477,37,0,75,0,36,16,37,39,2,1
+5478,46,0,76,0,46,14,30,29,0,1
+5479,37,0,76,0,28,28,39,48,8,1
+5480,41,0,82,-5,38,-4,41,43,2,1
+5481,56,0,79,2,-22,0,23,102,80,4
+5482,55,0,79,-1,20,-3,24,59,34,4
+5483,55,1,77,0,44,3,22,34,12,4
+5484,76,-5,81,0,-40,0,5,122,118,5
+5485,56,0,95,0,44,11,40,51,12,4
+5486,68,0,111,-6,68,0,44,44,0,1
+5487,37,0,83,0,28,7,46,54,8,1
+5488,45,0,86,-6,44,-9,40,42,2,1
+5489,49,0,77,3,46,-22,28,30,2,1
+5490,53,0,87,0,52,-9,34,35,2,1
+5491,44,-1,79,-5,44,4,36,35,0,1
+5492,41,0,86,0,42,18,46,45,0,1
+5493,37,-28,77,0,20,0,40,56,16,1
+5494,44,-41,88,0,44,0,44,44,0,1
+5495,45,0,86,0,46,16,41,40,0,1
+5496,44,0,77,5,44,14,34,34,0,1
+5497,50,0,111,6,50,0,60,62,2,1
+5498,49,0,81,0,46,-23,33,35,2,1
+5499,37,0,90,0,36,-9,52,53,2,1
+5500,53,0,86,0,52,-28,33,34,2,1
+5501,57,4,86,0,56,0,29,30,0,1
+5502,43,-4,86,0,42,0,44,45,2,1
+5503,43,-2,81,0,42,0,38,39,2,1
+5504,41,-2,86,0,42,11,45,44,0,1
+5505,41,0,76,0,38,-9,35,37,2,1
+5506,45,0,84,3,44,0,39,40,2,1
+5507,41,0,87,2,38,-14,46,48,2,1
+5508,37,0,94,2,12,12,57,81,24,1
+5509,37,0,79,0,34,-3,41,45,4,1
+5510,43,1,102,0,42,-6,59,61,2,1
+5511,37,-2,75,-1,20,0,38,54,16,1
+5512,53,2,82,0,52,-10,29,30,2,1
+5513,43,0,81,3,42,-6,38,40,2,1
+5514,37,0,77,0,24,-30,41,54,14,1
+5515,47,-5,90,0,46,0,43,43,0,1
+5516,52,3,84,0,52,0,32,32,0,1
+5517,37,-2,79,0,24,0,42,55,14,1
+5518,52,-4,102,0,52,0,50,50,0,1
+5519,46,1,86,0,46,0,41,40,0,1
+5520,55,0,97,0,50,29,41,48,6,4
+5521,53,0,86,3,54,14,33,32,0,1
+5522,46,1,107,-6,46,4,61,60,0,1
+5523,56,0,92,0,46,-1,36,46,10,4
+5524,41,4,83,0,42,5,41,41,0,1
+5525,44,1,78,0,42,-17,34,37,2,1
+5526,55,-5,78,0,16,-1,23,63,40,4
+5527,44,3,86,-3,44,0,42,42,0,1
+5528,56,0,77,0,-20,-16,21,97,76,4
+5529,55,0,76,0,-12,0,21,89,68,4
+5530,44,0,79,0,42,-28,36,38,2,1
+5531,41,-2,86,0,38,-16,46,48,2,1
+5532,56,0,97,4,52,0,41,45,4,4
+5533,37,0,82,5,-4,0,45,87,42,1
+5534,37,-4,107,0,36,0,70,71,0,1
+5535,49,0,90,0,50,20,42,41,0,1
+5536,53,-2,81,0,54,0,28,27,0,1
+5537,51,0,82,0,50,-11,31,33,2,1
+5538,44,0,85,0,44,14,41,41,0,1
+5539,81,0,84,-1,-14,0,3,99,96,5
+5540,37,0,83,0,2,4,46,81,34,1
+5541,104,-3,105,0,72,2,1,33,32,5
+5542,56,0,98,0,52,18,42,46,4,4
+5543,37,0,77,5,24,-8,40,54,14,1
+5544,38,3,77,0,38,1,39,38,0,1
+5545,55,0,78,0,2,9,23,75,52,4
+5546,45,0,100,0,44,0,55,56,0,1
+5547,37,0,79,0,36,4,41,43,2,1
+5548,49,4,86,0,50,8,37,37,0,1
+5549,37,0,95,0,28,0,58,67,8,1
+5550,37,0,82,8,-2,4,45,85,40,1
+5551,56,0,97,-6,50,-13,41,48,6,4
+5552,37,0,76,0,34,8,39,43,4,1
+5553,37,0,76,0,30,17,40,45,6,1
+5554,55,0,77,0,36,0,22,41,20,4
+5555,55,0,77,0,-24,20,21,103,82,4
+5556,37,0,76,0,16,-10,39,61,22,1
+5557,56,0,79,3,56,16,23,22,0,1
+5558,44,0,96,8,44,0,52,52,0,1
+5559,50,-1,79,8,50,0,29,30,0,1
+5560,55,0,86,0,56,25,31,30,0,1
+5561,37,-2,76,-9,36,-14,39,40,0,1
+5562,51,0,86,-7,50,-5,36,37,2,1
+5563,51,5,78,-2,52,14,27,26,0,1
+5564,37,0,77,1,34,-6,40,43,2,1
+5565,37,-2,81,0,36,-29,43,44,2,1
+5566,38,2,79,0,38,7,41,40,0,1
+5567,51,0,77,0,50,-12,26,28,2,1
+5568,41,1,97,0,38,-16,56,59,2,1
+5569,37,0,79,0,0,1,42,79,36,1
+5570,37,0,107,8,30,0,70,76,6,1
+5571,43,0,84,6,42,-4,41,43,2,1
+5572,37,0,77,0,18,-13,40,59,18,1
+5573,49,0,107,3,46,-14,58,60,2,1
+5574,37,0,76,-7,24,8,39,52,14,1
+5575,37,0,79,0,20,11,42,58,16,1
+5576,37,0,83,2,-2,0,46,85,40,1
+5577,84,0,88,-2,0,24,3,88,84,5
+5578,107,0,108,-7,70,-24,1,38,36,5
+5579,56,0,76,0,-10,-4,20,86,66,4
+5580,56,0,81,0,56,3,24,24,0,1
+5581,85,0,88,6,2,0,3,86,82,5
+5582,37,3,82,-3,34,0,45,48,4,1
+5583,59,0,86,0,60,16,28,27,0,1
+5584,43,-4,81,0,42,0,38,40,2,1
+5585,55,0,96,4,54,0,41,42,2,1
+5586,53,-1,91,0,54,0,38,37,0,1
+5587,83,-1,86,0,-4,-8,4,92,88,5
+5588,47,5,86,0,46,0,39,40,0,1
+5589,55,2,81,0,54,0,27,27,0,1
+5590,37,0,99,0,28,-2,61,70,8,1
+5591,49,0,78,0,50,6,29,29,0,1
+5592,49,3,88,0,50,27,40,39,0,1
+5593,37,0,106,0,24,14,69,82,14,1
+5594,41,0,80,-1,42,1,39,39,0,1
+5595,37,0,97,-3,34,8,60,64,4,1
+5596,50,0,91,0,50,0,41,42,0,1
+5597,37,0,93,0,12,-12,55,80,24,1
+5598,46,0,81,0,46,8,35,34,0,1
+5599,45,0,81,0,46,11,36,35,0,1
+5600,56,0,81,0,-4,20,25,86,62,4
+5601,37,0,80,0,30,-5,43,49,6,1
+5602,45,0,76,0,44,-16,31,32,2,1
+5603,41,0,108,-4,42,18,66,66,0,1
+5604,51,0,84,1,52,0,33,33,0,1
+5605,37,0,97,-3,18,-3,60,79,18,1
+5606,37,0,84,0,24,-2,47,61,14,1
+5607,41,0,82,-4,38,0,41,43,2,1
+5608,45,-1,77,0,44,-10,31,33,2,1
+5609,52,2,85,-1,52,0,33,33,0,1
+5610,37,0,79,0,26,6,43,54,10,1
+5611,56,0,97,0,42,0,41,55,14,4
+5612,49,2,86,0,50,14,38,37,0,1
+5613,55,-1,98,0,42,29,42,57,14,4
+5614,48,-5,77,0,46,-4,29,31,2,1
+5615,41,-5,76,0,42,10,35,35,0,1
+5616,48,1,76,0,46,0,28,30,2,1
+5617,41,2,76,0,42,10,34,34,0,1
+5618,56,0,97,0,52,26,41,45,4,4
+5619,53,0,84,0,54,9,32,30,0,1
+5620,55,0,96,0,42,-17,41,55,14,4
+5621,78,1,83,1,-40,10,4,124,120,5
+5622,38,1,102,0,38,0,64,63,0,1
+5623,38,-2,76,-3,38,0,38,37,0,1
+5624,52,4,83,0,52,0,30,31,0,1
+5625,39,3,93,-4,38,0,54,55,0,1
+5626,55,-1,77,-3,16,-8,22,62,40,4
+5627,48,0,88,0,46,-5,39,41,2,1
+5628,37,0,90,0,34,-24,53,57,4,1
+5629,54,5,81,0,54,0,27,27,0,1
+5630,56,0,77,0,44,-24,22,34,12,4
+5631,67,1,112,0,68,1,45,45,0,1
+5632,43,0,108,0,42,-8,65,67,2,1
+5633,41,-1,78,0,42,11,37,37,0,1
+5634,56,0,92,0,52,13,36,40,4,4
+5635,55,0,77,0,-30,-13,22,108,86,4
+5636,42,0,89,-6,42,0,47,48,2,1
+5637,38,0,92,0,20,-6,54,71,18,1
+5638,55,0,92,0,30,-6,37,61,24,4
+5639,37,0,81,0,36,-20,43,44,2,1
+5640,41,0,79,0,38,-3,38,40,2,1
+5641,37,0,76,1,28,-8,40,48,8,1
+5642,55,0,79,0,20,-25,23,58,34,4
+5643,37,0,78,-2,34,-3,41,45,4,1
+5644,40,4,85,0,38,0,45,46,2,1
+5645,49,3,77,0,46,-6,28,30,2,1
+5646,53,-4,81,0,54,6,28,27,0,1
+5647,53,-4,78,0,54,8,25,24,0,1
+5648,48,0,83,2,46,0,35,36,2,1
+5649,102,0,103,1,72,26,1,31,30,5
+5650,52,4,102,0,52,0,50,51,0,1
+5651,37,5,79,5,24,0,42,56,14,1
+5652,37,0,104,0,18,-25,67,86,20,1
+5653,39,2,79,0,38,0,40,40,0,1
+5654,37,0,79,-1,10,0,42,69,26,1
+5655,37,0,77,0,38,27,40,39,0,1
+5656,37,0,93,0,12,0,55,80,24,1
+5657,51,-2,82,0,52,0,31,30,0,1
+5658,37,3,77,0,34,-13,39,43,4,1
+5659,41,0,84,6,42,30,43,43,0,1
+5660,41,0,85,0,42,21,44,44,0,1
+5661,46,-4,84,0,46,0,38,38,0,1
+5662,55,0,96,-1,50,-9,41,47,6,4
+5663,76,-3,81,-2,-40,30,5,123,118,5
+5664,44,0,80,0,44,3,36,36,0,1
+5665,44,0,79,0,44,17,36,35,0,1
+5666,37,0,81,7,12,0,45,68,24,1
+5667,55,-2,98,0,52,1,42,46,4,4
+5668,37,0,103,0,20,3,66,82,16,1
+5669,53,4,87,0,52,-1,34,35,2,1
+5670,55,0,80,0,54,-1,25,26,2,1
+5671,45,0,86,-1,44,-7,41,42,2,1
+5672,44,0,87,0,44,3,43,43,0,1
+5673,55,0,95,5,36,-5,40,59,20,4
+5674,45,1,86,0,46,28,41,40,0,1
+5675,82,3,86,0,-22,0,4,109,106,5
+5676,42,5,76,0,42,2,34,34,0,1
+5677,37,0,97,0,12,10,59,84,24,1
+5678,55,-1,80,-2,20,-5,25,59,34,4
+5679,50,-3,87,4,50,0,37,38,0,1
+5680,55,2,85,0,54,0,31,31,0,1
+5681,39,-1,106,0,38,0,67,67,0,1
+5682,47,3,95,3,46,0,48,49,0,1
+5683,37,0,77,0,-4,6,41,83,42,1
+5684,56,0,77,0,20,-6,22,57,36,4
+5685,37,0,76,-4,34,0,40,43,2,1
+5686,45,0,80,8,44,0,35,36,2,1
+5687,56,0,96,0,56,12,40,39,0,1
+5688,37,0,80,0,30,14,43,49,6,1
+5689,37,2,82,-2,34,0,45,48,4,1
+5690,104,0,106,0,72,9,1,33,32,5
+5691,45,-4,85,0,46,8,40,39,0,1
+5692,58,-3,85,0,56,0,28,28,0,1
+5693,37,0,77,-2,30,12,40,46,6,1
+5694,55,0,77,-1,28,3,21,48,28,4
+5695,40,0,80,0,42,25,40,39,0,1
+5696,55,0,95,0,54,24,40,41,2,1
+5697,37,0,80,0,30,13,43,49,6,1
+5698,74,5,78,6,-42,-1,4,122,118,5
+5699,58,2,97,0,56,0,39,40,0,1
+5700,55,-1,91,0,54,-7,35,37,2,1
+5701,55,0,96,-2,42,-4,41,55,14,4
+5702,37,1,75,-2,20,0,38,54,16,1
+5703,53,0,77,0,54,5,23,23,0,1
+5704,51,-1,90,0,50,-13,39,41,2,1
+5705,41,0,77,0,38,-3,37,39,2,1
+5706,41,0,86,0,42,3,45,44,0,1
+5707,55,0,95,0,46,12,40,49,8,4
+5708,45,-2,107,0,44,-18,62,63,2,1
+5709,37,0,78,0,12,30,41,65,24,1
+5710,56,0,81,0,-20,-9,25,102,76,4
+5711,50,-5,86,1,50,0,37,37,0,1
+5712,37,0,79,0,34,10,42,46,4,1
+5713,53,0,86,0,52,-5,33,34,2,1
+5714,82,0,86,0,-40,2,5,128,124,5
+5715,56,-3,98,0,52,0,42,46,4,4
+5716,46,0,76,0,44,-24,30,32,2,1
+5717,56,-1,81,0,54,-27,25,27,2,1
+5718,41,0,80,-1,38,0,39,41,2,1
+5719,37,0,76,-1,24,1,39,52,14,1
+5720,46,2,88,8,46,6,42,41,0,1
+5721,38,0,92,0,16,1,54,77,22,1
+5722,37,4,76,0,34,-29,39,42,4,1
+5723,108,-1,109,0,70,-28,1,39,38,5
+5724,37,0,75,0,34,6,38,41,4,1
+5725,48,0,88,-2,46,0,40,42,2,1
+5726,55,0,95,0,50,4,40,46,6,4
+5727,51,-1,77,0,52,22,26,25,0,1
+5728,55,0,83,0,-30,-9,27,114,86,4
+5729,39,-2,76,1,38,0,38,37,0,1
+5730,37,0,77,0,16,18,40,61,22,1
+5731,51,0,83,0,50,-17,32,34,2,1
+5732,49,0,77,4,46,-10,28,30,2,1
+5733,37,0,77,0,6,6,40,72,32,1
+5734,45,0,81,0,46,28,36,35,0,1
+5735,48,5,81,0,46,0,32,34,2,1
+5736,53,0,86,0,52,-2,33,35,2,1
+5737,44,5,79,0,44,0,35,35,0,1
+5738,55,0,83,0,54,0,27,28,2,1
+5739,45,0,77,0,46,10,31,30,0,1
+5740,45,-5,83,0,46,21,38,37,0,1
+5741,55,0,96,0,54,27,41,42,2,1
+5742,48,45,77,0,-22,0,29,101,72,2
+5743,37,1,90,0,20,7,53,70,16,1
+5744,51,0,81,0,52,22,30,29,0,1
+5745,56,1,97,0,54,30,40,42,2,1
+5746,44,0,76,-1,44,0,32,32,0,1
+5747,55,0,86,-4,54,0,31,32,2,1
+5748,49,0,78,-7,46,-20,29,32,2,1
+5749,56,0,79,6,0,5,23,79,56,4
+5750,56,0,86,0,54,-29,30,32,2,1
+5751,41,1,77,0,42,5,36,35,0,1
+5752,40,0,81,5,38,0,41,43,2,1
+5753,55,0,77,0,24,-3,21,54,32,4
+5754,43,4,77,0,42,0,34,36,2,1
+5755,42,0,86,0,42,0,44,45,0,1
+5756,51,0,80,0,52,23,29,28,0,1
+5757,37,0,95,0,20,17,57,74,16,1
+5758,55,0,97,-5,46,0,41,50,8,4
+5759,56,0,78,0,44,27,22,34,12,4
+5760,107,4,108,1,72,5,1,36,34,5
+5761,55,0,95,0,54,-1,40,41,2,1
+5762,37,0,96,0,34,1,59,62,4,1
+5763,55,0,79,0,20,-10,24,59,34,4
+5764,45,0,79,0,46,10,33,32,0,1
+5765,41,4,79,0,42,11,38,37,0,1
+5766,37,0,103,0,24,-23,66,80,14,1
+5767,43,-3,81,0,42,-2,38,40,2,1
+5768,37,0,77,0,-14,6,40,92,52,1
+5769,55,0,78,0,16,-26,23,63,40,4
+5770,56,5,97,0,54,24,40,42,2,1
+5771,49,-3,79,0,50,0,30,30,0,1
+5772,41,0,84,-1,42,-2,43,43,0,1
+5773,48,-1,79,0,46,0,31,32,2,1
+5774,46,0,83,-1,46,5,37,36,0,1
+5775,55,0,78,0,44,-10,23,34,12,4
+5776,37,0,77,0,18,-2,40,59,18,1
+5777,48,0,88,7,46,0,39,41,2,1
+5778,42,-5,79,0,42,0,37,38,2,1
+5779,53,-5,88,0,52,-30,34,36,2,1
+5780,37,0,80,0,28,21,43,52,8,1
+5781,37,0,81,0,28,-17,45,53,8,1
+5782,51,-1,78,0,52,5,27,26,0,1
+5783,79,0,83,0,-30,0,4,114,110,5
+5784,37,0,79,0,10,26,42,68,26,1
+5785,37,-1,76,-2,-2,0,39,79,40,1
+5786,49,2,81,0,50,0,31,32,0,1
+5787,55,0,93,0,10,-18,37,82,46,4
+5788,37,0,79,0,36,28,41,43,2,1
+5789,55,0,82,0,-36,3,26,118,92,4
+5790,44,1,86,1,42,-22,42,44,2,1
+5791,45,0,76,-1,44,-3,31,32,2,1
+5792,46,2,79,0,46,3,34,33,0,1
+5793,51,0,86,-2,50,-2,36,37,2,1
+5794,37,0,77,0,28,69,40,48,8,1
+5795,37,-2,82,4,-4,0,45,87,42,1
+5796,37,0,76,0,30,-9,39,45,6,1
+5797,56,0,79,1,0,6,23,79,56,4
+5798,38,0,92,0,18,25,54,74,20,1
+5799,56,0,95,0,46,9,40,49,10,4
+5800,37,4,77,-1,-22,2,41,101,60,1
+5801,40,0,81,-4,38,0,41,42,2,1
+5802,41,1,88,0,42,0,47,47,0,1
+5803,51,0,77,0,50,-21,26,28,2,1
+5804,83,2,86,6,-6,0,4,94,90,5
+5805,46,3,76,0,46,7,30,30,0,1
+5806,56,-2,96,0,56,3,40,39,0,1
+5807,51,-2,79,0,50,-9,28,30,2,1
+5808,40,-4,109,0,38,-1,68,70,2,1
+5809,45,-2,86,0,44,-1,41,42,2,1
+5810,42,0,86,-1,42,-2,44,45,2,1
+5811,37,0,79,0,34,-10,42,46,4,1
+5812,55,0,79,0,18,-7,23,61,38,4
+5813,42,-5,99,0,42,0,57,58,0,1
+5814,45,-2,87,0,44,-14,42,43,2,1
+5815,50,1,85,-5,50,0,35,36,0,1
+5816,49,-3,83,-7,50,0,33,33,0,1
+5817,55,0,96,0,52,-5,41,44,4,4
+5818,44,-4,78,0,44,0,34,34,0,1
+5819,38,0,92,0,20,2,54,71,18,1
+5820,55,0,82,0,-40,20,26,123,96,4
+5821,37,0,83,0,30,17,46,52,6,1
+5822,37,0,79,0,6,-21,43,74,32,1
+5823,37,0,80,0,36,1,43,44,0,1
+5824,55,0,95,0,38,4,40,57,16,4
+5825,65,4,113,0,64,1,48,48,0,1
+5826,45,1,86,0,44,-3,40,42,2,1
+5827,38,1,81,0,38,8,43,42,0,1
+5828,46,2,86,0,46,20,40,39,0,1
+5829,37,0,82,0,34,-8,45,48,4,1
+5830,55,-1,98,2,52,-13,42,46,4,4
+5831,37,0,83,0,28,-29,46,54,8,1
+5832,45,1,83,0,44,-1,38,39,2,1
+5833,51,-2,84,0,50,-17,33,35,2,1
+5834,37,0,78,0,2,-19,41,75,34,1
+5835,47,5,88,1,46,0,42,42,0,1
+5836,55,0,77,0,44,17,22,34,12,4
+5837,48,3,80,0,46,0,32,34,2,1
+5838,56,0,78,0,12,15,22,65,42,4
+5839,41,0,86,3,42,1,45,45,0,1
+5840,54,-5,77,-22,-4,-30,23,82,60,4
+5841,46,2,80,0,44,-29,34,36,2,1
+5842,56,0,97,4,46,0,41,51,10,4
+5843,45,0,76,0,46,29,31,30,0,1
+5844,55,-2,98,0,46,7,42,51,8,4
+5845,46,0,77,0,44,-20,31,33,2,1
+5846,43,-1,80,-4,42,-16,37,39,2,1
+5847,45,-2,76,0,46,6,31,30,0,1
+5848,44,0,81,0,42,-21,37,39,2,1
+5849,37,0,95,0,8,-3,58,87,30,1
+5850,101,3,102,0,70,-18,1,32,32,5
+5851,43,0,90,0,44,29,47,46,0,1
+5852,37,0,103,0,26,1,66,77,12,1
+5853,56,0,97,0,52,6,41,45,4,4
+5854,62,0,110,3,62,0,48,48,0,1
+5855,43,5,85,-2,42,-3,42,44,2,1
+5856,48,0,90,0,46,-6,41,43,2,1
+5857,55,0,97,4,42,0,41,55,14,4
+5858,38,0,83,0,36,-22,45,47,2,1
+5859,37,4,77,0,0,0,40,77,36,1
+5860,56,0,95,0,38,-7,40,57,18,4
+5861,37,0,77,0,-6,-14,41,85,44,1
+5862,41,-1,100,0,42,6,59,59,0,1
+5863,56,0,77,0,-24,0,21,103,82,4
+5864,37,0,80,0,16,13,43,65,22,1
+5865,37,0,96,-1,36,0,59,60,2,1
+5866,55,0,92,0,24,-13,37,69,32,4
+5867,37,0,81,0,12,-30,44,68,24,1
+5868,59,1,86,1,60,17,28,27,0,1
+5869,45,0,83,-6,44,0,38,39,2,1
+5870,37,0,78,0,24,27,42,55,14,1
+5871,78,-4,82,0,-46,0,4,128,124,5
+5872,37,0,83,0,6,-12,47,78,32,1
+5873,49,0,95,1,50,3,47,46,0,1
+5874,46,1,83,0,46,11,37,37,0,1
+5875,46,0,84,0,44,-27,38,40,2,1
+5876,39,-6,76,-1,-2,0,37,79,42,1
+5877,56,0,76,0,-4,276,20,81,62,4
+5878,51,-4,80,0,50,-16,29,31,2,1
+5879,37,0,83,0,0,-13,46,83,36,1
+5880,56,0,96,-4,50,0,40,47,6,4
+5881,48,1,90,0,46,0,41,43,2,1
+5882,56,0,79,0,56,13,23,22,0,1
+5883,48,0,88,-1,46,-3,40,42,2,1
+5884,37,0,75,1,24,0,38,52,14,1
+5885,44,0,76,0,42,-23,32,34,2,1
+5886,58,-1,81,0,56,0,24,24,0,1
+5887,55,-1,77,0,34,-4,22,44,22,4
+5888,37,0,80,5,18,0,43,62,18,1
+5889,44,4,85,0,44,5,41,41,0,1
+5890,37,0,81,0,24,0,44,57,14,1
+5891,53,0,104,0,54,2,51,49,0,1
+5892,47,0,94,3,46,0,47,48,0,1
+5893,55,0,87,2,54,0,32,33,2,1
+5894,45,1,80,0,44,0,35,36,2,1
+5895,37,0,76,0,34,20,39,42,4,1
+5896,37,-1,74,-3,28,-6,37,46,8,1
+5897,47,-2,88,8,46,0,40,41,0,1
+5898,46,4,87,0,46,3,41,41,0,1
+5899,55,0,95,3,50,0,39,46,6,4
+5900,37,0,78,0,20,-14,42,57,16,1
+5901,55,0,93,2,0,-2,38,93,56,4
+5902,37,-1,100,0,36,0,64,64,0,1
+5903,56,0,81,0,54,-23,25,27,2,1
+5904,52,1,84,0,52,0,32,33,0,1
+5905,55,0,77,0,24,-13,21,54,32,4
+5906,56,0,76,0,-4,-4,20,81,62,4
+5907,38,0,75,0,38,2,37,36,0,1
+5908,53,0,88,0,54,15,35,34,0,1
+5909,57,3,92,0,56,1,35,35,0,1
+5910,56,2,99,0,50,3,43,49,6,4
+5911,49,0,86,-3,50,-4,37,37,0,1
+5912,41,-5,97,0,42,0,56,56,0,1
+5913,56,0,99,-2,50,0,43,50,6,4
+5914,37,0,83,-1,-4,-7,46,88,42,1
+5915,56,0,81,0,-4,24,25,86,62,4
+5916,37,0,79,0,10,-15,43,69,26,1
+5917,79,0,83,-1,-42,0,4,126,122,5
+5918,55,0,87,8,54,0,32,33,0,1
+5919,56,0,77,0,-20,25,21,97,76,4
+5920,37,0,76,0,18,3,39,58,18,1
+5921,37,0,97,-7,20,0,60,76,16,1
+5922,76,-2,81,0,-40,0,4,122,118,5
+5923,46,0,90,-7,46,0,43,43,0,1
+5924,55,0,79,0,12,-20,23,66,42,4
+5925,55,-2,80,0,-2,1,25,83,58,4
+5926,37,-2,81,0,36,0,44,44,0,1
+5927,37,-10,80,0,34,0,43,46,2,1
+5928,55,0,97,-7,46,0,42,51,8,4
+5929,38,1,79,0,38,18,41,40,0,1
+5930,105,-1,106,-5,70,-6,1,36,36,5
+5931,53,-1,78,0,52,-12,25,26,2,1
+5932,55,1,77,-2,44,0,22,34,12,4
+5933,57,2,86,-7,56,0,30,30,0,1
+5934,49,0,79,0,50,14,31,30,0,1
+5935,37,2,80,0,8,14,43,72,30,1
+5936,56,1,92,0,52,-6,36,40,4,4
+5937,37,0,74,0,24,5,37,51,14,1
+5938,42,-3,83,0,42,0,42,42,0,1
+5939,55,0,79,0,10,-16,23,68,46,4
+5940,42,0,78,-7,42,0,36,37,2,1
+5941,55,0,77,0,16,-21,22,62,40,4
+5942,58,0,83,6,56,0,25,26,0,1
+5943,43,0,86,-5,42,-18,42,44,2,1
+5944,105,-4,106,-6,72,3,1,33,32,5
+5945,46,1,78,0,46,7,32,32,0,1
+5946,46,0,108,-4,46,3,62,61,0,1
+5947,85,0,88,0,2,-14,3,86,82,5
+5948,43,0,78,-6,44,23,35,34,0,1
+5949,49,0,90,0,50,8,42,41,0,1
+5950,56,-2,80,0,56,8,24,23,0,1
+5951,56,1,81,0,-10,-20,25,91,66,4
+5952,38,-1,100,0,38,0,62,62,0,1
+5953,43,0,78,-2,42,-4,35,37,2,1
+5954,47,1,106,0,46,0,59,60,0,1
+5955,51,-1,86,0,50,-25,36,37,2,1
+5956,40,0,80,0,42,31,40,39,0,1
+5957,37,0,76,8,34,0,40,43,2,1
+5958,55,0,93,-1,46,-14,37,46,8,4
+5959,44,1,79,-2,44,1,35,35,0,1
+5960,55,0,92,-1,46,0,36,45,8,4
+5961,37,0,103,0,24,-12,66,80,14,1
+5962,41,0,86,0,38,-18,46,48,2,1
+5963,55,0,80,3,20,0,25,59,34,4
+5964,56,0,97,0,46,-21,41,50,10,4
+5965,37,0,83,5,8,-6,47,75,28,1
+5966,41,0,81,0,38,-18,40,42,2,1
+5967,37,0,95,0,10,24,58,84,26,1
+5968,54,-5,88,0,54,0,34,33,0,1
+5969,49,0,79,0,50,4,30,30,0,1
+5970,53,-5,88,0,54,9,35,33,0,1
+5971,44,0,83,4,44,0,38,39,0,1
+5972,37,0,78,0,8,2,41,70,30,1
+5973,45,-2,81,0,46,26,36,35,0,1
+5974,56,0,86,0,56,12,30,29,0,1
+5975,44,-2,87,1,44,0,43,43,0,1
+5976,79,0,83,0,-42,0,4,127,122,5
+5977,45,1,77,4,44,0,32,33,2,1
+5978,37,0,83,-7,6,0,46,77,32,1
+5979,44,1,76,0,44,2,31,32,0,1
+5980,68,2,112,0,68,0,44,45,0,1
+5981,38,4,77,0,38,14,39,38,0,1
+5982,49,4,80,0,46,-6,31,34,2,1
+5983,43,0,77,0,42,-6,34,36,2,1
+5984,37,-1,95,-12,20,1,58,75,16,1
+5985,45,-1,83,-4,44,-8,37,39,2,1
+5986,55,0,95,0,44,4,40,51,12,4
+5987,41,318,78,0,38,0,37,39,2,1
+5988,47,-2,95,0,46,0,49,49,0,1
+5989,49,0,81,0,50,-6,32,32,0,1
+5990,51,0,78,-6,50,0,27,29,2,1
+5991,37,0,77,0,18,20,40,59,18,1
+5992,57,-1,81,-6,56,-8,24,24,0,1
+5993,56,1,77,-1,44,0,22,34,12,4
+5994,37,0,81,0,28,-23,45,53,8,1
+5995,45,4,80,0,44,0,35,36,2,1
+5996,38,0,80,4,38,0,42,41,0,1
+5997,45,-2,77,0,44,0,32,33,2,1
+5998,37,3,104,0,18,6,66,86,20,1
+5999,55,-3,98,0,46,5,42,51,8,4
+6000,45,4,87,0,44,0,42,43,2,1
+6001,55,0,77,0,20,-30,22,57,34,4
+6002,45,-4,76,-3,44,0,32,32,0,1
+6003,55,0,95,-1,44,23,40,51,12,4
+6004,44,0,79,0,42,-20,35,37,2,1
+6005,55,-1,77,-3,0,20,22,77,56,4
+6006,37,0,77,-1,28,-1,40,48,8,1
+6007,37,0,106,0,28,0,68,77,8,1
+6008,37,0,108,0,30,-27,71,77,6,1
+6009,41,-2,83,0,42,0,42,42,0,1
+6010,52,0,81,0,52,-1,29,30,0,1
+6011,42,4,78,-2,42,0,36,37,2,1
+6012,37,0,77,2,36,1,41,41,0,1
+6013,49,-5,82,0,46,-24,33,35,2,1
+6014,56,0,95,0,52,6,40,44,4,4
+6015,48,-2,86,0,46,-1,38,40,2,1
+6016,52,4,82,3,52,0,30,30,0,1
+6017,37,0,78,0,20,-6,42,57,16,1
+6018,45,-2,83,6,44,0,38,39,2,1
+6019,60,0,108,-1,60,0,49,49,0,1
+6020,53,1,88,0,52,-2,35,36,2,1
+6021,85,0,89,5,2,0,4,86,82,5
+6022,48,0,89,-2,46,-4,41,42,2,1
+6023,82,0,86,1,-40,2,5,128,124,5
+6024,63,1,112,1,62,0,49,50,2,1
+6025,46,0,84,0,44,-19,38,40,2,1
+6026,50,1,77,0,50,0,27,28,2,1
+6027,37,0,99,0,28,-6,61,70,8,1
+6028,57,-4,79,0,56,0,22,22,0,1
+6029,56,0,96,5,54,1,40,42,2,1
+6030,80,0,84,0,-28,-8,4,112,108,5
+6031,38,-5,77,0,38,0,39,39,0,1
+6032,56,4,98,0,38,-11,42,59,18,4
+6033,55,0,81,-2,-12,9,26,94,68,4
+6034,41,-3,80,0,38,-14,39,41,2,1
+6035,49,1,95,0,46,-9,47,49,2,1
+6036,46,0,81,0,46,2,35,34,0,1
+6037,48,-4,79,0,46,-2,30,32,2,1
+6038,37,0,106,2,30,0,69,75,6,1
+6039,45,0,86,6,44,-19,41,42,2,1
+6040,49,0,86,0,46,-21,38,40,2,1
+6041,38,1,76,0,38,8,38,37,0,1
+6042,41,0,84,0,42,1,43,43,0,1
+6043,50,0,84,-1,50,-1,34,35,0,1
+6044,37,0,79,0,30,13,42,48,6,1
+6045,41,0,78,0,42,26,37,37,0,1
+6046,44,5,108,0,44,1,63,64,0,1
+6047,56,0,76,0,-2,2,20,79,58,4
+6048,55,3,79,0,54,0,25,25,0,1
+6049,55,0,78,0,2,-1,23,75,52,4
+6050,48,-1,77,0,46,-7,28,30,2,1
+6051,37,0,78,0,-2,-15,42,81,40,1
+6052,44,1,86,8,44,10,43,42,0,1
+6053,37,0,76,-7,28,5,39,47,8,1
+6054,49,0,77,6,46,-16,28,30,2,1
+6055,46,4,81,0,46,21,35,35,0,1
+6056,43,3,86,0,42,0,43,45,2,1
+6057,55,0,77,0,-28,-30,21,105,84,4
+6058,46,1,79,0,44,-30,34,35,2,1
+6059,55,0,93,0,42,-21,37,51,14,4
+6060,37,0,93,-3,12,0,55,80,24,1
+6061,37,0,75,0,30,26,38,44,6,1
+6062,78,-3,82,0,-46,0,4,128,124,5
+6063,45,0,84,0,44,-19,39,41,2,1
+6064,37,0,79,0,24,-23,42,55,14,1
+6065,37,0,78,0,-4,5,41,83,42,1
+6066,56,0,83,0,54,-29,27,29,2,1
+6067,56,0,81,1,-6,0,25,89,64,4
+6068,37,0,100,-1,30,-1,64,69,6,1
+6069,37,0,77,0,36,-6,39,41,2,1
+6070,37,0,82,3,20,1,45,61,16,1
+6071,49,0,106,0,50,15,58,57,0,1
+6072,58,0,86,-2,56,0,29,30,0,1
+6073,64,1,113,0,62,-15,48,51,2,1
+6074,55,0,77,0,34,0,22,44,22,4
+6075,56,0,76,0,-4,-17,20,81,62,4
+6076,48,0,86,-7,46,0,37,39,2,1
+6077,49,-1,83,-4,50,-6,34,34,0,1
+6078,56,0,95,0,42,-18,40,54,14,4
+6079,41,-5,108,0,42,9,67,67,0,1
+6080,37,0,84,1,30,0,47,53,6,1
+6081,37,0,103,0,20,-16,66,82,16,1
+6082,56,-4,99,0,46,-7,43,52,10,4
+6083,47,3,86,0,46,0,39,39,0,1
+6084,37,0,80,0,8,24,43,72,28,1
+6085,56,-1,97,0,42,0,41,55,14,4
+6086,82,0,86,0,-42,-23,4,130,126,5
+6087,46,1,86,0,44,-27,41,42,2,1
+6088,55,0,77,-2,-22,0,22,100,78,4
+6089,56,0,77,-1,24,-3,22,54,32,4
+6090,37,0,76,0,24,-1,40,53,14,1
+6091,84,3,87,0,-2,0,3,90,86,5
+6092,39,0,85,5,38,0,46,46,0,1
+6093,44,5,82,0,42,-20,38,41,2,1
+6094,42,4,81,0,42,0,39,40,0,1
+6095,44,0,86,0,44,2,43,42,0,1
+6096,46,-5,82,0,46,0,36,35,0,1
+6097,37,0,95,0,8,-21,58,87,30,1
+6098,54,0,83,4,54,0,29,29,0,1
+6099,51,-5,79,0,50,-18,28,30,2,1
+6100,56,0,77,0,-18,1,21,95,74,4
+6101,55,0,98,0,42,0,42,57,14,4
+6102,37,0,77,-1,38,16,39,38,0,1
+6103,42,-3,82,0,42,0,40,41,0,1
+6104,56,0,81,0,-10,-22,25,92,66,4
+6105,55,0,78,0,44,-24,23,34,12,4
+6106,37,0,105,0,24,4,68,82,14,1
+6107,37,-2,79,6,36,-22,42,43,2,1
+6108,37,0,84,0,18,-26,47,66,18,1
+6109,56,0,78,0,10,-10,22,68,46,4
+6110,44,-2,81,0,44,7,37,37,0,1
+6111,41,0,87,1,42,27,46,46,0,1
+6112,51,0,79,0,52,22,28,27,0,1
+6113,37,0,83,7,-2,0,46,85,40,1
+6114,44,3,83,0,44,0,38,39,0,1
+6115,43,-1,86,0,42,-10,42,44,2,1
+6116,55,0,77,-7,30,0,21,46,24,4
+6117,37,0,79,0,20,14,42,58,16,1
+6118,40,-5,84,0,38,0,45,46,2,1
+6119,37,0,106,4,36,0,69,70,2,1
+6120,42,0,83,4,42,0,42,42,0,1
+6121,51,2,79,6,52,11,27,27,0,1
+6122,56,0,76,0,-14,-16,20,92,72,4
+6123,37,0,93,0,12,15,56,81,24,1
+6124,54,-2,86,-2,54,-3,32,32,0,1
+6125,47,0,86,-2,46,-4,40,40,0,1
+6126,37,0,79,0,18,-21,43,61,18,1
+6127,37,0,76,-1,34,0,40,43,2,1
+6128,37,0,84,3,24,-7,47,61,14,1
+6129,48,0,83,0,46,-3,35,37,2,1
+6130,49,0,77,0,46,-16,29,31,2,1
+6131,44,2,86,0,44,16,42,42,0,1
+6132,48,1,86,0,46,0,38,40,2,1
+6133,53,3,102,6,54,2,49,48,0,1
+6134,44,1,77,0,44,6,33,34,0,1
+6135,76,4,81,2,-40,12,5,122,118,5
+6136,56,-1,96,7,44,11,40,52,12,4
+6137,47,0,81,6,46,0,34,35,0,1
+6138,43,1,76,0,42,-5,32,34,2,1
+6139,55,0,96,0,46,8,41,50,8,4
+6140,49,-1,83,0,50,9,34,34,0,1
+6141,85,0,88,-3,2,0,3,85,82,5
+6142,38,0,92,0,12,4,54,79,24,1
+6143,56,0,97,0,46,15,41,50,10,4
+6144,50,-2,101,-2,50,0,51,52,0,1
+6145,45,-3,74,0,44,0,29,30,2,1
+6146,37,0,77,0,18,-5,40,59,18,1
+6147,55,-1,97,0,42,-1,42,56,14,4
+6148,101,4,102,0,70,-19,1,32,32,5
+6149,43,0,86,-10,42,-20,42,44,2,1
+6150,41,-3,76,0,38,-22,35,37,2,1
+6151,37,-1,105,0,36,20,68,69,2,1
+6152,44,-3,82,0,44,4,38,38,0,1
+6153,51,0,79,6,52,4,27,27,0,1
+6154,37,4,79,2,16,0,41,63,22,1
+6155,43,0,85,7,42,-6,42,44,2,1
+6156,37,0,97,0,24,-2,60,73,14,1
+6157,46,-1,86,-1,44,-24,41,42,2,1
+6158,56,0,95,0,52,24,39,43,4,4
+6159,37,0,105,0,20,-20,68,84,16,1
+6160,37,0,104,-4,16,-17,67,89,22,1
+6161,64,0,113,1,62,-6,49,51,2,1
+6162,37,0,84,0,18,-2,47,66,18,1
+6163,53,2,81,0,52,-9,28,29,2,1
+6164,37,0,80,0,36,-22,43,44,2,1
+6165,37,0,75,0,30,9,38,44,6,1
+6166,56,-1,84,0,54,-7,28,30,2,1
+6167,37,0,77,0,16,24,40,61,22,1
+6168,47,-1,82,0,46,0,35,35,0,1
+6169,55,6,74,2,-4,-20,18,79,60,4
+6170,49,0,87,6,50,18,38,38,0,1
+6171,37,-1,79,3,0,0,42,79,36,1
+6172,62,-3,112,0,62,0,50,50,0,1
+6173,56,-5,96,0,56,0,40,39,0,1
+6174,37,0,78,0,26,1,41,52,12,1
+6175,37,0,93,0,12,12,56,81,24,1
+6176,56,0,81,6,-22,0,25,105,80,4
+6177,37,0,97,0,26,20,60,71,12,1
+6178,53,0,86,-5,54,11,33,32,0,1
+6179,37,-4,81,1,36,0,44,44,0,1
+6180,37,0,82,0,26,5,45,56,12,1
+6181,57,-2,87,0,56,0,30,30,0,1
+6182,37,-1,79,-6,12,-15,42,66,24,1
+6183,55,0,82,0,54,5,26,28,2,1
+6184,37,0,104,-6,18,13,67,86,18,1
+6185,55,0,96,-3,44,0,41,52,12,4
+6186,56,5,83,0,56,1,26,26,0,1
+6187,44,-1,85,0,44,4,41,41,0,1
+6188,42,4,76,0,42,0,34,34,0,1
+6189,44,-4,80,-7,44,2,36,36,0,1
+6190,37,0,84,0,24,-30,47,61,14,1
+6191,52,-5,81,-5,52,0,29,29,0,1
+6192,41,3,79,0,42,27,38,37,0,1
+6193,106,0,107,0,72,2,1,35,34,5
+6194,37,0,79,0,20,7,42,58,16,1
+6195,39,0,83,3,38,0,45,44,0,1
+6196,55,-1,97,-3,46,-5,41,50,8,4
+6197,38,-5,78,0,-2,-1,40,81,40,1
+6198,45,-1,88,0,46,15,42,41,0,1
+6199,55,0,93,0,42,-4,37,51,14,4
+6200,37,0,80,0,36,2,43,44,0,1
+6201,48,-5,89,0,46,0,41,42,2,1
+6202,48,-2,80,0,46,-3,32,34,2,1
+6203,56,0,97,0,44,-5,41,53,12,4
+6204,37,0,106,1,30,0,69,75,6,1
+6205,42,-1,84,0,42,0,42,43,2,1
+6206,48,0,80,0,46,-3,32,34,2,1
+6207,37,0,103,0,30,21,66,72,6,1
+6208,44,0,75,-1,44,7,31,31,0,1
+6209,37,0,92,0,24,31,55,69,14,1
+6210,42,0,81,-1,42,0,40,40,0,1
+6211,39,0,80,5,38,0,41,41,0,1
+6212,37,0,79,-7,0,0,42,79,36,1
+6213,37,0,106,2,28,0,69,77,8,1
+6214,40,0,86,-7,38,0,45,47,2,1
+6215,44,0,83,0,42,-15,40,42,2,1
+6216,48,-1,89,0,46,-3,41,42,2,1
+6217,53,0,86,0,54,9,33,32,0,1
+6218,37,5,79,0,34,0,42,45,4,1
+6219,55,10,95,-1,50,0,41,46,6,4
+6220,37,0,106,0,26,21,68,80,12,1
+6221,37,0,82,0,38,22,45,43,0,1
+6222,37,0,90,0,38,20,52,51,0,1
+6223,41,2,85,8,38,-19,44,46,2,1
+6224,50,0,87,-1,50,-2,37,38,0,1
+6225,46,1,86,0,44,-28,40,42,2,1
+6226,37,0,90,0,34,25,53,57,4,1
+6227,37,0,77,-1,-18,-1,40,95,54,1
+6228,52,0,81,0,52,-6,29,30,0,1
+6229,41,5,86,0,38,0,46,48,2,1
+6230,43,-4,76,0,44,12,33,32,0,1
+6231,54,0,79,0,54,0,25,24,0,1
+6232,55,1,77,0,54,0,22,23,0,1
+6233,45,-2,82,0,44,-11,37,38,2,1
+6234,49,2,90,0,50,1,41,41,0,1
+6235,56,0,96,0,42,24,40,55,14,4
+6236,49,0,81,0,50,5,32,32,0,1
+6237,55,-1,78,-6,0,-19,23,78,56,4
+6238,37,0,77,0,34,-27,39,43,4,1
+6239,77,4,81,0,-40,0,4,123,118,5
+6240,55,0,98,1,50,0,42,49,6,4
+6241,46,4,102,0,46,8,57,56,0,1
+6242,79,-4,83,-2,-32,509,4,117,112,5
+6243,55,0,77,0,26,-20,22,52,30,4
+6244,45,1,80,0,44,0,35,36,0,1
+6245,81,-2,86,0,-22,0,4,109,104,5
+6246,37,0,81,0,30,-20,45,50,6,1
+6247,38,0,102,0,34,-9,65,69,4,1
+6248,47,4,81,0,46,0,35,35,0,1
+6249,46,0,83,-6,46,1,37,36,0,1
+6250,56,1,87,0,54,-13,31,33,2,1
+6251,54,5,80,0,54,0,26,26,0,1
+6252,53,-2,86,0,52,-23,33,34,2,1
+6253,41,0,78,1,42,0,37,37,0,1
+6254,56,0,96,0,50,-24,40,47,6,4
+6255,55,-2,98,0,52,2,42,46,4,4
+6256,47,4,83,0,46,0,36,36,0,1
+6257,43,-4,75,0,44,14,32,31,0,1
+6258,37,0,76,-4,28,-21,39,47,8,1
+6259,41,0,87,3,38,-12,46,48,2,1
+6260,41,-4,79,0,42,0,38,37,0,1
+6261,44,3,80,-1,44,0,36,36,0,1
+6262,37,0,83,0,0,5,46,83,36,1
+6263,56,1,97,-1,52,-22,41,46,4,4
+6264,55,0,77,0,-24,6,22,103,82,4
+6265,55,0,79,0,12,3,23,66,42,4
+6266,45,-2,82,-1,44,-17,37,38,2,1
+6267,86,2,89,0,2,-2,3,86,84,5
+6268,46,0,76,-4,46,0,29,29,0,1
+6269,50,-2,83,0,50,0,32,33,2,1
+6270,52,0,86,0,54,25,33,32,0,1
+6271,44,3,83,0,44,22,40,39,0,1
+6272,59,1,86,3,56,-6,28,30,2,1
+6273,45,1,86,3,44,0,41,42,2,1
+6274,46,2,79,-5,46,0,33,32,0,1
+6275,52,2,88,0,52,-3,35,36,0,1
+6276,45,0,86,0,44,-21,40,42,2,1
+6277,43,0,87,6,42,0,44,46,2,1
+6278,51,0,82,0,50,-30,31,33,2,1
+6279,55,0,77,-5,-22,0,22,100,78,4
+6280,56,-2,96,-4,52,0,40,44,4,4
+6281,104,0,105,-4,70,-24,1,35,34,5
+6282,40,0,77,-6,38,0,37,38,2,1
+6283,37,0,76,0,24,31,39,52,14,1
+6284,37,0,80,0,36,17,43,44,0,1
+6285,44,1,83,0,44,12,39,39,0,1
+6286,37,0,78,0,36,-13,41,42,2,1
+6287,56,0,92,0,52,0,36,40,4,4
+6288,66,0,109,0,68,6,43,42,0,1
+6289,48,0,88,-6,46,0,39,41,2,1
+6290,46,0,81,8,46,3,35,35,0,1
+6291,43,0,76,5,42,-4,33,35,2,1
+6292,37,0,78,-1,16,11,41,63,22,1
+6293,37,0,80,-1,26,-14,43,54,12,1
+6294,45,0,79,-1,44,-25,33,35,2,1
+6295,55,1,80,0,54,0,25,26,0,1
+6296,56,-3,88,0,54,-23,32,33,2,1
+6297,37,0,81,6,36,0,44,45,0,1
+6298,46,-2,100,0,46,0,54,53,0,1
+6299,53,4,91,0,54,4,38,37,0,1
+6300,44,-1,86,0,44,10,43,42,0,1
+6301,37,0,76,0,34,-2,40,43,2,1
+6302,41,2,83,0,42,8,42,42,0,1
+6303,46,-2,109,1,46,0,63,63,0,1
+6304,37,0,79,-2,10,0,43,69,26,1
+6305,37,-4,82,0,36,-23,45,46,2,1
+6306,37,0,77,3,34,-4,40,43,2,1
+6307,41,-2,78,-1,42,-2,37,37,0,1
+6308,57,0,86,0,56,0,30,30,0,1
+6309,56,1,80,0,20,-9,24,59,36,4
+6310,104,0,104,-6,70,0,1,35,34,5
+6311,56,0,97,0,46,0,41,50,10,4
+6312,43,0,77,0,42,-9,34,35,2,1
+6313,45,0,77,0,46,14,32,31,0,1
+6314,37,0,95,0,26,-5,58,70,12,1
+6315,41,0,88,3,38,-5,47,49,2,1
+6316,54,0,84,2,54,0,30,30,0,1
+6317,56,3,84,0,56,0,28,28,0,1
+6318,41,0,82,0,42,13,41,41,0,1
+6319,37,0,79,0,12,-7,42,66,24,1
+6320,37,0,76,0,36,10,39,39,0,1
+6321,37,0,77,7,36,0,40,41,0,1
+6322,41,-1,77,0,42,3,36,35,0,1
+6323,55,-2,78,0,54,0,23,24,0,1
+6324,56,0,78,0,8,31,22,70,48,4
+6325,38,0,92,0,24,31,54,69,14,1
+6326,43,-1,79,-3,44,-12,36,35,0,1
+6327,43,0,79,-4,42,0,35,37,2,1
+6328,38,2,76,0,38,8,38,37,0,1
+6329,101,1,102,5,72,8,1,30,28,5
+6330,48,2,79,0,46,0,31,33,2,1
+6331,38,0,105,-5,38,0,67,66,0,1
+6332,37,0,77,0,16,19,40,61,22,1
+6333,83,0,86,-4,-4,-12,3,91,88,5
+6334,51,0,83,0,50,-12,32,33,2,1
+6335,37,0,82,0,8,0,45,74,30,1
+6336,84,0,88,0,-2,-8,3,90,88,5
+6337,37,0,79,0,10,3,42,68,26,1
+6338,48,3,83,0,46,0,35,37,2,1
+6339,37,0,81,0,38,14,43,42,0,1
+6340,41,-5,77,0,42,13,37,36,0,1
+6341,39,-10,78,0,0,6,39,78,40,1
+6342,48,0,85,-7,46,0,37,39,2,1
+6343,37,0,77,-5,36,16,40,41,0,1
+6344,45,3,81,2,44,0,37,37,0,1
+6345,55,0,96,0,50,21,41,47,6,4
+6346,56,1,87,3,56,12,31,30,0,1
+6347,56,2,98,0,46,26,42,51,10,4
+6348,101,0,102,0,72,12,1,30,28,5
+6349,56,0,97,1,50,-7,41,48,6,4
+6350,55,-1,85,0,54,-4,30,31,2,1
+6351,37,0,79,0,10,1,43,69,26,1
+6352,44,1,82,-3,44,0,38,38,0,1
+6353,102,0,102,-1,70,-7,1,33,32,5
+6354,39,-1,88,0,38,0,49,50,0,1
+6355,45,0,78,-1,44,-2,33,34,2,1
+6356,37,0,96,0,34,10,59,62,4,1
+6357,105,0,106,0,70,0,2,36,34,5
+6358,38,2,97,0,38,0,58,58,0,1
+6359,102,-2,104,0,72,12,1,31,30,5
+6360,45,-3,83,0,46,13,37,36,0,1
+6361,39,-3,100,0,38,0,62,62,0,1
+6362,66,0,109,0,64,-14,43,45,2,1
+6363,45,2,86,0,44,-7,41,42,2,1
+6364,37,0,79,-1,36,-10,42,43,2,1
+6365,41,-2,76,0,38,-24,35,37,2,1
+6366,37,0,78,-2,2,-6,41,75,34,1
+6367,37,0,76,0,24,31,39,53,14,1
+6368,50,0,84,-3,50,0,34,35,0,1
+6369,45,0,82,2,44,0,37,38,0,1
+6370,37,0,80,0,8,2,43,72,30,1
+6371,53,0,86,7,54,0,33,32,0,1
+6372,56,0,79,1,0,0,24,79,56,4
+6373,50,0,81,0,50,0,31,32,0,1
+6374,37,0,77,0,36,-3,40,41,2,1
+6375,37,0,103,-7,26,0,66,77,12,1
+6376,55,0,81,8,54,0,26,26,0,1
+6377,45,4,80,0,46,31,35,34,0,1
+6378,41,-1,81,0,42,13,41,40,0,1
+6379,55,0,96,0,44,-30,41,52,12,4
+6380,46,2,82,-4,46,6,36,35,0,1
+6381,43,0,83,2,42,0,39,41,2,1
+6382,52,5,88,2,52,0,36,36,0,1
+6383,43,-2,99,0,42,-11,56,58,2,1
+6384,37,0,97,0,12,1,59,84,24,1
+6385,46,0,108,4,46,1,62,61,0,1
+6386,37,0,81,0,8,-12,44,73,28,1
+6387,39,4,80,5,38,0,41,41,0,1
+6388,39,5,77,0,38,0,38,38,0,1
+6389,56,4,77,-4,44,0,22,34,12,4
+6390,48,0,106,0,50,26,58,57,0,1
+6391,46,0,77,5,46,1,32,31,0,1
+6392,42,5,76,0,42,0,34,35,0,1
+6393,45,4,81,0,46,28,36,35,0,1
+6394,46,0,76,4,46,1,30,30,0,1
+6395,37,0,76,-4,34,6,39,42,2,1
+6396,46,-1,84,-2,46,-4,38,38,0,1
+6397,55,0,82,0,-12,-11,26,95,68,4
+6398,55,-1,96,-3,50,-21,41,47,6,4
+6399,82,0,87,4,-40,1,5,128,124,5
+6400,46,0,87,0,46,-1,41,41,0,1
+6401,55,-2,98,0,50,0,42,49,6,4
+6402,53,1,81,0,54,4,27,26,0,1
+6403,56,0,97,-4,50,0,41,48,6,4
+6404,37,-2,76,0,28,0,40,48,8,1
+6405,43,-2,85,8,42,0,42,44,2,1
+6406,43,-1,85,-6,42,-9,42,44,2,1
+6407,46,0,87,-2,46,0,41,41,0,1
+6408,47,3,83,8,46,0,36,37,0,1
+6409,49,0,85,0,50,2,36,36,0,1
+6410,56,0,77,0,16,-14,22,62,40,4
+6411,52,4,81,0,52,0,28,29,0,1
+6412,37,0,79,0,26,-3,43,54,10,1
+6413,37,5,80,0,20,5,43,59,16,1
+6414,55,0,77,0,18,16,22,59,38,4
+6415,46,0,92,4,46,0,45,45,0,1
+6416,50,-3,83,0,50,0,33,34,2,1
+6417,59,0,86,-1,56,-10,27,29,2,1
+6418,53,0,86,0,52,-12,33,35,2,1
+6419,44,6,93,0,44,2,49,50,0,1
+6420,87,2,89,0,8,0,2,81,80,5
+6421,55,-4,82,1,54,0,27,28,0,1
+6422,37,1,90,0,28,29,53,62,8,1
+6423,37,-1,80,0,-2,0,43,83,40,1
+6424,43,0,83,0,42,-9,39,41,2,1
+6425,55,0,77,0,-28,-4,21,105,84,4
+6426,50,4,106,0,50,0,56,57,0,1
+6427,37,-1,76,0,36,-25,39,40,2,1
+6428,44,0,87,0,42,-30,43,46,2,1
+6429,55,0,80,0,-2,5,25,83,58,4
+6430,55,0,97,0,46,5,41,50,8,4
+6431,54,0,88,0,54,0,34,33,0,1
+6432,45,-2,89,2,44,0,44,45,0,1
+6433,53,-3,108,0,52,-15,55,56,2,1
+6434,44,2,85,0,42,-28,41,44,2,1
+6435,55,0,78,0,6,9,23,73,50,4
+6436,56,0,96,8,50,0,40,47,6,4
+6437,42,2,86,0,42,0,45,45,0,1
+6438,55,0,98,0,52,12,42,46,4,4
+6439,56,0,96,0,50,-10,40,47,6,4
+6440,37,0,83,0,6,3,46,78,32,1
+6441,55,0,79,0,8,-12,23,71,48,4
+6442,41,0,75,0,38,-26,34,36,2,1
+6443,85,0,89,0,2,-6,4,86,82,5
+6444,48,0,83,0,46,-11,34,36,2,1
+6445,37,0,77,0,6,31,40,72,32,1
+6446,47,0,76,0,46,-1,30,30,0,1
+6447,56,3,95,0,56,4,39,39,0,1
+6448,51,0,84,0,50,-28,33,35,2,1
+6449,47,-5,88,0,46,0,41,41,0,1
+6450,55,-2,96,3,52,0,41,44,4,4
+6451,43,0,85,-7,42,0,42,44,2,1
+6452,55,-1,91,-2,-4,1,35,96,60,4
+6453,57,1,97,6,56,0,40,40,0,1
+6454,37,-1,100,-3,30,-6,64,69,6,1
+6455,56,0,95,0,42,1,40,54,14,4
+6456,37,0,76,0,30,13,39,45,6,1
+6457,53,0,83,0,52,0,30,32,2,1
+6458,37,-3,107,0,36,0,70,71,0,1
+6459,37,0,76,0,18,-12,40,58,18,1
+6460,80,4,84,0,-42,-20,4,128,124,5
+6461,50,-4,77,0,50,0,28,28,0,1
+6462,55,0,78,-2,42,-1,23,37,14,4
+6463,58,0,84,-2,56,0,27,28,0,1
+6464,55,3,83,-5,54,0,27,28,2,1
+6465,55,0,93,0,2,-5,38,91,52,4
+6466,43,0,84,-4,42,0,41,43,2,1
+6467,46,0,81,-1,46,0,35,34,0,1
+6468,56,0,96,0,52,-2,40,44,4,4
+6469,48,0,94,0,46,-3,46,48,2,1
+6470,55,0,77,-2,24,-5,21,54,32,4
+6471,45,0,83,-2,44,-11,37,39,2,1
+6472,51,0,86,0,50,-7,36,37,2,1
+6473,37,0,95,-2,16,-4,58,80,22,1
+6474,37,0,78,0,20,21,41,57,16,1
+6475,55,3,77,0,26,-16,22,52,30,4
+6476,84,1,88,0,-2,0,3,90,88,5
+6477,42,-4,83,0,42,0,40,41,2,1
+6478,45,0,102,0,44,-6,57,58,2,1
+6479,71,-5,75,-8,-40,2,4,116,112,5
+6480,43,0,86,-3,44,27,42,42,0,1
+6481,56,0,76,0,-4,141,20,81,62,4
+6482,41,-1,83,0,42,7,42,41,0,1
+6483,52,-1,84,0,52,-2,31,32,0,1
+6484,56,0,95,-4,44,0,39,51,12,4
+6485,54,0,85,0,54,0,31,31,0,1
+6486,87,0,89,0,8,0,2,81,80,5
+6487,51,1,84,0,52,3,33,32,0,1
+6488,50,-1,101,-1,50,0,51,52,0,1
+6489,49,0,88,4,50,20,39,39,0,1
+6490,52,3,80,6,52,0,28,28,0,1
+6491,37,0,94,0,10,-3,57,84,26,1
+6492,45,-5,107,0,44,-24,62,63,2,1
+6493,48,0,79,2,46,0,31,32,2,1
+6494,37,0,95,-1,26,0,58,70,12,1
+6495,38,0,77,0,38,7,39,38,0,1
+6496,37,0,78,0,10,-28,41,68,26,1
+6497,53,4,81,0,54,4,28,27,0,1
+6498,50,-2,79,0,50,0,28,30,2,1
+6499,50,-5,101,0,50,0,52,52,0,1
+6500,56,4,76,0,-18,-12,20,94,74,4
+6501,45,4,86,0,44,-7,41,42,2,1
+6502,80,0,84,-2,-36,0,4,120,116,5
+6503,82,0,86,-1,-10,15,3,96,92,5
+6504,37,0,86,1,36,0,50,50,0,1
+6505,49,-1,78,0,50,10,29,29,0,1
+6506,37,0,83,0,34,-20,46,49,2,1
+6507,81,0,84,0,-20,-13,4,105,102,5
+6508,45,-1,87,-6,44,0,42,43,2,1
+6509,45,1,84,-4,44,0,40,41,0,1
+6510,51,0,84,0,50,-7,33,35,2,1
+6511,37,0,74,0,30,-19,37,43,6,1
+6512,44,0,82,-1,44,21,38,38,0,1
+6513,37,-2,81,-6,36,-11,44,44,0,1
+6514,37,0,79,0,0,0,42,79,36,1
+6515,37,0,91,0,18,2,53,73,20,1
+6516,58,0,86,-1,56,-2,28,30,2,1
+6517,37,0,76,-1,20,-2,40,55,16,1
+6518,37,0,81,1,28,-26,44,52,8,1
+6519,39,0,78,0,38,-1,39,39,0,1
+6520,45,0,82,-59,44,0,37,38,0,1
+6521,41,0,81,0,42,1,40,40,0,1
+6522,57,0,81,-3,56,0,24,24,0,1
+6523,37,0,77,0,34,0,40,43,2,1
+6524,46,-1,108,-7,46,0,62,61,0,1
+6525,46,0,81,0,46,15,35,34,0,1
+6526,41,0,76,-6,42,9,34,34,0,1
+6527,37,-1,80,-1,20,18,43,59,16,1
+6528,41,-1,89,0,38,-11,48,50,2,1
+6529,41,0,83,5,38,-6,42,44,2,1
+6530,41,4,79,0,38,-22,38,41,2,1
+6531,55,0,96,0,44,11,41,52,12,4
+6532,41,0,88,0,38,-6,48,50,2,1
+6533,56,0,79,0,10,21,23,68,46,4
+6534,45,0,83,0,44,-4,38,39,2,1
+6535,46,1,83,0,46,6,37,36,0,1
+6536,47,0,108,3,46,0,61,62,0,1
+6537,45,-1,83,0,44,17,38,39,0,1
+6538,56,1,82,0,56,11,26,25,0,1
+6539,83,0,87,0,-40,8,4,128,124,5
+6540,44,1,77,0,44,5,34,34,0,1
+6541,47,0,83,5,46,0,36,37,0,1
+6542,71,-35,107,0,60,-26,35,47,12,3
+6543,43,0,90,4,42,0,46,48,2,1
+6544,53,-5,80,0,54,10,27,26,0,1
+6545,41,3,79,0,38,-26,38,41,2,1
+6546,79,0,83,0,-38,0,4,122,118,5
+6547,55,0,95,-1,36,-9,39,59,20,4
+6548,43,4,93,0,42,0,51,52,2,1
+6549,37,0,76,343,20,0,40,55,16,1
+6550,46,1,86,5,46,-1,40,39,0,1
+6551,55,0,82,0,-24,-30,26,108,82,4
+6552,49,-2,81,0,46,-22,33,35,2,1
+6553,37,0,104,0,24,9,67,81,14,1
+6554,43,2,86,0,42,0,44,45,2,1
+6555,55,-6,75,-22,0,0,20,75,54,4
+6556,53,0,88,2,54,0,35,34,0,1
+6557,41,0,76,0,42,0,35,35,0,1
+6558,37,0,83,0,0,6,47,83,36,1
+6559,44,0,77,0,44,4,34,34,0,1
+6560,85,3,88,-2,-2,0,3,90,88,5
+6561,44,0,83,-1,44,0,39,39,0,1
+6562,48,0,81,3,46,0,32,34,2,1
+6563,55,-1,79,-5,26,-9,23,53,30,4
+6564,37,0,77,4,34,0,40,44,4,1
+6565,53,-5,82,0,54,3,29,28,0,1
+6566,46,0,88,2,46,13,42,41,0,1
+6567,54,0,81,1,54,0,27,27,0,1
+6568,53,0,81,0,52,-20,28,30,2,1
+6569,55,0,77,0,8,-24,21,69,48,4
+6570,41,0,77,0,38,-9,36,38,2,1
+6571,37,0,77,0,-20,-30,41,98,58,1
+6572,37,-4,75,0,28,8,38,46,8,1
+6573,46,1,84,-4,44,-22,39,41,2,1
+6574,37,0,76,0,24,-27,39,52,14,1
+6575,42,5,89,0,42,0,47,48,2,1
+6576,50,-3,101,-4,50,0,51,52,0,1
+6577,55,0,95,0,52,8,40,44,4,4
+6578,55,-4,83,0,54,0,29,29,0,1
+6579,55,0,98,-2,42,0,42,57,14,4
+6580,41,0,88,0,42,5,47,46,0,1
+6581,37,-3,104,0,38,0,67,66,0,1
+6582,42,0,86,-7,42,0,44,44,0,1
+6583,55,0,77,0,-30,-9,22,108,86,4
+6584,37,0,83,0,8,4,46,75,30,1
+6585,38,0,82,0,36,-23,44,46,2,1
+6586,37,0,76,-3,20,-3,39,55,16,1
+6587,41,0,81,3,38,-7,41,43,2,1
+6588,55,0,79,1,12,-25,23,66,42,4
+6589,46,0,85,-4,46,8,39,39,0,1
+6590,45,-2,88,0,44,-15,42,44,2,1
+6591,41,0,83,0,38,-20,42,44,2,1
+6592,56,0,78,0,8,27,22,70,48,4
+6593,106,1,108,0,70,0,1,38,36,5
+6594,46,0,79,5,44,-30,34,35,2,1
+6595,55,0,84,6,54,-3,29,30,0,1
+6596,55,0,95,-1,36,-2,39,59,20,4
+6597,46,0,81,0,46,3,35,35,0,1
+6598,51,-4,86,0,52,15,36,35,0,1
+6599,48,5,85,0,46,0,37,39,2,1
+6600,40,3,77,0,38,0,37,38,2,1
+6601,56,0,79,2,16,27,23,63,40,4
+6602,55,0,92,4,-4,4,36,97,60,4
+6603,37,0,83,0,30,-9,46,52,6,1
+6604,45,1,83,-6,44,-9,38,39,2,1
+6605,37,-3,80,0,18,-2,43,62,18,1
+6606,40,-1,77,3,38,0,38,39,2,1
+6607,37,0,81,0,28,0,44,52,8,1
+6608,62,0,109,3,60,0,47,49,2,1
+6609,41,-2,108,1,42,0,67,67,0,1
+6610,49,0,86,0,50,16,37,37,0,1
+6611,49,0,106,-3,50,6,57,57,0,1
+6612,43,0,79,-1,42,-13,35,37,2,1
+6613,44,0,76,-1,44,-2,31,32,0,1
+6614,106,5,108,3,70,0,1,38,36,5
+6615,37,2,79,6,0,0,42,79,38,1
+6616,56,-1,95,-7,44,-4,40,51,12,4
+6617,37,0,76,-1,16,6,39,61,22,1
+6618,41,-1,97,0,38,-28,56,59,2,1
+6619,102,0,102,-2,70,-10,1,33,32,5
+6620,49,2,79,2,50,30,30,30,0,1
+6621,52,0,86,0,54,31,34,32,0,1
+6622,56,-4,83,0,56,7,27,26,0,1
+6623,41,-1,82,0,42,7,41,41,0,1
+6624,37,0,79,0,8,-14,42,71,28,1
+6625,37,0,77,8,28,6,40,49,8,1
+6626,41,0,89,7,42,27,48,48,0,1
+6627,56,-2,99,5,38,-2,43,60,18,4
+6628,55,0,77,0,44,20,22,34,12,4
+6629,80,3,83,-2,-28,0,3,112,108,5
+6630,54,1,89,0,54,0,35,35,0,1
+6631,49,0,95,-2,50,2,46,46,0,1
+6632,56,-1,96,0,54,2,40,42,2,1
+6633,78,0,81,-3,-40,0,4,123,120,5
+6634,41,-4,82,0,42,0,41,41,0,1
+6635,56,0,79,0,16,23,23,63,40,4
+6636,57,3,81,0,56,0,25,24,0,1
+6637,39,4,80,-7,38,0,41,41,0,1
+6638,56,5,97,0,42,2,41,56,14,4
+6639,56,0,86,0,54,-26,30,32,2,1
+6640,55,0,79,-2,20,-4,24,59,34,4
+6641,55,0,95,1,50,0,40,46,6,4
+6642,37,0,107,0,28,15,69,78,8,1
+6643,55,-2,80,0,-4,14,25,85,60,4
+6644,56,2,99,0,46,-5,42,52,10,4
+6645,55,0,77,0,-10,-10,21,87,66,4
+6646,37,0,103,0,30,5,66,72,6,1
+6647,49,-1,89,0,50,19,40,40,0,1
+6648,55,0,81,0,54,-4,25,26,2,1
+6649,53,-2,78,0,54,0,25,24,0,1
+6650,39,0,79,-1,38,-1,41,41,0,1
+6651,37,0,82,0,-2,31,45,85,40,1
+6652,41,-1,80,0,38,-15,39,41,2,1
+6653,37,0,77,0,34,7,40,43,4,1
+6654,54,3,83,0,54,0,28,28,0,1
+6655,56,1,86,0,54,-2,30,32,2,1
+6656,41,1,86,0,42,5,45,44,0,1
+6657,53,-5,108,0,52,-24,55,56,2,1
+6658,37,0,93,0,10,-1,56,83,28,1
+6659,55,0,77,0,-22,0,22,101,78,4
+6660,55,-1,77,-3,44,0,22,34,12,4
+6661,37,0,81,-1,20,0,44,61,16,1
+6662,55,0,77,0,12,-30,22,65,42,4
+6663,55,0,77,-1,-28,1,21,105,84,4
+6664,37,0,79,8,24,0,42,56,14,1
+6665,55,0,76,0,-14,12,21,92,70,4
+6666,45,0,85,2,46,15,40,39,0,1
+6667,45,-4,77,0,44,0,33,34,0,1
+6668,44,1,87,1,44,3,43,43,0,1
+6669,37,0,79,-1,12,-3,43,66,24,1
+6670,56,0,92,0,52,6,36,40,4,4
+6671,52,-1,84,0,52,0,32,32,0,1
+6672,49,3,81,0,50,5,32,32,0,1
+6673,37,0,76,0,30,-22,39,45,6,1
+6674,46,-5,88,0,46,0,41,41,0,1
+6675,38,5,77,0,38,13,39,38,0,1
+6676,56,0,96,0,52,-30,40,44,4,4
+6677,52,-1,81,0,52,-1,29,30,0,1
+6678,55,-4,79,0,54,0,24,24,0,1
+6679,56,-2,81,0,56,6,25,24,0,1
+6680,42,4,85,0,42,0,43,44,2,1
+6681,102,0,103,0,70,-7,1,33,32,5
+6682,41,1,75,0,38,-24,34,36,2,1
+6683,51,0,86,0,52,0,35,35,0,1
+6684,37,0,79,0,28,8,42,50,8,1
+6685,55,0,87,4,54,0,32,33,2,1
+6686,82,-5,86,-2,-4,-17,3,91,88,5
+6687,42,0,77,7,42,0,35,36,2,1
+6688,46,0,77,0,44,-24,32,34,2,1
+6689,37,0,81,0,38,27,43,42,0,1
+6690,37,-2,77,0,0,27,40,77,36,1
+6691,56,0,97,4,52,25,41,45,4,4
+6692,47,1,83,0,46,0,36,37,0,1
+6693,43,-2,106,0,42,-10,62,64,2,1
+6694,37,0,76,-4,18,-2,39,57,18,1
+6695,43,0,87,0,42,-13,44,46,2,1
+6696,37,-2,83,5,34,0,46,49,4,1
+6697,44,0,86,-4,44,4,43,42,0,1
+6698,37,0,103,0,30,1,66,72,6,1
+6699,37,0,83,4,34,0,46,49,4,1
+6700,37,0,75,0,34,-14,38,41,2,1
+6701,37,0,76,0,34,9,39,42,2,1
+6702,56,0,81,0,-2,-2,25,83,58,4
+6703,51,-1,109,0,50,-7,59,60,2,1
+6704,44,7,79,0,42,0,35,37,2,1
+6705,37,0,76,0,16,-9,39,61,22,1
+6706,49,0,87,-1,50,8,38,38,0,1
+6707,58,0,86,-4,56,0,29,30,0,1
+6708,56,2,95,0,54,13,39,41,2,1
+6709,37,0,77,0,34,8,40,43,2,1
+6710,37,0,95,-2,24,-23,58,72,14,1
+6711,45,0,83,-3,44,-4,38,39,2,1
+6712,41,0,77,0,42,15,36,35,0,1
+6713,37,0,95,-7,12,-8,58,82,24,1
+6714,46,0,88,0,46,0,43,42,0,1
+6715,37,0,106,13,26,-2,69,80,12,1
+6716,38,1,86,0,38,8,49,48,0,1
+6717,55,0,86,0,56,30,31,30,0,1
+6718,46,1,88,0,46,0,41,41,0,1
+6719,81,-1,85,0,-40,2,4,126,122,5
+6720,37,0,76,0,24,-14,40,53,14,1
+6721,47,0,90,8,46,0,44,44,0,1
+6722,55,0,76,0,-18,-23,21,94,74,4
+6723,38,1,76,0,36,-15,38,39,2,1
+6724,37,0,83,2,8,-2,47,75,28,1
+6725,45,-2,82,0,44,-14,37,38,2,1
+6726,38,1,93,-1,38,0,55,55,0,1
+6727,43,0,89,0,42,-16,46,48,2,1
+6728,47,1,83,-3,46,0,36,36,0,1
+6729,56,0,97,0,50,-25,41,48,6,4
+6730,85,0,88,0,2,-16,3,86,82,5
+6731,46,0,77,0,46,1,31,30,0,1
+6732,55,-1,99,0,50,8,43,49,6,4
+6733,37,0,83,0,16,20,46,67,22,1
+6734,42,0,87,0,42,0,45,46,2,1
+6735,56,0,79,0,56,12,23,22,0,1
+6736,47,0,76,-1,46,-2,30,30,0,1
+6737,55,0,98,0,42,-6,42,57,14,4
+6738,41,4,83,0,42,7,41,41,0,1
+6739,37,0,78,0,10,-14,41,68,26,1
+6740,37,-5,82,0,36,-1,45,46,0,1
+6741,85,0,88,0,0,-23,3,88,86,5
+6742,51,-4,81,0,52,0,30,30,0,1
+6743,37,0,79,0,16,18,42,63,22,1
+6744,37,0,76,0,34,27,39,42,2,1
+6745,37,0,80,0,-2,-2,43,83,40,1
+6746,43,-5,89,0,44,10,46,45,0,1
+6747,37,0,78,-5,6,0,41,73,32,1
+6748,38,4,80,0,36,-6,42,44,2,1
+6749,56,0,76,0,-12,7,20,89,68,4
+6750,105,1,108,0,70,0,2,38,36,5
+6751,37,0,76,1,36,0,40,40,0,1
+6752,49,0,110,-4,46,-2,61,64,2,1
+6753,41,2,106,-2,42,7,65,65,0,1
+6754,56,0,97,2,46,1,41,50,10,4
+6755,56,0,97,0,46,5,41,50,10,4
+6756,43,-2,108,0,42,-17,64,66,2,1
+6757,45,0,82,3,44,0,37,38,2,1
+6758,37,-1,79,1,0,0,42,79,36,1
+6759,37,0,77,0,28,-16,40,48,8,1
+6760,39,0,107,-4,38,0,68,68,0,1
+6761,46,0,87,-11,46,-3,41,41,0,1
+6762,57,1,79,0,56,0,22,22,0,1
+6763,37,0,76,2,30,-30,40,45,6,1
+6764,37,0,83,-7,30,0,46,52,6,1
+6765,43,1,76,-2,42,-3,33,35,2,1
+6766,49,0,86,2,46,-24,38,40,2,1
+6767,37,0,106,0,36,17,68,69,2,1
+6768,50,0,81,-1,50,-1,30,32,2,1
+6769,45,-5,81,0,46,6,35,34,0,1
+6770,53,0,102,3,54,6,49,48,0,1
+6771,37,0,81,0,8,-6,44,73,28,1
+6772,55,0,79,0,18,-22,23,61,38,4
+6773,56,-3,97,1,44,9,41,53,12,4
+6774,37,0,79,-1,36,-1,42,43,0,1
+6775,37,0,78,0,16,18,41,63,22,1
+6776,58,-2,91,0,56,0,33,34,2,1
+6777,40,-1,85,0,38,0,45,46,2,1
+6778,37,0,76,0,24,9,39,53,14,1
+6779,43,0,79,-2,42,0,36,37,2,1
+6780,55,0,77,0,-4,2,21,82,60,4
+6781,47,1,107,0,46,0,59,60,0,1
+6782,55,0,79,1,24,-8,23,55,32,4
+6783,55,0,77,0,42,20,22,36,14,4
+6784,44,1,76,0,42,-11,32,34,2,1
+6785,56,0,81,0,-10,-5,25,91,66,4
+6786,66,0,109,0,64,-9,43,45,2,1
+6787,37,0,78,0,18,-26,42,60,18,1
+6788,55,0,96,0,46,4,41,50,8,4
+6789,51,-1,91,0,50,-24,40,42,2,1
+6790,37,0,78,0,18,-1,41,60,18,1
+6791,37,0,83,0,-2,22,46,85,40,1
+6792,43,-4,76,0,42,-13,33,35,2,1
+6793,41,5,86,0,38,-17,45,48,2,1
+6794,47,-2,95,-4,46,0,48,48,0,1
+6795,56,0,86,0,54,-6,30,32,2,1
+6796,44,1,78,-2,44,0,34,34,0,1
+6797,46,-3,100,0,46,0,54,53,0,1
+6798,49,3,83,0,46,-3,34,37,2,1
+6799,50,5,86,-1,50,0,36,37,2,1
+6800,55,0,95,0,54,14,40,41,2,1
+6801,41,3,93,0,42,16,52,52,0,1
+6802,55,0,76,0,-18,-6,21,94,74,4
+6803,53,0,79,0,54,5,25,24,0,1
+6804,36,0,75,0,36,0,39,39,0,1
+6805,51,3,81,-7,52,17,30,30,0,1
+6806,45,0,85,4,46,24,40,39,0,1
+6807,37,0,95,0,28,1,58,67,8,1
+6808,39,-1,77,7,38,0,38,38,0,1
+6809,53,3,88,0,52,-6,35,36,2,1
+6810,56,-1,95,0,52,-7,40,44,4,4
+6811,55,0,96,-1,42,-2,41,55,14,4
+6812,44,1,86,0,44,3,43,42,0,1
+6813,43,0,83,0,42,-23,39,41,2,1
+6814,64,1532,106,-2,34,-35,42,72,30,6
+6815,38,0,93,0,30,11,55,62,8,1
+6816,37,0,75,0,36,17,37,39,2,1
+6817,50,0,81,-2,50,-3,30,32,2,1
+6818,37,0,93,0,10,19,55,82,28,1
+6819,41,2,83,0,42,29,42,42,0,1
+6820,44,0,81,1,44,11,37,37,0,1
+6821,55,-3,76,0,-18,-5,21,94,74,4
+6822,38,0,77,0,38,4,40,39,0,1
+6823,56,0,81,-1,-10,23,25,92,66,4
+6824,57,-5,79,0,56,0,22,22,0,1
+6825,56,0,96,0,52,-11,40,44,4,4
+6826,80,-1,84,1,-20,0,4,105,100,5
+6827,56,0,77,0,-14,-19,21,92,72,4
+6828,38,0,106,0,38,8,68,67,0,1
+6829,37,0,107,12,28,0,70,78,8,1
+6830,37,0,103,0,18,-9,66,85,20,1
+6831,37,0,78,0,8,-7,41,70,30,1
+6832,45,-2,87,-2,44,0,43,43,0,1
+6833,46,-2,87,6,46,0,41,41,0,1
+6834,43,-5,106,0,42,-9,62,64,2,1
+6835,49,5,77,0,46,-8,28,30,2,1
+6836,37,0,93,0,10,-16,56,83,26,1
+6837,41,4,82,0,42,10,41,41,0,1
+6838,37,0,77,0,18,13,40,59,18,1
+6839,46,0,88,-5,46,10,43,42,0,1
+6840,37,0,96,0,38,25,59,57,0,1
+6841,37,0,74,0,34,22,37,41,4,1
+6842,37,0,104,5,28,0,67,76,8,1
+6843,55,1,79,0,42,-4,24,37,14,4
+6844,38,-4,81,0,38,0,43,42,0,1
+6845,47,5,79,2,46,0,31,32,0,1
+6846,45,0,88,0,44,-10,42,44,2,1
+6847,51,1,81,7,50,0,30,32,2,1
+6848,41,0,79,0,42,7,38,38,0,1
+6849,37,-1,105,0,34,-15,68,71,4,1
+6850,55,0,95,0,44,6,40,51,12,4
+6851,41,0,79,-1,38,-16,38,40,2,1
+6852,37,0,76,0,18,-22,40,58,18,1
+6853,71,2,75,1,-42,-11,4,119,114,5
+6854,42,0,80,5,42,0,38,39,0,1
+6855,56,0,95,0,42,22,40,54,14,4
+6856,52,0,85,-7,52,0,33,33,0,1
+6857,41,0,89,0,38,-15,48,50,2,1
+6858,53,-1,83,0,54,14,30,29,0,1
+6859,46,0,77,0,44,-27,32,34,2,1
+6860,41,0,85,0,38,0,44,46,2,1
+6861,55,0,92,0,8,-2,37,84,48,4
+6862,55,-1,96,0,52,0,41,44,4,4
+6863,41,-5,76,0,42,8,35,34,0,1
+6864,50,-4,88,0,50,0,37,39,2,1
+6865,46,0,80,0,44,-30,34,36,2,1
+6866,55,0,92,0,30,5,36,61,24,4
+6867,66,0,109,0,64,-18,43,45,2,1
+6868,37,0,76,0,24,-19,39,52,14,1
+6869,42,1,83,8,42,0,42,42,0,1
+6870,43,0,88,0,42,-9,45,47,2,1
+6871,55,3,78,-6,42,-1,23,37,14,4
+6872,51,2,81,0,52,4,29,29,0,1
+6873,42,-2,79,0,42,0,36,37,2,1
+6874,44,0,77,0,44,5,34,34,0,1
+6875,47,0,80,-4,46,0,33,34,0,1
+6876,38,0,81,0,36,-15,43,44,2,1
+6877,37,0,105,0,36,12,68,69,2,1
+6878,37,0,76,0,28,4,39,48,8,1
+6879,37,0,77,1,34,6,40,43,2,1
+6880,48,-3,89,0,46,0,41,42,2,1
+6881,39,-2,106,0,38,0,66,67,0,1
+6882,37,0,80,2,18,0,43,62,18,1
+6883,56,0,96,8,34,0,40,62,22,4
+6884,83,0,86,0,-6,-14,3,94,90,5
+6885,43,-5,81,0,44,15,38,37,0,1
+6886,41,-1,108,-1,38,-14,67,69,2,1
+6887,41,0,79,0,42,4,38,38,0,1
+6888,43,0,82,-1,42,0,39,41,2,1
+6889,43,0,77,0,44,30,34,33,0,1
+6890,56,5,97,5,52,-3,40,45,4,4
+6891,37,0,81,3,38,19,44,43,0,1
+6892,45,0,86,0,46,24,40,39,0,1
+6893,46,0,88,2,44,-23,42,44,2,1
+6894,56,0,79,0,10,6,23,68,46,4
+6895,37,-2,107,-9,28,0,70,78,8,1
+6896,45,1,77,0,46,31,32,31,0,1
+6897,51,3,81,0,52,5,29,29,0,1
+6898,56,0,95,0,50,0,39,46,6,4
+6899,56,4,81,0,56,4,24,24,0,1
+6900,37,0,77,0,24,-30,40,54,14,1
+6901,46,0,77,0,44,-25,31,33,2,1
+6902,41,0,80,0,38,-11,39,41,2,1
+6903,37,0,79,-5,8,0,42,72,30,1
+6904,53,0,77,0,54,7,23,23,0,1
+6905,46,3,83,0,46,7,37,36,0,1
+6906,53,2,85,0,52,-8,32,33,2,1
+6907,56,0,96,1,38,-9,40,57,18,4
+6908,47,2,77,0,46,0,30,30,0,1
+6909,37,0,103,0,24,-20,66,80,14,1
+6910,37,0,76,0,26,-21,40,50,10,1
+6911,45,0,82,3,44,0,37,38,0,1
+6912,49,0,87,-3,50,0,38,38,0,1
+6913,45,-3,81,-1,44,0,36,37,2,1
+6914,45,0,80,0,46,24,35,34,0,1
+6915,37,0,100,0,30,-19,64,69,6,1
+6916,41,2,79,0,38,0,39,41,2,1
+6917,56,0,97,0,44,23,41,53,12,4
+6918,43,-1,79,1,42,0,36,37,2,1
+6919,53,0,84,0,54,7,30,30,0,1
+6920,51,0,82,0,50,-5,31,33,2,1
+6921,42,0,79,-3,42,0,36,37,2,1
+6922,37,0,104,8,24,0,66,80,14,1
+6923,51,0,84,0,50,-6,34,35,2,1
+6924,55,0,77,0,-20,-17,21,97,76,4
+6925,46,2,76,-1,46,0,30,30,0,1
+6926,41,-2,79,0,42,0,38,37,0,1
+6927,45,0,88,8,46,12,43,42,0,1
+6928,51,-2,82,0,50,-12,31,33,2,1
+6929,46,0,85,1,44,-29,39,41,2,1
+6930,55,0,79,0,18,-13,23,61,38,4
+6931,76,4,82,0,-42,-6,5,126,120,5
+6932,42,0,85,0,42,1,44,44,0,1
+6933,56,2,79,0,16,4,23,63,40,4
+6934,56,0,79,5,-22,0,24,103,80,4
+6935,81,0,84,-5,-14,0,3,99,96,5
+6936,37,0,77,0,30,-22,41,46,6,1
+6937,56,0,96,0,52,-17,40,44,4,4
+6938,53,0,88,0,52,-24,35,37,2,1
+6939,42,2,89,2,42,0,47,48,0,1
+6940,46,0,93,0,46,6,48,47,0,1
+6941,40,0,79,6,38,0,38,40,2,1
+6942,52,0,102,8,52,0,50,51,0,1
+6943,56,0,77,0,-18,6,21,95,74,4
+6944,44,-1,81,0,44,4,38,37,0,1
+6945,53,-3,81,0,52,-19,28,30,2,1
+6946,37,0,81,0,18,-22,44,63,18,1
+6947,45,0,85,0,46,11,40,39,0,1
+6948,54,0,88,-3,54,0,34,33,0,1
+6949,43,1,81,-3,42,0,38,40,2,1
+6950,103,-5,104,-1,70,0,1,35,34,5
+6951,37,0,79,-2,26,-9,42,53,10,1
+6952,36,-3,83,0,36,0,47,47,0,1
+6953,37,0,81,0,30,9,45,50,6,1
+6954,51,0,85,0,52,3,34,33,0,1
+6955,55,0,77,0,-10,12,21,87,66,4
+6956,38,0,105,0,38,7,67,66,0,1
+6957,53,1,81,0,54,0,27,26,0,1
+6958,37,0,81,0,24,21,44,58,14,1
+6959,55,0,96,1,42,-15,41,55,14,4
+6960,39,0,77,4,38,0,38,38,0,1
+6961,51,0,88,3,52,0,36,36,0,1
+6962,45,-2,86,0,44,-18,40,42,2,1
+6963,54,0,87,4,54,0,33,33,0,1
+6964,50,-1,91,0,50,0,41,42,0,1
+6965,79,0,83,0,-32,22,4,117,112,5
+6966,43,0,89,4,42,0,46,48,2,1
+6967,43,0,88,-6,42,0,45,47,2,1
+6968,45,0,84,3,44,-7,39,41,2,1
+6969,41,0,86,0,38,-23,45,47,2,1
+6970,46,1,87,0,44,-26,41,43,2,1
+6971,37,-5,107,0,38,4,69,68,0,1
+6972,49,0,90,0,50,4,42,41,0,1
+6973,37,0,77,0,26,-9,40,51,12,1
+6974,81,5,85,2,-40,3,4,126,122,5
+6975,37,0,79,-3,28,0,43,51,8,1
+6976,49,0,88,0,46,-17,40,42,2,1
+6977,55,0,96,0,52,12,41,44,4,4
+6978,44,5,79,0,42,-17,35,37,2,1
+6979,39,4,83,0,38,0,43,44,0,1
+6980,45,0,86,8,44,-10,40,42,2,1
+6981,40,0,86,0,38,-1,45,47,2,1
+6982,56,0,80,0,56,15,24,23,0,1
+6983,104,2,105,0,70,-29,1,35,34,5
+6984,56,0,79,0,-2,-22,24,82,58,4
+6985,37,0,101,3,30,14,64,70,6,1
+6986,82,3,85,0,-12,0,3,98,94,5
+6987,55,0,77,-2,24,-5,22,54,32,4
+6988,39,5,76,0,38,0,38,37,0,1
+6989,55,0,93,-4,18,0,38,75,38,4
+6990,55,-1,97,-7,50,0,42,48,6,4
+6991,56,0,76,0,-12,22,20,89,68,4
+6992,52,0,84,5,52,5,32,32,0,1
+6993,55,0,79,-2,26,-5,23,53,30,4
+6994,37,0,108,3,36,0,71,72,0,1
+6995,37,0,77,0,-24,-28,40,103,62,1
+6996,41,0,86,0,42,18,45,44,0,1
+6997,44,1,79,0,44,4,35,35,0,1
+6998,46,0,90,-2,46,-4,43,43,0,1
+6999,55,-3,83,-1,54,0,28,28,0,1
+7000,46,0,107,0,46,9,61,60,0,1
+7001,41,5,76,0,42,8,34,34,0,1
+7002,56,0,81,0,-6,5,25,88,64,4
+7003,45,0,87,1,44,-23,42,43,2,1
+7004,43,3,86,-3,42,0,43,45,2,1
+7005,56,5,79,0,54,-7,24,25,2,1
+7006,49,-3,77,0,50,1,28,28,0,1
+7007,37,0,91,5,6,0,53,86,32,1
+7008,79,2,83,0,-42,0,4,126,122,5
+7009,53,0,81,0,54,8,27,26,0,1
+7010,55,0,82,0,-32,-2,26,115,90,4
+7011,39,1,85,0,38,0,46,46,0,1
+7012,46,1,82,0,46,7,36,35,0,1
+7013,37,2,80,0,36,0,43,44,0,1
+7014,78,1,81,0,-40,177,4,123,120,5
+7015,41,0,81,0,38,0,41,43,2,1
+7016,45,0,81,0,46,10,36,35,0,1
+7017,46,1,86,8,46,2,41,40,0,1
+7018,41,0,86,8,42,20,46,45,0,1
+7019,55,0,77,0,36,16,22,41,20,4
+7020,37,-3,76,0,36,0,39,39,0,1
+7021,41,3,83,0,42,6,41,41,0,1
+7022,55,0,93,2,38,6,37,54,16,4
+7023,37,0,106,0,20,-12,69,85,16,1
+7024,55,0,80,0,-10,0,25,90,66,4
+7025,47,5,78,1,46,0,31,32,0,1
+7026,77,-2,81,0,-40,47,4,123,118,5
+7027,37,0,76,3,28,-7,39,48,8,1
+7028,43,0,77,0,42,-13,34,36,2,1
+7029,44,0,75,0,44,8,31,31,0,1
+7030,37,0,81,6,30,0,44,50,6,1
+7031,37,0,104,0,16,-9,67,88,22,1
+7032,53,-2,86,0,54,5,33,32,0,1
+7033,37,0,76,0,20,-16,39,55,16,1
+7034,56,0,77,5,-2,0,21,79,58,4
+7035,55,0,78,-2,8,-5,23,70,48,4
+7036,50,0,85,-3,50,0,35,36,0,1
+7037,37,0,78,0,20,-9,42,57,16,1
+7038,37,0,90,4,26,0,53,64,12,1
+7039,55,1,84,0,54,-3,29,30,2,1
+7040,55,0,95,0,54,5,40,41,2,1
+7041,44,-3,80,0,44,0,36,36,0,1
+7042,45,0,76,0,44,-5,30,32,2,1
+7043,43,0,64,-36,42,-6,21,23,2,1
+7044,45,0,86,-6,44,0,41,42,2,1
+7045,37,0,104,0,16,-12,67,89,22,1
+7046,47,-2,76,0,46,0,28,29,0,1
+7047,43,0,89,0,44,31,46,45,0,1
+7048,37,0,76,7,28,12,40,48,8,1
+7049,55,5,79,0,54,0,25,25,0,1
+7050,41,-4,76,0,42,0,34,34,0,1
+7051,45,0,107,0,44,0,62,63,2,1
+7052,52,0,109,0,52,0,56,57,0,1
+7053,55,0,77,0,10,15,22,67,46,4
+7054,37,0,91,6,6,0,53,86,32,1
+7055,44,0,95,0,44,13,52,51,0,1
+7056,53,-5,77,0,54,0,24,23,0,1
+7057,56,0,97,-3,50,0,41,48,6,4
+7058,56,0,97,0,54,-10,41,42,2,1
+7059,56,0,97,0,56,3,40,40,0,1
+7060,45,0,87,1,44,-7,42,43,2,1
+7061,41,0,83,0,42,13,42,42,0,1
+7062,42,0,76,0,42,0,33,34,2,1
+7063,55,-1,77,0,26,-30,22,52,30,4
+7064,44,0,80,-3,44,2,36,36,0,1
+7065,37,0,76,0,38,15,39,37,0,1
+7066,37,0,103,0,30,12,66,72,6,1
+7067,44,0,95,0,42,-25,52,54,2,1
+7068,37,0,108,-5,34,-1,71,74,4,1
+7069,49,5,85,0,46,0,36,39,2,1
+7070,55,-1,77,0,-22,0,22,100,78,4
+7071,56,0,81,0,2,2,25,78,54,4
+7072,55,0,78,0,18,0,23,60,38,4
+7073,37,0,100,0,30,-5,64,69,6,1
+7074,56,0,97,0,52,16,41,45,4,4
+7075,52,0,86,3,52,0,34,34,0,1
+7076,46,4,81,0,46,3,35,35,0,1
+7077,46,0,88,1,46,6,42,41,0,1
+7078,37,0,108,0,36,0,72,72,0,1
+7079,37,0,80,0,10,12,43,70,26,1
+7080,50,22,77,0,28,0,26,48,22,2
+7081,37,4,104,0,18,8,66,86,20,1
+7082,38,-3,107,0,38,0,69,68,0,1
+7083,44,-4,84,0,44,0,40,40,0,1
+7084,41,-1,80,-3,42,-3,39,39,0,1
+7085,37,-1,79,-1,38,11,41,40,0,1
+7086,56,0,76,0,-14,3,20,92,72,4
+7087,37,0,77,0,36,-4,39,41,2,1
+7088,37,0,95,-2,16,-3,58,80,22,1
+7089,51,0,83,-4,52,22,32,32,0,1
+7090,37,0,82,-5,-4,0,45,87,42,1
+7091,37,0,78,0,20,3,42,57,16,1
+7092,57,-2,92,0,56,0,35,35,0,1
+7093,56,0,81,0,-10,-13,25,92,66,4
+7094,47,-4,75,0,46,0,28,28,0,1
+7095,46,3,102,0,46,0,56,56,0,1
+7096,56,0,98,0,50,-17,42,49,8,4
+7097,49,0,89,6,46,-9,40,42,2,1
+7098,37,0,77,-4,26,11,40,51,10,1
+7099,48,0,94,0,50,31,46,45,0,1
+7100,37,0,80,0,26,9,43,54,10,1
+7101,44,0,79,0,42,-31,35,37,2,1
+7102,50,-4,87,5,50,0,37,38,0,1
+7103,37,0,76,0,34,-13,39,42,2,1
+7104,56,1,87,0,56,0,31,30,0,1
+7105,37,0,77,0,-22,0,41,101,60,1
+7106,45,0,79,-5,46,25,33,32,0,1
+7107,46,0,82,0,46,0,36,35,0,1
+7108,48,-5,85,0,46,0,37,39,2,1
+7109,56,0,108,3,54,-6,52,53,2,1
+7110,51,0,77,0,50,-28,26,28,2,1
+7111,55,0,78,0,16,-7,23,63,40,4
+7112,38,2,83,0,36,-21,45,46,2,1
+7113,45,-5,87,0,44,-6,42,43,2,1
+7114,55,0,92,1,26,7,37,66,30,4
+7115,55,-1,89,0,54,0,34,35,0,1
+7116,37,0,76,0,26,-6,40,50,10,1
+7117,56,0,77,0,-12,1,21,90,68,4
+7118,45,1,82,-3,44,0,37,38,2,1
+7119,46,-5,88,0,46,0,42,41,0,1
+7120,37,0,79,0,20,22,42,58,16,1
+7121,55,-5,82,0,56,30,26,25,0,1
+7122,56,0,81,0,-18,4,25,99,74,4
+7123,40,-1,77,0,38,0,37,39,2,1
+7124,51,5,87,-2,50,-18,36,38,2,1
+7125,37,0,82,0,16,3,45,66,22,1
+7126,45,0,85,0,44,59,41,41,0,1
+7127,49,3,77,0,50,1,28,28,0,1
+7128,41,0,85,0,38,9,44,46,2,1
+7129,47,0,90,6,46,0,43,43,0,1
+7130,38,0,82,0,38,4,44,43,0,1
+7131,82,0,85,0,-6,24,3,93,90,5
+7132,46,5,81,0,44,-16,35,37,2,1
+7133,37,0,97,-1,20,-3,60,77,16,1
+7134,44,-1,76,-4,44,12,32,32,0,1
+7135,37,0,76,0,30,31,39,45,6,1
+7136,52,0,86,3,52,0,33,34,0,1
+7137,43,0,85,2,42,-5,42,44,2,1
+7138,48,-1,87,0,46,-4,39,41,2,1
+7139,43,0,86,-1,42,0,43,44,2,1
+7140,37,0,81,4,38,22,43,42,0,1
+7141,39,-8,76,-4,-2,0,37,79,42,1
+7142,79,-1,83,0,-30,0,4,114,110,5
+7143,37,0,77,0,6,7,40,72,32,1
+7144,53,1,81,0,54,6,28,27,0,1
+7145,37,0,77,0,10,26,40,66,26,1
+7146,37,0,80,-2,26,-13,43,54,12,1
+7147,45,0,77,0,44,-12,32,34,2,1
+7148,55,0,77,0,0,-12,22,77,56,4
+7149,45,0,82,0,44,-28,37,38,2,1
+7150,46,-1,81,0,46,0,34,34,0,1
+7151,41,0,86,0,42,1,45,45,0,1
+7152,56,2,98,0,52,12,42,46,4,4
+7153,45,0,86,-7,44,-9,40,42,2,1
+7154,37,4,77,1,-2,-28,40,80,40,1
+7155,42,0,84,-6,42,0,42,43,0,1
+7156,39,-5,79,-4,38,0,40,40,0,1
+7157,46,3,80,-2,46,0,34,34,0,1
+7158,102,0,103,2,70,-4,1,33,32,5
+7159,55,0,92,0,8,-1,37,84,48,4
+7160,53,3,77,0,28,0,23,48,24,4
+7161,39,2,106,0,38,0,66,67,0,1
+7162,56,-1,92,0,56,21,36,35,0,1
+7163,37,0,79,0,12,9,42,66,24,1
+7164,55,0,93,0,6,14,38,88,50,4
+7165,44,3,77,0,44,12,33,33,0,1
+7166,55,0,93,0,2,-19,38,91,52,4
+7167,45,3,81,0,44,-4,35,37,2,1
+7168,57,3,75,13,0,1,18,75,56,4
+7169,45,1,86,0,44,-4,41,42,2,1
+7170,52,2,81,1,52,0,29,30,0,1
+7171,37,0,75,0,20,1,38,54,16,1
+7172,41,0,108,0,42,8,67,67,0,1
+7173,82,0,86,0,-12,0,3,99,96,5
+7174,45,0,80,0,44,-4,35,36,2,1
+7175,37,0,106,-7,36,0,69,70,0,1
+7176,55,0,80,0,54,-4,25,26,2,1
+7177,55,0,82,6,-14,-2,26,97,70,4
+7178,37,0,76,6,24,12,39,53,14,1
+7179,66,0,109,0,64,-16,43,45,2,1
+7180,48,0,102,0,46,-6,53,55,2,1
+7181,55,1,85,0,54,0,31,31,0,1
+7182,37,1,81,0,36,-4,43,44,2,1
+7183,53,-2,85,0,54,7,32,31,0,1
+7184,43,0,77,6,42,0,34,35,2,1
+7185,55,0,77,0,10,-30,22,67,46,4
+7186,43,0,86,0,42,-21,43,45,2,1
+7187,42,0,99,-1,42,0,58,58,0,1
+7188,79,-1,83,-7,-40,0,4,125,120,5
+7189,55,0,95,0,50,-18,40,46,6,4
+7190,41,-1,83,6,38,-5,42,44,2,1
+7191,37,0,99,0,28,-4,61,70,8,1
+7192,37,0,76,-2,34,0,39,42,4,1
+7193,53,4,85,0,54,2,32,31,0,1
+7194,56,0,81,0,-6,-18,25,89,64,4
+7195,37,0,80,-1,34,-1,43,46,2,1
+7196,39,-3,76,-7,38,0,37,37,0,1
+7197,48,-1,87,0,46,-2,39,41,2,1
+7198,82,0,86,8,-6,7,4,94,90,5
+7199,37,0,75,5,24,-2,38,52,14,1
+7200,56,0,95,0,46,16,40,49,10,4
+7201,55,0,96,0,46,2,41,50,8,4
+7202,37,1,76,0,36,18,39,40,2,1
+7203,41,0,83,0,42,4,42,42,0,1
+7204,59,0,87,0,56,-14,28,30,2,1
+7205,50,0,84,5,50,0,35,35,0,1
+7206,55,0,76,-5,-20,0,21,97,76,4
+7207,56,0,79,0,16,15,23,63,40,4
+7208,37,0,77,0,2,-4,40,75,34,1
+7209,37,0,97,3,12,0,59,84,24,1
+7210,55,0,93,0,16,-9,38,78,40,4
+7211,48,0,88,-5,50,25,39,39,0,1
+7212,55,-5,86,0,54,-9,30,32,2,1
+7213,43,-1,76,0,42,-8,33,35,2,1
+7214,44,0,97,1,42,-29,53,55,2,1
+7215,37,0,79,0,10,10,42,68,26,1
+7216,51,0,102,0,50,-21,51,53,2,1
+7217,55,-1,77,0,28,0,22,48,26,4
+7218,48,1,86,8,46,0,39,40,2,1
+7219,47,4,88,0,46,0,41,42,0,1
+7220,49,0,81,0,50,6,32,32,0,1
+7221,59,0,86,-4,60,27,28,27,0,1
+7222,79,2,83,0,-40,11,4,125,120,5
+7223,44,-1,81,0,44,9,38,37,0,1
+7224,37,0,81,6,16,0,44,65,22,1
+7225,44,3,83,-3,42,-19,39,41,2,1
+7226,41,0,88,-6,38,-1,48,50,2,1
+7227,59,0,108,0,56,-8,49,51,2,1
+7228,49,0,87,0,50,2,38,38,0,1
+7229,55,0,98,8,46,0,42,51,8,4
+7230,37,0,81,-1,36,0,44,44,0,1
+7231,37,0,92,0,8,13,54,84,30,1
+7232,37,0,80,-5,-2,0,43,83,40,1
+7233,55,-1,78,-3,0,-10,23,78,56,4
+7234,49,0,81,0,46,-17,32,34,2,1
+7235,43,0,95,-2,44,18,52,51,0,1
+7236,44,0,87,-7,44,0,43,43,0,1
+7237,37,-1,79,0,36,0,43,43,0,1
+7238,49,1,87,0,50,22,38,38,0,1
+7239,37,0,79,0,36,-8,41,43,2,1
+7240,37,0,79,0,2,-2,43,77,34,1
+7241,42,0,82,3,42,0,39,41,2,1
+7242,37,0,80,-7,8,0,43,72,28,1
+7243,41,3,76,0,38,-4,35,37,2,1
+7244,56,0,97,0,56,9,40,40,0,1
+7245,49,0,85,0,46,-16,36,39,2,1
+7246,68,3,112,0,68,0,44,45,0,1
+7247,53,-1,79,8,54,6,26,25,0,1
+7248,42,0,76,-2,42,-4,35,35,0,1
+7249,37,0,75,0,30,-9,38,44,6,1
+7250,36,-2,77,0,36,0,41,41,0,1
+7251,44,-5,86,0,44,9,43,42,0,1
+7252,51,-1,83,0,52,27,32,32,0,1
+7253,43,0,81,0,42,-7,37,39,2,1
+7254,49,0,88,2,50,0,39,39,0,1
+7255,51,1,102,0,52,6,51,50,0,1
+7256,53,0,87,-2,52,-4,34,35,2,1
+7257,48,0,86,-7,46,0,38,39,2,1
+7258,37,0,78,0,16,12,41,63,22,1
+7259,37,0,82,-2,28,0,45,54,8,1
+7260,45,-1,79,0,46,21,33,32,0,1
+7261,37,0,81,0,30,-5,45,50,6,1
+7262,37,0,79,-7,10,0,42,69,26,1
+7263,44,0,75,-5,42,-25,31,34,2,1
+7264,52,-5,102,0,52,0,50,50,0,1
+7265,37,0,81,0,38,5,43,42,0,1
+7266,41,-1,79,0,38,-30,38,41,2,1
+7267,49,0,84,-7,50,0,35,35,0,1
+7268,56,0,79,-3,8,23,24,72,48,4
+7269,37,0,76,0,34,0,38,42,4,1
+7270,37,-329,105,0,36,0,68,69,0,1
+7271,46,0,81,0,44,-24,35,37,2,1
+7272,41,0,86,0,38,-16,46,48,2,1
+7273,79,0,84,3,-42,-6,4,128,124,5
+7274,42,3,88,0,42,0,45,46,2,1
+7275,56,0,97,0,52,-11,41,45,4,4
+7276,41,0,81,0,42,28,40,39,0,1
+7277,49,0,86,0,50,15,38,37,0,1
+7278,39,0,76,-1,38,-1,36,37,0,1
+7279,55,5,80,0,54,0,25,26,0,1
+7280,42,-5,86,-7,42,0,43,44,2,1
+7281,53,0,87,1,52,-8,34,35,2,1
+7282,56,1,91,0,54,-20,35,37,2,1
+7283,53,0,87,1,52,-12,34,35,2,1
+7284,41,-2,81,0,42,4,40,39,0,1
+7285,55,0,108,0,54,-6,53,54,2,1
+7286,39,2,82,0,38,0,43,43,0,1
+7287,42,-4,89,0,42,0,47,48,0,1
+7288,43,0,75,0,42,-25,32,34,2,1
+7289,55,-1,98,3,46,-25,42,51,8,4
+7290,44,-6,76,-1,44,-2,32,32,0,1
+7291,107,-1,108,0,72,1,1,36,34,5
+7292,55,-1,77,-3,-4,25,21,82,60,4
+7293,43,-4,83,0,42,-10,40,42,2,1
+7294,46,2,83,0,44,-18,37,39,2,1
+7295,38,0,77,6,38,1,39,38,0,1
+7296,81,-5,84,0,-14,5,4,100,96,5
+7297,43,-1,79,1,42,-9,35,37,2,1
+7298,56,3,97,0,52,0,41,45,4,4
+7299,45,0,77,0,44,-4,32,34,2,1
+7300,56,-2,95,0,52,-11,40,44,4,4
+7301,52,0,86,-1,54,31,33,32,0,1
+7302,81,-1,85,0,-12,0,4,98,94,5
+7303,37,0,79,0,8,6,42,71,30,1
+7304,37,0,75,0,30,-18,38,44,6,1
+7305,38,3,76,0,38,13,38,37,0,1
+7306,40,-5,76,0,38,0,36,37,2,1
+7307,51,0,82,0,52,12,31,30,0,1
+7308,55,0,77,-5,28,-15,21,48,28,4
+7309,44,0,84,0,44,4,41,41,0,1
+7310,49,2,83,0,46,-1,34,37,2,1
+7311,48,0,77,0,46,-2,29,31,2,1
+7312,37,0,77,-3,-12,-13,40,90,50,1
+7313,41,5,97,0,38,0,56,58,2,1
+7314,45,-3,82,8,44,0,37,38,2,1
+7315,37,0,106,0,28,0,69,77,8,1
+7316,43,0,79,0,42,-10,36,38,2,1
+7317,39,2,79,0,38,0,40,41,0,1
+7318,37,2,83,0,36,0,46,46,0,1
+7319,46,0,107,0,44,-28,61,63,2,1
+7320,49,-3,87,0,50,0,38,38,0,1
+7321,45,0,78,0,46,20,33,32,0,1
+7322,38,0,77,0,36,-21,40,41,2,1
+7323,46,2,86,-1,46,10,41,40,0,1
+7324,47,-1,90,0,46,0,42,43,0,1
+7325,41,2,77,0,42,20,36,36,0,1
+7326,55,0,97,0,50,-18,41,48,6,4
+7327,37,0,77,0,18,27,40,59,18,1
+7328,55,0,79,0,20,-11,23,58,34,4
+7329,42,-3,76,0,42,0,34,35,2,1
+7330,55,-3,77,0,26,-1,22,52,30,4
+7331,53,0,79,0,54,8,26,24,0,1
+7332,103,2,104,0,70,0,1,34,34,5
+7333,37,0,81,-2,38,-5,43,42,0,1
+7334,45,0,83,-2,44,-3,37,39,2,1
+7335,41,0,79,0,38,-4,39,41,2,1
+7336,43,-1,79,0,44,20,35,35,0,1
+7337,37,0,77,0,0,-6,40,77,36,1
+7338,37,-3,81,0,38,24,44,42,0,1
+7339,53,-1,86,2,54,0,32,32,0,1
+7340,37,0,77,0,26,16,40,51,12,1
+7341,56,3,87,-1,54,-21,31,33,2,1
+7342,37,0,77,0,12,0,41,65,24,1
+7343,37,0,80,8,6,-28,43,75,32,1
+7344,37,0,107,1,26,0,69,81,12,1
+7345,44,0,89,0,42,-23,45,48,2,1
+7346,37,0,78,0,10,9,41,68,26,1
+7347,106,-2,108,0,72,7,1,35,34,5
+7348,37,1,75,0,20,19,38,54,16,1
+7349,37,0,80,-5,38,18,43,41,0,1
+7350,79,0,83,0,-32,68,4,117,112,5
+7351,49,0,78,0,50,27,29,29,0,1
+7352,56,0,96,0,56,24,40,39,0,1
+7353,42,0,82,8,42,0,39,41,2,1
+7354,55,0,82,4,-14,14,26,97,70,4
+7355,44,0,86,1,44,9,43,42,0,1
+7356,56,0,97,4,44,-2,41,53,12,4
+7357,43,0,90,0,44,18,47,46,0,1
+7358,37,0,77,1,26,11,40,51,12,1
+7359,37,3,86,0,36,0,49,50,0,1
+7360,37,-1,82,0,38,17,45,43,0,1
+7361,56,0,77,0,-18,13,21,95,74,4
+7362,49,0,86,0,46,-2,38,40,2,1
+7363,38,0,104,-6,38,0,66,66,0,1
+7364,37,0,77,0,-18,-15,40,95,54,1
+7365,51,0,91,0,50,-7,40,42,2,1
+7366,50,4,102,0,50,0,52,53,0,1
+7367,37,0,76,0,38,25,38,37,0,1
+7368,47,1,83,0,46,0,35,36,0,1
+7369,55,0,77,0,28,5,21,48,28,4
+7370,37,0,76,0,28,8,39,48,8,1
+7371,56,0,95,-3,56,7,40,39,0,1
+7372,37,0,105,-2,28,0,68,77,8,1
+7373,55,0,77,0,12,16,21,64,42,4
+7374,42,0,80,0,42,0,38,39,2,1
+7375,47,2,88,8,46,0,41,41,0,1
+7376,56,0,86,3,56,3,31,30,0,1
+7377,49,0,84,0,50,23,36,35,0,1
+7378,56,3,78,3,24,0,22,55,32,4
+7379,44,0,86,-3,44,3,42,42,0,1
+7380,56,0,97,0,46,3,41,50,10,4
+7381,37,0,77,-1,20,-23,40,56,16,1
+7382,41,0,87,0,38,-4,46,48,2,1
+7383,44,5,85,0,44,2,41,41,0,1
+7384,43,-3,108,0,42,0,65,66,2,1
+7385,57,1,90,0,56,0,33,33,0,1
+7386,56,0,97,0,46,7,41,50,10,4
+7387,37,0,78,0,0,-10,42,78,36,1
+7388,37,0,78,0,10,-4,42,68,26,1
+7389,62,0,109,8,60,0,48,50,2,1
+7390,38,3,77,0,36,-23,39,41,2,1
+7391,37,0,76,0,36,-4,38,39,2,1
+7392,58,4,87,0,56,0,29,30,2,1
+7393,53,-5,84,0,54,0,31,30,0,1
+7394,55,0,84,0,54,-4,28,30,2,1
+7395,38,3,79,0,38,0,41,41,0,1
+7396,55,0,79,-1,24,22,24,56,32,4
+7397,56,0,96,0,38,-4,40,57,18,4
+7398,51,0,102,0,50,0,51,53,2,1
+7399,52,0,83,-1,52,0,32,32,0,1
+7400,45,0,81,8,44,0,36,37,2,1
+7401,41,0,83,2,38,0,42,44,2,1
+7402,37,0,76,0,26,-3,39,50,12,1
+7403,50,0,88,-7,50,0,38,39,0,1
+7404,38,-5,90,0,6,0,52,85,34,1
+7405,43,-1,84,0,42,0,42,43,2,1
+7406,37,0,77,2,26,6,40,51,12,1
+7407,56,-3,76,5,0,0,20,76,56,4
+7408,48,-4,77,0,46,0,29,30,2,1
+7409,46,0,100,-1,46,0,54,53,0,1
+7410,40,0,84,7,38,0,44,45,2,1
+7411,64,-4,111,1,62,-7,47,49,2,1
+7412,37,0,81,0,38,23,44,43,0,1
+7413,37,0,81,3,36,0,43,44,2,1
+7414,41,-1,77,0,38,-18,37,39,2,1
+7415,44,1,81,0,44,5,37,37,0,1
+7416,43,0,83,-3,44,22,40,39,0,1
+7417,37,-1,77,0,36,-16,39,41,2,1
+7418,68,0,111,0,68,0,43,44,0,1
+7419,48,-5,86,0,46,0,38,40,2,1
+7420,47,3,78,-5,46,0,31,32,0,1
+7421,37,0,90,0,36,11,53,54,2,1
+7422,37,0,77,0,24,5,40,54,14,1
+7423,55,0,93,3,0,0,38,93,56,4
+7424,56,0,86,0,54,-1,31,32,2,1
+7425,83,-3,87,3,-4,0,4,92,88,5
+7426,56,0,97,0,52,-6,40,45,4,4
+7427,37,0,77,0,28,-17,40,48,8,1
+7428,42,4,88,0,42,0,45,46,2,1
+7429,53,7,77,0,28,0,24,48,24,4
+7430,83,-2,86,0,-4,-11,4,92,88,5
+7431,37,0,77,0,18,-8,40,59,18,1
+7432,102,0,103,0,70,-20,1,33,32,5
+7433,41,0,83,2,42,0,42,42,0,1
+7434,37,0,79,0,8,2,42,71,28,1
+7435,37,0,107,0,36,-10,69,71,2,1
+7436,46,0,76,0,46,5,30,30,0,1
+7437,38,0,81,0,36,-12,43,44,2,1
+7438,46,1,78,0,46,13,32,32,0,1
+7439,37,4,80,1,18,0,43,62,20,1
+7440,39,-3,77,0,38,0,38,38,0,1
+7441,82,3,86,6,-40,1,5,128,124,5
+7442,45,-2,77,0,44,0,32,33,0,1
+7443,39,0,80,-4,38,0,41,41,0,1
+7444,40,2,97,0,38,0,57,59,2,1
+7445,51,0,83,1,52,5,31,31,0,1
+7446,42,0,76,-2,42,-3,35,35,0,1
+7447,42,0,88,4,42,0,46,46,0,1
+7448,56,0,95,0,52,3,39,43,4,4
+7449,55,1,77,0,54,0,22,23,2,1
+7450,56,0,77,0,44,-5,22,34,12,4
+7451,55,0,83,-2,54,0,28,29,2,1
+7452,56,1,77,0,-22,0,22,101,80,4
+7453,37,0,74,0,30,5,37,43,6,1
+7454,56,-1,97,-1,46,0,41,51,10,4
+7455,52,-2,87,1,52,-1,35,35,0,1
+7456,42,0,86,3,42,0,45,45,0,1
+7457,51,-1,81,-3,52,7,30,30,0,1
+7458,46,0,81,-2,44,-24,35,37,2,1
+7459,37,0,108,0,36,20,71,72,0,1
+7460,55,0,92,0,-6,-1,36,99,64,4
+7461,44,2,82,-5,44,0,38,38,0,1
+7462,41,0,82,0,42,28,41,41,0,1
+7463,44,0,84,0,44,3,40,41,0,1
+7464,56,2,85,0,56,0,29,28,0,1
+7465,56,0,95,0,42,-29,40,54,14,4
+7466,49,1,78,0,46,-6,29,32,2,1
+7467,45,0,85,0,44,3,41,41,0,1
+7468,41,3,93,0,42,13,52,52,0,1
+7469,44,0,77,0,44,6,33,33,0,1
+7470,55,-3,83,0,54,0,29,29,0,1
+7471,43,0,79,0,42,-10,35,37,2,1
+7472,37,-1,40,-6,36,-10,4,4,0,1
+7473,55,0,95,0,46,-23,40,49,8,4
+7474,56,1,86,0,54,-6,30,32,2,1
+7475,39,1,78,3,38,0,39,39,0,1
+7476,41,1,82,0,38,-21,41,43,2,1
+7477,41,0,109,3,42,31,68,67,0,1
+7478,58,-5,96,0,56,0,38,39,0,1
+7479,44,-2,86,-6,44,0,42,42,0,1
+7480,56,0,77,0,-6,-18,21,85,64,4
+7481,56,0,93,0,50,0,38,44,6,4
+7482,58,-1,82,0,56,0,24,25,0,1
+7483,37,0,81,7,36,0,44,45,0,1
+7484,55,0,96,8,50,0,41,47,6,4
+7485,41,-2,77,0,38,-12,36,38,2,1
+7486,37,0,78,0,8,-9,41,70,30,1
+7487,56,-2,97,0,44,-21,41,53,12,4
+7488,37,0,83,0,0,4,46,83,36,1
+7489,56,-2,99,0,50,8,43,49,6,4
+7490,38,0,77,1,38,4,39,38,0,1
+7491,44,0,108,0,44,10,64,64,0,1
+7492,47,-3,79,0,46,0,32,33,0,1
+7493,50,3,83,2,50,0,32,33,2,1
+7494,49,0,87,0,50,14,38,38,0,1
+7495,46,0,83,0,46,11,37,36,0,1
+7496,56,0,79,0,12,22,23,66,42,4
+7497,53,4,86,0,54,1,32,32,0,1
+7498,45,1,93,0,44,0,49,50,0,1
+7499,37,0,77,3,26,13,41,52,10,1
+7500,38,0,94,0,36,9,56,58,2,1
+7501,56,2,80,0,-10,0,24,90,66,4
+7502,55,1,86,0,54,0,30,32,2,1
+7503,41,0,84,1,38,-9,43,45,2,1
+7504,37,0,79,0,36,-15,41,43,2,1
+7505,56,0,95,-5,44,0,40,51,12,4
+7506,55,-1,77,-6,44,0,22,34,12,4
+7507,37,0,77,0,28,8,41,49,8,1
+7508,56,0,96,0,54,-26,40,42,2,1
+7509,37,0,81,5,24,0,44,57,14,1
+7510,82,0,86,0,-10,13,3,96,92,5
+7511,44,1,76,0,42,-22,32,34,2,1
+7512,37,0,80,0,24,-22,43,57,14,1
+7513,37,0,93,0,12,-4,55,80,24,1
+7514,37,0,93,0,10,-12,56,83,28,1
+7515,56,0,97,0,44,9,41,53,12,4
+7516,37,0,80,0,24,11,43,57,14,1
+7517,55,0,95,0,46,-11,40,49,8,4
+7518,45,-27,77,-2,44,-3,32,34,2,3
+7519,49,1,86,0,50,12,38,37,0,1
+7520,42,-2,108,0,42,0,65,66,2,1
+7521,61,0,111,-1,60,0,50,51,2,1
+7522,51,0,84,0,50,-1,33,35,2,1
+7523,53,0,86,0,52,-27,33,35,2,1
+7524,57,0,79,2,56,0,22,23,0,1
+7525,38,0,77,-1,38,0,39,38,0,1
+7526,37,0,80,-7,18,0,43,62,18,1
+7527,46,0,83,0,46,5,37,37,0,1
+7528,42,23,77,0,28,0,35,48,14,2
+7529,37,0,80,8,36,-4,43,44,2,1
+7530,37,0,81,0,24,-12,45,58,14,1
+7531,41,0,81,0,42,4,39,39,0,1
+7532,57,0,82,2,56,0,25,25,0,1
+7533,46,0,90,3,46,0,44,44,0,1
+7534,37,0,79,0,12,27,42,66,24,1
+7535,56,0,95,0,46,4,40,49,10,4
+7536,37,0,75,0,30,-1,38,44,6,1
+7537,38,0,82,-1,38,-1,44,43,0,1
+7538,49,0,86,-1,50,-1,37,37,0,1
+7539,58,4,82,0,56,0,24,25,2,1
+7540,37,-1,92,-1,6,-4,55,86,32,1
+7541,44,0,86,-4,44,3,42,42,0,1
+7542,48,0,86,-2,46,0,38,40,2,1
+7543,44,-4,76,0,44,1,32,32,0,1
+7544,44,-3,92,-1,44,0,48,48,0,1
+7545,104,3,105,3,70,0,1,35,34,5
+7546,56,-1,86,0,56,9,30,29,0,1
+7547,62,0,109,0,60,0,48,50,2,1
+7548,56,0,77,0,-6,20,21,85,64,4
+7549,56,0,77,0,-20,-6,21,97,76,4
+7550,81,0,84,0,-12,7,3,97,94,5
+7551,56,0,79,0,10,9,23,68,46,4
+7552,46,-2,80,0,46,0,34,34,0,1
+7553,37,0,76,0,18,-4,40,58,18,1
+7554,43,0,80,-1,42,-14,37,39,2,1
+7555,37,0,95,0,16,4,58,80,22,1
+7556,53,0,81,2,52,-14,28,29,2,1
+7557,45,2,82,-1,44,0,37,38,2,1
+7558,43,0,76,7,42,0,32,34,2,1
+7559,37,0,77,0,26,-9,40,51,10,1
+7560,56,0,98,-3,44,5,42,54,12,4
+7561,80,1,84,0,-42,-23,4,128,124,5
+7562,45,0,81,0,44,21,36,37,2,1
+7563,37,0,104,0,36,-12,67,68,2,1
+7564,37,0,104,-2,34,0,67,71,4,1
+7565,57,0,84,1,56,0,27,27,0,1
+7566,37,0,77,-2,36,-4,40,41,0,1
+7567,56,0,95,0,52,1,39,43,4,4
+7568,44,0,77,0,44,14,34,34,0,1
+7569,79,0,83,0,-40,-13,4,125,120,5
+7570,50,0,83,-1,50,-2,33,33,0,1
+7571,44,0,77,2,42,-22,34,36,2,1
+7572,38,4,106,0,34,0,68,72,4,1
+7573,56,0,91,0,2,17,35,88,54,4
+7574,37,0,81,0,26,-12,44,55,10,1
+7575,37,0,80,0,36,-16,43,44,2,1
+7576,45,0,84,0,44,-3,39,41,2,1
+7577,41,0,81,0,38,-24,40,43,2,1
+7578,37,0,93,6,8,0,55,85,30,1
+7579,57,2,81,0,56,0,24,24,0,1
+7580,37,0,78,-6,2,2,41,75,34,1
+7581,55,0,97,0,46,21,41,50,8,4
+7582,81,0,85,-3,-22,0,4,108,104,5
+7583,51,0,82,0,50,-13,31,33,2,1
+7584,49,0,83,0,46,-8,34,36,2,1
+7585,45,-98,81,0,44,0,36,37,2,3
+7586,37,0,76,0,36,-15,38,39,2,1
+7587,37,0,98,-4,30,0,61,67,6,1
+7588,42,0,84,-3,42,0,41,43,2,1
+7589,79,0,84,7,-38,0,4,123,118,5
+7590,37,0,80,0,8,26,43,72,28,1
+7591,37,5,77,5,36,0,40,41,0,1
+7592,55,0,79,0,6,0,23,74,50,4
+7593,52,-2,82,0,52,0,30,30,0,1
+7594,59,0,86,0,56,-17,28,30,2,1
+7595,44,5,78,0,44,11,34,34,0,1
+7596,81,3,85,0,-40,8,4,126,122,5
+7597,48,0,88,-5,46,0,39,41,2,1
+7598,56,0,97,3,50,0,41,48,6,4
+7599,37,0,77,-4,0,0,41,77,36,1
+7600,37,0,94,-3,8,-2,57,86,30,1
+7601,37,0,103,0,26,6,66,77,12,1
+7602,41,0,79,0,42,27,39,38,0,1
+7603,37,0,106,3,24,-22,69,83,14,1
+7604,46,0,92,3,46,0,45,45,0,1
+7605,44,4,77,0,42,-23,33,35,2,1
+7606,41,0,76,0,42,17,35,35,0,1
+7607,45,-1,83,0,46,17,38,37,0,1
+7608,52,13,95,-3,50,0,44,46,2,1
+7609,46,-2,75,-3,46,-5,29,28,0,1
+7610,41,9,78,0,38,-6,37,39,2,1
+7611,37,0,95,0,16,-4,58,79,22,1
+7612,37,0,83,4,8,-5,47,75,28,1
+7613,55,0,98,1,54,20,42,44,2,1
+7614,55,0,97,0,52,7,41,45,4,4
+7615,37,0,76,0,24,-4,40,53,14,1
+7616,55,-2,83,0,54,-3,27,28,2,1
+7617,56,0,82,0,-12,0,26,95,68,4
+7618,39,3,86,0,38,0,47,47,0,1
+7619,41,0,79,-3,42,8,38,37,0,1
+7620,108,0,109,0,72,5,1,36,36,5
+7621,47,-1,81,-6,46,-9,34,34,0,1
+7622,43,0,86,-3,42,0,43,44,2,1
+7623,46,1,102,0,46,6,57,56,0,1
+7624,37,0,93,0,28,20,55,64,8,1
+7625,41,0,88,-1,42,-4,48,47,0,1
+7626,46,0,84,0,46,2,38,37,0,1
+7627,45,-2,81,0,44,-17,36,37,2,1
+7628,43,0,79,1,42,0,36,38,2,1
+7629,55,0,88,0,54,-3,32,33,2,1
+7630,45,0,82,0,46,10,37,35,0,1
+7631,37,0,104,-7,18,0,66,86,20,1
+7632,45,-5,80,0,44,0,35,36,0,1
+7633,37,0,82,0,-4,-8,45,87,42,1
+7634,85,2,88,4,-2,0,3,91,88,5
+7635,37,0,106,0,26,-13,69,80,12,1
+7636,37,-2,106,0,30,-318,69,75,6,1
+7637,45,0,86,0,44,0,41,42,0,1
+7638,82,0,86,0,-12,-4,3,99,96,5
+7639,37,0,79,0,28,-13,42,50,8,1
+7640,46,0,87,1,46,3,41,41,0,1
+7641,55,0,96,7,42,-11,41,55,14,4
+7642,43,-3,83,0,42,-15,39,41,2,1
+7643,51,3,82,0,52,7,31,30,0,1
+7644,44,0,83,0,42,-13,39,41,2,1
+7645,55,-1,96,-4,50,-14,41,47,6,4
+7646,46,0,75,-1,46,-2,29,28,0,1
+7647,56,0,97,3,46,29,41,50,10,4
+7648,56,5,98,2,46,0,42,51,10,4
+7649,49,0,78,0,46,-17,29,32,2,1
+7650,55,0,77,0,-30,-5,22,108,86,4
+7651,41,0,78,0,42,7,37,37,0,1
+7652,44,0,86,0,42,-28,42,44,2,1
+7653,46,0,100,0,44,-30,54,56,2,1
+7654,45,-2,83,-6,44,-19,37,39,2,1
+7655,114,4400,106,50,34,-13,-8,72,80,5
+7656,37,4,100,0,36,0,64,64,0,1
+7657,44,-2,109,0,44,0,65,66,0,1
+7658,52,0,77,-3,52,0,26,26,0,1
+7659,45,0,90,0,44,-13,45,46,2,1
+7660,49,-1,86,0,50,5,37,37,0,1
+7661,50,-3,78,-5,50,0,28,29,2,1
+7662,45,0,88,0,46,7,42,41,0,1
+7663,56,0,96,4,44,26,40,52,12,4
+7664,37,0,79,0,2,-12,42,76,34,1
+7665,37,0,82,0,-2,3,45,85,40,1
+7666,37,0,81,-1,34,0,43,47,4,1
+7667,46,0,85,0,44,-21,39,41,2,1
+7668,37,0,104,0,26,24,66,78,12,1
+7669,49,0,88,1,46,-19,39,41,2,1
+7670,43,0,80,0,42,-7,37,39,2,1
+7671,56,1,81,0,-6,8,25,88,64,4
+7672,39,4,78,1,38,0,39,39,0,1
+7673,53,0,86,-1,54,1,33,32,0,1
+7674,56,0,90,0,56,19,34,33,0,1
+7675,37,0,99,0,28,-5,61,70,8,1
+7676,45,0,80,0,46,17,35,34,0,1
+7677,49,-5,85,0,50,0,36,36,0,1
+7678,56,3,95,0,46,0,40,49,10,4
+7679,37,0,93,0,28,-3,56,65,8,1
+7680,80,1,84,0,-28,-10,4,112,108,5
+7681,41,0,81,0,42,13,40,39,0,1
+7682,37,0,81,-5,10,0,44,70,26,1
+7683,37,0,81,0,24,14,44,57,14,1
+7684,107,1,109,6,72,1,2,36,34,5
+7685,44,0,80,-2,42,-15,36,39,2,1
+7686,37,0,76,0,24,14,40,53,14,1
+7687,37,0,78,0,6,-9,42,73,32,1
+7688,56,4,97,0,54,7,40,42,2,1
+7689,39,-1,81,5,38,0,42,42,0,1
+7690,43,-4,89,0,42,-13,46,48,2,1
+7691,37,9,77,0,28,0,39,48,8,1
+7692,37,0,79,0,20,-3,42,58,16,1
+7693,37,0,83,2,26,0,46,57,12,1
+7694,43,0,81,5,42,-3,38,40,2,1
+7695,55,0,92,-2,0,3,36,92,56,4
+7696,59,0,87,0,60,0,28,28,0,1
+7697,47,-2,85,-2,46,-4,38,39,0,1
+7698,37,0,94,-3,10,3,57,84,28,1
+7699,45,-1,83,-5,44,-7,38,39,2,1
+7700,56,0,92,0,0,12,36,92,56,4
+7701,55,-1,79,-6,26,-12,23,53,30,4
+7702,59,0,86,0,60,17,28,27,0,1
+7703,41,0,86,0,38,-17,45,48,2,1
+7704,37,0,80,0,20,21,43,59,16,1
+7705,45,0,86,0,44,-9,41,42,2,1
+7706,53,3,82,0,52,-6,29,30,2,1
+7707,37,0,80,0,18,-1,43,62,18,1
+7708,79,-2,83,0,-30,0,4,114,110,5
+7709,56,0,85,0,56,3,29,28,0,1
+7710,48,2,76,0,46,0,28,30,2,1
+7711,51,5,78,-1,50,0,27,29,2,1
+7712,44,4,79,0,42,-26,35,37,2,1
+7713,51,0,102,0,52,13,51,50,0,1
+7714,37,0,81,4,36,0,44,44,0,1
+7715,81,0,86,3,-24,-11,4,112,108,5
+7716,55,0,95,0,50,-23,40,46,6,4
+7717,37,0,80,0,34,-7,43,46,2,1
+7718,55,0,93,0,2,-20,38,91,52,4
+7719,50,-1,107,0,50,0,56,58,2,1
+7720,37,0,83,0,30,-4,46,52,6,1
+7721,46,3,77,0,46,1,31,31,0,1
+7722,37,-1,77,0,-2,-24,40,80,40,1
+7723,37,-64,80,0,34,0,43,46,2,3
+7724,41,0,83,0,42,4,41,41,0,1
+7725,37,0,77,0,-18,-11,40,95,54,1
+7726,43,0,81,0,42,-14,38,40,2,1
+7727,44,-2,92,0,44,0,48,48,0,1
+7728,45,0,88,-29,46,-241,42,41,0,1
+7729,56,0,98,0,46,8,42,51,10,4
+7730,46,0,87,0,46,6,41,41,0,1
+7731,50,-4,77,1,50,0,28,28,0,1
+7732,43,0,86,-2,42,-16,43,45,2,1
+7733,43,-3,86,0,42,-20,42,44,2,1
+7734,43,0,86,0,44,19,42,42,0,1
+7735,37,4,78,0,16,2,41,63,22,1
+7736,37,0,83,0,28,0,46,54,8,1
+7737,56,4,81,0,54,-3,25,27,2,1
+7738,45,0,79,0,46,8,33,32,0,1
+7739,49,2,88,-1,50,1,39,39,0,1
+7740,55,0,79,0,18,-28,23,61,38,4
+7741,79,0,84,-1,-40,8,4,125,120,5
+7742,56,0,92,0,54,-15,36,38,2,1
+7743,37,-2,104,0,20,-30,67,83,16,1
+7744,37,-1,75,0,18,-18,38,57,18,1
+7745,44,1,89,0,42,-26,45,48,2,1
+7746,44,4,93,0,44,16,50,50,0,1
+7747,37,0,106,-5,36,0,69,70,2,1
+7748,44,-13,82,0,44,0,38,38,0,1
+7749,56,0,79,0,56,11,23,22,0,1
+7750,56,0,95,-7,42,11,40,54,14,4
+7751,37,0,77,0,28,-10,40,48,8,1
+7752,52,1,84,0,52,0,33,33,0,1
+7753,48,-1,85,0,46,-7,37,39,2,1
+7754,37,0,81,0,36,-13,44,45,2,1
+7755,55,0,93,0,2,0,38,91,52,4
+7756,56,1,81,0,-6,14,25,88,64,4
+7757,36,0,81,0,36,0,45,45,0,1
+7758,44,-26,88,0,44,0,44,44,0,1
+7759,44,0,85,4,44,0,41,41,0,1
+7760,46,0,85,0,46,4,39,39,0,1
+7761,51,0,89,3,52,7,38,37,0,1
+7762,52,3,82,0,52,0,29,30,0,1
+7763,52,5,88,0,52,0,37,37,0,1
+7764,45,-1,81,-6,44,-12,36,37,2,1
+7765,37,0,74,0,30,2,37,43,6,1
+7766,53,0,82,0,52,-9,29,30,2,1
+7767,57,-1,88,0,56,0,31,31,0,1
+7768,41,3,82,0,42,5,41,41,0,1
+7769,43,0,89,0,42,-13,46,48,2,1
+7770,37,0,83,0,0,13,47,83,36,1
+7771,46,0,100,0,44,-13,54,56,2,1
+7772,55,-1,86,0,54,-11,31,32,2,1
+7773,37,1,80,0,8,11,43,72,30,1
+7774,56,0,97,0,50,-29,41,48,6,4
+7775,48,4,106,0,46,0,58,60,2,1
+7776,46,5,83,0,46,23,37,36,0,1
+7777,44,-2,97,5,44,6,53,53,0,1
+7778,55,0,95,-7,54,0,40,41,2,1
+7779,43,0,81,-6,42,0,38,40,2,1
+7780,41,1,83,-1,38,0,42,44,2,1
+7781,37,0,92,-2,18,7,55,74,20,1
+7782,52,0,83,0,52,-3,30,31,0,1
+7783,37,0,80,3,6,-20,43,75,32,1
+7784,37,0,107,0,28,-18,70,78,8,1
+7785,41,3,84,0,42,13,43,43,0,1
+7786,52,1,87,1,52,0,35,35,0,1
+7787,55,0,93,3,44,-1,37,49,12,4
+7788,51,-1,86,-4,52,-4,35,35,0,1
+7789,44,0,81,0,42,-10,38,40,2,1
+7790,42,0,88,-6,42,0,46,46,0,1
+7791,37,0,104,0,16,-6,67,89,22,1
+7792,39,0,83,2,38,0,45,44,0,1
+7793,45,5,80,0,44,0,35,36,2,1
+7794,37,0,81,0,20,-2,44,60,16,1
+7795,47,0,81,-2,46,0,34,34,0,1
+7796,48,-2,84,0,46,-3,36,38,2,1
+7797,48,5,93,-4,46,0,46,47,2,1
+7798,37,0,80,0,34,26,43,46,2,1
+7799,38,1,90,0,8,9,52,82,30,1
+7800,46,1,78,0,46,10,32,32,0,1
+7801,56,0,91,0,2,4,35,88,54,4
+7802,41,0,81,0,42,30,41,40,0,1
+7803,43,0,83,2,42,-5,39,41,2,1
+7804,38,-4,79,0,38,0,41,41,0,1
+7805,53,0,77,1,54,13,25,23,0,1
+7806,46,0,77,0,46,15,32,31,0,1
+7807,44,4,81,8,42,-12,38,40,2,1
+7808,37,0,77,3,36,16,41,41,0,1
+7809,49,1,88,0,50,6,39,39,0,1
+7810,56,-1,78,-3,6,-9,22,73,50,4
+7811,41,0,81,0,42,12,39,39,0,1
+7812,42,4,81,0,42,0,39,40,2,1
+7813,56,4,97,-1,50,-2,40,48,8,4
+7814,55,-1,95,0,50,0,40,46,6,4
+7815,37,0,79,0,10,-30,43,69,26,1
+7816,38,0,92,0,24,3,54,69,14,1
+7817,39,0,79,5,38,0,40,41,0,1
+7818,58,0,96,-5,56,0,38,39,2,1
+7819,56,0,97,6,46,0,41,51,10,4
+7820,47,-1,88,0,46,0,42,42,0,1
+7821,47,4,88,0,46,0,41,41,0,1
+7822,48,3,78,0,46,0,30,32,2,1
+7823,37,0,90,-4,36,0,52,53,2,1
+7824,41,0,81,-1,38,-5,40,42,2,1
+7825,37,0,78,0,30,1,41,47,6,1
+7826,41,-4,86,-1,38,-13,45,47,2,1
+7827,42,-5,77,0,42,0,35,35,0,1
+7828,52,-1,80,0,52,0,27,28,0,1
+7829,44,0,81,0,42,-12,37,39,2,1
+7830,37,0,95,-1,12,-29,58,82,24,1
+7831,43,-1,79,0,42,-18,35,37,2,1
+7832,45,-2,86,0,44,-20,40,42,2,1
+7833,56,0,92,0,54,4,36,38,2,1
+7834,106,0,108,7,70,0,2,38,36,5
+7835,44,0,86,0,42,-4,42,44,2,1
+7836,41,-2,77,0,38,-30,36,38,2,1
+7837,42,-1,77,0,42,0,35,36,2,1
+7838,43,0,85,0,44,20,42,41,0,1
+7839,45,0,83,0,46,7,37,36,0,1
+7840,56,0,76,0,-12,-1,20,89,68,4
+7841,56,-2,98,-3,38,-1,42,59,18,4
+7842,48,0,81,-4,46,0,33,35,2,1
+7843,58,-3,84,0,56,0,26,27,2,1
+7844,37,0,95,0,10,0,58,85,28,1
+7845,41,1,79,0,42,11,38,38,0,1
+7846,37,0,105,0,30,-3,68,74,6,1
+7847,52,-1,79,0,52,0,27,27,0,1
+7848,39,-2,77,0,38,0,38,39,0,1
+7849,45,0,76,0,46,8,31,30,0,1
+7850,44,-36,91,0,2,0,47,88,42,3
+7851,44,-2,77,0,44,4,33,33,0,1
+7852,50,-5,106,0,50,0,57,57,0,1
+7853,46,3,81,0,46,0,34,34,0,1
+7854,44,0,81,1,44,16,37,37,0,1
+7855,55,0,76,0,-14,-1,21,92,70,4
+7856,49,2,86,0,50,0,37,37,0,1
+7857,37,-1,79,0,24,-6,42,55,14,1
+7858,56,0,78,2,8,-27,22,70,48,4
+7859,45,0,83,0,44,-17,37,39,2,1
+7860,45,0,86,0,44,-22,40,42,2,1
+7861,37,0,81,0,20,-3,44,60,16,1
+7862,49,2,84,0,50,22,35,35,0,1
+7863,37,0,77,5,-12,-16,41,90,50,1
+7864,56,0,97,0,52,30,41,46,4,4
+7865,45,-44,79,2,0,0,34,79,44,3
+7866,55,-4,77,0,26,0,22,52,30,4
+7867,49,0,86,0,50,16,38,37,0,1
+7868,44,-1,82,0,42,-29,38,41,2,1
+7869,81,0,84,0,-20,5,4,105,102,5
+7870,56,5,79,0,56,5,23,23,0,1
+7871,39,-1,97,0,38,0,58,59,0,1
+7872,39,1,76,3,38,0,37,37,0,1
+7873,44,3,81,0,44,11,37,37,0,1
+7874,46,0,88,0,46,2,42,41,0,1
+7875,45,0,89,1,44,0,44,45,0,1
+7876,83,0,86,0,-2,21,4,89,86,5
+7877,56,3,99,5,46,0,43,52,10,4
+7878,76,0,81,-1,-42,-22,5,125,120,5
+7879,37,0,77,0,-10,-26,41,88,46,1
+7880,49,2,95,0,50,23,47,46,0,1
+7881,47,1,85,1,46,0,38,39,0,1
+7882,41,2,77,0,42,18,36,36,0,1
+7883,45,-3,79,0,46,23,33,32,0,1
+7884,37,0,82,0,34,-9,45,48,2,1
+7885,39,4,85,0,38,0,46,46,0,1
+7886,56,2,81,0,54,-17,25,26,2,1
+7887,38,0,93,0,30,5,55,62,8,1
+7888,49,0,76,-3,46,-5,27,30,2,1
+7889,55,0,78,0,6,-6,23,73,50,4
+7890,37,0,95,0,18,0,58,77,18,1
+7891,43,0,95,-1,42,-12,52,54,2,1
+7892,38,-5,78,0,38,0,40,39,0,1
+7893,51,0,82,-1,50,-3,31,33,2,1
+7894,46,0,85,-3,46,-3,39,39,0,1
+7895,43,-1,77,0,42,-10,34,36,2,1
+7896,37,-1,104,0,24,1,67,80,14,1
+7897,45,0,86,0,46,28,41,40,0,1
+7898,56,0,91,0,0,-8,35,91,56,4
+7899,47,-2,81,0,46,0,34,35,0,1
+7900,37,0,81,0,10,-25,45,71,26,1
+7901,37,0,79,3,10,-8,42,69,26,1
+7902,40,0,76,2,38,0,36,37,2,1
+7903,44,0,81,0,44,19,37,37,0,1
+7904,37,0,104,0,26,4,67,78,12,1
+7905,41,0,86,0,38,-10,46,48,2,1
+7906,47,5,87,-1,46,0,40,41,0,1
+7907,41,0,88,0,42,26,48,47,0,1
+7908,52,-4,88,0,52,0,36,36,0,1
+7909,46,4,78,0,46,1,32,32,0,1
+7910,46,4,93,0,46,3,48,47,0,1
+7911,56,0,77,0,-14,26,21,92,72,4
+7912,46,0,81,4,46,0,34,34,0,1
+7913,55,0,96,0,52,9,41,44,4,4
+7914,37,0,90,0,30,12,53,59,6,1
+7915,55,1,76,-2,-14,31,21,92,70,4
+7916,43,0,88,-2,44,25,45,44,0,1
+7917,45,-5,88,0,46,14,43,42,0,1
+7918,56,0,78,0,42,-18,22,37,14,4
+7919,102,4,103,2,70,-3,1,33,32,5
+7920,82,4,86,0,-40,4,4,128,124,5
+7921,49,0,95,0,46,-5,47,49,2,1
+7922,56,0,77,0,-20,17,21,97,76,4
+7923,56,0,96,0,50,-12,40,47,6,4
+7924,104,1,106,1,72,7,1,33,32,5
+7925,39,-3,81,3,38,0,42,43,0,1
+7926,37,0,104,0,36,-19,67,68,2,1
+7927,84,0,88,0,-2,-13,3,90,88,5
+7928,57,5,86,0,56,0,30,30,0,1
+7929,37,0,76,0,36,14,39,40,2,1
+7930,55,0,76,-2,-22,-5,21,99,78,4
+7931,51,1,102,0,52,7,51,50,0,1
+7932,37,0,77,0,8,15,40,69,30,1
+7933,37,0,104,-2,18,-6,67,86,20,1
+7934,43,-4,83,0,42,-18,39,41,2,1
+7935,44,0,87,-6,42,-8,43,46,2,1
+7936,55,0,96,-4,50,0,41,47,6,4
+7937,55,0,79,0,18,-8,23,61,38,4
+7938,45,1,83,0,44,0,39,39,0,1
+7939,37,0,76,0,38,29,38,37,0,1
+7940,55,-2,87,1,54,0,32,33,0,1
+7941,43,0,106,0,44,27,62,62,0,1
+7942,50,-2,85,0,50,0,36,36,0,1
+7943,37,0,78,0,18,-2,41,60,18,1
+7944,37,0,78,0,16,1,41,63,22,1
+7945,82,0,86,-2,-40,1,4,128,124,5
+7946,37,0,77,0,16,-16,41,62,22,1
+7947,55,-1,77,0,26,-14,22,52,30,4
+7948,56,2,97,0,54,0,40,42,2,1
+7949,56,0,77,0,20,8,22,57,36,4
+7950,55,5,77,0,-22,0,21,100,78,4
+7951,37,-2,79,0,36,0,42,43,0,1
+7952,59,0,84,0,56,-5,25,27,2,1
+7953,55,2,95,-2,50,0,41,46,6,4
+7954,44,1,79,0,44,1,35,35,0,1
+7955,56,0,95,0,42,24,40,54,14,4
+7956,40,-3,83,0,38,-1,42,44,2,1
+7957,48,-1,80,0,46,-1,32,34,2,1
+7958,37,0,104,6,28,0,67,76,8,1
+7959,56,0,86,-7,54,-30,30,32,2,1
+7960,41,3,81,0,38,-23,39,42,2,1
+7961,37,0,76,0,28,15,39,47,8,1
+7962,46,5,83,0,44,-23,37,39,2,1
+7963,79,1963,88,0,44,0,9,44,34,6
+7964,37,0,76,0,36,-29,39,40,2,1
+7965,45,0,77,-2,44,-3,32,33,0,1
+7966,37,0,75,1,20,-4,38,54,16,1
+7967,55,0,87,4,54,0,32,33,0,1
+7968,53,3,88,0,54,3,35,34,0,1
+7969,37,0,78,0,10,-7,41,68,26,1
+7970,37,0,80,0,2,-7,43,77,34,1
+7971,44,0,97,2,44,2,53,53,0,1
+7972,46,5,81,0,46,16,35,35,0,1
+7973,85,0,88,-1,2,-4,3,86,82,5
+7974,37,-1,82,-3,36,-26,45,46,2,1
+7975,41,1,83,0,42,6,42,42,0,1
+7976,41,4,83,5,38,-4,42,44,2,1
+7977,45,0,93,0,44,-1,48,50,2,1
+7978,51,0,84,0,52,18,33,33,0,1
+7979,52,1,81,0,52,0,28,29,0,1
+7980,41,1,75,0,42,4,34,34,0,1
+7981,51,0,90,0,50,-19,38,41,2,1
+7982,37,0,83,1,8,-1,47,75,28,1
+7983,37,0,82,0,16,13,45,66,22,1
+7984,37,0,76,0,24,11,39,52,14,1
+7985,44,5,88,-2,44,9,44,44,0,1
+7986,46,0,81,2,46,6,35,34,0,1
+7987,46,0,80,0,46,14,34,34,0,1
+7988,42,2,79,0,42,0,38,38,0,1
+7989,46,0,80,0,46,1,34,34,0,1
+7990,42,-4,106,0,42,0,63,64,2,1
+7991,46,-3,88,2,46,0,41,41,0,1
+7992,49,3,83,0,50,5,34,34,0,1
+7993,56,0,95,-4,54,-29,40,41,2,1
+7994,61,2,111,0,60,-1,50,52,2,1
+7995,37,5,77,0,36,0,40,41,2,1
+7996,37,0,76,8,20,0,39,55,16,1
+7997,101,0,102,0,72,2,1,29,28,5
+7998,48,0,78,0,46,-13,30,32,2,1
+7999,56,0,96,0,50,1,40,47,6,4
+8000,56,5,81,0,-20,0,25,102,76,4
+8001,51,0,90,0,52,14,38,38,0,1
+8002,39,5,77,0,38,0,39,39,0,1
+8003,45,-2,86,0,44,-16,40,42,2,1
+8004,51,0,81,0,52,0,30,30,0,1
+8005,37,0,95,0,8,-29,58,87,30,1
+8006,45,-1,88,-1,44,12,43,44,2,1
+8007,46,1,78,0,46,0,32,32,0,1
+8008,37,0,93,-7,12,0,56,81,24,1
+8009,39,-4,86,0,38,0,48,48,0,1
+8010,37,0,80,0,18,-27,43,62,18,1
+8011,39,-5,82,4,38,0,43,43,0,1
+8012,44,0,76,0,42,-17,32,34,2,1
+8013,37,-1,104,0,16,-26,67,88,22,1
+8014,66,3,113,0,64,0,47,48,2,1
+8015,56,0,95,5,52,0,40,44,4,4
+8016,37,0,93,0,12,19,56,81,24,1
+8017,52,0,88,8,52,-2,36,37,0,1
+8018,52,0,84,5,52,3,32,32,0,1
+8019,37,0,93,1,26,1,55,67,12,1
+8020,37,0,78,0,20,-4,41,57,16,1
+8021,41,1,78,0,42,2,37,37,0,1
+8022,56,0,76,0,-12,8,20,89,68,4
+8023,83,-1,86,-3,-4,0,3,92,88,5
+8024,56,2,81,8,-4,0,25,86,62,4
+8025,48,-4,84,0,46,0,37,38,2,1
+8026,37,0,79,0,10,8,42,68,26,1
+8027,56,0,96,1,46,0,40,50,10,4
+8028,37,0,95,0,24,12,58,72,14,1
+8029,52,-2,83,0,52,-1,31,32,0,1
+8030,41,0,84,0,42,20,44,43,0,1
+8031,37,0,80,-4,34,-2,43,46,2,1
+8032,55,0,95,0,50,-5,40,46,6,4
+8033,79,0,83,5,-40,14,5,125,120,5
+8034,55,2,84,0,54,0,30,30,0,1
+8035,44,-3,83,0,44,1,39,39,0,1
+8036,49,0,84,0,50,1,35,35,0,1
+8037,37,0,79,0,2,15,42,76,34,1
+8038,81,0,84,0,-12,30,3,97,94,5
+8039,37,0,82,0,18,-3,45,64,18,1
+8040,42,-2,86,0,42,0,44,44,0,1
+8041,56,0,97,-1,52,11,41,45,4,4
+8042,37,0,79,0,6,-5,42,74,32,1
+8043,37,0,90,4,36,0,53,54,2,1
+8044,37,0,79,0,24,-4,43,56,14,1
+8045,48,5,86,0,46,0,38,39,2,1
+8046,37,0,79,0,6,-19,43,74,32,1
+8047,47,0,84,-6,46,0,37,38,0,1
+8048,52,0,79,-1,52,0,28,28,0,1
+8049,55,0,82,0,-42,-15,26,126,100,4
+8050,46,1,83,0,46,0,37,37,0,1
+8051,42,3,79,0,42,0,36,37,2,1
+8052,94,-38,107,0,68,-12,13,40,26,3
+8053,48,-5,95,0,46,0,47,49,2,1
+8054,79,0,83,0,-42,24,4,127,122,5
+8055,48,0,83,3,46,0,35,37,2,1
+8056,37,0,96,0,16,-27,59,81,22,1
+8057,55,0,77,0,26,0,21,51,30,4
+8058,51,0,87,-3,52,2,36,35,0,1
+8059,37,0,81,1,10,0,45,71,26,1
+8060,51,0,77,0,52,14,26,25,0,1
+8061,40,0,89,1,38,0,49,50,2,1
+8062,37,-4,76,0,38,15,39,37,0,1
+8063,56,0,77,0,-20,9,21,97,76,4
+8064,37,0,79,1,-6,0,42,86,44,1
+8065,45,-5,88,0,44,-18,42,44,2,1
+8066,49,0,81,2,46,-11,33,35,2,1
+8067,52,0,83,0,54,31,30,28,0,1
+8068,45,0,85,0,44,12,41,41,0,1
+8069,39,5,86,0,38,0,47,47,0,1
+8070,43,0,83,0,42,-10,40,42,2,1
+8071,37,0,76,0,26,8,39,50,10,1
+8072,49,-1,78,0,46,-24,29,32,2,1
+8073,45,0,76,0,44,-20,31,32,2,1
+8074,55,0,82,0,54,-2,26,28,2,1
+8075,48,-2,77,0,46,-2,29,31,2,1
+8076,44,4,77,0,44,22,34,34,0,1
+8077,50,0,106,1,50,0,56,57,0,1
+8078,37,2,76,0,20,0,39,55,16,1
+8079,37,-1,91,0,6,0,53,86,32,1
+8080,41,0,81,0,42,29,41,40,0,1
+8081,37,0,76,0,30,5,39,45,6,1
+8082,52,-4,86,0,52,-1,33,34,0,1
+8083,56,0,85,0,56,12,29,28,0,1
+8084,37,-4,77,0,20,0,41,57,16,1
+8085,37,-4,76,0,28,0,39,47,8,1
+8086,43,0,85,0,42,-18,42,44,2,1
+8087,37,0,104,0,18,15,67,86,18,1
+8088,41,0,76,0,42,12,35,34,0,1
+8089,45,0,88,-1,46,-7,42,41,0,1
+8090,56,0,77,0,0,14,21,77,56,4
+8091,56,0,76,0,-4,58,20,81,62,4
+8092,56,0,95,0,42,-5,40,54,14,4
+8093,41,0,100,0,42,11,59,59,0,1
+8094,37,0,79,7,16,14,42,63,22,1
+8095,41,0,86,0,42,9,46,45,0,1
+8096,37,0,76,0,30,-12,39,45,6,1
+8097,56,-1,98,5,46,-14,42,51,10,4
+8098,45,-4,81,0,46,1,35,34,0,1
+8099,55,0,96,0,52,27,41,44,4,4
+8100,103,-4,104,0,72,12,1,32,30,5
+8101,46,0,89,2,44,-22,43,45,2,1
+8102,55,0,81,0,56,25,25,24,0,1
+8103,46,0,88,1,46,5,42,41,0,1
+8104,46,0,81,0,46,13,35,35,0,1
+8105,51,0,86,0,50,-7,35,37,2,1
+8106,56,0,76,0,-6,31,20,84,64,4
+8107,46,5,82,-2,46,0,36,35,0,1
+8108,50,-1,87,1,50,0,37,38,0,1
+8109,37,0,79,0,36,7,43,43,0,1
+8110,53,0,81,0,52,-29,28,30,2,1
+8111,56,1,81,0,54,-18,25,26,2,1
+8112,37,0,81,6,-2,0,44,84,40,1
+8113,56,0,83,0,56,0,26,26,0,1
+8114,55,0,96,0,42,-10,41,55,14,4
+8115,50,0,108,7,50,0,58,58,0,1
+8116,49,0,86,0,50,22,38,37,0,1
+8117,45,1,85,6,44,0,40,41,2,1
+8118,37,0,75,0,28,18,38,46,8,1
+8119,37,0,80,0,38,13,43,41,0,1
+8120,37,0,76,1,26,8,39,50,12,1
+8121,47,0,87,-1,46,-2,40,41,0,1
+8122,41,0,89,-2,38,-14,48,50,2,1
+8123,47,0,95,-6,46,0,48,48,0,1
+8124,42,1,77,-1,42,0,35,35,0,1
+8125,37,0,106,0,34,-6,69,72,4,1
+8126,45,0,83,0,46,19,37,36,0,1
+8127,55,0,92,0,10,9,37,82,46,4
+8128,37,0,80,0,6,-11,43,75,32,1
+8129,56,0,97,7,50,-3,41,48,6,4
+8130,44,1,85,6,42,-19,41,44,2,1
+8131,49,0,106,-2,46,-17,57,59,2,1
+8132,46,-1,77,-3,44,-36,32,34,2,1
+8133,37,0,75,-6,24,0,38,52,14,1
+8134,43,5,96,0,42,0,53,55,2,1
+8135,44,1,83,0,44,17,39,39,0,1
+8136,45,-2,79,0,46,25,34,33,0,1
+8137,55,0,90,0,54,-3,34,35,2,1
+8138,45,-3,85,0,44,0,40,41,2,1
+8139,53,0,81,0,54,61,27,26,0,1
+8140,37,0,76,-1,30,-3,39,45,6,1
+8141,46,1,88,3,46,18,42,41,0,1
+8142,54,1,91,0,54,0,37,37,0,1
+8143,46,-1,86,0,46,0,40,40,0,1
+8144,51,-1,83,0,50,-1,32,34,2,1
+8145,55,0,78,-1,0,0,23,78,56,4
+8146,45,-1,76,0,44,-21,31,32,2,1
+8147,56,0,77,0,-18,-9,21,95,74,4
+8148,46,-1,84,-1,46,-1,38,38,0,1
+8149,56,-3,97,0,44,-24,41,53,12,4
+8150,37,0,75,0,30,17,38,44,6,1
+8151,37,0,90,0,30,-11,53,59,6,1
+8152,37,0,77,1,36,9,40,41,0,1
+8153,39,-1,76,0,38,0,36,37,0,1
+8154,41,3,83,1,38,-6,42,44,2,1
+8155,48,0,90,0,46,0,41,43,2,1
+8156,55,0,79,0,12,5,23,66,42,4
+8157,37,0,80,0,34,7,43,46,2,1
+8158,49,1,86,0,46,-17,38,40,2,1
+8159,44,0,86,0,44,19,42,42,0,1
+8160,41,0,81,0,42,3,40,40,0,1
+8161,37,0,105,1,20,-6,68,84,16,1
+8162,41,0,78,3,38,-19,37,39,2,1
+8163,37,0,82,0,34,29,45,48,2,1
+8164,37,0,80,0,36,6,43,44,2,1
+8165,37,-1,106,0,34,-15,68,72,4,1
+8166,56,0,78,0,8,-17,22,70,48,4
+8167,85,-1,89,0,2,-1,4,86,82,5
+8168,58,1,83,0,56,0,26,26,0,1
+8169,51,0,84,2,50,-22,33,35,2,1
+8170,45,-5,77,0,44,0,32,33,2,1
+8171,44,0,85,0,44,19,41,41,0,1
+8172,37,0,80,0,30,-14,43,49,6,1
+8173,41,0,83,0,42,25,42,41,0,1
+8174,37,-1,107,-8,26,0,70,81,12,1
+8175,37,0,78,0,8,6,41,70,30,1
+8176,55,4,74,-16,-2,5,19,76,58,4
+8177,39,0,79,5,38,0,41,41,0,1
+8178,45,0,79,1,46,22,34,33,0,1
+8179,56,0,77,0,-6,18,21,85,64,4
+8180,37,0,82,0,-4,-11,45,87,42,1
+8181,44,5,84,-3,42,-10,41,43,2,1
+8182,55,-2,96,0,52,-7,41,44,4,4
+8183,45,-1,83,-1,44,-2,38,39,0,1
+8184,57,92,80,0,34,0,23,46,24,2
+8185,46,0,84,-1,46,14,39,38,0,1
+8186,49,0,86,0,50,32,37,37,0,1
+8187,56,0,95,8,52,0,40,44,4,4
+8188,56,0,96,0,54,-18,40,42,2,1
+8189,37,0,81,6,28,0,45,53,8,1
+8190,49,1,77,0,46,-6,29,31,2,1
+8191,43,-2,81,-3,42,-5,37,39,2,1
+8192,57,0,83,-1,56,0,26,26,0,1
+8193,51,0,88,4,52,6,36,36,0,1
+8194,107,1,108,1,72,10,1,36,34,5
+8195,49,0,77,0,50,2,28,28,0,1
+8196,43,0,79,0,44,18,36,35,0,1
+8197,78,4,83,5,-42,-17,4,126,122,5
+8198,56,4,95,0,46,4,39,49,10,4
+8199,56,0,97,0,46,25,41,51,10,4
+8200,37,0,77,0,-20,-24,41,98,58,1
+8201,55,0,77,0,18,-13,22,59,38,4
+8202,37,0,78,0,16,13,42,63,22,1
+8203,55,0,99,0,50,13,43,49,6,4
+8204,45,-1,77,-3,44,-5,32,33,0,1
+8205,49,5,87,0,50,4,38,38,0,1
+8206,56,0,98,0,50,-27,42,49,6,4
+8207,43,0,76,0,44,28,33,32,0,1
+8208,55,-5,79,0,26,0,23,53,30,4
+8209,37,0,76,0,26,-24,40,50,10,1
+8210,43,0,79,3,42,-8,35,37,2,1
+8211,37,0,106,0,34,-24,69,72,4,1
+8212,37,0,79,0,12,24,42,66,24,1
+8213,39,-1,80,-1,38,0,41,41,0,1
+8214,37,0,83,0,16,4,46,67,22,1
+8215,55,-3,99,0,50,1,43,49,6,4
+8216,37,0,78,0,2,16,41,75,34,1
+8217,55,0,91,-3,-4,6,35,96,60,4
+8218,43,0,87,0,44,15,44,43,0,1
+8219,37,0,81,4,-2,0,44,84,40,1
+8220,51,5,78,0,50,-8,27,29,2,1
+8221,37,0,79,-1,0,0,42,79,36,1
+8222,41,0,77,0,42,5,36,36,0,1
+8223,55,1,95,-3,50,0,40,46,6,4
+8224,54,0,88,5,54,0,34,33,0,1
+8225,37,-66,77,0,20,0,40,57,16,3
+8226,46,0,81,0,44,-29,35,37,2,1
+8227,43,0,88,0,44,18,44,44,0,1
+8228,49,0,83,-3,46,-13,34,37,2,1
+8229,42,3,80,-1,42,0,38,39,2,1
+8230,53,0,79,0,52,-4,26,27,2,1
+8231,39,-3,83,4,38,0,44,44,0,1
+8232,37,0,76,0,26,11,39,50,12,1
+8233,37,0,76,0,20,-15,39,55,16,1
+8234,88,-39,107,0,64,-11,19,42,24,3
+8235,49,-1,84,0,46,-28,36,38,2,1
+8236,58,4,82,3,56,0,24,25,0,1
+8237,46,0,86,1,46,7,40,39,0,1
+8238,37,0,106,-2,30,0,69,75,6,1
+8239,38,0,86,0,38,8,48,47,0,1
+8240,43,5,78,-1,42,0,35,37,2,1
+8241,55,0,79,0,12,-1,23,66,42,4
+8242,58,5,84,0,56,0,26,27,2,1
+8243,52,3,81,1,52,0,29,30,0,1
+8244,55,0,95,0,36,-30,40,59,20,4
+8245,77,-1,81,0,-40,0,4,123,118,5
+8246,59,0,86,0,60,24,28,27,0,1
+8247,39,1,83,-1,38,0,44,44,0,1
+8248,55,-3,85,0,54,0,31,31,0,1
+8249,37,0,78,0,-4,2,41,83,42,1
+8250,45,0,76,0,44,-2,31,32,2,1
+8251,55,0,76,-2,-12,-13,21,89,68,4
+8252,37,2,106,-1,36,0,69,70,0,1
+8253,55,0,77,0,54,0,22,23,0,1
+8254,38,0,86,0,36,-19,48,50,2,1
+8255,52,-3,84,0,52,0,32,32,0,1
+8256,55,0,96,7,44,0,41,52,12,4
+8257,56,5,98,4,50,9,42,49,6,4
+8258,55,0,92,-3,46,0,36,45,8,4
+8259,37,0,94,0,10,16,57,84,28,1
+8260,54,1,81,-2,54,0,26,26,0,1
+8261,56,0,97,1,54,0,40,42,2,1
+8262,46,1,87,1,46,0,41,41,0,1
+8263,55,0,78,0,44,0,23,34,12,4
+8264,56,0,77,0,-10,18,21,87,66,4
+8265,37,0,79,0,12,-8,43,66,24,1
+8266,45,-3,77,0,46,21,31,30,0,1
+8267,42,-5,106,0,42,0,64,64,0,1
+8268,42,0,78,-18,42,0,36,37,2,1
+8269,56,0,86,0,56,23,31,30,0,1
+8270,42,4,107,5,42,0,65,66,0,1
+8271,45,0,86,-1,46,23,40,39,0,1
+8272,48,0,95,0,46,-1,47,49,2,1
+8273,38,1,93,0,28,1,55,64,10,1
+8274,56,0,86,0,54,-12,30,32,2,1
+8275,40,-2,76,-2,38,0,36,37,2,1
+8276,37,2,77,0,28,0,40,48,8,1
+8277,43,0,82,0,44,24,39,38,0,1
+8278,44,-1,81,-1,42,-30,37,39,2,1
+8279,43,0,88,-7,42,0,45,47,2,1
+8280,43,-2,86,0,44,10,42,42,0,1
+8281,37,0,77,0,34,-23,40,43,2,1
+8282,37,0,78,0,-6,-3,41,86,44,1
+8283,55,0,79,0,18,-12,23,61,38,4
+8284,53,-3,85,0,52,-27,32,33,2,1
+8285,47,0,108,5,46,0,61,62,0,1
+8286,56,0,76,0,-12,9,20,89,68,4
+8287,37,0,77,0,16,6,40,61,22,1
+8288,51,1,77,0,50,0,26,28,2,1
+8289,55,0,95,0,44,-17,40,51,12,4
+8290,55,0,82,2,-10,0,26,92,66,4
+8291,54,6,79,0,42,0,25,37,12,4
+8292,41,1,75,0,42,8,34,34,0,1
+8293,42,1,82,0,42,0,39,41,2,1
+8294,37,0,77,0,-6,0,41,85,44,1
+8295,43,0,79,7,42,0,36,38,2,1
+8296,44,0,87,0,44,11,43,43,0,1
+8297,37,0,81,0,24,-5,45,58,14,1
+8298,43,-5,86,0,44,16,43,42,0,1
+8299,37,-1,80,-1,36,0,43,44,0,1
+8300,55,0,82,0,-36,-17,26,118,92,4
+8301,41,-2,83,0,42,1,42,42,0,1
+8302,43,0,80,-2,42,-2,37,39,2,1
+8303,55,0,96,2,42,-3,41,55,14,4
+8304,55,-2,79,0,54,-3,23,24,2,1
+8305,43,0,81,4,44,22,37,37,0,1
+8306,56,0,96,-2,50,-5,40,47,6,4
+8307,37,0,96,0,18,0,59,78,18,1
+8308,105,0,106,-1,70,-1,1,36,36,5
+8309,55,0,79,0,16,-9,23,63,40,4
+8310,37,0,94,0,16,15,57,79,22,1
+8311,37,-5,104,0,38,0,67,66,0,1
+8312,56,-3,86,0,56,3,31,30,0,1
+8313,56,-1,98,0,46,0,42,51,10,4
+8314,37,0,77,0,38,9,39,38,0,1
+8315,106,0,108,3,70,0,2,38,36,5
+8316,47,-2,78,-1,46,0,31,32,0,1
+8317,56,4,78,0,16,-2,22,63,40,4
+8318,37,0,104,-5,24,0,67,81,14,1
+8319,56,0,79,0,16,29,23,63,40,4
+8320,37,-1,75,0,36,-13,37,39,2,1
+8321,107,-5,108,-3,72,4,1,36,34,5
+8322,45,0,85,3,46,19,40,39,0,1
+8323,37,0,80,0,24,-14,43,57,14,1
+8324,49,0,84,-1,50,18,36,35,0,1
+8325,56,0,92,0,54,-2,36,38,2,1
+8326,37,0,80,2,34,0,43,46,2,1
+8327,51,0,81,0,50,-27,29,32,2,1
+8328,49,0,83,0,50,13,34,34,0,1
+8329,56,0,81,0,-14,2,25,97,72,4
+8330,37,0,75,0,34,10,38,41,4,1
+8331,37,0,78,0,-2,-27,42,81,40,1
+8332,43,0,84,-1,42,-4,41,43,2,1
+8333,45,0,81,0,46,16,36,35,0,1
+8334,37,0,74,0,34,1,37,41,4,1
+8335,56,0,97,-3,52,0,41,45,4,4
+8336,81,-3,85,0,-40,4,4,126,122,5
+8337,37,0,79,0,8,11,42,71,28,1
+8338,55,0,77,0,-28,-9,22,106,84,4
+8339,53,-1,81,0,54,1,28,26,0,1
+8340,44,-2,77,0,44,1,34,34,0,1
+8341,49,2,95,-4,50,0,46,46,0,1
+8342,56,0,78,-4,6,0,22,73,50,4
+8343,40,0,86,0,38,-5,46,48,2,1
+8344,43,0,87,0,42,-19,44,46,2,1
+8345,44,5,86,0,44,14,43,42,0,1
+8346,53,5,80,0,52,0,27,28,2,1
+8347,80,0,84,3,-24,6,4,110,106,5
+8348,38,2,105,0,38,22,67,66,0,1
+8349,85,0,88,-1,2,-3,3,86,82,5
+8350,37,0,107,-5,36,0,69,71,2,1
+8351,102,0,102,-5,70,-3,1,33,32,5
+8352,55,0,77,0,-28,-26,22,106,84,4
+8353,55,8,95,0,50,0,41,46,6,4
+8354,56,1,77,0,10,8,22,67,46,4
+8355,47,5,77,0,46,0,30,31,0,1
+8356,44,0,80,0,44,9,36,36,0,1
+8357,56,0,97,1,44,-3,41,53,12,4
+8358,56,0,108,1,54,-12,52,53,2,1
+8359,46,5,79,0,46,19,33,32,0,1
+8360,37,0,77,0,8,28,40,69,30,1
+8361,49,0,90,0,50,10,42,41,0,1
+8362,37,0,82,-1,38,11,45,43,0,1
+8363,46,2,86,0,46,10,41,40,0,1
+8364,46,0,86,0,46,7,41,40,0,1
+8365,48,-2,81,-1,46,0,33,34,2,1
+8366,55,0,93,0,54,2,38,39,0,1
+8367,43,2,102,0,42,0,60,61,2,1
+8368,39,0,93,2,34,1,55,60,6,1
+8369,44,0,81,0,42,-27,38,40,2,1
+8370,37,1,81,0,36,-5,43,44,2,1
+8371,46,0,78,-5,46,0,32,32,0,1
+8372,45,0,86,3,46,12,41,40,0,1
+8373,56,0,77,0,18,0,22,59,38,4
+8374,46,1,86,4,46,-1,40,39,0,1
+8375,45,0,79,-2,44,-11,33,35,2,1
+8376,52,-5,87,0,52,-2,35,35,0,1
+8377,101,0,102,0,70,-15,1,32,32,5
+8378,56,0,86,0,54,-30,29,32,2,1
+8379,56,0,77,0,18,15,22,59,38,4
+8380,44,0,87,0,42,-17,43,46,2,1
+8381,55,0,95,-6,50,0,40,46,6,4
+8382,46,0,88,1,44,-20,43,44,2,1
+8383,42,0,79,-1,42,-2,37,37,0,1
+8384,56,-2,96,-3,52,0,40,44,4,4
+8385,46,0,90,0,46,-1,43,43,0,1
+8386,37,0,77,0,34,-4,40,43,2,1
+8387,45,-1,109,0,44,0,65,66,0,1
+8388,39,0,81,1,38,0,41,42,0,1
+8389,37,0,106,5,30,-31,69,75,6,1
+8390,55,0,95,0,42,-10,40,54,14,4
+8391,45,0,79,0,44,0,33,35,2,1
+8392,42,-5,86,0,42,0,45,45,0,1
+8393,40,0,81,0,38,0,41,42,2,1
+8394,37,0,80,0,36,4,43,44,2,1
+8395,56,0,97,3,50,-11,41,48,6,4
+8396,51,0,77,0,52,10,26,25,0,1
+8397,56,0,96,0,52,-10,40,44,4,4
+8398,85,0,89,1,6,20,4,84,80,5
+8399,56,1,81,0,-6,0,25,88,64,4
+8400,41,1,76,0,38,-25,35,37,2,1
+8401,45,0,79,-7,44,-23,33,35,2,1
+8402,37,0,76,-6,34,1,39,42,2,1
+8403,42,0,77,8,42,0,34,35,2,1
+8404,50,-1,106,0,50,0,56,57,0,1
+8405,49,0,85,2,50,0,36,36,0,1
+8406,46,0,81,0,44,-27,35,37,2,1
+8407,37,0,97,6,36,0,59,60,2,1
+8408,49,1,85,0,50,22,36,36,0,1
+8409,45,-1,82,0,44,-19,37,38,2,1
+8410,56,0,81,0,-6,-5,25,88,64,4
+8411,46,0,83,2,46,0,37,37,0,1
+8412,56,0,95,0,54,14,39,41,2,1
+8413,37,0,96,3,24,0,59,73,14,1
+8414,49,0,78,0,50,29,29,29,0,1
+8415,54,-1,81,-1,54,0,28,27,0,1
+8416,55,-3,98,0,44,-24,42,54,12,4
+8417,46,5,79,0,46,15,33,32,0,1
+8418,102,0,104,5,70,-2,2,34,32,5
+8419,47,-5,79,-7,46,0,32,32,0,1
+8420,39,-2,86,0,38,0,47,48,0,1
+8421,56,0,98,0,44,-2,42,54,12,4
+8422,45,0,83,-1,44,-13,37,39,2,1
+8423,39,-1,76,-2,38,-4,36,37,0,1
+8424,37,0,76,1,26,10,39,50,12,1
+8425,41,-5,81,0,42,8,40,39,0,1
+8426,55,0,98,0,52,-20,42,46,4,4
+8427,37,0,83,0,34,4,46,50,4,1
+8428,43,0,75,0,42,-9,32,34,2,1
+8429,42,0,80,0,42,-1,38,39,0,1
+8430,52,0,86,0,54,27,33,32,0,1
+8431,59,0,86,-1,56,-11,28,30,2,1
+8432,37,0,92,0,12,0,54,79,24,1
+8433,43,-4,83,0,42,-1,40,41,2,1
+8434,37,0,77,0,30,26,40,46,6,1
+8435,37,1,79,-4,36,-6,42,43,2,1
+8436,37,0,93,0,8,-2,55,85,30,1
+8437,44,1,86,1,44,1,42,42,0,1
+8438,42,1,88,0,42,0,46,47,2,1
+8439,38,-1,83,0,38,5,45,44,0,1
+8440,56,0,77,0,24,2,22,54,32,4
+8441,45,0,88,1,44,2,43,44,2,1
+8442,46,-4,88,0,46,0,41,41,0,1
+8443,49,1,84,0,46,-5,35,37,2,1
+8444,46,0,86,0,46,10,41,40,0,1
+8445,55,0,93,0,10,-22,37,82,46,4
+8446,48,-2,110,0,46,-2,62,64,2,1
+8447,56,1,86,0,56,12,30,29,0,1
+8448,56,4,98,0,46,3,42,51,10,4
+8449,41,4,81,0,42,2,39,39,0,1
+8450,55,0,79,0,16,3,23,63,40,4
+8451,49,0,95,0,46,-3,47,49,2,1
+8452,37,-1,79,7,16,0,42,63,22,1
+8453,44,0,82,3,44,0,38,38,0,1
+8454,56,0,97,0,54,10,41,43,2,1
+8455,41,0,79,2,42,2,38,38,0,1
+8456,44,0,82,0,44,7,38,38,0,1
+8457,56,0,82,0,54,-6,26,28,2,1
+8458,47,-3,83,-1,46,-1,36,37,0,1
+8459,106,3,108,2,72,5,1,35,34,5
+8460,44,0,89,0,42,-26,45,48,2,1
+8461,55,-1,98,0,50,-11,42,49,6,4
+8462,52,3,84,0,52,0,32,33,0,1
+8463,37,0,76,0,20,-30,40,55,16,1
+8464,37,0,98,-1,30,3,61,67,6,1
+8465,46,0,83,-6,46,6,37,36,0,1
+8466,37,0,77,0,18,2,40,59,18,1
+8467,40,1,76,1,38,0,35,37,2,1
+8468,56,0,83,0,56,5,26,26,0,1
+8469,37,0,105,1,30,-10,68,74,6,1
+8470,56,0,95,1,46,-6,40,49,10,4
+8471,37,0,75,0,18,-27,38,57,18,1
+8472,56,-1,97,-7,46,0,41,50,10,4
+8473,37,0,76,0,38,3,38,37,0,1
+8474,41,0,89,0,38,-6,48,50,2,1
+8475,44,1,77,7,44,0,33,34,0,1
+8476,44,2,79,-3,44,1,35,35,0,1
+8477,37,0,80,-1,8,0,43,72,28,1
+8478,45,0,82,0,44,-12,37,38,2,1
+8479,49,0,77,0,50,19,28,28,0,1
+8480,37,0,76,1,28,-4,39,47,8,1
+8481,44,4,83,0,42,-22,39,41,2,1
+8482,43,-4,86,0,42,-9,43,45,2,1
+8483,51,0,107,-1,50,0,56,58,2,1
+8484,46,0,85,2,46,7,39,39,0,1
+8485,46,4,87,7,46,7,41,41,0,1
+8486,38,4,76,0,38,8,38,37,0,1
+8487,41,0,84,0,42,2,43,43,0,1
+8488,55,0,95,0,38,-8,40,57,16,4
+8489,45,0,80,0,44,-12,35,36,2,1
+8490,40,-3,80,2,38,0,40,41,2,1
+8491,56,0,95,0,54,-13,40,41,2,1
+8492,53,-3,87,0,54,3,34,33,0,1
+8493,78,0,83,8,-46,0,4,129,124,5
+8494,48,-5,76,-1,46,-7,28,30,2,1
+8495,48,-1,86,0,46,-6,38,40,2,1
+8496,37,0,99,0,30,9,61,68,6,1
+8497,37,0,82,0,20,22,45,61,16,1
+8498,56,0,79,-3,6,-9,24,74,50,4
+8499,81,0,85,2,-12,0,4,98,94,5
+8500,38,0,81,0,38,4,43,42,0,1
+8501,37,0,76,-2,38,14,39,37,0,1
+8502,37,0,97,0,36,-2,60,61,2,1
+8503,37,0,104,0,20,5,67,84,16,1
+8504,41,1,108,0,38,0,67,69,2,1
+8505,55,-5,79,-13,-2,0,24,81,58,4
+8506,37,0,77,0,18,-25,40,59,18,1
+8507,82,-2,86,-1,-40,0,5,128,124,5
+8508,55,-4,81,0,54,0,25,26,2,1
+8509,46,0,83,0,44,-24,37,39,2,1
+8510,66,3,113,0,68,13,46,45,0,1
+8511,45,0,86,0,44,-4,40,42,2,1
+8512,44,0,100,0,44,0,56,56,0,1
+8513,46,0,77,2,46,0,31,30,0,1
+8514,37,0,76,0,38,23,38,37,0,1
+8515,84,2,86,-2,-4,0,3,92,88,5
+8516,37,-4,77,-5,38,7,39,38,0,1
+8517,42,0,79,0,42,-1,37,37,0,1
+8518,37,0,76,-1,28,-23,39,47,8,1
+8519,46,1,87,0,44,-21,41,43,2,1
+8520,40,4,85,-1,38,0,45,46,2,1
+8521,42,5,86,0,42,1,45,45,0,1
+8522,42,5,76,0,42,0,33,34,2,1
+8523,56,0,92,0,50,9,36,43,6,4
+8524,39,1,97,0,38,0,58,59,0,1
+8525,38,0,86,0,38,11,48,47,0,1
+8526,55,0,77,2,-20,0,21,97,76,4
+8527,37,0,76,4,26,-1,39,50,10,1
+8528,41,11,78,0,42,31,37,37,0,1
+8529,51,-4,84,0,52,0,33,32,0,1
+8530,41,0,79,-1,38,-1,39,41,2,1
+8531,56,0,95,0,54,-3,40,41,2,1
+8532,44,0,85,-2,42,-27,41,44,2,1
+8533,45,-1,93,0,44,0,49,50,0,1
+8534,49,0,86,0,46,-7,37,39,2,1
+8535,82,0,86,0,-10,7,3,96,92,5
+8536,43,1,76,0,42,-1,33,35,2,1
+8537,37,0,80,1,20,0,43,59,16,1
+8538,37,0,95,0,8,-19,58,87,30,1
+8539,80,-1,84,-2,-40,4,4,125,122,5
+8540,37,0,76,-4,28,-10,39,47,8,1
+8541,37,0,80,0,34,-19,43,46,4,1
+8542,46,0,88,0,44,-24,43,44,2,1
+8543,37,0,101,0,28,-3,64,73,8,1
+8544,55,0,77,0,10,-27,22,67,46,4
+8545,38,0,83,-1,38,0,44,44,0,1
+8546,55,0,77,0,2,-9,22,75,52,4
+8547,37,0,75,-2,30,0,38,44,6,1
+8548,37,0,77,0,2,-28,40,74,34,1
+8549,38,-2,83,0,38,6,45,44,0,1
+8550,85,0,88,-4,2,0,3,85,82,5
+8551,51,0,80,0,52,17,29,28,0,1
+8552,72,6,76,3,-42,-4,4,119,116,5
+8553,42,0,75,0,42,0,33,34,0,1
+8554,53,0,87,1,52,-6,34,35,2,1
+8555,55,0,96,-1,52,23,41,44,4,4
+8556,38,0,79,0,38,0,41,41,0,1
+8557,102,-1,103,0,72,21,1,31,30,5
+8558,39,-1,79,-3,38,-5,41,41,0,1
+8559,55,0,77,0,8,-30,22,70,48,4
+8560,38,5,77,0,38,0,39,39,0,1
+8561,50,2,81,0,50,0,30,32,2,1
+8562,38,0,82,0,36,-21,44,46,2,1
+8563,55,0,96,0,46,1,41,50,8,4
+8564,37,0,99,-2,28,0,61,70,8,1
+8565,43,3,88,0,42,0,44,46,2,1
+8566,55,0,95,0,36,25,40,59,20,4
+8567,37,0,76,-7,36,0,39,39,0,1
+8568,42,-4,83,0,42,0,41,41,0,1
+8569,55,0,77,0,12,12,21,64,42,4
+8570,47,-3,89,0,46,0,42,42,0,1
+8571,55,4,95,-2,50,0,40,46,6,4
+8572,48,0,82,-1,46,0,34,35,2,1
+8573,56,1,99,0,50,13,42,49,8,4
+8574,44,4,86,3,42,-6,42,44,2,1
+8575,40,-1,89,0,38,0,49,50,2,1
+8576,80,-1,84,0,-42,0,5,128,124,5
+8577,44,0,83,0,44,17,40,39,0,1
+8578,49,0,107,0,50,2,58,58,0,1
+8579,44,0,81,-1,42,-30,37,39,2,1
+8580,41,0,83,0,42,6,42,42,0,1
+8581,37,0,76,0,28,-5,40,48,8,1
+8582,37,0,79,0,28,3,43,51,8,1
+8583,55,0,96,0,42,30,41,55,14,4
+8584,54,-4,81,0,54,0,28,27,0,1
+8585,55,0,93,0,46,-16,37,46,8,4
+8586,55,0,77,-4,12,6,21,64,42,4
+8587,37,0,104,0,26,22,66,78,12,1
+8588,68,0,111,-6,68,0,43,44,0,1
+8589,42,3,81,0,42,0,40,40,0,1
+8590,37,0,77,0,26,0,40,51,10,1
+8591,82,1,86,0,-22,5,4,109,106,5
+8592,56,0,96,1,50,1,40,47,6,4
+8593,49,0,81,0,50,13,32,32,0,1
+8594,47,3,82,-1,46,0,34,35,0,1
+8595,55,0,77,0,26,10,21,51,30,4
+8596,56,2,80,0,-2,1,24,83,58,4
+8597,56,0,108,0,54,-3,52,53,2,1
+8598,49,1,81,0,46,-16,33,35,2,1
+8599,45,-2,81,0,44,0,36,37,2,1
+8600,43,0,76,0,44,19,33,32,0,1
+8601,37,0,78,0,6,6,41,73,32,1
+8602,53,0,88,6,52,-5,35,36,2,1
+8603,50,0,87,-1,50,0,37,38,0,1
+8604,37,0,76,26,24,0,39,53,14,1
+8605,51,-5,84,0,50,-5,34,35,2,1
+8606,54,1,87,0,54,0,33,33,0,1
+8607,41,3,76,0,42,7,34,34,0,1
+8608,46,5,86,0,46,3,41,40,0,1
+8609,56,4,97,-1,42,-1,41,56,14,4
+8610,55,1,77,0,44,1,22,34,12,4
+8611,37,0,77,0,6,-2,40,72,32,1
+8612,84,0,88,-2,6,-7,4,83,78,5
+8613,54,0,104,0,54,0,50,49,0,1
+8614,51,0,81,0,52,5,29,29,0,1
+8615,46,-4,86,-3,46,0,41,40,0,1
+8616,44,1,77,0,42,-28,34,36,2,1
+8617,49,3,77,0,50,4,28,28,0,1
+8618,44,1,88,0,44,8,45,44,0,1
+8619,38,0,92,0,12,2,54,79,24,1
+8620,56,0,79,0,10,2,23,68,46,4
+8621,41,0,80,5,42,0,39,39,0,1
+8622,55,0,77,-1,12,1,21,64,42,4
+8623,37,0,76,1,34,0,39,43,4,1
+8624,48,0,89,1,46,0,41,42,2,1
+8625,37,0,108,-4,36,0,72,72,0,1
+8626,37,0,82,0,36,7,45,46,2,1
+8627,56,3,96,0,52,0,40,44,4,4
+8628,51,0,84,0,50,-13,34,35,2,1
+8629,45,2,80,0,44,-5,35,36,2,1
+8630,38,0,81,0,36,-29,43,45,2,1
+8631,56,2,97,0,44,23,40,53,12,4
+8632,44,0,83,0,44,21,39,39,0,1
+8633,37,0,81,-5,30,0,45,50,6,1
+8634,46,1,76,0,44,-25,30,32,2,1
+8635,38,5,81,0,38,1,42,42,0,1
+8636,37,-5,76,0,20,0,40,55,16,1
+8637,37,0,78,0,-4,8,41,83,42,1
+8638,37,0,83,8,10,18,47,73,26,1
+8639,55,0,96,0,52,-1,41,44,4,4
+8640,39,1,75,0,38,0,36,36,0,1
+8641,51,0,86,-1,52,11,35,35,0,1
+8642,45,0,79,6,46,3,33,32,0,1
+8643,79,0,83,-1,-30,29,4,114,110,5
+8644,53,0,85,0,52,-21,32,33,2,1
+8645,55,0,79,0,24,7,23,55,32,4
+8646,37,0,103,0,20,24,66,82,16,1
+8647,68,0,110,-7,68,0,42,43,0,1
+8648,55,0,93,0,0,-24,38,93,56,4
+8649,43,0,82,-7,42,-7,39,41,2,1
+8650,37,-4,80,0,20,2,43,59,16,1
+8651,56,1,97,0,52,0,41,45,4,4
+8652,46,0,86,0,44,-17,41,42,2,1
+8653,49,2,106,0,50,4,56,57,0,1
+8654,55,0,79,4,8,0,23,71,48,4
+8655,37,0,80,0,36,8,43,44,2,1
+8656,37,0,79,0,10,31,42,68,26,1
+8657,37,0,104,1,26,11,67,78,12,1
+8658,56,0,95,4,44,0,40,51,12,4
+8659,54,1,81,-5,54,0,27,26,0,1
+8660,37,0,80,0,38,30,43,41,0,1
+8661,101,0,102,-1,72,0,1,29,28,5
+8662,37,0,78,-1,2,-3,41,75,34,1
+8663,39,-3,107,0,38,0,68,68,0,1
+8664,44,1,85,0,44,4,41,41,0,1
+8665,45,0,83,2,46,18,37,36,0,1
+8666,45,-5,106,0,44,0,62,62,0,1
+8667,37,0,109,0,36,-8,71,73,2,1
+8668,37,0,76,111,20,0,40,55,16,1
+8669,48,0,78,0,50,22,30,29,0,1
+8670,39,1,81,-4,38,0,41,42,0,1
+8671,37,0,81,2,36,-1,43,44,2,1
+8672,41,3,86,0,42,13,45,45,0,1
+8673,52,0,81,-5,52,0,29,30,0,1
+8674,55,0,77,0,-6,-10,21,85,64,4
+8675,44,0,83,-4,44,1,39,39,0,1
+8676,53,4,83,0,52,-7,30,31,2,1
+8677,56,0,83,0,56,8,27,26,0,1
+8678,45,1,76,0,44,-2,31,32,2,1
+8679,45,5,108,0,46,27,62,61,0,1
+8680,43,0,79,4,42,0,35,37,2,1
+8681,37,0,96,0,38,31,59,57,0,1
+8682,37,0,79,-5,34,0,42,46,4,1
+8683,55,0,93,3,54,0,37,39,2,1
+8684,53,0,88,5,54,1,34,33,0,1
+8685,64,0,110,0,64,0,46,46,0,1
+8686,40,0,84,-7,38,0,45,46,2,1
+8687,43,4,79,0,42,0,37,38,2,1
+8688,48,0,78,0,50,31,30,29,0,1
+8689,42,5,76,0,42,1,34,34,0,1
+8690,53,0,80,0,52,-30,27,28,2,1
+8691,55,0,96,0,42,-24,41,55,14,4
+8692,49,-2,77,-2,46,-21,29,31,2,1
+8693,47,0,90,4,46,0,43,43,0,1
+8694,56,0,77,0,-10,31,21,87,66,4
+8695,37,0,77,-3,34,0,40,43,2,1
+8696,37,1,108,0,36,0,71,72,0,1
+8697,37,-1,100,0,28,0,63,71,8,1
+8698,49,-2,85,0,46,-27,36,39,2,1
+8699,53,0,83,0,52,-10,30,32,2,1
+8700,46,2,86,0,46,3,40,39,0,1
+8701,44,4,80,0,44,13,36,36,0,1
+8702,43,0,89,0,44,22,46,45,0,1
+8703,54,-4,90,-2,54,-3,36,36,0,1
+8704,41,0,106,0,42,16,64,64,0,1
+8705,37,0,77,-1,36,-41,41,41,0,1
+8706,55,0,96,-1,54,-2,41,42,2,1
+8707,56,1,91,0,56,12,35,34,0,1
+8708,56,-2,97,2,42,-20,41,56,14,4
+8709,37,0,79,0,16,-1,43,64,22,1
+8710,50,1,77,0,50,0,27,28,0,1
+8711,37,0,81,0,8,-24,44,73,28,1
+8712,53,4,83,0,54,2,29,28,0,1
+8713,51,0,88,8,52,6,36,36,0,1
+8714,47,-1,79,3,46,0,32,32,0,1
+8715,37,-1,80,0,18,0,43,62,18,1
+8716,39,5,79,0,38,0,40,40,0,1
+8717,55,0,77,0,38,4,22,39,16,4
+8718,38,1,83,0,38,13,45,44,0,1
+8719,87,4,89,0,8,2,2,81,78,5
+8720,46,3,78,0,46,5,32,32,0,1
+8721,49,0,95,0,50,6,47,46,0,1
+8722,46,0,88,1,46,3,41,41,0,1
+8723,59,0,86,0,56,-2,27,29,2,1
+8724,37,0,83,0,34,-2,46,49,2,1
+8725,51,0,81,-4,52,2,30,30,0,1
+8726,44,5,79,0,44,13,35,35,0,1
+8727,37,-2,81,0,38,10,43,42,0,1
+8728,44,0,86,-3,44,0,43,42,0,1
+8729,37,0,80,0,20,-16,43,59,16,1
+8730,43,0,86,0,44,22,43,42,0,1
+8731,51,-3,102,0,52,0,51,50,0,1
+8732,56,0,108,6,54,-16,52,53,2,1
+8733,55,-1,82,0,54,-8,26,28,2,1
+8734,49,0,88,0,46,-25,39,41,2,1
+8735,57,3,86,0,56,0,29,29,0,1
+8736,37,4,76,0,20,0,39,55,16,1
+8737,37,0,75,0,30,10,38,44,6,1
+8738,56,0,80,0,-2,-7,24,83,58,4
+8739,37,0,77,0,-10,-5,41,88,46,1
+8740,56,0,95,0,44,-20,40,51,12,4
+8741,56,0,79,6,-22,0,23,102,80,4
+8742,81,0,85,0,-40,5,4,126,122,5
+8743,38,0,76,0,38,13,38,37,0,1
+8744,37,0,103,-6,20,0,66,82,16,1
+8745,37,0,80,1,36,-5,43,44,2,1
+8746,49,0,85,0,46,-21,36,39,2,1
+8747,38,0,92,0,20,31,54,71,18,1
+8748,37,-2,109,1,36,0,72,73,0,1
+8749,40,0,75,-7,38,0,35,36,2,1
+8750,43,0,86,0,42,-9,42,44,2,1
+8751,81,-3,85,-1,-40,5,4,126,122,5
+8752,56,5,88,0,54,-1,32,33,2,1
+8753,56,1,86,0,56,16,30,29,0,1
+8754,41,1,75,0,42,7,34,34,0,1
+8755,37,0,104,0,18,8,67,86,18,1
+8756,41,0,75,0,38,-17,34,36,2,1
+8757,37,0,78,5,36,13,41,42,0,1
+8758,37,0,80,-5,16,0,43,65,22,1
+8759,37,0,79,-2,10,5,43,69,26,1
+8760,52,0,79,0,52,0,26,27,0,1
+8761,44,4,78,0,42,-22,34,37,2,1
+8762,55,0,97,0,50,-30,41,48,6,4
+8763,55,0,86,-1,56,26,31,30,0,1
+8764,45,0,79,0,46,24,34,33,0,1
+8765,50,3,107,0,50,0,56,58,2,1
+8766,55,0,78,6,24,0,23,55,32,4
+8767,37,0,76,-2,30,9,39,45,6,1
+8768,43,0,77,-4,44,19,34,33,0,1
+8769,55,0,79,3,24,20,24,56,32,4
+8770,37,0,79,0,18,-8,43,61,18,1
+8771,55,0,93,1,44,0,37,49,12,4
+8772,55,0,77,0,30,-5,22,46,24,4
+8773,56,0,78,0,10,-6,22,68,46,4
+8774,37,0,78,0,16,-29,42,63,22,1
+8775,52,-1,83,0,52,0,32,32,0,1
+8776,37,0,77,0,20,-28,40,56,16,1
+8777,43,0,82,0,42,15,39,41,2,1
+8778,55,0,77,3,-20,0,21,97,76,4
+8779,49,0,78,0,46,-19,29,32,2,1
+8780,55,0,77,0,12,21,21,64,42,4
+8781,51,-1,79,6,52,9,28,27,0,1
+8782,37,0,95,-7,16,0,58,79,22,1
+8783,43,0,77,1,42,-8,34,36,2,1
+8784,37,0,75,-1,30,11,38,44,6,1
+8785,40,0,76,8,38,0,36,37,2,1
+8786,37,0,76,-2,24,6,39,52,14,1
+8787,55,0,77,0,-30,-7,22,108,86,4
+8788,41,0,81,2,42,2,39,39,0,1
+8789,101,0,102,0,72,6,1,29,28,5
+8790,42,4,77,-1,42,0,36,36,0,1
+8791,46,-2,76,0,46,0,29,29,0,1
+8792,44,1,81,0,44,3,37,37,0,1
+8793,37,0,78,0,12,6,41,65,24,1
+8794,43,-1,99,0,42,-10,56,58,2,1
+8795,41,1,88,0,42,13,47,47,0,1
+8796,53,0,86,0,52,-28,33,35,2,1
+8797,52,-1,87,-6,52,0,35,35,0,1
+8798,44,-1,79,0,44,13,35,35,0,1
+8799,41,0,88,0,42,4,47,46,0,1
+8800,47,1,90,0,46,0,43,43,0,1
+8801,50,4,86,0,50,0,37,37,0,1
+8802,55,0,79,7,12,0,23,66,42,4
+8803,37,0,82,0,34,22,45,48,2,1
+8804,41,-5,77,0,42,1,36,35,0,1
+8805,37,0,80,0,34,2,43,46,4,1
+8806,56,0,78,0,26,7,22,52,30,4
+8807,55,0,92,0,28,9,36,63,28,4
+8808,45,-1,86,-3,44,-13,40,42,2,1
+8809,56,0,81,0,54,-11,25,27,2,1
+8810,37,0,76,0,38,17,39,37,0,1
+8811,53,0,86,0,52,-24,33,34,2,1
+8812,37,0,78,0,12,4,42,65,24,1
+8813,56,0,91,0,-2,4,35,93,58,4
+8814,56,0,77,0,10,7,22,67,46,4
+8815,37,0,95,0,28,18,58,67,8,1
+8816,46,-1,78,0,46,0,32,32,0,1
+8817,56,0,81,6,-10,-7,25,92,66,4
+8818,51,9,95,-3,50,0,45,46,2,1
+8819,37,0,77,0,18,-15,40,59,18,1
+8820,37,0,78,0,10,-2,42,68,26,1
+8821,55,-2,98,0,44,0,42,54,12,4
+8822,56,0,99,-4,50,0,43,50,6,4
+8823,55,-1,97,-1,46,-2,42,51,8,4
+8824,37,0,77,0,18,-11,41,59,18,1
+8825,45,1,83,0,46,30,37,36,0,1
+8826,38,0,76,0,38,5,38,37,0,1
+8827,43,0,77,0,42,-17,34,35,2,1
+8828,37,-5,76,0,36,-23,38,39,2,1
+8829,47,-2,79,0,46,0,33,33,0,1
+8830,37,0,77,0,38,21,40,39,0,1
+8831,78,2,82,5,-42,0,4,126,122,5
+8832,56,5,98,6,46,-10,42,51,10,4
+8833,37,0,77,4,36,0,41,41,0,1
+8834,37,0,78,0,0,1,41,78,36,1
+8835,43,-2,76,0,44,14,33,32,0,1
+8836,37,0,83,-6,16,0,46,67,22,1
+8837,37,0,77,0,-4,-6,41,83,42,1
+8838,43,0,83,0,42,-12,40,42,2,1
+8839,39,0,81,0,38,0,42,42,0,1
+8840,48,0,86,0,50,27,38,37,0,1
+8841,46,4,85,3,44,-28,39,41,2,1
+8842,37,0,76,0,26,-25,39,50,12,1
+8843,53,5,84,0,54,2,31,30,0,1
+8844,53,0,102,0,52,-5,49,50,2,1
+8845,49,-3,77,0,50,14,29,28,0,1
+8846,43,-2,76,0,42,-8,33,35,2,1
+8847,41,0,76,0,42,11,34,34,0,1
+8848,48,-4,85,0,46,0,37,39,2,1
+8849,56,0,79,0,16,24,23,63,40,4
+8850,37,2,75,0,18,-16,38,57,18,1
+8851,55,0,77,0,-10,-8,21,87,66,4
+8852,37,0,93,0,10,-21,56,83,26,1
+8853,43,0,79,0,42,-9,35,37,2,1
+8854,55,0,78,0,16,1,23,63,40,4
+8855,51,0,102,0,52,7,51,50,0,1
+8856,55,0,95,1,44,16,40,51,12,4
+8857,52,5,81,0,52,0,30,30,0,1
+8858,56,0,92,3,50,0,36,43,6,4
+8859,51,0,84,2,50,-18,33,35,2,1
+8860,55,3,81,1,54,0,25,26,2,1
+8861,53,0,88,0,52,-29,35,37,2,1
+8862,55,0,77,1,-30,-17,22,108,86,4
+8863,37,0,81,0,20,-19,44,60,16,1
+8864,85,0,88,-36,0,0,3,88,84,5
+8865,46,1,86,-3,46,0,40,40,0,1
+8866,41,0,81,0,42,7,40,40,0,1
+8867,37,0,77,0,-18,-9,40,95,54,1
+8868,38,-3,80,0,38,0,42,41,0,1
+8869,41,-2,82,0,38,-7,41,43,2,1
+8870,37,0,79,0,8,19,42,71,28,1
+8871,42,3,76,0,42,0,34,35,2,1
+8872,37,-3,78,0,36,0,41,42,0,1
+8873,106,5,107,0,70,0,1,37,36,5
+8874,55,0,95,0,38,-4,40,57,16,4
+8875,45,0,87,0,46,19,42,41,0,1
+8876,37,0,104,0,16,-7,67,89,22,1
+8877,47,0,86,-1,46,-1,38,39,0,1
+8878,50,-2,83,0,50,0,33,34,2,1
+8879,49,-1,88,0,46,-20,39,41,2,1
+8880,50,0,85,-2,50,0,36,36,0,1
+8881,46,0,86,3,46,0,40,39,0,1
+8882,51,0,85,0,50,-8,34,36,2,1
+8883,50,2,86,-1,50,0,35,37,2,1
+8884,53,0,91,0,54,6,38,37,0,1
+8885,55,0,79,0,8,-30,23,71,48,4
+8886,37,1,75,0,20,18,38,54,16,1
+8887,39,1,83,1,38,0,44,44,0,1
+8888,55,0,95,0,54,6,40,41,2,1
+8889,41,0,79,0,42,24,38,37,0,1
+8890,43,0,80,-1,42,-4,37,39,2,1
+8891,49,-3,77,0,50,6,28,28,0,1
+8892,41,5,79,0,38,-22,38,40,2,1
+8893,42,-3,83,0,42,0,41,41,0,1
+8894,43,5,83,0,42,0,40,42,2,1
+8895,58,4,84,0,56,0,25,27,2,1
+8896,53,0,83,0,54,4,30,28,0,1
+8897,49,0,84,-2,50,-12,35,35,0,1
+8898,53,0,87,0,52,-3,34,35,2,1
+8899,55,0,98,0,42,-7,42,57,14,4
+8900,44,0,79,-5,42,-14,35,37,2,1
+8901,37,0,75,5,34,0,37,41,4,1
+8902,50,2,95,-6,50,0,45,46,0,1
+8903,54,0,81,0,54,0,28,27,0,1
+8904,41,0,81,0,42,31,40,39,0,1
+8905,43,3,86,0,42,0,44,45,2,1
+8906,56,2,87,0,56,0,31,30,0,1
+8907,46,4,79,0,46,5,33,32,0,1
+8908,37,-1,106,-3,28,-6,69,78,8,1
+8909,37,0,77,0,-24,-22,41,103,62,1
+8910,37,0,79,0,26,5,42,53,12,1
+8911,37,0,76,0,20,24,40,55,16,1
+8912,47,1,79,2,46,0,31,32,0,1
+8913,38,0,76,0,36,-29,38,39,2,1
+8914,37,0,77,0,16,8,41,62,22,1
+8915,55,0,95,0,38,-12,40,57,16,4
+8916,46,3,78,0,46,0,32,32,0,1
+8917,44,0,76,5,44,18,32,32,0,1
+8918,55,0,96,0,42,-25,41,55,14,4
+8919,39,1,93,-2,38,0,55,55,0,1
+8920,37,0,78,0,18,-30,42,60,18,1
+8921,45,-1,83,0,46,3,38,37,0,1
+8922,42,0,96,0,42,0,54,55,2,1
+8923,44,2,76,0,42,-14,32,34,2,1
+8924,55,-5,78,1,44,0,23,34,12,4
+8925,50,0,87,-3,50,0,37,38,2,1
+8926,53,0,86,0,52,-23,33,35,2,1
+8927,45,0,76,0,44,-17,31,32,2,1
+8928,42,-5,89,0,42,0,47,48,0,1
+8929,56,5,84,0,56,22,29,28,0,1
+8930,47,-4,100,0,46,0,53,54,0,1
+8931,46,0,77,2,46,1,32,31,0,1
+8932,106,-1,107,-3,70,0,1,37,36,5
+8933,44,3,80,0,42,-15,36,39,2,1
+8934,66,0,112,-2,68,3,46,45,0,1
+8935,45,0,86,0,46,12,40,39,0,1
+8936,46,0,84,0,44,-24,38,40,2,1
+8937,44,5,86,0,44,19,42,42,0,1
+8938,45,0,93,1,44,0,49,50,0,1
+8939,37,0,86,0,36,-2,48,50,2,1
+8940,52,-5,79,0,52,-1,26,27,0,1
+8941,44,0,81,0,44,8,38,37,0,1
+8942,37,0,78,0,6,-4,42,73,32,1
+8943,39,0,76,-1,38,-2,36,37,0,1
+8944,49,3,82,0,46,-3,33,35,2,1
+8945,44,0,87,5,44,0,43,43,0,1
+8946,44,1,79,0,44,0,35,35,0,1
+8947,44,0,83,0,42,-25,40,42,2,1
+8948,37,0,79,-1,10,-2,42,68,26,1
+8949,37,0,80,0,34,14,43,46,4,1
+8950,41,-3,76,0,42,0,34,34,0,1
+8951,55,0,79,0,54,-3,24,25,2,1
+8952,49,0,86,0,46,-5,37,39,2,1
+8953,37,0,77,0,36,-19,39,41,2,1
+8954,56,2,96,0,54,1,40,42,2,1
+8955,58,0,86,0,56,-5,27,29,2,1
+8956,45,0,106,-7,44,0,61,62,2,1
+8957,44,1,81,8,44,24,38,37,0,1
+8958,37,0,79,0,0,-1,42,79,36,1
+8959,53,0,84,0,54,8,32,30,0,1
+8960,53,0,103,0,52,-3,50,51,2,1
+8961,37,1,75,0,18,-1,38,57,18,1
+8962,37,0,107,0,36,-5,69,71,2,1
+8963,40,0,109,1,38,0,69,71,2,1
+8964,37,0,77,0,-2,-17,41,80,40,1
+8965,41,0,79,-2,38,-14,38,40,2,1
+8966,37,-1,76,0,38,9,39,37,0,1
+8967,37,0,104,2,18,0,66,86,20,1
+8968,45,-4,83,0,44,-1,38,39,2,1
+8969,45,0,76,0,46,10,30,29,0,1
+8970,37,0,82,0,30,-5,45,51,6,1
+8971,39,2,106,0,38,0,67,67,0,1
+8972,48,1,79,2,46,0,31,32,2,1
+8973,52,-5,83,0,52,-3,31,32,0,1
+8974,51,0,77,0,52,12,26,26,0,1
+8975,37,0,79,0,10,-19,42,69,26,1
+8976,45,0,88,0,44,-8,42,44,2,1
+8977,49,0,87,-2,50,20,38,38,0,1
+8978,56,0,81,5,-22,0,25,105,80,4
+8979,85,0,89,2,2,-6,4,86,82,5
+8980,46,0,76,2,46,3,30,29,0,1
+8981,81,-1,84,0,-14,2,4,100,96,5
+8982,56,4,97,0,46,-3,41,51,10,4
+8983,41,0,76,0,42,30,35,35,0,1
+8984,37,0,91,0,10,9,53,81,28,1
+8985,41,5,83,0,38,-17,41,44,2,1
+8986,51,0,88,3,52,5,36,36,0,1
+8987,51,-4,102,0,50,-18,51,53,2,1
+8988,49,0,95,8,46,-6,46,48,2,1
+8989,45,-2,107,0,46,16,62,60,0,1
+8990,55,0,83,-6,54,0,28,28,0,1
+8991,50,5,86,-4,50,0,36,37,0,1
+8992,55,-1,79,0,2,-26,23,76,52,4
+8993,39,0,76,-2,38,-3,37,37,0,1
+8994,56,3,93,1,46,0,37,46,10,4
+8995,43,-1,80,-5,44,18,37,36,0,1
+8996,37,5,76,0,20,0,39,55,16,1
+8997,49,0,84,0,50,28,36,35,0,1
+8998,56,1,96,2,46,0,40,50,10,4
+8999,56,0,96,0,36,7,40,60,20,4
+9000,55,0,83,2,-24,0,27,108,82,4
+9001,41,0,85,0,42,6,44,44,0,1
+9002,104,-4,105,-3,70,-21,1,35,34,5
+9003,46,-2,90,0,46,0,44,44,0,1
+9004,37,0,76,0,30,8,40,45,6,1
+9005,55,0,96,0,42,-12,41,55,14,4
+9006,51,0,81,0,50,-23,30,32,2,1
+9007,37,-1,80,0,20,9,43,59,16,1
+9008,37,0,103,0,34,7,66,69,4,1
+9009,42,5,79,0,42,0,36,37,2,1
+9010,43,-2,109,-7,42,-8,66,67,2,1
+9011,37,0,81,5,12,0,45,68,24,1
+9012,45,0,93,0,44,0,49,50,0,1
+9013,43,-2,79,0,42,0,37,38,2,1
+9014,56,0,81,0,-14,1,25,97,72,4
+9015,56,0,81,0,-6,-28,25,89,64,4
+9016,44,-2,86,-1,44,-1,42,42,0,1
+9017,37,-3,83,0,36,-9,46,47,2,1
+9018,55,0,81,0,-10,-2,25,91,66,4
+9019,56,-3,96,0,54,1,40,42,2,1
+9020,51,1,87,0,52,5,36,35,0,1
+9021,44,0,81,0,42,-16,37,39,2,1
+9022,53,-1,83,0,54,9,30,29,0,1
+9023,37,2,86,0,36,0,49,50,2,1
+9024,37,0,104,-1,24,5,67,81,14,1
+9025,81,1,86,0,-40,3,4,127,122,5
+9026,37,0,76,0,36,-12,39,40,2,1
+9027,43,0,79,0,42,-5,36,38,2,1
+9028,55,0,98,0,52,19,42,46,4,4
+9029,53,0,77,0,54,1,23,23,0,1
+9030,54,-1,86,0,54,0,32,32,0,1
+9031,37,0,76,0,30,-19,39,45,6,1
+9032,53,-1,80,0,52,-10,27,28,2,1
+9033,45,0,83,-2,44,-3,38,39,2,1
+9034,54,0,78,-7,54,0,24,24,0,1
+9035,42,0,81,0,42,21,39,40,0,1
+9036,41,0,86,0,42,30,46,45,0,1
+9037,45,0,81,0,46,13,35,34,0,1
+9038,52,-4,81,0,52,-1,29,30,0,1
+9039,41,0,77,1,38,0,36,38,2,1
+9040,37,0,94,0,8,-20,57,86,30,1
+9041,42,5,88,0,42,0,47,47,0,1
+9042,37,0,95,0,8,-8,58,87,30,1
+9043,53,0,87,0,52,-27,34,35,2,1
+9044,43,-1,75,0,42,-21,32,34,2,1
+9045,37,0,96,0,34,2,59,62,4,1
+9046,55,0,93,0,6,11,38,88,50,4
+9047,56,4,98,0,44,-6,42,54,12,4
+9048,37,0,78,0,20,-3,41,57,16,1
+9049,38,5,77,0,36,-6,39,41,2,1
+9050,56,0,86,0,56,10,31,30,0,1
+9051,50,5,79,2,50,0,28,30,2,1
+9052,38,3,76,0,36,-12,38,40,2,1
+9053,48,0,88,-3,46,-7,39,41,2,1
+9054,51,0,87,0,52,8,36,35,0,1
+9055,40,0,80,0,38,-3,40,41,2,1
+9056,53,0,86,0,54,10,33,32,0,1
+9057,41,0,78,0,42,11,37,37,0,1
+9058,56,5,97,-2,50,16,41,48,8,4
+9059,56,1,81,0,56,24,25,24,0,1
+9060,55,0,83,0,-28,0,27,111,84,4
+9061,38,0,91,0,6,-3,53,86,32,1
+9062,52,0,88,-2,52,-1,35,36,0,1
+9063,47,-1,85,2,46,0,38,39,0,1
+9064,50,0,77,0,50,-1,27,28,2,1
+9065,82,0,86,0,-40,5,4,128,124,5
+9066,45,0,81,0,46,26,36,35,0,1
+9067,55,0,77,0,28,9,22,49,26,4
+9068,56,0,80,-1,-4,0,24,85,62,4
+9069,39,0,107,-1,38,0,68,68,0,1
+9070,37,0,81,-6,-4,0,45,86,42,1
+9071,56,3,98,0,46,6,42,51,10,4
+9072,38,0,97,2,38,0,59,58,0,1
+9073,42,1,86,0,42,0,43,44,2,1
+9074,37,-5,107,0,36,-18,69,71,2,1
+9075,55,0,78,0,54,-4,23,24,2,1
+9076,40,0,79,2,38,0,39,40,2,1
+9077,42,0,86,-5,42,0,44,44,0,1
+9078,47,0,86,-2,46,-4,38,39,0,1
+9079,43,0,75,0,44,14,32,31,0,1
+9080,46,-4,78,-2,46,0,32,32,0,1
+9081,45,3,77,0,44,-1,32,34,2,1
+9082,37,0,82,0,36,27,45,46,2,1
+9083,45,2,108,0,44,-11,62,64,2,1
+9084,37,0,79,-2,26,-26,42,53,12,1
+9085,37,4,76,0,30,0,39,45,6,1
+9086,37,0,79,6,6,0,42,74,32,1
+9087,52,0,84,0,52,-13,31,32,0,1
+9088,49,-5,88,0,50,0,39,39,0,1
+9089,38,-3,81,0,38,0,42,42,0,1
+9090,56,-3,96,-3,52,0,40,44,4,4
+9091,56,0,96,0,54,-8,40,42,2,1
+9092,53,0,80,0,54,24,27,26,0,1
+9093,38,3,79,0,38,14,42,41,0,1
+9094,37,0,76,0,30,7,39,45,6,1
+9095,56,0,92,0,56,2,36,35,0,1
+9096,53,0,87,0,54,19,34,33,0,1
+9097,44,5,93,0,44,20,50,50,0,1
+9098,56,3,89,0,54,-8,33,35,2,1
+9099,45,0,89,-6,44,0,44,45,0,1
+9100,37,3,90,0,28,0,53,62,8,1
+9101,49,0,77,0,50,29,29,28,0,1
+9102,37,0,80,0,34,-3,43,46,2,1
+9103,50,1,82,-2,50,0,32,33,2,1
+9104,51,0,84,0,50,-21,33,35,2,1
+9105,37,0,95,2,8,0,58,87,30,1
+9106,55,0,77,0,-28,-6,21,105,84,4
+9107,46,2,88,0,46,0,42,42,0,1
+9108,55,0,90,0,54,-1,34,35,2,1
+9109,42,-2,86,2,42,0,44,45,2,1
+9110,41,0,89,0,38,-12,48,50,2,1
+9111,48,0,89,2,46,-5,41,42,2,1
+9112,37,5,79,0,28,1,42,51,8,1
+9113,48,-5,76,0,46,0,28,30,2,1
+9114,39,-1,83,1,38,0,44,44,0,1
+9115,56,0,77,0,-24,-3,21,103,82,4
+9116,37,0,80,0,10,-7,43,70,26,1
+9117,43,0,81,0,44,16,37,37,0,1
+9118,41,1,78,0,42,12,37,37,0,1
+9119,37,1,77,1,36,0,39,41,2,1
+9120,50,5,81,0,50,0,31,32,0,1
+9121,85,0,88,0,0,-11,3,88,86,5
+9122,44,2,77,0,44,10,33,33,0,1
+9123,44,0,86,0,42,-23,43,45,2,1
+9124,55,0,108,2,54,0,53,54,0,1
+9125,37,0,77,0,-4,21,41,83,42,1
+9126,40,1,77,0,38,0,37,39,2,1
+9127,55,0,93,0,6,13,38,88,50,4
+9128,105,7,106,2,72,7,1,34,34,5
+9129,37,0,77,-7,0,0,41,77,36,1
+9130,38,1,106,0,36,-19,68,70,2,1
+9131,37,0,77,0,12,19,40,64,24,1
+9132,37,0,78,0,20,-15,42,57,16,1
+9133,51,0,90,0,52,5,38,38,0,1
+9134,46,5,81,0,46,0,34,34,0,1
+9135,84,0,88,-2,6,-7,5,83,78,5
+9136,104,0,105,-3,70,0,1,35,34,5
+9137,53,0,83,0,52,-16,30,32,2,1
+9138,55,-2,98,0,46,5,42,51,8,4
+9139,46,0,79,0,46,6,34,33,0,1
+9140,37,0,104,-6,34,0,67,71,4,1
+9141,64,-3,111,1,62,-5,47,49,2,1
+9142,45,0,86,0,46,30,40,39,0,1
+9143,42,1,107,1,42,0,64,66,2,1
+9144,42,2,79,5,42,0,37,38,0,1
+9145,55,0,95,0,38,-23,40,57,16,4
+9146,45,0,83,0,44,-16,37,39,2,1
+9147,55,0,82,0,54,6,26,28,2,1
+9148,40,-5,86,0,38,0,46,47,2,1
+9149,79,1,83,6,-42,-20,5,127,122,5
+9150,41,-2,97,0,42,3,56,56,0,1
+9151,48,3,83,0,46,0,35,36,2,1
+9152,55,0,93,6,54,0,37,39,2,1
+9153,51,0,88,5,52,8,36,36,0,1
+9154,56,0,78,-2,6,-5,22,73,50,4
+9155,56,0,78,0,12,12,22,65,42,4
+9156,82,0,86,0,-10,12,3,96,92,5
+9157,40,-2,77,0,38,0,37,38,2,1
+9158,37,-3,78,0,-6,0,42,86,44,1
+9159,48,5,88,-6,46,0,40,41,2,1
+9160,45,5,77,0,44,-6,32,34,2,1
+9161,50,1,91,5,50,0,41,42,0,1
+9162,37,0,108,-17,28,0,70,79,8,1
+9163,49,2,81,0,50,1,32,32,0,1
+9164,41,0,89,-1,38,-15,48,50,2,1
+9165,46,1,79,3,46,0,33,33,0,1
+9166,37,0,77,-1,36,28,40,41,0,1
+9167,44,0,76,1,44,4,32,32,0,1
+9168,39,-1,86,-1,38,0,47,47,0,1
+9169,57,5,84,0,56,0,28,28,0,1
+9170,50,0,78,-4,50,0,28,29,0,1
+9171,42,0,77,6,42,0,35,36,2,1
+9172,45,0,77,0,44,-8,32,34,2,1
+9173,37,0,97,-2,30,0,60,66,6,1
+9174,53,0,83,0,52,-7,30,32,2,1
+9175,80,0,84,0,-36,-6,4,120,116,5
+9176,37,0,81,0,34,28,45,48,2,1
+9177,56,0,107,0,56,19,51,50,0,1
+9178,44,-1,81,7,44,0,37,37,0,1
+9179,37,0,76,6,26,-18,40,50,10,1
+9180,55,0,95,7,42,0,40,54,14,4
+9181,51,-4,80,0,50,-9,29,31,2,1
+9182,79,0,83,0,-38,15,4,122,118,5
+9183,45,-5,89,4,44,0,44,45,0,1
+9184,45,-3,88,0,44,0,43,44,2,1
+9185,47,4,79,0,46,0,32,32,0,1
+9186,47,-1,83,0,46,0,36,37,0,1
+9187,51,0,78,0,52,4,27,26,0,1
+9188,53,1,81,0,54,19,28,26,0,1
+9189,59,1,87,0,60,0,28,28,0,1
+9190,56,-5,90,2,56,0,34,33,0,1
+9191,37,0,76,0,26,1,39,50,12,1
+9192,37,0,76,0,36,6,39,39,0,1
+9193,45,1,86,0,44,-9,41,42,2,1
+9194,85,0,88,0,6,17,3,83,80,5
+9195,37,0,77,0,36,3,40,41,0,1
+9196,56,0,97,0,52,27,41,46,4,4
+9197,37,0,77,-1,20,-3,40,57,16,1
+9198,37,0,83,0,2,-1,46,80,34,1
+9199,41,-4,81,0,42,6,40,40,0,1
+9200,56,0,90,0,56,18,34,33,0,1
+9201,56,-4,91,-5,56,11,35,34,0,1
+9202,41,-1,81,0,38,-20,40,42,2,1
+9203,56,1,77,1,16,0,22,62,40,4
+9204,37,0,94,0,10,-7,57,84,26,1
+9205,44,1,88,0,44,15,44,44,0,1
+9206,56,-1,95,0,46,26,40,49,10,4
+9207,37,0,81,0,10,8,44,70,26,1
+9208,48,-2,83,0,46,-2,34,36,2,1
+9209,41,0,85,0,42,20,44,44,0,1
+9210,44,4,77,0,44,2,33,33,0,1
+9211,37,0,82,6,20,0,45,61,16,1
+9212,57,0,80,0,56,0,23,23,0,1
+9213,37,0,77,0,-18,0,41,96,54,1
+9214,55,0,77,4,-24,0,22,103,82,4
+9215,49,-2,83,2,50,0,34,34,0,1
+9216,50,1,102,0,50,0,52,53,0,1
+9217,37,0,76,0,34,-19,40,43,2,1
+9218,37,0,75,0,36,1,37,39,2,1
+9219,47,1,84,0,46,0,36,37,0,1
+9220,37,0,92,0,26,31,55,66,12,1
+9221,41,-1,80,0,42,9,39,39,0,1
+9222,53,0,78,3,54,16,25,24,0,1
+9223,41,0,77,6,42,14,36,35,0,1
+9224,42,-1,78,0,42,0,36,37,0,1
+9225,47,0,82,-6,46,0,35,35,0,1
+9226,42,0,81,-2,42,0,39,40,0,1
+9227,79,0,83,0,-30,14,4,114,110,5
+9228,56,-1,97,0,46,4,41,51,10,4
+9229,91,3049,106,-4,36,1,15,69,54,6
+9230,62,0,108,4,60,0,46,49,2,1
+9231,37,0,83,0,-4,-16,47,88,42,1
+9232,47,5,102,-5,46,0,55,55,0,1
+9233,55,-1,98,0,42,-3,42,57,14,4
+9234,37,0,80,0,18,31,43,62,18,1
+9235,37,-39,80,0,34,0,43,46,2,3
+9236,46,0,83,0,44,-29,37,39,2,1
+9237,45,0,80,0,44,-1,35,36,0,1
+9238,41,43,78,0,38,0,37,39,2,1
+9239,36,-4,75,0,36,0,39,39,0,1
+9240,51,1,86,0,52,4,35,35,0,1
+9241,102,-14,107,0,70,0,5,37,32,5
+9242,37,1,90,-1,6,0,53,85,32,1
+9243,38,0,109,0,38,9,72,71,0,1
+9244,37,0,83,0,0,4,47,83,36,1
+9245,45,4,102,0,44,-2,57,58,2,1
+9246,37,0,76,0,28,-29,39,47,8,1
+9247,46,2,86,-1,46,8,41,40,0,1
+9248,43,-5,86,0,44,8,42,42,0,1
+9249,45,-1,78,0,44,0,34,34,0,1
+9250,50,6,95,-4,50,0,45,46,2,1
+9251,45,2,84,0,44,0,40,41,2,1
+9252,37,0,79,-2,36,-10,41,43,2,1
+9253,37,0,79,0,26,-14,42,53,12,1
+9254,37,0,80,0,0,15,43,80,36,1
+9255,37,0,76,7,20,0,39,55,16,1
+9256,37,0,80,0,34,18,43,46,4,1
+9257,41,-3,81,0,42,11,41,40,0,1
+9258,46,-2,88,0,46,7,42,41,0,1
+9259,49,0,79,0,50,12,30,30,0,1
+9260,51,-5,80,0,50,-11,29,31,2,1
+9261,55,-2,87,0,54,-5,32,33,2,1
+9262,44,-1,82,1,44,0,38,38,0,1
+9263,37,0,82,-6,8,0,45,74,30,1
+9264,46,1,84,-3,46,13,39,38,0,1
+9265,55,-3,90,0,54,0,35,35,0,1
+9266,37,0,97,0,26,-30,60,71,12,1
+9267,50,0,84,0,50,0,34,35,2,1
+9268,43,0,89,0,42,-11,46,48,2,1
+9269,41,0,82,-1,38,0,41,43,2,1
+9270,44,1,88,0,44,8,44,44,0,1
+9271,38,0,76,0,38,14,38,37,0,1
+9272,37,0,109,2,26,0,71,83,12,1
+9273,45,-2,109,0,44,-5,64,66,2,1
+9274,104,-3,106,0,70,0,1,36,34,5
+9275,38,1,79,0,38,6,42,41,0,1
+9276,37,0,75,0,18,-6,38,57,18,1
+9277,37,0,95,0,10,13,58,84,26,1
+9278,56,1,95,0,54,-1,40,41,2,1
+9279,55,0,93,8,8,0,37,85,48,4
+9280,44,1,88,0,44,0,44,44,0,1
+9281,45,0,79,-7,44,0,33,35,2,1
+9282,56,1,97,0,46,0,41,50,10,4
+9283,47,-2,86,1,46,0,39,40,0,1
+9284,103,2,104,1,70,0,1,35,34,5
+9285,37,2,77,0,0,31,39,77,38,1
+9286,37,0,76,0,34,24,39,42,4,1
+9287,42,-4,76,0,42,0,34,35,0,1
+9288,55,-5,78,0,44,-4,23,34,12,4
+9289,59,0,86,0,56,-23,28,30,2,1
+9290,42,0,108,0,42,0,65,66,2,1
+9291,71,2,76,5,-42,-7,4,119,116,5
+9292,47,4,84,0,46,0,38,38,0,1
+9293,57,2,86,0,56,0,30,30,0,1
+9294,43,0,81,0,42,-4,37,39,2,1
+9295,49,0,95,0,50,26,47,46,0,1
+9296,41,-1,88,0,42,10,48,47,0,1
+9297,38,0,79,-1,38,5,41,40,0,1
+9298,53,-5,80,0,54,0,27,26,0,1
+9299,47,-2,78,2,46,0,31,32,0,1
+9300,40,1,107,2,38,0,67,68,2,1
+9301,41,-4,100,0,38,-23,59,61,2,1
+9302,57,0,97,0,56,0,40,40,0,1
+9303,56,0,98,0,44,31,42,54,12,4
+9304,56,4,92,0,56,17,36,35,0,1
+9305,78,0,83,1,-46,0,4,129,124,5
+9306,49,0,95,0,50,4,47,46,0,1
+9307,55,0,77,0,0,-27,22,77,56,4
+9308,39,0,81,8,38,0,42,43,0,1
+9309,37,0,79,0,20,4,41,58,16,1
+9310,37,-3,76,-2,20,-6,39,55,16,1
+9311,56,0,95,0,56,23,40,39,0,1
+9312,54,2,81,0,54,0,28,27,0,1
+9313,46,0,76,-4,46,0,30,29,0,1
+9314,39,1,90,0,38,0,50,51,0,1
+9315,37,0,80,0,18,-5,43,62,18,1
+9316,56,0,97,2,52,28,41,45,4,4
+9317,66,0,113,0,68,16,47,45,0,1
+9318,47,-2,79,3,46,0,32,32,0,1
+9319,55,-3,79,0,26,0,23,53,30,4
+9320,56,4,95,0,46,6,39,49,10,4
+9321,37,0,75,4,20,-10,38,54,16,1
+9322,37,0,77,0,28,27,41,49,8,1
+9323,54,0,87,2,54,0,33,33,0,1
+9324,37,0,80,0,30,18,43,49,6,1
+9325,45,-2,83,0,44,-14,38,39,2,1
+9326,37,-3,77,0,36,-20,39,41,2,1
+9327,55,0,93,0,16,-11,38,78,40,4
+9328,56,-5,79,0,56,1,23,22,0,1
+9329,44,1,85,0,44,0,41,41,0,1
+9330,101,0,102,0,72,10,1,29,28,5
+9331,53,0,104,0,54,6,50,49,0,1
+9332,41,2,107,0,42,31,66,66,0,1
+9333,41,0,76,-1,38,-12,35,37,2,1
+9334,55,-2,76,0,-14,0,21,92,70,4
+9335,45,-3,100,0,44,0,55,56,2,1
+9336,44,0,76,-3,42,-29,32,35,2,1
+9337,37,0,77,0,34,-6,41,44,2,1
+9338,41,3,81,0,42,3,40,40,0,1
+9339,84,0,88,-1,-2,-7,3,90,88,5
+9340,55,0,81,0,-6,-23,25,88,64,4
+9341,37,0,90,300,6,0,53,85,32,1
+9342,50,1,82,8,50,0,32,33,2,1
+9343,39,2,81,2,38,0,42,42,0,1
+9344,51,5,86,0,50,-12,35,37,2,1
+9345,41,0,83,0,42,2,42,42,0,1
+9346,37,-2,76,0,36,-12,38,39,2,1
+9347,51,0,89,4,52,5,38,37,0,1
+9348,45,-3,84,0,44,0,39,40,2,1
+9349,74,1,79,3,-42,0,4,123,118,5
+9350,37,0,79,0,24,9,42,55,14,1
+9351,44,0,87,1,44,1,43,43,0,1
+9352,51,-2,83,-2,50,-8,32,34,2,1
+9353,55,2,93,0,54,0,37,39,2,1
+9354,45,0,81,0,46,6,35,34,0,1
+9355,41,0,80,0,42,31,39,39,0,1
+9356,37,0,76,0,34,21,39,43,4,1
+9357,47,0,108,0,46,0,62,62,0,1
+9358,39,0,78,-3,38,0,39,39,0,1
+9359,56,0,77,0,46,23,22,31,10,4
+9360,50,-5,83,0,50,0,33,33,0,1
+9361,56,0,81,0,-10,-1,25,91,66,4
+9362,37,-4,104,0,36,-2,67,68,0,1
+9363,58,-4,86,0,56,0,28,29,2,1
+9364,41,0,87,3,42,28,46,46,0,1
+9365,37,0,103,0,26,14,66,77,12,1
+9366,43,0,80,-1,44,27,37,36,0,1
+9367,37,0,77,0,28,2,40,48,8,1
+9368,37,1,90,0,28,5,53,62,8,1
+9369,37,0,79,0,10,13,42,69,26,1
+9370,81,1,85,0,-40,12,4,126,122,5
+9371,104,-3,105,0,72,8,1,33,32,5
+9372,46,0,77,-1,46,-2,31,30,0,1
+9373,37,0,75,0,26,-10,38,49,12,1
+9374,46,0,83,-2,46,9,37,36,0,1
+9375,43,0,76,0,42,-2,33,35,2,1
+9376,37,0,77,1,28,7,41,49,8,1
+9377,48,3,77,0,46,0,29,31,2,1
+9378,40,3,79,0,38,0,38,40,2,1
+9379,60,0,109,0,60,0,49,49,0,1
+9380,37,0,105,0,36,0,68,69,2,1
+9381,37,0,96,0,12,-10,59,83,24,1
+9382,40,0,78,0,38,-4,38,39,2,1
+9383,49,-5,83,0,50,2,34,34,0,1
+9384,41,0,87,3,42,21,46,46,0,1
+9385,37,0,83,0,18,4,47,65,18,1
+9386,56,0,98,0,44,6,42,54,12,4
+9387,55,0,92,0,8,-12,37,84,48,4
+9388,37,0,80,-2,26,0,43,54,10,1
+9389,59,0,84,0,56,-28,25,27,2,1
+9390,45,-2,80,0,44,0,35,36,0,1
+9391,56,9,75,13,-2,24,19,77,58,4
+9392,37,-3,90,0,28,2,53,62,8,1
+9393,37,0,76,2,36,-24,39,40,2,1
+9394,53,0,87,-3,54,1,34,33,0,1
+9395,42,0,78,0,42,0,36,37,2,1
+9396,51,0,110,8,50,0,59,61,2,1
+9397,43,0,83,0,42,-23,40,42,2,1
+9398,37,0,81,0,8,-1,44,73,28,1
+9399,84,-1,88,-3,6,-9,5,83,78,5
+9400,52,0,88,0,52,-4,36,37,0,1
+9401,56,-1,95,-1,44,27,40,51,12,4
+9402,56,0,90,0,54,-26,34,35,2,1
+9403,45,0,87,5,46,15,42,41,0,1
+9404,51,0,86,-2,52,8,35,35,0,1
+9405,37,0,104,0,24,14,67,80,14,1
+9406,37,0,76,0,36,-26,38,39,2,1
+9407,46,5,87,0,46,0,41,41,0,1
+9408,37,0,78,0,36,-17,41,42,2,1
+9409,37,0,93,0,12,29,56,81,24,1
+9410,77,3,82,8,-40,19,5,123,118,5
+9411,56,0,97,5,54,0,41,42,2,1
+9412,58,-4,84,0,56,-1,25,27,2,1
+9413,56,0,95,0,50,-24,39,46,6,4
+9414,37,0,75,0,20,-15,38,54,16,1
+9415,42,0,85,-6,42,0,43,44,2,1
+9416,56,-1,96,0,50,1,40,47,6,4
+9417,44,0,79,-5,44,0,35,35,0,1
+9418,37,0,104,0,20,-24,67,83,16,1
+9419,66,0,112,-1,68,6,46,45,0,1
+9420,42,-3,81,0,42,0,39,40,0,1
+9421,41,2,88,0,42,10,47,47,0,1
+9422,55,0,77,0,38,-23,22,39,16,4
+9423,37,0,79,-3,12,1,42,66,24,1
+9424,55,0,97,0,44,-5,41,53,12,4
+9425,48,0,94,0,46,-2,46,48,2,1
+9426,52,0,88,-3,52,0,36,36,0,1
+9427,37,5,77,0,-22,16,40,101,60,1
+9428,44,3,84,0,42,-17,40,43,2,1
+9429,48,-4,88,0,46,-5,39,41,2,1
+9430,56,0,81,3,56,0,24,24,0,1
+9431,37,0,103,0,24,17,66,80,14,1
+9432,37,0,81,0,36,-20,44,45,2,1
+9433,82,0,86,0,-40,7,4,128,124,5
+9434,56,0,81,0,-10,0,25,92,66,4
+9435,55,-1,96,0,50,-21,41,47,6,4
+9436,45,3,79,0,44,-6,33,35,2,1
+9437,107,3,108,0,70,0,1,38,36,5
+9438,37,0,79,0,34,-13,43,46,2,1
+9439,37,0,79,2,28,10,43,51,8,1
+9440,41,0,82,-6,42,28,41,41,0,1
+9441,57,2,97,0,56,1,40,40,0,1
+9442,55,0,93,0,50,8,37,44,6,4
+9443,50,-4,86,4,50,0,36,37,0,1
+9444,43,0,86,2,42,0,43,45,2,1
+9445,52,0,82,0,52,-9,29,30,0,1
+9446,45,0,88,5,44,6,43,44,2,1
+9447,70,-29,107,0,60,-10,37,47,10,3
+9448,45,0,85,0,44,-5,40,41,2,1
+9449,49,0,87,0,50,24,38,38,0,1
+9450,52,0,103,1,52,-7,51,51,0,1
+9451,41,1,93,0,42,4,52,52,0,1
+9452,56,0,82,0,54,-17,26,28,2,1
+9453,37,-1,79,-3,36,-7,42,43,2,1
+9454,46,1,82,0,44,-16,36,38,2,1
+9455,45,0,74,0,44,0,30,30,0,1
+9456,56,0,95,0,46,2,40,49,10,4
+9457,37,0,96,0,18,12,59,78,18,1
+9458,45,0,81,0,44,-27,35,37,2,1
+9459,37,0,76,0,38,2,39,37,0,1
+9460,42,0,81,-4,42,0,39,40,2,1
+9461,55,-2,77,0,16,-6,22,62,40,4
+9462,50,5,87,0,50,0,37,38,0,1
+9463,85,0,88,0,2,7,3,86,82,5
+9464,54,0,89,0,54,0,35,35,0,1
+9465,40,0,84,-4,38,0,45,46,2,1
+9466,41,0,82,0,38,-5,41,43,2,1
+9467,37,0,80,-3,20,0,43,59,16,1
+9468,44,1,75,0,44,4,31,31,0,1
+9469,50,-5,79,0,50,0,29,30,0,1
+9470,44,0,81,0,42,-25,38,40,2,1
+9471,41,2,78,0,38,-35,37,39,2,1
+9472,51,-4,81,0,50,-15,30,32,2,1
+9473,56,0,95,0,42,27,40,54,14,4
+9474,41,0,86,-2,38,0,46,48,2,1
+9475,46,-4,79,0,46,5,33,32,0,1
+9476,55,2,77,0,54,0,22,23,2,1
+9477,46,0,86,0,44,-16,41,42,2,1
+9478,37,0,81,0,24,-8,45,58,14,1
+9479,38,3,102,0,38,18,64,63,0,1
+9480,56,0,77,0,-22,-3,21,100,80,4
+9481,39,0,80,-5,38,0,41,41,0,1
+9482,39,0,79,0,38,0,39,40,0,1
+9483,37,0,79,1,6,0,42,74,32,1
+9484,56,0,81,0,-10,-4,25,92,66,4
+9485,67,-4,109,-2,68,0,43,42,0,1
+9486,37,0,109,4,34,0,72,75,4,1
+9487,66,0,112,0,68,5,46,45,0,1
+9488,42,0,89,4,42,0,47,48,2,1
+9489,47,-2,88,2,46,-2,40,41,0,1
+9490,42,1,87,5,42,0,45,46,0,1
+9491,45,-1,81,0,44,-24,35,37,2,1
+9492,55,0,77,0,-2,10,21,79,58,4
+9493,44,1,79,0,42,-25,35,37,2,1
+9494,55,0,96,3,54,0,41,42,2,1
+9495,37,0,107,0,30,31,69,76,6,1
+9496,46,0,88,0,46,11,43,42,0,1
+9497,44,0,82,0,44,19,38,38,0,1
+9498,37,0,78,0,8,21,42,70,28,1
+9499,37,0,108,0,30,-10,71,77,6,1
+9500,37,0,77,0,10,4,40,66,26,1
+9501,37,0,79,0,26,5,42,53,10,1
+9502,44,1,80,0,44,13,36,36,0,1
+9503,44,0,86,4,44,17,42,42,0,1
+9504,47,0,95,-7,46,0,48,48,0,1
+9505,37,0,76,0,36,-4,39,40,2,1
+9506,37,0,80,0,12,25,43,67,24,1
+9507,37,0,83,0,2,3,46,81,34,1
+9508,37,0,80,0,36,11,43,44,0,1
+9509,51,0,109,1,50,-15,58,60,2,1
+9510,51,0,87,-3,52,1,36,35,0,1
+9511,46,1,87,0,46,16,41,41,0,1
+9512,55,0,95,0,36,-7,39,59,20,4
+9513,46,0,88,0,46,17,42,41,0,1
+9514,41,0,81,2,42,26,41,40,0,1
+9515,37,0,106,-9,26,0,69,80,12,1
+9516,55,0,77,0,-28,-11,21,105,84,4
+9517,51,-3,86,0,52,21,35,34,0,1
+9518,56,0,77,0,16,-12,22,62,40,4
+9519,46,-1,77,1,46,1,32,31,0,1
+9520,46,2,79,0,44,-24,33,35,2,1
+9521,49,1,82,0,46,-10,33,35,2,1
+9522,52,0,80,3,52,0,28,28,0,1
+9523,45,-1,107,0,46,14,62,60,0,1
+9524,48,0,88,6,46,0,39,41,2,1
+9525,37,0,79,0,20,5,43,59,16,1
+9526,56,-1,98,7,46,0,42,51,10,4
+9527,37,0,77,3,34,-5,40,43,2,1
+9528,45,-1,76,0,46,21,30,29,0,1
+9529,48,0,87,-5,46,0,39,41,2,1
+9530,48,0,86,3,46,0,39,40,2,1
+9531,47,0,90,5,46,0,43,43,0,1
+9532,37,0,77,0,24,-3,40,54,14,1
+9533,37,0,105,0,24,11,68,82,14,1
+9534,43,0,76,2,42,-1,33,35,2,1
+9535,48,4,87,0,46,0,39,41,2,1
+9536,52,0,102,2,52,0,50,51,0,1
+9537,46,5,79,0,46,9,33,32,0,1
+9538,55,0,82,0,-22,-2,26,105,78,4
+9539,37,0,97,5,34,0,59,63,4,1
+9540,56,0,95,0,52,0,39,43,4,4
+9541,53,0,84,0,54,6,30,30,0,1
+9542,37,0,77,0,28,29,40,48,8,1
+9543,46,0,79,0,46,9,34,33,0,1
+9544,79,0,83,0,-42,8,4,127,122,5
+9545,37,0,79,1,24,0,42,55,14,1
+9546,53,0,86,0,52,-17,33,35,2,1
+9547,37,4,106,0,36,0,69,70,0,1
+9548,37,0,77,0,2,18,40,74,34,1
+9549,43,0,85,0,42,-9,42,44,2,1
+9550,41,0,77,0,38,-26,37,39,2,1
+9551,37,0,82,0,38,7,45,43,0,1
+9552,37,0,79,-1,34,-2,42,46,4,1
+9553,37,-4,82,4,-4,0,45,87,42,1
+9554,55,0,92,-1,36,-8,37,56,20,4
+9555,37,0,83,0,10,-22,46,72,26,1
+9556,45,-5,86,0,44,-2,41,42,2,1
+9557,55,-3,80,-2,20,-5,25,59,34,4
+9558,56,0,92,0,50,-22,36,43,6,4
+9559,41,0,79,-4,42,25,38,37,0,1
+9560,45,0,87,0,44,-21,42,43,2,1
+9561,45,5,108,0,44,0,63,64,2,1
+9562,53,0,84,0,54,7,31,30,0,1
+9563,43,-2,83,0,42,-13,40,42,2,1
+9564,41,0,78,6,42,0,37,37,0,1
+9565,47,-1,84,-1,46,-1,37,37,0,1
+9566,37,5,76,0,38,31,39,37,0,1
+9567,56,-2,95,0,46,0,40,49,10,4
+9568,37,0,105,4,18,17,68,87,18,1
+9569,49,0,95,0,50,5,47,46,0,1
+9570,56,0,92,0,54,8,36,38,2,1
+9571,49,0,81,5,50,0,32,32,0,1
+9572,39,3,106,0,38,0,68,67,0,1
+9573,46,-3,90,0,46,6,44,44,0,1
+9574,47,0,88,5,46,0,41,42,0,1
+9575,43,0,79,1,42,-10,35,37,2,1
+9576,56,2,81,3,-4,0,25,86,62,4
+9577,41,0,77,0,38,-4,37,39,2,1
+9578,56,0,95,0,52,2,40,44,4,4
+9579,45,0,83,0,44,-6,37,39,2,1
+9580,44,2,76,0,44,1,32,32,0,1
+9581,56,0,97,2,46,0,41,50,10,4
+9582,37,0,104,0,18,2,66,86,20,1
+9583,48,-4,95,0,50,30,47,46,0,1
+9584,37,0,83,8,10,-4,47,73,26,1
+9585,44,0,77,3,44,1,34,34,0,1
+9586,36,2,83,0,36,16,47,47,0,1
+9587,55,0,76,0,-14,3,21,92,70,4
+9588,55,0,96,0,42,-16,41,55,14,4
+9589,67,0,112,0,68,0,45,45,0,1
+9590,55,0,81,0,56,27,25,24,0,1
+9591,37,0,76,-2,28,-5,40,48,8,1
+9592,37,3,104,0,18,7,66,86,20,1
+9593,45,-4,77,0,44,0,32,33,0,1
+9594,56,0,95,0,46,21,40,49,10,4
+9595,51,0,88,4,52,0,36,36,0,1
+9596,55,0,79,0,12,13,23,66,42,4
+9597,53,0,88,8,54,0,35,34,0,1
+9598,53,-2,87,0,54,2,34,33,0,1
+9599,46,1,76,3,46,0,30,30,0,1
+9600,49,0,84,0,50,0,35,35,0,1
+9601,46,0,83,0,46,12,37,36,0,1
+9602,37,0,76,2,38,11,39,37,0,1
+9603,47,5,93,0,46,0,47,47,0,1
+9604,37,0,83,0,2,-30,46,80,34,1
+9605,45,0,77,0,44,-15,32,34,2,1
+9606,51,0,87,0,52,0,36,35,0,1
+9607,55,0,78,0,6,25,23,73,50,4
+9608,37,0,77,0,18,14,40,59,18,1
+9609,63,2,110,1,62,0,47,48,0,1
+9610,55,0,78,0,16,-12,23,63,40,4
+9611,82,1,86,0,-40,6,4,128,124,5
+9612,54,1,81,-4,54,0,27,26,0,1
+9613,56,0,77,0,24,-1,22,54,32,4
+9614,56,0,108,4,56,22,52,51,0,1
+9615,53,0,87,0,54,8,34,33,0,1
+9616,37,0,80,-3,38,21,43,41,0,1
+9617,37,-52,76,0,36,0,39,40,2,3
+9618,55,0,77,0,28,10,22,49,26,4
+9619,55,0,79,-7,20,-1,24,59,34,4
+9620,41,-4,81,0,38,-25,41,43,2,1
+9621,37,0,81,-2,34,0,43,47,4,1
+9622,101,0,102,-7,72,0,1,29,28,5
+9623,56,4,76,0,-18,-30,20,94,74,4
+9624,41,1,86,0,42,10,45,45,0,1
+9625,46,0,81,0,46,3,35,34,0,1
+9626,37,0,76,0,36,-19,39,40,2,1
+9627,63,-3,111,0,62,0,47,49,2,1
+9628,48,0,82,8,46,0,34,35,2,1
+9629,56,-1,90,0,56,0,34,33,0,1
+9630,43,-1,79,0,42,-11,35,37,2,1
+9631,44,1,95,0,44,15,52,51,0,1
+9632,55,-2,98,0,44,-9,42,54,12,4
+9633,50,0,87,0,50,0,37,38,2,1
+9634,56,0,99,3,46,0,42,52,10,4
+9635,44,1,76,0,44,4,31,32,0,1
+9636,81,0,84,0,-20,3,4,105,102,5
+9637,107,0,108,0,72,3,1,35,34,5
+9638,37,0,83,0,34,19,46,49,4,1
+9639,54,0,84,-3,54,0,30,30,0,1
+9640,54,-4,108,0,54,0,54,53,0,1
+9641,46,0,86,-38,46,0,40,40,0,1
+9642,55,0,92,0,28,7,36,63,28,4
+9643,45,0,80,0,46,31,35,34,0,1
+9644,56,0,81,0,-10,8,25,92,66,4
+9645,53,0,82,0,52,-3,29,30,2,1
+9646,48,-1,86,0,46,0,39,40,2,1
+9647,38,0,83,0,38,11,45,44,0,1
+9648,56,0,97,-2,50,26,41,48,6,4
+9649,56,0,80,0,0,24,24,80,56,4
+9650,42,2,86,-1,42,-1,44,44,0,1
+9651,66,0,109,0,64,-4,43,45,2,1
+9652,53,0,84,0,52,-5,31,32,2,1
+9653,42,-5,83,0,42,0,41,42,2,1
+9654,37,4,77,0,36,19,40,41,0,1
+9655,80,-2,84,0,-22,-30,4,108,104,5
+9656,41,-1,78,0,42,5,37,37,0,1
+9657,37,0,74,0,30,4,37,43,6,1
+9658,50,0,82,-1,50,0,32,33,0,1
+9659,48,2,106,0,46,0,58,60,2,1
+9660,37,0,75,0,30,15,38,44,6,1
+9661,41,-4,84,0,42,0,43,43,0,1
+9662,46,5,87,1,46,1,41,41,0,1
+9663,50,0,77,0,50,0,26,28,2,1
+9664,37,0,96,6,24,0,59,73,14,1
+9665,43,-1,81,0,44,11,37,37,0,1
+9666,37,0,79,0,8,9,42,71,30,1
+9667,55,0,80,7,20,-8,25,59,34,4
+9668,56,0,92,-2,0,0,36,92,56,4
+9669,37,0,79,0,16,28,43,64,22,1
+9670,37,0,77,0,-2,4,41,80,40,1
+9671,56,0,76,0,-12,4,20,89,68,4
+9672,37,0,83,0,10,6,46,72,26,1
+9673,37,0,76,-5,34,-6,40,43,2,1
+9674,56,4,95,-2,42,0,39,54,14,4
+9675,42,0,77,-3,42,0,34,35,2,1
+9676,57,0,80,-7,56,0,23,23,0,1
+9677,55,0,82,0,-38,2,26,121,94,4
+9678,37,0,95,0,10,20,58,84,26,1
+9679,56,-2,86,0,56,0,29,29,0,1
+9680,53,0,88,4,54,0,35,34,0,1
+9681,45,3,84,0,44,0,39,41,2,1
+9682,39,0,93,4,34,1,55,60,6,1
+9683,37,1,90,0,24,4,52,66,14,1
+9684,37,0,77,0,20,3,40,56,16,1
+9685,81,0,84,0,-22,0,3,108,104,5
+9686,41,-4,86,-2,42,0,45,44,0,1
+9687,54,3,77,0,54,0,23,23,0,1
+9688,51,0,79,0,52,16,27,27,0,1
+9689,37,0,77,0,12,-9,40,64,24,1
+9690,50,-1,102,0,50,0,51,53,2,1
+9691,49,0,77,0,46,-7,29,31,2,1
+9692,45,3,87,0,44,0,42,43,2,1
+9693,58,2,84,0,56,0,27,28,0,1
+9694,37,0,106,2,28,-33,69,78,8,1
+9695,37,0,77,0,28,-18,40,48,8,1
+9696,41,3,75,0,42,17,34,34,0,1
+9697,41,-1,82,0,38,-4,41,43,2,1
+9698,40,-4,100,1,38,0,61,62,2,1
+9699,41,0,88,0,42,15,48,47,0,1
+9700,49,0,87,2,50,11,38,38,0,1
+9701,80,0,85,8,-40,12,5,126,122,5
+9702,51,5,81,0,50,-19,30,32,2,1
+9703,37,0,77,-2,-12,-1,40,90,50,1
+9704,43,-2,83,0,42,-9,39,41,2,1
+9705,37,0,79,-7,24,0,42,55,14,1
+9706,50,0,91,1,50,0,41,42,0,1
+9707,55,0,79,0,8,-18,23,71,48,4
+9708,37,0,96,0,30,11,59,65,6,1
+9709,37,0,100,0,36,-4,63,64,2,1
+9710,41,0,86,2,42,13,46,45,0,1
+9711,43,-32,91,0,2,0,48,88,40,3
+9712,37,0,108,0,34,-30,71,75,4,1
+9713,45,0,81,0,44,-28,36,37,2,1
+9714,56,0,96,1,54,0,40,42,2,1
+9715,50,-1,88,0,50,0,39,39,0,1
+9716,37,16,77,-5,-22,6,41,101,60,1
+9717,48,-3,110,0,46,-3,62,64,2,1
+9718,47,-4,84,-2,46,0,37,38,0,1
+9719,37,0,90,0,24,15,52,66,14,1
+9720,48,0,84,-1,46,-3,36,38,2,1
+9721,40,1,86,0,38,0,47,48,2,1
+9722,46,-3,86,0,46,0,40,39,0,1
+9723,53,0,86,0,52,-24,32,34,2,1
+9724,47,0,107,0,46,0,59,60,0,1
+9725,45,5,86,-2,44,0,41,42,2,1
+9726,37,0,97,0,30,-27,60,66,6,1
+9727,49,0,88,0,46,-30,39,41,2,1
+9728,43,0,85,0,44,28,42,41,0,1
+9729,37,0,76,3,28,-14,40,48,8,1
+9730,37,0,90,0,36,6,53,54,2,1
+9731,37,0,77,0,36,16,40,41,2,1
+9732,48,0,77,0,50,20,28,28,0,1
+9733,37,0,97,0,28,13,60,69,8,1
+9734,48,3,81,0,46,0,33,34,2,1
+9735,56,0,97,0,50,-18,41,48,6,4
+9736,45,-4,85,-1,44,0,41,41,0,1
+9737,56,1,98,0,44,-16,42,54,12,4
+9738,58,-2,82,0,56,0,24,25,0,1
+9739,46,0,83,1,46,0,37,37,0,1
+9740,66,1,112,-4,68,6,46,45,0,1
+9741,56,0,96,2,46,0,40,50,10,4
+9742,45,0,88,4,44,5,43,44,2,1
+9743,41,2,78,0,38,0,37,39,2,1
+9744,43,-4,78,0,42,0,35,37,2,1
+9745,37,0,92,6,10,0,54,81,28,1
+9746,50,4,90,0,50,0,41,41,0,1
+9747,48,4,78,0,46,0,30,32,2,1
+9748,53,4,86,0,52,-4,33,34,2,1
+9749,37,0,106,-15,28,0,69,77,8,1
+9750,41,-3,86,0,38,-10,45,47,2,1
+9751,51,5,86,0,52,25,35,34,0,1
+9752,41,0,79,0,42,10,39,38,0,1
+9753,56,5,99,0,46,0,43,52,10,4
+9754,41,46,78,0,38,-222,37,39,2,1
+9755,42,0,77,3,42,0,35,36,0,1
+9756,56,1,97,0,42,0,40,55,14,4
+9757,50,0,86,-7,50,0,36,37,0,1
+9758,37,0,77,0,20,-7,40,56,16,1
+9759,37,0,81,0,10,-26,45,71,26,1
+9760,55,-1,82,-3,-20,15,26,103,76,4
+9761,37,0,104,0,16,-22,67,88,22,1
+9762,43,0,85,7,42,-14,42,44,2,1
+9763,37,0,96,0,30,2,59,65,6,1
+9764,55,1,86,0,54,0,31,32,2,1
+9765,49,0,87,4,50,18,38,38,0,1
+9766,49,1,82,0,46,-1,33,35,2,1
+9767,37,0,98,0,28,-10,61,70,8,1
+9768,41,-1,82,0,42,10,41,41,0,1
+9769,37,0,102,-7,36,0,64,66,2,1
+9770,41,3,77,0,42,31,37,36,0,1
+9771,37,0,97,0,26,-20,60,71,12,1
+9772,55,0,95,0,36,-1,39,59,20,4
+9773,51,1,80,0,52,20,29,28,0,1
+9774,56,0,96,0,54,5,40,42,2,1
+9775,38,0,86,0,38,10,48,47,0,1
+9776,55,0,78,0,8,7,23,70,48,4
+9777,37,0,76,2,28,-6,39,47,8,1
+9778,101,0,102,0,72,0,1,29,28,5
+9779,46,-1,76,-5,46,0,30,29,0,1
+9780,49,0,84,6,50,0,35,35,0,1
+9781,37,0,79,0,30,-9,43,48,6,1
+9782,43,0,81,0,42,-13,37,39,2,1
+9783,37,0,92,-7,16,-6,55,77,22,1
+9784,56,0,98,0,44,15,42,54,12,4
+9785,55,0,79,-1,26,12,23,53,30,4
+9786,47,0,79,8,46,0,31,32,0,1
+9787,51,0,86,0,50,-15,35,37,2,1
+9788,42,5,86,3,42,0,44,45,2,1
+9789,55,1,79,0,44,31,24,35,10,4
+9790,37,0,104,0,28,30,66,75,8,1
+9791,44,0,79,-7,44,0,35,35,0,1
+9792,45,3,79,0,44,-3,33,35,2,1
+9793,46,0,87,2,46,0,41,41,0,1
+9794,52,-3,80,0,52,0,28,28,0,1
+9795,36,-2,75,0,36,0,39,39,0,1
+9796,104,-1,105,-1,70,0,1,35,34,5
+9797,45,0,90,0,44,-4,45,46,2,1
+9798,56,0,92,0,56,16,36,35,0,1
+9799,40,-2,100,5,38,-1,60,62,2,1
+9800,51,1,87,2,52,9,36,35,0,1
+9801,39,-5,77,0,38,0,38,39,0,1
+9802,55,-4,78,0,16,-8,23,63,40,4
+9803,63,-5,111,0,62,0,49,49,0,1
+9804,41,3,86,0,38,0,46,48,2,1
+9805,37,0,82,-1,-2,8,45,85,40,1
+9806,45,3,81,0,44,0,36,37,0,1
+9807,52,-3,85,0,52,0,33,33,0,1
+9808,37,0,76,4,26,0,39,50,10,1
+9809,50,-2,110,2,50,0,60,61,2,1
+9810,43,7,85,-3,42,-5,42,44,2,1
+9811,38,1,86,0,38,7,49,48,0,1
+9812,50,-3,81,5,50,0,32,32,0,1
+9813,57,-2,88,-1,56,0,31,31,0,1
+9814,51,0,88,0,50,-4,37,39,2,1
+9815,58,3,87,0,56,0,30,30,0,1
+9816,41,-5,86,0,38,-11,45,47,2,1
+9817,37,0,104,0,24,11,67,80,14,1
+9818,37,0,107,0,28,-3,70,78,8,1
+9819,45,0,86,-1,44,-10,40,42,2,1
+9820,56,2,96,0,54,4,40,42,2,1
+9821,41,0,75,0,42,23,34,34,0,1
+9822,52,0,79,0,52,-11,26,27,0,1
+9823,37,-4,106,0,34,5,69,72,4,1
+9824,51,0,88,0,52,1,37,37,0,1
+9825,56,1,81,0,-6,6,25,88,64,4
+9826,55,0,95,0,52,-11,40,44,4,4
+9827,37,0,92,-1,18,-4,55,74,20,1
+9828,45,0,81,6,44,0,36,37,2,1
+9829,42,0,82,-4,42,0,40,41,0,1
+9830,53,3,84,0,54,3,30,30,0,1
+9831,37,0,76,0,26,-2,39,50,12,1
+9832,37,0,96,0,36,-10,59,60,2,1
+9833,37,0,79,-1,8,0,43,72,28,1
+9834,82,-1,86,0,-4,-10,3,91,88,5
+9835,55,0,95,0,42,27,40,54,14,4
+9836,43,0,79,0,44,11,35,35,0,1
+9837,55,0,77,0,-30,-30,22,108,86,4
+9838,37,0,77,0,26,26,40,51,12,1
+9839,37,0,83,0,34,10,46,49,2,1
+9840,45,0,85,0,44,179,41,41,0,1
+9841,49,0,87,-4,46,-9,38,41,2,1
+9842,41,-5,86,-1,38,-17,45,47,2,1
+9843,49,-3,101,0,50,0,52,52,0,1
+9844,38,0,77,-3,38,0,39,38,0,1
+9845,51,0,77,0,52,12,26,25,0,1
+9846,44,2,88,0,44,7,45,44,0,1
+9847,55,0,95,-2,46,0,40,49,8,4
+9848,45,-4,77,0,46,7,32,31,0,1
+9849,37,0,83,0,6,-6,47,78,32,1
+9850,56,0,76,0,-10,10,20,86,66,4
+9851,41,-3,82,1,42,0,41,41,0,1
+9852,51,0,81,-1,52,3,30,30,0,1
+9853,37,0,101,1,28,-25,64,73,8,1
+9854,44,0,76,0,42,-26,32,34,2,1
+9855,40,1,81,1,38,0,41,43,2,1
+9856,82,-2,86,0,-40,0,5,128,124,5
+9857,37,4,100,0,28,0,63,72,8,1
+9858,44,0,83,0,44,0,38,39,0,1
+9859,43,1,76,0,44,31,33,32,0,1
+9860,37,0,95,-7,16,-14,58,80,22,1
+9861,37,0,78,0,-4,-11,42,83,42,1
+9862,55,0,88,7,56,15,32,31,0,1
+9863,50,-5,78,-5,50,0,28,29,2,1
+9864,43,5,76,0,42,0,33,34,2,1
+9865,37,0,96,0,20,6,59,75,16,1
+9866,56,0,76,0,-10,6,20,86,66,4
+9867,41,4,102,0,42,7,61,60,0,1
+9868,56,0,81,0,-6,31,25,88,64,4
+9869,55,0,77,-4,10,2,22,67,46,4
+9870,37,0,78,0,20,-1,42,57,16,1
+9871,37,0,76,-4,36,2,40,40,0,1
+9872,51,0,78,0,52,8,27,26,0,1
+9873,49,1,86,0,46,-14,37,39,2,1
+9874,41,1,77,0,42,31,37,36,0,1
+9875,55,5,82,0,54,0,26,28,2,1
+9876,44,0,81,0,44,15,38,37,0,1
+9877,46,3,81,0,46,15,35,35,0,1
+9878,37,-2,79,0,26,11,42,53,12,1
+9879,77,5,81,0,-42,0,4,125,120,5
+9880,37,0,81,-2,28,0,44,52,8,1
+9881,37,0,95,8,10,5,57,84,28,1
+9882,46,0,83,0,46,0,37,37,0,1
+9883,45,-1,76,0,46,12,31,30,0,1
+9884,56,0,81,0,54,-16,25,27,2,1
+9885,44,0,76,0,44,5,31,32,0,1
+9886,37,0,76,0,28,26,40,48,8,1
+9887,37,-1,78,8,0,7,41,78,36,1
+9888,45,0,87,-7,44,0,42,43,2,1
+9889,45,0,79,0,44,-1,34,35,0,1
+9890,41,-4,78,0,42,0,37,37,0,1
+9891,53,0,86,1,54,3,33,32,0,1
+9892,53,1,79,0,54,22,26,24,0,1
+9893,56,0,95,0,56,24,40,39,0,1
+9894,66,3,113,0,64,-20,46,48,2,1
+9895,56,0,88,0,56,22,32,31,0,1
+9896,55,0,98,0,44,7,42,54,12,4
+9897,46,0,89,4,44,-18,43,45,2,1
+9898,79,-1,83,-1,-40,2,4,124,120,5
+9899,56,-3,99,0,50,1,43,49,6,4
+9900,56,0,79,0,16,21,23,63,40,4
+9901,38,0,94,6,38,0,56,55,0,1
+9902,56,0,81,0,-4,19,25,86,62,4
+9903,55,0,83,2,-30,3,27,114,86,4
+9904,47,0,77,4,46,0,31,31,0,1
+9905,45,0,77,0,44,-1,32,33,0,1
+9906,56,0,78,0,26,2,22,52,30,4
+9907,37,0,81,-7,20,20,44,61,16,1
+9908,56,0,80,0,-2,-5,24,83,58,4
+9909,37,-1,76,0,36,0,39,40,0,1
+9910,55,0,97,0,50,-3,41,48,6,4
+9911,37,0,80,0,24,9,43,57,14,1
+9912,56,0,95,0,42,4,40,54,14,4
+9913,42,-5,77,3,42,0,35,35,0,1
+9914,56,0,76,0,-10,4,20,86,66,4
+9915,56,0,97,0,46,18,41,50,10,4
+9916,56,4,82,0,56,18,26,25,0,1
+9917,55,0,78,0,8,-19,23,70,48,4
+9918,57,1,86,0,56,0,30,30,0,1
+9919,51,0,89,1,52,8,38,37,0,1
+9920,49,0,78,-2,46,-4,29,32,2,1
+9921,53,0,86,-1,54,9,33,32,0,1
+9922,41,0,97,0,42,4,55,55,0,1
+9923,39,0,86,6,38,0,47,48,0,1
+9924,41,5,78,0,42,18,37,37,0,1
+9925,39,2,79,2,38,0,39,40,0,1
+9926,43,-2,76,0,44,23,32,32,0,1
+9927,56,0,78,1,8,-19,22,70,48,4
+9928,54,5,77,0,-22,0,23,101,78,4
+9929,56,0,77,0,-4,3,21,82,62,4
+9930,44,27,77,0,28,0,33,48,16,2
+9931,49,3,80,0,50,4,31,31,0,1
+9932,47,-3161,86,-2,46,0,39,39,0,1
+9933,37,0,95,0,18,-9,57,77,20,1
+9934,43,-3,76,0,42,0,33,35,2,1
+9935,51,1,86,0,50,-17,35,37,2,1
+9936,46,-5,109,0,46,0,64,63,0,1
+9937,84,0,88,0,0,10,3,88,84,5
+9938,44,2,108,0,44,0,63,64,0,1
+9939,37,0,81,0,36,-6,44,44,0,1
+9940,56,0,81,0,-4,16,25,86,62,4
+9941,49,-3,80,0,50,2,31,31,0,1
+9942,37,2,104,0,24,13,66,80,14,1
+9943,44,0,76,0,44,8,32,32,0,1
+9944,38,2,81,0,36,-30,43,45,2,1
+9945,44,1,77,2,44,0,33,33,0,1
+9946,56,0,92,0,54,-25,36,38,2,1
+9947,37,0,95,0,26,0,58,70,12,1
+9948,42,2,90,0,42,0,48,49,0,1
+9949,55,0,93,0,6,-23,37,88,50,4
+9950,41,0,80,0,42,5,39,39,0,1
+9951,37,0,100,0,30,-4,64,69,6,1
+9952,37,0,82,0,36,-3,45,46,2,1
+9953,37,0,78,3,16,0,42,63,22,1
+9954,37,0,82,0,34,5,45,48,2,1
+9955,45,0,84,0,44,-11,38,40,2,1
+9956,56,-1,97,0,46,6,41,51,10,4
+9957,37,0,80,0,8,-6,43,72,30,1
+9958,47,4,88,0,46,0,42,42,0,1
+9959,37,0,108,-4,34,0,71,75,4,1
+9960,43,0,89,0,42,-4,46,48,2,1
+9961,41,0,97,-1,38,-15,56,58,2,1
+9962,56,3,77,0,-28,-30,21,105,84,4
+9963,37,0,95,0,24,31,58,72,14,1
+9964,43,0,79,4,42,-9,36,38,2,1
+9965,38,3,83,0,38,0,44,44,0,1
+9966,46,-1,88,2,46,0,41,41,0,1
+9967,37,0,76,0,24,-17,40,53,14,1
+9968,44,0,76,0,44,5,32,32,0,1
+9969,37,0,81,0,24,-9,44,57,14,1
+9970,51,0,80,0,52,3,29,28,0,1
+9971,46,3,106,0,46,7,60,60,0,1
+9972,43,0,83,0,42,-3,40,42,2,1
+9973,37,0,77,0,2,-1,40,74,34,1
+9974,55,0,79,-4,20,0,24,59,34,4
+9975,44,2,81,0,44,5,37,37,0,1
+9976,53,0,86,6,54,12,33,32,0,1
+9977,49,-2,87,0,46,-12,38,41,2,1
+9978,38,0,76,0,38,16,38,37,0,1
+9979,52,0,91,0,52,-3,38,39,0,1
+9980,56,0,87,0,56,10,31,30,0,1
+9981,56,-1,90,0,56,0,33,33,0,1
+9982,37,0,77,5,36,9,40,41,0,1
+9983,40,1,76,-1,38,0,36,37,2,1
+9984,41,1,108,0,38,-23,67,69,2,1
+9985,56,0,77,0,-14,7,21,92,72,4
+9986,49,0,84,0,46,-13,36,38,2,1
+9987,56,4,86,0,56,18,30,29,0,1
+9988,105,3,106,1,70,0,1,36,34,5
+9989,49,0,81,0,50,29,33,32,0,1
+9990,37,0,80,0,36,-2,43,44,2,1
+9991,105,-1,106,-3,70,0,1,36,34,5
+9992,56,-2,81,2,54,-21,25,26,2,1
+9993,55,0,93,0,50,-1,38,44,6,4
+9994,44,3,86,0,44,7,43,42,0,1
+9995,37,0,75,0,34,2,38,41,4,1
+9996,55,0,81,0,-6,-4,25,88,64,4
+9997,37,0,79,0,18,5,42,61,18,1
+9998,56,0,78,0,26,1,22,52,30,4
+9999,37,0,78,0,18,18,42,60,18,1
+10000,41,0,78,-1,38,-31,37,39,2,1
+10001,56,2,80,0,56,2,24,23,0,1
+10002,37,0,76,3,36,-30,39,40,2,1
+10003,41,0,83,0,42,24,42,42,0,1
+10004,37,0,76,0,28,-11,40,48,8,1
+10005,37,0,77,4,-12,-5,41,90,50,1
+10006,37,0,76,0,36,13,40,40,0,1
+10007,38,0,77,5,38,1,39,38,0,1
+10008,46,2,84,0,46,0,38,38,0,1
+10009,55,0,96,-2,50,0,41,47,6,4
+10010,37,0,77,0,-22,8,40,101,60,1
+10011,45,-1,83,0,44,-4,37,39,2,1
+10012,38,-1,82,-3,38,-5,44,43,0,1
+10013,44,0,76,7,44,2,32,32,0,1
+10014,66,-3,109,0,64,-17,43,45,2,1
+10015,44,5,79,0,42,-15,35,37,2,1
+10016,55,0,79,0,10,-19,23,68,46,4
+10017,38,-1,81,0,38,0,42,42,0,1
+10018,46,0,85,0,44,-26,39,41,2,1
+10019,43,0,84,0,44,23,41,41,0,1
+10020,55,0,77,0,34,18,22,44,22,4
+10021,37,-5,81,0,38,4,44,43,0,1
+10022,37,0,76,1,24,19,39,52,14,1
+10023,55,0,90,-7,54,0,36,36,0,1
+10024,41,4,77,0,42,10,36,35,0,1
+10025,49,0,96,8,50,0,47,47,0,1
+10026,52,-2,81,0,52,-2,29,30,0,1
+10027,41,3,77,0,38,0,37,39,2,1
+10028,42,-5,108,0,42,0,66,66,0,1
+10029,37,0,79,0,34,-1,42,46,4,1
+10030,50,5,88,0,50,0,39,39,0,1
+10031,37,0,77,0,18,31,40,59,18,1
+10032,55,0,77,0,42,5,22,36,14,4
+10033,43,-1,89,0,42,-4,46,48,2,1
+10034,37,0,97,0,28,-4,60,69,8,1
+10035,48,0,86,0,50,31,37,37,0,1
+10036,37,0,76,0,28,0,39,48,8,1
+10037,49,-1,86,-3,50,-4,37,37,0,1
+10038,56,0,87,1,56,10,31,30,0,1
+10039,41,0,100,0,38,-3,59,61,2,1
+10040,79,0,83,2,-42,-16,5,127,122,5
+10041,43,0,75,-4,42,0,32,34,2,1
+10042,85,2,88,0,2,-27,3,86,82,5
+10043,43,0,75,-1,42,0,32,34,2,1
+10044,45,3,80,6,44,0,35,36,0,1
+10045,41,5,89,-1,38,0,48,50,2,1
+10046,43,-5,89,0,42,0,46,48,2,1
+10047,37,0,79,0,16,-22,43,64,22,1
+10048,44,0,82,0,42,-19,38,41,2,1
+10049,54,0,87,5,54,0,33,33,0,1
+10050,55,0,77,0,12,-19,22,65,42,4
+10051,56,0,96,4,56,9,40,39,0,1
+10052,58,2,86,0,56,0,27,29,2,1
+10053,56,0,91,0,-4,-6,35,96,62,4
+10054,46,1,82,-3,44,-26,36,38,2,1
+10055,45,3,86,0,44,-4,41,42,2,1
+10056,46,0,79,4,46,0,33,32,0,1
+10057,55,0,81,-1,-12,0,26,94,68,4
+10058,55,0,96,0,54,1,41,42,0,1
+10059,80,0,84,-1,-38,-7,4,123,118,5
+10060,81,0,86,4,-40,4,5,127,122,5
+10061,45,-4,81,6,46,7,36,35,0,1
+10062,37,0,76,-2,24,0,39,52,14,1
+10063,37,0,78,0,8,-3,42,70,28,1
+10064,52,4,86,-1,52,0,33,34,0,1
+10065,55,0,95,-3,42,0,40,54,14,4
+10066,50,-2,106,0,50,0,57,57,0,1
+10067,53,0,82,0,52,-7,29,30,2,1
+10068,38,2,105,0,34,0,67,71,4,1
+10069,81,-3,86,-3,-40,0,4,127,122,5
+10070,43,0,75,-1,42,-1,32,34,2,1
+10071,49,-1,82,0,50,11,33,33,0,1
+10072,37,0,77,-1,28,-28,40,48,8,1
+10073,41,-1,84,0,38,-16,43,45,2,1
+10074,37,0,96,0,10,0,59,86,28,1
+10075,55,0,79,0,20,22,23,58,34,4
+10076,51,0,91,0,50,-8,40,42,2,1
+10077,48,1,80,-5,46,0,32,34,2,1
+10078,52,3,85,0,52,0,33,33,0,1
+10079,49,1,84,0,46,-1,36,38,2,1
+10080,53,0,86,0,54,1,33,32,0,1
+10081,53,0,77,0,52,-13,25,26,2,1
+10082,37,0,78,3,12,0,42,65,24,1
+10083,49,0,95,0,50,19,47,46,0,1
+10084,37,0,76,-3,28,-4,39,47,8,1
+10085,51,2,83,0,52,12,31,31,0,1
+10086,37,0,79,0,34,1,41,45,4,1
+10087,48,5,76,0,46,0,28,29,2,1
+10088,39,3,90,0,38,0,51,51,0,1
+10089,55,0,93,0,52,24,38,42,4,4
+10090,44,1,77,1,42,-16,34,36,2,1
+10091,45,3,81,0,44,-8,36,37,2,1
+10092,45,3,90,0,44,0,45,46,0,1
+10093,43,0,78,-5,42,-1,35,37,2,1
+10094,56,4,95,0,44,31,39,51,12,4
+10095,39,1,79,5,38,0,39,40,0,1
+10096,45,0,80,-2,44,-4,35,36,0,1
+10097,41,0,108,0,38,-4,67,69,2,1
+10098,37,0,77,0,36,12169,39,41,2,1
+10099,37,-1,100,-2,28,0,63,71,8,1
+10100,37,-2,106,0,34,-8,68,72,4,1
+10101,53,0,81,0,54,6,27,26,0,1
+10102,56,4,97,-5,46,0,41,51,10,4
+10103,47,-3,83,0,46,0,36,37,0,1
+10104,56,0,81,0,-18,9,25,99,74,4
+10105,40,1,76,4,38,0,36,37,2,1
+10106,39,-1,108,0,38,0,68,69,0,1
+10107,55,-5,78,6,44,0,23,34,12,4
+10108,37,0,75,0,34,8,38,41,2,1
+10109,56,0,96,-3,54,9,40,42,2,1
+10110,55,0,93,0,2,-1,38,91,52,4
+10111,41,5,76,0,42,15,35,35,0,1
+10112,43,0,77,0,42,-7,34,36,2,1
+10113,53,0,86,2,54,0,33,32,0,1
+10114,44,4,86,0,42,-15,43,45,2,1
+10115,81,0,84,0,-14,-6,3,99,96,5
+10116,37,0,83,0,28,-7,46,54,8,1
+10117,37,0,81,-2,30,0,45,50,6,1
+10118,45,-2,79,0,46,21,33,32,0,1
+10119,57,-3,80,0,56,0,23,23,0,1
+10120,39,-5,75,0,38,0,36,36,0,1
+10121,55,0,95,0,34,-11,40,62,22,4
+10122,55,0,86,0,54,-10,30,32,2,1
+10123,37,0,97,0,28,-14,60,69,8,1
+10124,85,0,89,2,2,-14,4,86,82,5
+10125,49,0,83,0,46,-12,34,37,2,1
+10126,56,0,97,0,56,25,41,40,0,1
+10127,51,-1,102,0,50,-7,51,53,2,1
+10128,55,0,95,0,34,-12,40,62,22,4
+10129,41,0,84,5,38,-20,44,46,2,1
+10130,37,0,76,57,20,0,40,55,16,1
+10131,56,3,97,0,54,0,40,42,2,1
+10132,37,0,79,8,8,-27,42,71,28,1
+10133,53,0,90,0,52,-11,37,39,2,1
+10134,37,0,83,0,2,-6,46,80,34,1
+10135,105,3,108,0,70,0,2,38,36,5
+10136,37,0,106,-5,36,0,69,70,0,1
+10137,42,3,88,0,42,0,46,47,2,1
+10138,45,3,79,0,44,-2,33,35,2,1
+10139,45,0,76,0,46,17,31,30,0,1
+10140,56,-3,96,0,52,0,40,44,4,4
+10141,55,0,97,0,52,26,41,45,4,4
+10142,45,0,79,0,44,0,34,35,2,1
+10143,46,0,107,-4,46,2,61,60,0,1
+10144,49,0,78,3,50,5,29,29,0,1
+10145,42,-3,88,1,42,0,45,46,2,1
+10146,52,0,86,-1,52,0,34,34,0,1
+10147,47,-2,86,-7,46,0,39,39,0,1
+10148,81,0,84,0,-20,19,4,105,102,5
+10149,37,0,79,0,6,-23,42,74,32,1
+10150,55,0,78,0,16,-22,23,63,40,4
+10151,56,0,95,0,54,-7,40,41,2,1
+10152,37,0,79,-1,0,4,42,79,36,1
+10153,45,0,82,0,46,26,37,35,0,1
+10154,46,0,79,0,46,15,34,33,0,1
+10155,82,-2,86,0,-6,0,4,94,90,5
+10156,51,0,88,0,52,10,36,36,0,1
+10157,56,1,84,0,56,14,29,28,0,1
+10158,43,0,79,0,44,12,35,35,0,1
+10159,41,0,87,6,38,-4,46,48,2,1
+10160,55,0,81,0,56,26,26,24,0,1
+10161,37,0,95,0,16,-6,58,79,22,1
+10162,37,-4,77,0,20,0,40,56,16,1
+10163,53,-1,80,0,52,-19,27,28,2,1
+10164,52,-1,82,-3,52,-4,29,30,0,1
+10165,38,0,90,0,38,0,52,51,0,1
+10166,76,0,81,2,-42,0,5,125,120,5
+10167,38,0,82,0,38,0,44,43,0,1
+10168,56,0,81,0,-10,-5,25,92,66,4
+10169,41,0,83,0,38,-15,42,44,2,1
+10170,46,0,88,1,46,-1,41,41,0,1
+10171,37,1,104,0,16,-23,66,88,22,1
+10172,56,5,95,0,44,0,39,51,12,4
+10173,53,-3,102,0,54,0,49,48,0,1
+10174,38,-1,107,0,38,0,69,68,0,1
+10175,44,-1,81,0,42,-28,38,40,2,1
+10176,56,-1,87,0,56,3,31,30,0,1
+10177,43,0,79,2,42,-13,35,37,2,1
+10178,53,0,82,0,52,-22,29,30,2,1
+10179,37,4,83,0,36,0,46,46,0,1
+10180,56,0,97,0,38,-14,41,58,18,4
+10181,53,0,81,4,52,-7,28,30,2,1
+10182,37,0,82,0,38,13,45,43,0,1
+10183,37,0,107,-3,36,0,69,71,2,1
+10184,37,-3,77,0,38,7,39,38,0,1
+10185,37,0,79,0,28,-4,42,50,8,1
+10186,56,0,91,0,-4,-7,35,96,62,4
+10187,48,-1,83,1,46,-4,35,37,2,1
+10188,56,0,80,2,-2,-14,24,83,58,4
+10189,55,-4,96,0,54,-15,41,42,2,1
+10190,46,1,80,0,46,13,34,34,0,1
+10191,37,0,86,0,38,14,48,47,0,1
+10192,56,0,98,2,52,0,42,46,4,4
+10193,42,-2,108,0,42,0,66,67,0,1
+10194,39,-1,86,0,38,0,48,48,0,1
+10195,55,0,97,0,52,25,41,45,4,4
+10196,43,-5,81,0,42,-4,38,40,2,1
+10197,56,0,96,0,52,15,40,44,4,4
+10198,46,0,86,0,44,-27,41,42,2,1
+10199,37,0,77,0,24,-4,40,54,14,1
+10200,45,-1,83,0,44,-17,38,39,2,1
+10201,44,1,81,0,42,-11,37,39,2,1
+10202,49,0,83,0,50,6,34,34,0,1
+10203,42,2,79,0,42,1,37,37,0,1
+10204,50,-5,86,-3,50,0,36,37,0,1
+10205,56,0,79,0,56,11,24,23,0,1
+10206,45,0,86,0,46,11,40,39,0,1
+10207,40,0,76,1,38,0,35,37,2,1
+10208,41,0,79,-2,38,-13,38,40,2,1
+10209,45,-2,76,0,44,-17,31,32,2,1
+10210,43,5,83,1,42,0,40,42,2,1
+10211,56,-2,95,0,46,1,40,49,10,4
+10212,56,1,93,0,50,0,37,44,6,4
+10213,44,1,75,0,44,9,31,31,0,1
+10214,37,5,105,1,18,0,68,87,20,1
+10215,37,0,83,0,36,-5,45,46,2,1
+10216,102,0,103,5,72,30,1,31,30,5
+10217,46,4,81,0,46,7,35,35,0,1
+10218,47,2,88,1,46,0,42,42,0,1
+10219,42,-4,86,0,42,0,44,45,0,1
+10220,37,0,76,-4,26,0,39,50,10,1
+10221,55,0,81,-2,-14,-16,26,97,70,4
+10222,41,0,78,0,42,1,37,37,0,1
+10223,37,0,79,0,34,-13,42,46,4,1
+10224,37,0,77,8,20,0,40,56,16,1
+10225,45,0,84,0,44,-7,39,41,2,1
+10226,56,0,77,0,-2,9,21,79,58,4
+10227,46,1,87,0,46,27,41,41,0,1
+10228,42,0,86,7,42,0,44,45,0,1
+10229,46,0,76,0,46,0,30,30,0,1
+10230,40,4,86,0,38,0,46,48,2,1
+10231,51,0,83,0,52,21,31,31,0,1
+10232,51,3,85,0,50,0,34,36,2,1
+10233,50,0,86,0,50,0,36,37,2,1
+10234,44,3,77,0,44,1,33,34,0,1
+10235,56,0,96,-1,50,-5,40,47,6,4
+10236,56,-1,97,0,46,-5,41,50,10,4
+10237,37,-8,75,0,28,16,38,46,8,1
+10238,37,0,97,-2,34,-3,59,63,4,1
+10239,37,0,94,0,10,-23,57,84,26,1
+10240,37,0,77,0,34,21,40,43,2,1
+10241,49,0,77,0,50,25,28,28,0,1
+10242,53,4,77,0,28,0,24,48,24,4
+10243,56,4,88,0,56,2,31,31,0,1
+10244,51,1,84,0,52,11,33,32,0,1
+10245,37,0,79,-1,10,0,42,68,26,1
+10246,55,0,97,4,46,0,41,50,8,4
+10247,44,0,76,6,44,4,32,32,0,1
+10248,51,0,79,4,52,0,27,27,0,1
+10249,37,5,83,0,34,0,45,49,4,1
+10250,56,0,76,0,-12,-6,20,89,68,4
+10251,43,-2,77,0,42,-12,34,36,2,1
+10252,56,0,81,0,-6,18,25,89,64,4
+10253,56,3,98,0,44,-3,42,54,12,4
+10254,42,2,83,-4,42,0,41,41,0,1
+10255,37,0,76,7,20,-1,40,55,16,1
+10256,48,0,78,7,46,0,30,32,2,1
+10257,37,0,80,0,36,-23,43,44,2,1
+10258,49,0,87,-4,50,10,38,38,0,1
+10259,45,0,87,5,44,-15,42,43,2,1
+10260,37,-4,78,0,-2,0,41,81,40,1
+10261,42,5,93,0,42,0,51,52,0,1
+10262,58,0,96,-2,56,0,38,39,2,1
+10263,53,-1,88,3,52,-12,35,36,2,1
+10264,55,3,95,0,50,0,41,46,6,4
+10265,43,0,81,5,42,-2,37,39,2,1
+10266,41,0,82,2,42,1,41,41,0,1
+10267,45,0,83,8,44,0,38,39,2,1
+10268,52,0,84,0,52,-7,32,33,0,1
+10269,55,0,77,1,28,0,22,49,26,4
+10270,37,0,104,2,20,0,67,83,16,1
+10271,37,0,107,0,28,-11,70,78,8,1
+10272,58,0,82,7,56,0,24,25,0,1
+10273,48,0,81,2,46,0,33,34,2,1
+10274,48,3,95,0,46,0,47,49,2,1
+10275,49,0,84,-1,50,-1,35,35,0,1
+10276,45,0,84,0,46,24,38,37,0,1
+10277,56,0,86,0,54,-24,31,32,2,1
+10278,84,0,88,0,6,0,4,83,80,5
+10279,37,0,83,0,30,-5,46,52,6,1
+10280,41,5,79,0,42,14,38,38,0,1
+10281,37,0,81,-7,-2,0,44,83,40,1
+10282,44,5,107,0,44,21,63,63,0,1
+10283,45,0,88,0,44,-8,43,44,2,1
+10284,37,0,77,0,16,-21,40,62,22,1
+10285,41,0,81,1,38,-11,40,42,2,1
+10286,37,0,104,0,26,9,66,78,12,1
+10287,55,0,93,2,8,0,37,85,48,4
+10288,37,0,77,1,34,0,41,44,2,1
+10289,37,0,76,0,30,26,40,45,6,1
+10290,40,2,82,0,38,0,42,43,2,1
+10291,43,-4,84,0,42,-23,41,43,2,1
+10292,44,0,76,4,44,0,32,32,0,1
+10293,84,4,86,-1,-4,0,3,92,88,5
+10294,44,-1,87,0,42,-30,43,46,2,1
+10295,42,-2,108,0,42,0,66,66,0,1
+10296,38,5,81,0,38,9,43,42,0,1
+10297,53,4,81,0,54,27,28,27,0,1
+10298,74,8,78,4,-42,0,4,122,118,5
+10299,45,-1,88,0,44,0,43,44,2,1
+10300,36,-5,80,0,36,0,44,44,0,1
+10301,37,0,77,-6,8,0,40,69,28,1
+10302,37,0,79,6,8,-21,42,71,28,1
+10303,44,2,83,0,44,0,38,39,0,1
+10304,37,0,76,1,34,1,40,43,2,1
+10305,44,-1,86,-6,44,0,43,42,0,1
+10306,79,-1,83,-10,-32,-26739,4,117,112,5
+10307,49,0,95,0,50,25,47,46,0,1
+10308,38,0,105,-1,38,0,67,66,0,1
+10309,37,0,96,0,30,22,59,65,6,1
+10310,37,0,79,2,2,-5,43,77,34,1
+10311,62,0,109,0,62,8,48,47,0,1
+10312,37,0,77,0,-20,-15,41,98,58,1
+10313,56,0,96,-5,54,31,40,42,2,1
+10314,51,5,84,0,50,0,33,35,2,1
+10315,37,0,78,0,-4,-4,42,83,42,1
+10316,46,2,83,0,46,8,37,37,0,1
+10317,55,0,96,1,42,-4,41,55,14,4
+10318,107,3,108,5,72,1,1,36,34,5
+10319,37,0,80,0,16,-26,43,65,22,1
+10320,49,2,86,0,46,-8,37,39,2,1
+10321,85,0,88,-1,6,21,3,83,80,5
+10322,48,0,89,-1,46,-1,41,42,2,1
+10323,41,0,79,-1,42,12,38,37,0,1
+10324,56,0,98,0,52,6,42,46,4,4
+10325,39,0,79,0,38,0,40,40,0,1
+10326,37,0,77,0,20,-4,40,56,16,1
+10327,37,0,98,1,28,0,61,70,8,1
+10328,37,-2,77,0,0,19,40,77,36,1
+10329,39,0,81,-6,38,-5,43,43,0,1
+10330,51,3,88,0,52,17,37,37,0,1
+10331,37,0,77,0,36,0,41,41,0,1
+10332,37,0,81,0,28,-2,44,52,8,1
+10333,55,0,79,0,6,1,23,74,50,4
+10334,41,0,79,-3,38,-6,38,40,2,1
+10335,56,0,97,0,42,-10,41,55,14,4
+10336,56,0,93,-4,50,0,38,44,6,4
+10337,41,0,82,0,38,-10,41,43,2,1
+10338,55,-3,99,0,50,2,43,49,6,4
+10339,55,0,82,0,54,-4,26,28,2,1
+10340,47,-1,87,-5,46,-7,40,41,0,1
+10341,55,-1,79,-4,24,-8,23,55,32,4
+10342,55,0,95,0,36,19,40,59,20,4
+10343,56,0,91,0,56,1,35,34,0,1
+10344,55,0,82,0,-22,7,26,105,78,4
+10345,49,-3,83,0,50,0,34,34,0,1
+10346,41,0,80,0,42,20,39,39,0,1
+10347,43,0,95,-7,42,-3,52,54,2,1
+10348,42,0,88,5,42,0,45,46,2,1
+10349,37,0,79,0,8,-3,42,71,28,1
+10350,55,-1,79,-4,24,-9,23,55,32,4
+10351,55,0,79,-2,20,-3,23,58,34,4
+10352,52,0,84,3,52,2,32,32,0,1
+10353,56,0,92,4,50,0,36,43,6,4
+10354,37,-2,80,0,36,0,43,44,0,1
+10355,41,1,78,0,38,-24,37,39,2,1
+10356,41,0,108,0,42,2,66,66,0,1
+10357,43,-2,79,0,44,3,35,35,0,1
+10358,38,1,77,3,38,0,39,38,0,1
+10359,37,0,103,0,24,28,66,80,14,1
+10360,55,-5,93,1,54,0,38,39,0,1
+10361,37,-5,76,0,36,0,39,39,0,1
+10362,38,2,77,0,38,6,39,38,0,1
+10363,59,-5,108,0,60,0,49,49,0,1
+10364,43,-2,85,0,42,-15,42,44,2,1
+10365,37,0,82,0,18,0,45,64,18,1
+10366,56,0,97,0,42,12,41,55,14,4
+10367,45,-1,77,0,44,-12,32,34,2,1
+10368,41,-2,81,0,38,-20,40,42,2,1
+10369,41,0,79,2,38,-7,38,40,2,1
+10370,37,0,95,1,10,7,57,84,28,1
+10371,37,0,79,0,16,-26,43,64,22,1
+10372,50,0,106,2,50,0,56,57,0,1
+10373,57,4,81,0,56,0,25,24,0,1
+10374,56,2,97,0,44,2,41,53,12,4
+10375,44,0,81,-1,44,2,37,37,0,1
+10376,38,0,93,0,28,-3,55,64,10,1
+10377,37,0,80,0,8,19,43,72,30,1
+10378,50,0,77,0,50,-1,27,28,0,1
+10379,41,0,86,1,42,2,45,45,0,1
+10380,52,1,82,1,52,0,30,30,0,1
+10381,53,0,86,0,52,-21,33,34,2,1
+10382,43,0,79,0,42,-15,36,38,2,1
+10383,43,-2,89,0,42,-8,46,48,2,1
+10384,37,0,79,0,10,157,42,69,26,1
+10385,49,-1,100,-2,50,16,52,51,0,1
+10386,81,-1,86,2,-40,7,5,127,122,5
+10387,56,0,85,0,54,-4,29,31,2,1
+10388,81,0,84,6,-14,-12,4,100,96,5
+10389,64,0,113,1,64,31,49,48,0,1
+10390,55,0,96,2,52,-11,41,44,4,4
+10391,56,0,84,0,54,-3,28,30,2,1
+10392,37,0,78,0,0,-30,42,78,36,1
+10393,43,-2,76,0,42,-13,33,35,2,1
+10394,37,0,75,0,20,-9,38,54,16,1
+10395,50,5,83,0,50,-1,33,33,0,1
+10396,41,-5,80,0,42,0,39,39,0,1
+10397,43,-1,86,0,44,23,42,42,0,1
+10398,55,0,81,0,56,22,26,24,0,1
+10399,37,0,103,0,18,-8,66,85,20,1
+10400,54,-1,77,-2,54,0,24,23,0,1
+10401,51,1,86,0,50,-8,35,37,2,1
+10402,83,0,86,0,-6,-9,3,94,90,5
+10403,56,0,77,0,24,1,22,54,32,4
+10404,41,0,87,-2,38,-2,46,48,2,1
+10405,80,0,84,0,-42,-6,4,128,124,5
+10406,49,0,106,-1,46,-23,57,59,2,1
+10407,47,4,76,0,46,0,28,29,0,1
+10408,37,0,107,4,26,0,69,81,12,1
+10409,51,0,82,2,50,0,31,33,2,1
+10410,45,4,86,1,44,-3,41,42,2,1
+10411,44,1,77,0,44,7,34,34,0,1
+10412,56,0,81,0,-18,1,25,99,74,4
+10413,81,0,85,-7,-22,0,4,108,104,5
+10414,37,1,90,0,24,26,52,66,14,1
+10415,52,4,78,0,52,0,26,26,0,1
+10416,37,0,79,0,10,-20,43,69,26,1
+10417,40,-2,83,0,38,-1,42,44,2,1
+10418,48,0,106,0,50,25,58,57,0,1
+10419,45,-3,83,-4,44,-6,38,39,0,1
+10420,55,0,82,1,-12,-21,26,95,68,4
+10421,55,0,79,-1,54,0,24,24,0,1
+10422,55,0,77,0,-2,-16,21,79,58,4
+10423,37,0,94,0,10,0,57,84,26,1
+10424,56,0,81,0,-2,8,25,83,58,4
+10425,37,0,82,0,-2,16,45,85,40,1
+10426,55,0,92,0,-6,-17,36,99,64,4
+10427,42,0,90,1,42,0,47,48,2,1
+10428,48,-4,86,0,46,0,39,40,2,1
+10429,47,5,95,3,46,0,48,49,0,1
+10430,48,-5,77,0,46,0,29,30,2,1
+10431,55,0,96,0,54,9,41,42,0,1
+10432,53,3,86,0,52,-20,33,34,2,1
+10433,55,0,77,0,8,6,22,70,48,4
+10434,41,0,77,0,42,8,36,35,0,1
+10435,44,0,83,0,42,-10,39,41,2,1
+10436,37,0,79,0,-2,-29,42,82,40,1
+10437,53,0,82,1,54,14,29,28,0,1
+10438,41,0,88,0,38,-12,48,50,2,1
+10439,53,0,104,0,54,5,50,49,0,1
+10440,37,-1,75,0,26,-25,38,49,12,1
+10441,37,0,90,-1,20,31,53,70,16,1
+10442,37,-1,76,0,28,0,40,48,8,1
+10443,37,0,77,0,16,-9,41,62,22,1
+10444,41,-3,77,0,38,-15,36,38,2,1
+10445,37,0,78,0,2,5,41,75,34,1
+10446,49,0,85,0,46,-1,36,39,2,1
+10447,37,0,106,0,20,-30,69,85,16,1
+10448,41,0,83,0,38,-9,42,44,2,1
+10449,66,2,113,0,64,0,47,48,0,1
+10450,55,-2,77,0,26,-13,22,52,30,4
+10451,37,0,76,0,36,-20,38,39,2,1
+10452,40,0,88,5,38,0,48,50,2,1
+10453,37,0,76,0,38,16,38,37,0,1
+10454,42,0,76,-1,42,0,34,35,0,1
+10455,45,0,81,0,46,15,35,34,0,1
+10456,67,1,112,0,68,0,45,45,0,1
+10457,42,-4,79,0,42,0,37,37,0,1
+10458,56,0,97,1,52,27,41,45,4,4
+10459,82,0,85,-3,-2,10,3,88,84,5
+10460,56,-5,86,0,54,-30,31,32,2,1
+10461,45,0,77,2,44,0,32,34,2,1
+10462,55,0,95,0,42,-14,40,54,14,4
+10463,37,0,96,3,12,-18,59,83,24,1
+10464,42,-19,76,0,42,0,34,35,2,1
+10465,56,0,97,0,50,1,41,48,6,4
+10466,37,0,81,8,30,0,44,50,6,1
+10467,45,1,83,6,44,0,38,39,2,1
+10468,37,0,79,3,2,1,42,76,34,1
+10469,37,-48,106,-362,30,-22,69,75,6,3
+10470,53,0,81,0,52,-7,28,30,2,1
+10471,54,0,102,-2,54,0,49,48,0,1
+10472,55,0,92,2,-4,3,36,97,60,4
+10473,37,0,78,-2,6,0,41,73,32,1
+10474,51,0,83,-5,50,-11,32,34,2,1
+10475,37,0,97,0,34,8,60,64,4,1
+10476,55,0,77,0,18,-28,22,59,38,4
+10477,37,0,76,0,20,-18,39,55,16,1
+10478,49,1,90,0,50,14,42,41,0,1
+10479,45,0,81,1,46,15,36,35,0,1
+10480,55,0,77,0,38,6,22,39,16,4
+10481,55,0,99,5,38,0,43,60,16,4
+10482,45,-1,77,0,44,-8,31,33,2,1
+10483,44,2,85,0,44,17,41,41,0,1
+10484,53,0,88,5,54,0,34,33,0,1
+10485,41,0,77,3,42,10,36,35,0,1
+10486,37,0,106,8,30,0,69,75,6,1
+10487,49,1,86,0,50,19,38,37,0,1
+10488,37,0,76,6,30,16,40,45,6,1
+10489,49,0,107,0,50,15,58,58,0,1
+10490,37,5,77,0,34,0,40,44,4,1
+10491,37,0,80,0,10,-13,43,70,26,1
+10492,40,-5,80,0,38,-1,40,41,2,1
+10493,55,0,78,0,46,8,23,32,8,4
+10494,46,-2,90,0,46,5,44,44,0,1
+10495,37,0,77,0,36,-1,40,41,2,1
+10496,37,0,86,0,36,0,48,50,2,1
+10497,49,0,87,-2,50,25,38,38,0,1
+10498,47,1,85,0,46,0,38,39,0,1
+10499,56,0,95,0,52,23,40,44,4,4
+10500,37,0,81,0,18,0,44,63,18,1
+10501,37,0,76,0,18,-16,40,58,18,1
+10502,53,0,79,0,54,10,26,24,0,1
+10503,57,1,81,0,56,0,24,24,0,1
+10504,38,3,76,0,36,-7,38,39,2,1
+10505,46,0,79,1,46,4,33,32,0,1
+10506,37,0,100,0,30,5,64,69,6,1
+10507,45,-1,84,0,46,15,38,37,0,1
+10508,55,0,96,0,38,-14,41,57,16,4
+10509,50,0,78,1,50,0,28,29,2,1
+10510,37,0,78,0,6,-7,41,73,32,1
+10511,105,0,106,-2,70,-2,1,36,36,5
+10512,55,0,97,7,46,0,42,51,8,4
+10513,37,0,80,0,30,-24,43,49,6,1
+10514,43,-4,75,0,42,-27,32,34,2,1
+10515,56,4,98,0,50,-2,42,49,6,4
+10516,56,0,97,8,52,0,41,45,4,4
+10517,43,0,83,-3,42,-12,40,42,2,1
+10518,37,0,80,0,12,12,43,67,24,1
+10519,56,4,98,0,50,-15,42,49,6,4
+10520,52,2,86,-1,52,0,33,34,0,1
+10521,81,0,84,0,-18,-22,3,103,100,5
+10522,37,0,80,4,30,0,43,49,6,1
+10523,37,0,77,-2,34,-12,40,44,4,1
+10524,55,0,77,0,10,0,22,67,46,4
+10525,59,0,87,0,56,-9,28,30,2,1
+10526,55,-2,81,0,-10,-2,26,92,66,4
+10527,37,0,106,-6,36,0,69,70,2,1
+10528,56,4,98,0,52,10,42,46,4,4
+10529,44,2,78,0,44,0,34,34,0,1
+10530,49,22,79,0,42,0,30,37,8,2
+10531,49,-4,77,2,50,0,28,28,0,1
+10532,48,0,77,0,46,-1,28,30,2,1
+10533,55,1,81,-3,54,0,27,27,0,1
+10534,46,0,85,0,46,11,39,39,0,1
+10535,37,0,79,0,26,-1,42,53,10,1
+10536,56,2,78,2,24,0,22,55,32,4
+10537,37,0,77,0,-10,-17,41,88,46,1
+10538,51,0,88,2,52,0,36,36,0,1
+10539,44,2,83,0,42,-14,40,42,2,1
+10540,43,-1,80,0,42,-11,37,39,2,1
+10541,48,0,83,0,46,0,35,37,2,1
+10542,47,-5,87,8,46,0,40,41,0,1
+10543,38,1,77,0,38,17,39,38,0,1
+10544,41,0,78,-3,42,-5,37,37,0,1
+10545,37,-1,97,-6,26,-12,60,71,12,1
+10546,43,0,83,-1,42,0,40,41,2,1
+10547,56,0,81,0,-6,31,25,89,64,4
+10548,41,2,79,0,42,15,38,38,0,1
+10549,45,1,88,0,44,0,43,44,2,1
+10550,37,0,105,0,18,4,68,87,18,1
+10551,37,0,79,-1,0,10,42,79,36,1
+10552,42,0,77,-1,42,-1,35,36,0,1
+10553,37,0,79,-1,24,-1,42,55,14,1
+10554,45,-3,83,0,44,-8,37,39,2,1
+10555,56,0,86,0,56,6,30,29,0,1
+10556,45,0,86,-1,44,-4,40,42,2,1
+10557,42,0,81,0,42,-1,39,39,0,1
+10558,41,-2,76,0,42,19,35,34,0,1
+10559,38,2,77,0,36,-28,39,41,2,1
+10560,56,1,80,0,-2,0,24,83,58,4
+10561,37,0,75,0,30,-3,38,44,6,1
+10562,44,2,77,0,44,11,34,34,0,1
+10563,105,0,106,-4,72,10,1,34,34,5
+10564,45,5,78,0,44,0,34,34,0,1
+10565,53,0,82,0,54,17,29,28,0,1
+10566,51,0,81,0,50,-24,29,32,2,1
+10567,45,0,79,0,46,12,33,32,0,1
+10568,56,0,96,0,52,-15,40,44,4,4
+10569,64,0,113,0,64,14,48,48,0,1
+10570,46,0,77,0,46,11,32,31,0,1
+10571,37,0,79,0,34,-4,41,45,4,1
+10572,48,-1,88,-5,46,0,40,41,2,1
+10573,41,3,76,0,42,18,35,35,0,1
+10574,44,-1,76,0,44,11,32,32,0,1
+10575,49,0,106,0,46,-22,57,59,2,1
+10576,43,2,88,0,42,0,45,46,2,1
+10577,46,5,77,0,46,1,31,30,0,1
+10578,39,0,77,-1,38,0,38,39,0,1
+10579,56,0,84,0,56,0,29,28,0,1
+10580,37,0,81,5,36,-4,43,44,2,1
+10581,37,0,79,-5,34,0,42,45,2,1
+10582,55,0,92,-1,0,3,36,92,56,4
+10583,43,4,83,0,42,0,40,41,2,1
+10584,42,-5,86,-1,42,0,44,45,2,1
+10585,40,0,109,5,38,0,69,71,2,1
+10586,55,0,82,0,-42,-6,26,126,100,4
+10587,37,0,107,-4,36,0,69,71,2,1
+10588,56,0,86,0,54,-14,30,32,2,1
+10589,37,0,80,-3,36,-6,43,44,0,1
+10590,48,0,87,0,46,-9,39,41,2,1
+10591,56,0,80,-7,6,16,24,75,50,4
+10592,55,0,77,0,10,11,21,66,46,4
+10593,37,0,76,-2,28,-5,39,47,8,1
+10594,37,0,77,-1,26,-8,41,52,10,1
+10595,44,2,81,0,42,-14,37,39,2,1
+10596,49,0,79,0,46,-30,30,32,2,1
+10597,37,0,79,5,10,0,42,69,26,1
+10598,55,-3,77,-2,24,0,22,54,32,4
+10599,52,-2,84,0,52,0,32,32,0,1
+10600,37,-2,75,0,28,9,38,46,8,1
+10601,79,0,83,0,-30,6,4,114,110,5
+10602,50,2,106,0,50,0,56,57,0,1
+10603,41,0,83,0,42,27,42,41,0,1
+10604,46,0,81,-4,46,0,35,34,0,1
+10605,37,4,77,1,34,0,40,44,4,1
+10606,55,-4,73,-10,-4,-6,18,78,60,4
+10607,44,3,90,0,44,26,47,46,0,1
+10608,52,-2,87,1,52,-2,35,35,0,1
+10609,47,-11,86,0,46,0,39,39,0,1
+10610,56,1,81,0,56,1,24,24,0,1
+10611,55,0,77,0,24,17,22,54,32,4
+10612,37,0,78,0,8,0,42,70,28,1
+10613,37,0,78,0,26,-5,42,52,10,1
+10614,45,-4,85,3,44,0,40,41,2,1
+10615,44,3,102,0,44,15,59,58,0,1
+10616,85,0,88,-4,2,0,3,86,82,5
+10617,41,0,86,-5,38,-9,46,48,2,1
+10618,56,0,77,0,-4,6,21,82,62,4
+10619,45,4,93,0,44,0,48,50,2,1
+10620,43,0,85,5,44,29,42,41,0,1
+10621,38,0,105,-2,38,0,67,66,0,1
+10622,55,0,95,2,50,0,40,46,6,4
+10623,48,-1,86,0,46,-7,37,39,2,1
+10624,44,5,75,0,44,2,31,31,0,1
+10625,41,0,84,0,38,-21,43,45,2,1
+10626,51,0,77,0,52,30,26,25,0,1
+10627,49,0,81,0,46,-30,31,34,2,1
+10628,37,1,90,0,26,0,53,64,12,1
+10629,55,0,93,5,46,0,37,46,8,4
+10630,37,0,77,0,-6,22,41,85,44,1
+10631,56,-1,95,0,42,9,40,54,14,4
+10632,56,0,93,-5,50,0,38,44,6,4
+10633,45,0,79,2,44,-18,34,35,2,1
+10634,45,0,86,0,44,-18,40,42,2,1
+10635,47,-1,86,4,46,0,39,40,0,1
+10636,45,-3,90,0,44,0,45,46,2,1
+10637,43,0,76,-1,42,0,32,34,2,1
+10638,49,0,83,-3,50,-3,34,34,0,1
+10639,37,0,77,0,12,21,40,64,24,1
+10640,37,0,83,0,0,22,46,83,36,1
+10641,56,0,96,4,52,0,40,44,4,4
+10642,37,0,95,-1,16,6,58,80,22,1
+10643,45,0,109,0,44,-8,64,66,2,1
+10644,47,-18,86,0,46,0,39,39,0,1
+10645,48,0,108,3,46,0,59,61,2,1
+10646,39,0,79,8,38,0,40,41,0,1
+10647,42,0,83,-7,42,0,41,41,0,1
+10648,41,-1,78,-1,42,-2,37,37,0,1
+10649,49,1,83,0,46,0,34,37,2,1
+10650,37,0,83,0,-4,-17,47,88,42,1
+10651,56,0,87,1,54,-23,31,33,2,1
+10652,51,5,83,0,50,-20,31,33,2,1
+10653,46,0,88,0,44,-27,42,44,2,1
+10654,104,3,105,6,70,0,1,35,34,5
+10655,83,0,86,-1,-6,-24,3,94,90,5
+10656,44,4,83,-2,44,1,38,39,0,1
+10657,51,-2,79,0,50,-12,28,30,2,1
+10658,41,0,79,-2,38,-11,38,40,2,1
+10659,41,3,82,0,42,8,41,41,0,1
+10660,41,0,84,0,38,0,44,46,2,1
+10661,55,1,81,0,54,0,26,27,0,1
+10662,49,0,81,0,46,-9,32,34,2,1
+10663,55,0,77,0,28,6,21,48,28,4
+10664,50,5,79,3,50,0,29,30,0,1
+10665,43,-1,86,0,44,13,42,42,0,1
+10666,79,2,83,0,-40,14,4,125,120,5
+10667,37,0,79,0,24,-10,43,56,14,1
+10668,104,-3,105,-2,70,-30,1,35,34,5
+10669,55,0,83,-4,54,0,27,28,2,1
+10670,43,-5,86,0,42,0,44,45,2,1
+10671,53,0,83,0,54,12,30,28,0,1
+10672,37,0,79,-1,20,-3,42,58,16,1
+10673,37,0,81,6,34,1,43,47,4,1
+10674,67,0,109,-5,68,0,42,42,0,1
+10675,41,0,87,0,42,19,46,46,0,1
+10676,51,0,84,0,52,7,33,32,0,1
+10677,37,0,78,0,-2,9,41,81,40,1
+10678,37,0,108,0,30,-1,71,77,6,1
+10679,52,0,86,0,52,-7,33,34,0,1
+10680,44,0,86,0,44,8,42,42,0,1
+10681,37,0,97,0,24,-7,60,74,14,1
+10682,50,-3,86,0,50,0,37,37,0,1
+10683,37,0,82,0,36,16,45,46,0,1
+10684,45,3,106,-1,44,-4,61,62,2,1
+10685,49,0,80,0,50,7,31,31,0,1
+10686,85,0,88,0,0,30,3,88,84,5
+10687,46,0,88,-2,44,-22,43,44,2,1
+10688,46,2,79,0,46,19,33,32,0,1
+10689,37,0,78,0,18,-4,41,60,18,1
+10690,37,0,94,0,34,3,57,61,4,1
+10691,53,0,85,0,54,23,32,31,0,1
+10692,46,0,83,0,46,5,37,36,0,1
+10693,48,3,88,0,46,0,40,42,2,1
+10694,103,-2,104,-6,70,-23,1,34,34,5
+10695,37,0,104,0,16,-9,67,89,22,1
+10696,38,1,94,0,38,13,56,55,0,1
+10697,41,0,83,5,38,-10,42,44,2,1
+10698,47,-1,84,-5,46,0,38,38,0,1
+10699,56,0,76,0,-14,20,20,92,72,4
+10700,49,0,79,0,46,-26,30,33,2,1
+10701,37,-1,76,0,36,1,40,40,0,1
+10702,51,-4,78,0,52,24,27,26,0,1
+10703,49,0,83,-1,50,13,34,34,0,1
+10704,41,-3,82,0,38,-17,41,43,2,1
+10705,37,0,77,0,16,7,40,61,22,1
+10706,37,0,90,-2,24,-5,52,66,14,1
+10707,50,0,106,0,50,0,56,57,0,1
+10708,37,0,76,0,28,25,39,47,8,1
+10709,43,-2,81,0,44,12,38,37,0,1
+10710,55,0,77,0,30,-2,22,46,24,4
+10711,44,-5,106,-3,44,3,62,62,0,1
+10712,37,0,97,0,30,-4,60,66,6,1
+10713,46,-1,77,0,46,1,32,31,0,1
+10714,55,2,84,6,54,0,29,30,0,1
+10715,56,0,77,0,-2,-19,21,79,58,4
+10716,55,0,79,0,26,-1,23,53,30,4
+10717,56,5,97,0,44,0,41,53,12,4
+10718,41,0,79,-2,42,12,38,37,0,1
+10719,51,1,86,0,52,31,35,34,0,1
+10720,56,4,95,0,54,24,39,41,2,1
+10721,47,1,86,1,46,0,40,40,0,1
+10722,43,-1,86,0,44,28,43,42,0,1
+10723,81,1,85,3,-24,0,4,111,106,5
+10724,37,0,79,0,18,6,43,61,18,1
+10725,56,0,77,0,-20,-2,21,97,76,4
+10726,37,0,77,0,36,19,41,41,0,1
+10727,55,0,77,0,-28,3,22,106,84,4
+10728,41,0,82,0,38,-1,41,43,2,1
+10729,39,-8,78,0,-2,-24,39,81,42,1
+10730,38,5,105,0,38,0,67,66,0,1
+10731,43,1,84,0,42,0,42,43,2,1
+10732,37,0,75,0,34,-4,38,41,2,1
+10733,41,-1,77,0,42,4,36,36,0,1
+10734,48,2,88,-3,46,0,40,41,2,1
+10735,56,-1,95,0,38,-23,40,57,18,4
+10736,82,-4,86,0,-4,-27,4,91,88,5
+10737,44,-1,84,0,44,6,40,40,0,1
+10738,53,0,81,0,52,0,28,30,2,1
+10739,37,0,77,2,36,6,40,41,0,1
+10740,36,4,75,0,36,0,39,39,0,1
+10741,53,0,87,0,54,6,34,33,0,1
+10742,47,-1,79,2,46,0,32,32,0,1
+10743,37,0,81,-4,-2,0,44,83,40,1
+10744,43,0,77,-5,42,-4,34,35,2,1
+10745,56,0,95,0,50,-10,40,46,6,4
+10746,49,4,95,0,50,1,46,46,0,1
+10747,37,0,104,1,24,0,67,80,14,1
+10748,46,0,86,0,46,13,41,40,0,1
+10749,55,0,93,-1,50,20,37,44,6,4
+10750,38,1,90,-3,6,0,52,85,32,1
+10751,55,0,95,-7,44,7,40,51,12,4
+10752,37,0,95,0,10,4,57,84,28,1
+10753,37,0,106,0,28,23,68,77,8,1
+10754,37,0,106,4,18,0,69,88,18,1
+10755,49,0,96,6,50,0,47,47,0,1
+10756,60,0,109,-6,60,0,49,49,0,1
+10757,50,5,102,0,50,0,52,53,0,1
+10758,56,0,81,0,-6,20,25,88,64,4
+10759,42,-4,99,0,42,0,57,58,0,1
+10760,41,0,78,4,38,-11,37,39,2,1
+10761,86,6,89,0,8,0,3,81,78,5
+10762,46,1,86,1,46,0,40,39,0,1
+10763,37,0,80,0,6,-22,43,75,32,1
+10764,37,0,82,2,30,0,45,51,6,1
+10765,48,0,88,8,46,0,39,41,2,1
+10766,37,0,77,-1,12,-9,40,64,24,1
+10767,55,0,93,0,50,16,37,44,6,4
+10768,47,0,84,-5,46,0,37,38,0,1
+10769,37,3,76,0,36,0,39,39,0,1
+10770,45,-4,86,-2,44,0,41,42,0,1
+10771,44,0,86,0,42,-9,43,45,2,1
+10772,48,0,81,0,46,-11,32,34,2,1
+10773,44,-2,87,2,44,0,43,43,0,1
+10774,49,-2,85,0,46,-20,36,39,2,1
+10775,50,-2,86,-5,50,0,36,37,0,1
+10776,53,-2,85,-6,54,0,32,31,0,1
+10777,56,0,96,0,56,21,40,39,0,1
+10778,48,4,94,4,46,0,46,48,2,1
+10779,37,0,80,1,6,-11,43,75,32,1
+10780,82,2,86,0,-2,5,3,88,84,5
+10781,41,0,97,0,38,-12,56,58,2,1
+10782,56,-2,97,0,42,-12,41,55,14,4
+10783,38,3,83,0,38,5,45,44,0,1
+10784,38,-4,93,3,28,5,55,64,10,1
+10785,37,0,95,-3,16,-6,58,80,22,1
+10786,55,0,77,0,-4,-6,21,82,60,4
+10787,40,-4,77,0,38,0,36,38,2,1
+10788,49,0,83,0,46,-5,34,37,2,1
+10789,43,0,81,0,44,29,38,37,0,1
+10790,53,4,79,0,54,24,26,24,0,1
+10791,44,-3,81,3,44,0,37,37,0,1
+10792,49,0,89,0,46,-11,40,42,2,1
+10793,53,1,84,0,54,0,31,30,0,1
+10794,43,-1,79,0,42,-17,35,37,2,1
+10795,37,0,75,-2,24,-10,38,52,14,1
+10796,82,0,86,2,-6,5,4,94,90,5
+10797,37,-4,76,0,36,-20,38,39,2,1
+10798,56,0,81,8,-6,0,25,89,64,4
+10799,39,0,76,-3,38,0,38,37,0,1
+10800,84,0,88,-1,6,-3,4,83,78,5
+10801,41,0,81,7,38,-7,41,43,2,1
+10802,46,4,76,0,46,9,30,29,0,1
+10803,55,0,76,-2,-10,16,21,86,66,4
+10804,41,3,81,0,42,2,40,40,0,1
+10805,44,-2,76,0,42,-30,32,34,2,1
+10806,37,0,83,6,0,0,46,83,36,1
+10807,42,5,81,0,42,0,39,39,0,1
+10808,55,0,95,0,54,-4,40,41,2,1
+10809,56,0,86,0,54,-8,30,32,2,1
+10810,53,0,103,0,54,19,50,49,0,1
+10811,39,-4,81,0,38,0,42,43,0,1
+10812,45,0,76,0,46,29,30,29,0,1
+10813,45,0,81,1,46,23,35,34,0,1
+10814,37,0,95,0,26,3,58,70,12,1
+10815,42,0,85,-4,42,-4,43,44,0,1
+10816,48,0,77,0,50,25,28,28,0,1
+10817,55,0,77,0,-4,-2,21,82,60,4
+10818,37,-1,79,-3,20,-7,43,59,16,1
+10819,56,0,92,0,56,6,35,35,0,1
+10820,38,0,76,8,38,0,38,37,0,1
+10821,55,0,82,0,-20,-15,26,103,76,4
+10822,37,-9,77,0,20,0,40,56,16,1
+10823,56,0,79,0,8,6,24,72,48,4
+10824,46,0,86,1,46,0,40,39,0,1
+10825,39,3,79,5,38,0,39,40,0,1
+10826,43,0,83,0,42,-21,40,42,2,1
+10827,56,0,79,0,8,0,23,71,48,4
+10828,52,0,87,2,52,0,35,35,0,1
+10829,43,-4,76,0,44,12,32,32,0,1
+10830,44,0,85,3,44,0,41,41,0,1
+10831,43,0,82,3,42,0,39,41,2,1
+10832,48,3,82,-3,46,0,34,35,2,1
+10833,55,0,82,0,-40,-28,26,123,96,4
+10834,55,0,79,0,20,12,23,58,34,4
+10835,37,2,75,0,20,0,38,54,16,1
+10836,46,0,107,0,46,0,61,60,0,1
+10837,55,-5,85,0,54,0,31,31,0,1
+10838,49,0,88,0,50,8,40,39,0,1
+10839,37,0,79,-1,0,5,42,79,36,1
+10840,37,0,77,0,34,-6,40,43,2,1
+10841,53,0,81,1,54,15,28,26,0,1
+10842,46,0,87,-1,46,5,41,41,0,1
+10843,84,-5,88,0,2,0,3,85,82,5
+10844,44,1,76,0,42,-27,32,35,2,1
+10845,104,-8,107,-1,70,0,3,37,34,5
+10846,48,5,95,0,46,0,47,49,2,1
+10847,41,-1,78,-4,42,-6,37,37,0,1
+10848,56,0,79,-6,6,-4,24,74,50,4
+10849,37,-1,104,0,24,0,67,80,14,1
+10850,56,0,96,4,42,2,40,55,14,4
+10851,44,2,87,0,44,0,43,43,0,1
+10852,52,-3,81,0,52,0,29,30,0,1
+10853,56,0,79,4,-22,0,24,103,80,4
+10854,40,-3,77,0,38,0,36,38,2,1
+10855,56,0,81,-4,54,-26,25,27,2,1
+10856,37,1,111,11,28,0,73,82,8,1
+10857,37,0,78,0,12,3,42,65,24,1
+10858,46,0,82,0,44,-16,36,38,2,1
+10859,37,0,76,-1,36,1,40,40,0,1
+10860,47,0,78,7,46,0,31,32,0,1
+10861,37,0,77,0,6,1,40,72,32,1
+10862,37,0,74,-6,28,0,38,46,8,1
+10863,37,0,80,-4,36,0,43,44,0,1
+10864,37,0,77,0,16,6,41,62,22,1
+10865,55,0,77,0,0,-9,22,77,56,4
+10866,37,0,83,0,6,0,46,78,32,1
+10867,40,3,93,-1,38,0,53,55,2,1
+10868,37,0,77,0,-22,10,40,101,60,1
+10869,37,0,77,0,26,-7,40,51,10,1
+10870,55,0,78,0,10,-3,23,68,46,4
+10871,37,0,96,0,28,-11,59,68,8,1
+10872,56,0,97,0,54,1,40,42,2,1
+10873,56,0,76,0,-10,-19,20,86,66,4
+10874,37,0,78,0,18,25,41,60,18,1
+10875,41,0,77,-1,38,-30,36,38,2,1
+10876,46,0,83,0,46,8,37,37,0,1
+10877,46,0,108,5,46,12,62,62,0,1
+10878,47,1,86,6,46,0,38,39,0,1
+10879,44,0,76,-3,44,0,31,32,0,1
+10880,38,2,76,0,36,-28,38,40,2,1
+10881,37,0,77,0,12,-4,40,64,24,1
+10882,78,0,82,1,-40,0,4,123,120,5
+10883,39,-2,86,0,38,0,48,48,0,1
+10884,44,0,76,-1,44,4,32,32,0,1
+10885,107,1,109,8,72,1,2,36,34,5
+10886,102,0,103,6,72,28,1,31,30,5
+10887,38,0,100,0,36,-30,63,64,2,1
+10888,53,5,87,0,54,1,34,33,0,1
+10889,37,0,83,0,10,-16,46,72,26,1
+10890,42,-1,79,-1,42,0,37,37,0,1
+10891,55,0,77,0,-20,-9,21,97,76,4
+10892,37,0,75,0,30,-16,38,44,6,1
+10893,56,5,98,0,42,-16,42,57,14,4
+10894,49,-2,81,0,50,6,33,32,0,1
+10895,44,0,83,0,44,19,40,39,0,1
+10896,45,0,109,0,44,-4,64,66,2,1
+10897,43,0,86,-1,42,0,43,45,2,1
+10898,52,5,85,0,52,0,33,33,0,1
+10899,48,-3,80,-4,46,0,32,34,2,1
+10900,45,0,83,0,46,13,38,37,0,1
+10901,56,3,98,0,44,-7,42,54,12,4
+10902,49,0,80,0,50,2,31,31,0,1
+10903,39,-7,90,2,6,0,51,85,34,1
+10904,46,1,84,-2,46,-4,38,37,0,1
+10905,41,0,83,1,42,30,42,41,0,1
+10906,66,0,109,0,68,0,43,42,0,1
+10907,59,0,84,0,56,-4,25,27,2,1
+10908,45,0,85,0,44,-24,40,41,2,1
+10909,45,0,106,-6,44,0,61,62,2,1
+10910,37,-3,108,-6,26,0,71,82,12,1
+10911,55,0,77,-2,28,-17,21,48,28,4
+10912,41,0,83,-6,38,-7,42,44,2,1
+10913,53,0,87,0,52,-5,34,35,2,1
+10914,53,0,81,1,54,19,28,26,0,1
+10915,56,0,80,0,-2,0,24,83,58,4
+10916,45,-111,83,0,44,618,38,39,0,1
+10917,58,0,80,0,56,0,22,23,2,1
+10918,55,0,81,0,-4,5,25,86,60,4
+10919,37,-1,75,-3,24,-7,38,52,14,1
+10920,104,0,104,-1,70,0,1,35,34,5
+10921,37,0,76,0,26,-10,40,50,10,1
+10922,84,-1,88,0,6,0,4,83,78,5
+10923,55,0,95,-5,42,0,39,53,14,4
+10924,51,0,79,0,52,18,28,27,0,1
+10925,49,1,82,0,46,-7,33,35,2,1
+10926,37,0,77,0,16,3,41,62,22,1
+10927,37,0,95,0,12,-1,58,82,24,1
+10928,42,-3,76,0,42,0,33,34,2,1
+10929,37,0,76,0,20,-15,40,55,16,1
+10930,43,-4,77,0,42,-11,34,36,2,1
+10931,77,4,81,0,-42,0,4,125,120,5
+10932,56,4,97,0,50,0,41,48,8,4
+10933,46,0,77,0,46,9,32,31,0,1
+10934,44,0,81,0,42,-5,38,40,2,1
+10935,49,2,82,0,46,-12,33,35,2,1
+10936,37,0,81,-1,28,0,44,52,8,1
+10937,54,3,81,0,54,1,26,26,0,1
+10938,37,0,106,-1,30,4,69,75,6,1
+10939,43,0,79,-1,44,22,35,35,0,1
+10940,37,0,105,0,28,0,68,77,8,1
+10941,37,0,80,-5,24,0,43,57,14,1
+10942,45,-16,77,-1,44,-2,32,34,2,1
+10943,44,-1,82,0,44,5,38,38,0,1
+10944,64,78,82,0,-42,-6,18,126,108,2
+10945,55,0,77,-2,-28,12,21,105,84,4
+10946,43,0,77,-3,44,18,34,33,0,1
+10947,56,0,84,0,54,-12,28,30,2,1
+10948,54,2,81,0,54,0,27,26,0,1
+10949,51,0,91,0,52,25,40,39,0,1
+10950,38,0,105,0,38,0,67,66,0,1
+10951,44,1,86,0,42,-11,43,45,2,1
+10952,56,0,97,-3,50,-16,41,48,6,4
+10953,56,0,95,0,44,12,40,51,12,4
+10954,81,3,86,1,-40,10,4,127,122,5
+10955,55,0,77,2,-24,-15,21,103,82,4
+10956,37,0,98,0,28,-30,61,70,8,1
+10957,47,-1,82,-1,46,0,35,35,0,1
+10958,55,-2,79,0,26,0,23,53,30,4
+10959,37,0,104,0,28,6,67,75,8,1
+10960,47,-2,82,0,46,0,34,35,0,1
+10961,83,-2,86,0,-2,25,4,89,86,5
+10962,41,4,75,0,42,21,34,34,0,1
+10963,44,0,84,-6,44,0,40,40,0,1
+10964,37,4,79,0,6,0,42,74,32,1
+10965,41,0,82,-1,42,3,41,41,0,1
+10966,55,0,82,0,54,3,26,28,2,1
+10967,56,0,77,0,-4,-10,21,82,62,4
+10968,54,3,88,0,54,0,34,33,0,1
+10969,40,0,80,1,38,0,40,41,2,1
+10970,44,0,81,-2,42,-25,37,39,2,1
+10971,55,0,78,0,6,-7,23,73,50,4
+10972,53,0,87,4,54,12,34,33,0,1
+10973,46,3,87,0,46,4,41,41,0,1
+10974,37,0,77,3,36,3,40,41,0,1
+10975,48,3,106,0,46,0,58,60,2,1
+10976,45,-1,76,0,44,-10,31,32,2,1
+10977,55,-3,98,0,46,0,42,51,8,4
+10978,39,4,90,0,38,0,51,51,0,1
+10979,37,0,106,0,26,4,69,80,12,1
+10980,44,3,76,0,44,22,32,32,0,1
+10981,47,0,86,-4,46,0,39,40,0,1
+10982,43,0,81,2,42,-4,38,40,2,1
+10983,37,0,75,-7,34,0,38,41,2,1
+10984,37,0,81,1,16,0,44,65,22,1
+10985,44,0,79,0,42,-7,35,37,2,1
+10986,44,0,86,-5,44,0,42,42,0,1
+10987,56,0,78,-4,0,0,22,78,56,4
+10988,44,4,76,-1,44,2,32,32,0,1
+10989,37,0,75,-3,24,-16,38,52,14,1
+10990,38,1,76,0,36,-17,38,40,2,1
+10991,40,2,84,0,38,0,44,46,2,1
+10992,42,1,76,-2,42,0,34,35,0,1
+10993,53,0,102,2,52,-24,49,51,2,1
+10994,45,-1,79,0,44,-17,33,35,2,1
+10995,37,-4,90,0,24,1,53,66,14,1
+10996,55,-1,98,0,50,-10,42,49,6,4
+10997,37,0,77,0,28,3378,40,48,8,1
+10998,44,-1,86,0,44,6,43,42,0,1
+10999,37,0,76,0,24,8,39,52,14,1
+11000,37,-5,77,0,28,0,40,48,8,1
+11001,55,0,77,0,2,7,22,75,52,4
+11002,55,0,76,0,-14,-26,21,92,70,4
+11003,56,4,96,0,54,16,40,42,2,1
+11004,37,0,106,0,30,3,69,75,6,1
+11005,50,-2,88,1,50,0,38,39,0,1
+11006,42,0,79,-3,42,0,37,38,2,1
+11007,37,0,97,0,12,15,59,84,24,1
+11008,51,0,84,0,50,-14,33,35,2,1
+11009,51,3,78,-2,50,-25,27,29,2,1
+11010,52,-1,109,0,52,0,57,57,0,1
+11011,57,-4,88,0,56,0,31,31,0,1
+11012,52,0,86,-1,52,0,35,35,0,1
+11013,41,0,77,0,42,3,37,36,0,1
+11014,42,0,86,5,42,0,44,45,2,1
+11015,46,2,81,4,46,9,35,35,0,1
+11016,41,5,86,0,38,0,45,47,2,1
+11017,79,0,83,0,-30,9,4,114,110,5
+11018,80,3,84,0,-40,15,4,125,122,5
+11019,37,0,77,0,26,19,40,51,12,1
+11020,44,-5,76,-1,44,0,32,32,0,1
+11021,37,0,77,0,26,13,40,51,12,1
+11022,43,-1,79,0,44,28,35,35,0,1
+11023,37,0,106,-7,28,0,69,78,8,1
+11024,43,0,83,0,42,-8,40,42,2,1
+11025,53,1,78,0,52,-10,25,26,2,1
+11026,80,1,84,0,-36,1,4,121,116,5
+11027,55,-2,81,0,-22,-5,26,105,78,4
+11028,55,-7,76,-18,0,0,21,76,54,4
+11029,56,0,95,0,52,4,40,44,4,4
+11030,46,5,85,2,46,11,39,39,0,1
+11031,53,-5,79,0,52,-20,26,27,2,1
+11032,45,0,85,1,46,12,40,39,0,1
+11033,44,0,88,0,44,2,45,44,0,1
+11034,55,0,78,0,6,-29,23,73,50,4
+11035,44,0,85,-4,44,0,41,41,0,1
+11036,82,0,86,1,-40,7,5,128,124,5
+11037,37,0,104,4,28,0,67,76,8,1
+11038,47,0,83,3,46,0,36,37,0,1
+11039,37,0,104,0,20,22,67,84,16,1
+11040,46,1,83,0,46,7,37,36,0,1
+11041,37,0,77,-1,26,13,40,51,10,1
+11042,62,-2,111,0,62,0,49,49,0,1
+11043,43,0,81,6,42,-4,37,39,2,1
+11044,37,0,80,0,20,29,43,59,16,1
+11045,56,0,97,0,50,-22,41,48,6,4
+11046,49,3,102,0,46,-13,53,55,2,1
+11047,37,0,75,0,18,-31,38,57,18,1
+11048,108,2,109,0,72,5,1,36,36,5
+11049,43,0,85,0,42,-13,42,44,2,1
+11050,54,0,83,0,54,0,28,28,0,1
+11051,37,0,76,0,34,5,39,42,2,1
+11052,41,-4,86,0,42,6,46,45,0,1
+11053,48,-3,84,0,50,30,36,35,0,1
+11054,37,0,80,0,30,-10,43,49,6,1
+11055,49,-5,89,0,50,0,40,40,0,1
+11056,53,0,83,0,52,-5,30,32,2,1
+11057,48,0,88,0,46,-2,39,41,2,1
+11058,55,5,78,-1,42,0,23,37,14,4
+11059,56,0,78,0,8,-6,22,70,48,4
+11060,84,0,87,0,0,4,3,87,84,5
+11061,37,0,104,0,16,-12,67,88,22,1
+11062,43,0,87,4,42,0,44,46,2,1
+11063,58,0,86,0,56,0,28,29,0,1
+11064,37,0,84,4,30,0,47,53,6,1
+11065,41,0,79,0,38,0,38,40,2,1
+11066,49,3,106,0,50,5,56,57,0,1
+11067,46,5,88,0,46,14,42,41,0,1
+11068,46,0,76,1,46,15,30,30,0,1
+11069,55,0,77,0,20,-20,22,57,34,4
+11070,51,0,80,0,52,28,29,28,0,1
+11071,46,-2,86,0,46,0,40,39,0,1
+11072,49,1,84,0,46,-4,35,37,2,1
+11073,56,5,95,0,46,0,39,49,10,4
+11074,43,0,79,0,44,31,36,35,0,1
+11075,37,0,76,0,34,-2,39,43,4,1
+11076,37,0,76,-7,20,0,39,55,16,1
+11077,52,-1,86,0,52,-1,33,34,0,1
+11078,56,5,97,0,38,0,41,58,18,4
+11079,56,-1,96,0,50,-16,40,47,6,4
+11080,47,0,102,-1,46,0,55,55,0,1
+11081,37,0,92,8,6,0,54,86,32,1
+11082,41,-5,88,0,42,0,47,46,0,1
+11083,37,0,81,0,18,-14,44,63,18,1
+11084,43,0,87,0,42,-2,44,46,2,1
+11085,42,0,85,-2,42,0,43,44,0,1
+11086,105,-4,107,-2,70,0,2,37,34,5
+11087,37,-84,106,0,34,0,69,72,4,3
+11088,55,0,77,0,26,16,21,51,30,4
+11089,83,0,86,0,-4,25,3,92,88,5
+11090,37,0,81,0,26,-22,44,55,10,1
+11091,37,0,83,0,2,6,46,80,34,1
+11092,50,-5,81,8,50,0,32,32,0,1
+11093,55,0,77,0,20,-8,22,57,34,4
+11094,49,0,83,-1,50,0,33,33,0,1
+11095,37,0,80,0,20,14,43,59,16,1
+11096,56,0,86,0,56,5,30,29,0,1
+11097,55,-3,80,0,-2,0,25,83,58,4
+11098,105,5,107,9,72,5,1,35,34,5
+11099,37,-3,86,0,38,8,48,47,0,1
+11100,43,1,80,-7,42,0,37,39,2,1
+11101,53,0,81,3,54,0,28,27,0,1
+11102,43,0,84,1,42,-1,41,43,2,1
+11103,37,0,82,0,38,26,45,43,0,1
+11104,55,0,95,0,46,-14,40,49,8,4
+11105,37,0,93,0,28,-26,56,65,8,1
+11106,41,1,78,0,42,21,37,37,0,1
+11107,48,3,89,0,46,0,41,42,2,1
+11108,44,0,81,0,44,15,37,37,0,1
+11109,42,-1,88,0,42,0,46,47,2,1
+11110,37,-2,76,-7,36,-11,39,40,0,1
+11111,37,0,106,0,28,5,68,77,8,1
+11112,39,-3,78,0,0,8,39,78,40,1
+11113,41,0,87,0,42,29,46,46,0,1
+11114,102,0,103,3,70,-4,1,33,32,5
+11115,44,0,76,-1,44,6,32,32,0,1
+11116,37,0,75,0,28,-17,38,46,8,1
+11117,56,3,81,0,56,22,25,24,0,1
+11118,44,0,86,5,44,6,43,42,0,1
+11119,49,2,79,0,50,0,30,30,0,1
+11120,41,3,81,2,38,0,41,43,2,1
+11121,51,1,78,-3,52,3,27,26,0,1
+11122,37,0,75,7,24,22,38,52,14,1
+11123,55,0,82,-1,-20,8,26,103,76,4
+11124,56,0,78,0,12,22,22,65,42,4
+11125,49,5,78,0,50,1,29,29,0,1
+11126,37,0,76,-1,30,16,40,45,6,1
+11127,37,0,96,0,38,17,59,57,0,1
+11128,37,0,79,0,24,25,42,55,14,1
+11129,37,0,79,3,2,4,42,76,34,1
+11130,37,0,77,0,38,29,40,39,0,1
+11131,37,0,86,0,36,-15,48,50,2,1
+11132,42,-5,99,0,42,0,57,58,2,1
+11133,41,0,79,0,42,23,38,37,0,1
+11134,38,1,102,0,38,1,64,63,0,1
+11135,55,0,95,-1,42,-15,40,54,14,4
+11136,41,1,78,0,38,0,37,39,2,1
+11137,56,0,77,0,18,30,22,59,38,4
+11138,37,0,84,0,28,1,47,55,8,1
+11139,59,-4,108,0,60,0,49,49,0,1
+11140,55,-2,77,0,34,-9,22,44,22,4
+11141,56,3,86,0,56,12,30,29,0,1
+11142,55,0,98,0,50,-14,42,49,6,4
+11143,37,3,83,1,34,0,45,49,4,1
+11144,41,-3,77,0,38,-17,36,38,2,1
+11145,45,0,85,2,44,-12,40,41,2,1
+11146,42,2,82,1,42,0,40,41,0,1
+11147,51,0,83,-7,52,9,32,32,0,1
+11148,55,0,91,0,54,0,35,37,2,1
+11149,51,0,83,5,52,0,31,31,0,1
+11150,46,0,86,0,46,-1,40,39,0,1
+11151,41,-1,76,0,42,0,34,34,0,1
+11152,52,-2,84,0,52,-3,31,32,0,1
+11153,45,0,77,0,44,-27,32,34,2,1
+11154,49,0,84,0,46,-19,35,37,2,1
+11155,84,4,86,-2,-4,0,3,92,88,5
+11156,37,-3,90,-2,6,0,53,85,32,1
+11157,38,3,102,0,38,2,64,63,0,1
+11158,56,0,81,0,54,-18,25,26,2,1
+11159,44,-536,88,0,44,0,44,44,0,1
+11160,37,13,77,-4,-22,5,41,101,60,1
+11161,55,0,95,0,46,-27,40,49,8,4
+11162,45,3,93,0,44,0,49,50,0,1
+11163,51,-4,82,0,50,-12,31,33,2,1
+11164,41,0,85,0,42,12,44,44,0,1
+11165,49,0,77,0,46,-3,29,31,2,1
+11166,46,0,83,-7,46,0,36,36,0,1
+11167,41,0,77,0,38,-21,36,38,2,1
+11168,56,0,96,0,52,11,40,44,4,4
+11169,37,0,77,0,38,30,39,38,0,1
+11170,38,0,77,3,38,0,39,39,0,1
+11171,37,-1,79,0,18,0,42,61,18,1
+11172,45,0,107,0,44,-16,62,63,2,1
+11173,51,0,83,0,50,-10,32,33,2,1
+11174,37,0,99,5,30,0,61,68,6,1
+11175,55,2,93,0,54,0,38,39,2,1
+11176,55,-5,78,0,54,0,23,24,0,1
+11177,55,-5,97,0,50,0,42,48,6,4
+11178,49,3,95,0,50,26,47,46,0,1
+11179,41,1,106,-1,42,4,65,65,0,1
+11180,43,0,77,-1,42,-2,34,35,2,1
+11181,55,4,87,0,54,0,32,33,0,1
+11182,37,0,106,0,24,2,69,82,14,1
+11183,56,0,97,-4,52,18,41,45,4,4
+11184,44,0,86,-6,44,0,43,42,0,1
+11185,38,-3,86,0,38,0,48,47,0,1
+11186,37,0,75,0,28,-18,38,46,8,1
+11187,38,0,82,-2,38,-3,44,43,0,1
+11188,37,0,79,0,36,0,43,43,0,1
+11189,43,0,77,-1,44,13,34,33,0,1
+11190,44,-2,76,0,44,6,32,32,0,1
+11191,55,0,93,2,10,0,37,82,46,4
+11192,46,4,76,2,46,0,30,30,0,1
+11193,37,0,79,-3,0,0,42,79,36,1
+11194,45,3,86,1,44,-3,41,42,2,1
+11195,56,0,95,-7,44,0,39,51,12,4
+11196,38,0,80,1,38,0,42,41,0,1
+11197,45,0,82,0,44,-7,37,38,2,1
+11198,37,-1,106,-2,30,67,69,75,6,1
+11199,43,0,77,-1,42,-4,34,36,2,1
+11200,46,0,81,3,44,-30,35,37,2,1
+11201,37,0,76,0,34,25,39,43,4,1
+11202,85,0,88,0,2,23,3,86,82,5
+11203,53,-5,88,0,54,7,35,34,0,1
+11204,39,-2,76,6,38,0,37,37,0,1
+11205,38,3,79,0,38,10,41,40,0,1
+11206,37,0,81,0,20,16,44,60,16,1
+11207,40,1,79,0,38,0,39,41,2,1
+11208,53,0,108,0,54,6,55,54,0,1
+11209,37,0,94,-5,16,0,57,79,22,1
+11210,45,-3,77,0,44,-11,31,33,2,1
+11211,49,0,81,0,46,-20,32,34,2,1
+11212,50,-5,89,0,50,0,39,40,0,1
+11213,44,0,90,-4,44,2,46,46,0,1
+11214,37,0,79,0,26,-5,42,53,12,1
+11215,55,0,81,0,-20,7,26,102,76,4
+11216,46,5,84,0,46,0,38,38,0,1
+11217,37,0,77,0,18,0,40,59,18,1
+11218,44,0,76,0,42,-17,32,35,2,1
+11219,37,2,86,0,36,0,49,50,0,1
+11220,43,-1,86,0,42,-14,42,44,2,1
+11221,37,0,76,-4,24,0,40,53,14,1
+11222,45,2,83,0,44,0,38,39,2,1
+11223,44,0,83,0,44,16,40,39,0,1
+11224,37,0,97,0,34,-6,59,63,4,1
+11225,56,0,96,0,56,23,40,39,0,1
+11226,55,0,93,0,16,-1,38,78,40,4
+11227,46,0,102,0,46,0,57,56,0,1
+11228,41,1,102,0,42,25,61,60,0,1
+11229,50,1,77,1,50,0,27,28,0,1
+11230,37,0,95,0,10,29,58,84,26,1
+11231,55,0,74,-13,0,0,19,74,54,4
+11232,51,-3,78,0,52,20,27,26,0,1
+11233,36,0,76,0,36,0,39,39,0,1
+11234,55,0,96,0,52,-6,41,44,4,4
+11235,79,0,83,-1,-40,0,4,125,120,5
+11236,53,0,81,0,54,0,28,27,0,1
+11237,52,-4,83,0,52,0,31,32,0,1
+11238,53,1,81,0,54,5,28,27,0,1
+11239,42,-1,80,-4,42,-6,38,39,0,1
+11240,55,-3,91,0,54,-15,35,37,2,1
+11241,55,-1,86,0,54,-7,31,32,2,1
+11242,37,-2,106,-6,36,-11,69,69,0,1
+11243,41,-3,83,0,42,0,42,42,0,1
+11244,48,3,90,0,46,0,42,43,2,1
+11245,43,0,84,5,42,-10,41,43,2,1
+11246,52,0,81,0,52,-3,29,30,0,1
+11247,42,-1,77,-6,42,0,35,35,0,1
+11248,44,0,85,0,42,-20,41,44,2,1
+11249,56,0,98,5,50,22,42,49,6,4
+11250,79,0,84,0,-40,1,4,125,120,5
+11251,55,0,77,-1,0,8,22,77,56,4
+11252,53,0,102,0,52,-7,49,50,2,1
+11253,51,1,87,0,52,4,36,35,0,1
+11254,56,4,78,0,18,26,22,60,38,4
+11255,37,0,78,-2,8,0,41,70,30,1
+11256,37,0,104,0,24,1,67,80,14,1
+11257,45,-1,79,0,46,12,34,33,0,1
+11258,49,0,81,0,50,0,32,32,0,1
+11259,37,0,79,-2,26,-11,42,53,10,1
+11260,56,0,82,2,-12,6,26,95,68,4
+11261,50,-2,87,3,50,0,37,38,0,1
+11262,56,1,95,0,42,-5,40,54,14,4
+11263,105,-5,106,1,72,3,2,34,32,5
+11264,37,0,106,0,28,-19,68,77,8,1
+11265,41,-5,106,0,42,0,64,64,0,1
+11266,37,0,79,0,26,1,42,53,10,1
+11267,51,0,83,0,52,17,31,31,0,1
+11268,56,2,77,0,-24,7,21,103,82,4
+11269,39,-5,100,0,38,0,62,62,0,1
+11270,38,0,79,2,38,0,41,40,0,1
+11271,38,1,81,0,38,7,43,42,0,1
+11272,57,-5,88,6,56,0,32,31,0,1
+11273,55,0,73,-12,0,5,18,73,54,4
+11274,46,3,79,-5,46,0,33,32,0,1
+11275,37,0,83,0,-2,-19,46,85,40,1
+11276,41,0,80,-3,42,0,39,39,0,1
+11277,43,0,82,-5,42,0,39,41,2,1
+11278,37,0,81,0,24,-2,44,57,14,1
+11279,37,0,77,0,28,27,40,48,8,1
+11280,56,0,80,0,54,-27,24,26,2,1
+11281,56,-3,86,0,56,0,29,29,0,1
+11282,56,0,78,-1,8,-4,22,70,48,4
+11283,56,-1,97,0,46,2,41,51,10,4
+11284,37,-6,90,-3,8,-8,53,82,30,1
+11285,80,-1,84,-7,-20,0,4,105,100,5
+11286,56,-1,80,-6,24,14,24,57,32,4
+11287,76,2,81,0,-42,0,4,125,120,5
+11288,46,0,78,-7,46,21,32,32,0,1
+11289,56,-2,92,0,56,0,36,35,0,1
+11290,52,0,103,6,52,-6,51,51,0,1
+11291,55,0,96,1,42,-1,41,55,14,4
+11292,41,0,78,0,42,2,37,37,0,1
+11293,56,0,81,0,-20,-2,25,102,76,4
+11294,55,0,82,0,-40,15,26,123,96,4
+11295,55,0,96,0,42,-11,41,55,14,4
+11296,41,0,79,0,42,9,39,38,0,1
+11297,45,0,81,-2,44,-4,36,37,2,1
+11298,41,-1,86,0,38,-23,46,48,2,1
+11299,54,2,77,0,-22,0,23,101,78,4
+11300,52,4,79,0,52,0,26,27,0,1
+11301,51,0,77,0,50,-23,26,28,2,1
+11302,41,0,84,0,42,9,43,43,0,1
+11303,49,0,78,8,50,0,29,29,0,1
+11304,51,0,90,0,50,-30,38,41,2,1
+11305,43,-1,87,0,42,0,44,46,2,1
+11306,52,-3,102,0,52,0,50,50,0,1
+11307,40,-2,84,0,38,0,45,46,2,1
+11308,37,0,77,0,34,15,40,44,4,1
+11309,77,0,81,0,-42,0,4,125,122,5
+11310,43,-3,77,0,42,-9,34,36,2,1
+11311,37,0,98,0,28,-8,61,70,8,1
+11312,104,5,106,6,70,-29,1,36,34,5
+11313,42,4,79,0,42,2,37,37,0,1
+11314,39,1,93,0,36,17,54,57,2,1
+11315,36,0,83,0,36,0,46,46,0,1
+11316,56,0,79,0,12,7,23,66,42,4
+11317,103,-2,104,-1,70,0,1,35,34,5
+11318,82,0,86,-1,-10,3,3,96,92,5
+11319,50,-1,87,-5,50,0,37,38,0,1
+11320,101,-2,102,-3,72,0,1,29,28,5
+11321,53,1,87,0,54,22,34,33,0,1
+11322,41,0,86,4,38,-30,45,48,2,1
+11323,45,0,90,0,44,-6,45,46,2,1
+11324,37,1,77,0,34,0,40,43,4,1
+11325,45,0,86,-2,44,0,42,42,0,1
+11326,56,0,81,-2,-14,0,25,97,72,4
+11327,51,0,81,0,50,-19,30,32,2,1
+11328,49,0,81,1,46,-10,33,35,2,1
+11329,56,0,95,-4,50,0,39,46,6,4
+11330,79,-1,83,0,-32,85,4,117,112,5
+11331,41,0,77,0,38,-30,36,38,2,1
+11332,45,0,86,0,46,28,41,39,0,1
+11333,55,0,92,0,-4,-6,36,97,60,4
+11334,55,0,79,3,26,24,23,53,30,4
+11335,45,3,83,0,44,-6,37,39,2,1
+11336,46,5,83,0,46,4,37,37,0,1
+11337,56,-4,97,0,42,0,41,55,14,4
+11338,45,0,79,0,44,-19,34,35,2,1
+11339,55,0,78,0,18,25,23,60,38,4
+11340,39,3,106,0,38,0,67,67,0,1
+11341,45,0,82,-8,44,0,37,38,0,1
+11342,38,0,93,0,30,22,55,62,8,1
+11343,87,2,89,0,8,1,2,81,78,5
+11344,44,0,86,0,44,11,42,42,0,1
+11345,45,2,76,0,44,0,32,32,0,1
+11346,44,1,102,0,44,8,59,58,0,1
+11347,45,0,87,1,46,28,42,41,0,1
+11348,37,0,77,0,8,-19,41,70,28,1
+11349,37,0,82,-1,36,-2,45,46,2,1
+11350,55,-1,96,0,52,-5,41,44,4,4
+11351,37,-5,97,0,34,-8,61,64,2,1
+11352,42,0,76,4,42,0,34,35,2,1
+11353,84,0,87,6,-2,0,3,90,86,5
+11354,39,0,81,3,38,0,42,43,0,1
+11355,55,0,77,-5,10,12,22,67,46,4
+11356,41,0,88,0,38,0,47,49,2,1
+11357,46,0,87,2,46,3,41,41,0,1
+11358,37,0,76,6,26,0,39,50,12,1
+11359,37,0,78,0,-2,-12,42,81,40,1
+11360,37,0,79,0,38,28,42,41,0,1
+11361,37,0,94,0,16,27,57,79,22,1
+11362,44,-4,87,0,44,0,43,43,0,1
+11363,52,0,79,0,54,31,26,24,0,1
+11364,41,-3,86,0,38,-22,45,47,2,1
+11365,76,0,80,0,-42,-17,4,124,120,5
+11366,53,1,88,0,54,29,35,33,0,1
+11367,45,-1,88,8,44,15,43,44,2,1
+11368,85,0,89,0,2,-11,4,86,82,5
+11369,80,1,84,0,-38,0,4,123,118,5
+11370,37,0,81,-7,28,15,45,53,8,1
+11371,37,-4,90,0,26,0,53,64,12,1
+11372,45,0,83,5,46,31,37,36,0,1
+11373,37,0,79,-2,36,-4,42,43,0,1
+11374,37,0,82,4,-4,0,45,87,42,1
+11375,55,0,77,0,24,11,22,54,32,4
+11376,37,0,78,0,16,-12,42,63,22,1
+11377,52,3,81,0,52,0,28,29,0,1
+11378,48,-3,81,-2,46,0,33,34,2,1
+11379,37,0,75,0,20,22,38,54,16,1
+11380,82,0,86,3,-12,0,4,99,94,5
+11381,37,0,79,0,34,5,42,46,4,1
+11382,44,4,76,0,44,4,32,32,0,1
+11383,38,5,106,1,36,-3,68,70,2,1
+11384,37,0,103,0,30,8,66,72,6,1
+11385,44,3,107,0,44,13,63,63,0,1
+11386,56,0,76,0,-4,-22,20,81,62,4
+11387,56,0,97,0,44,-1,41,53,12,4
+11388,45,5,85,0,44,0,41,41,0,1
+11389,56,0,81,0,-10,10,25,92,66,4
+11390,57,2,96,0,56,0,39,39,0,1
+11391,46,1,86,0,46,0,40,39,0,1
+11392,37,-1,76,0,36,-17,38,39,2,1
+11393,82,2561,106,-4,34,-20,24,72,48,6
+11394,41,0,79,0,38,-22,38,40,2,1
+11395,44,0,81,-2,44,12,37,37,0,1
+11396,102,4,102,1,72,18,1,30,30,5
+11397,55,0,98,0,50,-24,42,49,6,4
+11398,46,5,77,0,46,22,32,31,0,1
+11399,49,-1,107,0,50,11,58,58,0,1
+11400,41,0,84,0,42,16,43,43,0,1
+11401,55,0,81,0,54,0,26,27,2,1
+11402,46,0,84,0,46,13,38,37,0,1
+11403,37,0,80,0,36,-1,43,44,2,1
+11404,42,0,79,8,42,0,38,38,0,1
+11405,56,1,76,-4,-4,0,20,81,62,4
+11406,42,0,78,-2,42,0,36,37,2,1
+11407,49,0,81,0,50,1,32,32,0,1
+11408,41,0,89,0,42,28,48,48,0,1
+11409,43,-1,82,0,42,-6,39,41,2,1
+11410,80,0,84,0,-38,-3,4,123,118,5
+11411,45,1,86,0,44,-1,41,42,2,1
+11412,44,0,79,0,44,5,35,35,0,1
+11413,56,-2,97,-4,46,-10,41,51,10,4
+11414,37,0,80,0,8,17,43,72,30,1
+11415,53,0,82,0,52,0,29,30,2,1
+11416,105,-2,107,-4,70,0,2,37,36,5
+11417,43,0,79,0,42,-12,35,37,2,1
+11418,56,0,76,0,-10,2,20,86,66,4
+11419,56,0,97,0,54,10,40,42,2,1
+11420,55,0,77,8,28,8,22,49,28,4
+11421,37,0,92,0,24,4,55,69,14,1
+11422,57,0,86,6,56,0,29,29,0,1
+11423,44,0,84,0,42,-26,40,43,2,1
+11424,54,0,89,1,54,0,35,35,0,1
+11425,37,0,77,3,34,-30,40,43,2,1
+11426,91,-38,107,0,64,-36,16,42,26,3
+11427,38,0,92,0,18,5,54,74,20,1
+11428,55,0,95,-4,36,-12,39,59,20,4
+11429,40,4,106,0,38,0,66,67,2,1
+11430,56,1,87,0,56,8,31,30,0,1
+11431,41,5,85,0,42,20,44,44,0,1
+11432,53,0,86,0,54,7,33,32,0,1
+11433,37,0,82,0,34,8,45,48,2,1
+11434,58,2,91,0,56,0,33,34,0,1
+11435,45,-5,85,0,44,0,41,41,0,1
+11436,54,-1,84,0,54,0,30,30,0,1
+11437,51,-5,86,0,52,0,35,34,0,1
+11438,56,0,98,0,44,9,42,54,12,4
+11439,53,0,86,1,54,2,33,32,0,1
+11440,56,0,81,2,54,-7,25,26,2,1
+11441,37,0,95,0,10,8,58,84,26,1
+11442,55,-5,80,0,56,22,25,23,0,1
+11443,85,0,89,0,2,-10,4,86,82,5
+11444,55,0,95,0,46,4,40,49,8,4
+11445,81,1,85,0,-40,9,4,126,122,5
+11446,42,3,76,-3,42,0,35,35,0,1
+11447,85,-3,88,0,0,0,3,88,84,5
+11448,37,2,77,0,34,-14,39,43,4,1
+11449,50,0,88,0,50,0,39,39,0,1
+11450,49,0,79,0,50,7,31,30,0,1
+11451,45,0,77,0,44,-11,32,34,2,1
+11452,37,4,80,10,24,0,43,57,14,1
+11453,57,-2,81,0,56,0,24,24,0,1
+11454,37,0,106,0,24,-4,69,83,14,1
+11455,37,0,80,0,8,-19,43,72,30,1
+11456,55,0,97,0,44,-8,41,53,12,4
+11457,38,0,105,-2,38,-4,67,66,0,1
+11458,37,0,77,0,-14,-14,40,92,52,1
+11459,37,0,78,7,34,-13,41,45,4,1
+11460,54,3,79,0,54,0,25,24,0,1
+11461,51,1,86,0,50,0,35,37,2,1
+11462,53,0,83,5,54,6,30,29,0,1
+11463,46,0,109,0,44,-24,64,66,2,1
+11464,38,4,86,0,38,0,48,48,0,1
+11465,45,2,88,0,44,-1,42,44,2,1
+11466,37,-1,79,0,38,8,41,40,0,1
+11467,37,0,107,0,28,3,69,78,8,1
+11468,48,0,84,1,46,0,36,37,2,1
+11469,37,0,81,0,24,-4,44,57,14,1
+11470,48,0,81,7,46,0,33,34,2,1
+11471,37,0,83,0,36,0,45,46,2,1
+11472,56,0,76,0,-10,25,20,86,66,4
+11473,48,0,88,0,46,-11,39,41,2,1
+11474,45,0,80,0,46,12,35,34,0,1
+11475,55,0,97,2,42,0,41,55,14,4
+11476,37,0,92,1,6,-20,54,86,32,1
+11477,58,4,81,0,56,0,23,24,2,1
+11478,81,1,84,0,-12,13,3,97,94,5
+11479,37,0,76,0,28,-29,40,48,8,1
+11480,37,0,78,0,0,10,41,78,36,1
+11481,51,1,87,0,52,8,36,35,0,1
+11482,78,0,83,5,-46,0,4,129,124,5
+11483,85,0,88,-2,2,-9,3,86,82,5
+11484,37,0,104,0,28,14,67,75,8,1
+11485,46,0,86,6,46,0,41,40,0,1
+11486,50,-1,87,2,50,0,37,38,0,1
+11487,56,5,97,0,54,1,40,42,2,1
+11488,37,0,76,0,18,27,39,58,18,1
+11489,43,-5,108,0,42,0,65,66,2,1
+11490,37,0,77,0,2,-19,40,74,34,1
+11491,37,0,78,-3,0,0,42,78,36,1
+11492,44,0,86,0,44,0,43,42,0,1
+11493,47,-1,77,-4,46,-5,31,31,0,1
+11494,37,0,80,0,12,-18,43,67,24,1
+11495,48,-1,90,4,46,-2,42,44,2,1
+11496,71,-8,75,-5,-40,7,4,116,112,5
+11497,55,0,96,0,52,10,41,44,4,4
+11498,54,0,86,0,54,0,33,32,0,1
+11499,52,-2,81,0,52,0,29,30,0,1
+11500,102,2,103,0,70,-13,1,33,32,5
+11501,55,0,77,-2,18,0,22,59,38,4
+11502,58,5,85,0,56,0,27,28,2,1
+11503,81,2,85,5,-24,0,4,111,106,5
+11504,55,0,79,0,6,4,23,74,50,4
+11505,41,2,78,0,42,11,37,37,0,1
+11506,37,0,90,0,34,3,53,57,4,1
+11507,44,0,81,7,42,-19,38,40,2,1
+11508,37,-2,80,1,36,0,43,44,0,1
+11509,56,0,78,0,16,-2,22,63,40,4
+11510,37,0,75,-1,26,-10,38,49,12,1
+11511,37,0,84,0,28,-12,47,55,8,1
+11512,55,0,95,0,34,-7,40,62,22,4
+11513,45,0,93,-6,44,0,48,49,0,1
+11514,40,5,85,0,38,0,45,46,2,1
+11515,48,-1,76,-2,46,-2,28,30,2,1
+11516,37,0,78,0,38,30,41,39,0,1
+11517,37,0,79,0,16,21,43,64,22,1
+11518,81,-1,85,0,-22,0,4,108,104,5
+11519,37,0,79,5,0,-27,42,79,36,1
+11520,41,-2,79,0,42,23,38,37,0,1
+11521,46,1,79,1,46,5,33,32,0,1
+11522,45,3,87,0,44,-2,42,43,2,1
+11523,48,-5,81,0,46,-3,33,35,2,1
+11524,37,0,97,0,12,17,59,84,24,1
+11525,56,3,98,3,38,-30,42,59,18,4
+11526,49,0,76,-3,46,-28,27,30,2,1
+11527,41,1,76,0,42,3,34,34,0,1
+11528,51,0,86,0,52,29,35,34,0,1
+11529,49,1,79,1,50,23,30,30,0,1
+11530,41,0,86,0,38,-22,45,48,2,1
+11531,37,0,104,5,18,0,67,86,18,1
+11532,38,0,76,-6,38,0,38,37,0,1
+11533,56,0,90,0,54,-14,34,35,2,1
+11534,41,0,87,0,42,23,46,46,0,1
+11535,37,0,97,-4,30,-19,60,66,6,1
+11536,46,0,93,5,46,0,48,47,0,1
+11537,37,0,97,-6,30,0,60,66,6,1
+11538,37,4,75,0,20,0,38,54,16,1
+11539,46,1,82,0,46,9,36,35,0,1
+11540,41,-5,79,0,42,2,38,37,0,1
+11541,37,0,76,-2,16,20,39,61,22,1
+11542,55,-1,97,-2,50,13,42,48,6,4
+11543,37,0,93,0,12,28,56,81,24,1
+11544,43,-1,79,0,42,-15,35,37,2,1
+11545,51,-5,88,0,50,-13,37,39,2,1
+11546,44,-1,82,2,44,0,38,38,0,1
+11547,37,0,77,0,20,4,40,57,16,1
+11548,45,1,108,0,44,-9,62,64,2,1
+11549,50,-5,86,-2,50,-4,36,37,0,1
+11550,50,0,87,-3,50,0,37,38,0,1
+11551,56,1,97,0,56,13,40,40,0,1
+11552,37,0,79,-4,2,0,43,77,34,1
+11553,51,0,87,0,50,-16,36,38,2,1
+11554,80,0,84,0,-28,-6,4,112,108,5
+11555,37,0,81,3,28,0,45,53,8,1
+11556,56,0,95,0,50,-8,40,46,6,4
+11557,81,4,84,0,-14,1,3,100,96,5
+11558,56,0,77,0,-4,16,21,82,62,4
+11559,123,656,105,1,36,-4,-18,69,86,5
+11560,37,0,82,-1,38,28,45,43,0,1
+11561,37,0,77,-5,30,-6,40,46,6,1
+11562,42,-25,77,0,-2,0,34,79,46,3
+11563,49,0,83,0,50,19,34,34,0,1
+11564,52,-69,88,0,8,6,36,81,44,3
+11565,50,-4,86,-2,50,-3,36,37,0,1
+11566,55,0,95,0,46,-4,40,49,8,4
+11567,53,0,86,0,54,18,33,32,0,1
+11568,44,-3,83,5,44,0,38,39,0,1
+11569,79,0,84,1,-42,-1,4,128,124,5
+11570,79,4,83,0,-42,0,4,126,122,5
+11571,37,0,76,2,34,-17,39,43,4,1
+11572,45,3,82,0,44,0,37,38,2,1
+11573,37,2,100,0,36,0,64,64,0,1
+11574,81,0,86,0,-40,4,4,127,122,5
+11575,41,0,81,0,38,-20,40,43,2,1
+11576,56,0,95,-3,46,0,40,49,10,4
+11577,44,0,86,0,44,7,43,42,0,1
+11578,56,0,77,1,-2,22,21,79,58,4
+11579,56,2,81,0,56,17,25,24,0,1
+11580,37,0,79,0,10,29,42,68,26,1
+11581,103,5,104,2,70,-27,1,35,34,5
+11582,56,0,80,0,54,-30,24,26,2,1
+11583,45,0,88,0,46,24,42,41,0,1
+11584,37,0,77,-3,-10,13,40,87,46,1
+11585,57,0,84,2,56,0,27,27,0,1
+11586,37,0,77,0,2,19,40,74,34,1
+11587,45,0,82,0,44,-21,37,38,2,1
+11588,37,0,79,0,6,8,42,74,32,1
+11589,41,-3,82,0,42,7,41,41,0,1
+11590,55,-3,77,-7,0,0,22,77,56,4
+11591,43,0,77,-2,42,-4,34,36,2,1
+11592,37,0,76,-3,36,-13,39,40,2,1
+11593,56,0,97,0,56,10,40,40,0,1
+11594,55,0,95,-4,44,0,40,51,12,4
+11595,46,2,81,0,46,0,35,35,0,1
+11596,56,0,96,8,56,0,40,39,0,1
+11597,37,0,77,-2,8,0,40,69,30,1
+11598,37,4,79,0,36,0,42,43,0,1
+11599,45,0,76,0,46,31,30,29,0,1
+11600,37,3,76,0,20,0,39,55,16,1
+11601,49,0,88,0,50,22,39,39,0,1
+11602,55,0,77,-1,-4,74,21,82,60,4
+11603,37,0,76,0,36,9,40,40,0,1
+11604,41,0,79,6,42,11,39,38,0,1
+11605,42,0,90,0,42,0,47,48,2,1
+11606,41,3,88,0,42,1,47,47,0,1
+11607,40,0,77,-2,38,0,38,39,2,1
+11608,37,0,77,0,38,7,39,38,0,1
+11609,45,0,86,3,44,0,42,42,0,1
+11610,43,0,76,0,44,22,33,32,0,1
+11611,42,0,84,-6,42,0,41,43,2,1
+11612,55,0,79,0,10,-15,23,68,46,4
+11613,55,0,96,0,54,3,41,42,0,1
+11614,49,0,95,-5,50,10,46,46,0,1
+11615,81,0,84,0,-18,31,4,103,98,5
+11616,42,-2,84,-7,42,0,42,43,0,1
+11617,46,5,89,0,46,8,43,42,0,1
+11618,41,-2,77,0,38,-11,37,39,2,1
+11619,46,5,83,0,46,0,37,37,0,1
+11620,37,0,76,0,20,19,40,55,16,1
+11621,58,1,84,0,56,0,27,28,0,1
+11622,55,0,97,0,50,17,42,48,6,4
+11623,49,0,81,0,46,-7,33,35,2,1
+11624,56,4,97,0,44,1,41,53,12,4
+11625,42,0,86,2,42,0,43,44,2,1
+11626,104,4,105,0,72,5,1,33,32,5
+11627,41,0,86,1,42,10,45,45,0,1
+11628,45,0,88,-2,44,-3,44,44,0,1
+11629,79,0,83,-3,-38,0,4,122,118,5
+11630,37,3,75,0,26,-1,38,49,12,1
+11631,41,0,78,4,42,23,37,37,0,1
+11632,56,0,96,0,54,0,40,42,2,1
+11633,37,0,79,2,8,0,42,71,30,1
+11634,56,5,95,0,42,0,39,54,14,4
+11635,55,-1,98,0,50,-21,42,49,6,4
+11636,37,0,76,0,28,-14,39,48,8,1
+11637,55,0,98,0,52,30,42,46,4,4
+11638,37,0,75,-2,20,-6,38,54,16,1
+11639,38,0,96,0,36,-28,58,60,2,1
+11640,53,0,80,0,52,0,27,28,2,1
+11641,37,0,92,3,10,0,54,81,28,1
+11642,45,0,76,0,44,-12,30,32,2,1
+11643,41,0,83,0,42,23,42,41,0,1
+11644,45,0,79,-1,44,-6,33,35,2,1
+11645,46,0,90,-2,46,0,43,43,0,1
+11646,51,0,87,0,50,-13,36,38,2,1
+11647,44,-2,86,0,44,0,43,42,0,1
+11648,45,-2,79,0,44,-24,33,35,2,1
+11649,55,0,95,0,52,11,40,44,4,4
+11650,44,-2,81,6,44,1,38,37,0,1
+11651,46,0,79,0,46,17,34,33,0,1
+11652,45,-1,79,0,46,11,33,32,0,1
+11653,27,-63,78,0,42,8,51,37,-14,1
+11654,39,2,93,0,36,21,54,57,2,1
+11655,41,0,83,2,42,29,42,41,0,1
+11656,37,0,104,0,18,-11,67,86,18,1
+11657,41,1,83,0,42,10,41,41,0,1
+11658,56,5,97,5,38,0,40,58,18,4
+11659,62,0,109,0,62,0,47,47,0,1
+11660,41,0,79,1,42,3,38,38,0,1
+11661,76,0,81,-2,-40,16,5,122,118,5
+11662,37,0,94,0,34,29,57,61,4,1
+11663,37,0,76,0,24,7,40,53,14,1
+11664,57,5,82,1,56,0,25,25,0,1
+11665,46,1,86,0,46,13,41,40,0,1
+11666,56,0,78,1,10,16,22,68,46,4
+11667,56,3,81,0,54,-1,25,27,2,1
+11668,48,-3,88,0,46,-4,39,41,2,1
+11669,37,-4,102,-1,34,0,65,69,4,1
+11670,44,0,84,0,44,11,41,41,0,1
+11671,55,-1,79,0,54,-1,23,24,2,1
+11672,43,-1,77,0,42,-11,34,36,2,1
+11673,43,0,79,-6,44,29,35,35,0,1
+11674,37,0,76,2,20,-7,39,55,16,1
+11675,43,0,87,5,42,-5,44,46,2,1
+11676,41,-3,89,1,42,0,48,48,0,1
+11677,45,-1,77,0,44,-16,32,34,2,1
+11678,46,0,85,0,44,-20,39,41,2,1
+11679,79,0,83,0,-30,18,4,114,110,5
+11680,43,-1,77,0,42,-8,34,36,2,1
+11681,37,0,76,0,34,-29,40,43,2,1
+11682,37,0,75,0,26,9,38,49,12,1
+11683,55,0,77,0,36,-21,22,41,20,4
+11684,104,1,105,1,70,0,1,35,34,5
+11685,37,0,81,0,38,26,43,42,0,1
+11686,103,0,104,-7,70,0,1,34,34,5
+11687,49,0,80,0,46,-14,31,34,2,1
+11688,37,0,97,5,34,0,60,64,4,1
+11689,38,3,77,0,36,-21,40,41,2,1
+11690,101,0,102,0,72,19,1,30,28,5
+11691,37,0,92,0,12,0,55,79,24,1
+11692,40,0,78,0,38,-6,38,39,2,1
+11693,46,0,86,3,44,-24,41,42,2,1
+11694,37,-1,79,0,28,0,42,50,8,1
+11695,43,-1,79,0,44,7,35,35,0,1
+11696,37,-1,81,4,-2,0,44,83,40,1
+11697,37,0,76,-3,34,-8,40,43,2,1
+11698,56,-1,96,-1,52,0,40,44,4,4
+11699,105,-5,107,0,72,0,1,35,34,5
+11700,46,0,102,0,46,3,57,56,0,1
+11701,49,5,81,0,50,14,32,32,0,1
+11702,37,1,77,0,-22,13,40,101,60,1
+11703,37,0,77,0,-4,24,41,83,42,1
+11704,53,0,83,6,54,8,30,29,0,1
+11705,49,2,81,0,50,16,33,32,0,1
+11706,47,-1,82,-5,46,-8,34,35,0,1
+11707,56,-3,92,0,54,0,36,38,2,1
+11708,51,1,83,0,50,-3,32,33,2,1
+11709,56,0,77,0,-4,2,21,82,62,4
+11710,45,0,86,1,44,-2,41,42,2,1
+11711,45,0,89,1,46,16,44,42,0,1
+11712,42,-2,77,0,42,0,36,36,0,1
+11713,53,2,81,0,52,-15,28,29,2,1
+11714,51,3,84,0,52,19,33,33,0,1
+11715,55,0,92,0,-6,-24,36,99,64,4
+11716,50,-2,86,-3,50,0,35,37,2,1
+11717,37,4,77,4,36,0,40,41,0,1
+11718,37,0,76,0,28,-5,39,48,8,1
+11719,102,1,103,0,70,-5,1,33,32,5
+11720,37,0,79,0,26,-26,42,53,12,1
+11721,37,0,96,0,12,-3,59,83,24,1
+11722,37,0,104,0,28,14,67,76,8,1
+11723,42,-4,80,0,42,0,38,39,2,1
+11724,46,0,81,4,46,2,35,35,0,1
+11725,81,0,84,0,-14,21,3,100,96,5
+11726,41,0,81,1,38,-3,40,42,2,1
+11727,37,0,83,0,34,-22,46,49,2,1
+11728,104,-9,107,-1,70,0,3,37,34,5
+11729,56,0,90,0,54,-18,34,35,2,1
+11730,46,-1,83,-2,46,-4,37,37,0,1
+11731,37,0,76,0,16,11,39,61,22,1
+11732,37,0,76,6,18,0,40,58,18,1
+11733,41,0,79,-3,38,-12,39,41,2,1
+11734,39,-5,79,0,38,0,39,40,0,1
+11735,45,0,79,4,44,0,34,35,2,1
+11736,104,3,105,0,72,2,1,33,32,5
+11737,63,0,112,4,62,0,49,50,0,1
+11738,37,0,74,0,28,26,38,46,8,1
+11739,58,2,91,0,56,0,32,34,2,1
+11740,56,0,78,-2,26,3,22,52,30,4
+11741,46,0,76,-1,46,0,29,29,0,1
+11742,48,0,81,5,46,0,32,34,2,1
+11743,79,0,84,0,-10,32,4,94,90,5
+11744,37,0,78,0,20,-6,41,57,16,1
+11745,42,0,81,0,42,677,39,40,0,1
+11746,37,0,78,0,12,8,42,65,24,1
+11747,43,0,87,5,42,0,44,46,2,1
+11748,37,0,106,0,28,-24,69,78,8,1
+11749,45,0,118,1751,310,15164,73,-191,-264,1
+11750,51,0,84,0,52,24,33,32,0,1
+11751,45,-2,87,0,46,20,42,41,0,1
+11752,37,0,77,3,36,2,41,41,0,1
+11753,51,1,80,0,52,9,29,28,0,1
+11754,81,-1,84,0,-14,6,4,100,96,5
+11755,53,0,87,-3,52,-6,34,35,2,1
+11756,38,0,93,6,28,10,55,64,10,1
+11757,44,0,79,-7,42,-10,36,38,2,1
+11758,37,0,78,0,24,17,41,55,14,1
+11759,56,-4,87,1,56,0,31,30,0,1
+11760,56,2,98,0,46,5,42,51,10,4
+11761,41,0,86,1,38,-24,46,48,2,1
+11762,37,0,81,-3,34,0,43,47,4,1
+11763,37,0,77,1,38,24,39,38,0,1
+11764,62,0,109,0,62,6,48,47,0,1
+11765,56,1,96,1,46,0,40,50,10,4
+11766,55,-3,80,0,-4,0,25,85,60,4
+11767,37,0,76,0,20,-2,39,55,16,1
+11768,49,0,86,0,46,-15,37,39,2,1
+11769,105,-2,106,-3,72,1,1,33,32,5
+11770,56,0,81,0,-6,-25,25,89,64,4
+11771,37,0,86,3,36,0,50,50,0,1
+11772,44,1,86,1,44,11,42,42,0,1
+11773,41,0,87,3,38,-6,46,48,2,1
+11774,49,-1,86,0,46,-22,37,39,2,1
+11775,41,0,77,0,42,20,36,36,0,1
+11776,51,0,81,0,52,7,29,29,0,1
+11777,46,5,84,0,46,0,38,37,0,1
+11778,56,-3,107,0,56,3,51,50,0,1
+11779,46,-3,79,1,46,0,34,33,0,1
+11780,37,0,76,-6,24,11,39,52,14,1
+11781,45,-5,83,0,44,-21,37,39,2,1
+11782,45,0,78,0,46,25,33,32,0,1
+11783,47,3,106,0,46,0,60,60,0,1
+11784,37,0,77,-1,36,18,40,41,0,1
+11785,57,0,79,3,56,0,22,23,0,1
+11786,42,0,79,-4,42,0,37,38,2,1
+11787,104,0,105,0,72,1,1,33,32,5
+11788,56,0,77,0,16,-5,22,62,40,4
+11789,55,-2,86,0,56,25,31,30,0,1
+11790,37,0,76,0,26,4,39,50,12,1
+11791,42,-1,81,0,42,0,39,39,0,1
+11792,81,1,84,0,-20,0,4,105,102,5
+11793,55,0,82,0,-36,-5,26,118,92,4
+11794,37,0,80,-3,36,0,43,44,0,1
+11795,45,0,82,-4,44,0,37,38,0,1
+11796,53,-4,83,0,52,-20,30,32,2,1
+11797,44,0,75,0,44,14,31,31,0,1
+11798,41,0,83,-1,42,17,41,41,0,1
+11799,37,0,83,0,34,6,46,49,2,1
+11800,53,0,82,0,54,8,29,28,0,1
+11801,107,1,108,0,70,0,1,38,36,5
+11802,37,0,79,1,2,-2,43,77,34,1
+11803,105,5,106,5,72,6,1,34,32,5
+11804,37,0,81,0,10,-2,45,71,26,1
+11805,56,0,86,3,56,2,31,30,0,1
+11806,37,-1,76,0,38,21,38,37,0,1
+11807,41,0,97,0,38,-9,57,59,2,1
+11808,46,3,87,8,46,0,41,41,0,1
+11809,81,0,84,0,-18,-12,3,103,100,5
+11810,56,0,97,-1,50,-11,41,48,6,4
+11811,44,0,79,0,44,18,35,35,0,1
+11812,38,0,76,0,38,-1,37,37,0,1
+11813,37,0,97,2,10,0,59,86,28,1
+11814,39,1,83,2,38,0,44,44,0,1
+11815,37,0,77,3,36,-8,39,41,2,1
+11816,104,0,106,0,70,0,1,36,34,5
+11817,53,4,88,0,52,0,35,36,2,1
+11818,55,-1,81,-3,54,-5,26,27,0,1
+11819,55,0,93,0,44,-13,37,49,12,4
+11820,55,0,97,0,50,31,41,48,6,4
+11821,81,-3,86,0,-22,0,4,109,104,5
+11822,41,1,88,0,38,-30,47,50,2,1
+11823,37,0,76,0,28,9,40,48,8,1
+11824,49,1,84,0,46,-7,35,37,2,1
+11825,53,0,83,0,52,-6,30,32,2,1
+11826,79,-1,84,0,-32,0,4,117,112,5
+11827,55,0,77,0,-20,18,21,97,76,4
+11828,45,0,84,-6,44,0,39,40,0,1
+11829,37,0,81,0,30,0,45,50,6,1
+11830,44,1,86,0,42,-11,42,44,2,1
+11831,53,-1,77,0,54,6,25,23,0,1
+11832,42,-4,81,-1,42,0,40,40,0,1
+11833,55,0,78,2,26,0,23,52,30,4
+11834,39,5,85,0,38,0,46,46,0,1
+11835,49,4,82,0,50,1,33,33,0,1
+11836,55,0,78,0,0,-20,23,78,56,4
+11837,49,0,102,0,50,6,53,53,0,1
+11838,53,0,77,0,52,-9,25,26,2,1
+11839,56,0,78,0,10,-14,22,68,46,4
+11840,49,0,107,0,46,-4,58,60,2,1
+11841,43,0,83,3,42,-10,40,42,2,1
+11842,52,-2,87,0,52,0,35,35,0,1
+11843,43,0,76,0,44,31,33,32,0,1
+11844,45,0,76,0,46,15,31,30,0,1
+11845,53,0,81,0,54,28,28,27,0,1
+11846,37,0,103,0,18,-13,66,85,20,1
+11847,43,0,79,-6,42,0,35,37,2,1
+11848,49,4,82,0,46,-7,33,35,2,1
+11849,42,5,83,0,42,0,42,42,0,1
+11850,43,-2,86,0,42,-12,42,44,2,1
+11851,41,0,77,0,42,31,37,36,0,1
+11852,55,0,96,0,42,-30,41,55,14,4
+11853,45,0,87,0,44,-20,42,43,2,1
+11854,81,0,84,0,-18,19,4,103,98,5
+11855,44,4,86,5,44,0,42,42,0,1
+11856,51,0,80,0,50,-1,29,31,2,1
+11857,50,-4,89,0,50,0,39,40,0,1
+11858,37,0,80,0,26,11,43,54,10,1
+11859,49,0,110,-3,50,29,61,61,0,1
+11860,75,3,79,3,-42,0,4,123,120,5
+11861,52,5,81,0,52,0,29,30,0,1
+11862,37,0,106,0,24,-20,68,82,14,1
+11863,37,0,77,0,26,15,40,51,10,1
+11864,48,2,80,0,46,0,32,34,2,1
+11865,49,3,80,0,50,2,31,31,0,1
+11866,43,0,84,-1,42,0,42,43,2,1
+11867,56,0,79,0,56,1,23,22,0,1
+11868,40,0,87,-1,38,-2,47,48,2,1
+11869,55,-3,98,1,46,0,42,51,8,4
+11870,37,0,94,0,34,15,57,61,4,1
+11871,49,3,81,0,50,1,32,32,0,1
+11872,37,0,81,0,28,20,44,52,8,1
+11873,49,1,85,0,50,0,36,36,0,1
+11874,37,0,76,6,34,0,39,43,4,1
+11875,84,-2,88,0,6,0,4,83,80,5
+11876,37,0,75,-3,36,0,38,39,0,1
+11877,49,5,77,0,50,7,28,28,0,1
+11878,47,4,78,-1,46,0,31,32,0,1
+11879,41,0,76,0,42,4,35,35,0,1
+11880,49,0,106,-5,46,-10,58,60,2,1
+11881,55,0,93,0,8,26,37,85,48,4
+11882,51,0,80,0,50,-5,29,31,2,1
+11883,45,0,81,5,44,0,36,37,2,1
+11884,49,0,95,5,50,12,47,46,0,1
+11885,55,0,92,0,30,0,36,61,24,4
+11886,53,0,86,0,52,-23,32,34,2,1
+11887,37,0,79,0,24,4,42,55,14,1
+11888,40,0,102,0,38,0,62,63,2,1
+11889,37,-23,106,-2,34,-3,69,72,4,1
+11890,37,0,77,0,-22,-1,41,101,60,1
+11891,37,0,74,0,28,22,38,46,8,1
+11892,47,0,88,8,46,0,40,41,0,1
+11893,37,0,76,-7,28,-5,39,47,8,1
+11894,55,-3,92,0,54,-3,37,38,2,1
+11895,63,-1,111,0,62,0,48,49,0,1
+11896,37,1,80,0,8,9,43,72,30,1
+11897,47,3,85,-1,46,0,38,39,0,1
+11898,102,0,103,0,70,-19,1,33,32,5
+11899,37,-1,106,258,34,-9,69,72,4,1
+11900,55,-5,91,0,56,24,35,34,0,1
+11901,49,3,79,1,46,-12,30,32,2,1
+11902,45,-2,86,0,44,-11,41,42,2,1
+11903,42,2,77,0,42,0,34,35,2,1
+11904,55,0,77,0,18,381,21,59,38,4
+11905,48,1,83,8,46,0,35,36,2,1
+11906,52,0,80,0,52,-3,27,28,0,1
+11907,37,0,76,6,34,0,39,42,2,1
+11908,56,0,97,0,44,-23,41,53,12,4
+11909,55,-3,108,0,54,-5,52,53,2,1
+11910,37,0,76,13,24,0,39,53,14,1
+11911,37,0,77,0,36,17,40,41,0,1
+11912,46,0,87,4,46,0,41,41,0,1
+11913,45,0,83,0,44,-3,38,39,2,1
+11914,49,0,95,0,50,22,47,46,0,1
+11915,62,0,109,8,60,0,47,49,2,1
+11916,37,0,104,0,18,3,66,86,20,1
+11917,37,0,82,-1,36,-5,45,46,2,1
+11918,37,0,76,0,34,-15,40,43,2,1
+11919,44,0,83,-2,44,0,39,39,0,1
+11920,37,0,79,0,10,16,42,68,26,1
+11921,37,0,95,1,10,6,57,84,28,1
+11922,41,0,83,0,38,-14,42,44,2,1
+11923,37,0,77,0,36,7,40,41,2,1
+11924,41,0,85,0,38,-10,44,46,2,1
+11925,45,3,81,-1,44,-1,36,37,2,1
+11926,56,0,80,2,-4,0,24,85,62,4
+11927,49,-1,77,0,50,0,28,28,0,1
+11928,85,0,88,-3,2,-7,3,86,82,5
+11929,37,0,79,8,0,0,42,79,36,1
+11930,37,0,94,-6,10,8,57,84,28,1
+11931,87,1,89,0,8,1,2,81,78,5
+11932,51,0,87,0,50,0,36,38,2,1
+11933,56,-1,92,0,56,3,36,35,0,1
+11934,42,4,77,0,42,0,35,35,0,1
+11935,53,1,80,0,52,-3,27,28,2,1
+11936,45,0,85,0,44,-15,40,41,2,1
+11937,39,0,81,-4,38,0,43,43,0,1
+11938,42,-3,78,0,42,0,37,37,0,1
+11939,46,0,80,0,46,15,34,34,0,1
+11940,51,0,102,0,52,4,51,50,0,1
+11941,46,0,77,0,46,14,31,30,0,1
+11942,46,0,89,3,46,0,43,42,0,1
+11943,43,-4,80,-1,42,-5,37,39,2,1
+11944,55,1,108,0,54,0,53,54,2,1
+11945,45,5,81,0,44,-2,36,37,2,1
+11946,56,0,79,2,8,0,24,72,48,4
+11947,37,0,78,0,-2,7,42,81,40,1
+11948,48,-2,77,8,46,0,29,30,2,1
+11949,51,0,87,0,52,17,36,35,0,1
+11950,37,-5,75,-3,20,0,38,54,16,1
+11951,55,0,97,0,52,27,41,45,4,4
+11952,37,0,78,0,8,26,41,70,30,1
+11953,37,4,80,0,6,0,43,75,32,1
+11954,42,0,79,7,42,0,38,38,0,1
+11955,37,0,79,0,30,-1,43,48,6,1
+11956,56,0,97,0,54,28,41,42,2,1
+11957,50,3,82,0,50,0,32,33,2,1
+11958,37,0,77,0,10,-6,40,66,26,1
+11959,55,0,91,-4,-6,-29,35,99,64,4
+11960,48,0,87,-2,46,0,39,41,2,1
+11961,43,0,76,0,42,-1,32,34,2,1
+11962,45,0,82,1,44,-8,37,38,2,1
+11963,37,0,79,0,12,-22,43,66,24,1
+11964,37,0,94,5,10,-24,57,84,26,1
+11965,45,1,102,0,44,0,57,58,2,1
+11966,37,0,82,0,18,-17,45,64,18,1
+11967,41,0,77,-5,42,15,37,36,0,1
+11968,55,0,82,0,-36,-1,26,118,92,4
+11969,55,0,77,0,10,2,22,67,46,4
+11970,56,0,86,2,54,-23,31,32,2,1
+11971,49,0,83,0,50,9,34,34,0,1
+11972,49,0,81,0,46,-13,32,34,2,1
+11973,37,1,92,5,6,0,54,86,32,1
+11974,37,0,96,-2,18,0,59,78,18,1
+11975,45,3,77,0,44,0,33,34,0,1
+11976,55,0,98,0,42,-9,42,57,14,4
+11977,45,-4,90,0,44,-1,45,46,2,1
+11978,45,0,79,2,44,0,34,35,2,1
+11979,56,4,84,0,56,0,28,28,0,1
+11980,37,0,76,4,38,1,39,37,0,1
+11981,39,1,79,0,38,0,40,40,0,1
+11982,42,0,83,0,42,0,42,42,0,1
+11983,48,0,87,2,46,0,39,41,2,1
+11984,49,0,88,1,50,15,39,39,0,1
+11985,37,-10,106,-4,34,-7,69,72,4,1
+11986,53,-4,86,0,54,15,33,32,0,1
+11987,51,2,86,0,50,-12,35,37,2,1
+11988,49,0,96,3,50,0,47,47,0,1
+11989,44,1,86,-3,44,15,42,42,0,1
+11990,45,0,81,0,44,0,36,37,2,1
+11991,46,3,78,0,46,1,32,32,0,1
+11992,45,-3,77,0,44,0,32,33,2,1
+11993,37,0,76,0,38,19,38,37,0,1
+11994,105,2,107,5,70,0,1,37,36,5
+11995,37,0,105,1,18,0,68,87,18,1
+11996,56,0,95,0,44,25,40,51,12,4
+11997,56,4,80,0,-4,6,24,85,62,4
+11998,37,0,75,0,20,-22,38,54,16,1
+11999,51,-1,81,0,50,-16,30,32,2,1
+12000,44,2,86,0,44,9,42,42,0,1
+12001,37,0,81,-7,-4,0,45,86,42,1
+12002,80,0,84,8,-20,0,4,105,100,5
+12003,51,-3,87,0,50,-10,36,38,2,1
+12004,47,4,79,0,46,0,33,33,0,1
+12005,55,0,82,0,-20,-4,26,103,76,4
+12006,43,-1,76,0,44,24,32,32,0,1
+12007,56,-3,97,0,46,0,41,50,10,4
+12008,55,0,77,0,42,-3,22,36,14,4
+12009,55,0,77,0,16,-9,22,62,40,4
+12010,37,0,76,-1,36,-2,39,39,0,1
+12011,37,0,107,0,28,-4,70,78,8,1
+12012,56,0,98,0,50,-4,42,49,8,4
+12013,53,0,104,0,54,12,51,49,0,1
+12014,37,0,104,6,24,0,67,80,14,1
+12015,37,0,76,4,20,0,39,55,16,1
+12016,44,4,81,0,42,-16,37,39,2,1
+12017,37,0,95,2,10,12,57,84,28,1
+12018,80,5,84,2,-38,-13,4,123,118,5
+12019,45,-1,88,-1,44,9,43,44,2,1
+12020,44,0,85,0,44,12,41,41,0,1
+12021,37,0,84,5,30,-11,47,53,6,1
+12022,43,-1,86,0,44,9,42,42,0,1
+12023,45,-4,85,2,44,0,40,41,2,1
+12024,37,0,106,2,24,-18,69,83,14,1
+12025,43,0,76,0,42,-18,32,34,2,1
+12026,43,0,80,0,44,25,37,36,0,1
+12027,49,-1,80,0,46,-25,31,34,2,1
+12028,45,0,83,0,44,-1,38,39,0,1
+12029,49,0,95,0,50,12,47,46,0,1
+12030,56,-2,84,0,56,0,28,27,0,1
+12031,43,0,76,2,42,-2,33,35,2,1
+12032,53,0,83,-3,54,3,30,28,0,1
+12033,52,-4,86,0,52,0,34,34,0,1
+12034,45,0,82,0,46,14,37,35,0,1
+12035,41,-4,78,0,42,2,37,37,0,1
+12036,37,0,78,-7,12,0,42,65,24,1
+12037,43,0,81,-3,44,19,37,37,0,1
+12038,56,3,98,6,52,-13,42,46,4,4
+12039,55,0,93,4,46,0,37,46,8,4
+12040,55,0,77,0,16,14,22,62,40,4
+12041,84,0,88,0,0,12,3,88,84,5
+12042,53,1,104,0,54,3,50,49,0,1
+12043,43,0,88,0,42,-11,44,46,2,1
+12044,51,0,81,4,50,-13,30,32,2,1
+12045,47,-1,108,8,46,0,61,62,0,1
+12046,41,0,89,0,38,-4,48,50,2,1
+12047,44,1,75,0,44,14,31,31,0,1
+12048,55,0,77,2,-28,11,22,106,84,4
+12049,37,0,75,-1,24,-3,38,52,14,1
+12050,50,-3,86,1,50,0,37,37,0,1
+12051,46,4,85,0,46,0,39,39,0,1
+12052,56,-5,83,0,56,9,27,26,0,1
+12053,43,0,86,0,42,-19,43,45,2,1
+12054,44,4,93,0,44,1,49,50,0,1
+12055,55,0,76,0,-14,-3,21,92,70,4
+12056,80,3,84,0,-40,6,4,126,122,5
+12057,37,-1,77,0,38,18,39,38,0,1
+12058,53,-1,83,0,54,7,30,29,0,1
+12059,45,0,77,-1,46,31,31,30,0,1
+12060,55,0,82,0,-32,-4,26,115,90,4
+12061,55,-2,96,0,54,0,41,42,0,1
+12062,48,0,87,0,46,-3,39,41,2,1
+12063,56,0,81,0,-4,15,25,86,62,4
+12064,37,0,83,0,34,6,46,49,4,1
+12065,53,0,87,3,52,-17,34,35,2,1
+12066,37,0,104,0,28,8,67,75,8,1
+12067,43,0,86,2,44,16,43,42,0,1
+12068,42,0,76,-1,42,-2,34,35,0,1
+12069,47,4,95,-5,46,0,47,48,0,1
+12070,51,0,90,0,50,-1,39,41,2,1
+12071,48,-4,108,0,46,0,60,61,2,1
+12072,55,0,97,0,52,-1,41,45,4,4
+12073,50,0,79,0,50,0,29,30,0,1
+12074,37,0,79,0,26,16,42,53,10,1
+12075,51,0,77,0,50,-7,26,28,2,1
+12076,67,3,112,0,68,1,45,45,0,1
+12077,38,1,79,0,38,13,41,40,0,1
+12078,37,0,78,0,-2,5,42,81,40,1
+12079,79,0,83,0,98,8098,4,-14,-18,5
+12080,37,0,77,0,26,9,40,51,12,1
+12081,56,0,96,0,50,-7,40,47,6,4
+12082,41,4,86,0,38,0,45,47,2,1
+12083,58,1,81,-1,56,0,24,24,0,1
+12084,42,1,84,0,42,0,42,43,2,1
+12085,37,0,77,5,34,0,41,44,2,1
+12086,44,0,108,0,42,-30,63,66,2,1
+12087,53,0,87,0,54,15,34,33,0,1
+12088,37,0,76,0,26,6,39,50,10,1
+12089,106,3,107,1,72,0,1,35,34,5
+12090,51,0,88,0,52,14,37,36,0,1
+12091,44,-1,89,0,44,2,45,45,0,1
+12092,54,-2,86,0,54,0,32,32,0,1
+12093,49,-4,77,0,46,-21,29,31,2,1
+12094,44,3,82,0,42,-14,38,41,2,1
+12095,47,0,87,-1,46,-1,40,41,0,1
+12096,55,0,86,-1,54,-9,31,32,2,1
+12097,47,0,83,-2,46,0,36,36,0,1
+12098,76,0,80,-3,-42,-11,4,124,120,5
+12099,55,4,96,0,52,0,41,44,4,4
+12100,37,0,81,1,-2,5,44,84,40,1
+12101,37,0,91,0,10,7,53,81,28,1
+12102,56,0,96,0,52,-25,40,44,4,4
+12103,41,0,88,0,38,-5,48,50,2,1
+12104,56,0,77,2,-18,0,21,95,74,4
+12105,51,0,77,0,52,2,26,25,0,1
+12106,42,5,77,0,42,0,35,36,0,1
+12107,55,-5,86,0,54,0,31,32,0,1
+12108,47,-2,88,0,46,0,42,42,0,1
+12109,102,3,102,0,72,12,1,30,30,5
+12110,48,0,86,8,46,0,38,40,2,1
+12111,55,0,82,0,-40,-11,26,123,96,4
+12112,41,0,86,-1,38,0,46,48,2,1
+12113,56,-1,97,0,50,5,41,48,6,4
+12114,49,0,107,1,50,0,58,58,0,1
+12115,37,0,76,1,30,-16,39,45,6,1
+12116,48,2,77,-6,46,0,29,30,2,1
+12117,45,0,77,0,46,16,32,31,0,1
+12118,45,0,83,-3,44,-14,37,39,2,1
+12119,43,0,83,-2,42,-4,40,42,2,1
+12120,45,0,80,0,46,14,35,34,0,1
+12121,54,-5,83,0,54,0,29,29,0,1
+12122,43,0,76,0,44,31,32,32,0,1
+12123,37,0,77,0,34,7,40,43,2,1
+12124,44,-1,80,2,44,5,36,36,0,1
+12125,56,-5,92,0,54,-30,36,38,2,1
+12126,55,0,79,0,8,-7,23,71,48,4
+12127,56,0,78,2,0,16,22,78,56,4
+12128,79,0,84,2,-32,-7,4,117,112,5
+12129,53,0,79,0,52,-15,26,27,2,1
+12130,49,2,86,0,46,-19,38,40,2,1
+12131,55,-1,88,0,54,-1,32,33,2,1
+12132,56,0,108,1,56,19,52,51,0,1
+12133,41,2,89,5,38,0,48,50,2,1
+12134,37,0,77,0,20,1,40,57,16,1
+12135,43,0,102,0,42,-22,59,61,2,1
+12136,50,-4,79,0,50,0,28,30,2,1
+12137,47,-4,84,0,46,0,36,37,0,1
+12138,37,0,90,0,26,1,52,64,12,1
+12139,45,-3,78,0,44,-1,33,34,2,1
+12140,44,0,81,6,44,17,38,37,0,1
+12141,56,0,92,0,56,24,36,35,0,1
+12142,51,-3,77,0,50,-12,27,28,2,1
+12143,80,-3,84,-4,-42,-30,4,128,124,5
+12144,56,0,78,0,16,28,22,63,40,4
+12145,43,0,87,7,42,-2,44,46,2,1
+12146,37,0,79,0,16,10,42,63,22,1
+12147,43,0,88,0,42,-10,44,46,2,1
+12148,37,0,81,0,-2,5,44,84,40,1
+12149,37,0,81,-2,36,-7,43,44,2,1
+12150,58,0,86,-1,56,0,28,29,0,1
+12151,37,0,97,-3,30,0,60,66,6,1
+12152,39,-1,81,1,38,0,42,42,0,1
+12153,80,-2,84,-2,-40,12,4,126,122,5
+12154,46,0,77,0,44,-28,31,33,2,1
+12155,45,0,75,-3,44,-4,30,31,2,1
+12156,37,0,95,-2,18,0,58,77,18,1
+12157,44,5,86,0,42,-17,42,44,2,1
+12158,46,0,83,-5,46,8,37,36,0,1
+12159,37,0,77,0,36,4,40,41,2,1
+12160,45,0,108,0,44,-2,62,64,2,1
+12161,51,0,109,0,52,0,58,57,0,1
+12162,37,0,76,46,20,0,40,55,16,1
+12163,55,0,99,0,42,0,43,57,14,4
+12164,54,-3,86,0,54,0,32,32,0,1
+12165,48,1,77,-4,46,0,29,30,2,1
+12166,58,4,91,0,56,0,33,34,0,1
+12167,53,0,90,0,54,13,37,36,0,1
+12168,56,1,80,1,20,-1,24,59,36,4
+12169,46,0,75,-5,46,0,29,28,0,1
+12170,51,0,86,0,52,8,36,35,0,1
+12171,57,-5,86,-2,56,0,29,29,0,1
+12172,47,-5,81,0,46,0,34,34,0,1
+12173,55,0,82,0,54,12,26,28,2,1
+12174,37,0,75,0,36,4,37,39,2,1
+12175,49,1,78,0,50,17,29,29,0,1
+12176,42,-5,88,2,42,0,45,46,2,1
+12177,49,0,96,5,50,0,47,47,0,1
+12178,43,-2,80,0,44,22,37,36,0,1
+12179,55,0,79,0,20,-27,23,58,34,4
+12180,37,0,83,0,-2,-15,47,86,40,1
+12181,37,0,75,0,26,13,38,49,12,1
+12182,45,0,81,0,44,-16,35,37,2,1
+12183,58,0,87,6,56,0,30,30,0,1
+12184,41,3,81,0,38,-22,39,42,2,1
+12185,56,0,96,0,50,-18,40,47,6,4
+12186,39,-5,76,0,38,0,37,37,0,1
+12187,45,-3,87,0,44,0,42,43,2,1
+12188,39,0,110,0,38,0,71,71,0,1
+12189,55,0,77,0,-24,5,21,103,82,4
+12190,45,-2,88,0,44,-20,42,44,2,1
+12191,45,1,77,0,44,-6,32,34,2,1
+12192,45,-3,81,0,46,21,36,35,0,1
+12193,37,0,78,0,8,11,41,70,30,1
+12194,37,0,80,0,8,11,43,72,30,1
+12195,43,0,85,-3,42,0,42,44,2,1
+12196,42,0,87,4,42,0,45,46,0,1
+12197,55,0,77,0,28,12,21,48,28,4
+12198,47,0,90,1,46,0,43,43,0,1
+12199,48,-3,78,0,46,-3,30,32,2,1
+12200,37,0,97,0,24,-30,60,74,14,1
+12201,37,0,97,0,12,0,59,84,24,1
+12202,48,0,84,-1,46,-2,36,38,2,1
+12203,37,0,79,0,2,-6,43,77,34,1
+12204,37,5,83,-6,34,0,45,49,4,1
+12205,43,-1,89,-4,42,-6,46,48,2,1
+12206,102,0,103,1,70,-8,1,33,32,5
+12207,53,-3,81,0,54,5,28,27,0,1
+12208,87,3,89,0,8,0,2,81,80,5
+12209,84,-10,89,0,8,0,5,81,76,5
+12210,37,0,97,0,30,9,60,66,6,1
+12211,37,0,79,0,12,-4,43,66,24,1
+12212,44,1,81,0,44,8,38,37,0,1
+12213,41,-1,76,0,42,1,35,35,0,1
+12214,79,0,83,-3,-32,-3,4,117,112,5
+12215,82,5,86,0,-24,-24,4,112,108,5
+12216,43,-1,86,2,44,20,43,42,0,1
+12217,37,0,108,0,30,-6,71,77,6,1
+12218,42,-2,83,0,42,0,41,41,0,1
+12219,55,0,93,0,38,-4,37,54,16,4
+12220,39,0,83,-3,38,0,44,44,0,1
+12221,37,1,75,0,26,-5,38,49,12,1
+12222,38,0,76,0,36,-29,38,40,2,1
+12223,42,2,90,1,42,0,48,49,0,1
+12224,48,0,86,1,46,0,39,40,2,1
+12225,49,-2,77,0,50,0,28,28,0,1
+12226,53,3,86,0,52,-3,33,34,2,1
+12227,42,-4,79,0,42,0,37,38,0,1
+12228,37,0,82,0,24,-11,45,59,14,1
+12229,78,4,81,0,-40,0,4,123,120,5
+12230,37,0,106,0,30,9,69,75,6,1
+12231,55,-3,95,0,54,0,40,41,2,1
+12232,57,0,90,3,56,0,34,33,0,1
+12233,55,-2,77,0,26,0,22,52,30,4
+12234,37,0,79,-3,34,0,41,45,4,1
+12235,51,0,77,0,52,14,26,26,0,1
+12236,53,0,86,0,52,-6,33,34,2,1
+12237,41,5,83,8,42,25,42,42,0,1
+12238,55,0,92,-7,10,0,37,82,46,4
+12239,38,0,106,0,38,11,68,67,0,1
+12240,37,5,77,0,-22,27,40,101,60,1
+12241,102,0,103,0,72,31,1,31,30,5
+12242,37,0,77,0,18,5,41,59,18,1
+12243,47,-1,108,0,46,0,61,62,0,1
+12244,44,1,85,0,44,3,41,41,0,1
+12245,51,1,81,0,52,9,29,29,0,1
+12246,49,0,82,0,50,20,33,33,0,1
+12247,37,0,77,4,30,14,41,46,6,1
+12248,37,0,90,0,20,18,53,70,16,1
+12249,38,0,77,-2,38,0,39,38,0,1
+12250,102,-1,103,0,72,23,1,31,30,5
+12251,47,1,95,3,46,0,48,49,0,1
+12252,55,-2,91,0,54,-9,35,37,2,1
+12253,37,0,76,6,26,0,39,50,10,1
+12254,37,0,76,0,26,-21,39,50,10,1
+12255,56,0,86,2,56,0,30,30,0,1
+12256,50,5,84,0,50,0,34,35,0,1
+12257,37,0,78,0,10,19,41,68,26,1
+12258,55,0,79,0,26,8,23,53,30,4
+12259,55,0,79,-2,20,-5,24,59,34,4
+12260,37,0,79,0,8,12,42,71,28,1
+12261,53,-5,86,0,54,0,32,32,0,1
+12262,43,-2,86,0,42,-27,42,44,2,1
+12263,51,1,88,0,50,-9,36,39,2,1
+12264,46,0,88,-1,46,0,41,41,0,1
+12265,41,0,97,-2,42,15,56,55,0,1
+12266,87,4,89,0,8,0,2,81,80,5
+12267,84,5,86,0,-2,0,3,89,86,5
+12268,45,-3,85,0,44,0,41,41,0,1
+12269,57,2,83,0,56,0,26,26,0,1
+12270,41,0,81,4,38,-9,40,42,2,1
+12271,37,0,80,0,26,4,43,54,12,1
+12272,56,-4,99,0,46,0,43,52,10,4
+12273,37,0,107,-2,36,0,69,71,2,1
+12274,53,3,104,0,54,5,50,49,0,1
+12275,46,1,83,0,44,-19,37,39,2,1
+12276,37,-2,77,1,0,5,40,77,36,1
+12277,56,2,98,0,44,-9,42,54,12,4
+12278,55,1,77,0,26,0,22,52,30,4
+12279,44,0,86,0,44,1,42,42,0,1
+12280,37,0,81,0,26,-4,45,55,10,1
+12281,56,0,98,0,44,0,42,54,12,4
+12282,56,2,98,0,46,2,42,51,10,4
+12283,55,-1,78,0,8,-2,23,70,48,4
+12284,55,0,77,-3,18,2,22,59,38,4
+12285,41,0,79,0,38,-12,39,41,2,1
+12286,56,-3,96,0,56,9,40,39,0,1
+12287,37,0,92,0,16,1,54,76,22,1
+12288,37,0,76,6,36,7,39,40,2,1
+12289,41,0,76,-4,42,0,35,35,0,1
+12290,37,0,98,0,30,-4,61,67,6,1
+12291,55,0,95,0,34,-19,40,62,22,4
+12292,56,0,92,0,0,24,36,92,56,4
+12293,56,0,77,0,-18,21,21,95,74,4
+12294,37,0,74,0,24,2,37,51,14,1
+12295,55,0,97,1,38,0,41,58,16,4
+12296,37,3,76,0,28,0,39,47,8,1
+12297,37,0,78,-6,6,0,41,73,32,1
+12298,45,0,80,0,44,-18,35,36,2,1
+12299,37,0,100,0,28,-29,64,72,8,1
+12300,38,1,105,0,34,0,67,71,4,1
+12301,43,-2,77,1,42,-12,34,36,2,1
+12302,38,-2,91,-2,6,-9,53,86,32,1
+12303,37,0,106,-3,28,-1,69,77,8,1
+12304,43,-5,76,0,42,-17,33,35,2,1
+12305,37,-14,77,0,20,0,40,56,16,1
+12306,56,0,77,0,-12,3,21,90,68,4
+12307,47,-1,81,0,46,0,33,34,0,1
+12308,46,0,89,-3,44,-30,43,45,2,1
+12309,40,3,78,0,38,0,38,39,2,1
+12310,41,0,78,-5,38,0,37,39,2,1
+12311,53,-4,81,0,52,-24,28,30,2,1
+12312,55,0,83,0,56,25,27,26,0,1
+12313,49,-2,107,0,50,0,58,58,0,1
+12314,42,0,77,-4,42,0,34,35,2,1
+12315,37,-5,76,0,38,6,39,37,0,1
+12316,82,0,86,0,-10,23,3,96,92,5
+12317,56,0,77,0,20,-10,22,57,36,4
+12318,55,0,86,7,54,0,31,32,0,1
+12319,41,2,75,0,42,12,34,34,0,1
+12320,45,4,83,0,44,0,38,39,2,1
+12321,37,0,100,0,30,-9,64,69,6,1
+12322,56,1,107,0,56,2,51,50,0,1
+12323,56,0,82,0,56,14,26,25,0,1
+12324,55,0,78,-1,16,0,23,63,40,4
+12325,44,-5,77,0,42,-12,33,35,2,1
+12326,37,0,78,5,26,-4,42,52,10,1
+12327,43,0,81,-2,42,-7,37,39,2,1
+12328,37,0,80,0,10,3,43,70,26,1
+12329,37,0,83,0,12,-11,46,70,24,1
+12330,40,1,76,0,38,0,35,37,2,1
+12331,37,0,74,0,26,0,38,48,10,1
+12332,53,0,86,0,54,29,33,32,0,1
+12333,55,0,95,0,38,5,40,57,16,4
+12334,37,0,80,0,12,26,43,67,24,1
+12335,41,0,86,3,42,0,45,45,0,1
+12336,41,5,81,0,42,5,40,40,0,1
+12337,55,-1,96,-3,54,-4,41,42,2,1
+12338,37,0,81,0,26,-17,44,55,10,1
+12339,44,1,77,0,42,-14,34,36,2,1
+12340,53,0,84,0,54,6,31,30,0,1
+12341,41,-5,106,0,38,-18,65,67,2,1
+12342,37,0,76,0,24,-11,39,53,14,1
+12343,37,0,78,0,0,3,42,78,36,1
+12344,43,-5,83,0,42,0,40,41,2,1
+12345,45,4,83,0,44,0,39,39,0,1
+12346,37,0,78,0,-4,6,42,83,42,1
+12347,37,0,106,4,26,0,69,80,12,1
+12348,49,0,79,0,50,2,30,30,0,1
+12349,42,-5,85,0,42,0,43,44,2,1
+12350,37,0,94,0,16,6,57,79,22,1
+12351,44,0,85,-6,44,0,41,41,0,1
+12352,37,0,80,0,34,-16,43,46,4,1
+12353,55,0,78,0,2,11,23,75,52,4
+12354,56,1,95,0,54,0,39,41,2,1
+12355,49,0,95,0,46,-22,47,49,2,1
+12356,52,0,84,0,52,0,32,32,0,1
+12357,37,0,76,0,30,-27,40,45,6,1
+12358,101,-1,102,-1,72,0,1,29,28,5
+12359,105,6,106,2,70,0,1,36,36,5
+12360,39,0,81,6,38,0,42,43,0,1
+12361,37,0,77,3,-2,0,39,79,40,1
+12362,53,-2,83,0,54,13,30,29,0,1
+12363,80,-2,84,0,-14,-3,4,99,96,5
+12364,55,0,79,-2,-4,0,24,85,60,4
+12365,58,-2,86,0,56,0,29,30,0,1
+12366,37,0,79,0,10,-20,42,69,26,1
+12367,38,0,77,2,38,0,39,38,0,1
+12368,55,0,79,0,20,8,23,58,34,4
+12369,55,0,77,0,-30,-6,22,108,86,4
+12370,41,0,79,7,38,-18,39,41,2,1
+12371,37,0,79,-5,36,0,42,43,0,1
+12372,55,0,77,0,-24,19,21,103,82,4
+12373,82,0,85,-1,-2,0,3,88,84,5
+12374,37,-2,77,0,34,0,41,44,2,1
+12375,37,0,77,-1,20,-2,40,57,16,1
+12376,39,4,75,0,38,0,35,36,0,1
+12377,37,0,80,0,6,-1,43,75,32,1
+12378,43,0,86,-1,42,-2,43,45,2,1
+12379,55,0,95,4,36,0,40,59,20,4
+12380,55,-2,81,0,54,0,26,27,0,1
+12381,43,-5,79,0,42,0,36,37,2,1
+12382,44,-4,89,0,42,-30,45,48,2,1
+12383,45,0,77,0,46,24,31,30,0,1
+12384,44,0,85,-2,44,4,41,41,0,1
+12385,37,0,78,1,10,-30,42,68,26,1
+12386,37,0,83,0,2,9,46,81,34,1
+12387,56,0,81,0,-6,-4,25,89,64,4
+12388,37,-1,78,-4,34,-8,41,45,4,1
+12389,42,-1,76,-3,42,0,34,35,2,1
+12390,41,-2,81,0,42,19,41,40,0,1
+12391,54,0,108,3,54,0,54,54,0,1
+12392,48,0,89,0,50,31,41,40,0,1
+12393,37,0,76,0,28,25,40,48,8,1
+12394,47,-2,84,0,46,0,37,38,0,1
+12395,38,0,77,4,38,0,39,38,0,1
+12396,45,0,84,0,46,21,38,37,0,1
+12397,47,0,84,-1,46,0,37,37,0,1
+12398,37,0,106,-4,30,23,69,75,6,1
+12399,53,2,77,0,52,-30,24,26,2,1
+12400,37,0,82,0,30,-6,45,51,6,1
+12401,56,0,96,0,54,-20,40,42,2,1
+12402,37,0,77,-3,36,-6,39,41,2,1
+12403,55,0,92,0,-6,-25,36,99,64,4
+12404,41,0,80,-6,42,0,39,39,0,1
+12405,43,0,84,0,44,29,41,41,0,1
+12406,43,-1,96,-3,42,104,53,55,2,1
+12407,55,0,77,0,34,7,22,44,22,4
+12408,45,0,79,0,44,-16,34,35,2,1
+12409,52,-1,86,0,52,0,35,35,0,1
+12410,37,0,77,5,-12,0,41,90,50,1
+12411,55,1,91,0,54,-4,35,37,2,1
+12412,37,0,76,0,34,18,39,42,2,1
+12413,41,0,89,3,42,26,48,48,0,1
+12414,55,0,89,1,54,0,34,35,0,1
+12415,43,0,81,-1,42,-18,37,39,2,1
+12416,41,0,84,0,42,0,43,43,0,1
+12417,42,1,88,0,42,0,46,46,0,1
+12418,49,0,106,0,50,12,57,57,0,1
+12419,49,-3,88,0,50,5,39,39,0,1
+12420,48,4,83,5,46,0,35,36,2,1
+12421,48,0,86,0,46,-2,37,39,2,1
+12422,108,1,109,0,72,1,1,36,36,5
+12423,37,0,77,0,10,20,40,66,26,1
+12424,56,0,86,0,56,18,31,30,0,1
+12425,55,0,80,0,-2,-1,25,83,58,4
+12426,37,0,81,0,26,-14,44,55,10,1
+12427,53,-5,85,0,54,6,32,31,0,1
+12428,37,0,76,0,20,0,40,55,16,1
+12429,37,0,83,0,28,-8,46,54,8,1
+12430,37,0,103,0,24,0,66,80,14,1
+12431,43,-3,77,-5,42,0,34,35,2,1
+12432,41,0,87,2,42,16,46,46,0,1
+12433,37,0,103,0,34,31,66,69,4,1
+12434,37,2,77,-3,34,0,40,43,2,1
+12435,55,2,88,2,54,0,32,33,2,1
+12436,51,0,80,0,50,-3,29,31,2,1
+12437,37,0,79,-3,10,6,43,69,26,1
+12438,41,0,89,0,38,-8,48,50,2,1
+12439,47,2,84,0,46,0,36,37,0,1
+12440,85,0,88,0,2,25,3,86,82,5
+12441,107,0,108,0,72,8,1,36,34,5
+12442,44,2,75,0,42,-13,31,34,2,1
+12443,55,0,77,2,-22,0,22,101,78,4
+12444,53,-2,86,0,54,7,33,32,0,1
+12445,39,-4,82,0,38,0,42,43,0,1
+12446,37,0,76,0,16,-4,39,61,22,1
+12447,37,0,79,0,30,12,43,48,6,1
+12448,37,0,77,0,28,11,40,48,8,1
+12449,55,0,95,0,46,30,40,49,8,4
+12450,41,0,88,4,42,26,47,46,0,1
+12451,37,0,95,0,16,-21,58,79,22,1
+12452,49,4,106,0,50,27,58,57,0,1
+12453,37,0,80,2,12,-16,43,67,24,1
+12454,37,0,83,0,-2,-20,47,86,40,1
+12455,60,0,110,-6,60,0,50,51,2,1
+12456,55,-1,99,-6,50,0,43,49,6,4
+12457,49,0,80,0,50,12,31,31,0,1
+12458,37,-2,76,0,38,6,39,37,0,1
+12459,106,0,107,0,72,6,1,35,34,5
+12460,55,0,76,0,-14,5,21,92,70,4
+12461,37,0,77,0,36,-23,39,41,2,1
+12462,47,-4,86,0,46,0,38,39,0,1
+12463,80,0,84,0,-28,-28,4,112,108,5
+12464,46,0,86,0,46,6,41,40,0,1
+12465,51,4,88,0,52,21,37,37,0,1
+12466,45,0,77,0,46,31,32,31,0,1
+12467,55,0,96,0,52,-4,41,44,4,4
+12468,54,0,81,0,54,1,27,26,0,1
+12469,37,0,75,0,38,23,37,36,0,1
+12470,104,0,104,-4,70,0,1,35,34,5
+12471,45,0,85,0,44,-13,40,41,2,1
+12472,55,0,77,0,-10,-5,21,87,66,4
+12473,44,0,84,0,42,-27,40,43,2,1
+12474,41,0,89,0,38,-19,48,50,2,1
+12475,55,0,95,-6,44,0,40,51,12,4
+12476,46,2,76,0,46,10,30,29,0,1
+12477,41,0,77,0,42,4,36,36,0,1
+12478,56,0,78,0,8,-11,22,70,48,4
+12479,45,1,86,0,44,0,40,42,2,1
+12480,42,0,83,8,42,0,41,41,0,1
+12481,53,0,88,1,54,6,35,34,0,1
+12482,39,-5,90,3,6,0,51,85,34,1
+12483,56,0,97,8,50,-3,41,48,6,4
+12484,56,0,76,0,-12,18,20,89,68,4
+12485,55,0,93,0,12,-30,38,81,42,4
+12486,37,0,94,0,8,-28,57,86,30,1
+12487,55,-1,87,0,54,0,32,33,0,1
+12488,37,0,76,5,34,0,40,43,2,1
+12489,44,0,85,0,44,7,41,41,0,1
+12490,37,0,106,0,28,-15,69,78,8,1
+12491,43,0,86,1,44,17,43,42,0,1
+12492,37,0,77,1,36,4,40,41,0,1
+12493,45,0,88,0,46,4,42,41,0,1
+12494,51,0,82,3,52,20,31,30,0,1
+12495,81,-3,84,0,-14,1,4,100,96,5
+12496,43,0,86,0,42,-3,42,44,2,1
+12497,45,0,77,0,46,27,32,31,0,1
+12498,49,0,86,6,46,-14,38,40,2,1
+12499,46,0,85,-1,46,4,39,39,0,1
+12500,37,0,77,-4,8,0,40,69,28,1
+12501,41,0,80,-2,42,0,39,39,0,1
+12502,55,0,77,0,44,26,22,34,12,4
+12503,56,0,91,-1,0,0,35,91,56,4
+12504,45,-4,106,-6,44,0,61,62,2,1
+12505,56,0,96,0,44,1,40,52,12,4
+12506,37,0,77,0,26,1,40,51,12,1
+12507,56,0,81,0,54,-2,25,26,2,1
+12508,39,0,86,6,38,0,46,47,0,1
+12509,37,1,80,0,20,0,43,59,16,1
+12510,51,-1,81,0,52,0,29,29,0,1
+12511,42,0,84,-2,42,0,41,43,2,1
+12512,38,4,106,1,36,-3,68,70,2,1
+12513,45,-2,77,0,46,13,32,31,0,1
+12514,46,0,87,0,44,-12,41,43,2,1
+12515,45,0,74,-4,44,0,30,30,0,1
+12516,42,0,81,0,42,6,39,39,0,1
+12517,51,0,87,-5,52,0,36,35,0,1
+12518,55,0,77,0,20,-7,22,57,34,4
+12519,46,3,87,0,46,0,41,41,0,1
+12520,102,0,103,0,70,-4,1,33,32,5
+12521,55,0,76,0,-14,9,21,92,70,4
+12522,56,0,96,-5,50,-9,40,47,6,4
+12523,56,0,95,0,52,13,39,43,4,4
+12524,50,2,86,-1,50,0,36,37,0,1
+12525,43,-1,76,0,42,-15,33,35,2,1
+12526,45,5,81,4,44,0,37,37,0,1
+12527,82,0,86,1,-2,6,4,88,84,5
+12528,56,-1,90,-1,56,6,34,33,0,1
+12529,54,3,87,0,54,0,33,33,0,1
+12530,44,1,93,0,44,4,50,50,0,1
+12531,82,0,85,-2,-10,0,3,95,92,5
+12532,56,4,96,0,54,1,40,42,2,1
+12533,45,0,88,0,44,-14,42,44,2,1
+12534,37,0,79,0,38,18,42,41,0,1
+12535,48,-4,86,0,46,-1,38,40,2,1
+12536,79,4,83,0,-46,0,4,130,126,5
+12537,56,0,97,0,54,2,40,42,2,1
+12538,45,-9,81,0,44,0,36,37,2,1
+12539,46,2,86,0,46,8,41,40,0,1
+12540,56,0,77,0,-2,-1,21,79,58,4
+12541,52,0,84,-2,52,-3,32,32,0,1
+12542,53,0,82,1,52,-21,29,30,2,1
+12543,45,0,79,2,44,-11,34,35,2,1
+12544,37,-51,106,-1,34,-1,69,72,4,3
+12545,51,0,78,0,52,12,27,26,0,1
+12546,37,0,80,0,12,22,43,67,24,1
+12547,52,-4,88,0,52,0,37,37,0,1
+12548,59,0,87,0,60,12,28,28,0,1
+12549,37,0,107,0,38,23,69,68,0,1
+12550,55,-1,74,2,-4,-2,19,79,60,4
+12551,44,0,86,-1,44,7,42,42,0,1
+12552,37,0,77,0,34,4,40,43,4,1
+12553,47,5,81,0,46,0,34,34,0,1
+12554,51,1,78,0,52,10,27,26,0,1
+12555,37,0,96,0,30,4,59,65,6,1
+12556,37,0,106,0,28,17,68,77,8,1
+12557,51,0,81,0,50,-28,30,32,2,1
+12558,56,3,98,0,38,-11,42,59,18,4
+12559,45,0,83,2,46,25,37,36,0,1
+12560,46,0,93,0,46,9,48,47,0,1
+12561,55,0,77,0,18,-1,22,59,38,4
+12562,55,0,82,0,-24,-28,26,108,82,4
+12563,42,0,83,-6,42,0,41,41,0,1
+12564,37,0,78,0,16,-3,42,63,22,1
+12565,43,-4,86,0,42,0,43,44,2,1
+12566,56,5,97,0,54,-8,40,42,2,1
+12567,57,4,79,0,56,0,22,23,0,1
+12568,51,5,78,0,50,0,27,29,2,1
+12569,46,-5,86,0,46,0,40,40,0,1
+12570,37,0,77,0,26,22,40,51,12,1
+12571,37,0,82,-2,36,-8,45,46,2,1
+12572,41,0,87,0,42,28,46,46,0,1
+12573,37,-1,76,0,36,-16,38,39,2,1
+12574,56,0,95,0,42,30,40,54,14,4
+12575,46,5,77,0,46,11,32,31,0,1
+12576,37,0,83,0,6,5,46,78,32,1
+12577,53,0,86,0,52,-21,32,34,2,1
+12578,37,0,79,-4,10,0,42,69,26,1
+12579,50,-5,80,0,50,0,30,31,2,1
+12580,37,0,76,0,34,-4,38,42,4,1
+12581,37,0,92,-3,18,9,55,74,20,1
+12582,49,0,87,0,46,-26,38,41,2,1
+12583,38,4,77,0,36,-24,39,41,2,1
+12584,45,5,77,0,44,0,32,33,2,1
+12585,47,2,84,0,46,0,37,38,0,1
+12586,44,0,81,0,44,13,38,37,0,1
+12587,51,-4,83,-4,50,-15,32,34,2,1
+12588,49,1,95,5,50,0,46,46,0,1
+12589,56,0,107,2,56,0,51,50,0,1
+12590,45,3,86,0,44,0,41,42,0,1
+12591,56,1,95,0,54,10,39,41,2,1
+12592,37,0,74,0,24,4,37,51,14,1
+12593,55,-4,95,0,52,0,40,44,4,4
+12594,44,0,81,0,44,0,37,37,0,1
+12595,37,0,76,-2,20,-4,40,55,16,1
+12596,37,0,77,7,28,-4,41,49,8,1
+12597,39,0,83,1,38,0,45,44,0,1
+12598,39,-1,76,0,38,0,38,37,0,1
+12599,50,-3,84,0,50,0,34,35,0,1
+12600,37,0,78,-2,20,-6,42,57,16,1
+12601,46,1,76,0,46,6,30,29,0,1
+12602,48,-1,84,3,46,0,36,37,2,1
+12603,51,-2,102,0,50,-15,51,53,2,1
+12604,56,3,86,0,54,-11,31,32,2,1
+12605,37,0,82,0,-2,25,45,85,40,1
+12606,56,5,95,0,42,-17,39,54,14,4
+12607,39,3,76,0,38,0,37,37,0,1
+12608,37,4,77,0,36,0,41,41,0,1
+12609,40,-3,109,0,38,0,68,70,2,1
+12610,49,0,81,0,46,-22,33,35,2,1
+12611,47,-5,86,-2,46,-4,39,40,0,1
+12612,51,1,83,0,52,2,31,31,0,1
+12613,49,-3,86,0,50,0,38,37,0,1
+12614,48,0,109,-1,46,0,61,63,2,1
+12615,38,1,90,0,6,-26,52,84,32,1
+12616,44,-2,86,0,44,6,43,42,0,1
+12617,57,3,84,0,56,0,28,28,0,1
+12618,46,-1,77,1,46,0,31,31,0,1
+12619,46,0,77,2,46,2,32,31,0,1
+12620,58,-4,84,0,56,0,26,27,0,1
+12621,49,2,87,0,46,-10,38,41,2,1
+12622,49,0,77,0,46,-4,29,31,2,1
+12623,51,-1,83,0,50,-7,32,33,2,1
+12624,46,-3,79,-2,46,0,33,32,0,1
+12625,44,0,86,0,42,-28,43,45,2,1
+12626,37,-3,100,0,38,18,63,62,0,1
+12627,51,0,80,0,50,-4,29,31,2,1
+12628,105,0,106,0,70,0,1,36,34,5
+12629,47,0,84,2,46,0,38,38,0,1
+12630,46,0,85,-2,46,0,39,39,0,1
+12631,58,0,83,2,56,0,25,26,0,1
+12632,47,5,88,3,46,0,40,41,0,1
+12633,37,0,78,0,12,28,41,65,24,1
+12634,45,-2,88,0,44,23,43,44,2,1
+12635,56,0,81,0,-10,-2,25,91,66,4
+12636,81,0,84,0,-18,22,4,103,98,5
+12637,48,-2,77,0,46,-1,29,31,2,1
+12638,41,0,89,2,42,23,48,48,0,1
+12639,39,3,81,-2,38,0,41,42,0,1
+12640,37,0,78,0,10,-3,41,68,26,1
+12641,37,0,80,0,0,20,43,80,36,1
+12642,51,1,86,0,52,13,35,34,0,1
+12643,56,3,95,0,42,0,39,54,14,4
+12644,46,-5,87,0,46,0,41,41,0,1
+12645,37,0,76,2,34,0,39,42,2,1
+12646,45,0,88,-2,44,-4,44,44,0,1
+12647,37,0,79,0,0,-3,42,79,36,1
+12648,81,0,85,0,-40,4,4,126,122,5
+12649,45,0,82,0,46,15,37,35,0,1
+12650,76,0,81,-6,-42,-11,5,125,120,5
+12651,45,1,90,0,44,0,45,46,2,1
+12652,41,3,80,0,42,10,39,39,0,1
+12653,37,0,82,0,16,-7,45,66,22,1
+12654,41,2,79,0,42,7,38,37,0,1
+12655,37,0,83,0,2,9,46,80,34,1
+12656,53,-5,77,0,54,0,25,23,0,1
+12657,37,0,76,0,20,-30,39,55,16,1
+12658,37,0,77,0,34,9,40,44,4,1
+12659,83,0,86,0,-4,11,3,92,88,5
+12660,50,3,81,0,50,0,30,32,2,1
+12661,37,0,79,-1,26,0,42,54,12,1
+12662,41,0,79,0,38,-19,38,41,2,1
+12663,44,-4,109,0,44,0,65,66,0,1
+12664,41,5,77,0,38,0,36,38,2,1
+12665,37,0,76,3,26,-1,39,50,10,1
+12666,55,0,77,0,-2,15,21,79,58,4
+12667,37,0,79,0,24,19,42,55,14,1
+12668,84,1,88,0,0,2,3,88,84,5
+12669,46,-4,107,0,46,0,61,60,0,1
+12670,41,3,79,0,42,11,38,37,0,1
+12671,37,0,80,-7,38,18,43,41,0,1
+12672,55,0,83,0,-24,8,27,108,82,4
+12673,79,5,83,1,-42,0,4,126,122,5
+12674,44,2,86,0,42,-23,42,44,2,1
+12675,41,1,77,0,38,-6,36,38,2,1
+12676,37,0,75,0,34,15,38,41,2,1
+12677,37,0,81,0,12,11,45,68,24,1
+12678,41,0,87,-4,38,0,46,48,2,1
+12679,56,3,84,0,56,16,29,28,0,1
+12680,85,0,88,-1,0,0,3,88,84,5
+12681,46,1,88,0,46,4,42,41,0,1
+12682,37,0,78,0,-4,-23,42,83,42,1
+12683,37,0,80,0,36,-25,43,44,2,1
+12684,37,0,79,0,10,-11,42,69,26,1
+12685,49,0,76,-5,46,-5,27,30,2,1
+12686,48,-1,83,0,46,-4,35,37,2,1
+12687,49,0,107,0,50,16,58,58,0,1
+12688,45,-1,81,0,44,-25,36,37,2,1
+12689,37,0,105,0,24,12,68,82,14,1
+12690,55,0,92,0,-4,20,36,97,60,4
+12691,37,0,76,0,36,15,40,40,0,1
+12692,43,2,76,-3,42,-5,33,35,2,1
+12693,37,0,79,0,10,-5,43,69,26,1
+12694,45,0,86,-1,46,17,40,39,0,1
+12695,41,0,86,0,38,-24,46,48,2,1
+12696,46,0,85,0,46,6,39,39,0,1
+12697,55,0,96,0,54,14,41,42,0,1
+12698,53,1,88,0,54,0,34,33,0,1
+12699,46,0,85,0,46,9,39,39,0,1
+12700,48,3,88,5,46,0,40,42,2,1
+12701,55,-4,98,0,52,7,42,46,4,4
+12702,80,1,84,0,-32,0,4,117,114,5
+12703,43,0,77,0,42,-18,34,36,2,1
+12704,53,0,77,-2,54,4,25,23,0,1
+12705,53,0,88,0,54,16,35,33,0,1
+12706,37,0,76,-1,24,-11,39,52,14,1
+12707,51,0,87,-6,52,0,36,35,0,1
+12708,37,0,76,-2,24,9,39,52,14,1
+12709,82,0,85,-1,-2,7,3,88,84,5
+12710,42,1,76,0,42,0,33,34,2,1
+12711,41,0,77,0,42,16,36,35,0,1
+12712,41,1,85,3,42,8,44,44,0,1
+12713,37,0,78,0,-4,0,42,83,42,1
+12714,56,0,91,0,2,5,35,88,54,4
+12715,49,-4,85,0,50,6,36,36,0,1
+12716,52,5,91,0,52,0,39,39,0,1
+12717,71,5,75,2,-40,16,4,116,112,5
+12718,37,0,75,0,36,-4,37,39,2,1
+12719,42,0,83,-5,42,0,41,41,0,1
+12720,37,-13,106,-15,30,-10,69,75,6,1
+12721,48,5,94,0,46,0,46,48,2,1
+12722,39,1,110,0,38,0,71,71,0,1
+12723,37,0,76,0,18,24,39,58,18,1
+12724,41,0,88,-3,38,-15,48,50,2,1
+12725,105,0,106,-7,72,16,1,34,34,5
+12726,37,-1,94,0,10,26,57,84,26,1
+12727,37,0,77,6,-12,0,41,90,50,1
+12728,37,0,86,0,36,0,49,50,0,1
+12729,42,0,89,2,42,0,47,48,2,1
+12730,43,0,87,2,42,-7,44,46,2,1
+12731,61,-1,111,0,60,-19,50,52,2,1
+12732,46,2,85,4,46,10,39,39,0,1
+12733,37,0,77,0,-24,-10,41,103,62,1
+12734,37,0,75,0,28,54,38,46,8,1
+12735,45,-1,78,0,44,0,33,34,2,1
+12736,51,0,81,6,50,0,30,32,2,1
+12737,40,0,97,0,38,0,57,58,2,1
+12738,49,1,84,0,46,-22,35,37,2,1
+12739,85,-38,107,0,64,-3,22,42,20,3
+12740,38,1,75,0,36,-19,37,39,2,1
+12741,85,0,89,6,2,-11,4,86,82,5
+12742,37,0,81,3,20,0,44,60,16,1
+12743,39,-5,79,0,38,0,40,40,0,1
+12744,53,0,79,0,54,6,25,24,0,1
+12745,49,-1,88,0,50,1,40,39,0,1
+12746,55,0,92,0,-4,25,36,97,60,4
+12747,59,0,108,0,60,0,49,49,0,1
+12748,53,0,84,0,52,-23,31,32,2,1
+12749,37,0,76,0,24,15,39,53,14,1
+12750,37,0,76,1,36,-26,39,40,2,1
+12751,47,-2,87,4,46,0,40,41,0,1
+12752,52,1,88,0,52,0,35,36,0,1
+12753,58,2,84,0,56,0,26,27,2,1
+12754,44,1,86,0,44,17,42,42,0,1
+12755,42,0,84,-4,42,0,42,43,0,1
+12756,37,0,79,0,6,-7,43,74,32,1
+12757,51,0,77,0,52,3,26,26,0,1
+12758,76,1,81,1,-40,9,5,122,118,5
+12759,55,0,77,-2,-28,1,21,105,84,4
+12760,37,0,81,2,20,0,44,60,16,1
+12761,39,0,78,-2,38,-4,39,39,0,1
+12762,38,0,78,0,38,3,40,39,0,1
+12763,56,0,98,2,50,-1,42,49,8,4
+12764,55,0,79,0,16,-4,23,63,40,4
+12765,53,-4,81,0,54,0,28,27,0,1
+12766,37,0,76,0,20,21,39,55,16,1
+12767,59,0,84,0,56,-9,25,27,2,1
+12768,56,0,78,0,26,31,22,52,30,4
+12769,53,0,102,0,52,-15,49,50,2,1
+12770,41,2,76,0,38,-29,35,37,2,1
+12771,48,0,80,0,50,23,32,31,0,1
+12772,56,0,97,4,52,31,41,45,4,4
+12773,56,1,85,0,54,-12,29,31,2,1
+12774,45,0,76,0,44,-14,30,32,2,1
+12775,42,1,85,0,42,0,43,44,2,1
+12776,53,0,86,-2,54,4,33,32,0,1
+12777,40,0,81,3,38,0,41,43,2,1
+12778,55,0,93,0,52,-7,38,42,4,4
+12779,52,0,86,0,52,-4,34,35,0,1
+12780,56,0,81,-2,-4,0,25,86,62,4
+12781,44,0,86,1,44,0,42,42,0,1
+12782,55,-3,78,1,44,0,23,34,12,4
+12783,44,0,95,0,44,2,52,51,0,1
+12784,84,-1,88,-2,-2,-8,3,90,88,5
+12785,37,0,77,0,26,-21,40,51,10,1
+12786,37,0,107,-3,36,-4,69,71,2,1
+12787,50,5,77,0,50,0,26,28,2,1
+12788,37,0,77,0,8,13,40,69,30,1
+12789,37,0,104,0,20,-9,67,84,16,1
+12790,42,2,77,0,42,0,35,35,0,1
+12791,55,1,78,-3,44,26,23,34,12,4
+12792,39,0,77,-5,38,0,39,39,0,1
+12793,51,2,88,0,52,17,37,37,0,1
+12794,38,0,102,-2,34,0,65,69,4,1
+12795,49,0,84,0,46,-26,36,38,2,1
+12796,41,0,79,0,42,9,38,38,0,1
+12797,37,0,78,0,16,0,42,63,22,1
+12798,41,0,81,0,38,-30,40,43,2,1
+12799,37,0,79,0,18,5,43,61,18,1
+12800,56,0,80,-2,-4,0,24,85,62,4
+12801,37,0,78,0,16,15,41,63,22,1
+12802,42,0,77,1,42,0,35,36,0,1
+12803,56,0,94,2,50,0,38,45,6,4
+12804,56,0,95,0,50,-7,40,46,6,4
+12805,55,0,83,0,54,-5,28,29,2,1
+12806,43,0,88,0,44,25,45,44,0,1
+12807,45,0,84,-3,44,0,39,40,0,1
+12808,56,0,78,0,42,-28,22,37,14,4
+12809,53,4,82,0,52,0,29,30,2,1
+12810,43,0,83,0,42,-7,39,41,2,1
+12811,37,0,102,6,28,0,65,73,8,1
+12812,37,0,76,-2,36,-3,39,39,0,1
+12813,49,4,79,1,50,1,30,30,0,1
+12814,41,-1,80,0,38,-14,39,41,2,1
+12815,37,0,77,0,36,-21,40,41,2,1
+12816,51,1,79,1,52,9,27,27,0,1
+12817,55,-4,98,0,44,-3,42,54,12,4
+12818,45,3,93,0,46,27,48,47,0,1
+12819,53,1,90,0,54,6,37,36,0,1
+12820,37,0,93,0,10,-8,55,82,28,1
+12821,37,0,78,0,-4,-2,42,83,42,1
+12822,43,0,81,0,42,-9,38,40,2,1
+12823,37,0,99,0,28,0,61,70,8,1
+12824,37,-4,79,3,36,0,42,43,0,1
+12825,41,0,77,5,42,0,36,35,0,1
+12826,56,3,79,0,56,26,24,23,0,1
+12827,86,3,89,0,8,19,3,81,78,5
+12828,41,-6,78,-5,42,-7,37,37,0,1
+12829,39,-8,76,-1,-2,0,37,79,42,1
+12830,58,0,81,-1,56,0,24,24,0,1
+12831,41,0,88,4,38,-1,47,49,2,1
+12832,51,0,83,0,52,25,32,31,0,1
+12833,48,-4,106,0,46,0,58,60,2,1
+12834,56,0,90,6,56,0,33,33,0,1
+12835,47,1,93,-1,46,0,47,47,0,1
+12836,55,0,77,0,-2,-30,21,79,58,4
+12837,85,0,88,-273,0,0,3,88,84,5
+12838,39,-3,77,0,38,0,39,39,0,1
+12839,37,0,76,0,30,1,40,45,6,1
+12840,45,-4,86,0,44,-7,41,42,2,1
+12841,37,0,106,0,24,-28,69,82,14,1
+12842,48,0,95,0,50,25,47,46,0,1
+12843,45,0,81,-1,44,-3,36,37,2,1
+12844,38,-5,91,0,6,0,53,86,32,1
+12845,56,0,97,-1,46,-4,41,51,10,4
+12846,39,-4,77,0,38,0,38,38,0,1
+12847,46,2,86,-4,46,0,40,40,0,1
+12848,51,0,77,0,50,-10,26,28,2,1
+12849,37,-1,94,0,10,18,57,84,26,1
+12850,39,0,79,-4,38,0,40,40,0,1
+12851,48,0,94,0,46,-7,46,48,2,1
+12852,37,0,76,0,34,-14,40,43,2,1
+12853,37,0,83,0,6,-26,47,78,32,1
+12854,38,0,76,0,38,9,38,37,0,1
+12855,37,-1,106,-5,34,-25,69,72,4,1
+12856,49,5,79,0,46,-3,30,32,2,1
+12857,44,0,88,0,44,7,44,44,0,1
+12858,38,0,78,0,-2,0,40,81,40,1
+12859,53,0,86,1,54,8,33,32,0,1
+12860,37,-64,106,-1,34,-2,69,72,4,3
+12861,38,0,97,0,38,3,59,59,0,1
+12862,55,0,82,0,-36,-24,26,118,92,4
+12863,56,0,107,0,56,16,51,50,0,1
+12864,49,1,85,0,46,-1,36,39,2,1
+12865,45,0,86,0,46,31,41,39,0,1
+12866,37,0,79,0,16,18,43,64,22,1
+12867,45,-4,88,0,46,14,42,41,0,1
+12868,51,0,79,0,50,-3,28,30,2,1
+12869,39,-1,81,-3,38,0,41,42,0,1
+12870,53,0,86,1,54,29,33,32,0,1
+12871,56,0,92,6,-2,0,36,94,58,4
+12872,80,0,84,0,-40,31,4,125,122,5
+12873,47,0,78,-2,46,0,31,32,0,1
+12874,56,1,80,-5,56,13,24,23,0,1
+12875,40,0,88,8,38,0,48,50,2,1
+12876,51,1,81,-6,52,9,30,30,0,1
+12877,42,0,84,-7,42,0,42,43,0,1
+12878,37,0,80,-2,12,-7,43,67,24,1
+12879,56,0,96,0,50,-11,40,47,6,4
+12880,38,0,92,0,18,8,54,74,20,1
+12881,40,0,109,4,38,0,69,71,2,1
+12882,45,0,86,-2,44,-8,40,42,2,1
+12883,45,0,83,-1,44,-2,38,39,2,1
+12884,56,5,97,0,52,17,40,45,4,4
+12885,45,-2,81,0,46,12,36,35,0,1
+12886,44,0,81,-7,44,0,37,37,0,1
+12887,55,0,93,0,50,2,37,44,6,4
+12888,56,3,80,0,-4,0,24,85,62,4
+12889,77,0,81,0,-40,6,4,123,118,5
+12890,55,0,92,0,-4,21,36,97,60,4
+12891,37,0,77,8,30,3,41,46,6,1
+12892,44,-1,81,1,44,9,37,37,0,1
+12893,55,0,82,-2,-24,0,26,108,82,4
+12894,44,0,76,0,44,19,32,32,0,1
+12895,37,0,79,0,2,-15,42,76,34,1
+12896,45,4,83,0,44,-6,38,39,2,1
+12897,37,0,78,0,0,9,42,78,36,1
+12898,38,-2,109,-1,38,0,72,71,0,1
+12899,55,0,95,-2,52,-22,40,44,4,4
+12900,44,-1,81,5,44,0,37,37,0,1
+12901,51,1,83,0,52,4,31,31,0,1
+12902,46,5,80,0,46,8,34,34,0,1
+12903,41,0,83,4,38,-8,42,44,2,1
+12904,43,0,85,-2,42,-13,42,44,2,1
+12905,37,1,76,0,36,2,39,39,0,1
+12906,43,0,81,6,42,-1,37,39,2,1
+12907,37,0,77,0,30,-5,40,46,6,1
+12908,47,0,86,8,46,0,38,39,0,1
+12909,58,0,84,0,56,-1,25,27,2,1
+12910,37,0,81,0,20,-11,44,60,16,1
+12911,37,0,77,8,36,-26,39,41,2,1
+12912,37,0,92,6,6,0,54,86,32,1
+12913,37,0,80,1,36,0,43,44,0,1
+12914,37,0,80,0,18,16,43,62,18,1
+12915,55,3,93,0,54,0,38,39,2,1
+12916,53,1,84,0,54,1,30,30,0,1
+12917,49,2,80,0,46,-17,31,34,2,1
+12918,51,4,84,0,52,12,33,32,0,1
+12919,37,0,81,0,36,-4,44,45,2,1
+12920,44,-1,88,2,44,0,44,44,0,1
+12921,41,1,93,0,42,26,53,52,0,1
+12922,47,3,79,0,46,0,32,32,0,1
+12923,37,0,82,2,24,0,45,59,14,1
+12924,49,0,76,-5,46,-18,27,30,2,1
+12925,44,-2,86,0,44,3,42,42,0,1
+12926,38,0,92,2,16,15,54,77,22,1
+12927,37,0,79,8,2,-11,43,77,34,1
+12928,44,1,79,0,44,16,35,35,0,1
+12929,55,0,97,0,52,8,41,45,4,4
+12930,49,0,77,0,50,10,28,28,0,1
+12931,53,0,77,-2,54,3,25,23,0,1
+12932,48,-2,86,0,46,-1,37,39,2,1
+12933,46,-1,93,2,46,4,47,46,0,1
+12934,56,-3,79,2,56,0,23,22,0,1
+12935,37,0,79,0,8,-15,43,72,28,1
+12936,55,-3,98,0,52,4,42,46,4,4
+12937,37,0,83,0,2,18,46,80,34,1
+12938,48,0,88,-1,46,0,40,42,2,1
+12939,60,-1,111,0,60,0,50,51,2,1
+12940,42,4,76,0,42,0,34,35,0,1
+12941,44,0,76,-4,44,8,32,32,0,1
+12942,41,0,78,-2,42,-4,37,37,0,1
+12943,37,0,76,-7,28,0,40,48,8,1
+12944,45,0,87,0,46,9,42,41,0,1
+12945,63,3,111,0,62,0,48,49,2,1
+12946,37,0,97,0,36,0,60,61,0,1
+12947,37,-11,106,0,34,11,69,72,4,1
+12948,59,0,84,0,56,-14,25,27,2,1
+12949,40,0,97,0,38,0,57,59,2,1
+12950,106,0,108,0,70,0,1,38,36,5
+12951,105,1,107,6,70,0,1,37,36,5
+12952,45,-1,82,0,46,22,37,35,0,1
+12953,47,-5,86,1,46,0,39,40,0,1
+12954,37,0,92,-3,12,0,55,79,24,1
+12955,51,0,78,0,50,-4,27,29,2,1
+12956,44,0,81,6,44,12,38,37,0,1
+12957,53,-4,108,0,52,-19,55,56,2,1
+12958,43,-4,86,0,44,18,43,42,0,1
+12959,37,0,79,1,2,0,42,76,34,1
+12960,82,0,85,-1,-6,6,3,93,90,5
+12961,37,0,83,0,6,6,46,78,32,1
+12962,42,0,78,-1,42,-1,36,37,2,1
+12963,52,-4,79,0,52,-1,26,27,0,1
+12964,37,0,97,0,20,-13,60,77,16,1
+12965,49,0,102,0,50,2,53,53,0,1
+12966,38,0,106,0,38,12,68,67,0,1
+12967,44,3,76,0,44,8,32,32,0,1
+12968,38,0,76,-1,36,-25,38,40,2,1
+12969,58,4,91,3,56,0,33,34,2,1
+12970,47,4,77,0,46,0,31,31,0,1
+12971,55,0,93,1,8,0,37,85,48,4
+12972,51,0,83,0,52,11,31,31,0,1
+12973,43,0,83,-5,42,-13,39,41,2,1
+12974,43,-1,77,0,42,-7,34,36,2,1
+12975,52,-1,82,0,52,0,29,30,0,1
+12976,52,-5,88,0,52,0,36,37,0,1
+12977,37,0,76,2,30,27,39,45,6,1
+12978,51,0,88,1,52,2,36,36,0,1
+12979,48,0,83,0,46,-8,34,36,2,1
+12980,55,0,93,0,42,-30,37,51,14,4
+12981,49,0,85,0,46,-14,36,39,2,1
+12982,53,0,84,0,54,16,31,30,0,1
+12983,48,-1,77,0,46,0,28,30,2,1
+12984,37,0,108,0,30,-4,71,77,6,1
+12985,41,0,80,-2,38,-33,39,41,2,1
+12986,50,-2,86,-1,50,0,36,37,0,1
+12987,37,0,77,0,8,11,40,70,30,1
+12988,55,-5,93,0,46,0,37,46,8,4
+12989,56,0,77,0,-22,-4,21,100,80,4
+12990,55,3,83,0,54,0,28,28,0,1
+12991,37,0,106,8,18,0,69,88,18,1
+12992,37,0,77,0,6,13,40,72,32,1
+12993,51,0,88,1,50,0,37,39,2,1
+12994,55,0,96,0,46,-21,41,50,8,4
+12995,45,0,84,1,44,-11,39,41,2,1
+12996,59,0,108,-2,56,-17,49,51,2,1
+12997,56,0,97,-1,46,-3,41,51,10,4
+12998,37,0,97,0,24,-15,60,73,14,1
+12999,37,0,75,0,24,21,38,52,14,1
+13000,45,0,78,0,44,-2,33,34,2,1
+13001,55,0,77,0,-18,-4,21,95,74,4
+13002,56,-1,80,0,56,3,24,23,0,1
+13003,37,0,80,-6,16,0,43,65,22,1
+13004,37,0,93,-2,12,0,56,81,24,1
+13005,39,4,82,0,38,0,43,43,0,1
+13006,85,0,88,0,6,16,3,83,80,5
+13007,56,0,77,0,-10,-8,21,87,66,4
+13008,51,5,91,0,50,0,40,42,2,1
+13009,55,0,77,1,54,0,22,23,0,1
+13010,49,0,106,7,50,14,58,57,0,1
+13011,56,0,84,0,56,0,28,28,0,1
+13012,37,0,77,0,8,-7,40,69,30,1
+13013,37,0,76,0,28,-16,39,47,8,1
+13014,41,0,81,-4,38,0,40,42,2,1
+13015,46,0,82,0,46,-1,36,35,0,1
+13016,48,-3,86,0,46,-15,37,39,2,1
+13017,53,0,86,1,52,-3,33,35,2,1
+13018,49,1,85,0,46,-7,36,39,2,1
+13019,45,1,86,0,46,29,41,40,0,1
+13020,56,0,83,0,56,14,27,26,0,1
+13021,56,1,81,1,-4,0,25,86,62,4
+13022,37,0,81,0,24,26,44,57,14,1
+13023,44,-1,84,0,42,-29,41,43,2,1
+13024,81,0,84,7,-14,0,4,100,96,5
+13025,37,0,74,0,28,1,38,46,8,1
+13026,37,-1,106,-4,30,241,69,75,6,1
+13027,56,-2,88,0,56,0,31,31,0,1
+13028,40,-4,77,0,38,0,37,38,2,1
+13029,55,0,78,0,6,7,23,73,50,4
+13030,49,5,102,0,50,3,53,53,0,1
+13031,56,-2,97,-1,42,-14,41,55,14,4
+13032,37,5,81,0,38,31,43,42,0,1
+13033,40,0,86,0,38,-6,46,48,2,1
+13034,55,0,78,0,16,8,23,63,40,4
+13035,37,-1,76,-4,36,-7,39,40,0,1
+13036,55,0,76,6,-22,0,21,99,78,4
+13037,41,1,85,2,42,5,44,44,0,1
+13038,42,5,89,0,42,0,47,48,0,1
+13039,41,0,77,0,38,-28,36,38,2,1
+13040,52,0,102,0,52,0,50,51,0,1
+13041,45,-3,83,0,46,11,38,37,0,1
+13042,37,0,77,0,38,31,40,39,0,1
+13043,41,-5,82,0,42,0,41,41,0,1
+13044,37,0,106,0,28,-15,68,77,8,1
+13045,41,3,80,0,42,4,39,39,0,1
+13046,49,4,88,0,50,2,39,39,0,1
+13047,56,0,107,0,54,-15,51,53,2,1
+13048,48,-3,86,0,46,0,39,40,2,1
+13049,46,-1,79,-7,46,0,33,32,0,1
+13050,37,0,103,-7,28,0,66,75,8,1
+13051,55,-1,89,-6,54,0,34,35,0,1
+13052,52,-1,103,1,52,-4,51,51,0,1
+13053,55,4,84,0,54,0,30,30,0,1
+13054,55,0,96,0,50,-2,41,47,6,4
+13055,56,0,96,0,44,8,40,52,12,4
+13056,44,-4,106,0,44,0,62,62,0,1
+13057,56,2,95,0,56,12,39,39,0,1
+13058,57,-3,85,0,56,0,28,28,0,1
+13059,37,0,82,0,36,0,45,46,2,1
+13060,37,-2,76,0,38,7,38,37,0,1
+13061,56,0,87,3,56,0,31,30,0,1
+13062,55,0,97,0,44,-13,41,53,12,4
+13063,55,0,78,0,2,-17,23,75,52,4
+13064,37,0,81,0,38,11,43,42,0,1
+13065,56,0,81,0,-6,1,25,88,64,4
+13066,51,-2,77,0,50,-10,26,28,2,1
+13067,37,0,76,0,20,-3,39,55,16,1
+13068,42,-1,79,0,42,0,38,38,0,1
+13069,49,-1,89,0,50,0,40,40,0,1
+13070,49,0,80,0,46,-16,31,34,2,1
+13071,55,0,95,0,46,-19,40,49,8,4
+13072,43,0,83,0,42,0,40,41,2,1
+13073,55,-5,81,0,-4,11,26,86,60,4
+13074,37,0,78,0,0,-7,41,78,36,1
+13075,45,0,78,0,46,11,33,32,0,1
+13076,41,0,86,8,38,-4,46,48,2,1
+13077,49,0,88,-1,50,3,39,39,0,1
+13078,55,0,77,0,28,-2,21,48,28,4
+13079,39,1,77,0,38,0,39,39,0,1
+13080,37,0,75,0,34,0,38,41,2,1
+13081,37,0,96,-3,36,0,59,60,2,1
+13082,80,0,85,2,-40,3,5,126,122,5
+13083,49,0,83,0,50,2,33,33,0,1
+13084,49,-2,87,0,46,-15,38,41,2,1
+13085,41,2,80,0,42,4,39,39,0,1
+13086,37,0,76,0,26,3,39,50,12,1
+13087,45,0,80,0,44,-6,35,36,2,1
+13088,49,0,82,0,46,-2,33,35,2,1
+13089,37,0,90,0,28,-13,53,62,8,1
+13090,37,-203,106,0,36,8,69,69,0,1
+13091,43,-4,109,0,42,0,66,67,2,1
+13092,44,0,86,3,44,6,43,42,0,1
+13093,38,-1,76,-1,38,0,38,37,0,1
+13094,37,0,93,0,12,6,56,81,24,1
+13095,45,-4,88,0,46,17,42,41,0,1
+13096,53,5,86,0,54,11,33,32,0,1
+13097,42,1,96,0,42,0,54,55,0,1
+13098,55,-2,81,0,54,-5,26,27,2,1
+13099,37,0,104,3,26,24,67,78,12,1
+13100,37,0,106,0,26,-7,69,80,12,1
+13101,37,0,78,1,12,6,42,65,24,1
+13102,46,0,87,-1,46,-1,41,41,0,1
+13103,37,0,76,0,34,-26,40,43,2,1
+13104,55,4,74,-12,-4,-27,19,79,60,4
+13105,41,0,86,2,42,0,45,45,0,1
+13106,54,2,81,2,54,0,28,27,0,1
+13107,56,0,81,0,0,15,25,81,56,4
+13108,37,0,83,0,2,11,46,80,34,1
+13109,41,0,77,0,42,26,37,36,0,1
+13110,85,1,88,1,-2,0,3,91,88,5
+13111,49,-1,83,0,50,7,34,34,0,1
+13112,48,0,86,5,46,0,37,39,2,1
+13113,45,-2,81,0,46,8,36,35,0,1
+13114,37,0,79,-3,36,-5,42,43,0,1
+13115,37,0,78,0,20,-21,42,57,16,1
+13116,37,0,82,-2,36,0,45,46,0,1
+13117,37,0,75,0,28,6,38,46,8,1
+13118,55,0,92,3,30,-2,37,61,24,4
+13119,37,0,80,4,2,0,43,77,34,1
+13120,56,0,97,6,52,-1,41,45,4,4
+13121,49,-3,101,6,46,-29,52,55,2,1
+13122,45,0,84,0,44,0,39,40,2,1
+13123,37,-9,106,0,34,9,69,72,4,1
+13124,37,0,106,1,28,-21,69,78,8,1
+13125,39,1,82,0,38,0,42,43,0,1
+13126,44,0,84,0,42,-19,40,43,2,1
+13127,51,-3,80,-1,52,2,29,28,0,1
+13128,43,0,76,0,44,26,33,32,0,1
+13129,38,0,76,0,36,-28,38,40,2,1
+13130,56,0,78,0,42,-23,22,37,14,4
+13131,37,0,78,0,-4,10,41,83,42,1
+13132,45,-2,82,0,44,-23,37,38,2,1
+13133,44,4,79,0,44,23,35,35,0,1
+13134,55,0,79,0,20,20,23,58,34,4
+13135,51,5,81,0,50,-12,29,32,2,1
+13136,44,0,76,1,44,14,32,32,0,1
+13137,49,2,81,0,46,-1,33,35,2,1
+13138,37,0,79,0,18,21,42,61,18,1
+13139,43,0,81,6,42,-3,37,39,2,1
+13140,37,0,77,0,26,2,40,51,12,1
+13141,37,0,82,0,18,4,45,64,18,1
+13142,84,2,87,0,-2,0,3,90,86,5
+13143,44,0,89,0,42,-27,45,48,2,1
+13144,56,0,87,8,56,0,31,30,0,1
+13145,37,0,76,-1,26,-4,39,50,12,1
+13146,39,4,83,0,38,0,44,44,0,1
+13147,38,0,92,0,18,7,54,74,20,1
+13148,55,-1,98,3,46,0,42,51,8,4
+13149,39,-2,88,0,38,0,49,50,0,1
+13150,55,0,96,2,38,-13,41,57,16,4
+13151,55,0,77,0,26,-8,21,51,30,4
+13152,37,-1,82,0,36,-19,45,46,2,1
+13153,41,0,79,0,42,22,39,38,0,1
+13154,83,0,86,5,-2,0,4,89,86,5
+13155,41,0,88,4,38,-8,47,49,2,1
+13156,45,0,86,-4,46,14,41,40,0,1
+13157,47,5,81,2,46,0,34,35,0,1
+13158,48,-1,84,0,46,0,37,38,2,1
+13159,37,0,104,0,26,30,66,78,12,1
+13160,43,0,86,0,44,12,43,42,0,1
+13161,46,-2,82,0,46,0,36,35,0,1
+13162,56,2,83,0,54,-9,27,28,2,1
+13163,55,0,81,0,-20,10,26,102,76,4
+13164,53,1,81,0,54,14,28,26,0,1
+13165,38,-2,91,0,6,1,53,86,34,1
+13166,51,0,87,0,50,-2,36,38,2,1
+13167,41,0,87,0,42,21,46,46,0,1
+13168,37,0,74,0,26,-11,38,48,10,1
+13169,45,-1,77,0,44,-15,32,34,2,1
+13170,41,0,82,0,42,1,41,41,0,1
+13171,37,0,78,0,30,3,41,47,6,1
+13172,37,0,77,8,24,-14,40,54,14,1
+13173,37,-2,92,-2,6,-7,55,86,32,1
+13174,49,0,81,0,50,2,32,32,0,1
+13175,48,3,102,0,46,0,53,55,2,1
+13176,43,0,79,0,42,-16,35,37,2,1
+13177,56,0,86,2,56,2,31,30,0,1
+13178,49,1,94,0,46,-7,45,48,2,1
+13179,55,0,77,0,38,-30,22,39,16,4
+13180,44,0,76,0,42,-27,32,34,2,1
+13181,41,-1,83,0,42,0,41,41,0,1
+13182,48,-2,83,-8,46,-12,35,37,2,1
+13183,37,0,83,0,0,8,46,83,36,1
+13184,56,0,81,1,54,-5,25,26,2,1
+13185,37,0,104,0,26,0,67,78,12,1
+13186,37,0,81,0,30,-9,45,50,6,1
+13187,47,1,79,4,46,0,32,32,0,1
+13188,56,0,81,-2,-2,0,25,83,58,4
+13189,37,0,83,0,30,-15,46,52,6,1
+13190,56,1,83,0,56,8,27,26,0,1
+13191,44,0,79,0,44,12,36,35,0,1
+13192,66,0,109,0,64,-23,43,45,2,1
+13193,56,0,98,7,46,-3,42,51,10,4
+13194,52,0,86,0,52,-2,33,34,0,1
+13195,106,-5,108,2,72,0,2,35,34,5
+13196,43,0,77,-3,42,-12,34,35,2,1
+13197,56,-5,81,0,56,2,25,24,0,1
+13198,43,0,75,-2,42,-22,32,34,2,1
+13199,46,0,81,-1,46,-4,35,34,0,1
+13200,55,-1,98,0,44,-9,42,54,12,4
+13201,55,0,82,1,54,86,26,28,2,1
+13202,45,0,79,0,46,7,34,33,0,1
+13203,37,-4,81,0,36,-1,44,44,0,1
+13204,56,0,78,5,8,-30,22,70,48,4
+13205,82,1,86,0,-40,9,4,128,124,5
+13206,79,2,83,0,-30,0,4,114,110,5
+13207,44,4,85,0,44,2,41,41,0,1
+13208,45,0,87,0,44,-5,42,43,2,1
+13209,49,-5,101,2,50,11,52,52,0,1
+13210,56,0,77,0,-24,1,21,103,82,4
+13211,58,-3,91,0,56,0,33,34,0,1
+13212,55,0,95,-2,44,-3,40,51,12,4
+13213,38,-2,82,0,38,0,44,43,0,1
+13214,43,-5,77,0,42,0,35,36,2,1
+13215,37,0,80,0,20,-10,43,59,16,1
+13216,45,0,81,-1,44,-2,36,37,2,1
+13217,44,0,75,0,44,1,31,31,0,1
+13218,41,0,79,-2,42,3,38,37,0,1
+13219,37,0,77,0,-22,1,41,101,60,1
+13220,48,0,79,0,50,31,31,30,0,1
+13221,41,-4,80,0,42,20,39,39,0,1
+13222,56,0,97,0,52,29,41,45,4,4
+13223,37,1,81,-4,34,0,44,48,4,1
+13224,37,0,81,0,36,-18,43,44,2,1
+13225,45,0,90,0,44,-8,45,46,2,1
+13226,43,0,77,0,44,18,34,34,0,1
+13227,39,-5,76,-3,38,0,38,37,0,1
+13228,37,0,106,0,28,-4,69,78,8,1
+13229,51,3,86,0,52,16,35,35,0,1
+13230,55,0,93,0,50,-11,38,44,6,4
+13231,55,0,95,-2,36,-5,39,59,20,4
+13232,45,0,74,1,44,0,29,30,2,1
+13233,41,-3,80,0,42,8,39,39,0,1
+13234,53,0,102,0,52,-19,49,50,2,1
+13235,39,-3,76,1,38,0,36,37,0,1
+13236,52,0,78,1,52,0,26,26,0,1
+13237,37,0,81,0,24,-6,44,57,14,1
+13238,45,2,86,0,44,-2,41,42,2,1
+13239,55,-3,77,0,28,0,22,48,26,4
+13240,44,5,88,0,44,15,44,44,0,1
+13241,48,0,88,0,46,-2,40,42,2,1
+13242,37,0,83,0,-4,-3,46,88,42,1
+13243,56,5,95,0,46,0,40,49,10,4
+13244,84,0,88,0,0,14,3,88,84,5
+13245,56,-4,99,2,46,0,43,52,10,4
+13246,41,0,81,0,42,6,40,40,0,1
+13247,43,-1,79,0,42,-7,35,37,2,1
+13248,37,0,79,0,12,39,42,66,24,1
+13249,37,0,95,-5,12,-14,58,82,24,1
+13250,56,0,96,0,42,1,40,55,14,4
+13251,37,0,83,-3,18,0,47,65,18,1
+13252,45,0,87,6,44,-19,42,43,2,1
+13253,55,0,98,0,54,22,42,44,2,1
+13254,41,-3,78,0,42,0,37,37,0,1
+13255,56,0,77,0,-20,-4,21,97,76,4
+13256,56,0,98,0,46,5,42,51,10,4
+13257,37,0,78,0,-6,-16,42,86,44,1
+13258,52,2,79,0,52,0,26,27,0,1
+13259,55,0,77,-2,-28,5,21,105,84,4
+13260,37,0,75,0,26,11,38,49,12,1
+13261,46,2,84,0,46,0,38,37,0,1
+13262,47,-5,85,0,46,0,38,39,0,1
+13263,49,0,86,5,50,19,38,37,0,1
+13264,56,3,98,0,46,28,42,51,10,4
+13265,37,0,106,0,24,21,69,82,14,1
+13266,37,0,106,0,30,-12,69,75,6,1
+13267,56,0,95,0,44,24,40,51,12,4
+13268,45,-5,76,0,46,7,31,30,0,1
+13269,55,0,77,-1,12,0,22,65,42,4
+13270,56,0,78,-1,44,8,22,34,12,4
+13271,102,0,102,-6,72,25,1,30,30,5
+13272,44,2,79,0,44,6,36,35,0,1
+13273,46,0,76,4,46,0,30,30,0,1
+13274,38,0,86,0,38,0,48,48,0,1
+13275,44,5,79,0,42,-11,35,37,2,1
+13276,37,0,83,0,16,6,46,67,22,1
+13277,37,0,77,0,24,-7,40,54,14,1
+13278,37,0,77,0,30,-27,40,46,6,1
+13279,52,3,88,0,52,0,36,37,0,1
+13280,37,0,106,0,36,1,68,69,2,1
+13281,54,0,87,7,54,-1,33,33,0,1
+13282,40,-1,76,-3,38,0,36,37,2,1
+13283,41,1,83,0,42,4,42,42,0,1
+13284,37,0,79,0,8,9,42,71,28,1
+13285,46,0,85,0,46,12,39,39,0,1
+13286,41,0,83,2,38,-6,42,44,2,1
+13287,37,0,77,0,-10,-21,41,88,46,1
+13288,37,0,79,0,12,6,43,66,24,1
+13289,37,0,76,-3,28,-36,40,48,8,1
+13290,56,0,79,0,16,7,23,63,40,4
+13291,41,0,79,5,42,1,38,38,0,1
+13292,55,3,77,0,28,0,21,48,28,4
+13293,43,-2,76,-1,42,-8,32,34,2,1
+13294,37,0,93,0,30,16,56,62,6,1
+13295,43,0,75,0,44,25,32,31,0,1
+13296,48,0,106,0,50,31,58,57,0,1
+13297,43,0,83,-1,42,-12,40,42,2,1
+13298,37,0,79,0,6,-10,42,74,32,1
+13299,56,0,98,0,44,24,42,54,12,4
+13300,56,4,77,0,16,-3,22,62,40,4
+13301,37,-3,79,7,36,-28,42,43,2,1
+13302,81,0,84,0,-22,-28,4,108,104,5
+13303,51,1,82,0,52,4,31,30,0,1
+13304,45,-2,88,0,46,7,43,42,0,1
+13305,55,-3,98,0,44,-4,42,54,12,4
+13306,43,0,79,-3,42,0,37,38,2,1
+13307,106,0,108,1,72,2,1,35,34,5
+13308,48,0,108,5,46,0,59,61,2,1
+13309,37,0,104,0,18,27,67,86,18,1
+13310,38,1,76,0,38,19,38,37,0,1
+13311,49,1,95,0,46,-11,47,49,2,1
+13312,49,0,81,-1,50,-7,32,32,0,1
+13313,44,0,86,5,42,-28,43,45,2,1
+13314,58,5,90,-6,56,0,32,33,2,1
+13315,41,0,82,-1,42,2,41,41,0,1
+13316,47,3,78,-6,46,0,31,32,0,1
+13317,55,0,96,3,44,0,41,52,12,4
+13318,37,0,79,2,16,-4,42,63,22,1
+13319,37,0,77,6,-18,-1,41,96,54,1
+13320,45,0,87,4,46,18,42,41,0,1
+13321,41,0,81,0,38,-26,39,42,2,1
+13322,49,0,88,0,50,7,39,39,0,1
+13323,45,-3,78,0,44,0,34,34,0,1
+13324,53,2,87,0,52,0,34,35,2,1
+13325,82,5,86,1,-2,4,3,88,84,5
+13326,55,0,78,0,16,-1,23,63,40,4
+13327,45,0,78,0,46,15,33,32,0,1
+13328,38,0,77,0,38,6,40,39,0,1
+13329,37,0,77,0,10,15,40,66,26,1
+13330,48,3,88,-4,46,0,40,41,2,1
+13331,43,-3,83,0,42,-11,39,41,2,1
+13332,37,0,79,-7,8,0,42,72,30,1
+13333,41,0,82,-7,38,0,41,43,2,1
+13334,37,0,77,0,34,14,40,44,4,1
+13335,37,0,75,0,28,-12,38,46,8,1
+13336,48,3,102,0,46,0,54,55,2,1
+13337,45,-1,76,0,46,9,31,30,0,1
+13338,41,0,77,0,42,12,36,36,0,1
+13339,55,0,91,0,56,28,35,34,0,1
+13340,55,0,76,-5,-12,-27,21,89,68,4
+13341,52,0,84,0,52,-6,31,32,0,1
+13342,37,0,108,5,36,0,71,71,0,1
+13343,55,0,95,7,36,-3,40,59,20,4
+13344,46,0,88,-5,46,-4,41,41,0,1
+13345,53,0,88,2,52,-5,35,36,2,1
+13346,40,-1,83,8,38,0,43,44,2,1
+13347,37,0,74,0,30,-10,37,43,6,1
+13348,51,-1,88,-3,52,13,37,37,0,1
+13349,40,0,82,6,38,0,42,43,2,1
+13350,41,1,79,0,38,-16,38,40,2,1
+13351,45,-5,87,-2,44,0,43,43,0,1
+13352,52,0,83,0,54,29,30,28,0,1
+13353,42,4,88,0,42,0,46,46,0,1
+13354,37,4,100,0,34,0,64,67,4,1
+13355,51,0,81,0,50,-24,30,32,2,1
+13356,82,0,86,-1,-40,8,4,128,124,5
+13357,55,0,95,-7,54,7,40,41,2,1
+13358,41,0,83,2,38,-9,42,44,2,1
+13359,37,0,106,-7,30,0,69,75,6,1
+13360,37,0,77,0,-14,23,40,92,52,1
+13361,43,-5,81,6,42,0,38,40,2,1
+13362,56,0,87,-1,56,1,31,30,0,1
+13363,52,0,86,0,52,-1,34,35,0,1
+13364,80,0,84,7,-38,-2,5,123,118,5
+13365,37,0,76,0,26,-9,39,50,12,1
+13366,48,-1,76,-1,46,0,28,30,2,1
+13367,51,0,88,0,50,-13,37,39,2,1
+13368,45,-4,88,0,44,56,43,44,2,1
+13369,37,0,77,0,36,-1,39,41,2,1
+13370,38,3,76,0,38,9,38,37,0,1
+13371,50,4,83,0,50,0,34,34,0,1
+13372,37,0,103,0,24,-17,66,80,14,1
+13373,55,0,77,-4,12,-2,22,65,42,4
+13374,37,0,74,-3,28,0,37,46,8,1
+13375,55,0,79,0,20,-12,23,58,34,4
+13376,49,0,87,0,46,-3,38,41,2,1
+13377,37,0,77,0,36,-18,39,41,2,1
+13378,55,0,92,0,36,-5,37,56,20,4
+13379,47,-1,89,0,46,0,42,42,0,1
+13380,56,0,86,0,54,-10,31,32,2,1
+13381,56,-3,107,0,56,4,51,50,0,1
+13382,55,0,98,0,52,-9,42,46,4,4
+13383,45,0,88,0,44,-20,42,44,2,1
+13384,37,-2,82,0,36,0,45,46,0,1
+13385,41,0,83,-3,42,19,42,41,0,1
+13386,44,5,88,0,44,6,45,44,0,1
+13387,54,-2,81,0,54,0,26,26,0,1
+13388,37,0,75,0,18,-10,38,57,18,1
+13389,37,3,109,21,28,0,72,81,8,1
+13390,47,0,88,2,46,0,41,41,0,1
+13391,56,0,83,0,54,-9,27,28,2,1
+13392,49,0,107,3,50,20,58,58,0,1
+13393,55,0,78,-3,16,0,23,63,40,4
+13394,37,0,92,-1,26,13,55,66,12,1
+13395,37,0,106,0,24,-16,69,83,14,1
+13396,82,0,86,0,-42,-29,5,130,126,5
+13397,55,0,82,0,-40,-16,26,123,96,4
+13398,39,-4,82,0,38,0,43,43,0,1
+13399,52,5,86,0,52,0,34,34,0,1
+13400,104,2,105,2,70,0,1,35,34,5
+13401,51,0,81,0,50,-1,30,32,2,1
+13402,37,0,77,0,0,16,41,77,36,1
+13403,37,0,105,3,34,15,68,71,4,1
+13404,51,0,81,0,52,1,29,29,0,1
+13405,43,-4,81,6,42,-11,38,40,2,1
+13406,46,4,77,0,46,3,31,31,0,1
+13407,37,0,76,0,24,2,39,53,14,1
+13408,56,0,76,0,-4,10,20,81,62,4
+13409,37,0,78,0,10,-5,42,68,26,1
+13410,56,0,97,-1,46,0,41,50,10,4
+13411,41,0,79,0,42,4,38,37,0,1
+13412,37,0,108,-2,34,0,71,75,4,1
+13413,37,0,76,6,30,-22,40,45,6,1
+13414,51,5,84,0,52,16,33,32,0,1
+13415,46,3,77,0,46,17,32,31,0,1
+13416,46,2,83,0,46,0,36,36,0,1
+13417,55,2,77,0,54,0,23,23,0,1
+13418,49,0,78,0,46,-24,29,32,2,1
+13419,44,0,80,-7,44,17,36,36,0,1
+13420,42,3,76,0,42,0,35,35,0,1
+13421,44,0,83,0,44,18,39,39,0,1
+13422,85,-4,89,0,2,0,4,86,82,5
+13423,52,0,84,-3,52,-4,32,32,0,1
+13424,56,0,77,0,-14,5,21,92,72,4
+13425,45,0,76,2,44,0,32,32,0,1
+13426,52,4,85,0,52,0,33,33,0,1
+13427,49,1,86,0,50,19,37,37,0,1
+13428,40,-5,76,1,38,0,36,37,2,1
+13429,38,1,76,0,38,4,38,37,0,1
+13430,37,0,81,0,36,-1,44,45,2,1
+13431,49,4,84,0,50,20,35,35,0,1
+13432,51,4,77,0,50,0,26,28,2,1
+13433,81,0,84,-2,-18,17,4,103,98,5
+13434,80,0,84,4,-36,25,5,121,116,5
+13435,53,4,83,2,54,1,30,29,0,1
+13436,37,0,75,0,20,31,38,54,16,1
+13437,46,0,82,0,44,-15,36,38,2,1
+13438,44,0,79,0,42,-30,35,37,2,1
+13439,37,0,76,3,26,16,39,50,12,1
+13440,49,0,100,0,46,-14,52,54,2,1
+13441,44,0,83,0,44,9,40,39,0,1
+13442,37,0,80,0,28,12,43,52,8,1
+13443,54,-4,83,0,54,0,28,28,0,1
+13444,43,3,86,0,42,0,43,44,2,1
+13445,38,0,77,0,38,2,40,39,0,1
+13446,41,0,81,0,42,17,41,40,0,1
+13447,52,-2,86,0,52,-5,33,34,0,1
+13448,56,4,98,0,38,-1,42,59,18,4
+13449,37,0,79,-2,10,-5,42,68,26,1
+13450,45,0,76,0,46,21,30,29,0,1
+13451,37,0,80,0,24,-16,43,57,14,1
+13452,53,0,84,0,54,23,32,30,0,1
+13453,44,4,88,0,44,12,44,44,0,1
+13454,56,0,95,0,46,-7,40,49,10,4
+13455,56,0,77,0,-20,3,21,97,76,4
+13456,37,0,78,0,20,12,42,57,16,1
+13457,80,0,84,3,-20,0,4,105,100,5
+13458,53,0,86,0,52,-12,33,34,2,1
+13459,56,0,77,0,0,13,21,77,56,4
+13460,51,-3,87,0,52,0,36,35,0,1
+13461,45,-2,79,0,46,17,33,32,0,1
+13462,44,0,77,0,44,4,33,33,0,1
+13463,44,-2,106,4,44,7,63,62,0,1
+13464,37,0,76,0,26,29,39,50,12,1
+13465,41,0,80,0,42,4,39,39,0,1
+13466,55,-2,82,0,56,28,26,25,0,1
+13467,37,1,90,0,28,1,53,62,8,1
+13468,39,0,80,-3,38,0,41,41,0,1
+13469,55,0,79,0,20,0,23,58,34,4
+13470,37,0,76,0,34,24,40,43,2,1
+13471,37,5,83,0,36,0,46,46,0,1
+13472,54,-3,79,8,54,0,26,25,0,1
+13473,55,-2,98,0,38,-1,42,59,16,4
+13474,76,-5,81,0,-40,0,4,122,118,5
+13475,49,0,81,0,50,22,32,32,0,1
+13476,55,0,98,0,54,26,42,44,2,1
+13477,45,0,88,2,44,2,43,44,2,1
+13478,41,-3,77,0,42,0,36,36,0,1
+13479,43,2,87,0,42,0,44,46,2,1
+13480,47,3,81,8,46,0,34,35,0,1
+13481,37,0,76,0,28,2,39,47,8,1
+13482,42,4,82,0,42,0,40,41,0,1
+13483,56,-1,76,13,0,0,20,76,56,4
+13484,56,0,86,0,56,20,30,29,0,1
+13485,37,0,80,-2,12,-5,43,67,24,1
+13486,37,-2,97,0,36,0,60,61,0,1
+13487,45,0,85,-2,44,-3,40,41,2,1
+13488,37,0,78,0,20,30,41,57,16,1
+13489,55,1,91,0,54,0,35,37,2,1
+13490,45,0,79,6,44,-2,33,35,2,1
+13491,57,3,75,17,0,1,18,75,56,4
+13492,48,0,78,0,46,-4,30,32,2,1
+13493,56,0,97,-5,50,-15,41,48,6,4
+13494,51,0,83,0,52,29,32,31,0,1
+13495,49,0,95,0,46,-21,47,49,2,1
+13496,44,-10,88,0,44,0,44,44,0,1
+13497,45,-1,79,0,44,-26,33,35,2,1
+13498,64,4,113,0,62,-11,48,51,2,1
+13499,42,-1,77,2,42,0,35,35,0,1
+13500,47,0,84,2,46,0,36,37,0,1
+13501,50,1,85,0,50,0,35,36,2,1
+13502,46,5,79,0,46,0,33,32,0,1
+13503,56,-1,96,0,52,7,40,44,4,4
+13504,42,-1,76,0,42,0,34,35,2,1
+13505,37,0,79,2,12,0,43,66,24,1
+13506,56,-3,97,0,52,0,41,45,4,4
+13507,56,0,77,0,0,20,21,77,56,4
+13508,44,0,82,0,42,-8,38,41,2,1
+13509,37,0,76,-1,28,20,39,47,8,1
+13510,53,0,86,1,52,-1,33,35,2,1
+13511,48,0,81,4,46,0,33,34,2,1
+13512,47,-1,81,-4,46,-5,34,34,0,1
+13513,78,-1,83,0,-40,1,4,124,120,5
+13514,37,0,82,0,18,13,45,64,18,1
+13515,49,3,102,0,46,-16,53,55,2,1
+13516,55,-1,90,0,54,-3,34,35,2,1
+13517,37,0,81,-4,-4,0,44,86,42,1
+13518,56,0,78,-1,0,0,22,78,56,4
+13519,51,-1,78,0,50,-9,27,29,2,1
+13520,79,-40,107,0,62,-6,28,45,16,3
+13521,49,0,80,0,46,-4,31,34,2,1
+13522,38,0,93,0,30,2,55,62,8,1
+13523,37,0,105,-4,20,-6,68,84,16,1
+13524,37,0,76,0,36,-6,39,40,2,1
+13525,37,0,80,0,34,-6,43,46,4,1
+13526,51,0,79,0,50,-5,28,30,2,1
+13527,85,0,88,-1,6,19,3,83,80,5
+13528,38,0,92,0,18,4,54,74,20,1
+13529,105,4,106,2,72,6,1,33,32,5
+13530,37,0,104,0,28,21,67,75,8,1
+13531,48,2,106,-6,46,0,58,60,2,1
+13532,37,0,95,0,28,2,58,67,8,1
+13533,45,-1,83,0,44,-5,37,39,2,1
+13534,56,0,95,0,54,-12,40,41,2,1
+13535,45,0,82,5,46,17,37,35,0,1
+13536,37,0,78,0,-6,-12,41,86,44,1
+13537,37,0,93,0,30,8,56,62,6,1
+13538,47,-1,109,1,46,0,62,62,0,1
+13539,48,4,81,4,46,0,32,34,2,1
+13540,56,0,95,0,50,21,40,46,6,4
+13541,46,0,108,-2,44,-13,62,64,2,1
+13542,47,5,88,0,46,0,41,42,0,1
+13543,48,4,88,0,46,0,40,41,2,1
+13544,56,2,81,0,-4,0,25,86,62,4
+13545,56,0,96,-5,50,0,40,47,6,4
+13546,37,0,83,0,0,-27,46,83,36,1
+13547,55,0,76,0,-14,-2,21,92,70,4
+13548,51,1,84,0,52,14,33,32,0,1
+13549,83,0,86,0,-4,-7,4,92,88,5
+13550,40,-3,100,7,38,-1,60,62,2,1
+13551,45,0,87,0,44,-24,42,43,2,1
+13552,37,-5,106,0,34,6,69,72,4,1
+13553,106,0,108,0,70,-1,1,38,36,5
+13554,42,0,78,0,42,-1,36,37,2,1
+13555,37,0,79,3,12,4,42,66,24,1
+13556,55,0,81,-4,-12,0,26,94,68,4
+13557,37,0,107,0,28,26,69,78,8,1
+13558,45,0,77,-4,44,0,32,33,2,1
+13559,57,0,90,-2,56,0,33,33,0,1
+13560,48,0,77,0,46,-9,28,30,2,1
+13561,56,0,76,0,-4,8,20,81,62,4
+13562,56,0,97,-1,46,0,41,51,10,4
+13563,81,0,84,-2,-22,0,3,108,104,5
+13564,46,0,100,-2,46,0,54,53,0,1
+13565,45,-3,82,-7,46,5,37,35,0,1
+13566,53,-3,104,0,54,0,50,49,0,1
+13567,37,0,81,0,-2,3,44,84,40,1
+13568,56,0,78,-4,16,0,22,63,40,4
+13569,79,0,83,0,-42,-81,4,127,124,5
+13570,44,0,84,-4,44,1,41,41,0,1
+13571,37,0,103,-2,28,0,66,75,8,1
+13572,44,3,81,0,44,18,37,37,0,1
+13573,56,0,96,2,42,0,40,55,14,4
+13574,43,0,75,0,44,9,32,31,0,1
+13575,38,1,81,0,38,3,43,43,0,1
+13576,44,-3,81,0,44,6,38,37,0,1
+13577,42,5,83,0,42,0,41,41,0,1
+13578,38,0,76,0,38,15,38,37,0,1
+13579,44,4,85,1,44,0,41,41,0,1
+13580,51,0,84,0,52,14,33,32,0,1
+13581,85,5,89,0,6,-5,4,84,80,5
+13582,56,0,91,0,-2,19,35,93,58,4
+13583,56,0,97,0,50,8,40,48,8,4
+13584,55,0,97,5,42,0,41,55,14,4
+13585,55,0,97,0,52,1,41,45,4,4
+13586,37,0,77,-2,28,-3,40,48,8,1
+13587,42,-5,88,-6,42,0,46,46,0,1
+13588,37,0,80,0,16,-18,43,65,22,1
+13589,45,0,100,0,44,0,55,56,2,1
+13590,43,-3,79,0,42,0,36,37,2,1
+13591,37,-4,81,-3,38,-25,43,42,0,1
+13592,45,-1,81,0,46,17,36,35,0,1
+13593,48,1,88,4,46,0,40,42,2,1
+13594,62,0,109,-1,60,0,47,49,2,1
+13595,41,9,78,0,42,-19,37,37,0,1
+13596,37,3,81,0,36,-4,43,44,2,1
+13597,51,0,80,0,52,24,29,28,0,1
+13598,46,1,76,-1,46,0,29,29,0,1
+13599,37,0,80,0,24,-7,43,57,14,1
+13600,37,0,74,-3,20,-6,37,54,16,1
+13601,47,1,90,0,46,0,42,43,0,1
+13602,37,0,77,3,36,4,40,41,0,1
+13603,37,0,97,-6,18,-9,60,79,18,1
+13604,37,0,76,4,26,0,39,50,12,1
+13605,42,-1,97,0,42,0,54,55,2,1
+13606,55,-3,80,-6,20,-13,25,59,34,4
+13607,56,0,78,0,24,-4,22,55,32,4
+13608,80,1,84,6,-40,9,5,126,122,5
+13609,46,0,82,2,46,11,36,35,0,1
+13610,55,5,81,-1,54,0,26,26,0,1
+13611,51,-2,83,0,50,-7,32,34,2,1
+13612,37,0,99,-1,28,-3,61,70,8,1
+13613,41,1,83,0,42,25,42,42,0,1
+13614,52,0,82,8,52,0,30,30,0,1
+13615,56,0,79,0,8,-9,23,71,48,4
+13616,80,0,84,-3,-42,0,4,128,124,5
+13617,55,-3,98,0,44,-18,42,54,12,4
+13618,55,0,78,0,8,0,23,70,48,4
+13619,56,0,95,0,46,12,40,49,10,4
+13620,37,0,77,0,-22,19,41,101,60,1
+13621,51,0,80,0,52,20,29,28,0,1
+13622,37,0,78,0,26,6,41,52,12,1
+13623,37,0,83,0,16,-22,47,68,22,1
+13624,83,-5,86,0,-4,-15,4,92,88,5
+13625,44,0,81,-4,44,6,38,37,0,1
+13626,55,0,77,0,18,26,22,59,38,4
+13627,37,0,103,0,18,-12,66,85,18,1
+13628,56,-1,87,5,56,0,31,30,0,1
+13629,55,0,81,0,54,-5,26,27,2,1
+13630,46,0,88,-3,46,0,43,42,0,1
+13631,49,1,83,0,50,15,34,33,0,1
+13632,41,0,86,5,42,0,45,45,0,1
+13633,37,0,78,0,18,14,42,60,18,1
+13634,37,0,78,0,10,-3,42,68,26,1
+13635,41,0,85,0,42,32,44,44,0,1
+13636,37,-1,77,0,38,14,39,38,0,1
+13637,47,-1,83,0,46,0,36,36,0,1
+13638,56,4,77,0,-24,0,21,103,82,4
+13639,37,0,79,0,10,5,43,69,26,1
+13640,37,0,79,0,26,3,43,54,10,1
+13641,37,0,77,6,28,-19,41,49,8,1
+13642,55,0,81,0,-22,-8,26,105,78,4
+13643,37,0,76,0,36,31,39,40,2,1
+13644,55,0,79,0,2,-23,23,76,52,4
+13645,80,-32,88,-6,8,0,9,81,72,3
+13646,48,0,88,-4,50,29,40,39,0,1
+13647,39,0,79,6,38,0,41,41,0,1
+13648,43,-4,87,0,42,0,44,46,2,1
+13649,104,-1,106,-3,70,-4,1,36,34,5
+13650,53,-1,81,3,54,0,28,27,0,1
+13651,53,-5,81,0,54,0,27,26,0,1
+13652,38,0,92,0,18,1,54,74,20,1
+13653,53,1,86,-1,54,1,32,32,0,1
+13654,42,2,81,0,42,-1,40,40,0,1
+13655,43,0,76,0,44,13,32,32,0,1
+13656,56,0,92,0,54,11,36,38,2,1
+13657,37,0,79,0,28,13,42,50,8,1
+13658,37,0,96,0,34,12,59,62,4,1
+13659,53,-5,86,0,52,-24,33,35,2,1
+13660,45,-2,106,-4,44,0,61,62,2,1
+13661,45,2,77,0,44,0,32,33,2,1
+13662,53,0,83,0,52,-26,30,32,2,1
+13663,55,0,78,0,54,-1,23,24,2,1
+13664,56,0,97,0,42,3,41,55,14,4
+13665,55,0,77,-2,10,7,22,67,46,4
+13666,37,0,77,0,34,-3,40,43,2,1
+13667,46,3,88,-4,44,-24,42,44,2,1
+13668,37,0,103,-1,24,-2,66,80,14,1
+13669,43,-3,84,0,44,14,41,40,0,1
+13670,56,0,86,0,56,16,30,29,0,1
+13671,37,0,100,0,34,16,64,67,4,1
+13672,43,1,88,-1,42,0,45,47,2,1
+13673,41,0,83,2,38,-3,42,44,2,1
+13674,45,-3,77,0,46,8,32,31,0,1
+13675,56,0,76,0,-2,10,20,79,58,4
+13676,37,0,77,0,34,15,40,43,4,1
+13677,55,0,77,0,30,-3,22,46,24,4
+13678,37,0,102,5,28,0,65,73,8,1
+13679,85,0,88,0,2,-13,3,86,82,5
+13680,37,3,77,0,34,0,39,43,4,1
+13681,41,0,88,0,38,-23,48,50,2,1
+13682,41,3,78,0,42,6,37,37,0,1
+13683,37,4,80,0,34,5,43,46,4,1
+13684,56,-1,77,-3,24,-8,22,54,32,4
+13685,101,-4,102,0,70,-6,1,33,32,5
+13686,41,-2,77,0,38,-24,37,39,2,1
+13687,37,0,77,0,38,22,40,39,0,1
+13688,56,1,82,0,56,17,26,25,0,1
+13689,73,11,77,9,-42,-5,4,121,118,5
+13690,51,1,86,0,52,3,35,34,0,1
+13691,56,0,95,0,52,31,40,44,4,4
+13692,71,3,75,1,-40,16,4,116,112,5
+13693,41,0,84,0,38,-19,43,45,2,1
+13694,55,0,96,0,42,3,41,55,14,4
+13695,49,0,95,0,46,0,47,49,2,1
+13696,38,1,96,0,38,10,58,57,0,1
+13697,55,-4,81,0,54,0,26,26,0,1
+13698,49,1,87,0,50,1,38,38,0,1
+13699,37,0,75,0,36,-2,37,39,2,1
+13700,55,0,80,-1,-2,8,25,83,58,4
+13701,37,0,82,-2,-2,15,45,85,40,1
+13702,37,0,105,-6,34,0,68,71,4,1
+13703,54,-2,80,0,54,0,26,26,0,1
+13704,40,-2,100,0,38,0,61,62,2,1
+13705,37,0,79,0,10,0,42,69,26,1
+13706,79,5,83,0,-42,0,4,127,122,5
+13707,37,0,78,-2,12,18,42,65,24,1
+13708,56,1,98,0,42,-10,42,57,14,4
+13709,40,0,79,1,38,0,39,41,2,1
+13710,56,0,91,-1,56,23,35,34,0,1
+13711,55,-3,83,0,54,-4,28,29,2,1
+13712,56,0,77,0,18,26,22,59,38,4
+13713,56,0,79,0,54,-22,23,24,2,1
+13714,78,1,82,1,-40,12,4,123,120,5
+13715,56,0,81,0,54,-20,25,27,2,1
+13716,102,0,103,0,70,-3,1,33,32,5
+13717,37,0,95,0,12,-16,58,82,24,1
+13718,44,0,82,1,44,7,38,38,0,1
+13719,56,0,76,0,-14,10,20,92,72,4
+13720,53,0,83,5,54,3,30,29,0,1
+13721,56,0,96,0,54,-28,40,42,2,1
+13722,37,0,95,-5,18,0,58,77,18,1
+13723,38,-2,100,0,38,0,62,62,0,1
+13724,43,1,79,0,42,-6,35,37,2,1
+13725,46,0,92,6,46,0,46,46,0,1
+13726,41,-1,76,-1,42,0,35,35,0,1
+13727,37,-1,77,0,34,-3,41,44,2,1
+13728,41,1,81,0,42,6,39,39,0,1
+13729,53,0,81,0,54,13,28,27,0,1
+13730,43,0,83,0,44,27,40,39,0,1
+13731,37,0,79,0,16,4,43,64,22,1
+13732,44,2,81,0,44,6,37,37,0,1
+13733,41,-2,83,0,38,-9,42,44,2,1
+13734,51,0,91,0,50,-18,40,42,2,1
+13735,55,-4,80,0,54,0,25,26,0,1
+13736,37,0,79,0,8,3,43,72,28,1
+13737,56,0,96,0,36,5,40,60,20,4
+13738,48,-2,84,0,46,-1,36,38,2,1
+13739,46,0,87,0,46,0,41,41,0,1
+13740,37,-4,83,0,36,-11,46,47,2,1
+13741,37,0,77,0,28,28,40,48,8,1
+13742,55,0,96,0,50,-21,41,47,6,4
+13743,46,-2,83,0,44,-27,37,39,2,1
+13744,37,0,83,7,-4,0,46,88,42,1
+13745,55,0,78,-4,18,0,23,60,38,4
+13746,85,7,89,0,8,22,4,81,78,5
+13747,42,4,84,1,42,0,42,43,0,1
+13748,37,0,76,0,20,14,40,55,16,1
+13749,37,4,75,0,26,-1,38,49,12,1
+13750,38,-5,76,0,-2,0,38,79,40,1
+13751,55,0,77,5,-22,1,21,100,78,4
+13752,55,0,95,0,34,-26,40,62,22,4
+13753,43,0,77,7,42,0,35,36,2,1
+13754,37,0,80,-1,36,-4,43,44,2,1
+13755,37,0,106,2,38,18,69,67,0,1
+13756,37,0,79,0,34,-1,43,46,2,1
+13757,40,-3,97,0,38,0,57,59,2,1
+13758,49,0,84,0,46,-3,36,38,2,1
+13759,47,-5,100,0,46,0,53,54,0,1
+13760,43,-2,81,0,42,-11,38,40,2,1
+13761,55,0,95,0,54,28,40,41,2,1
+13762,105,0,106,-2,70,-1,1,36,36,5
+13763,41,-4,81,0,42,0,40,40,0,1
+13764,41,3,83,0,38,-26,41,44,2,1
+13765,56,3,97,0,44,0,41,53,12,4
+13766,41,0,97,0,38,-4,56,58,2,1
+13767,37,0,76,0,24,-3,40,53,14,1
+13768,37,0,76,0,34,-11,39,42,2,1
+13769,52,1,86,0,52,0,35,35,0,1
+13770,41,-1,86,0,38,-29,46,48,2,1
+13771,47,4,86,3,46,0,40,40,0,1
+13772,37,0,82,-6,34,0,45,48,2,1
+13773,43,0,80,0,42,-4,37,39,2,1
+13774,56,0,96,0,54,-4,40,42,2,1
+13775,56,0,81,0,-18,5,25,99,74,4
+13776,43,0,96,3,42,-1,53,55,2,1
+13777,39,0,77,7,38,0,38,39,0,1
+13778,55,-3,98,0,46,24,42,51,8,4
+13779,49,-5,107,-1,50,0,58,58,0,1
+13780,37,0,104,0,24,27,67,81,14,1
+13781,45,0,77,0,46,8,31,30,0,1
+13782,55,0,91,-7,-4,7,35,96,60,4
+13783,41,0,86,0,38,-11,46,48,2,1
+13784,48,0,77,0,46,0,29,31,2,1
+13785,45,1,107,0,44,0,62,63,0,1
+13786,45,-3,81,3,46,7,36,35,0,1
+13787,53,1,84,0,52,-7,32,33,2,1
+13788,45,1,87,8,44,0,43,43,0,1
+13789,46,5,86,0,46,2,40,39,0,1
+13790,50,4,78,0,50,0,29,29,0,1
+13791,49,0,86,-2,50,-2,37,37,0,1
+13792,37,0,105,-2,18,11,68,87,18,1
+13793,49,-5,81,0,50,-1,32,32,0,1
+13794,37,0,81,4,36,-2,43,44,2,1
+13795,46,0,81,0,44,-5,35,37,2,1
+13796,37,0,106,0,26,-23,68,80,12,1
+13797,37,0,78,0,20,-8,41,57,16,1
+13798,45,0,77,-1,44,-2,31,33,2,1
+13799,41,0,79,2,42,5,38,38,0,1
+13800,37,1,83,4,34,0,45,49,4,1
+13801,37,0,80,0,18,4,43,62,18,1
+13802,52,-1,87,4,52,0,35,35,0,1
+13803,41,3,78,0,38,-27,37,39,2,1
+13804,56,0,81,0,-14,12,25,97,72,4
+13805,42,-1,108,0,42,0,65,66,2,1
+13806,55,0,97,0,50,13,42,48,6,4
+13807,44,0,106,-2,44,9,62,62,0,1
+13808,37,3,83,-1,34,0,45,49,4,1
+13809,52,0,82,0,52,0,29,30,0,1
+13810,56,0,97,0,56,7,40,40,0,1
+13811,55,0,95,4,42,0,40,54,14,4
+13812,41,0,88,0,42,21,48,47,0,1
+13813,46,-3,82,0,46,0,36,35,0,1
+13814,37,0,84,0,30,3,47,53,6,1
+13815,45,-1,86,-7,44,10,40,42,2,1
+13816,42,0,90,2,42,0,47,48,2,1
+13817,56,0,92,3,-2,0,36,94,58,4
+13818,55,0,96,0,42,14,41,55,14,4
+13819,46,0,100,0,46,0,54,53,0,1
+13820,37,0,79,0,26,-8,43,54,10,1
+13821,37,0,79,0,6,28,42,74,32,1
+13822,39,-1,83,2,38,0,44,44,0,1
+13823,37,5,76,-1,20,0,39,55,16,1
+13824,55,0,82,0,-36,1,26,118,92,4
+13825,55,-1,86,0,54,-4,31,32,2,1
+13826,44,-5,77,0,44,0,33,34,0,1
+13827,48,4,83,0,46,0,34,36,2,1
+13828,44,0,89,0,44,1,45,45,0,1
+13829,44,0,86,8,44,0,42,42,0,1
+13830,51,0,81,0,52,2,30,30,0,1
+13831,37,0,79,0,18,24,43,61,18,1
+13832,49,0,100,0,50,10,52,51,0,1
+13833,42,0,80,-4,42,0,38,39,2,1
+13834,50,0,86,-1,50,0,35,37,2,1
+13835,51,0,81,0,52,29,30,29,0,1
+13836,55,0,79,0,24,3,23,55,32,4
+13837,81,3,85,0,-12,0,4,98,94,5
+13838,108,2,109,0,72,4,1,36,36,5
+13839,56,0,97,0,42,-14,41,55,14,4
+13840,50,0,79,4,50,0,29,30,0,1
+13841,43,3,81,0,42,0,37,39,2,1
+13842,49,0,100,0,46,-8,52,54,2,1
+13843,37,0,90,0,34,31,53,57,4,1
+13844,56,0,97,0,44,-13,41,53,12,4
+13845,45,0,76,2,44,0,31,32,2,1
+13846,56,0,77,0,-20,14,21,97,76,4
+13847,55,0,77,0,10,7,21,66,46,4
+13848,41,1,79,0,42,7,38,38,0,1
+13849,55,0,77,0,36,-10,22,41,20,4
+13850,102,0,103,0,70,-2,1,33,32,5
+13851,37,0,78,0,18,-17,42,60,18,1
+13852,50,0,82,8,50,0,32,33,2,1
+13853,47,0,82,-6,46,0,34,35,0,1
+13854,37,0,77,-2,34,0,40,43,4,1
+13855,38,1,79,0,38,7,41,40,0,1
+13856,49,0,95,0,46,-2,47,49,2,1
+13857,37,0,76,0,28,23,39,47,8,1
+13858,51,0,82,4,52,2,31,30,0,1
+13859,53,5,78,0,52,0,25,26,2,1
+13860,37,0,78,0,-2,8,41,81,40,1
+13861,55,-2,85,0,54,0,31,31,0,1
+13862,55,0,77,0,12,8,21,64,42,4
+13863,41,2,78,0,38,-21,37,39,2,1
+13864,37,0,81,-2,20,0,44,61,16,1
+13865,37,0,83,0,16,-4,47,68,22,1
+13866,52,2,81,-6,52,0,29,30,0,1
+13867,37,0,77,3,28,17,41,49,8,1
+13868,42,0,102,0,42,0,60,61,2,1
+13869,85,1,88,0,2,3,3,86,82,5
+13870,53,1,85,0,54,19,32,31,0,1
+13871,55,0,96,0,44,4,41,52,12,4
+13872,37,0,78,0,-4,-6,42,83,42,1
+13873,56,0,96,0,38,-25,40,57,18,4
+13874,44,2,81,0,44,11,38,37,0,1
+13875,38,0,77,-6,38,0,39,38,0,1
+13876,106,0,107,-2,70,0,1,37,36,5
+13877,45,2,76,0,44,-2,31,32,2,1
+13878,47,1,88,2,46,0,41,41,0,1
+13879,56,0,97,0,50,0,41,48,6,4
+13880,47,3,88,2,46,0,41,41,0,1
+13881,56,0,97,1,44,-8,41,53,12,4
+13882,49,2,81,0,50,19,33,32,0,1
+13883,46,0,77,-1,46,-1,32,31,0,1
+13884,56,-1,97,0,52,2,41,45,4,4
+13885,43,0,77,0,42,-12,34,36,2,1
+13886,43,0,88,0,42,-10,45,47,2,1
+13887,45,-5,86,0,44,0,41,42,0,1
+13888,48,2,102,0,46,0,54,55,2,1
+13889,37,0,74,0,34,3,37,41,4,1
+13890,44,4,77,0,44,2,33,34,0,1
+13891,40,4,77,0,38,0,37,38,2,1
+13892,55,-1,99,7,38,0,43,60,16,4
+13893,45,4,79,1,44,0,35,35,0,1
+13894,55,0,97,-5,50,0,41,48,6,4
+13895,41,4,82,0,42,24,41,41,0,1
+13896,47,0,79,0,46,0,33,33,0,1
+13897,56,0,77,0,-14,-11,21,92,72,4
+13898,56,0,82,2,-12,13,26,95,68,4
+13899,55,2,87,2,54,0,32,33,2,1
+13900,41,0,79,1,42,22,38,37,0,1
+13901,37,0,76,0,26,25,39,50,12,1
+13902,56,0,97,0,52,14,41,46,4,4
+13903,52,4,79,6,52,0,27,27,0,1
+13904,42,-1,87,0,42,0,45,46,0,1
+13905,51,2,79,0,52,11,27,27,0,1
+13906,56,0,77,0,24,3,22,54,32,4
+13907,55,0,92,0,28,-2,36,63,28,4
+13908,44,0,82,7,44,0,38,38,0,1
+13909,39,-4,77,0,38,0,37,38,0,1
+13910,41,0,77,0,38,-11,36,39,2,1
+13911,41,0,76,0,38,-2,35,37,2,1
+13912,37,0,76,-1,28,-24,39,47,8,1
+13913,53,0,86,0,54,4,32,32,0,1
+13914,53,0,84,0,54,18,31,30,0,1
+13915,51,0,77,0,52,18,26,25,0,1
+13916,58,3,86,0,56,0,27,29,2,1
+13917,55,-2,98,-3,42,-4,42,57,14,4
+13918,41,-1,83,0,38,-25,42,44,2,1
+13919,55,0,77,-2,8,-26,22,70,48,4
+13920,59,-3,84,0,60,0,25,24,0,1
+13921,49,0,86,3,46,-8,38,40,2,1
+13922,46,5,83,0,46,8,37,36,0,1
+13923,56,0,84,0,56,1,29,28,0,1
+13924,83,0,86,0,-6,-12,3,94,90,5
+13925,83,0,86,0,-4,10,3,92,88,5
+13926,37,-2,80,0,20,26,43,59,16,1
+13927,56,5,95,0,42,-4,40,54,14,4
+13928,46,0,90,0,46,8,44,44,0,1
+13929,42,0,80,2,42,0,38,39,0,1
+13930,53,0,86,-3,54,7,33,32,0,1
+13931,55,-1,97,1,50,0,41,48,6,4
+13932,43,0,82,0,42,-12,39,41,2,1
+13933,46,0,82,0,46,9,36,35,0,1
+13934,41,0,76,0,38,-19,35,37,2,1
+13935,37,0,76,-1,24,-2,39,53,14,1
+13936,52,1,79,5,52,0,27,27,0,1
+13937,43,0,86,0,42,-1,42,44,2,1
+13938,41,0,77,0,38,-29,36,38,2,1
+13939,52,-2,88,1,52,-2,35,36,0,1
+13940,46,0,107,0,46,3,61,60,0,1
+13941,55,0,89,-3,54,0,34,35,0,1
+13942,40,2,75,0,38,0,35,36,2,1
+13943,53,-1,81,0,54,0,28,27,0,1
+13944,49,5,88,0,50,29,40,39,0,1
+13945,37,0,81,0,8,-9,44,73,28,1
+13946,55,0,93,3,20,0,38,73,34,4
+13947,37,0,76,0,38,25,39,37,0,1
+13948,55,0,96,0,42,-26,41,55,14,4
+13949,37,0,76,0,20,-4,40,55,16,1
+13950,55,0,94,2,18,-2,39,76,38,4
+13951,51,2,87,0,52,13,36,35,0,1
+13952,41,-4,76,-2,38,-10,35,37,2,1
+13953,53,-1,80,-2,54,-3,27,26,0,1
+13954,52,-3,102,0,52,0,49,50,0,1
+13955,37,-5,100,0,36,0,64,64,0,1
+13956,46,0,80,0,46,10,34,34,0,1
+13957,37,0,93,0,10,31,55,82,28,1
+13958,50,0,81,-2,50,-3,32,32,0,1
+13959,41,-3,77,0,38,-30,36,38,2,1
+13960,49,5,86,0,46,-4,37,39,2,1
+13961,37,0,95,0,10,5,58,84,26,1
+13962,39,0,86,7,38,0,46,47,0,1
+13963,55,0,77,0,20,12,22,57,34,4
+13964,46,-1,76,0,46,0,30,29,0,1
+13965,55,0,77,0,36,-1,22,41,20,4
+13966,44,0,80,0,44,11,36,36,0,1
+13967,41,0,77,0,38,-17,37,39,2,1
+13968,50,0,107,0,50,0,57,58,0,1
+13969,55,0,77,0,12,3,21,64,42,4
+13970,41,0,77,2,42,3,36,36,0,1
+13971,37,0,79,-3,36,-12,41,43,2,1
+13972,42,5,106,0,42,1,65,65,0,1
+13973,39,-5,90,2,6,0,51,85,34,1
+13974,37,0,77,0,2,0,40,75,34,1
+13975,43,-3,83,0,42,0,40,42,2,1
+13976,37,0,77,0,-14,24,40,92,52,1
+13977,53,0,77,0,54,21,25,23,0,1
+13978,58,0,86,0,56,-8,27,29,2,1
+13979,56,4,95,0,44,4,39,51,12,4
+13980,55,0,78,0,6,-19,23,73,50,4
+13981,56,0,97,0,38,18,41,58,18,4
+13982,43,0,83,0,42,-21,39,41,2,1
+13983,58,0,90,-5,56,0,32,33,2,1
+13984,55,5,84,5,54,0,29,30,0,1
+13985,41,-2,76,0,38,-14,35,37,2,1
+13986,50,5,84,0,50,0,34,35,2,1
+13987,43,0,81,4,42,-13,37,39,2,1
+13988,37,0,76,0,34,16,39,42,4,1
+13989,37,-3,90,-1,8,3,53,82,30,1
+13990,56,-1,97,0,46,7,41,51,10,4
+13991,41,0,86,-3,42,1,45,44,0,1
+13992,41,0,75,0,38,-1,34,36,2,1
+13993,42,2,76,0,42,0,33,34,2,1
+13994,37,0,80,0,28,14,43,52,8,1
+13995,56,2,99,0,50,2,43,49,6,4
+13996,56,0,81,0,-14,0,25,97,72,4
+13997,55,0,93,0,50,14,37,44,6,4
+13998,47,0,84,0,46,0,37,38,0,1
+13999,55,-1,98,5,50,20,42,49,6,4
+14000,37,1,81,-2,34,0,44,48,4,1
+14001,45,2,83,8,44,0,38,39,2,1
+14002,42,1,81,0,42,0,38,39,2,1
+14003,43,0,76,0,44,28,32,32,0,1
+14004,48,-4,83,0,46,0,35,37,2,1
+14005,43,1,79,0,42,0,36,37,2,1
+14006,42,-3,88,0,42,0,46,46,0,1
+14007,37,0,77,0,2,14,40,74,34,1
+14008,105,-5,106,2,70,0,2,36,34,5
+14009,46,0,80,-5,46,3,34,34,0,1
+14010,55,0,76,0,-22,5,21,99,78,4
+14011,37,-4,79,0,20,0,42,58,16,1
+14012,37,0,106,-4,36,0,69,70,0,1
+14013,37,0,104,0,18,-23,67,86,18,1
+14014,46,1,102,0,46,0,56,56,0,1
+14015,37,0,93,4,8,0,55,85,30,1
+14016,55,0,95,0,52,-26,40,44,4,4
+14017,46,1,87,1,46,5,41,41,0,1
+14018,37,0,95,2,8,-4,58,87,30,1
+14019,45,0,93,0,44,0,48,50,2,1
+14020,55,0,82,0,-38,0,26,121,94,4
+14021,54,4,88,-3,54,0,35,34,0,1
+14022,38,2,77,0,38,6,40,39,0,1
+14023,104,2,105,4,70,0,1,35,34,5
+14024,56,0,81,0,-6,-6,25,88,64,4
+14025,48,0,84,0,46,-2,36,37,2,1
+14026,42,0,78,-1,42,0,36,37,2,1
+14027,43,0,81,-2,44,31,37,37,0,1
+14028,46,4,86,0,46,12,40,39,0,1
+14029,48,0,86,0,46,0,38,39,2,1
+14030,55,0,77,0,10,-25,21,66,46,4
+14031,81,-6,86,-1,-40,0,5,127,122,5
+14032,55,0,80,-1,-10,0,25,90,66,4
+14033,45,-4,108,0,44,0,63,64,2,1
+14034,106,0,108,4,70,0,2,38,36,5
+14035,123,170,105,0,36,-1,-18,69,86,5
+14036,46,0,88,0,46,14,43,42,0,1
+14037,37,0,77,-5,34,0,40,43,4,1
+14038,40,5,81,0,38,0,41,43,2,1
+14039,55,0,92,0,-6,-21,36,99,64,4
+14040,82,1,86,0,-22,4,4,109,106,5
+14041,40,1,81,-4,38,0,41,42,2,1
+14042,39,0,79,-3,38,0,40,41,0,1
+14043,50,4,80,0,50,0,30,31,2,1
+14044,51,-1,84,0,50,-7,33,35,2,1
+14045,45,-1,107,0,46,13,62,60,0,1
+14046,44,0,79,-2,44,7,35,35,0,1
+14047,56,3,76,0,-18,-6,20,94,74,4
+14048,37,0,78,4,30,-9,41,47,6,1
+14049,44,-3,81,-1,44,0,37,37,0,1
+14050,37,0,77,0,2,-25,40,74,34,1
+14051,57,-3,96,0,56,0,39,39,0,1
+14052,49,0,106,-7,50,11,57,57,0,1
+14053,45,-2,83,-3,44,-4,38,39,0,1
+14054,37,0,77,0,20,5,40,56,16,1
+14055,37,0,75,0,30,13,38,44,6,1
+14056,47,2,86,-1,46,0,40,40,0,1
+14057,37,0,76,737,20,0,40,55,16,1
+14058,47,0,87,-4,46,0,40,41,0,1
+14059,56,2,98,0,46,8,42,51,10,4
+14060,64,-2,110,6,64,0,46,46,0,1
+14061,56,0,90,0,56,15,34,33,0,1
+14062,55,0,82,-3,-32,-17,26,115,90,4
+14063,37,0,76,-1,20,-3,40,55,16,1
+14064,37,0,77,-1,-14,0,40,92,52,1
+14065,54,0,108,0,54,0,54,54,0,1
+14066,55,0,95,0,36,11,40,59,20,4
+14067,55,0,81,0,-6,3,25,88,64,4
+14068,37,0,81,0,24,-14,44,57,14,1
+14069,48,-4,86,0,50,19,37,37,0,1
+14070,37,0,79,-5,34,-8,42,46,4,1
+14071,37,0,105,0,24,1,68,82,14,1
+14072,44,0,75,0,44,10,31,31,0,1
+14073,38,3,81,0,38,13,43,42,0,1
+14074,37,0,83,0,-4,-13,46,88,42,1
+14075,45,4,81,-2,44,-2,36,37,2,1
+14076,56,0,81,0,-6,10,25,89,64,4
+14077,38,4,81,0,38,3,43,42,0,1
+14078,80,-3,84,0,-40,4,5,126,122,5
+14079,53,0,83,0,54,3,30,28,0,1
+14080,56,-1,84,0,54,-30,28,30,2,1
+14081,41,0,86,4,38,-8,46,48,2,1
+14082,37,0,78,0,36,-14,41,42,2,1
+14083,41,1,77,0,42,8,36,36,0,1
+14084,37,0,78,-1,8,0,41,70,30,1
+14085,55,0,77,-3,10,3,22,67,46,4
+14086,37,0,76,0,18,-20,40,58,18,1
+14087,44,0,88,4,44,8,44,44,0,1
+14088,46,0,83,-7,46,21,37,37,0,1
+14089,48,0,88,5,46,-1,40,42,2,1
+14090,56,0,81,0,-14,28,25,97,72,4
+14091,59,0,108,0,56,-11,49,51,2,1
+14092,48,0,95,0,46,-3,47,49,2,1
+14093,38,0,77,0,38,10,40,39,0,1
+14094,37,-4,76,0,38,5,39,37,0,1
+14095,39,1,85,-1,38,0,46,46,0,1
+14096,41,0,78,0,42,28,37,37,0,1
+14097,37,0,83,-6,30,0,46,52,6,1
+14098,38,-1,82,-2,38,-3,44,43,0,1
+14099,48,0,88,3,46,-1,40,42,2,1
+14100,85,0,89,0,6,16,4,84,80,5
+14101,46,2,83,0,46,4,37,36,0,1
+14102,44,0,83,8,44,0,39,39,0,1
+14103,41,4,83,0,38,0,42,44,2,1
+14104,49,2,85,0,50,0,36,36,0,1
+14105,40,3,81,-7,38,0,41,42,2,1
+14106,45,-1,81,0,44,-12,36,37,2,1
+14107,56,0,78,0,12,-13,22,65,42,4
+14108,47,3,107,0,46,0,60,60,0,1
+14109,53,0,78,0,52,-10,25,26,2,1
+14110,56,0,97,8,54,-7,41,42,2,1
+14111,105,-4,106,0,70,0,2,36,34,5
+14112,56,0,96,-3,52,-5,40,44,4,4
+14113,44,0,81,4,44,1,37,37,0,1
+14114,37,0,79,0,34,-18,43,46,2,1
+14115,44,4,76,0,42,-19,32,34,2,1
+14116,42,-1,77,-3,42,0,34,35,2,1
+14117,81,-1,84,-3,-18,26,4,103,98,5
+14118,37,0,79,-1,20,-2,42,58,16,1
+14119,55,0,82,0,-20,-30,26,103,76,4
+14120,55,0,77,-2,16,-4,21,61,40,4
+14121,47,0,77,0,46,0,29,30,0,1
+14122,56,0,97,1,50,0,41,48,6,4
+14123,50,-1,89,0,50,0,39,40,0,1
+14124,37,0,77,3,36,0,40,41,0,1
+14125,37,0,79,0,34,-8,43,46,2,1
+14126,45,0,76,-5,44,0,31,32,2,1
+14127,56,0,79,5,-22,0,23,102,80,4
+14128,81,0,84,0,-18,0,4,103,98,5
+14129,56,0,95,0,54,13,39,41,2,1
+14130,102,0,103,0,70,-1,1,33,32,5
+14131,49,0,83,0,46,-16,34,36,2,1
+14132,41,-5,81,0,42,0,40,40,0,1
+14133,56,0,78,0,56,25,22,21,0,1
+14134,37,0,77,0,38,28,39,38,0,1
+14135,53,0,86,0,54,13,33,32,0,1
+14136,55,1,81,1,54,0,25,26,2,1
+14137,55,0,93,-5,0,0,37,93,56,4
+14138,80,0,84,0,-24,28,4,110,106,5
+14139,45,0,74,7,44,0,29,30,2,1
+14140,55,0,78,0,2,-6,23,75,52,4
+14141,56,0,97,0,36,-16,41,60,20,4
+14142,51,0,90,0,50,-26,38,41,2,1
+14143,38,1,79,0,38,8,41,40,0,1
+14144,81,-3,85,0,-22,0,4,108,104,5
+14145,37,0,84,0,26,-13,47,58,10,1
+14146,56,-3,99,0,46,-22,43,52,10,4
+14147,41,0,79,0,42,0,38,38,0,1
+14148,37,-32,106,0,34,-1,69,72,4,3
+14149,37,0,76,0,26,10,39,50,12,1
+14150,46,-1,87,1,46,0,41,41,0,1
+14151,105,-1,106,0,70,0,1,36,36,5
+14152,37,0,83,0,2,-5,46,80,34,1
+14153,56,-4,98,0,46,18,42,51,10,4
+14154,55,0,97,0,42,5,42,56,14,4
+14155,56,0,95,0,44,-13,40,51,12,4
+14156,37,0,106,-2,34,1,68,72,4,1
+14157,53,0,77,0,54,17,25,23,0,1
+14158,47,0,77,1,46,0,29,30,0,1
+14159,62,-2,108,1,60,0,46,49,2,1
+14160,37,0,76,2,34,3,40,43,2,1
+14161,37,0,77,5,38,25,39,38,0,1
+14162,48,-1,82,0,50,26,34,33,0,1
+14163,37,0,97,-4,30,0,60,66,6,1
+14164,37,0,77,4,28,0,40,48,8,1
+14165,55,0,86,-6,54,0,31,32,0,1
+14166,37,0,82,0,38,27,45,43,0,1
+14167,38,3,77,0,36,-18,40,41,2,1
+14168,37,0,77,-6,2,0,40,75,34,1
+14169,55,0,81,-2,54,0,26,26,0,1
+14170,53,0,86,0,54,0,32,32,0,1
+14171,55,0,95,0,38,-24,40,57,16,4
+14172,46,0,81,0,46,20,35,34,0,1
+14173,55,0,77,0,-2,12,21,79,58,4
+14174,46,0,81,0,44,-13,35,37,2,1
+14175,55,5,84,3,54,-1,28,30,2,1
+14176,47,22,79,0,42,0,31,37,6,2
+14177,80,0,84,0,-32,16,4,117,114,5
+14178,43,-2,81,0,42,-9,38,40,2,1
+14179,37,0,78,0,6,10,41,73,32,1
+14180,37,0,94,0,8,-2,57,86,30,1
+14181,37,0,77,3,38,12,40,39,0,1
+14182,55,-1,98,0,50,-7,42,49,6,4
+14183,47,-3,82,0,46,0,34,35,0,1
+14184,45,-1,79,0,44,-9,33,35,2,1
+14185,38,0,106,0,38,6,68,67,0,1
+14186,38,2,76,0,36,-4,38,39,2,1
+14187,37,0,106,0,26,4,68,80,12,1
+14188,56,0,96,2,52,0,40,44,4,4
+14189,37,0,77,-3,36,-5,40,41,0,1
+14190,43,0,81,-2,42,-18,38,40,2,1
+14191,51,0,85,0,50,-25,34,36,2,1
+14192,55,-2,83,0,54,0,28,28,0,1
+14193,83,0,87,0,-42,-30,4,131,126,5
+14194,50,0,86,0,50,0,36,37,0,1
+14195,56,0,81,0,-18,-19,25,99,74,4
+14196,52,0,86,0,54,29,33,32,0,1
+14197,56,2,81,0,-6,-22,25,88,64,4
+14198,37,0,76,0,24,27,39,52,14,1
+14199,43,1,76,0,42,-7,32,34,2,1
+14200,43,-3,87,0,42,-15,44,46,2,1
+14201,55,0,96,3,46,0,41,50,8,4
+14202,43,0,81,-2,42,-2,37,39,2,1
+14203,106,-4,107,-6,72,0,1,35,34,5
+14204,37,0,79,0,34,-30,43,46,2,1
+14205,80,0,84,0,-38,-4,4,123,118,5
+14206,44,-3,80,0,44,4,36,36,0,1
+14207,37,0,76,0,34,-4,39,43,4,1
+14208,44,5,81,0,44,6,37,37,0,1
+14209,43,2,86,0,42,0,42,44,2,1
+14210,43,-1,81,-1,42,-10,37,39,2,1
+14211,37,0,106,5,36,0,69,70,2,1
+14212,37,-1,79,0,26,6,42,53,12,1
+14213,49,0,88,-2,46,-7,39,41,2,1
+14214,52,-3,86,0,52,-1,33,34,0,1
+14215,41,-4,79,0,42,8,38,37,0,1
+14216,45,5,77,0,44,-2,32,34,2,1
+14217,49,-3,79,0,46,-27,30,32,2,1
+14218,44,0,84,0,44,19,40,40,0,1
+14219,56,0,95,0,38,-3,40,57,18,4
+14220,37,0,104,0,26,18,66,78,12,1
+14221,37,0,83,0,0,-6,46,83,36,1
+14222,48,3,88,0,46,0,39,41,2,1
+14223,37,0,76,-2,16,16,39,61,22,1
+14224,37,0,77,0,6,9,40,72,32,1
+14225,57,4,96,0,56,0,39,39,0,1
+14226,55,0,82,0,-24,-8,26,108,82,4
+14227,43,-3,76,-1,42,-15,33,35,2,1
+14228,41,-2,86,0,38,-6,45,47,2,1
+14229,37,0,84,0,30,15,47,53,6,1
+14230,42,0,100,2,42,0,58,59,0,1
+14231,83,-1,86,0,-6,0,4,94,90,5
+14232,52,0,88,0,52,0,37,37,0,1
+14233,37,0,76,-7,36,2,38,39,2,1
+14234,37,0,105,0,20,-25,68,84,16,1
+14235,83,0,86,2,-2,0,4,89,86,5
+14236,56,0,97,0,54,15,41,43,2,1
+14237,37,0,82,-1,-2,10,45,85,40,1
+14238,38,0,76,0,36,-24,38,40,2,1
+14239,37,0,103,0,24,-19,66,80,14,1
+14240,55,0,81,0,-20,28,26,102,76,4
+14241,37,0,77,0,34,-22,40,43,2,1
+14242,55,0,96,0,46,-12,41,50,8,4
+14243,38,5,76,0,38,7,38,37,0,1
+14244,37,0,83,0,-4,-12,47,88,42,1
+14245,45,0,82,0,44,-16,37,38,2,1
+14246,37,0,100,0,28,0,64,72,8,1
+14247,51,0,88,-2,50,-10,37,39,2,1
+14248,53,0,109,4,52,-8,56,57,2,1
+14249,55,0,82,0,-38,-16,26,121,94,4
+14250,37,0,75,0,28,13,38,46,8,1
+14251,56,0,96,0,42,11,40,55,14,4
+14252,41,0,83,0,38,-11,42,44,2,1
+14253,49,0,111,0,46,-30,62,64,2,1
+14254,47,0,107,3,46,0,60,60,0,1
+14255,37,0,80,0,6,-19,43,75,32,1
+14256,55,-1,81,0,-20,29,26,102,76,4
+14257,41,2,76,0,42,13,34,34,0,1
+14258,49,1,86,0,50,15,38,37,0,1
+14259,55,0,92,0,-4,30,36,97,60,4
+14260,56,0,77,0,-14,17,21,92,72,4
+14261,55,0,79,0,0,0,23,79,56,4
+14262,37,0,76,1,24,0,39,52,14,1
+14263,41,2,86,0,38,0,45,47,2,1
+14264,51,4,79,0,50,-15,27,30,2,1
+14265,38,0,76,5,38,0,38,37,0,1
+14266,55,-5,77,0,-4,1,21,82,60,4
+14267,40,4,81,1,38,0,41,43,2,1
+14268,43,3,79,0,42,0,36,37,2,1
+14269,50,5,79,1,50,0,29,30,0,1
+14270,43,-5,86,0,44,18,43,42,0,1
+14271,45,-3,77,0,46,13,32,31,0,1
+14272,37,0,78,0,8,-13,42,70,28,1
+14273,51,0,78,0,50,-10,27,29,2,1
+14274,45,0,93,0,44,-2,48,50,2,1
+14275,37,0,77,4,38,23,40,39,0,1
+14276,41,0,80,0,42,14,39,39,0,1
+14277,55,0,97,0,44,0,41,53,12,4
+14278,47,-2,81,0,46,0,33,34,0,1
+14279,41,0,97,0,42,6,56,55,0,1
+14280,49,0,86,0,50,0,38,37,0,1
+14281,58,5,82,4,56,0,24,25,0,1
+14282,37,-3,86,0,36,0,49,50,0,1
+14283,56,0,97,0,52,20,41,46,4,4
+14284,48,4,81,-3,46,0,33,34,2,1
+14285,37,0,76,-1,38,14,39,37,0,1
+14286,45,0,83,0,46,30,38,37,0,1
+14287,55,-5,90,0,54,0,35,35,0,1
+14288,49,-5,86,0,46,-24,37,39,2,1
+14289,50,-2,85,2,50,0,35,36,0,1
+14290,56,0,77,0,18,10,22,59,38,4
+14291,37,0,81,0,30,16,45,50,6,1
+14292,49,3,81,0,50,19,33,32,0,1
+14293,40,-1,75,0,38,0,35,36,2,1
+14294,38,0,75,0,38,16,37,36,0,1
+14295,37,0,106,-4,38,25,68,67,0,1
+14296,37,0,76,0,34,-3,38,42,4,1
+14297,53,0,77,0,54,4,23,23,0,1
+14298,46,0,86,0,46,15,40,39,0,1
+14299,37,0,104,-5,16,-22,67,89,22,1
+14300,40,-4,77,0,38,0,38,39,2,1
+14301,52,1,86,0,52,0,34,34,0,1
+14302,39,1,77,0,38,0,37,38,0,1
+14303,37,0,106,0,24,5,69,82,14,1
+14304,41,-1,78,-3,38,-11,37,39,2,1
+14305,57,5,79,0,56,0,22,23,0,1
+14306,43,0,77,-1,44,29,34,34,0,1
+14307,51,0,77,0,50,-20,26,28,2,1
+14308,53,0,80,0,52,-2,27,28,2,1
+14309,37,0,79,0,8,-8,42,71,30,1
+14310,44,0,75,-2,44,5,31,31,0,1
+14311,47,0,80,-7,46,0,33,34,0,1
+14312,46,1,81,0,46,13,35,35,0,1
+14313,89,-37,107,0,64,-14,18,42,24,3
+14314,55,0,97,0,50,-8,41,48,6,4
+14315,40,0,79,7,38,0,38,40,2,1
+14316,45,-2,77,0,44,0,33,34,0,1
+14317,55,0,97,-2,50,0,42,48,6,4
+14318,38,2,81,0,38,5,43,42,0,1
+14319,37,0,80,0,30,-23,43,49,6,1
+14320,43,0,82,0,42,-7,39,41,2,1
+14321,44,-1,77,-1,44,0,33,33,0,1
+14322,37,0,79,0,12,-8,42,66,24,1
+14323,55,-5,95,0,50,0,40,46,6,4
+14324,55,0,81,0,-6,-2,25,88,64,4
+14325,50,0,86,7,50,0,36,37,0,1
+14326,43,5,81,-1,42,0,38,40,2,1
+14327,55,1,96,7,50,0,41,47,6,4
+14328,41,0,84,4,38,-5,43,45,2,1
+14329,41,0,79,-2,42,0,38,37,0,1
+14330,105,4,106,4,72,5,1,34,32,5
+14331,51,-1,87,0,52,19,36,35,0,1
+14332,42,3,86,-1,42,0,44,45,2,1
+14333,41,0,85,-1,38,0,44,46,2,1
+14334,56,0,92,0,50,24,36,43,6,4
+14335,43,0,86,-1,42,-4,42,44,2,1
+14336,56,0,87,1,56,9,31,30,0,1
+14337,55,0,79,0,18,-5,23,61,38,4
+14338,43,0,87,1,44,27,44,43,0,1
+14339,37,2,104,0,18,10,66,86,20,1
+14340,83,0,86,-1,-4,15,3,92,88,5
+14341,37,0,90,6,6,-6,53,85,32,1
+14342,46,1,80,-6,46,9,34,34,0,1
+14343,37,0,77,0,24,-20,40,54,14,1
+14344,55,0,77,0,-18,0,21,95,74,4
+14345,42,4,79,-3,42,0,37,37,0,1
+14346,81,0,84,0,-22,-6,4,108,104,5
+14347,37,0,81,0,-2,12,44,84,40,1
+14348,52,0,85,-1,52,0,33,33,0,1
+14349,37,0,79,0,38,23,41,40,0,1
+14350,49,0,86,0,50,157,37,37,0,1
+14351,56,0,78,0,6,-9,22,73,50,4
+14352,42,0,76,-2,42,-4,34,35,0,1
+14353,43,0,76,-1,42,-5,32,34,2,1
+14354,37,0,78,0,2,-7,42,75,34,1
+14355,44,-2,83,3,44,0,38,39,0,1
+14356,84,3,86,0,-2,0,3,89,86,5
+14357,37,0,76,1,28,-3,39,47,8,1
+14358,37,-1,76,-3,28,-6,40,48,8,1
+14359,56,0,77,0,-4,11,21,82,62,4
+14360,67,5,112,0,68,2,45,45,0,1
+14361,46,0,86,0,46,2,41,40,0,1
+14362,46,0,82,0,46,6,36,35,0,1
+14363,44,0,83,0,44,8,39,39,0,1
+14364,47,0,90,4,46,0,42,43,0,1
+14365,43,0,86,6,42,-6,43,45,2,1
+14366,37,0,77,0,16,0,41,62,22,1
+14367,37,0,105,-2,34,0,68,71,4,1
+14368,43,5,88,0,42,0,45,46,2,1
+14369,37,0,77,0,12,-7,41,65,24,1
+14370,45,0,87,0,44,-4,42,43,2,1
+14371,37,0,97,0,28,-18,60,69,8,1
+14372,44,-1,77,0,44,7,33,33,0,1
+14373,37,0,80,-3,34,-2,43,46,2,1
+14374,37,0,74,0,30,18,37,43,6,1
+14375,82,-1,85,-7,-2,1,3,88,84,5
+14376,42,-4,86,1,42,0,45,45,0,1
+14377,37,0,77,0,8,0,40,69,30,1
+14378,45,4,81,0,44,0,36,37,0,1
+14379,37,5,75,0,20,0,38,54,16,1
+14380,56,0,97,0,46,-7,40,50,10,4
+14381,82,3,86,0,-22,15,4,109,106,5
+14382,84,6,89,0,8,23,5,81,76,5
+14383,55,-4,86,0,56,23,30,29,0,1
+14384,37,0,106,2,24,-3,68,82,14,1
+14385,37,0,81,0,36,-2,43,44,2,1
+14386,45,0,88,0,44,-5,42,44,2,1
+14387,55,0,79,0,12,-11,23,66,42,4
+14388,50,-4,86,0,50,0,35,37,2,1
+14389,37,0,76,2,26,13,39,50,12,1
+14390,51,0,88,1,50,-30,36,39,2,1
+14391,43,-1,79,0,44,18,35,35,0,1
+14392,40,-3,79,0,38,0,39,41,2,1
+14393,44,0,79,-1,42,-27,35,37,2,1
+14394,56,0,77,0,-2,-7,21,79,58,4
+14395,55,-1,81,-5,54,-7,26,27,0,1
+14396,79,5,83,1,-40,9,4,125,120,5
+14397,49,1,87,0,46,-5,38,41,2,1
+14398,43,-3,109,0,42,0,66,67,2,1
+14399,51,0,78,-1,52,6,27,26,0,1
+14400,37,0,77,0,10,11,40,66,26,1
+14401,55,-1,93,-3,50,-4,37,44,6,4
+14402,49,0,79,0,46,-19,31,33,2,1
+14403,37,0,93,0,28,7,55,64,8,1
+14404,37,0,76,0,26,-20,39,50,10,1
+14405,45,0,83,8,46,20,37,36,0,1
+14406,37,0,106,-6,26,0,69,80,12,1
+14407,56,-2,81,0,56,5,25,24,0,1
+14408,44,1,83,3,44,0,38,39,0,1
+14409,50,-3,107,0,50,0,57,58,0,1
+14410,50,-1,90,0,50,0,39,41,2,1
+14411,37,0,76,0,34,-16,39,42,2,1
+14412,37,0,76,0,20,-12,40,55,16,1
+14413,40,-5,79,1,38,0,38,40,2,1
+14414,49,-1,77,0,50,9,28,28,0,1
+14415,56,0,81,0,-2,2,25,83,58,4
+14416,101,-2,102,0,70,-2,1,33,32,5
+14417,46,0,83,-5,46,0,36,36,0,1
+14418,37,0,76,0,18,-14,39,58,18,1
+14419,54,2,81,1,54,0,28,27,0,1
+14420,55,0,78,0,12,-30,23,65,42,4
+14421,46,0,83,-3,44,-25,37,39,2,1
+14422,80,0,84,0,-42,0,5,128,124,5
+14423,37,0,78,0,10,-13,42,68,26,1
+14424,46,2,76,0,46,9,30,30,0,1
+14425,49,0,86,-2,46,-18,38,40,2,1
+14426,37,-27,75,0,28,19,38,46,8,1
+14427,62,-1,109,0,62,2,48,47,0,1
+14428,55,0,97,2,52,0,41,45,4,4
+14429,46,0,85,0,46,0,39,39,0,1
+14430,41,0,81,0,38,-17,41,43,2,1
+14431,55,0,82,0,-40,16,26,123,96,4
+14432,41,2,80,0,42,5,39,39,0,1
+14433,37,0,83,0,8,2,46,75,30,1
+14434,53,1,77,0,54,5,24,23,0,1
+14435,102,-3,104,-1,72,14,1,31,30,5
+14436,40,-2,79,1,38,0,38,40,2,1
+14437,85,0,88,-2,6,-6,3,83,80,5
+14438,53,1,79,0,52,-21,26,27,2,1
+14439,59,1,84,0,60,3,25,24,0,1
+14440,56,0,83,0,56,7,27,26,0,1
+14441,41,0,88,-7,38,-1,48,50,2,1
+14442,37,4,77,0,34,0,39,43,4,1
+14443,55,0,81,0,-20,0,26,102,76,4
+14444,37,0,81,0,16,7,44,65,22,1
+14445,53,-3,90,0,54,4,37,36,0,1
+14446,46,0,83,0,46,3,37,36,0,1
+14447,51,0,78,0,50,-5,27,29,2,1
+14448,37,0,105,-1,18,7,68,87,18,1
+14449,44,0,75,-4,44,0,31,31,0,1
+14450,44,0,86,0,42,-18,43,45,2,1
+14451,46,1,82,0,46,5,36,35,0,1
+14452,58,-1,86,0,60,30,28,27,0,1
+14453,53,0,81,0,54,7,28,26,0,1
+14454,49,5,81,0,50,2,32,32,0,1
+14455,56,3,97,1,44,14,41,53,12,4
+14456,55,3,77,0,34,0,22,44,22,4
+14457,41,0,76,0,42,10,35,34,0,1
+14458,46,0,82,0,44,-10,36,38,2,1
+14459,49,0,84,0,50,23,35,35,0,1
+14460,44,2,87,-2,44,1,43,43,0,1
+14461,45,0,76,4,44,-1,31,32,2,1
+14462,56,0,81,0,2,-3,25,78,54,4
+14463,45,-2,86,5,46,30,41,40,0,1
+14464,37,0,81,0,10,-3,45,71,26,1
+14465,37,0,104,0,20,9,67,84,16,1
+14466,55,3,79,0,54,0,24,25,2,1
+14467,53,3,86,0,52,-4,33,34,2,1
+14468,44,2,86,-2,44,0,42,42,0,1
+14469,55,0,97,0,42,0,41,55,14,4
+14470,44,0,84,-3,44,0,40,40,0,1
+14471,46,-1,85,-4,46,-14,39,39,0,1
+14472,45,0,77,0,44,-6,32,34,2,1
+14473,55,0,98,0,44,11,42,54,12,4
+14474,45,-2,88,-3,46,11,42,41,0,1
+14475,41,0,83,0,42,10,42,41,0,1
+14476,43,0,86,-4,42,-6,42,44,2,1
+14477,55,0,96,0,46,-6,41,50,8,4
+14478,44,0,86,1,42,-27,43,45,2,1
+14479,56,0,98,-1,42,-17,42,57,14,4
+14480,49,-5,82,0,50,10,33,33,0,1
+14481,55,0,78,-2,18,0,23,60,38,4
+14482,44,5,79,0,44,1,35,35,0,1
+14483,47,2,77,0,46,-1,30,31,0,1
+14484,45,4,77,0,44,0,31,33,2,1
+14485,37,0,79,0,30,9,42,48,6,1
+14486,43,-1,85,0,42,-10,42,44,2,1
+14487,43,0,76,8,42,0,33,35,2,1
+14488,37,0,80,0,30,24,43,49,6,1
+14489,38,2,79,0,38,18,42,41,0,1
+14490,101,0,102,0,70,-3,1,33,32,5
+14491,39,-2,80,-4,38,0,41,41,0,1
+14492,43,0,81,1,42,-9,37,39,2,1
+14493,49,0,87,0,46,-12,38,41,2,1
+14494,80,0,84,0,-36,-29,4,120,116,5
+14495,55,0,81,0,-20,25,26,102,76,4
+14496,55,0,77,0,12,-22,22,65,42,4
+14497,37,0,103,0,18,-16,66,85,20,1
+14498,56,2,98,0,52,1,42,46,4,4