diff --git a/examples/object_oriented_agentic_approach/Secure_code_interpreter_tool_for_LLM_agents.ipynb b/examples/object_oriented_agentic_approach/Secure_code_interpreter_tool_for_LLM_agents.ipynb new file mode 100644 index 0000000..4f67eb8 --- /dev/null +++ b/examples/object_oriented_agentic_approach/Secure_code_interpreter_tool_for_LLM_agents.ipynb @@ -0,0 +1,562 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "5fde7616369c1e1e", + "metadata": {}, + "source": [ + "## Build Your Own Code Interpreter: Empowering LLM Agents with Dynamic Tool Calling\n", + "\n", + "Many API providers—such as OpenAI’s Assistants API—offer built-in code interpreter functionality. These built-in tools can be immensely powerful, but there are situations where developers may need to create their own custom code interpreter. For example:\n", + "\n", + "1. **Language or library support**: The built-in interpreter may not support the specific programming language (e.g., C++, Java, etc.) or libraries required for your task.\n", + "2. **Task compatibility**: Your use case may not be compatible with the provider’s built-in solution.\n", + "3. **Model constraints**: You might require a language model that isn’t supported by the provider’s interpreter.\n", + "4. **Cost considerations**: The cost structure for code execution or model usage may not fit your budget or constraints. \n", + "5. **File size**: The file size of input data is too large or not supported by the provider's interpreter.\n", + "6. **Integrating with internal systems**: The provider's interpreter may not be able to integrate with your internal systems.\n", + "\n", + "At the core of this approach is “function (or tool) calling,” where a Large Language Model (LLM) can invoke a function with arguments. Typically, these functions are predefined by the developer, along with their expected arguments and outputs. However, in this Cookbook, we explore a more flexible paradigm.\n", + "\n", + "### Dynamically Generated Tool Calling with Code Interpreter\n", + "A Dynamically Generated Tool is a function or code block created by the LLM itself at runtime based on the user’s prompt. This means you don’t have to predefine every possible scenario in your codebase—enabling far more open-ended, creative, and adaptive problem-solving.\n", + "\n", + "Dynamically Generated Tool Calling goes a step further by granting the LLM the ability to generate tools and execute code blocks on the fly. This dynamic approach is particularly useful for tasks that involve:\n", + "\n", + "- Data analysis and visualization\n", + "- Data manipulation and transformation\n", + "- Machine learning workflow generation and execution\n", + "- Process automation and scripting\n", + "- And much more, as new possibilities emerge through experimentation\n", + "\n", + "### What You’ll Learn\n", + "By following this Cookbook, you will learn how to:\n", + "\n", + "- Set up an isolated Python code execution environment using Docker\n", + "- Configure your own code interpreter tool for LLM agents\n", + "- Establish a clear separation of “Agentic” concerns for security and safety\n", + "- Orchestrate agents to efficiently accomplish a given task\n", + "- Design an agentic application that can dynamically generate and execute code\n", + "\n", + "You’ll see how to build a custom code interpreter tool from the ground up, leverage the power of LLMs to generate sophisticated code, and safely execute that code in an isolated environment—all in pursuit of making your AI-powered applications more flexible, powerful, and cost-effective." + ] + }, + { + "cell_type": "markdown", + "id": "fcd93887", + "metadata": {}, + "source": [ + "### Example Scenario\n", + "\n", + "We'll use the sample data provided at [Key Factors Traffic Accidents](https://www.kaggle.com/datasets/willianoliveiragibin/key-factors-traffic-accidents) to answer a set of questions. These questions do not require to be pre-defined, we will give LLM the ability to generate code to answer such question. \n", + "\n", + "Sample questions could be: \n", + "- What factors contribute the most to accident frequency? (Feature importance analysis)\n", + "- Which areas are at the highest risk of accidents? (Classification/Clustering)\n", + "- How does traffic fine amount influence the number of accidents? (Regression/Causal inference)\n", + "- Can we determine the optimal fine amounts to reduce accident rates? (Optimization models)\n", + "- Do higher fines correlate with lower average speeds or reduced accidents? (Correlation/Regression)\n", + "- and so on ...\n", + "\n", + "Using the traditional **Predefined Tool Calling** approach, developer would need to pre-define the function for each of these questions. This limits the LLM's ability to answer any other questions not defined in the pre-defined set of functions. We overcome this limitation by using the **Dynamic Tool Calling** approach where the LLM generates code and uses a Code Interpretter tool to execute the code. " + ] + }, + { + "cell_type": "markdown", + "id": "e301abe8", + "metadata": {}, + "source": [ + "## Overview\n", + "Let's dive into the steps to build this Agentic Applicaiton with Dynamically generated tool calling. There are three components to this application:" + ] + }, + { + "cell_type": "markdown", + "id": "8ad2269f", + "metadata": {}, + "source": [ + "#### Step 1: Set up an isolated code execution container environment\n", + "\n", + "We need a secure environment where our LLM generated function calls can be executed. We want to avoid directly running the LLM generated code on the host machine so will create a Docker container environment with restricted resource access (e.g., no network access). By default, Docker containers cannot access the host machine’s file system, which helps ensure that any code generated by the LLM remains contained. \n", + "\n", + "##### ⚠️ A WORD OF CAUTION: Implement Strong Gaurdrails for the LLM generated code\n", + "LLMs could generate harmful code with unintended consequences. As a best practice, isolate the code execution environment with only required access to resources as needed by the task. Avoid running the LLM generated code on your host machine or laptop. \n", + "\n", + "#### Step 2: Define and Test the Agents\n", + "\n", + "\"**What is an Agent?**\" In the context of this Cookbook, an Agent is:\n", + "1. Set of instructions for the LLM to follow, i.e. the developer prompt\n", + "2. A LLM model, and ability to call the model via the API \n", + "3. Tool call access to a function, and ability to execute the function \n", + "\n", + "We will define two agents:\n", + "1. FileAccessAgent: This agent will read the file and provide the context to the PythonCodeExecAgent.\n", + "2. PythonCodeExecAgent: This agent will generate the Python code to answer the user's question and execute the code in the Docker container.\n", + "\n", + "#### Step 3: Set up Agentic Orchestration to run the application \n", + "There are various ways to orchestrate the Agents based on the application requirements. In this example, we will use a simple orchestration where the user provides a task and the agents are called in sequence to accomplish the task. \n", + "\n", + "The overall orchestration is shown below:\n", + "\n", + "![Agentic Workflow Orchestration](./resources/images/AgenticWorkflow.png)" + ] + }, + { + "cell_type": "markdown", + "id": "5a651f8d", + "metadata": {}, + "source": [ + "## Let's get started\n", + "\n", + "\n", + "### Prerequisites\n", + "Before you begin, ensure you have the following installed and configured on your host machine:\n", + "\n", + "1. Docker: installed and running on your local machine. You can learn more about Docker and [install it from here](https://www.docker.com/). \n", + "2. Python: installed on your local machine. You can learn more about Python and [install it from here](https://www.python.org/downloads/). \n", + "3. OpenAI API key: set up on your local machine as an environment variable or in the .env file in the root directory. You can learn more about OpenAI API key and [set it up from here](https://platform.openai.com/docs/api-reference/introduction). \n" + ] + }, + { + "cell_type": "markdown", + "id": "e1ea3005fbd91c61", + "metadata": {}, + "source": [ + "### Step 1: Set up an Isolated Code Execution Environment \n", + "\n", + "Lets define a Dockerized container environment that will be used to execute our code. I have defined the **[dockerfile](./resources/docker/dockerfile)** under `resources/docker` directory that will be used to create the container environment with the following specifications:\n", + "- Python 3.10 as the base \n", + "- A non-root user \n", + "- Preinstall the packages in requirements.txt \n", + "\n", + "The requirements.txt included in the docker image creation process contains all the potential packages our LLM generated code may need to accomplish its tasks. Given we will restrict the container from network access, so we need to pre-install the packages that are required for the task. Our LLM will not be allowed to install any additional packages for security purposes. \n", + "\n", + "You could create your own docker image with the language requirements (such as Python 3.10) and pre-install the packages that are required for the task, or create a custom docker image with the specific language (such as Java, C++, etc.) and packages that are required for the task. " + ] + }, + { + "cell_type": "markdown", + "id": "cf2af004", + "metadata": {}, + "source": [ + "Let's build the docker image with the following command. For the sake of brevity, I have redirected the output to grep the success message and print a message if the build fails." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "fe136739b0bd164a", + "metadata": { + "ExecuteTime": { + "end_time": "2025-01-27T00:13:35.949224Z", + "start_time": "2025-01-27T00:13:33.524485Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "View build details: docker-desktop://dashboard/build/desktop-linux/desktop-linux/kl8fo02q7rgbindi9b42pn1zr\r\n" + ] + } + ], + "source": [ + "!docker build -t python_sandbox:latest ./resources/docker 2>&1 | grep -E \"View build details|ERROR\" || echo \"Build failed.\"" + ] + }, + { + "cell_type": "markdown", + "id": "c8c0e9024894d45d", + "metadata": {}, + "source": [ + "Let's run the container in restricted mode. The container will run in the background. This is our opportunity to define the security policies for the container. It is good practice to only allow the bare minimum features to the container that are required for the task. By default, the container cannot access the host file system from within the container. Let's also restrict its access to network so it cannot access the Internet or any other network resources. " + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "cfaa0418f90fde09", + "metadata": { + "ExecuteTime": { + "end_time": "2025-01-27T00:13:43.561453Z", + "start_time": "2025-01-27T00:13:43.213479Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8446d1e9a7972f2e00a5d1799451c1979d34a2962aa6b4c35a9868af8d321b0e\r\n" + ] + } + ], + "source": [ + "# Run the container in restricted mode. The container will run in the background.\n", + "!docker run -d --name sandbox --network none --cap-drop all --pids-limit 64 --tmpfs /tmp:rw,size=64M python_sandbox:latest sleep infinity" + ] + }, + { + "cell_type": "markdown", + "id": "c21cafbcfdc09e2c", + "metadata": {}, + "source": [ + "Let's make sure container is running using the `docker ps` that should list our container. " + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "e4df845011b77a21", + "metadata": { + "ExecuteTime": { + "end_time": "2025-01-27T00:13:45.473413Z", + "start_time": "2025-01-27T00:13:45.316092Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES\r\n", + "8446d1e9a797 python_sandbox:latest \"sleep infinity\" 2 seconds ago Up 2 seconds sandbox\r\n" + ] + } + ], + "source": [ + "!docker ps " + ] + }, + { + "cell_type": "markdown", + "id": "dd42a2c8f40710c2", + "metadata": {}, + "source": [ + "### Step 2: Define and Test the Agents\n", + "\n", + "For our purposes, we will define two agents. \n", + "1.\t**Agent 1: File Access Agent (with Pre-defined Tool Calling)**\n", + "- Instructions to understand the contents of the file to provide as context to Agent 2.\n", + "- Has access to the host machine’s file system. \n", + "- Can read a file from the host and copy it into the Docker container.\n", + "- Cannot access the code interpreter tool. \n", + "\n", + "2.\t**Agent 2: Python Code Generator and Executor (with Dynamically Generated Tool Calling and Code Execution)**\n", + "- Recieve the file content's context from Agent 1.\n", + "- Instructions to generate a Python script to answer the user's question.\n", + "- Has access to the code interpreter within the Docker container, which is used to execute Python code.\n", + "- Has access only to the file system inside the Docker container (not the host).\n", + "- Cannot access the host machine’s file system or the network.\n", + "\n", + "This separation concerns of the File Access (Agent 1) and the Code Generator and Executor (Agent 2) is crucial to prevent the LLM from directly accessing or modifying the host machine. \n", + "\n", + "\n", + "**Limit the Agent 1 to Static Tool Calling as it has access to the host file system.** \n", + "\n", + "\n", + "| Agent | Type of Tool Call | Access to Host File System | Access to Docker Container File System | Access to Code Interpreter |\n", + "|-------|-------------------|----------------------------|----------------------------------------|----------------------------|\n", + "| Agent 1: File Access | Pre-defined Tools | Yes | Yes | No |\n", + "| Agent 2: Python Code Generator and Executor | Dynamically Generated Tools | No | Yes | Yes |\n" + ] + }, + { + "cell_type": "markdown", + "id": "844d4d2ba5d47226", + "metadata": {}, + "source": [ + "To keep the Agents and Tools organized, we've defined a set of **core classes** that will be used to create the two agents for consistency using Object Oriented Programming principles.\n", + "\n", + "- **BaseAgent**: We start with an abstract base class that enforces common method signatures such as `task()`. Base class also provides a logger for debugging, a language model interface and other common functions such as `add_context()` to add context to the agent. \n", + "- **ChatMessages**: A class to store the conversation history given ChatCompletions API is stateless. \n", + "- **ToolManager**: A class to manage the tools that an agent can call.\n", + "- **ToolInterface**: An abstract class for any 'tool' that an agent can call so that the tools will have a consistent interface.\n", + "\n", + "These classes are defined in the [object_oriented_agents/core_classes](./resources/object_oriented_agents/core_classes) directory. " + ] + }, + { + "cell_type": "markdown", + "id": "b90cda38", + "metadata": {}, + "source": [ + "#### UML Class Diagram for Core Classes\n", + "The following class diagram shows the relationship between the core classes. This UML (Unified Modeling Language) has been generated using [Mermaid](https://mermaid)\n", + "![Class Diagram](./resources/diagrams/images/class_diagram_mermaid.png)" + ] + }, + { + "cell_type": "markdown", + "id": "c6eb923b", + "metadata": {}, + "source": [ + "**Define Agent 1: FileAccessAgent with FileAccessTool**\n", + "\n", + "Let's start with definin the FileAccessTool that inherits from the ToolInterface class. The **FileAccessTool** tool is defined in the [file_access_agent.py](./resources/registry/tools/file_access_tool.py) file in the `resources/registry/tools` directory. \n", + "\n", + "- FileAccessTool implements the ToolInterface class, which ensures that the tools will have a consistent interface. \n", + "- Binding the tool definition for the OpenAI Function Calling API in the `get_definition` method and the tool's `run` method ensures maintainability, scalability, and reusability. " + ] + }, + { + "cell_type": "markdown", + "id": "643f349e", + "metadata": {}, + "source": [ + "Now, let's define the **FileAccessAgent** that extends the BaseAgent class and bind the **FileAccessTool** to the agent. The FileAccessAgent is defined in the [file_acess_agent.py](./resources/registry/agents/file_access_agent.py) file in `resources/registry/agents` directory. The FileAccessAgent is: \n", + "\n", + "- A concrete implementation of the BaseAgent class. \n", + "- Initialized with the developer prompt, model name, logger, and language model interface. These values can be overridden by the developer if needed. \n", + "- Has a setup_tools method that registers the FileAccessTool to the tool manager. \n", + "- Has a `task` method that calls the FileAccessTool to read the file and provide the context to the PythonCodeExecAgent. \n" + ] + }, + { + "cell_type": "markdown", + "id": "c06cd2e5447b4ff9", + "metadata": {}, + "source": [ + "**Define Agent 2: PythonExecAgent with PythonExecTool** \n", + "\n", + "Similarly, PythonExecTool inherits from the ToolInterface class and implements the get_definition and run methods. The get_definition method returns the tool definition in the format expected by the OpenAI Function Calling API. The run method executes the Python code in a Docker container and returns the output. This tool is defined in the [python_code_interpreter_tool.py](./resources/registry/tools/python_code_interpreter_tool.py) file in the `resources/registry/tools` directory. \n", + "\n", + "Likewise, PythonExecAgent is a concrete implementation of the BaseAgent class. It is defined in the [python_code_exec_agent.py](./resources/registry/agents/python_code_exec_agent.py) file in the `resources/registry/agents` directory. The PythonExecAgent is: \n", + "\n", + "- A concrete implementation of the BaseAgent class. \n", + "- Initialized with the developer prompt, model name, logger, and language model interface. These values can be overridden by the developer if needed. \n", + "- Has a setup_tools method that registers the PythonExecTool to the tool manager. \n", + "- Has a `task` method that calls the OpenAI API to perform the user's task, which in this case involves generating a Python script to answer the user's question and run it with Code Interpretter tool. " + ] + }, + { + "cell_type": "markdown", + "id": "bb93488f", + "metadata": {}, + "source": [ + "### Step 3: Set up Agentic Orchestration to run the application \n", + "\n", + "With the Agents defined, now we can define the orchestration loop that will run the application. This loop will prompt the user for a question or task, and then call the FileAccessAgent to read the file and provide the context to the PythonExecAgent. The PythonExecAgent will generate the Python code to answer the user's question and execute the code in the Docker container. The output from the code execution will be displayed to the user. \n", + "\n", + "User can type 'exit' to stop the application. Our question: **What factors contribute the most to accident frequency?** Note that we did not pre-define the function to answer this question.\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "866b7eb2", + "metadata": { + "ExecuteTime": { + "end_time": "2025-01-27T00:16:03.490020Z", + "start_time": "2025-01-27T00:15:36.487115Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Setup: \n", + "Use the file traffic_accidents.csv for your analysis. The column names are:\n", + "Variable\tDescription\n", + "accidents\tNumber of recorded accidents, as a positive integer.\n", + "traffic_fine_amount\tTraffic fine amount, expressed in thousands of USD.\n", + "traffic_density\tTraffic density index, scale from 0 (low) to 10 (high).\n", + "traffic_lights\tProportion of traffic lights in the area (0 to 1).\n", + "pavement_quality\tPavement quality, scale from 0 (very poor) to 5 (excellent).\n", + "urban_area\tUrban area (1) or rural area (0), as an integer.\n", + "average_speed\tAverage speed of vehicles in km/h.\n", + "rain_intensity\tRain intensity, scale from 0 (no rain) to 3 (heavy rain).\n", + "vehicle_count\tEstimated number of vehicles, in thousands, as an integer.\n", + "time_of_day\tTime of day in 24-hour format (0 to 24).\n", + "accidents\ttraffic_fine_amount\n", + "\n", + "Setting up the agents... \n", + "Understanding the contents of the file...\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2025-01-26 16:15:37,348 - MyApp - INFO - Handling tool call: safe_file_access\n", + "2025-01-26 16:15:37,350 - MyApp - INFO - Tool arguments: {'filename': './resources/data/traffic_accidents.csv'}\n", + "2025-01-26 16:15:37,512 - MyApp - INFO - Tool 'safe_file_access' response: Copied ./resources/data/traffic_accidents.csv into sandbox:/home/sandboxuser/.\n", + "The file content for the first 15 rows is:\n", + " accidents traffic_fine_amount traffic_density traffic_lights pavement_quality urban_area average_speed rain_intensity vehicle_count time_of_day\n", + "0 20 4.3709 2.3049 753.000 0.7700 1 321.592 1.1944 290.8570 160.4320\n", + "1 11 9.5564 3.2757 5.452 4.0540 1 478.623 6.2960 931.8120 8.9108\n", + "2 19 7.5879 2.0989 6.697 345.0000 0 364.476 2.8584 830.0860 5.5727\n", + "3 23 6.3879 4.9188 9.412 4.7290 0 20.920 2.1065 813.1590 131.4520\n", + "4 23 2.4042 1.9610 7.393 1.7111 1 37.378 1.7028 1.4663 6.9610\n", + "5 31 2.4040 6.7137 5.411 5.9050 1 404.621 1.8936 689.0410 8.1801\n", + "6 29 1.5228 5.2316 9.326 2.3785 1 16.292 2.5213 237.9710 12.6622\n", + "7 18 8.7956 8.9864 4.784 1.9984 0 352.566 1.9072 968.0670 8.0602\n", + "8 15 6.4100 1.6439 5.612 3.6090 1 217.198 3.4380 535.4440 8.2904\n", + "9 22 7.3727 8.0411 5.961 4.7650 1 409.261 2.0919 569.0560 203.5910\n", + "10 28 1.1853 7.9196 0.410 3.7678 1 147.689 1.6946 362.9180 224.1580\n", + "11 17 9.7292 1.2718 8.385 8.9720 0 46.888 2.8990 541.3630 198.5740\n", + "12 14 8.4920 3.9856 1.852 4.6776 0 287.393 2.2012 75.2240 2.3728\n", + "13 21 2.9111 1.7015 5.548 1.9607 1 176.652 1.0320 566.3010 6.9538\n", + "14 22 2.6364 2.5472 7.222 2.3709 0 209.686 4.0620 64.4850 170.7110\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Type your question related to the data in the file. Type 'exit' to exit.\n", + "User question: What factors contribute the most to accident frequency?\n", + "Generating dynamic tools and using code interpreter...\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2025-01-26 16:15:50,144 - MyApp - INFO - Handling tool call: execute_python_code\n", + "2025-01-26 16:15:50,144 - MyApp - INFO - Tool arguments: {'python_code': \"import pandas as pd\\nimport numpy as np\\nfrom sklearn.ensemble import RandomForestRegressor\\n\\n# 1. Load the CSV file\\nfile_path = '/home/sandboxuser/traffic_accidents.csv'\\ndf = pd.read_csv(file_path)\\n\\n# 2. Prepare the data\\n# We'll treat 'accidents' as our target.\\nX = df.drop('accidents', axis=1)\\ny = df['accidents']\\n\\n# 3. Train a simple Random Forest Regressor to estimate feature importance.\\nrf = RandomForestRegressor(random_state=0)\\nrf.fit(X, y)\\n\\n# 4. Extract feature importances\\nfeature_importances = rf.feature_importances_\\ncolumns = X.columns\\n\\n# 5. Combine feature names and importances, and sort\\nimportances_df = pd.DataFrame({'Feature': columns, 'Importance': feature_importances})\\nimportances_df = importances_df.sort_values(by='Importance', ascending=False)\\n\\n# 6. Print the results\\nprint('Feature importances based on Random Forest Regressor:')\\nprint(importances_df.to_string(index=False))\"}\n", + "2025-01-26 16:15:53,260 - MyApp - INFO - Tool 'execute_python_code' response: Feature importances based on Random Forest Regressor:\n", + " Feature Importance\n", + "traffic_fine_amount 0.580858\n", + " traffic_density 0.164679\n", + " rain_intensity 0.095392\n", + " time_of_day 0.035838\n", + " average_speed 0.035590\n", + " pavement_quality 0.032545\n", + " traffic_lights 0.022789\n", + " vehicle_count 0.021246\n", + " urban_area 0.011062\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Output...\n", + "Based on a simple Random Forest analysis, the factor with the highest feature importance is “traffic_fine_amount.” The next most influential factors are “traffic_density” and “rain_intensity,” followed by “time_of_day” and “average_speed.”\n", + "Type your question related to the data in the file. Type 'exit' to exit.\n", + "Exiting the application.\n" + ] + } + ], + "source": [ + "# Import the agents from registry/agents\n", + "\n", + "from resources.registry.agents.file_access_agent import FileAccessAgent\n", + "from resources.registry.agents.python_code_exec_agent import PythonExecAgent\n", + "\n", + "\n", + "prompt = \"\"\"Use the file traffic_accidents.csv for your analysis. The column names are:\n", + "Variable\tDescription\n", + "accidents\tNumber of recorded accidents, as a positive integer.\n", + "traffic_fine_amount\tTraffic fine amount, expressed in thousands of USD.\n", + "traffic_density\tTraffic density index, scale from 0 (low) to 10 (high).\n", + "traffic_lights\tProportion of traffic lights in the area (0 to 1).\n", + "pavement_quality\tPavement quality, scale from 0 (very poor) to 5 (excellent).\n", + "urban_area\tUrban area (1) or rural area (0), as an integer.\n", + "average_speed\tAverage speed of vehicles in km/h.\n", + "rain_intensity\tRain intensity, scale from 0 (no rain) to 3 (heavy rain).\n", + "vehicle_count\tEstimated number of vehicles, in thousands, as an integer.\n", + "time_of_day\tTime of day in 24-hour format (0 to 24).\n", + "accidents\ttraffic_fine_amount\n", + "\"\"\"\n", + "\n", + "\n", + "print(\"Setup: \")\n", + "print(prompt)\n", + "\n", + "print(\"Setting up the agents... \")\n", + "\n", + "# Instantiate the agents\n", + "\n", + "# Developer can accept the default prompt, model, logger, and language model interface or accept the default values from the constructor\n", + "\n", + "file_ingestion_agent = FileAccessAgent()\n", + "data_analysis_agent = PythonExecAgent()\n", + "\n", + "print(\"Understanding the contents of the file...\")\n", + "# Give a task to the file ingestion agent to read the file and provide the context to the data analysis agent \n", + "file_ingestion_agent_output = file_ingestion_agent.task(prompt)\n", + "\n", + "# add the file content as context to the data analysis agent \n", + "# The context is added to the agent's tool manager so that the tool manager can use the context to generate the code \n", + "\n", + "data_analysis_agent.add_context(prompt)\n", + "data_analysis_agent.add_context(file_ingestion_agent_output)\n", + "\n", + "while True:\n", + "\n", + " print(\"Type your question related to the data in the file. Type 'exit' to exit.\")\n", + " user_input = input(\"Type your question.\")\n", + "\n", + " if user_input == \"exit\":\n", + " print(\"Exiting the application.\")\n", + " break\n", + "\n", + " print(f\"User question: {user_input}\")\n", + "\n", + " print(\"Generating dynamic tools and using code interpreter...\")\n", + " data_analysis_agent_output = data_analysis_agent.task(user_input)\n", + "\n", + " print(\"Output...\")\n", + " print(data_analysis_agent_output)\n" + ] + }, + { + "cell_type": "markdown", + "id": "29f96b97", + "metadata": {}, + "source": [ + "In this example, the LLM dynamically generated a tool (a Python script) to analyze the data and answer the user's question that show cases the following:\n", + "\n", + "**Dynamically Generated Tool Calling**: This tool (the Python script) to analyze the data was not manually written or predetermined by the developer. Instead, the LLM itself created the relevant data exploration, correlation analysis, and machine learning code at runtime.\n", + "\n", + "**Isolated Code Execution**: To ensure security and avoid running untrusted code on the host machine, the Python script was executed inside a Docker container using the `execute_python_code` tool. This container had restricted resource access (e.g., no network and limited filesystem access), minimizing potential risks posed by arbitrary code execution.\n" + ] + }, + { + "cell_type": "markdown", + "id": "bb1ed586", + "metadata": {}, + "source": [ + "### Conclusion\n", + "\n", + "The Cookbook provides a guide for developing a **custom code interpreter** tailored to specific application needs, addressing limitations found in vendor-provided solutions such as language constraints, cost considerations, and the need for flexibility with different LLMs or models.\n", + "\n", + "**Approach for Managing Agents and Tools**: We also defined a set of core classes to manage the agents and tools. This approach ensures that the agents and tools will have a consistent interface and can be reused across different applications. A repository of agents and tools such as the [registry](./resources/registry) folder can be created to manage the agents and tools.\n", + "\n", + "To recap, the three steps to build an Agentic Application with Dynamic Tool Calling are:\n", + "1. Set up an isolated code execution container environment\n", + "2. Define and Test the Agents\n", + "3. Set up Agentic Orchestration to run the application \n", + "\n", + "We discussed the importance of isolating the code execution environment to ensure security and avoid running untrusted code on the host machine. With the use case of a CSV file, we demonstrated how to dynamically generate a tool (a Python script) to analyze the data and answer the user's question. We also showed how to execute the code in a Docker container and return the output to the user." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/examples/object_oriented_agentic_approach/resources/data/traffic_accidents.csv b/examples/object_oriented_agentic_approach/resources/data/traffic_accidents.csv new file mode 100644 index 0000000..bfc2812 --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/data/traffic_accidents.csv @@ -0,0 +1,8757 @@ +accidents,traffic_fine_amount,traffic_density,traffic_lights,pavement_quality,urban_area,average_speed,rain_intensity,vehicle_count,time_of_day +20,4.3709,2.3049,753,0.77,1,321.592,1.1944,290.857,160.432 +11,9.5564,3.2757,5.452,4.054,1,478.623,6.296,931.812,8.9108 +19,7.5879,2.0989,6.697,345,0,364.476,2.8584,830.086,5.5727 +23,6.3879,4.9188,9.412,4.729,0,20.92,2.1065,813.159,131.452 +23,2.4042,1.961,7.393,1.7111,1,37.378,1.7028,1.4663,6.961 +31,2.404,6.7137,5.411,5.905,1,404.621,1.8936,689.041,8.1801 +29,1.5228,5.2316,9.326,2.3785,1,16.292,2.5213,237.971,12.6622 +18,8.7956,8.9864,4.784,1.9984,0,352.566,1.9072,968.067,8.0602 +15,6.41,1.6439,5.612,3.609,1,217.198,3.438,535.444,8.2904 +22,7.3727,8.0411,5.961,4.765,1,409.261,2.0919,569.056,203.591 +28,1.1853,7.9196,0.41,3.7678,1,147.689,1.6946,362.918,224.158 +17,9.7292,1.2718,8.385,8.972,0,46.888,2.899,541.363,198.574 +14,8.492,3.9856,1.852,4.6776,0,287.393,2.2012,75.224,2.3728 +21,2.9111,1.7015,5.548,1.9607,1,176.652,1.032,566.301,6.9538 +22,2.6364,2.5472,7.222,2.3709,0,209.686,4.062,64.485,170.711 +25,2.6506,2.6325,904,2.1079,1,173.899,1.4468,477.743,233.854 +25,3.7382,5.5624,8.839,1.4027,1,7.3123,2.0381,719.236,5.8148 +18,5.7228,4.1141,5.087,4.4752,1,3.4246,5.318,900.563,215.571 +27,4.8875,9.4773,6.432,1.6612,1,160.889,1.9483,6.0541,177.364 +24,3.6211,1.2637,3.942,2.893,1,229.345,2.4768,11.6224,236.028 +20,6.5067,9.7369,4.682,1.2002,0,180.908,4.712,688.753,2.2461 +23,2.2554,2.3064,9.063,3.9869,0,696,2.1174,383.927,9.4739 +24,3.6293,7.7287,9.307,3.871,1,289.503,2.048,288.802,11.4748 +17,4.2973,3.3897,8.954,1.4816,0,7.2408,239,186.807,16.13 +11,5.1046,1.4308,1.384,3.4078,0,10.5503,979,57.691,156.953 +21,8.0666,8.5789,8.501,3.5194,1,6.0374,1.8945,354.057,217.523 +28,2.7971,3.0886,9.484,2.8126,1,260.216,2.9201,512.881,201.282 +20,5.6281,6.5886,3.612,3.003,1,4.758,2.3141,958.976,1.3289 +19,6.3317,5.6644,5.186,2.8723,1,12.8179,7.632,760.685,11.677 +26,1.4181,4.7176,7.791,4.093,0,225.854,2.151,797.991,9.7695 +17,6.4679,4.9582,5.621,3.3513,0,8.3854,1.85,132.956,239.315 +23,2.5347,7.3224,9.935,2.3489,1,223.121,97,331.731,10.2542 +25,1.5855,8.777,4.557,2.1923,0,171.368,2.3778,11.5173,163.829 +14,9.54,6.6818,7.139,4.3,0,430.299,7.294,968.836,6.8263 +19,9.6907,8.9581,7.926,1.161,1,397.452,8.977,685.366,147.511 +14,8.2756,5.779,4.941,1.2566,1,496.427,1.0319,2.9041,4.9592 +23,3.7415,1.4065,857,607,0,264.456,2.2907,48.075,144.866 +29,1.879,7.1663,5.462,1.767,1,287.699,7.972,27.089,208.366 +18,7.1581,4.3728,4.117,1.3784,1,473.323,8.534,544.559,4.617 +18,4.9614,4.0355,1.078,4.9424,1,199.796,1.623,186.871,12.1101 +22,2.0983,1.3697,3.934,1.3511,0,277.841,1.389,6.6287,235.769 +23,5.4566,5.0677,7.339,3.3185,1,189.543,2.8667,329.946,3.8223 +24,1.3095,1.2655,9.213,5.915,1,27.293,7.902,302.552,4.4019 +7,9.1839,4.7662,2.517,3.1992,0,4.0383,2.757,719.794,11.2998 +25,3.329,7.6362,3.552,4.9224,1,391.897,1.6229,479.803,209.038 +15,6.9627,2.5826,154,1.4592,1,49.264,5.536,298.415,135.062 +22,3.8054,4.8079,6.907,4.2404,1,3.287,1.2409,574.726,12.209 +20,5.6806,9.9202,9.602,4.9879,1,40.052,5.616,8.0604,2.0822 +24,5.9204,6.8665,641,2.9428,1,12.0867,2.6429,665.729,230.877 +28,2.6637,8.4136,6.171,1.547,1,9.8774,9.823,155.816,8.3308 +15,9.7263,4.1485,5.535,3.3677,1,346.685,2.3246,286.902,6.0434 +17,7.9762,7.6786,885,4.2242,0,2.2066,2.8458,289.302,9.8819 +14,9.4555,4.051,7.295,8.568,0,23.162,2.8217,471.193,9.9404 +13,9.0534,1.2291,602,2.2626,1,722,1.5744,953.626,11.1948 +22,6.3811,2.0307,6.615,1.5959,1,277.197,2.9498,331.413,165.249 +16,9.2969,4.0195,8.988,1.4168,0,231.041,1.9678,288.509,208.307 +26,1.7964,8.4574,784,4.3041,1,457.741,3.855,177.114,1.3755 +27,2.7638,3.4627,7.809,2.1083,0,360.136,2.6651,398.049,11.7784 +29,1.407,6.5462,9.272,1.6954,1,6.3003,1.4061,190.221,9.9355 +22,3.928,7.0931,9.899,3.0176,1,17.727,4.581,146.392,2.611 +28,4.4981,5.8618,5.813,1.097,0,46.579,2.3743,858.785,195.957 +22,3.4421,3.5724,1.089,1.1495,1,362.667,1.8732,6.2112,2.5035 +16,8.4586,5.7705,4.591,2.6014,1,297.138,2.6464,713.717,2.754 +22,4.2108,3.4227,7.876,2.0464,0,279.536,2.482,210.545,1.1592 +18,3.5284,8.387,277,1.4749,1,199.049,9.603,2.1598,4.8101 +23,5.8843,9.928,569,2.698,1,292.601,7.689,797.194,4.2436 +24,2.2683,1.2718,672,2.6039,1,385.832,2.2015,705.263,8.3488 +12,8.2198,7.235,731,4.083,0,6.3769,1.7199,340.956,158.225 +26,1.671,8.7853,5.012,4.2569,1,484.915,2.096,8.8539,1.3031 +13,9.882,3.0183,3.689,1.1772,1,11.9682,5.449,367.065,206.466 +15,7.9502,6.503,1.056,2.9982,1,223.871,4.541,189.514,7.8379 +23,2.7884,3.2901,7.322,4.2794,1,1.1358,1.7694,933.179,145.586 +24,1.0497,3.9145,321,2.0436,1,275.173,2.573,534.327,2.881 +10,8.3392,2.6211,2.653,4.6607,0,190.933,6.231,964.205,8.7794 +13,7.3617,3.4304,6.523,4.5149,0,12.4878,1.6361,357.801,492 +15,7.5611,4.107,559,1.0407,0,492.762,3.992,560.898,3.971 +17,7.9414,7.2042,3.624,1.2948,1,214.071,7.448,198.222,10.7484 +29,1.6664,5.1154,6.415,9.022,0,207.148,2.7204,810.345,12.8421 +27,4.2262,9.4357,2.712,9.803,1,231.552,2.0914,5.0689,3.6703 +21,2.0428,4.188,7.948,4.5393,1,5.8077,9.206,698.659,178.852 +13,8.7679,5.0307,2.293,4.6557,1,196.548,2.6321,397.743,4.5361 +17,6.6097,5.8422,1.588,2.595,1,168.202,7.509,582.632,2.7803 +25,3.9781,9.202,7.824,2.968,1,232.562,1.7672,596.337,8.2022 +23,1.572,4.916,7.079,2.8212,1,428.311,1.1055,713.687,132.343 +25,3.7988,5.735,1.826,1.9527,1,9.6393,2.2564,21.222,237.336 +23,3.9266,8.5363,1.162,3.1585,0,30.387,1.1148,536.072,10.0492 +11,7.5665,2.4193,8.384,4.7368,0,1.8819,7.466,432.657,10.2239 +23,6.738,8.7629,7.766,8.513,0,158.396,1.8231,289.359,1.424 +15,8.9849,1.904,3.273,6.021,1,236.329,2.236,500.771,183.797 +25,5.2499,7.3245,6.582,167,1,3.714,1.6091,952.495,4.3628 +29,2.0763,9.3311,1.242,1.8192,0,271.984,2.1489,949.396,178.753 +18,7.4192,6.572,507,1.6881,0,155.163,1.266,286.029,218.548 +19,7.8471,4.3903,187,2.1541,1,496.405,2.3863,885.365,184.373 +17,6.0515,4.488,3.916,2.5166,0,315.485,1.7551,877.987,154.189 +16,7.9387,9.2011,748,3.7891,1,12.2088,5.887,257.089,14.494 +21,5.4442,4.703,4.751,1.9606,0,5.1337,2.6723,602.961,10.8872 +19,5.7046,0.29,4.217,1.6531,1,2.036,2.5105,871.236,3.469 +24,4.8479,6.8982,4.444,4.1344,1,4.5387,2.8917,519.845,186.921 +27,1.2288,4.8184,453,4.249,1,34.003,1.707,376.072,11.4557 +26,1.971,1.2435,3.616,1.1638,0,427.496,2.0272,654.278,150.155 +25,1.2829,2.1427,7.565,1.5734,0,7.8367,2.5907,180.701,8.9764 +11,6.7277,6.449,3.689,4.1256,1,201.067,1.578,170.114,4.8173 +29,3.8292,5.7429,7.152,397,1,177.118,2.7366,83.432,193.562 +20,5.5771,6.2203,3.695,1.6292,1,322.259,8.135,5.1456,8.2176 +14,9.1681,5.0574,4.232,2.2418,1,9.1339,1.711,805.594,208.003 +25,3.2436,8.171,5.639,9.354,0,47.666,7.128,297.589,231.774 +28,4.6934,8.6101,9.507,8.996,1,364.278,1.7591,488.291,199.197 +16,7.8,6.1562,1.089,2.1243,1,477.536,1.435,54.808,3.0753 +16,3.0592,1.276,329,3.7726,1,138.685,23,769.399,205.203 +30,1.6928,6.9523,608,4.2012,1,293.858,1.9181,885.019,12.4646 +20,3.6078,4.18,9.491,4.8962,0,366.134,1.3602,806.182,5.7939 +30,2.451,5.6556,9.897,3.699,1,355.478,2.533,57.662,2.2357 +14,9.3673,6.4908,4.842,1.0834,1,1.0673,7.726,354.534,6.6842 +12,8.2731,3.5024,4.681,3.7831,1,499.145,8.421,531.292,3.2982 +18,6.7006,9.171,645,2.703,0,46.403,2.326,3.9721,6.155 +14,8.8431,1.3397,5.556,1.6384,1,5.9876,1.6155,25.253,237.063 +16,8.233,6.7151,6.341,1.0279,0,271.783,1.0977,372.494,19.957 +19,2.6791,436,874,1.4024,1,157.278,1.0191,326.557,177.348 +17,9.033,9.2465,7.463,2.1464,0,439.447,1.3729,10.4195,4.6323 +21,5.8541,1.125,4.969,8.858,1,34.876,2.5491,6.0247,6.657 +11,8.267,9.488,4.619,4.8211,1,11.1759,3.156,426.508,11.6449 +12,9.0648,3.3301,6.396,5.379,0,1.6931,1.5708,8.4052,178.007 +21,3.862,3.7357,4.557,4.9279,1,145.871,5.893,293.346,231.081 +22,1.9905,2.143,4.578,4.2095,1,1.9069,6.372,480.077,202.532 +22,3.0514,5.8512,163,2.1158,1,7.0655,7.702,217.862,214.441 +19,4.844,4.4291,1.741,3.6991,0,318.069,1.3782,8.874,5.7279 +12,8.3621,3.418,4.885,3.3576,1,372.543,1.4832,437.812,3.7278 +18,8.7466,3.1965,8.227,1.0664,1,234.008,2.6145,453.992,5.9468 +31,1.0626,8.1043,2.787,1.6954,1,300.144,2.6763,916.458,3.3259 +22,5.5967,6.897,5.226,2.5656,1,7.7943,1.76,136.559,191.636 +21,4.7567,7.2487,345,3.1892,0,158.398,8.442,618.845,21.673 +29,2.999,6.9812,1.048,2.7145,1,356.442,2.4553,326.506,7.3762 +27,2.0788,3.1097,9.583,2.3649,1,182.446,2.3786,132.362,210.462 +20,4.0385,9.966,8.547,2.2158,1,174.406,2.3939,399.216,1.3208 +8,9.4862,2.7247,785,2.4913,1,9.6996,491,433.658,162.566 +31,3.9088,8.3179,7.198,2.1718,1,297.412,2.2616,369.929,12.6598 +26,5.6691,9.8047,3.476,2.7067,1,404.769,2.5582,768.075,6.6418 +21,7.3272,4.9385,9.948,4.4399,1,234.723,1.8151,840.814,184.368 +16,4.2727,97,3.024,3.1641,1,5.777,2.2537,157.244,5.0891 +13,9.746,1.4004,2.387,3.6131,1,419.184,2.3285,176.226,9.9876 +13,9.662,3.2208,5.679,2.9874,1,3.5699,1.5198,427.005,170.366 +26,3.266,5.7859,8.351,3.2151,1,235.864,2.4409,326.987,8.1175 +18,5.4752,7.509,1.925,2.8917,0,130.539,2.3769,821.378,205.286 +33,3.7079,9.4336,7.094,1.343,1,468.159,2.7483,996.843,207.702 +21,3.5636,3.6508,614,4.998,1,368.772,2.7641,189.299,4.8607 +33,1.332,9.1258,9.189,168,1,283.204,1.5891,764.919,10.5694 +16,6.4861,7.8052,811,1.9757,0,333.878,945,611.174,10.3683 +21,5.5241,7.5544,9.142,5.256,0,266.364,573,64.798,9.8411 +29,1.4633,6.0672,4.908,4.846,0,7.38,2.8168,271.797,12.0473 +24,3.5078,6.2678,4.481,3.9676,1,354.549,1.0121,10.6224,1.7848 +16,9.1744,6.38,9.733,2.1296,0,246.337,1.1326,547.824,208.812 +25,3.1561,6.2872,9.904,4.1957,1,317.155,1.4097,617.371,6.958 +23,2.3041,5.5373,6.502,1.3639,1,2.2601,7.974,963.418,435 +25,5.4051,9.8641,1.271,1.2823,1,7.1017,1.7712,678.479,164.425 +17,9.8709,7.3229,5.062,1.2562,0,294.685,2.3539,449.247,156.113 +28,3.1785,7.7695,5.292,3.0807,1,229.714,772,994.061,235.959 +21,7.0492,8.7246,5.144,4.075,1,11.3437,2.2292,379.507,172.619 +13,7.8546,2.1564,5.695,2.2613,0,12.038,2.0161,170.933,7.9849 +23,3.1387,838,187,1.8962,1,315.829,1.5768,62.18,228.628 +13,7.5539,4.8289,7.112,4.8679,1,2.9484,9.763,273.588,8.7683 +29,4.31,5.1408,7.124,5.838,1,217.129,2.6183,922.983,197.099 +22,6.6908,8.2918,1.155,2.4332,1,261.552,1.2084,43.359,8.0562 +14,6.7018,4.4378,5.702,2.0424,0,154.071,1.124,15.812,1.169 +25,5.822,5.7085,5.684,4.906,1,410.275,1.9241,150.214,176.108 +28,1.8126,5.2707,6.825,1.341,1,2.8385,2.761,653.143,8.4051 +14,8.5177,382,854,1.422,1,432.891,1.5241,372.238,8.1333 +26,3.887,6.1521,6.265,4.3848,1,361.631,2.1681,370.087,171.804 +25,2.6787,8.2804,2.808,3.0392,0,223.127,1.3706,616.201,7.7289 +20,1.367,1.575,507,4.0751,0,462.234,6.564,229.297,2.8323 +18,6.318,5.9433,7.733,2.6078,0,351.119,3.719,153.974,9.7082 +19,7.0981,5.9361,7.056,2.9975,0,465.523,409,66.069,197.723 +18,1.1493,1.6418,1.189,3.5043,0,236.295,64,1.5185,3.1249 +17,5.6088,1.2346,5.912,4.5401,1,226.487,1.6587,908.291,133.075 +28,3.0385,9.8005,9.691,4.588,1,265.371,3.933,191.141,3.1742 +17,6.8066,3.9372,1.568,1.6547,1,3.2713,2.5971,453.377,1.1804 +27,2.5693,2.2742,8.529,3.5451,1,454.247,2.9487,219.364,9.089 +15,7.2184,1.7132,7.025,4.7918,1,333.859,1.4876,226.037,157.892 +21,4.4806,6.676,774,4.904,1,308.793,1.349,836.651,6.5997 +15,9.4306,6.0945,282,3.1905,0,463.232,1.0442,589.183,10.6975 +29,2.2377,6.4355,2.879,968,1,496.819,1.9141,318.336,11.7919 +20,4.0696,8.801,906,596,0,8.1697,1.8241,258.588,20.191 +27,2.0213,8.9353,3.598,4.7302,0,374.498,1.0301,220.734,196.555 +13,9.3222,3.8927,63,2.1696,1,289.973,1.0295,558.904,563 +15,8.8961,3.1337,6.006,9.741,1,230.499,1.9344,733.482,9.9341 +24,3.3215,4.6236,1.248,4.6695,1,488.806,1.6636,260.992,157.462 +23,6.9399,3.9007,7.966,5.226,1,425.132,2.1557,338.978,204.575 +21,8.355,8.6358,6.417,3.6479,0,348.375,2.8242,723.162,1.1735 +26,5.9968,9.2926,8.747,3.1263,1,191.338,2.3388,739.905,15.078 +20,5.7669,3.0345,7.848,4.387,0,33.302,913,21.525,202.085 +26,3.1767,8.6394,1.121,1.6937,0,265.847,2.2774,38.838,6.1218 +28,1.8379,7.8152,3.811,7.497,0,12.4684,1.3501,871.258,4.9262 +20,9.0749,9.3081,7.746,3.0225,1,225.191,2.333,74.279,11.2284 +17,9.1038,2.4575,4.173,2.3856,1,10.6106,2.6597,17.087,231.019 +21,6.6979,5.7696,9.724,214,1,25.021,7.498,392.103,166.293 +20,4.0513,2.7454,7.357,4.8786,1,360.119,7.159,973.561,10.1876 +21,4.1429,8.2409,155,1.7479,1,1.8323,1.2979,530.124,5.007 +14,7.5336,532,0.88,1.291,1,38.269,1.546,722.153,133.614 +16,9.074,5.6482,1.008,1.1122,1,9.997,2.0571,10.1115,8.3709 +18,8.9838,3.392,1.405,7.941,1,258.639,2.2491,834.185,4.4571 +15,8.0189,3.2268,7.345,4.9957,1,286.738,1.0363,608.737,12.1936 +21,6.7783,6.4491,865,1.4755,1,380.622,1.3959,183.844,8.1932 +29,1.7573,8.5148,5.363,2.0276,1,380.514,1.7711,38.641,9.294 +23,2.4547,6.092,289,4.3568,1,208.728,2.208,9.2197,174.121 +18,9.087,8.5317,3.513,3.2094,1,3.3186,2.1339,77.924,17.582 +18,6.4579,2.646,3.429,1.8435,1,34.675,1.5801,74.743,14.852 +27,1.0828,5.195,3.267,4.4916,1,255.493,1.8728,495.329,201.797 +25,1.9132,4.5054,2.429,3.7486,1,166.529,2.1715,457.496,4.8764 +15,6.9715,1.164,6.089,1.1395,0,11.7437,2.0267,46.879,6.8688 +24,1.0456,5.5681,9.004,3.2187,1,5.9879,286,4.7092,11.1977 +27,2.4473,6.6152,3.071,4.612,1,147.571,2.3478,374.563,1.4442 +21,5.9386,5.9191,1.867,2.4823,0,229.245,1.8301,137.219,212.051 +23,7.2271,7.3628,8.386,3.6681,1,238.805,2.1446,192.944,11.7751 +17,6.8677,5.7134,7.418,4.8555,1,291.369,7.845,962.496,7.7919 +17,3.0184,6.675,9.308,3.4521,0,181.234,6.643,269.167,11.4711 +16,7.4096,1.1645,1.655,5.122,0,459.949,2.4783,488.789,7.8031 +25,3.1352,5.9647,1.443,1.2228,1,247.935,1.1712,888.915,6.8703 +22,3.9286,2.7498,5.414,2.9755,1,211.863,1.726,419.356,10.7524 +13,7.7184,7.965,6.144,1.3778,0,2.4084,1.6548,533.332,11.5657 +18,6.8467,4.296,4.802,4.7877,1,299.508,1.7555,17.71,10.4003 +16,8.643,5.5432,599,2.0268,1,301.434,2.085,292.229,131.503 +16,6.9185,3.2875,1.804,2.2862,1,291.645,9.074,511.053,188.011 +17,6.1148,7.2043,4.796,3.508,1,443.798,1.994,371.252,1.3744 +28,1.8431,6.4377,6.581,2.6212,0,38.145,1.4405,4.7873,194.764 +25,4.3094,3.3282,4.327,1.9107,1,433.703,2.7063,406.821,5.4848 +26,3.3868,7.5487,6.794,3.832,1,2.9711,1.1675,816.955,6.0502 +27,3.1959,6.487,4.512,2.9822,1,159.063,2.3473,12.4899,143.872 +11,9.7571,6.3745,3.336,4.3379,1,159.356,8.617,2.8544,234.161 +22,4.5379,5.5343,3.036,3.4288,0,328.523,2.5688,12.7516,4.176 +11,9.0284,1.139,4.109,1.9075,0,224.308,1.2585,690.001,161.552 +21,6.6802,6.9651,231,6.386,0,388.736,1.0657,796.698,167.255 +13,8.1533,3.7604,6.685,4.0817,0,192.215,2.0924,5.8239,137.676 +22,5.5237,9.4261,8.451,4.7087,1,11.0804,1.5383,888.675,2.326 +21,6.1921,8.1798,3.546,1.9414,1,145.476,1.012,631.052,145.524 +15,5.4327,5.8769,46,3.6432,0,9.1235,1.743,52.295,2.7605 +19,2.7572,2.5218,9.868,2.0538,0,9.8946,4.999,261.056,1.8736 +14,7.5021,2.0372,2.637,2.5113,0,10.8419,2.317,377.983,167.055 +22,3.527,3.4038,1.266,4.1824,1,8.047,2.7622,947.504,168.056 +29,1.2188,4.7657,3.698,4.171,1,358.044,5.065,912.431,213.579 +18,6.8093,2.9607,7.386,2.6517,1,199.801,1.7083,62.921,811 +24,2.594,5.1493,2.939,1.0731,1,1.1336,1.025,583.122,9.0902 +10,9.4641,1.6537,5.747,1.699,1,185.004,8.725,218.439,2.945 +16,9.5854,9.7771,4.156,3.2221,0,452.684,1.3464,953.746,8.7519 +15,9.2338,1.0792,1.178,1.361,1,255.622,2.2076,757.838,11.7998 +23,4.3314,9.3194,3.303,2.9691,1,493.376,1.323,388.437,12.7135 +33,1.1391,9.1358,7.249,1.4172,1,26.998,2.3437,817.673,8.5424 +15,9.3549,5.2536,612,3.3474,1,481.399,6.079,219.756,174.072 +26,4.8537,7.2491,1.198,7.079,1,10.09,2.2786,221.096,9.9743 +12,9.6999,4.3605,1.633,3.6791,0,144.967,1.8764,793.052,12.411 +14,9.6726,6.3003,6.407,3.2282,0,349.985,1.0187,563.715,192.021 +17,8.6771,3.4058,8.134,4.8562,1,493.411,2.1713,560.277,4.1833 +18,3.65,3.0116,3.495,4.5562,0,412.649,709,577.934,7.7015 +22,4.4659,5.7823,5.953,1.4165,0,276.853,6.592,134.549,12.5143 +17,8.6602,4.9813,1.706,1.366,1,4.2576,1.852,356.063,184.228 +21,3.8523,5.7954,3.114,3.2768,1,18.219,1.1792,577.349,10.2085 +19,2.5254,2.8666,203,3.0144,1,4.3213,2.931,255.113,1.7464 +21,6.0112,3.6696,7.683,1.371,0,155.641,1.2585,508.965,237.319 +9,9.4254,839,401,6.134,0,12.9396,294,561.465,169.899 +15,7.2643,5.228,8.161,2.9235,1,194.278,4.653,943.386,173.456 +20,6.1306,2.5346,7.084,4.5591,1,418.638,2.7971,253.318,11.1625 +24,1.8746,7.425,8.287,4.5325,1,7.5188,2.3867,444.964,13.129 +17,6.5351,1.0377,2.857,7.574,1,153.032,7.085,981.696,238.572 +17,9.9105,8.1293,1.851,1.9229,1,130.559,2.1549,194.922,142.828 +24,2.2608,3.887,9.719,216,0,148.071,2.1954,782.219,5.2543 +20,5.665,6.5894,7.173,2.3464,0,180.312,5.308,185.383,231.451 +10,8.8964,2.7256,834,3.7654,0,12.2156,1.1132,851.546,12.9063 +22,7.6669,8.7155,131,3.9499,1,471.291,2.7411,493.094,4.962 +18,7.2731,4.8499,3.545,2.4949,0,210.051,2.2162,97.244,137.604 +17,7.3224,3.0558,7.428,4.793,1,5.7057,2.281,178.374,1.6914 +24,4.2354,5.1764,78,1.9068,1,233.829,1.6917,691.047,12.6621 +20,3.6423,3.8196,5.673,4.6605,0,9.2216,1.9966,698.326,19.808 +17,8.2843,5.643,4.291,1.1481,1,10.8065,1.5262,721.687,12.9328 +12,8.291,1.1453,176,1.5988,1,142.521,2.2227,10.9959,8.9629 +19,8.8037,9.9699,236,3.7341,1,6.238,2.1982,295.675,211.826 +15,9.2192,4.2556,2.848,3.6679,1,360.559,932,344.637,222.622 +16,5.6021,3.4823,1.119,4.561,0,395.973,1.8953,331.045,8.3398 +24,5.5136,7.1021,6.315,1.9406,1,197.142,1.8894,678.271,11.9748 +14,8.1847,3.639,2.424,2.573,0,344.496,202,6.4281,235.901 +20,6.8497,8.3327,2.776,2.337,1,194.477,1.2311,732.778,4.2744 +18,7.3177,4.5427,8.982,4.6388,1,8.2039,2.6964,531.319,7.1557 +19,8.1621,7.1956,4.671,3.8467,1,198.584,2.8603,181.267,10.2821 +11,09.01,1.0745,3.921,4.1572,0,278.494,2.3466,233.858,2.4213 +23,4.042,8.4612,7.239,6.655,1,2.0497,4.544,10.6605,6.529 +26,4.3802,7.3572,9.096,3.9592,1,327.242,1.1242,464.468,130.725 +21,1.8458,2.1172,25,2.1649,1,371.304,5.477,598.972,5.484 +21,6.2045,1.4529,4.482,1.167,0,429.985,1.9564,585.162,164.708 +29,1.3235,3.1629,6.108,3.004,1,5.1385,2.3194,962.744,8.3441 +23,5.1904,9.7607,3.186,3.3895,0,47,2.6513,303.006,2.1551 +20,5.8838,2.5683,7.724,1.8601,0,3.6633,2.5819,764.459,183.488 +22,3.5789,4.5613,9.715,4.3406,1,462.058,2.976,725.847,13.618 +13,6.3175,3.002,9.434,3.6714,0,382.778,377,7.0714,197.969 +32,1.2745,3.9723,266,1.084,1,417.718,2.729,930.705,8.6436 +28,1.3361,5.7132,2.263,3.4344,1,258.507,2.5314,931.991,4.651 +19,8.4034,9.5312,9.575,9.618,1,26.336,1.3811,402.372,1.1205 +20,4.2417,5.1674,4.586,2.1129,0,149.253,1.2902,423.501,190.908 +27,2.1435,8.1911,2.083,3.1237,0,421.377,1.6584,821.401,9.8554 +22,5.7002,5.4713,707,4.3636,0,414.885,1.7899,50.008,234.333 +11,7.9299,4.079,2.844,2.2805,0,196.086,7.626,801.209,199.274 +19,2.9424,3.1501,2.672,4.0425,1,164.634,1.2112,4.5764,3.869 +21,6.606,5.7555,8.792,3.9148,1,369.187,1.8591,257.768,208.795 +27,1.7681,9.5059,1.625,2.0727,1,1.3084,6.188,10.0154,5.1088 +33,1.4651,8.5913,644,2.5049,1,429.974,2.9965,459.656,11.6704 +16,5.7822,2.2836,2.692,3.5024,0,223.124,8.488,855.618,12.1469 +16,5.8657,2.2011,6.069,1.557,0,220.672,1.6572,57.409,1.4333 +15,6.7369,2.0117,1.231,4.4541,1,334.539,1.6625,52.513,3.016 +21,7.5348,9.225,4.716,3.8491,1,322.875,1.3545,372.446,10.1531 +17,9.7827,8.5267,6.273,1.2471,1,132.987,7.246,7.2974,154.229 +22,5.6467,7.7488,8.487,4.9059,0,471.639,1.6961,768.746,6.346 +20,3.9066,3.9274,2.299,897,0,493.165,273,575.058,12.6336 +14,8.1567,5.0438,8.173,4.5704,0,262.995,1.1608,931.656,9.0992 +23,3.4375,4.6433,2.349,1.6224,1,28.069,6.728,437.646,151.287 +14,4.9507,2.534,6.768,3.8157,0,277.159,3.725,407.485,10.1865 +32,1.7061,5.0503,4.307,2.2819,1,242.894,2.7764,974.604,204.392 +23,1.2282,305,1.147,3.6823,1,472.594,2.0998,149.746,236.099 +10,9.6638,1.3181,7.143,7.789,1,12.2376,5.065,259.838,219.132 +17,8.5238,8.8659,2.178,1.3475,0,5.3979,2.8482,493.283,4.0465 +21,7.2638,7.5168,1.766,4.993,1,464.774,648,528.309,10.9723 +16,4.6806,4.2287,3.583,4.3257,0,10.6519,7.068,553.229,11.0116 +25,2.5596,5.1715,6.533,1.4815,1,374.578,3.998,219.989,201.712 +23,2.4079,3.7,234,3.4724,0,10.1937,2.1836,92.758,8.5725 +25,3.2522,7.4078,1.837,4.1011,0,480.093,1.7126,706.467,131.904 +17,5.943,7.8419,0.01,4.5071,1,395.561,1.748,265.855,146.227 +19,7.4314,7.6329,4.716,5.315,1,459.359,759,301.251,2.6765 +21,6.9418,7.2261,4.286,4.4651,0,475.492,1.598,881.555,133.911 +23,3.5194,2.045,2.339,9.863,1,4.2212,1.9546,386.552,5.9242 +12,9.5938,3.3797,537,3.6845,0,216.694,2.4686,56.08,4.9588 +15,7.6411,4.6985,4.293,3.6442,0,32.405,1.4348,12.9223,6.1976 +23,5.9892,3.3079,7.882,425,1,401.228,2.0296,259.215,2.3844 +22,6.5055,7.5494,7.153,1.1031,0,12.0736,2.201,422.411,1.6735 +23,4.7764,3.2935,8.608,2.4595,1,457.302,1.8392,659.576,155.248 +19,3.2296,1.3823,96,2.1002,1,11.0488,1.0566,287.418,225.835 +22,4.2038,3.9904,9.664,4.5929,1,433.088,3.957,951.254,16.512 +20,7.8206,9.7991,3.414,1.7987,0,256.356,1.9426,228.015,7.4845 +25,1.1295,2.2588,9.904,4.6849,1,257.711,2.3061,781.118,8.0411 +26,2.0447,6.1216,2.526,2.2971,1,187.003,5.695,370.953,12.9933 +25,1.414,4.3297,4.715,4.8218,1,5.1753,1.4846,835.067,207.912 +20,1.3666,7.102,3.539,3.6868,0,173.545,1.1917,923.875,4.8591 +11,8.6991,4.8788,3.558,4.1467,1,213.368,6.171,195.145,11.2443 +20,7.3329,7.0216,8.423,5.244,1,239.511,7.359,496.562,11.9747 +21,5.2676,5.1322,7.464,2.9307,1,369.548,713,162.822,223.494 +30,1.8805,8.7211,9.922,7.135,1,176.035,1.2568,708.767,12.8677 +19,5.4245,2.8894,6.135,1.4881,1,203.296,1.1714,833.916,187.406 +18,5.2612,8.625,4.633,3.1178,0,453.049,1.6625,395.573,2.1072 +25,2.5588,9.3657,901,3.6311,0,376.284,2.796,402.783,7.8462 +21,4.9047,3.782,9.966,1.959,0,1.1428,1.7438,211.801,146.742 +18,4.5865,5.7641,5.515,2.6547,0,406.044,655,313.469,162.633 +21,6.5427,7.92,7.005,2.8266,1,494.972,7.721,330.654,212.451 +20,6.7158,3.2431,4.067,3.941,1,469.884,1.5064,164.019,141.702 +28,1.4077,7.1616,5.477,2.5034,1,417.978,2.0608,316.853,6.9499 +22,4.3715,1.3542,9.426,3.5692,1,314.587,2.3138,908.184,12.9383 +13,6.6327,2.9129,1.664,2.661,1,139.096,1.067,332.132,170.767 +16,5.5282,1.4471,2.924,3.8013,0,327.215,1.6125,281.693,188.243 +18,8.7084,8.1123,1.521,2.8821,1,347.796,1.0633,390.796,22.67 +16,6.9282,2.2265,7.922,4.1661,1,140.779,2.0847,96.067,4.5781 +28,2.4664,7.174,62,1.0903,1,12.7665,8.513,766.933,158.627 +28,1.6351,9.433,816,4.1664,1,198.462,2.2312,209.721,4.8074 +23,6.7818,5.2777,2.985,4.728,1,320.573,1.8067,755.026,7.6289 +29,1.2386,5.4003,5.142,2.0191,1,146.531,2.369,768.572,3.4263 +27,6.272,4.6103,4.063,9.974,1,277.833,2.9532,950.636,185.518 +13,9.4621,3.2589,448,4.3801,0,449.619,2.7258,892.184,21.936 +16,6.1793,4.7566,9.575,3.5246,0,14.755,1.7799,10.4243,7.183 +30,4.4935,6.0281,9.529,1.268,1,482.987,2.6813,460.031,195.242 +23,6.7896,9.8599,2.794,476,1,236.674,4.593,705.964,5.8021 +21,5.1243,9.3776,7.315,1.4562,0,5.0454,1.291,973.635,11.6873 +23,5.9106,8.6215,5.786,7.164,1,2.752,1.5994,9.4303,179.573 +20,9.4732,8.8913,2.375,3.1515,1,169.337,2.9231,37.455,12.1645 +22,4.4749,4.6785,2.622,3.319,1,12.9379,2.1292,497.302,5.55 +14,9.6507,6.5744,4.912,4.7098,1,421.857,9.154,419.112,21.748 +18,9.1482,8.9507,4.192,4.7602,1,368.819,2.1963,461.221,14.246 +24,2.7621,3.9295,2.912,3.2945,1,442.273,1.197,375.411,223.501 +34,1.6243,9.6176,8.075,284,0,294.627,1.4119,970.916,203.194 +27,1.907,4.1579,4.815,1.795,1,217.729,7.118,805.212,210.381 +25,1.164,6.0108,6.548,2.5657,0,135.284,1.476,739.293,8.6811 +25,1.85,7.098,1.893,2.4959,0,291.554,7.497,416.594,236.956 +25,7.1471,9.5059,5.335,3.0167,1,309.012,2.1674,882.708,204.575 +21,1.6407,2.4462,318,4.8028,1,196.474,1.6536,10.2406,8.1026 +24,3.8708,7.4613,5.264,4.426,1,468.298,703,151.984,21.514 +17,8.6039,5.2082,7.808,5.445,0,319.977,1.2292,954.517,18.127 +28,1.2094,2.6856,7.689,1.3299,1,418.741,2.2565,571.318,174.033 +18,8.3302,7.7661,3.542,4.1655,0,310.195,2.8638,167.863,1.494 +24,3.5367,5.5222,6.943,4.1215,0,158.268,2.6231,949.654,5.416 +26,2.0635,6.6097,9.413,1.3769,1,36.831,46,975.095,16.675 +14,7.2706,3.229,6.257,3.6529,1,11.5127,6.561,882.678,6.6884 +14,6.6605,4.8127,1.484,3.3602,1,298.305,6.232,246.172,1.4044 +17,8.8972,6.1735,6.797,2.3676,1,201.183,1.2393,285.709,6.8628 +16,7.6156,4.0491,1.049,1.1973,1,7.4942,1.9373,412.903,201.098 +11,8.2313,1.9837,8.721,4.4432,0,20.662,4.592,583.529,11.2947 +28,3.5383,9.6164,5.167,3.3893,0,15.514,2.747,99.226,147.739 +28,2.597,5.1147,3.851,845,1,5.6111,2.3314,956.572,192.121 +19,7.7555,7.3392,57,3.524,1,411.914,1.258,921.928,7.761 +15,8.2615,4.1105,3.808,3.7072,1,249.291,1.752,9.8384,2.675 +11,9.9145,3.5513,9.032,4.4344,0,173.178,1.6254,759.595,7.7597 +23,4.7136,4.0716,21,1.1142,1,252.482,1.7467,878.077,229.603 +21,4.3482,4.092,4.746,4.9438,0,377.292,2.5803,339.947,11.5748 +18,7.9877,5.4418,9.312,767,1,9.148,6.004,227.378,136.754 +24,4.0672,5.4347,3.948,3.1934,1,273.376,2.0511,750.957,182.503 +10,9.3768,4.9715,4.282,3.2859,0,239.575,3.211,9.9929,2.7584 +15,8.7257,1.3479,5.786,2.0948,1,446.535,1.3775,94.145,176.145 +23,4.8609,4.9608,4.629,2.3752,1,277.986,1.9075,164.517,7.1461 +9,7.7578,1.691,1.686,4.4546,1,6.8661,375,462.962,9.3159 +10,7.7909,1.2614,186,3.2264,1,194.342,3.242,98.297,6.4678 +27,1.9281,9.3265,6.098,2.485,1,310.535,2.738,988.338,3.6851 +16,9.123,6.0495,9.208,6.417,1,2.2967,1.1241,77.823,8.6751 +23,5.5473,6.5949,1.064,367,1,442.325,1.866,840.797,2.2713 +19,8.4381,4.0179,211,6.248,0,3.3891,2.9879,967.499,202.747 +21,3.8804,9.0898,3.702,4.7809,0,1.5296,7.622,928.155,7.3427 +11,9.0597,6.3793,8.087,3.8204,0,1.008,4.079,625.888,156.868 +22,4.5028,7.6917,2.693,4.8356,1,341.872,1.2443,737.271,7.1207 +26,1.0975,3.6856,8.821,1.785,1,22.796,4.379,597.839,5.0569 +14,9.1484,9.6001,55,3.4011,1,5.1409,736,51.143,171.278 +32,1.8216,8.2046,941,2.215,0,428.104,1.6919,882.021,149.761 +26,3.8738,8.5395,5.607,3.9103,1,10.136,2.6387,740.645,5.2345 +16,9.5506,1.7219,6.588,1.9048,1,163.162,2.5826,861.218,146.903 +8,9.5555,2.7096,3.677,4.788,0,8.8861,3.024,10.4952,0.12 +17,6.1609,2.8563,782,2.8402,1,463.378,4.424,58.072,4.246 +17,6.6865,2.7091,1.666,1.4006,1,379.033,1.4734,336.222,174.661 +22,5.036,8.5541,489,3.2979,1,361.977,1.1031,51.826,9.8436 +17,3.6389,3.188,3.955,3.2909,1,2.1998,2.1092,616.836,4.8871 +20,3.958,761,8.537,3.525,1,261.351,1.4848,847.301,12.142 +12,7.0527,2.7391,7.549,4.9623,1,287.726,604,4.1559,11.1652 +14,7.7714,1.9987,5.172,1.9335,0,19.126,8.537,172.344,152.145 +16,8.1242,2.3186,5.721,2.3266,1,160.878,2.7045,922.231,1.7409 +21,8.1066,7.9794,1.299,4.0231,1,425.971,1.5345,967.598,196.644 +26,1.8209,5.6313,8.407,2.8919,1,1.1508,2.3938,6.4868,1.3986 +17,5.4498,577,787,1.863,0,312.677,1.2069,33.847,10.8925 +26,1.518,4.2932,6.565,4.2154,1,197.123,2.0309,1.9633,170.514 +18,5.9458,4.0788,4.662,2.575,1,332.975,507,759.874,8.2755 +20,4.9738,1.1395,9.645,8.541,0,9.8959,2.2096,685.121,218.428 +23,8.9893,6.7614,879,5.104,1,11.933,2.3597,569.157,181.256 +24,4.1582,7.021,6.444,3.896,1,293.427,2.704,694.745,10.2252 +29,2.0536,7.2089,3.718,1.284,1,489.969,5.499,542.413,4.4118 +30,2.2869,7.2847,618,2.751,1,487.342,1.3887,246.453,1.0425 +13,7.8536,5,5.754,2.2122,0,12.449,1.9123,75.679,192.399 +23,6.564,9.5392,3.942,1.2643,1,5.1176,1.9125,785.445,4.6626 +31,1.9101,8.1421,3.067,6.327,1,295.172,2.1946,85.566,6.4722 +30,1.757,9.0398,407,3.2935,1,209.991,2.1432,954.536,2.491 +13,7.3087,1.564,5.739,1.1306,0,380.843,1.5173,750.066,4.374 +30,1.6549,9.3386,4.281,947,1,263.992,1.7246,6.4004,5.53 +16,8.3967,8.0979,2.636,2.0921,1,255.293,252,3.063,209.488 +22,7.3562,8.3722,761,1.5522,1,32.323,4.998,742.472,187.398 +23,1.7321,9.329,5.315,1.593,1,6.3209,1.4957,6.549,18.477 +30,1.7635,7.3878,677,2.2264,1,338.581,2.2368,322.785,198.488 +16,9.8798,9.5992,3.683,3.3446,1,24.426,2.4268,144.798,4.4787 +29,4.3684,6.7855,8.849,3.0824,1,410.074,2.1868,969.211,234.976 +19,4.3358,5.7056,7.552,4.6863,0,6.9353,1.4592,32.323,5.5726 +18,8.3152,9.4563,3.232,2.5886,1,150.374,8.438,6.4595,3.5983 +17,9.5252,4.4294,9.382,2.3628,1,475.123,1.3341,950.111,7.0715 +14,9.874,5.9929,766,1.0671,1,276.536,279,612.657,12.7309 +19,7.7804,4.7634,9.612,3.7769,1,46.465,1.7939,4.5748,2.9863 +24,4.3863,9.3285,2.457,7.039,0,344.518,2.237,835.027,177.269 +19,1.7515,7.608,91,2.4557,0,463.216,4.362,161.003,8.9166 +20,7.9943,5.0112,4.338,2.1066,1,158.913,1.8779,804.412,13.642 +17,6.0256,6.8695,359,3.2915,0,4.5267,0.04,606.724,176.217 +23,4.818,7.9191,5.391,4.5881,0,401.121,1.7207,185.344,216.454 +19,9.1572,5.8302,7.968,4.733,1,402.234,1.9151,755.072,196.643 +35,2.2008,9.0892,8.424,839,1,309.413,2.3648,45.996,12.8992 +20,5.4336,9.4199,4.012,1.3091,0,289.785,2.041,64.172,237.881 +19,1.1022,6.432,4.298,4.0582,0,457.454,88,870.819,12.7137 +18,5.2179,4.0237,1.482,2.5914,0,8.8249,2.3006,267.695,12.8633 +21,1.5067,2.346,475,2.2652,1,308.269,8.702,372.312,3.8037 +26,2.0694,3.2942,6.412,3.5531,1,2.4885,2.6616,997.299,3.5693 +21,2.0577,5.3687,644,3.1996,0,7.0432,5.549,513.033,4.0488 +23,6.8429,9.1079,7.338,4.8536,1,218.636,1.7565,562.918,142.037 +16,7.7144,8.4655,5.391,2.9199,0,410.604,3.282,292.584,9.9641 +13,6.2503,1.275,1.986,2.3299,0,366.566,1.2081,421.867,9.2612 +15,9.6596,9.303,5.395,2.7141,1,487.032,2.6462,506.536,3.0614 +19,4.3738,5.8927,183,4.0427,0,2.2424,1.825,26.586,9.1462 +25,3.5714,5.3212,4.387,3.0634,1,190.676,2.0689,245.764,9.0718 +11,8.8174,2.6638,7.996,3.2352,1,7.9395,6.779,604.462,148.995 +24,3.0124,8.9945,4.619,4.8572,0,1.8481,2.7683,191.815,9.3218 +16,9.669,9.2737,1.487,3.092,1,132.199,1.8704,557.923,10.0503 +25,1.1094,4.0261,7.238,1.9014,1,12.2236,3.177,709.152,6.541 +13,9.7289,8.903,1.868,3.4566,1,210.014,467,206.275,3.1561 +23,1.3884,3.8395,7.385,3.2973,1,7.1941,478,748.419,7.2003 +15,9.0203,7.3682,4.794,692,1,244.284,1.536,366.088,1.0264 +23,5.7493,4.7594,4.537,2.3366,0,460.049,2.7348,992.579,4.889 +12,9.9367,1.2258,8.514,3.7145,1,374.094,1.0751,979.286,7.7989 +26,1.6642,9.2793,7.086,2.4952,0,421.089,8.947,800.609,3.4955 +17,5.9847,4.541,329,3.8981,0,402.364,1.2496,349.294,159.593 +16,9.7237,7.3449,2.962,2.2544,1,194.813,1.2287,937.838,6.7384 +18,5.7079,3.6717,8.709,4.9166,0,354.481,7.155,998.791,147.727 +12,6.6646,1.888,183,1.4645,0,377.128,2.755,467.656,154.533 +14,7.2617,1.1953,5.453,4.606,1,10.2824,3.259,618.443,10.7349 +23,5.0909,4.9622,7.278,2.1501,1,430.131,1.7976,1.5927,10.7786 +19,6.648,6.8996,6.219,2.7085,0,228.874,1.1905,5.3098,139.551 +17,6.2588,3.3474,7.605,1.7455,0,818,2.7074,505.592,6.299 +15,9.1104,6.9549,7.257,1.2114,0,321.692,1.3912,613.221,5.099 +25,1.409,6.9864,692,3.3603,0,338.382,1.5105,319.269,154.806 +29,3.5287,7.0394,8.215,1.8856,1,275.881,2.7847,10.8139,146.046 +15,9.5537,4.9252,6.457,3.1568,1,10.6208,1.5049,784.449,11.4331 +18,9.0124,9.1489,4.024,3.8954,1,241.139,1.5059,424.572,210.184 +19,5.1009,4.892,4.719,3.805,1,200.064,1.0895,65.236,12.207 +22,6.5812,4.5027,7.167,1.8765,1,487.343,2.1312,653.699,7.2839 +26,3.4964,1.9938,8.763,2.8395,1,412.339,1.1767,55.137,171.248 +25,2.6931,3.0766,2.722,2.2483,1,38.095,1.765,186.705,230.977 +16,5.1733,4.233,3.421,4.354,1,9.0537,1.3422,619.921,176.851 +24,4.1802,6.3354,9.307,4.3938,1,16.552,1.5862,328.863,218.123 +20,6.2529,2.4854,5.785,1.7187,1,189.856,2.4811,820.934,2.7051 +24,1.6996,3.0416,179,4.587,1,246.314,1.2412,201.265,2.9037 +14,9.7696,7.7081,6.637,8.379,1,1.5112,6.902,298.237,3.7105 +14,9.8759,3.2722,9.908,1.835,0,296.505,1.711,445.903,168.685 +20,7.2835,2.422,8.235,2.8212,1,178.928,2.8125,742.613,9.353 +20,5.8249,1.6906,7.457,3.2839,1,280.839,2.0796,723.543,11.4651 +21,3.7857,7.7486,208,1.6569,1,4.489,9.251,343.739,6.2861 +16,8.3242,1.2971,8.761,3.3375,1,160.717,2.889,515.645,176.665 +16,7.1626,4.5375,5.258,4.6887,1,384.333,1.0282,241.892,202.884 +28,2.4636,5.0693,8.893,3.2601,0,250.541,2.9498,772.662,3.8451 +15,9.1983,6.8739,3.298,7.928,1,394.444,576,204.743,4.6256 +21,8.4028,6.3328,621,2.8983,1,34.948,2.9989,821.153,8.1456 +16,9.5482,8.1072,476,2.7095,1,42.746,2.277,937.495,6.724 +12,7.5315,4.475,2.698,4.3535,0,3.722,2.1397,99.17,12.7569 +20,6.5207,2.9644,7.152,1.7515,0,130.663,2.2213,858.393,180.619 +23,4.7642,2.8013,9.571,2.1147,1,274.401,2.0387,229.482,190.386 +15,9.3946,1.4602,691,2.9933,1,470.509,2.3328,422.348,5.2028 +13,8.7946,2.8918,8.869,2.6221,1,339.895,1.4155,9.7948,4.214 +19,1.407,3.0977,453,3.5951,0,228.294,1.623,172.906,8.7287 +25,1.2373,5.2188,7.716,2.019,0,6.5071,1.0733,5.92,3.5454 +24,4.3882,6.637,843,2.8176,0,246.608,1.9269,644.677,2.2031 +18,8.295,3.811,7.109,6.084,0,220.543,1.9387,537.855,5.822 +14,9.8855,7.1947,5.078,1.576,0,389.222,5.856,917.843,9.4547 +22,2.3538,3.3617,6.259,3.3081,1,206.674,759,468.378,141.082 +19,6.3472,2.9028,7.005,7.871,1,159.419,1.4601,645.884,173.587 +23,4.428,5.4119,2.531,1.5442,1,4.486,2.1858,407.581,5.3475 +14,9.7292,2.372,8.096,3.515,1,2.3251,2.5584,831.162,196.479 +8,8.5791,7.979,9.503,3.254,1,219.567,2.595,927.112,8.081 +19,8.545,4.1797,4.652,4.552,1,173.431,2.7769,437.414,10.6571 +27,5.2182,9.4291,7.011,2.8863,0,277.662,2.7832,9.1874,151.938 +22,4.7334,7.2151,737,7.363,1,355.964,238,17.19,6.9903 +21,3.4607,8.813,6.622,1.2614,1,2.2003,1.5192,723.339,164.086 +32,1.5074,8.4632,5.471,2.2961,1,248.109,1.7614,332.015,208.093 +20,8.7825,7.323,8.816,5.467,1,430.986,1.6611,787.531,2.1448 +14,8.3161,6.1095,4.489,4.9682,0,227.583,1.8473,752.262,12.3015 +14,9.9975,8.2029,611,8.268,1,260.621,1.5101,697.359,4.505 +12,9.9697,4.0411,8.446,3.9066,1,243.396,8.814,816.075,6.7098 +13,5.9989,2.215,674,4.1492,0,194.896,2.871,75.899,3.2866 +14,7.9209,5.1202,8.493,4.9723,1,5.506,6.251,636.262,149.826 +13,9.5029,5.4884,1.385,2.1433,1,6.3178,2.2208,1.4185,5.9684 +10,8.6468,5.3833,308,4.3705,0,8.9545,7.232,52.052,6.7776 +25,3.2261,5.6507,9.344,4.7877,0,396.282,2.4891,59.93,4.9351 +23,5.0549,9.487,1.477,8.645,1,137.666,1.2105,961.039,5.8513 +28,2.1624,9.0225,8.097,2.3972,1,474.062,1.2434,653.977,5.4026 +20,9.5865,8.7572,8.232,3.001,0,405.085,2.6055,579.719,167.489 +20,6.4556,8.0142,7.087,3.1036,1,34.227,6.429,545.782,229.394 +24,3.0578,9.4343,1.313,2.907,1,360.197,5.689,11.226,11.7656 +19,7.0453,9.849,6.674,1.0206,1,2.3816,2.9562,433.344,144.093 +18,6.5632,2.6512,8.891,3.9895,1,284.195,1.6218,143.012,196.345 +23,4.2235,4.9506,4.255,1.863,1,470.528,5.716,6.2171,11.4265 +24,2.022,8.4653,4.135,4.0311,1,1.9555,4.974,336.175,7.2486 +22,7.0442,5.0517,4.429,1.332,0,145.508,2.585,648.988,228.234 +21,5.6828,7.4803,823,3.2841,0,2.5756,1.7995,868.129,217.478 +14,7.9509,1.3896,892,3.938,1,284.871,3.451,812.262,5.2886 +19,5.6815,2.5241,8.692,1.2561,0,5.81,2.6607,301.743,168.738 +16,8.6696,7.3178,9.979,3.6096,1,239.625,1.3317,5.5537,155.313 +22,5.9672,1.6473,5.852,1.402,1,359.975,2.9681,408.651,155.912 +18,6.0484,3.5136,7.512,2.5559,0,8.2219,8.453,321.631,199.345 +15,8.8899,2.6487,2.027,4.5762,1,377.682,1.5865,377.552,161.785 +21,4.6313,3.4986,6.675,2.482,1,3.0102,5.193,563.508,12.4321 +26,2.2061,7.0832,6.497,4.0554,1,7.4812,1.3191,4.0109,203.056 +25,1.259,3.6785,9.012,3.264,0,140.055,5.296,377.098,6.3562 +20,7.7962,5.5526,8.308,634,0,39.805,9.217,563.047,163.014 +17,6.5828,9.993,9.385,5.966,1,425.068,8.096,436.661,168.365 +22,7.3367,8.0502,8.688,4.9705,1,11.019,8.493,670.557,208.877 +30,2.9167,3.6989,8.687,9.009,1,4.7892,2.9095,19.427,239.594 +21,2.2273,6.4853,637,4.4838,1,423.977,1.153,16.229,133.812 +27,1.1309,7.2539,846,4.9547,1,324.684,1.4906,314.796,11.6259 +24,4.1553,2.0966,6.075,1.9189,1,7.8928,1.8877,11.0712,144.164 +24,6.3093,8.8467,3.804,3.1552,1,278.858,1.9823,243.899,158.083 +22,4.5302,6.1622,565,3.8955,0,436.186,2.2636,9.6035,171.116 +22,4.9373,4.2873,6.777,1.9632,1,3.4757,2.2829,407.958,6.7493 +15,9.1374,1.8234,3.282,8.091,0,4.1861,2.8665,714.342,11.6888 +28,4.1343,9.423,4.678,2.1688,1,136.804,2.267,293.673,8.9021 +23,5.6259,7.5507,6.817,3.8594,0,326.131,2.4711,1.3694,9.306 +15,8.0529,2.0802,9.118,3.9038,1,8.9004,1.5969,561.497,146.286 +26,4.5689,3.3771,8.254,1.1527,1,408.184,1.973,695.022,209.955 +24,6.5988,8.0967,4.506,8.748,1,375.215,1.4344,397.403,221.153 +14,8.7613,6.9568,3.878,4.6028,1,280.502,8.293,30.403,12.4182 +16,9.5457,7.6578,2.398,0.22,1,5.8034,9.401,495.731,183.812 +23,2.3237,4.412,3.724,3.6737,0,49.411,1.0816,11.0227,170.979 +17,9.3393,7.1648,111,2.321,1,245.017,1.0219,647.487,5.4936 +18,5.429,3.8649,9.711,4.1895,1,226.037,1.5995,735.964,1.5099 +23,3.3242,2.1126,5.739,4.5271,1,497.785,7.429,707.584,179.486 +22,5.1322,6.3268,1.278,1.4871,1,431.934,1.5499,33.538,6.7847 +21,9.8203,9.7601,3.528,3.697,1,228.184,2.7487,844.284,131.852 +18,5.4336,3.106,547,2.4034,0,209.401,1.2179,94.738,12.5775 +18,3.9588,4.6097,5.329,1.4923,0,4.7955,6.679,304.103,19.629 +21,6.7006,6.74,355,2.0857,1,463.256,1.0406,270.092,154.715 +28,3.1613,5.4151,9.508,3.3249,1,421.887,2.6307,707.065,203.315 +30,1.6828,8.4343,2.754,1.0491,0,155.001,2.8251,711.199,180.537 +30,2.1599,7.6174,162,1.7848,0,376.661,2.6601,515.313,23.996 +20,2.1524,583,764,3.9128,0,381.365,862,924.087,20.733 +27,2.3671,9.9842,5.802,3.2188,0,11.3955,1.1635,154.852,5.0658 +32,2.2494,7.524,1.378,1.6314,1,306.828,2.9248,482.593,230.733 +18,6.7679,8.639,417,3.3215,1,12.7514,9.716,4.4855,8.1632 +24,2.6369,6.512,3.796,3.8266,1,394.943,4.136,6.2129,145.882 +20,4.111,8.5629,6.228,2.9624,0,7.6905,8.463,6.3148,225.924 +15,9.0711,1.1238,1.118,1.1975,1,334.453,2.8919,49.687,5.14 +20,5.2657,3.4774,3.133,12,0,163.006,1.2476,593.075,205.752 +22,7.008,8.7642,4.178,4.0142,1,1.8091,2.8016,1.3453,228.757 +18,2.5509,2.0166,1.595,4.1132,1,6.1852,3.122,636.221,20.49 +24,2.7306,7.824,5.061,3.488,1,32.745,2.2982,494.804,196.601 +24,1.3678,7.8812,852,3.829,0,11.9957,0.28,231.564,6.3507 +24,2.5204,8.3549,465,2.9261,0,315.518,5.925,2.4949,9.7704 +21,3.5073,1.6265,5.198,4.1051,1,207.411,1.8483,164.542,18.248 +27,2.5931,8.5435,2.479,1.9483,0,346.357,1.3034,604.329,2.836 +30,1.7983,6.8677,954,0.99,1,246.474,2,662.252,213.209 +29,2.0857,5.2008,4.239,2.9381,1,154.274,2.9202,650.591,5.0462 +20,5.147,8.3025,9.151,4.1315,1,7.291,1.581,161.631,135.554 +23,2.857,4.1925,7.242,2.443,1,170.549,5.749,912.102,2.5214 +19,4.2784,1.9399,8.156,2.9848,0,317.447,1.9207,416.843,4.4446 +23,5.5308,2.8485,8.719,3.2159,1,370.237,2.6896,770.327,14.052 +18,7.2136,5.0516,9.726,3.0118,0,8.017,2.3929,174.816,152.314 +26,1.3538,5.3133,7.632,3.2502,0,332.136,1.3967,475.863,6.474 +20,8.1947,8.0558,6.084,3.1569,1,8.964,2.2364,526.306,2.8583 +19,6.6511,7.9135,3.654,652,0,11.091,6.243,772.652,131.893 +24,1.7358,5.8137,1.816,1.1747,0,265.659,412,625.304,201.753 +19,8.8622,7.8079,6.867,3.095,1,144.601,1.71,405.309,4.8347 +19,9.2879,1.9177,9.949,885,1,330.798,2.4397,28.969,165.976 +23,1.5497,5.006,4.674,3.1737,1,477.888,1.3003,973.227,9.2611 +27,3.4919,8.7363,7.237,3.3269,1,7.4446,1.7077,291.685,226.341 +13,8.2558,7.555,4.951,1.1959,1,285.255,1.2665,138.179,1.9818 +17,7.7343,2.4669,4.319,2.9907,1,46.165,1.5421,307.413,9.592 +26,2.6607,6.9532,4.103,2.6705,1,8.8264,2.653,333.667,2.9834 +24,2.8841,4.0945,5.046,1.3035,0,183.425,1.4344,136.581,187.787 +24,4.3342,8.7631,3.669,2.3149,1,6.1808,224,711.064,221.465 +22,5.3607,2.9798,7.488,4.5481,1,321.019,2.3995,622.973,197.394 +16,6.5643,1.187,8.743,2.133,0,334.571,1.8532,323.449,17.228 +19,4.3202,3.1966,8.829,3.1492,0,332.091,2.1912,99.307,1.382 +27,5.1628,5.7808,2.277,1.768,1,271.064,2.7033,658.461,5.1315 +19,7.7272,3.7594,8.959,389,1,37.313,8.586,706.154,224.491 +27,1.3301,5.3487,3.416,4.065,1,1.7939,1.5092,561.611,14.947 +28,3.2719,8.766,3.093,3.8912,1,478.757,1.8075,556.059,11.2398 +22,7.4201,9.1249,7.268,1.7513,1,11.1048,1.0362,2.9822,156.555 +15,9.0569,2.6597,3.047,1.1381,1,6.0781,2.5382,773.197,4.2863 +22,5.6051,4.6214,53,3.7366,1,470.568,2.0927,911.633,214.289 +24,5.789,5.4914,3.736,8.498,1,415.218,2.2002,131.041,157.513 +33,1.9645,9.4911,7.215,1.2325,0,382.435,2.424,797.674,11.3099 +23,5.0267,9.9862,327,2.1547,1,5.2373,7.743,538.964,10.977 +22,5.7936,2.3541,6.296,1.6572,1,403.765,2.2369,292.456,197.371 +27,3.1822,7.2698,6.601,2.927,1,304.512,2.3214,921.675,7.3888 +23,3.4232,3.7803,7.337,1.6892,0,365.954,2.5272,2.7197,3.2912 +21,4.3956,811,8.971,1.9648,1,489.035,1.4656,281.318,4.4561 +19,1.1806,925,4.326,4.3144,0,9.7221,1.5126,887.387,1.9473 +19,3.8987,4.6057,1.664,4.4227,1,252.191,2.945,486.204,12.1887 +26,2.903,4.8833,3.189,4.1386,1,376.676,2.5564,602.933,162.542 +19,3.9475,2.257,4.322,4.3242,1,216.828,1.6005,75.227,224.156 +27,2.0779,6.8693,7.139,2.8486,1,2.7327,1.7833,156.494,180.196 +9,9.0147,2.94,131,3.2312,1,5.5719,3.643,223.023,139.947 +21,6.3423,5.5989,3.158,2.7859,1,301.046,1.8055,998.643,207.349 +14,7.1119,3.1992,7.798,3.9279,1,142.502,126,245.078,214.131 +18,8.1025,1.6713,6.709,2.755,1,6.892,2.7696,54.381,170.973 +23,5.486,4.0717,7.317,5.554,1,169.946,2.5906,30.572,1.3508 +19,1.7823,2.3227,8.118,4.0479,0,10.049,583,852.905,7.2023 +19,5.834,5.348,7.832,3.8029,1,1.197,1.7814,962.138,8.0685 +15,6.2816,1.9883,6.822,4.1015,1,7.5907,1.8081,149.879,239.372 +19,7.709,5.0841,4.397,9.521,0,441.539,2.4103,604.568,11.1399 +20,4.8849,1.5738,9.836,1.3581,0,6.019,2.2708,813.461,182.852 +31,2.1482,6.7097,5.691,1.4788,0,386.925,2.9797,824.798,195.311 +27,3.554,7.5394,2.028,2.5404,1,376.731,1.0525,446.043,156.782 +17,4.2677,1.1039,2.928,6.694,1,282.119,3.739,233.123,4.386 +17,6.8133,4.678,6.936,1.9269,1,10.4224,1.7204,393.269,4.644 +22,6.137,7.087,9.247,9.108,1,43.903,2.292,753.641,196.507 +23,4.2049,5.9818,1.787,1.3238,1,237.538,8.574,99.384,177.418 +10,9.8786,2.644,823,3.5319,1,8.6603,7.086,558.746,12.8668 +18,6.452,5.2762,8.815,4.2741,1,214.511,2.4074,203.173,5.9728 +24,3.135,5.1746,9.153,1.145,0,9.7459,2.2612,5.1515,2.0811 +27,1.916,9.2435,2.764,2.8295,1,188.004,6.102,944.253,3.9424 +28,2.3757,5.4908,3.773,1.803,1,248.344,2.6078,488.203,139.278 +25,3.2136,5.83,6.602,4.262,1,17.995,4.042,719.427,130.998 +22,2.4461,4.0165,3.299,3.5254,1,328.522,3.277,663.579,225.904 +31,2.6791,9.4908,8.772,3.678,1,467.959,1.0533,891.963,229.746 +26,3.5659,7.7719,1.076,4.0699,1,174.075,2.6596,27.343,138.242 +24,2.5604,2.8541,38,2.3712,1,17.787,2.0863,447.303,201.944 +17,9.0709,8.4421,2.085,4.299,0,369.151,1.1842,914.485,19.494 +26,1.7221,4.324,2.861,8.342,1,265.295,4.718,58.972,18.057 +23,5.7206,8.2867,1.129,1.2486,1,21.442,2.1404,8.0648,10.4961 +25,4.6936,8.2289,657,6.725,1,406.904,1.7974,202.539,9.3458 +13,9.8414,1.8887,7.556,3.9877,1,445.518,2.963,244.843,6.3392 +29,2.1984,7.0114,1.643,1.1434,0,295.293,2.2967,993.848,224.903 +16,4.5807,2.9064,9.139,7.776,0,9.2552,3.064,231.898,200.262 +16,9.7252,2.9749,368,3.1156,1,233.143,2.1846,870.987,4.2508 +12,8.7896,2.9635,6.706,3.854,0,252.185,7.723,8.7315,6.0591 +21,8.3536,7.2557,2.254,2.245,0,216.104,2.8857,189.903,139.519 +19,3.3211,2.2983,2.403,5.336,1,131.216,578,873.335,9.9264 +20,2.538,91,5.747,12,0,236.161,7.151,899.947,5.1335 +19,7.0178,7.1524,5.606,3.485,0,223.273,1.497,184.434,189.878 +9,9.3644,1.7118,7.687,2.8112,1,10.4747,2.372,237.554,373 +17,6.0109,1.0448,7.578,1.0494,0,451.715,1.0322,535.262,8.2386 +20,6.1445,2.3752,6.707,1.165,0,44.267,1.4917,6.2156,223.044 +21,3.5198,3.799,4.491,4.0548,0,379.808,1.3408,945.831,182.584 +17,7.9254,4.7591,8.906,2.5091,1,200.473,1.3818,368.456,9.6308 +24,2.6834,4.457,6.226,3.4926,1,185.171,2.6371,494.395,222.895 +27,3.9131,9.7057,9.902,2.2638,0,358.233,1.5159,11.3998,216.193 +23,4.8289,7.1606,8.194,1.1886,0,30.406,2.8231,4.2219,1.262 +14,5.5685,3.2319,443,4.852,1,300.299,4.432,473.139,3.0706 +18,3.1817,3.187,3.206,2.8282,0,6.2056,8.408,130.451,9.2935 +29,2.0335,4.4854,5.719,6.549,1,309.142,1.9695,634.016,223.055 +23,6.4956,6.2624,7.215,2.0305,1,450.932,8.494,796.536,202.609 +18,3.5977,1.4637,5.503,1.6467,0,4.2908,1.0418,4.1354,1.1463 +22,6.2311,1.8893,7.861,1.0704,1,169.586,2.7031,61.61,12.2959 +28,2.3893,8.5943,2.827,4.6672,1,254.507,1.6157,81.747,172.861 +15,5.3303,2.5625,1.839,4.4046,0,343.005,1.004,445.034,6.6221 +22,5.7933,3.8019,539,9.957,1,4.4817,2.3301,960.108,173.406 +29,1.4664,8.7127,5.733,1.7607,1,436.403,212,12.1983,8.8734 +21,4.0294,6.6315,6.886,3.8116,0,2.0273,1.691,329.755,6.5774 +24,2.2097,3.4171,3.261,1.0425,1,428.845,299,237.774,9.4216 +25,1.5704,6.837,6.136,2.9578,0,1.3826,5.306,996.229,228.192 +6,9.9096,1.968,522,3.499,1,7.6762,1.873,301.235,217.271 +28,3.9012,7.3564,993,3.2699,1,400.162,2.705,394.047,219.348 +14,8.2889,4.8702,7.018,3.532,0,430.082,1.446,84.914,220.171 +28,3.2918,8.1318,3.681,3.5335,1,491.133,1.5492,930.664,4.2786 +19,7.1335,9.5464,6.713,4.824,1,5.7857,6.749,93.837,215.055 +24,7.8421,9.2579,8.317,1.7325,1,263.226,1.1508,562.586,5.0946 +24,6.3607,9.0927,8.526,4.393,1,3.8578,1.481,666.669,201.153 +20,5.2442,5.1217,1.722,109,1,7.8204,1.3502,35.568,130.056 +23,4.7066,3.6014,4.863,1.441,1,8.7247,2.2443,611.087,5.7591 +24,4.1398,4.6504,7.339,2.433,0,3.1694,2.7356,309.721,9.5645 +17,9.3658,6.899,774,3.256,1,44.649,9.008,748.568,10.4011 +20,8.4756,8.84,7.847,504,1,6.3178,736,314.138,175.961 +13,9.6852,2.0699,2.282,4.2285,1,31.467,2.6818,880.617,145.445 +31,2.1187,9.1819,1.925,3.233,1,312.874,2.9364,152.049,196.028 +22,7.5778,8.1518,0.59,1.441,1,9.9323,1.3001,576.087,9.5233 +18,9.4451,9.7886,7.411,3.5739,0,499.206,1.3674,525.469,178.462 +22,2.6311,8.8025,3.191,4.3102,1,173.684,4.325,27.108,190.273 +23,1.5985,2.7994,1.047,3.3056,0,452.547,1.4266,3.7722,1.5155 +16,7.6701,1.0596,7.167,1.526,1,474.142,0.91,157.048,9.0153 +19,6.1703,1.1224,2.997,4.2896,0,474.494,2.9831,968.272,212.637 +11,8.5765,2.9122,1.664,3.6623,0,376.419,5.545,941.891,169.194 +27,2.258,6.1418,1.477,1.8923,1,12.6903,1.1358,12.8108,10.0427 +20,8.1574,8.0432,3.149,1.6432,1,6.0328,1.8495,381.112,4.3914 +26,2.8146,8.9925,5.927,2.3991,1,284.942,1.0354,470.475,2.3187 +24,2.4729,6.2375,3.584,4.3355,1,18.002,1.4233,483.291,5.5044 +25,2.4784,563,207,1.2603,1,41.552,2.9205,305.832,5.8726 +17,8.3312,1.8632,969,5.048,1,372.495,1.5242,913.823,8.8959 +14,6.9868,9.973,2.905,4.3232,1,138.234,2.731,909.406,4.2461 +16,5.7076,3.6332,6.597,1.314,1,8.508,1.292,2.8739,3.5051 +18,4.2295,5.0135,985,4.555,1,11.8658,3.595,653.501,202.562 +15,8.8948,434,5.607,1.5287,1,283.558,2.8335,8.3619,5.9889 +16,4.532,3.4848,1.199,2.5411,1,3.9499,3.862,601.523,134.785 +18,8.3494,1.7918,2.116,6.615,1,329.136,2.2097,868.224,4.7832 +22,4.9522,6.4707,1.722,4.5113,1,335.848,1.338,653.036,11.8021 +18,4.3925,4.6427,672,3.7492,1,8.4697,1.2202,474.238,6.6411 +18,5.1641,4.9532,6.713,4.6208,0,298.159,1.9777,958.317,2.0832 +25,3.7124,4.2769,4.634,3.4161,1,303.486,2.1828,749.133,235.722 +26,7.7285,9.5602,8.311,9.235,1,238.989,2.7959,256.816,10.9873 +17,5.5245,2.1474,989,1.5413,0,476.623,7.707,393.068,9.4331 +22,3.0899,5.1666,1.447,2.4342,0,5.4082,2.0942,762.277,4.7789 +12,9.0962,7.3602,3.065,3.0363,1,203.313,1.0269,2.9121,11.8888 +25,4.455,5.5684,7.659,4.6323,1,44.146,2.1528,7.3324,152.453 +19,5.892,9.2902,3.058,1.9198,1,193.157,4.263,860.829,7.3116 +9,9.1582,3.7797,4.084,3.5154,0,21.232,1.3726,5.2517,11.53 +15,6.6181,4.6368,3.016,4.805,0,334.137,5.509,681.729,5.6899 +21,2.0521,8.852,802,7.619,1,332.782,1.1993,325.717,12.6651 +15,9.4585,06.09,9.394,4.3135,0,1.1451,2.1469,827.633,188.931 +16,6.6494,2.8821,5.485,2.1035,1,227.849,0.7,848.873,1.4451 +19,4.0142,1.6031,7.878,3.6621,0,166.756,2.0547,953.806,12.4281 +27,2.2534,5.4453,6.584,1.4677,1,313.848,1.4878,10.4594,9.5847 +12,8.1462,5.3231,5.143,1.6699,0,277.851,2.761,428.619,1.777 +18,6.5807,7.587,897,1.357,1,325.431,1.1601,578.219,225.722 +23,5.8011,6.9822,6.427,4.857,1,326.884,2.6076,916.896,6.2362 +17,9.045,6.2377,1.554,4.0673,1,12.7436,2.9679,273.849,135.507 +12,8.0974,1.8902,4.144,4.696,0,12.3232,1.1068,8.0911,8.9429 +18,2.3651,4.6943,6.291,4.9975,0,185.141,1.646,209.747,6.5072 +22,3.8055,7.2032,7.822,3.0251,0,12.0979,3.906,500.623,12.6523 +26,3.2364,5.2944,685,4.2686,1,341.404,2.3644,68.424,165.367 +20,7.6955,3.9549,6.715,3.333,1,301.433,1.9674,693.767,188.528 +23,1.3018,3.2234,149,1.9473,1,10.8194,855,8.3917,152.142 +19,6.129,6.1039,3.461,3.3483,0,442.052,1.1739,763.796,12.6311 +24,7.8621,9.3911,429,5.322,1,230.331,2.4335,663.637,186.543 +17,8.8909,6.7174,7.195,2.4445,1,6.3527,1.2393,413.468,12.4189 +22,4.0787,7.475,9.526,2.2134,1,10.6483,2.2673,575.375,233.814 +16,8.3913,4.6068,2.641,1.0802,1,269.925,8.856,770.063,12.6418 +29,1.9957,8.9082,877,1.5013,0,169.212,2.1744,269.472,7.6139 +13,8.6181,9.446,4.756,4.8356,1,425.611,1.3992,940.633,10.7127 +31,2.1474,9.8888,8.567,1.4432,1,247.368,1.6361,14.639,11.7598 +30,4.5756,9.4907,552,1.0671,1,457.647,1.7962,903.201,6.8037 +12,8.1757,7.827,468,2.681,1,5.0913,1.3517,743.449,3.8098 +29,2.3493,9.3341,9.743,3.3548,0,334.297,1.3984,663.913,10.3532 +24,3.0633,3.6313,8.286,3.6255,1,442.892,7.971,9.2079,215.288 +20,7.5003,8.4471,1.316,3.7712,0,146.465,2.9573,919.815,6.1327 +18,7.4803,4.1838,9.218,1.842,0,6.7844,2.7174,302.377,8.6836 +18,6.7703,4.4086,4.507,1.9688,1,228.322,1.5821,748.156,181.854 +16,7.2455,6.3424,3.719,3.8698,1,480.667,1.039,885.953,1.9746 +18,5.8845,7.7448,4.611,4.5243,0,316.731,5.053,251.841,198.017 +23,3.2662,3.379,8.346,3.011,0,321.988,2.5618,915.455,172.867 +29,4.1113,5.9316,6.595,2.615,1,335.751,2.7924,615.822,131.943 +18,2.6344,1.8673,592,1.9832,0,1.9881,4.839,662.441,5.0275 +19,9.1761,3.4595,9.576,3.711,1,222.825,2.2036,915.368,2.2243 +13,6.2505,3.4797,1.478,3.7427,0,3.8786,1.8691,531.468,5.5613 +22,4.6077,4.6906,7.456,3.175,0,157.929,9.102,446.241,182.759 +23,5.1581,3.3414,6.361,9.287,1,41.08,1.3083,636.899,224.039 +14,9.5256,1.0736,1.875,2.0848,1,328.135,2.0318,558.483,177.093 +22,2.3802,1.4563,1.707,2.3132,1,497.786,3.039,7.0861,12.6628 +17,6.2761,3.344,8.703,2.0324,1,8.6077,5.671,188.687,228.164 +17,5.553,4.7025,4.197,2.317,0,198.527,999,2.3431,198.856 +26,6.5031,9.5445,6.546,3.5662,1,40.482,2.7066,11.7081,157.401 +23,1.163,1.1568,5.041,1.8463,1,10.7846,1.7217,732.551,9.097 +21,8.8491,9.4626,7.274,2.7388,1,7.6861,1.5703,1.4664,6.9056 +17,9.3891,7.3336,4.792,1.5168,1,213.806,2.1187,311.361,7.397 +23,6.0862,6.375,2.874,1.7681,0,191.863,2.9651,454.828,8.3339 +16,7.2699,6.4528,3.634,3.069,0,490.103,5.167,938.434,9.3453 +16,9.3025,8.2673,8.591,2.4525,1,228.126,3.993,333.737,225.449 +15,7.3651,1.0692,468,3.6152,0,430.473,8.844,785.299,178.049 +27,2.3729,5.0475,2.134,2.8027,1,443.983,2.7118,414.678,166.064 +16,6.1866,6.9709,9.346,4.0179,0,7.8936,1.2344,10.7506,10.2364 +23,6.4604,5.8682,7.966,2.217,1,357.652,2.3805,10.7855,8.1012 +19,4.8172,8.3278,557,2.4552,0,138.804,6.088,438.109,2.8699 +12,7.628,7.227,9.989,3.3499,0,4.7369,1.4808,6.7304,10.8839 +16,9.4093,6.907,6.949,1.1062,1,437.352,3.824,575.903,4.9282 +14,9.3301,5.3403,1.603,1.9296,1,146.217,1.2387,498.713,9.3842 +17,5.0576,3.7916,2.372,3.1242,1,172.683,7.868,70.551,3.7534 +26,2.0191,3.4027,6.924,1.444,0,161.995,1.6483,193.765,8.2559 +17,9.8636,6.2083,7.798,2.1849,1,10.0148,2.3412,59.7,1.0315 +21,8.5501,8.91,239,2.9942,1,217.252,2.8151,182.777,1.446 +25,2.122,4.9618,257,4.8369,1,214.146,8.515,725.011,208.778 +16,9.2876,8.2472,3.071,4.3851,0,204.376,2.2294,314.087,153.903 +21,8.8291,4.0216,598,1.4037,1,458.149,2.6568,618.272,14.104 +15,5.6695,1.0239,1.718,2.5361,1,169.876,3.746,88.385,12.3311 +17,6.3215,6.151,1.042,2.821,1,1.5189,1.7578,493.352,174.415 +17,4.591,5.133,6.789,1.2038,0,8.9219,1.8355,200.369,17.668 +27,1.4929,3.8015,7.791,3.8743,1,360.749,8.172,887.262,22.446 +19,4.0168,3.3724,5.009,6.166,0,295.429,675,364.994,5.8659 +22,8.2257,7.1794,3.638,1.2885,1,475.867,7.701,73.295,188.448 +31,1.0417,7.4282,432,4.7202,1,347.218,1.7542,326.895,237.878 +14,4.2015,5.085,3.884,4.1193,1,9.7121,5.893,305.233,6.965 +18,4.5835,2.2112,0.96,3.9091,1,6.0322,862,645.608,8.9757 +16,5.8366,2.7426,7.681,4.3228,0,26.038,2.1238,164.748,10.4649 +17,9.2787,5.4761,2.081,3.748,1,332.631,1.1949,868.304,19.724 +15,4.1171,1.4452,3.842,6.029,1,8.2818,1.963,393.748,3.298 +18,4.1226,1.3394,544,2.5828,1,300.847,1.1975,2.9085,143.669 +27,7.6375,9.4379,613,2.2212,1,432.514,2.9993,312.382,214.219 +23,05.07,8.042,4.682,1.5558,1,363.784,7.832,787.117,3.543 +20,3.0214,1.8065,8.101,4.1702,1,332.096,7.958,860.765,2.7738 +22,5.072,4.0657,7.676,2.3207,1,394.666,5.097,572.201,239.949 +23,2.2677,3.5562,5.052,3.015,1,5.2041,8.149,301.168,19.823 +30,2.5875,7.91,8.544,1.3748,1,10.1916,1.7243,532.576,16.738 +24,5.4853,5.1021,7.511,1.1431,1,1.905,2.8938,838.012,9.5755 +18,4.7703,1.2785,7.786,4.4374,1,7.2489,1.8231,322.877,204.951 +19,9.2336,7.3899,9.564,3.2372,0,456.591,1.2295,391.583,221.466 +20,4.2615,3.9689,2.665,2.8019,0,11.1072,1.1689,544.297,175.778 +11,6.2253,2.6292,2.676,2.5332,0,331.049,727,888.267,9.5543 +16,6.6904,3.755,889,3.2506,1,345.784,76,586.327,140.049 +29,1.1179,4.9776,7.722,3.7744,1,322.663,2.3916,215.539,2.3644 +14,6.9718,3.4312,9.265,2.7719,0,276.961,1.4705,9.8213,3.7925 +17,2.6023,2.4191,631,4.6914,1,243.065,996,10.4064,187.929 +10,9.6496,3.985,6.278,4.8842,0,20.996,8.581,950.747,7.036 +18,2.338,1.917,1.446,4.9767,1,458.449,01.07,824.188,1.1807 +22,4.7316,7.725,5.039,3.347,1,4.757,2.3499,768.196,12.1926 +21,1.7681,1.7094,1.557,4.6631,1,2.6745,1.3032,501.401,4.0927 +10,9.9719,439,1.281,2.0224,0,246.256,2.3679,675.814,7.0489 +20,5.5198,6.537,122,4.298,1,165.255,1.9012,136.057,9.572 +18,6.3585,7.7394,6.302,4.5459,1,204.115,994,624.687,12.5341 +33,1.6037,8.1383,359,4.5207,1,498.924,2.9061,812.673,6.8048 +13,7.7496,4.9351,1.052,4.1542,1,387.567,5.443,7.1517,11.6051 +22,2.8892,2.0537,3.228,2.033,1,438.704,8.269,303.189,8.8964 +19,9.0825,7.3723,1.689,7.945,1,184.287,2.4279,11.9176,1.9447 +25,2.8463,6.9971,9.417,1.6698,1,11.978,5.695,267.625,208.111 +21,2.7162,2.4627,0.32,3.8364,1,383.995,1.2033,774.799,6.7528 +34,1.3289,9.0341,334,1.1644,0,403.788,2.595,338.729,14.625 +21,5.2486,1.0437,8.399,2.3914,1,274.949,1.9118,692.787,136.752 +23,6.0836,9.8269,6.478,2.827,1,447.971,9.062,775.569,4.78 +30,1.5914,8.6025,7.102,3.0193,1,483.663,1.9321,818.472,719 +21,7.9797,6.879,636,4.6786,1,23.551,2.4379,874.642,205.664 +25,5.0796,9.3875,9.462,3.3075,1,11.1333,1.2117,601.659,11.9446 +21,5.7195,7.2231,207,3.9315,1,258.557,1.715,287.833,9.9472 +27,4.9669,1.9046,989,2.9094,1,494.767,2.9638,159.053,183.099 +23,4.6069,4.4216,831,4.1679,1,146.463,2.8937,508.672,7.958 +16,6.0368,715,589,1.3183,0,30.88,1.5271,11.2522,183.652 +25,2.3972,3.8966,6.624,1.0494,1,346.992,2.884,911.617,9.8139 +27,2.6374,7.416,6.488,4.6316,1,10.6964,2.102,448.055,13.239 +13,8.7561,3.8644,584,3.4674,1,29.423,8.059,874.254,180.585 +13,9.515,3.3029,218,3.3576,0,157.254,2.1984,712.178,131.235 +25,4.3598,5.9536,9.615,2.3365,1,427.105,1.0553,858.645,1.4825 +29,3.4367,8.722,5.344,1.8835,0,357.377,2.1563,885.119,174.864 +13,6.796,4.758,3.784,2.7785,0,413.133,1.102,6.2761,188.722 +25,4.6786,3.8547,762,6.028,1,9.9841,2.8236,728.005,11.0854 +19,1.2285,1.5824,5.245,2.2736,0,1.7287,0.41,234.282,10.5374 +25,2.4054,6.9535,132,2.2768,1,425.263,2.052,989.404,6.0462 +18,7.4438,1.0572,7.362,2.6917,1,193.377,2.3436,780.619,154.599 +16,6.9303,6.6481,7.322,3.1734,0,8.9861,1.204,1.3727,211.677 +24,1.2439,2.8618,1.651,4.7866,1,4.5948,1.3967,928.142,157.432 +24,2.9977,1.9892,9.567,3.2608,0,25.825,2.8015,299.383,185.118 +26,3.0797,9.3635,2.239,4.4186,1,7.5064,1.7698,422.487,200.989 +12,7.047,1.852,4.577,2.7815,0,283.346,1.9805,616.163,5.4275 +21,1.1774,4.3778,1.147,3.1346,0,363.653,584,917.147,9.6505 +27,1.937,2.163,6.033,3.492,1,267.529,2.0115,928.053,10.463 +19,8.1992,4.8359,3.755,6.663,1,45.185,1.1651,567.837,134.136 +24,2.6069,5.0105,3.532,2.8984,1,7.7785,1.3806,323.557,1.1804 +18,6.8747,3.2166,827,1.9786,0,246.977,2.4242,286.398,141.218 +18,3.1436,1.3216,96,3.9941,0,8.1595,1.5714,370.753,2.1245 +30,1.895,3.7639,7.979,2.7159,1,437.951,2.9606,188.709,193.577 +28,3.1885,6.7226,5.714,4.4115,1,46.612,2.3904,673.135,231.125 +19,7.5004,7.824,9.861,4.8617,1,199.998,2.1858,532.524,6.9542 +17,8.7013,5.3075,5.894,7.382,1,152.874,1.7661,77.573,12.1588 +14,8.472,5.8983,554,1.9741,0,139.658,1.2372,10.317,197.565 +14,4.5747,2.1962,506,3.3249,0,429.864,1.586,405.907,7.5517 +16,7.0128,2.8733,8.832,1.5274,1,341.221,555,247.464,3.7867 +24,2.8449,1.619,8.412,1.3352,0,440.297,1.403,539.834,177.375 +21,3.6383,2.493,3.459,4.0687,0,5.8758,2.8765,473.562,167.607 +9,9.067,2.2489,618,4.9019,0,238.014,9.696,45.507,136.787 +27,1.117,5.1945,4.896,3.869,1,33.809,2.1018,322.497,226.665 +28,1.7696,5.6269,9.672,2.6184,0,448.545,1.7829,729.577,229.229 +29,2.871,9.4495,0.95,2.2126,1,19.101,1.715,486.752,206.772 +26,1.2388,1.9557,9.838,2.6982,1,156.545,1.7377,210.221,7.0325 +27,2.6329,6.4168,8.664,2.3142,0,456.483,9.069,551.973,5.4088 +24,6.2474,8.1726,9.096,2.5144,1,2.3767,2.6596,600.705,200.578 +25,4.7928,5.6024,2.173,1.0173,1,239.798,2.7576,3.1166,156.327 +13,9.034,2.55,831,4.5187,1,229.313,1.9336,211.741,9.507 +14,8.357,2.6255,7.089,3.7727,0,7.3028,2.5918,24.998,9.8342 +16,4.0764,3.925,9.628,3.4049,0,197.475,1.799,255.594,20.48 +20,3.3348,3.0544,5.713,4.7496,1,36.13,3.012,246.457,3.9179 +25,4.4172,7.446,852,1.422,1,183.434,1.6772,278.925,226.554 +19,6.3127,4.752,5.974,4.058,0,15.483,2.5395,27.01,151.972 +21,3.4126,2.193,6.866,4.1307,1,390.948,9.463,885.228,189.926 +18,6.6173,7.0623,2.203,4.9921,1,494.358,1.6442,326.451,8.9008 +22,4.6847,7.8265,3.941,2.8922,0,389.676,299,356.265,140.855 +28,5.9684,4.5532,5.985,294,1,423.172,2.9599,273.515,179.998 +24,4.9251,6.9807,3.741,3.9023,0,46.975,2.3009,967.899,10.4431 +23,3.6502,3.8795,3.749,3.687,1,400.886,1.0843,540.136,11.7105 +13,9.5361,1.5991,1.331,2.7001,0,490.177,2.949,614.441,139.699 +16,7.8725,3.9815,9.407,1.3877,1,373.642,2.773,738.132,1.5218 +23,2.261,5.7997,7.505,4.5751,0,330.761,1.3925,340.377,207.165 +19,8.8162,9.4805,12,2.2567,1,346.674,1.766,969.093,208.003 +14,5.3869,6.875,7.656,4.4923,0,450.041,1.1949,160.803,6.754 +16,9.051,5.0739,7.398,1.4954,1,341.504,6.581,463.236,211.157 +12,8.1987,3.2892,97,1.9368,0,380.603,9.497,153.985,178.847 +19,4.8269,5.0831,3.696,4.7356,0,10.8005,2.8422,792.472,11.5966 +23,1.2022,2.398,6.067,1.1966,0,456.325,1.2816,11.6245,8.3463 +20,3.4181,3.1303,4.528,2.8925,0,223.607,9.746,558.361,9.5851 +23,5.8747,8.1987,778,1.9426,1,8.0534,1.9223,11.3758,12.8261 +21,6.7013,5.5394,4.255,3.8708,1,399.894,2.0501,458.135,9.9005 +27,3.321,4.5058,1.539,6.465,1,178.197,2.9513,287.505,10.0857 +25,2.2542,2.8553,9.764,2.1861,1,9.206,1.6382,904.264,4.875 +12,8.5144,2.9804,242,3.4947,0,12.8126,2.2577,6.2565,169.875 +11,9.8596,3.831,7.177,2.0351,0,1.7474,1.1465,653.438,146.302 +24,5.7312,8.3557,1.432,2.927,1,4.5311,5.131,698.299,238.056 +28,2.5451,9.6721,329,3.5256,1,296.312,1.2895,890.092,3.3899 +24,3.4508,4.3866,442,2.516,1,433.109,1.2563,878.952,2.7297 +27,1.1655,3.9335,1.922,565,1,224.265,1.2618,977.286,12.3824 +16,9.2287,8.4655,0.45,3.0633,0,313.029,2.0863,26.137,3.6478 +22,2.0598,4.2691,1.572,4.5994,0,404.867,1.2178,282.077,146.549 +24,6.1886,5.5202,559,5.551,1,178.384,2.8625,40.332,4.7068 +23,3.4665,2.3094,6.637,2.9534,1,327.157,2.9482,542.201,11.592 +21,5.9876,7.435,624,3.6433,0,175.216,1.5701,37.347,146.715 +23,6.8628,5.3199,8.711,3.539,1,321.358,1.6753,742.893,10.993 +19,8.4677,8.0903,1.851,1.131,1,10.8804,1.2229,1.846,7.6796 +28,2.8578,7.8073,2.254,2.321,1,48.892,1.0668,2.7478,187.756 +28,1.099,2.15,6.613,3.9559,1,3.8089,2.956,718.896,205.118 +25,2.232,7.1564,4.688,8.036,0,252.616,122,88.429,6.6732 +16,9.1002,8.2005,4.994,4.1832,1,143.148,1.2303,778.782,195.214 +13,8.865,3.4611,1.282,3.2829,1,300.419,454,12.5921,9.3992 +20,6.3767,1.7261,8.057,1.6609,1,214.153,2.1788,935.624,11.703 +11,6.4047,263,6.171,2.5791,0,153.333,5.833,526.693,5.562 +18,6.9853,4.509,1.354,4.8279,1,12.5019,2.6539,744.872,150.174 +20,2.5783,3.5243,374,1.0822,0,9.1249,1.1234,209.036,2.4222 +19,9.2297,5.5491,8.104,2.4977,0,39.144,2.7514,553.308,141.993 +22,4.7689,1.8804,5.684,3.1224,1,11.11,2.9597,33.676,237.532 +29,4.4482,8.5967,1.086,6.901,1,386.763,2.3135,975.013,180.832 +23,5.6703,2.5776,3.728,2.176,1,242.519,1.8695,479.454,214.809 +24,1.4227,2.2643,2.427,673,1,3.6114,4.497,758.021,11.1407 +26,2.4966,4.8071,5.175,1.6235,1,8.2721,2.7992,60.72,3.4105 +23,7.6423,4.9885,8.434,3.697,1,446.452,2.3306,10.3356,6.9231 +20,1.7452,2.1509,4.363,4.0188,1,301.408,8.641,547.498,1.1767 +13,6.4284,2.7186,4.333,4.9866,1,9.2167,1.4055,544.814,12.0435 +22,3.2081,1.6971,9.054,3.065,1,351.882,203,718.552,15.592 +26,4.5037,7.1846,5.762,2.1636,1,411.631,1.977,328.689,10.1876 +25,3.5982,7.7009,5.662,1.287,1,165.327,3.758,862.046,135.169 +25,4.2011,4.6233,2.619,0.67,1,278.298,1.9546,626.377,7.6969 +19,7.4714,7.1409,6.077,1.6146,1,146.725,2.0147,4.8948,2.0606 +22,3.6741,7.3594,5.759,1.9685,1,4.1931,9.739,709.767,10.368 +18,6.0976,1.3828,3.969,4.6989,1,199.755,2.846,907.897,131.471 +28,5.2845,9.6618,9.907,1.9792,1,375.716,2.3369,686.316,235.832 +21,6.973,8.2103,8.819,2.4814,1,22.934,1.4902,386.197,8.3346 +14,9.4315,2.0448,7.496,1.2279,0,202.635,2.7557,594.742,162.665 +18,7.5931,1.8617,5.373,6,0,183.004,2.5675,179.684,19.743 +22,2.9345,1.2566,4.621,4.4967,1,229.458,2.0767,605.243,8.0494 +20,1.2806,1.3838,1.849,4.086,0,159.114,4.589,505.983,223.183 +22,3.3604,7.4816,3.057,4.8212,1,306.092,1.4912,3.5896,8.132 +23,6.3557,4.6965,774,6.542,1,3.1783,2.5933,328.671,232.753 +30,1.4628,7.8293,4.537,3.0244,1,403.694,1.8267,199.335,518 +20,5.4673,7.4625,8.823,4.9971,0,8.6583,1.6365,396.745,152.202 +24,6.3716,6.0461,1.479,6.923,1,316.722,2.8657,249.414,189.582 +21,4.1982,6.8637,5.083,2.1197,1,224.941,496,835.906,6.7215 +11,7.9382,1.836,647,3.9021,1,386.747,361,700.707,2.8092 +30,1.9594,3.1178,5.168,161,1,41.307,2.6785,742.714,5.848 +21,1.6762,6.3782,8.892,3.4489,1,10.21,1.156,367.259,1.7858 +16,7.5537,934,9.896,4.019,1,33.859,9.976,1.3412,130.328 +22,5.4594,3.298,1.158,1.1826,1,9.4954,2.7721,226.962,20.14 +20,7.1956,8.5189,0.13,8.004,1,6.1999,2.0735,757.745,1.5151 +22,4.9134,6.8402,1.303,4.5367,1,465.148,1.9445,606.808,2.7163 +23,3.2176,2.6537,6.812,9.023,1,8.2195,1.971,543.192,1.225 +17,8.3719,6.8796,3.727,2.022,1,11.4066,9.529,287.715,6.7747 +20,8.1947,7.9246,7.333,2.9381,1,6.5162,1.5916,8.4985,221.099 +18,7.2523,3.0679,4.055,1.7309,0,235.146,1.8899,787.018,6.6309 +18,3.4493,3.604,6.276,2.0285,1,459.804,9.171,4.8269,10.5795 +24,6.3121,9.3278,7.699,5.953,1,132.028,2.3861,6.8545,4.295 +20,4.2488,3.4518,5.482,3.7412,1,270.926,9.652,301.986,2.7908 +19,1.8242,1.0648,5.395,3.1978,0,205.729,2.143,577.204,4.3775 +11,9.2558,4.9186,882,1.8211,0,168.005,6.044,992.304,5.0504 +28,2.2314,7.6847,4.108,8.579,1,286.076,1.2252,9.9735,3.1269 +16,9.5521,2.2165,5.458,2.9673,1,279.446,2.7242,478.439,189.973 +17,5.0141,2.6949,462,3.893,0,179.683,1.2473,605.736,11.4539 +23,2.6662,2.4271,9.008,1.562,1,425.282,2.694,824.874,12.9545 +24,5.8771,9.9167,9.065,1.293,1,2.6586,5.894,692.718,8.9916 +14,8.8565,1.974,8.219,1.0717,1,4.2619,1.6334,809.664,5.0578 +15,7.59,5.7552,3.753,3.412,1,495.391,533,527.244,2.2536 +15,8.2591,9.2526,7.173,4.9455,0,373.841,1.919,439.631,1.8222 +19,6.9291,1.469,3.953,669,1,401.964,2.1445,622.541,4.4434 +24,7.2305,9.7085,2.326,1.5308,1,301.351,2.353,901.862,204.042 +22,8.6428,9.4748,3.429,3.101,1,20.993,2.5519,555.339,5.1971 +28,3.247,8.8457,71,1.5817,0,314.613,2.5318,609.537,8.5157 +19,5.4048,2.1456,3.318,2.0296,1,4.6292,1.1378,344.596,13.746 +25,2.9909,6.3406,4.607,4.6043,0,378.885,2.2034,60.016,12.2739 +20,9.889,7.6089,9.555,4.028,1,270.372,1.7506,631.486,159.797 +15,9.4965,9.8603,3.134,3.8857,1,478.366,701,755.891,4.6636 +27,1.3548,1.8042,9.025,1.9777,1,318.738,1.2048,576.455,12.5772 +13,7.3502,7.6603,2.289,4.0563,0,7.5846,1.586,205.575,18.426 +10,9.3272,3.388,191,2.567,1,238.775,2.501,586.107,9.3002 +21,2.6252,1.7563,519,1.964,1,2.8911,168,304.893,233.255 +21,6.1115,4.2138,6.725,4.731,1,372.715,2.8828,9.6451,138.708 +18,9.2394,7.9384,443,4.137,0,250.916,2.5326,827.179,161.958 +25,1.3055,4.6485,2.211,2.9884,0,184.827,1.3173,7.5411,11.0181 +17,7.2768,5.3752,4.557,4.3883,0,484.275,744,635.386,205.884 +28,3.6761,9.9516,331,3.988,1,470.299,2.174,98.861,10.8357 +18,9.3196,3.9911,7.126,2.7695,1,476.416,1.2936,9.6743,226.147 +12,9.7395,6.154,5.112,4.1214,0,11.0485,1.8011,227.931,7.3798 +16,9.4984,3.6524,1.604,4.9316,1,364.285,2.3913,763.196,207.797 +19,5.2679,3.9279,8.945,3.6216,1,472.691,1.547,10.5925,153.445 +20,8.7584,6.9564,2.929,1.3917,1,285.435,1.2536,834.398,191.773 +21,8.6009,9.3789,7.311,3.4979,1,10.708,2.9306,1.0267,9.048 +21,3.8719,5.4236,7.799,3.5288,1,408.906,3.622,891.048,6.6547 +20,8.4602,7.684,9.632,3.4998,1,439.959,1.2009,7.6155,203.299 +21,1.3331,8.921,4.985,4.2713,1,351.618,8.252,92.276,7.64 +17,6.3664,2.1116,6.158,4.369,1,146.776,4.021,865.906,171.037 +28,3.0701,5.0213,3.349,5.421,1,9.5347,2.5168,544.167,238.125 +23,2.0851,2.001,6.782,3.2031,1,312.135,2.0913,780.169,4.252 +21,1.6926,2.5285,4.634,4.7694,1,24.14,1.2347,8.4128,10.0211 +15,7.2666,5.174,4.377,2.3292,1,334.391,1.1072,143.796,3.963 +19,4.0589,1.496,8.555,4.8028,1,5.585,2.4832,375.594,3.7029 +11,7.5229,2.6455,502,4.6904,1,6.7957,2.724,542.084,15.193 +24,1.5882,5.1403,882,4.5145,1,181.445,4.405,869.532,4.593 +26,3.8376,5.7315,8.521,4.5493,0,12.938,2.7197,547.254,11.5837 +24,5.8554,9.2575,5.064,4.4916,1,309.669,2.4516,668.553,234.706 +20,8.1165,6.4535,4.902,4.0994,1,18.377,2.3246,683.086,7.9951 +27,3.8688,4.1474,3.618,3.4749,1,341.985,1.8719,878.792,209.671 +25,6.633,9.3035,9.942,122,0,384.399,8.774,778.987,9.5128 +20,8.9738,7.8488,1.112,6.613,1,9.3584,2.8044,97.726,6.3088 +18,6.5428,2.2001,5.902,6.712,0,459.912,1.4756,2.9813,08.07 +21,3.0966,1.3084,6.817,1.177,1,39.358,8.419,21.575,3.0645 +29,1.2196,6.7581,9.343,5.835,0,31.339,1.0967,931.141,162.956 +16,8.8309,5.5988,7.802,4.5987,1,454.464,505,794.298,12.2165 +28,1.1914,7.8967,6.438,3.319,1,132.934,7.655,274.689,147.319 +16,8.8723,7.3881,1.168,1.5604,1,210.857,5.639,974.504,7.2742 +17,5.7604,6.2521,3.737,3.9668,1,4.2893,4.067,871.182,156.832 +11,9.4516,9.8638,1.388,2.4418,0,228.091,964,7.4011,3.9504 +19,8.189,5.3359,8.812,7.106,1,25.32,6.806,813.197,156.593 +8,9.9814,1.1311,7.496,4.4225,1,308.033,3.106,786.643,1.9473 +21,4.1564,8.2827,7.575,1.6933,0,3.202,1.354,228.942,9.6066 +14,7.9047,2.5185,6.523,3.4943,1,1.6233,412,672.554,146.341 +25,4.6174,7.773,507,1.453,1,209.945,6.072,970.524,205.276 +21,5.3189,9.5711,0.15,2.5004,0,9.4567,1.2479,67.911,19.498 +17,6.6475,6.968,3.297,4.0813,0,379.394,1.7511,815.628,12.6468 +16,8.8631,5.9603,1.369,7.839,0,334.368,9.668,10.8393,212.009 +10,9.8568,4.6039,7.249,4.8863,1,162.913,4.238,730.184,12.1417 +17,7.9145,3.6441,1.602,3.511,0,2.2892,2.821,212.707,12.412 +19,4.7599,3.53,7.021,2.67,0,9.1222,1.5446,8.1136,172.933 +26,4.7922,6.3637,6.923,4.5801,1,34.584,2.2256,556.557,210.668 +22,7.6382,7.5127,4.593,4.7285,1,495.082,2.0833,753.105,144.652 +25,3.149,6.7852,1.352,1.1605,1,16.323,8.547,551.277,226.606 +25,1.9943,1.9841,3.148,7.199,1,400.998,1.6796,932.281,5.5821 +23,4.1916,4.9399,3.201,3.622,0,433.548,1.8065,69.871,221.834 +25,3.5852,7.9164,7.004,2.099,0,2.409,1.0554,12.6399,5.3197 +24,3.6668,4.757,1.137,2.4262,0,458.111,2.0123,935.173,12.634 +26,3.1025,5.3662,8.291,3.9818,1,233.101,2.372,161.359,191.048 +30,1.3788,7.7114,761,2.8013,1,482.121,1.0926,760.673,19.238 +25,1.1609,6.6127,1.863,9.401,1,269.278,447,157.058,6.6758 +13,9.8895,4.0934,7.192,2.4352,1,11.7572,1.048,998.594,236.615 +22,4.85,8.9541,6.685,4.6064,1,487.334,3.504,338.866,1.9345 +17,4.4589,1.6257,7.481,3.0861,1,12.1652,4.668,50.097,8.348 +23,7.1168,9.9552,1.889,3.6075,1,441.239,1.0978,472.169,201.967 +19,2.9643,1.1885,1.576,1.6813,1,8.6564,6.229,11.0878,196.565 +16,9.5497,1.495,2.365,9.424,1,337.384,2.8047,499.075,171.076 +24,8.0771,8.9002,3.659,1.2782,1,205.646,1.9584,158.011,204.186 +26,1.8047,2.4495,7.937,2.6659,1,486.009,1.5551,803.961,3.3014 +23,4.7582,7.297,7.379,1.4011,1,9.2386,292,95.873,2.2965 +18,8.9121,8.1102,9.255,2.7098,0,204.397,3.109,809.978,232.657 +17,9.5026,8.5899,586,3.539,0,319.888,2.3654,436.753,149.817 +28,5.2066,9.9159,116,3.672,1,48.881,1.1692,1.2348,220.763 +17,6.5207,2.9404,6.991,8.234,1,151.932,1.365,4.6277,217.546 +29,2.5033,7.1024,2.793,3.7522,1,198.436,2.4767,500.085,156.754 +10,9.9205,1.154,3.341,3.3634,1,230.896,9.079,682.692,150.834 +25,3.085,4.0681,5.468,0.06,1,12.635,1.1589,821.319,8.6387 +21,9.4846,8.4797,1.024,2.944,0,408.677,2.9231,603.536,3.5786 +15,6.8468,3.6766,6.427,3.2312,1,4.5998,465,97.853,164.785 +23,6.4696,5.911,3.251,1.9185,1,352.395,2.164,49.884,196.287 +25,5.6142,5.0377,6.327,7.305,1,266.964,2.8467,604.029,13.071 +21,3.076,6.4595,834,222,0,12.0963,1.916,237.801,1.2209 +32,2.5888,9.7289,1.711,797,1,246.415,2.5982,346.264,3.478 +19,2.9844,5.574,9.309,4.7876,1,414.975,1.2487,68.63,2.447 +26,2.6779,5.7396,5.307,3.6378,0,222.721,2.634,605.625,15.788 +19,8.0163,8.6303,9.229,2.6385,1,6.0949,9.248,375.952,135.549 +23,4.1511,4.8138,2.077,4.7077,1,2.0401,2.948,12.0862,11.196 +25,1.5206,7.853,6.046,3.0956,1,388.898,1.9411,349.189,130.418 +13,9.7219,5.6054,4.039,3.6282,1,165.217,1.8813,5.3714,6.6229 +18,8.9541,3.3207,7.742,1.4133,0,465.622,2.4177,58.496,193.135 +10,9.3498,1.5494,6.059,2.9449,0,308.574,1.3098,329.785,7.8851 +16,9.9542,8.4903,4.945,7.174,1,218.142,776,38.605,154.632 +24,2.5651,5.216,913,2.0224,0,282.232,7.888,579.337,9.381 +26,4.5662,9.3328,3.771,1.662,1,228.566,9.918,585.475,1.732 +24,7.8241,8.0602,0.22,1.0831,1,452.906,1.8521,59.246,6.1668 +23,7.2642,6.9297,6.081,3.743,1,229.011,2.5152,496.675,231.624 +21,2.3851,503,624,1.9389,1,5.2032,1.4987,493.241,4.5729 +12,8.3425,4.2782,4.391,4.2152,0,298.544,1.2103,823.007,2.5183 +24,03.02,1.9749,4.866,1.8897,1,311.491,2.3815,472.879,6.9877 +28,3.0144,9.108,9.596,4.1582,1,382.665,869,54.067,210.702 +19,5.8328,1.7458,7.327,3.2825,1,466.642,2.0671,988.348,7.3446 +13,6.3365,2.8606,1.106,2.5476,1,221.541,3.174,18.924,10.0171 +16,6.2208,5.1684,2.121,1.1845,0,176.038,3.397,729.157,7.4418 +26,1.8234,2.6336,9.756,4.6108,0,245.386,1.9322,478.455,237.354 +16,8.8971,2.0986,7.265,271,1,450.099,2.483,832.236,23.997 +24,3.3904,5.991,915,3.4446,1,489.991,4.652,409.992,11.5865 +22,2.1656,8.893,3.039,3.1062,0,485.618,1.8731,30.996,188.358 +10,8.9987,5.817,7.419,2.2052,1,11.4848,1.3146,215.708,5.2814 +16,9.6009,3.7225,714,1.2016,1,248.448,1.6839,873.515,8.9831 +20,8.7591,7.2066,2.947,2.1535,1,12.9737,2.9308,721.145,163.042 +15,8.2856,5.5481,5.508,4.3639,0,183.991,1.8959,8.6131,6.8719 +16,6.8972,4.2288,6.274,4.1838,1,1.5842,1.7726,716.355,5.3928 +16,5.9577,5.6575,4.811,4.7069,0,8.0301,1.1404,4.4665,221.337 +29,1.7829,3.6545,8.272,1.539,1,198.538,1.8926,18.981,5.8632 +22,4.6761,9.3615,8.329,1.9355,0,182.352,39,59.687,1.4227 +21,4.3542,549,8.506,936,1,139.416,1.672,468.875,180.261 +20,3.3378,6.7339,8.034,4.7147,1,11.5155,2.067,842.079,5.8384 +20,7.5108,8.9128,4.881,1.647,1,374.478,6.605,611.811,10.8044 +23,5.4629,8.0388,3.814,2.0208,1,147.275,1.6894,965.325,2.6774 +22,1.7294,1.8404,8.314,4.539,0,353.272,2.1939,856.632,1.6444 +23,2.9816,2.9593,4.902,2.633,1,184.313,1.1544,346.813,11.0507 +20,7.1493,7.1705,2.464,2.8309,1,40.099,1.2569,835.809,8.0901 +22,1.6852,8.427,5.073,8.812,0,8.3617,1.4941,871.236,12.1422 +20,8.6609,8.1186,1.418,2.4933,1,7.8802,2.2772,970.028,231.788 +17,5.4563,7.1891,6.916,4.591,1,339.836,529,2.2437,9.7773 +23,5.3253,7.2961,3.359,2.7936,1,457.458,1.3412,875.997,144.638 +11,6.3317,1.2024,2.607,1.2756,1,7.1493,428,7.9196,2.3423 +17,8.4221,7.1776,9.565,1.559,0,3.6852,9.574,532.835,21.262 +29,4.1303,6.7982,7.769,1.6815,1,467.319,1.5595,420.517,193.407 +19,7.1021,8.3092,7.871,2.863,1,5.8663,2.398,920.683,12.5378 +15,6.0916,416,6.237,2.131,0,12.5183,1.4556,41.11,4.401 +25,3.4033,2.311,8.392,3.049,1,464.747,2.7737,600.082,10.2228 +17,8.9077,3.7301,7.592,2.6171,1,401.459,2.056,69.496,7.1372 +13,8.1768,1.4879,5.988,3.9172,0,171.379,2.3468,2.8839,238.684 +22,6.9261,5.5838,9.611,1.444,1,477.264,1.7412,595.022,11.7801 +21,8.6552,9.1735,1.916,3.9042,1,284.024,2.6891,522.812,10.1336 +13,8.8056,3.9148,9.434,2.6044,1,3.6124,4.406,598.069,4.0574 +18,7.3753,8.4495,4.014,1.8526,0,351.533,1.3494,8.4987,5.7386 +11,8.5331,24,5.284,4.8269,1,268.639,1.7911,6.5003,170.781 +18,7.2772,1.6851,1.227,8.006,0,286.294,2.6204,185.769,12.8378 +16,7.1213,3.042,5.401,2.7066,1,497.052,924,870.806,8.5928 +14,6.5675,3.2815,6.112,1.6049,1,7.6257,34,362.906,7.1283 +24,7.7744,9.0819,9.977,2.6374,1,328.398,2.9232,439.692,4.8178 +18,2.4274,9.695,9.752,2.7614,1,229.371,779,396.265,8.135 +19,8.9278,6.0641,9.664,4.472,1,135.947,4.571,717.226,234.516 +16,8.8466,4.515,3.484,3.3057,1,346.772,1.2661,266.881,180.746 +31,1.2632,9.3847,9.913,3.1724,1,334.106,1.4891,7.7709,222.689 +16,8.4324,1.2252,4.555,3.8473,1,428.248,2.5034,384.393,9.9012 +27,2.1598,2.1203,8.518,4.533,1,439.435,1.3435,730.557,208.652 +19,4.0161,2.954,2.163,1.4863,1,28.091,1.6423,915.818,6.15 +14,7.6916,4.3394,5.058,3.2506,1,162.786,0.6,6.0313,12.236 +25,2.4468,2.7783,966,6.837,1,26.479,1.7075,812.391,4.8595 +18,8.3617,8.6991,947,3.388,1,179.628,1.0452,7.5518,184.881 +13,8.4892,6.0494,6.837,2.951,0,138.678,2.962,337.354,11.9424 +25,5.5672,6.1409,7.978,1.6747,1,275.788,2.8394,3.2079,12.8706 +25,1.0575,5.3191,1.764,4.2336,1,328.967,2.451,912.426,206.269 +21,3.5833,9.185,7.217,3.8715,1,295.286,2.0336,709.721,177.412 +24,6.5523,4.4502,6.181,3.2238,1,47.721,2.7246,375.444,231.904 +10,9.8307,9.9951,916,4.3523,0,149.318,5.376,383.682,9.7281 +17,6.6863,8.3523,1.132,3.5463,0,186.171,7.114,643.444,11.0749 +27,3.3382,8.9346,1.084,2.5969,1,333.821,1.2801,9.8752,147.681 +19,6.7061,8.2323,7.244,4.8986,0,300.179,8.835,153.598,10.8795 +14,5.8599,1.0304,1.417,3.4743,0,932,2.2771,848.752,10.0708 +13,8.0186,2.2745,4.677,3.1968,1,156.143,1.0145,21.029,8.1737 +25,1.9628,312,357,2.0444,1,12.6881,2.9575,72.94,199.652 +20,7.8493,3.0351,5.505,4.5121,1,419.957,2.5764,233.545,12.8037 +20,5.8714,1.0861,7.065,1.4785,1,433.124,2.686,9.7265,145.777 +11,9.6669,4.7279,6.847,461,0,141.947,191,901.032,4.8978 +23,4.0768,6.7713,5.155,9.837,1,5.1036,5.289,902.656,6.0426 +18,6.6936,8.7451,4.643,5.476,0,10.2601,5.081,609.259,8.155 +15,9.3883,7.4922,3.978,1.595,0,8.8284,2.0159,467.414,11.1689 +25,1.9226,9.3859,8.619,4.1294,1,11.8718,357,557.232,1.0543 +11,9.4351,539,3.309,3.2576,0,11.7322,2.4193,414.046,213.214 +17,7.191,1.218,2.594,8.449,1,239.919,1.6411,759.603,216.891 +28,1.6105,6.6134,7.433,3.9441,1,159.821,1.6989,757.015,158.803 +18,3.7087,2.8935,3.598,2.5211,0,279.911,1.612,82.079,7.5853 +17,7.3735,2.535,847,2.5636,1,172.067,1.606,527.697,9.2476 +25,1.6062,3.3089,3.279,1.8106,1,407.338,5.937,803.328,176.172 +16,6.2395,2.698,7.019,4.3231,1,475.396,8.495,164.161,6.871 +21,4.1129,5.1144,451,1.5916,1,201.959,1.4629,3.9833,14.614 +20,6.5882,4.4015,3.856,4.707,0,2.4734,2.0335,651.573,217.505 +25,1.4117,5.1243,3.432,1.5136,1,11.9789,8.159,11.4421,9.8507 +17,8.8438,6.7271,8.167,3.5768,1,5.0929,2.4184,555.163,140.892 +17,9.7614,3.8713,9.671,3.2879,1,172.382,2.4318,723.914,222.862 +14,9.7199,2.5131,4.609,9.401,1,322.557,8.216,413.015,8.174 +18,7.7469,1.662,8.248,5.589,1,259.454,1.6802,5.3434,182.314 +21,2.1708,3.4947,6.997,3.3043,0,12.1438,1.0468,88.826,181.229 +19,7.8244,7.4181,9.674,3.3819,1,38.363,5.721,5.2813,222.839 +33,1.2213,7.567,8.111,1.8307,1,6.574,2.418,905.705,206.061 +31,1.1991,6.6691,775,4.214,1,11.4098,2.9744,6.2104,179.719 +20,3.9125,2.3403,7.133,4.891,1,338.024,1.6972,737.808,152.764 +24,5.3978,5.8809,5.355,1.0282,1,9.8617,2.7418,925.598,5.7885 +16,7.9337,5.7069,164,2.8853,0,339.381,1.9265,907.911,160.956 +22,7.1497,4.8427,2.513,267,1,488.471,1.6972,894.451,6.6346 +23,5.0131,5.4998,9.218,3.5653,1,415.677,1.4404,884.248,10.5605 +19,3.4626,4.9179,9.261,2.0714,0,8.2005,7.071,515.306,170.328 +13,9.9741,5.6546,7.989,9.663,0,260.249,2.528,562.114,161.975 +23,4.8356,7.1551,9.818,3.7611,1,211.161,1.327,62.352,9.6288 +20,5.0625,1.0963,8.065,4.0532,1,495.835,1.6839,896.989,4.3842 +30,2.4726,7.4963,102,5.558,1,48.22,1.5283,839.779,11.6194 +14,8.1533,1.3589,2.878,205,0,6.3556,2.0867,785.149,6.4794 +13,7.2431,6.663,306,1.6704,1,454.365,5.763,678.967,6.1304 +25,2.9869,9.7608,941,3.13,1,9.6709,1.0626,62.22,7.843 +29,1.7414,9.5699,2.188,3.9671,1,159.726,1.2467,923.242,169.497 +12,7.1245,6.044,5.036,2.7303,1,176.704,5.596,200.718,11.9349 +21,6.8906,4.4325,8.475,2.9037,1,143.411,2.7194,200.798,8.9561 +25,3.4593,1.8624,862,3.9993,1,426.622,2.0445,982.645,216.143 +13,9.5578,4.8534,6.162,2.6442,1,164.966,2.756,557.627,169.627 +30,2.3595,8.3018,9.282,3.0558,1,408.369,2.1384,48.854,11.8717 +26,4.891,9.5061,5.001,2.5811,1,497.188,1.6434,852.089,10.1109 +18,9.4925,6.3425,889,4.4023,1,420.381,1.5718,85.127,196.535 +22,4.7775,3.5391,4.541,1.1776,1,173.071,2.9694,184.832,4.1502 +22,6.7467,6.0333,2.772,1.32,1,355.626,1.8546,181.837,159.397 +25,4.5783,3.12,9.164,6.398,1,266.962,2.6902,797.312,5.044 +29,3.4679,9.0982,3.879,4.0973,1,393.259,2.7406,787.776,1.671 +17,9.8558,8.704,5.034,2.0589,1,7.6549,3.043,232.935,223.628 +18,4.684,5.5823,3.289,1.7395,1,319.067,251,843.095,12.3357 +13,9.0469,3.248,6.628,4.9067,1,386.833,1.3058,485.251,7.5628 +23,3.0696,2.9339,995,4.634,1,380.616,2.3079,475.289,190.727 +23,2.9179,3.342,255,4.8599,0,481.797,2.4726,985.837,236.359 +31,1.2802,8.1582,8.998,7.115,1,2.9206,2.3625,524.022,8.259 +15,6.865,4.5038,39,4.4563,1,17.289,1.3419,145.675,9.111 +24,4.3167,3.2513,3.642,1.6435,1,238.277,2.2499,287.354,205.148 +15,8.7792,4.7111,1.686,633,0,154.882,2.1563,340.345,133.612 +24,5.2589,8.1874,7.573,1.9565,1,154.895,9.415,958.882,211.858 +8,9.7137,1.2461,506,2.546,1,8.8064,5.062,271.397,166.714 +31,2.6697,8.5766,5.535,5.411,1,406.476,1.8643,436.099,11.2941 +20,8.8176,8.9751,2.949,2.6884,1,454.035,2.0313,752.139,3.8723 +16,7.9894,9.4671,1.337,4.0973,0,4.1164,1.7039,281.355,9.3567 +14,7.9383,3.9749,7.718,1.8883,0,7.7449,6.395,704.626,188.915 +12,8.603,2.1714,2.174,1.7632,1,11.4226,0.83,215.442,5.614 +18,7.8492,3.7364,2.237,1.6941,1,254.494,2.1255,250.092,170.968 +19,6.636,3.3291,2.751,4.6155,1,395.586,2.8879,986.469,5.9363 +27,2.1812,1.7615,5.868,2.438,1,3.5728,2.8345,375.255,11.1248 +28,1.2927,6.0727,6.597,2.2254,1,318.406,1.559,732.389,2.0504 +15,9.2876,4.7662,176,1.323,0,7.4668,2.6597,841.662,10.92 +19,6.5499,8.657,2.419,4.469,1,485.729,884,353.384,147.049 +18,8.1688,3.211,431,4.803,1,449.387,2.5835,363.598,135.196 +24,5.3337,6.4387,332,2.0572,1,474.791,1.4285,775.358,9.7552 +28,2.0558,7.6295,8.842,2.0341,0,5.3082,2.3446,610.931,8.8727 +22,2.1267,7.5949,7.877,4.442,0,244.018,167,368.134,6.6096 +23,7.1701,8.8607,6.259,1.0775,0,8.2623,2.6057,75.207,184.105 +26,4.8728,7.2903,338,3.2245,1,300.178,1.7849,865.068,187.833 +27,2.8047,9.2781,7.007,672,1,11.637,7.207,242.688,11.5927 +18,5.4244,3.3266,8.436,4.7699,1,385.315,1.0424,3.4113,9.1815 +25,1.5779,5.0321,5.948,2.9651,0,322.001,602,281.406,152.982 +15,6.2377,1.408,7.845,3.1313,0,285.802,1.2732,677.745,133.856 +22,3.4209,696,7.491,2.1689,1,412.614,0.99,91.61,160.141 +15,8.178,2.4013,5.717,1.7114,1,250.137,1.6035,864.434,7.3444 +21,3.7933,1.1981,3.122,1.0634,1,134.926,2.4444,229.949,189.204 +21,5.097,2.6021,7.458,3.0199,0,310.353,2.9468,88.219,7.6018 +23,1.1046,1.7704,2.068,4.7728,1,478.531,7.544,812.624,10.0494 +21,1.652,2.852,7.795,1.799,1,30.058,3.195,737.057,3.1781 +25,4.5324,9.093,8.045,4.4158,0,31.481,1.187,691.345,205.289 +17,5.3194,822,8.221,7.439,1,467.375,4.307,809.022,154.626 +18,6.4002,7.3608,4.729,4.6806,0,257.638,2.5027,863.112,5.6469 +22,3.625,1.5215,1.925,1.7524,0,498.179,1.5034,82.092,204.412 +21,7.2548,9.1223,997,1.8986,1,7.9831,1.8599,13.063,16.915 +18,8.7411,8.928,7.434,2.3142,1,26.852,4.518,724.933,10.6123 +20,8.0187,6.539,8.863,3.5912,1,10.645,2.2488,842.891,237.562 +31,1.3566,6.7223,6.508,3.5983,1,226.663,2.9207,193.849,8.093 +16,5.3246,534,1.442,2.3979,1,8.5287,1.4472,22.166,2.3892 +34,1.9444,9.8487,9.349,2.6158,0,11.1264,2.8874,788.117,17.603 +25,3.1784,8.7783,9.891,1.501,0,10.54,1.041,35.049,181.692 +13,9.88,8.9511,4.334,1.5215,1,160.016,1.072,405.704,1.4152 +29,2.2825,6.5924,5.948,1.7301,0,6.7303,2.88,383.388,196.661 +24,5.49,3.4479,7.772,2.7936,1,404.671,2.1008,220.704,186.226 +21,6.5634,8.9365,7.364,2.7915,1,11.0338,5.661,939.406,223.103 +12,7.3222,2.9152,9.678,3.5495,0,208.284,1.0916,807.801,2.8452 +19,6.0368,5.6271,1.149,3.5851,1,8.029,1.5233,258.034,144.194 +22,1.0879,9.973,5.807,1.1761,0,5.2441,2.1079,11.5026,5.2661 +28,3.9382,9.2196,6.919,3.8509,0,448.136,2.5261,378.884,9.5866 +16,5.6594,1.4077,8.901,98,0,41.858,248,421.155,6.3622 +26,1.7908,2.249,8.741,3.5808,1,420.461,1.9697,1.7021,10.7831 +24,4.1556,5.5813,978,5.103,1,205.677,1.4301,888.281,2.709 +27,1.2988,7.6409,5.121,3.6482,1,7.0765,1.7929,852.771,7.2844 +27,1.7072,6.1935,8.308,2.6356,1,5.3947,1.5256,851.662,1.702 +18,4.5723,2.3213,4.273,2.1863,0,302.801,1.3521,807.745,11.804 +20,2.1944,94,4.223,3.4533,1,414.097,6.165,735.795,7.1204 +24,6.1079,7.5715,2.533,1.819,1,450.057,1.417,638.175,141.674 +19,7.2052,9.8521,8.182,1.1174,0,144.366,569,960.686,10.9547 +15,8.2053,8.0991,9.858,3.0822,0,160.513,1.338,714.613,5.8525 +21,2.8014,4.6021,2.563,4.2361,1,5.0438,1.1215,633.943,2.4706 +25,2.5073,9.0377,561,1.9055,1,387.205,749,790.937,180.796 +27,1.9411,4.0985,8.155,1.2938,1,137.845,1.6876,253.804,151.952 +15,6.7279,5.2493,6.202,2.5937,0,240.465,2.172,967.474,7.903 +20,7.3583,4.7713,9.597,3.1116,1,464.449,1.3127,2.897,237.448 +29,1.2843,4.4762,2.522,2.1005,1,376.108,2.9404,651.921,154.198 +10,9.4259,7.7519,71,4.3836,1,2.6369,296,8.6323,4.9723 +25,1.4677,5.2677,4.924,2.6172,0,4.077,1.1006,854.773,201.719 +22,5.8717,3.1672,855,1.791,1,393.704,2.0198,967.964,211.704 +13,7.3815,2.5816,2.618,1.1153,1,27.625,4.768,414.525,137.684 +13,8.8387,3.775,126,2.2532,1,360.167,1.6822,858.593,212.537 +14,7.4268,5.832,2.241,3.4886,1,7.8408,7.746,342.364,7.001 +14,8.2156,2.2996,1.061,1.0988,1,436.024,6.683,16.781,22.684 +18,4.0551,1.4813,9.539,4.8813,0,386.662,2.685,283.883,1.3729 +20,8.3334,6.5383,2.786,1.5928,1,445.419,6.098,308.824,154.174 +25,1.721,6.8121,4.439,2.6624,0,170.548,1.1297,634.361,8.3015 +15,9.0533,7.5215,8.986,948,0,137.853,5.088,798.187,9.435 +17,5.9283,5.0358,6.773,4.4245,1,7.5866,8.517,213.164,223.029 +17,8.3557,8.9405,618,3.9442,1,465.044,8.793,9.7324,3.2486 +26,5.0709,9.3634,7.056,9.773,0,8.8415,9.803,229.435,204.899 +21,6.7922,8.0737,8.288,4.6662,1,5.9659,1.9232,303.572,7.9283 +27,5.7376,6.3559,8.777,1.5792,1,9.6339,2.2278,287.017,177.879 +16,7.5843,3.0372,6.426,3.4609,1,385.691,1.532,227.751,6.1013 +29,1.7347,9.8294,0.89,4.0949,0,444.765,1.8314,47.134,140.024 +28,1.5432,2.7414,5.354,3.7046,1,405.457,2.4398,857.423,191.893 +22,3.2239,2.0266,2.773,4.5879,0,281.619,2.9987,10.9345,135.883 +25,2.4359,4.4215,8.801,4.3214,0,496.942,1.3695,86.341,7.3573 +11,8.8461,5.684,5.415,4.9731,1,3.4427,2.8093,502.038,5.6025 +33,2.9729,9.7849,9.061,9.131,1,433.596,1.4711,663.863,4.1953 +15,9.7828,5.8843,402,1.5238,0,213.857,2.346,817.213,201.315 +24,4.0321,5.5695,3.975,3.1811,1,227.561,1.7197,311.284,146.626 +27,2.6391,6.558,9.478,3.6652,0,6.3797,2.6521,954.692,12.2083 +12,8.1073,4.9702,2.497,2.673,0,1.6716,1.3461,9.2899,5.9899 +18,6.9284,3.206,9.415,3.696,1,158.314,2.0874,53.239,10.4101 +22,5.4838,6.1231,9.539,4.208,1,8.7427,1.3989,262.255,148.815 +22,5.9983,7.1617,8.821,4.8044,1,241.669,2.5711,413.867,1.7252 +20,7.4728,4.1675,5.637,2.0276,1,7.3665,2.9831,454.375,8.6572 +23,3.0561,7.573,6.469,1.1241,1,6.8964,7.299,915.367,5.7481 +16,9.967,2.27,8.696,966,1,438.489,1.423,447.166,155.164 +11,9.7731,2.2128,7.759,1.1865,0,460.647,2.438,700.968,145.505 +14,6.8529,1.6142,6.301,3.4996,0,482.108,423,952.246,7.186 +26,2.7959,3.7199,9.823,4.5579,1,340.251,2.7875,499.587,9.991 +23,7.1221,8.4701,6.857,4.676,1,385.508,1.6308,414.227,4.3875 +28,1.6498,8.2791,9.755,2.7663,1,417.892,1.1853,973.239,3.8415 +27,1.2759,3.8282,574,3.4777,0,329.461,2.0144,82.94,136.415 +26,3.3191,5.8912,139,1.3819,1,165.122,1.6805,940.375,4.063 +21,5.1636,7.2082,4.515,2.8495,1,7.8193,8.662,403.253,11.576 +10,8.8145,2.4121,3.849,3.5762,1,11.8637,6.798,699.361,147.487 +18,7.5445,1.6814,7.827,4.1886,1,420.207,1.7707,257.114,211.096 +18,7.6844,9.721,1.606,2.2625,0,348.049,5.648,867.164,5.8807 +19,4.8294,6.1756,9.761,3.7393,0,227.898,4.175,933.748,4.4619 +24,4.1134,9.8142,3.151,1.5089,0,1.4703,9.552,275.188,4.1581 +24,4.3393,3.3776,4.289,1.0652,1,133.102,2.584,11.3883,8.6503 +12,9.8888,7.0303,2.747,9.366,1,364.449,1.105,208.727,155.803 +28,1.361,2.226,5.794,1.7944,1,256.194,2.4998,636.504,161.247 +16,8.8033,2.612,586,1.794,1,217.766,1.8629,279.461,5.0631 +15,6.2081,5.119,1.497,1.415,1,15.684,1.211,642.225,3.1496 +22,4.9475,3.1962,7.458,3.2611,1,303.466,1.8061,356.687,10.7683 +13,7.5273,1.6762,1.865,3.2396,1,483.193,1.2781,917.667,3.3886 +22,5.38,2.6288,2.355,3.678,0,450.562,2.5234,458.072,195.101 +14,8.8608,3.575,793,1.4371,1,1.5249,2.7216,502.646,2.0132 +13,9.1063,7.0442,933,2.8478,0,240.477,8.595,354.584,180.502 +23,4.7955,4.9212,4.375,1.5928,1,164.735,2.3525,8.2307,1.0235 +18,3.4915,9.424,231,2.0899,1,255.302,9.294,49.87,193.676 +15,6.3312,1.7169,3.468,3.5641,0,303.107,8.869,776.621,150.516 +10,9.2113,1.0253,699,463,0,10.2014,5.779,953.485,7.737 +25,2.896,6.1259,901,1.382,0,390.784,2.0355,8.581,9.7324 +18,6.6067,9.421,8.883,7.119,1,237.534,7.851,799.424,161.668 +22,6.684,7.5428,9.095,638,0,496.003,1.3946,274.391,4.4551 +15,7.598,2.051,105,4.7952,1,1.2564,2.4364,824.589,213.677 +27,2.1841,2.4938,9.907,1.8828,1,9.486,2.3757,348.593,11.5893 +24,7.4424,8.9067,2.975,2.6354,1,344.815,2.5663,12.3289,182.433 +12,9.1813,7.1853,841,3.6691,0,34.759,4.832,615.899,12.1607 +24,2.6171,7.297,51,2.372,1,291.094,1.7607,894.965,10.8547 +30,3.1379,8.2113,4.085,1.2051,1,48.598,2.7445,189.773,11.2708 +10,9.7426,4.9304,6.298,4.1607,1,207.658,1.262,3.1587,8.715 +30,2.6288,8.4678,3.322,4.31,1,208.518,2.3836,885.003,175.861 +18,8.6895,6.1974,8.367,1.8648,1,455.238,7.387,700.851,203.077 +23,5.4305,6.8183,7.166,1.8743,0,269.221,2.009,810.609,205.055 +27,3.2251,9.935,3.502,3.7845,1,176.864,2.1522,6.9239,2.9075 +20,8.8367,2.3234,7.343,1.4754,1,359.469,2.7768,891.551,182.728 +26,5.1977,6.2395,9.405,5.855,1,309.835,1.5264,424.964,4.7989 +21,5.6334,4.6032,931,1.2877,0,153.205,2.5447,898.641,2.923 +13,4.2331,3.945,3.061,1.9367,0,148.964,136,7.4275,6.611 +17,6.3366,1.447,4.633,261,1,197.806,1.2616,88.596,7.0288 +21,2.4717,1.1923,498,2.3934,0,3.581,1.3186,676.643,194.349 +25,4.5197,6.4909,5.422,3.7,1,471.308,1.6148,558.726,178.175 +8,9.7247,5.6716,3.006,2.5687,0,9.151,1.444,7.1163,2.0324 +28,3.3232,5.5343,6.673,3.595,1,9.6912,2.9039,691.533,7.8231 +13,6.9106,3.186,6.451,2.2007,1,323.519,2.356,601.796,6.0312 +23,3.9267,4.693,5.778,3.5445,1,362.124,795,729.026,142.909 +25,7.9613,9.2462,1.138,2.905,1,368.418,2.9059,71.955,12.9963 +24,2.1779,3.9759,477,2.992,0,187.538,1.3359,449.297,162.939 +16,9.7284,6.2492,3.562,1.853,0,436.664,1.7135,212.634,218.575 +23,5.0841,7.7982,491,9.748,1,27.2,2.431,919.779,10.1058 +26,3.1245,7.8393,9.219,4.6739,1,219.294,8.522,926.334,157.422 +25,1.6615,5.1928,4.805,2.9067,1,405.193,119,219.812,220.405 +25,2.5278,8.5795,14,1.4366,0,12.1781,4.125,634.347,130.003 +21,5.678,3.9138,4.388,3.5239,1,430.093,1.8999,210.842,7.3987 +27,4.033,8.8869,8.206,1.8746,0,269.415,2.2909,862.612,9.6696 +19,8.46,2.4023,7.801,6.606,1,450.029,2.6103,10.7231,181.107 +20,4.878,2.8022,5.134,1.1862,1,10.0806,7.544,990.295,172.803 +20,3.2384,5.312,2.498,3.2137,1,468.032,9.986,614.753,17.962 +24,6.5543,7.9558,4.651,2.594,1,343.938,1.7082,3.2683,178.391 +15,7.361,4.1706,5.637,1.3634,0,309.164,2.511,883.084,22.091 +29,2.5034,2.2912,9.999,1.0416,1,211.034,2.4202,687.614,183.361 +27,2.5086,2.3179,6.442,1.1957,0,478.157,1.4499,700.349,205.305 +32,1.33,9.014,6.943,3.4138,1,22.196,2.8965,282.282,137.691 +16,7.6276,8.3392,4.915,4.1291,1,249.271,3.519,343.428,154.601 +18,6.9742,5.5353,3.545,3.5793,0,390.749,3.999,915.273,232.253 +21,5.2717,6.1611,813,3.2286,1,142.421,1.0457,638.608,208.872 +12,8.5975,4.7433,4.949,4.5823,1,145.748,6.203,2.6785,186.566 +21,8.251,3.9167,9.947,292,1,387.649,2.0898,334.133,164.524 +24,6.2682,9.1548,4.571,8.374,1,6.429,2.8404,602.558,8.6044 +11,8.8144,1.2561,68,2.072,1,411.482,2.697,156.526,13.155 +21,2.8526,4.1845,6.826,1.8623,1,312.588,7.267,10.7308,1.3231 +21,2.1973,3.4456,466,2.0903,1,269.542,7.137,6.8791,9.988 +22,3.4277,4.9815,2.505,1.0323,1,11.4555,1.5272,634.274,2.6855 +27,1.5138,4.5763,3.537,7.475,0,393.184,1.3561,327.391,174.873 +21,5.7805,5.1889,7.395,2.546,0,402.477,2.1806,379.942,214.156 +11,9.4295,1.3992,4.942,4.6403,0,241.471,2.1979,6.944,4.178 +25,1.3541,5.1314,286,1.9598,0,194.584,1.7183,740.639,5.8964 +23,2.099,2.4242,6.168,2.168,0,12.3081,1.7731,769.089,205.675 +20,5.0698,1.8433,4.114,3.5308,1,377.117,2.5269,831.141,14.06 +12,9.4049,6.483,9.218,1.4555,0,319.726,1.1908,655.147,141.194 +25,3.8454,7.6265,4.996,1.2255,1,10.3316,37,775.556,13.509 +20,5.5651,4.2744,709,1.6213,1,397.234,6.391,581.454,5.2383 +24,1.3742,6.2664,2.189,3.6191,1,441.103,1.061,496.721,5.8393 +24,2.3351,7.2759,761,4.0941,1,2.9624,1.1805,267.214,227.914 +16,9.8797,6.7932,721,2.9403,0,38.621,1.0735,6.2844,173.633 +14,9.6861,4.705,9.041,1.6124,1,426.401,2.959,298.904,2.1704 +29,1.0445,3.879,338,1.5524,1,495.754,2.2651,68.679,5.3505 +15,9.5663,3.7596,4.475,6.215,1,11.8801,1.6592,927.567,150.508 +15,6.7521,6.4005,6.792,4.6665,0,185.502,6.771,263.652,6.8032 +16,8.8113,4.9479,952,3.1907,1,483.096,2.2774,673.151,6.0416 +26,5.0927,8.4913,4.106,1.349,1,4.7008,2.1938,483.462,4.8564 +22,5.6404,8.747,9.421,3.3118,1,261.854,5.748,631.273,4.4574 +20,5.3996,1.7056,4.359,2.2358,0,253.372,2.9487,1.1606,147.199 +14,7.2018,1.3623,9.854,4.8628,1,303.274,5.323,131.427,217.404 +23,2.2569,6.304,568,4.0953,1,165.396,2.3151,224.851,8.6672 +29,1.2698,3.0123,7.178,8.566,1,462.959,2.9049,894.517,2.9162 +19,3.7714,1.857,581,3.6006,1,135.031,2.1765,5.0122,2.9832 +23,7.3421,8.8864,5.005,2.4278,0,324.848,1.9973,573.938,224.086 +27,2.8167,2.269,9.708,9.352,0,247.964,2.71,929.353,12.6897 +16,7.0609,9.2928,1.297,3.4937,0,133.337,8.074,655.549,11.1909 +17,9.7292,7.1743,896,2.7369,0,9.4427,8.315,48.956,213.778 +32,1.8451,7.6265,6.912,1.519,0,478.281,1.9235,392.132,12.1707 +16,7.0534,2.0146,259,3.2329,0,280.646,2.6464,627.953,11.5344 +21,4.9938,2.3419,9.017,3.1749,0,302.095,1.8521,485.581,222.397 +19,8.8133,5.2127,4.293,7.204,1,391.448,2.9311,708.358,11.387 +20,2.5943,1.721,8.142,1.7449,1,4.0613,6.687,621.597,9.3831 +20,7.2336,3.0543,3.888,2.9295,1,356.882,2.4776,571.735,139.599 +20,8.543,3.2146,8.509,6.939,1,8.257,2.7818,957.242,234.536 +15,9.5015,1.5963,6.366,4.2636,1,370.241,1.281,837.335,231.319 +18,7.1492,2.0518,141,1.374,1,7.0664,2.8859,612.769,186.144 +22,5.4746,7.8855,6.497,5.142,0,416.247,6.064,543.264,11.9827 +21,6.5606,1.672,1.913,5.805,1,340.508,2.8585,726.704,211.551 +16,8.8201,2.846,4.119,2.6405,1,192.945,2.7084,805.876,10.0652 +17,6.1355,6.2935,1.703,3.1006,1,179.417,1.984,302.285,153.634 +29,1.2735,9.7598,22,2.0187,1,7.4474,1.564,670.278,4.3062 +15,9.3785,3.3121,2.119,1.4433,1,452.027,1.5865,143.803,158.709 +9,7.2057,1.1866,5.364,4.0466,1,5.9265,1.709,436.147,6.6265 +20,7.0886,5.7039,4.816,3.414,1,236.039,1.186,939.052,185.221 +25,2.9411,9.0635,5.015,1.4015,1,11.8259,153,333.036,9.937 +23,6.93,7.8406,2.477,1.956,1,498.164,1.5735,162.693,9.5618 +26,4.5448,6.2252,6.852,695,1,292.922,1.3914,154.684,179.179 +17,6.8611,3.1506,7.043,1.7669,0,7.4792,2.8214,399.791,10.2076 +29,1.9593,5.4188,358,9.741,1,333.782,1.0269,232.925,171.365 +22,6.9206,9.124,8.812,1.3418,1,495.805,1.9747,432.652,205.216 +11,9.9947,6.7895,644,4.1047,1,302.522,227,721.697,3.2851 +30,1.4339,7.251,713,8.149,0,22.869,1.9906,889.278,11.4966 +19,9.7946,9.6503,2.773,3.9012,0,146.635,2.7404,11.9065,226.779 +19,4.6622,2.604,6,3.3753,1,4.6062,1.0643,770.724,194.924 +14,8.8368,1.846,8.654,1.6322,1,11.4123,9.422,11.2445,233.667 +20,8.0415,5.4561,8.224,2.7328,1,27.681,1.8781,38.564,206.474 +21,6.1031,7.0679,1.232,2.2222,1,376.893,9.857,996.583,7.4453 +19,7.646,7.9041,3.741,642,0,438.965,1.2073,7.7991,4.2997 +9,8.9066,1.9374,6.613,4.5359,1,396.856,8.193,3.2652,5.053 +17,4.6373,2.6175,6.521,2.8481,1,6.2733,1.0347,340.312,5.2054 +24,3.9433,5.1259,8.604,4.4012,1,38.673,2.0382,95.161,1.8177 +16,7.1983,3.306,1.403,4.1191,1,290.802,2.7671,2.9838,217.631 +21,8.2706,8.6051,4.299,3.989,1,234.554,1.7493,230.484,12.0612 +11,7.8606,4.7376,972,1.0364,0,286.382,301,607.131,2.4305 +20,8.1803,7.9958,3.896,7.263,1,4.038,7.917,241.416,183.034 +19,4.9202,5.8062,151,4.1539,0,3.3865,2.8567,6.327,7.8154 +18,8.3605,7.7309,8.983,4.3122,0,262.925,2.731,6.192,1.7049 +19,2.0819,3.3267,527,2.6399,0,8.681,3.469,563.568,4.5542 +28,5.9004,8.3142,8.498,5.209,1,27.277,2.7253,566.275,157.812 +30,1.0518,2.7457,599,6.781,1,177.107,2.8936,709.409,190.562 +21,3.9213,5.461,2.275,4.0677,1,453.706,9.737,140.424,6.0882 +21,4.2982,2.1401,2.594,4.646,1,474.842,2.103,504.853,138.494 +23,4.5656,4.7553,3.867,9.974,0,489.892,1.6799,60.494,209 +18,7.2592,3.1818,8.029,557,1,449.469,1.0111,230.152,6.6813 +20,4.497,2.667,3.866,1.6548,1,492.945,0.46,551.869,4.3592 +23,5.0382,9.6699,2.047,1.525,0,353.074,1.1008,711.156,1.8371 +24,3.1379,1.6007,65,4.1399,1,480.271,2.7834,990.932,11.6135 +28,4.3593,7.8733,795,2.4576,1,320.896,2.4337,600.458,151.444 +28,3.0454,9.8416,0.76,3.2093,1,404.607,992,862.579,1.113 +20,1.6588,199,4.448,2.0574,1,6.5955,1.643,835.336,3.3094 +23,6.431,6.9903,7.262,1.7275,0,34.13,1.2179,940.864,22.375 +16,7.0139,2.5291,6.823,1.111,0,465.552,1.3987,725.825,5.3547 +15,6.5754,4.049,1.354,3.8527,1,270.024,2.2836,220.969,182.397 +18,5.1714,4.0289,1.429,3.4777,0,9.341,1.629,30.511,179.456 +24,4.4181,9.3522,7.553,1.8036,1,263.444,5.431,786.838,7.718 +11,8.77,1.177,7.213,1.6056,1,35.347,8.071,525.615,4.8988 +22,5.6717,5.8789,378,62,0,384.894,1.7034,258.796,5.8548 +23,5.3126,5.014,774,3.178,1,261.851,2.0785,660.104,135.816 +25,1.2308,8.7338,121,3.1163,0,10.8684,1.5244,907.471,9.1478 +20,4.0712,0.84,2.882,2.573,0,463.344,1.8606,364.113,11.8936 +28,4.4218,6.8153,92,2.174,1,386.809,2.3681,600.282,194.787 +23,4.5894,6.8011,2.301,4.1375,1,135.344,1.6362,585.686,12.0551 +25,6.2216,6.6908,4.195,2.5195,1,405.906,2.9316,135.705,238.855 +21,5.8024,9.4233,1.214,1.9225,0,173.931,7.067,9.9343,15.98 +22,6.4711,8.2309,1.043,8.063,0,156.216,2.7591,890.533,4.9739 +12,7.8839,4.197,8.964,4.1034,1,431.538,743,934.202,11.9885 +18,8.3169,4.7108,5.855,2.8812,1,436.618,1.5949,905.199,19.522 +15,7.4631,3.9795,9.345,4.623,1,199.241,1.3677,402.688,5.2392 +10,9.5997,3.1015,3.458,3.2445,1,4.461,1.1186,294.744,175.061 +28,1.1641,4.5134,6.771,2.1254,1,9.3283,2.8882,942.751,8.028 +22,2.762,3.8419,2.047,4.0569,0,454.648,8.169,883.974,226.232 +27,1.0681,4.3233,6.183,4.5946,0,449.375,2.0246,821.619,159.207 +19,6.8273,9.7926,1.296,3.2023,0,226.672,2.4122,340.843,3.9017 +10,9.0823,8.863,21,3.6581,1,152.058,591,642.355,209.831 +31,3.1913,9.2223,9.315,283,1,151.374,2.9195,752.916,1.9637 +13,9.3433,4.8024,5.549,2.8013,0,448.597,1.6399,580.393,9.7423 +27,1.5424,6.2374,9.269,3.7767,0,162.367,2.7435,605.984,176.868 +19,9.4099,8.3018,3.338,2.4838,1,25.579,1.9916,759.121,224.978 +22,4.1646,3.6046,3.278,2.9678,1,365.506,1.9483,76.916,8.3714 +24,1.9128,4.3042,4.007,4.4947,1,10.4741,1.0368,247.549,199.323 +20,5.3728,4.0952,706,9.905,0,12.692,2.3118,396.768,4.7221 +20,3.311,3.7473,5.658,4.912,1,179.031,894,783.373,8.426 +27,3.5639,9.2553,9.254,3.4532,1,327.112,1.6675,268.833,6.903 +22,3.7656,8.2893,254,4.1142,0,408.745,964,916.438,157.961 +10,8.2272,01.09,7.082,4.2525,1,273.353,9.206,840.504,3.701 +12,5.8525,1.0812,3.303,3.2082,1,6.6464,2.889,896.502,1.2078 +22,3.8018,4.2787,1.802,4.1661,0,223.123,2.7348,304.327,234.419 +14,6.493,9.866,5.104,3.5033,1,6.3845,1.8848,11.4066,5.8083 +19,7.4454,6.1909,5.051,4.369,1,4.4149,2.1955,10.9585,11.1013 +21,3.4536,1.4369,137,3.8102,1,294.808,2.5534,560.348,147.139 +24,4.7219,5.2237,2.019,8.968,0,478.106,2.1991,312.535,3.4669 +21,2.097,722,4.082,1.183,1,418.806,3.726,270.886,8.5721 +24,2.6303,3.166,4.088,1.9733,0,387.236,1.8526,230.181,15.545 +22,7.1301,6.7719,3.176,1.5728,0,363.528,2.9345,566.477,153.543 +26,2.6329,4.8404,1.485,1.6083,1,448.564,6.423,552.614,202.094 +26,5.7265,9.7827,44,8.463,1,376.418,1.8591,42.809,10.4981 +24,7.3814,8.741,9.702,1.4694,0,313.439,1.6908,147.056,213.559 +25,1.9619,3.5907,9.435,983,1,18.234,1.1749,929.507,163.726 +17,6.1058,4.549,4.837,2.3646,0,5.0472,2.8639,433.657,134.905 +25,3.3091,8.4563,9.951,3.843,1,230.517,1.0692,132.406,2.8113 +16,9.6663,9.1123,6.737,4.3112,1,462.392,281,4.6708,137.929 +24,5.3519,8.2063,689,4.1021,1,29.155,2.8876,161.067,142.721 +14,8.2539,1.2795,1.177,2.0823,1,9.2252,2.1877,304.155,182.113 +22,5.952,9.9792,9.161,3.6521,0,324.512,1.0273,633.793,172.593 +26,1.3907,2.5858,6.301,1.4395,1,232.731,8.415,971.226,12.7195 +28,6.6984,7.242,8.432,2.778,1,46.569,2.7841,279.347,142.279 +14,9.5626,9.0803,8.983,3.3799,0,8.047,8.206,791.906,185.362 +18,6.4145,2.3569,4.479,3.244,1,356.006,1.6115,912.272,8.4346 +15,8.3727,9.0826,485,4.1981,1,340.801,6.449,397.657,3.2393 +20,8.9579,3.0948,1.883,3.0805,1,491.771,2.9856,260.741,209.832 +32,3.0527,9.7641,666,7.845,1,282.456,2.3085,496.156,231.605 +22,2.9084,2.8126,1.887,4.2658,1,435.787,1.7029,897.745,10.3033 +22,6.4988,9.5344,4.105,3.1363,0,1.2357,2.2375,2.0872,237.674 +19,4.6993,5.354,1.182,4.038,1,6.1446,2.7491,491.765,7.7447 +18,8.5588,7.0927,1.667,3.8705,1,172.969,2.8894,760.019,1.5978 +17,9.1002,5.3211,4.458,1.4893,1,309.664,2.3581,605.119,13.739 +28,4.1808,4.7788,3.402,3.728,1,22.454,2.5472,502.366,208.368 +22,3.1318,2.2349,4.677,8.825,0,10.1348,1.1934,558.077,148.196 +18,8.0247,7.056,4.292,4.643,1,294.602,1.1755,623.039,2.263 +23,3.4733,1.9081,6.445,1.2171,0,28.335,2.4249,685.254,284 +19,8.4035,5.5284,9.372,2.2977,1,262.224,2.2789,362.624,173.844 +18,4.8136,2.5325,1.079,4.5341,0,4.5278,2.7029,522.201,202.882 +18,7.1979,9.5562,993,4.3601,1,463.513,399,280.835,6.0729 +25,1.8598,2.863,8.528,3.593,1,296.128,2.0724,98.415,11.2831 +20,6.6147,1.9973,5.064,1.206,1,131.996,1.9429,195.415,230.662 +22,5.0659,2.4231,7.664,1.7069,0,343.709,2.3956,159.151,11.0538 +14,6.2795,4.1407,2.154,3.4117,1,158.954,737,276.134,3.2595 +30,2.5121,2.3273,8.289,6.451,1,252.928,2.4788,920.854,218.797 +18,7.6319,4.9135,9.238,4.1954,1,170.566,9.793,662.267,11.884 +18,8.7652,8.7247,6.355,4.5729,0,440.197,2.0614,461.368,8.2634 +27,2.9507,7.1206,1.059,1.7705,1,49.699,1.8497,926.141,2.3384 +26,1.8614,5.7996,8.953,3.5292,1,8.0591,1.3206,901.146,10.9984 +25,1.2127,0.89,7.925,741,1,1.1789,2.2381,407.577,184.721 +23,6.7777,6.9399,7.509,3.4541,1,10.9661,2.8837,568.005,172.124 +15,6.4638,1.6641,367,1.073,0,294.976,9.704,90.632,11.9181 +25,5.9203,7.8637,799,7.539,1,8.6976,2.2453,326.205,172.688 +20,3.0875,2.5006,138,3.5494,1,405.742,9.436,413.462,8.4183 +21,4.5182,4.1705,2.224,3.5593,1,204.335,2.537,795.084,176.464 +17,6.3503,3.5047,5.771,3.2058,1,305.266,1.3118,701.652,2.0576 +21,5.4709,8.5881,265,2.3868,0,227.809,1.3478,5.8164,4.7816 +13,9.8901,1.2654,6.613,3.3745,1,451.664,2.3156,12.6203,210.654 +26,2.228,5.6564,6.081,3.869,1,1.7568,1.4885,847.801,7.0477 +10,7.2563,1.4206,1.081,4.8324,0,364.651,7.999,3.9441,4.9426 +25,4.6389,7.048,656,4.4432,0,326.086,2.9866,92.073,2.1361 +26,4.8538,9.0508,924,3.9727,1,324.758,1.8607,279.035,9.4309 +16,7.4584,4.3461,1.611,3.4738,1,206.995,1.9354,602.395,1.6076 +19,7.2319,4.8809,5.971,2.8708,1,7.838,1.9397,568.935,11.9275 +24,9.9213,9.2742,3.419,603,1,34.462,2.6501,402.291,220.609 +28,2.1555,5.2099,4.596,8.278,1,414.736,5.516,4.1123,188.912 +19,1.937,4.876,287,4.1014,1,4.2615,1.775,200.547,9.762 +15,7.519,5.7833,3.541,4.0166,1,220.809,1.1601,618.824,7.1942 +16,6.2055,6.8923,289,3.0723,0,8.1297,1.6947,451.909,4.5035 +17,3.4674,1.0688,9.816,2.1942,0,305.469,8.571,419.699,1.6066 +32,1.7148,8.2111,6.248,1.302,1,392.802,2.0676,10.6726,2.6074 +28,1.7709,4.3551,5.007,1.6359,1,333.353,2.217,353.656,217.955 +15,9.0477,7.235,3.837,2.1032,1,15.903,2.3721,531.166,7.442 +27,2.7268,7.8618,5.394,2.4291,1,6.9866,2.1543,8.6916,9.4134 +18,3.9103,3.7695,3.801,4.6466,0,397.134,6.418,7.6029,11.6568 +21,3.0399,1.1937,3.599,5.435,1,161.958,8.954,496.638,178.783 +23,4.195,6.3378,4.639,2.5943,0,1.107,2.421,56.564,191.609 +31,1.6248,8.8013,276,1.8396,1,285.711,2.32,265.065,231.295 +21,5.6715,8.8775,0.18,4.9505,1,12.3339,2.4413,332.509,5.0563 +28,1.6085,9.5766,5.566,4.3093,0,420.603,9.667,798.902,7.2256 +24,8.2032,8.6771,8.428,2.1939,1,7.1628,2.9087,870.544,7.5111 +20,3.1034,214,1.528,4.9985,1,21.74,2.146,331.976,10.6862 +17,5.8601,3.8024,327,2.5703,1,12.6565,1.956,362.157,193.777 +20,8.9207,8.1854,2.468,8.356,1,344.801,1.4332,832.023,5.7469 +21,6.8579,3.6625,9.797,2.7794,1,274.265,1.9936,974.096,187.901 +20,5.7966,6.0155,8.288,1.131,1,395.494,506,327.387,4.897 +28,3.919,6.0632,5.959,3.1816,1,229.306,2.7053,790.839,170.435 +21,3.997,3.6503,9.292,4.6872,1,2.404,2.2623,484.895,19.176 +18,7.0254,9.0447,4.453,3.931,1,10.7598,2.443,271.091,204.908 +19,9.9473,5.0323,9.833,1.3658,1,499.579,2.7396,684.967,12.2469 +19,6.9566,4.6478,2.963,1.4843,1,202.672,1.2131,467.925,7.8892 +24,6.0201,9.9751,2.403,3.464,1,310.118,1.3574,275.481,185.372 +20,7.5759,4.935,638,1.4293,0,452.466,2.3493,11.6157,7.702 +18,5.1869,1.784,3.782,4.631,0,1.0262,1.932,868.285,3.5541 +27,1.5413,5.1307,6.264,2.4972,0,329.804,1.3126,879.881,200.325 +17,6.0607,8.1402,305,3.5417,0,144.188,7.789,8.4212,9.8698 +13,9.6186,7.7686,6.179,3.7559,0,139.624,1.5507,666.761,13.7 +30,2.5777,7.8858,2.757,2.976,1,11.2426,1.7375,170.952,220.427 +20,7.21,7.0802,51,1.6998,0,411.365,1.8928,649.857,3.2591 +26,2.8084,2.5422,9.121,1.4409,1,186.474,1.8152,908.541,133.724 +25,5.8224,8.6208,8.832,5.215,1,3.3558,1.8519,267.613,134.104 +29,1.8701,8.9344,9.708,1.8124,1,4.8426,1.4272,35.445,206.854 +19,5.0533,1.9415,7.165,1.4966,1,7.4307,1.6857,797.179,8.1902 +13,7.8055,1.3046,6.827,3.1725,0,449.464,8.659,73.802,9.6291 +23,4.1281,9.756,559,4.4165,1,213.722,4.751,414.569,12.463 +21,6.9842,8.6832,1.259,2.2742,1,458.025,1.8208,850.063,4.0128 +16,8.159,8.9324,1.892,3.7333,1,40.874,141,92.138,11.2959 +18,9.3446,8.8638,2.895,7.301,1,418.941,1.956,458.117,10.466 +20,3.1118,5.4169,8.902,4.4748,0,143.416,7.419,4.9057,4.7375 +22,4.5938,6.464,173,763,0,135.657,583,514.346,199.925 +25,2.3717,5.4536,9.229,9.605,1,280.034,1.1223,742.286,10.3448 +12,9.9324,5.121,5.228,5.323,1,208.962,1.1139,227.835,7.3456 +16,9.343,7.455,7.156,1.5484,1,25.453,3.506,10.8436,3.129 +15,5.8596,5.0533,1.102,2.7621,0,2.6602,7.395,292.362,2.1539 +14,8.5783,6.4771,269,4.94,1,485.795,137,2.1471,230.454 +19,5.6886,5.0264,9.585,3.9668,0,2.9084,1.0529,718.317,238.837 +21,6.6123,4.9181,2.661,1.9022,1,8.9416,2.3893,154.608,215.502 +21,1.8021,1.7179,2.965,2.8792,1,33.91,7.985,726.413,11.1972 +13,7.7974,2.7871,1.976,3.1165,0,7.7751,1.93,242.203,19.39 +18,2.1494,1.5885,1.291,4.1136,0,5.3435,2.948,992.141,200.228 +8,8.4346,1.9567,2.333,3.6823,1,7.681,369,536.477,7.1954 +19,8.0383,9.7298,6.423,2.8465,0,3.096,1.4952,5.0925,140.647 +15,7.3787,1.5311,4.554,3.3459,1,12.5659,1.3845,774.952,229.637 +20,1.3254,2.6927,5.538,3.7296,1,13.556,5.746,415.989,6.7216 +21,3.7282,5.9059,1.224,6.657,0,249.311,8.598,611.248,159.093 +22,3.368,6.1018,8.021,1.2023,0,219.361,92,951.701,15.901 +22,4.2412,1.5397,7.841,3.4429,1,236.857,2.3934,522.097,10.8641 +26,1.7888,7.9372,216,4.2521,1,30.802,9.038,806.333,11.7679 +15,9.4326,7.852,3.835,2.0463,1,11.5481,6.584,309.765,10.9532 +14,5.9842,2.3732,688,4.8995,0,6.7352,2.414,717.376,12.5058 +19,3.7497,2.8867,7.921,1.0804,0,439.439,1.178,10.833,3.5707 +27,4.5728,9.3799,7.373,2.0835,1,316.971,8.536,894.416,190.739 +24,5.0248,8.2567,902,1.8926,1,3.0332,7.883,20.775,158.658 +18,6.4053,6.978,2.364,4.6515,0,480.526,7.889,30.891,233.717 +15,5.6411,8.223,4.563,1.4269,0,346.534,345,95.863,5.8954 +17,9.2745,4.1826,1.845,2.354,1,7.5852,2.804,163.661,3.5032 +25,5.4727,5.593,3.712,9.362,1,484.567,2.5924,261.866,8.2213 +11,9.9294,1.8741,5.222,2.6063,0,182.704,1.2435,584.378,12.2338 +14,8.6628,4.4823,533,4.287,1,492.255,1.3363,980.887,4.9202 +24,2.8766,6.0103,7.149,1.5202,0,5.1638,1.5725,694.505,11.0544 +12,9.3754,3.2738,5.433,4.054,1,7.9985,1.4349,12.3048,154.227 +28,2.0473,7.8094,829,4.5566,1,32.871,2.3374,750.636,1.3481 +19,8.357,8.4045,2.718,3.648,1,1.1072,1.4653,431.953,181.927 +17,4.4256,3.2361,9.033,3.7821,0,9.345,5.665,992.406,225.531 +17,8.9018,8.3866,9.987,1.2767,0,395.991,3.509,63.243,6.438 +16,8.8125,1.0358,9.193,8.766,0,8.389,2.7548,536.636,186.293 +16,8.2533,8.3773,7.779,3.1956,1,459.395,1.451,561.693,10.0304 +16,8.1103,1.5275,8.124,3.528,0,212.948,2.6927,645.146,159.464 +22,3.7421,8.293,5.737,1.9738,0,436.826,2.0714,734.511,178.324 +27,1.7283,6.4178,1.902,1.959,0,208.882,1.2141,8.7539,7.0794 +19,4.6268,4.7194,677,4.5435,1,265.115,5.615,139.363,188.975 +27,2.5617,9.0789,7.128,3.6537,1,158.257,9.314,307.473,2.5227 +18,7.2546,3.6319,9.854,1.3583,0,329.038,1.5896,483.175,236.814 +21,4.1149,2.8715,5.413,2.4843,1,159.101,1.9706,317.957,8.0886 +14,9.7805,5.1973,2.714,139,0,11.1585,2.0744,22.17,5.3713 +18,6.7687,4.5595,6.837,1.6964,1,4.0524,1.3419,925.779,3.3277 +13,8.4023,3.4443,9.794,2.6127,0,2.8835,1.1219,4.2275,194.924 +27,2.1927,6.9374,1.772,2.5861,0,152.987,2.305,939.311,140.614 +23,8.7581,7.5956,326,1.0409,1,368.237,2.7762,90.817,228.401 +20,9.3048,8.5298,5.419,3.8837,1,10.281,2.7434,686.944,155.443 +24,5.3836,9.7286,1.702,1.4943,1,149.614,1.6549,4.2209,8.1742 +15,6.4563,2.6666,222,2.9021,1,452.586,2.371,233.102,200.739 +17,7.8833,7.1609,337,1.3576,0,319.579,2.199,97.931,6.7496 +25,2.5735,3.9426,8.654,2.1258,0,459.861,1.2083,906.891,6.9802 +25,5.5231,6.7708,435,1.0376,1,455.613,2.1986,964.926,6.787 +23,4.588,4.7598,4.289,3.165,1,3.1705,1.492,996.162,6.0485 +29,2.3174,9.9377,7.622,2.1279,1,477.505,1.8821,7.3249,6.2744 +27,4.3078,7.289,9.532,806,1,2.5589,2.53,575.154,7.1405 +30,1.6136,9.5249,9.855,1.408,1,462.809,121,835.796,8.8471 +32,1.2323,8.3497,422,2.3557,1,273.367,2.7714,326.512,138.402 +31,2.2165,9.029,9.504,9.161,1,266.595,9.927,441.203,5.1934 +11,9.668,8.1442,354,2.9252,1,356.632,1.404,290.901,152.823 +21,5.9458,4.5916,7.459,2.041,0,439.606,2.5063,4.7691,3.1996 +13,9.6924,2.5179,6.427,3.2721,0,308.502,2.8025,8.1986,223.419 +17,4.8925,3.7032,2.495,4.762,0,21.27,2.3059,3.1227,6.266 +22,3.8063,2.024,5.073,2.6437,1,5.5945,2.4135,531.972,217.967 +23,5.5553,5.2399,1.296,3.9369,1,394.605,2.6139,622.239,131.328 +21,4.9556,5.0506,8.716,3.7652,1,6.4147,1.5671,314.625,170.411 +26,1.951,5.2525,3.579,4.609,1,363.183,2.0414,827.887,7.1602 +20,6.7674,9.7403,626,1.0701,1,263.962,8.594,889.133,4.1712 +26,2.9443,9.1145,1.588,4.1366,0,192.918,7.491,148.351,227.351 +15,6.5763,1.6171,2.062,4.5276,1,306.493,1.8268,6.1405,10.5841 +22,6.8518,3.6888,992,1.9638,1,386.178,2.2038,326.187,11.5323 +29,2.3682,4.2396,7.531,1.5691,1,47.057,1.1914,715.858,236.563 +22,1.5521,3.6053,962,4.7602,0,132.348,1.2009,51.235,8.0657 +20,8.0269,7.985,2.959,3.1382,0,473.565,2.8627,493.209,2.4046 +23,5.1382,5.2404,1.646,1.9034,1,480.474,1.5554,160.886,140.859 +29,1.5235,5.721,5.031,3.9591,1,406.815,2.9589,35.794,133.154 +23,9.9538,8.5301,4.947,1.5224,1,440.719,2.5885,959.302,185.545 +34,1.52,8.0593,1.749,882,1,346.214,1.919,347.155,229.219 +13,7.2553,1.3221,7.332,2.7198,1,1.9549,274,595.518,7.3842 +15,9.8531,7.1391,3.618,2.8311,0,287.539,8.878,6.7765,173.231 +24,3.1526,4.3544,1.864,4.1287,1,373.602,1.2529,7.3216,10.4281 +25,2.2802,2.9465,332,2.2851,1,470.852,1.9584,430.011,188.105 +18,2.0925,5.002,5.637,4.0729,0,285.226,1.1866,608.071,3.9426 +25,3.7295,4.8725,7.265,1.5566,0,39.71,2.4835,378.618,12.0206 +29,1.9094,3.5544,4.819,2.8768,1,352.519,1.9887,187.223,1.8525 +17,7.2295,2.5151,5.256,1.0424,1,140.401,1.0415,738.598,134.682 +26,1.5606,6.9467,1.389,1.9272,1,7.7364,2.3533,148.643,4.0554 +21,5.5848,7.6949,9.147,4.2877,0,375.453,9.093,671.337,230.411 +11,9.9703,2.4479,9.287,1.0799,1,11.6884,1.884,957.167,133.039 +8,8.3257,4.945,6.834,4.0512,1,12.2346,5.177,475.831,12.705 +22,6.537,8.4875,176,1.4144,1,321.973,82,208.429,233.359 +24,3.7563,996,5.371,1.724,0,394.534,2.4971,843.562,11.962 +26,6.6151,9.3711,6.292,5.497,1,291.166,1.8813,510.421,162.414 +20,5.7434,6.2762,9.947,3.7294,0,442.492,1.7117,92.399,1.1204 +22,4.8348,3.2185,9.961,1.3104,1,10.5722,1.9861,72.338,170.001 +22,2.1764,2.4648,8.576,3.2707,0,12.6207,1.9608,436.304,2.5034 +10,8.9794,901,638,3.496,0,318.478,1.6965,62.121,187.256 +23,5.0481,2.3547,9.533,1.7256,1,414.684,2.5272,178.265,210.443 +22,2.7516,1.3773,6.127,2.3746,1,269.676,1.3228,393.358,7.5712 +25,4.3098,6.1217,8.009,2.0188,0,5.191,2.4144,597.933,210.751 +19,4.7272,1.6655,4.072,4.7367,0,338.472,2.3599,594.141,11.5833 +18,8.4478,5.2863,3.197,1.5997,1,406.791,5.985,591.343,137.178 +15,7.6025,5.9012,4.632,9.166,0,138.272,1.3613,746.101,9.8636 +15,7.9237,2.9804,1.469,1.828,0,2.7099,2.5048,11.4597,11.437 +23,1.0993,3.506,3.571,3.3476,0,258.976,2.4926,8.2921,217.985 +16,4.7454,3.725,8.576,3.4868,1,2.1078,72,156.541,227.351 +12,5.3321,2.635,38,4.6203,0,208.008,6.692,79.447,10.7009 +26,1.1727,7.3912,1.509,4.4088,1,8.909,1.2716,7.4205,12.3447 +17,3.3383,3.1801,1.251,1.4416,1,11.2483,1.415,232.983,2.7882 +18,7.8426,7.963,4.031,2.2758,1,194.411,7.819,262.228,7.8149 +22,2.234,4.3173,997,3.7363,0,5.5853,7.749,650.779,12.3177 +16,5.8178,4.53,1.734,4.5827,1,5.7078,6.437,407.613,4.862 +26,2.9368,5.1288,1.455,1.6858,1,413.531,1.19,207.003,138.368 +32,1.1091,7.1303,9.151,2.2222,1,2.0712,2.439,455.043,164.468 +22,3.1708,2.735,8.821,4.4974,1,344.483,7.323,688.597,15.599 +12,9.7829,1.2159,322,1.7924,0,407.241,1.7462,788.191,10.6203 +19,8.2138,5.5606,7.517,2.4026,1,6.5361,1.6727,132.644,184.637 +13,9.6362,3.2698,6.555,4.5225,0,9.7685,2.4538,717.568,7.6685 +18,5.3907,4.4249,7.677,4.0112,1,320.747,1.182,1.4477,11.2626 +26,1.9876,6.4695,4.945,1.2172,1,157.823,6.707,72.708,6.4837 +22,5.9316,4.9413,9.914,1.624,0,238.212,2.6746,664.394,144.871 +23,5.0894,6.2028,438,1.7648,0,418.001,2.4988,47.398,10.577 +11,8.5992,5.442,2.344,4.5637,0,6.8992,1.8645,145.505,5.2107 +25,1.8827,7.398,3.965,4.9947,1,309.826,2.797,766.904,7.3964 +19,5.3942,7.0594,4.498,3.87,1,471.199,484,8.1036,6.7072 +25,2.3504,5.3419,9.214,2.4216,1,2.8733,5.479,896.613,218.619 +25,3.9221,6.789,0.56,509,1,3.2003,5.899,775.726,12.5269 +17,7.6362,8.7356,451,3.4874,0,277.371,4.087,743.554,156.637 +21,5.2842,4.3227,4.079,1.9468,0,480.038,7.865,75.685,224.336 +18,4.383,4.1276,4.165,3.1649,0,11.0237,1.0137,7.6898,4.3732 +28,4.5503,7.6425,9.655,3.0335,1,165.396,2.2633,99.005,224.855 +25,5.135,5.8255,5.992,2.4042,1,4.9324,2.1286,860.014,12.9513 +10,8.0651,7.101,6.357,4.7219,1,181.124,3.131,512.854,205.491 +21,9.0288,8.9211,7.133,1.157,1,2.2166,2.9313,722.206,4.0319 +12,9.598,3.078,0.77,3.5607,1,194.547,2.2564,741.865,6.5505 +15,8.0821,7.484,6.351,2.0492,0,277.744,4.903,831.487,4.6601 +21,3.8387,7.5879,2.372,3.569,0,487.502,3.735,26.282,156.821 +18,7.1932,9.5311,874,3.3761,0,409.194,2.626,378.332,3.3783 +23,4.9384,5.413,7.321,512,1,411.033,2.1954,801.688,190.205 +23,3.292,5.9686,7.419,1.4267,1,11.4072,7.089,771.294,6.0105 +12,8.5678,4.2784,9.966,9.455,0,4.3617,2.189,527.389,6.1314 +26,1.3458,3.3063,8.025,8.349,1,301.537,1.2655,402.243,6.7469 +13,9.1159,9.032,8.292,3.6424,1,260.569,2.1261,968.758,179.133 +23,5.1533,5.6265,9.514,1.1978,0,258.252,9.137,420.871,221.812 +20,6.7348,4.7904,1.511,2.3737,1,5.4504,1.4479,766.346,217.802 +15,6.9342,1.0455,4.977,1.2349,1,246.942,578,418.516,2.4301 +14,9.0561,6.1249,5.806,2.9012,0,7.5178,1.2874,316.738,6.2985 +19,6.73,7.3795,3.293,3.6029,1,211.057,1.0768,644.587,161.324 +21,6.5254,7.6728,8.394,1.6554,0,3.1081,1.3018,80.954,148.452 +30,1.5999,9.0537,7.624,3.0151,1,428.446,1.3971,981.564,8.4007 +16,5.6657,4.0947,7.209,4.1243,1,659,2.769,157.415,207.082 +30,2.3515,9.5307,9.971,4.711,1,469.662,2.801,877.353,3.1312 +16,7.6369,8.6543,2.594,3.5534,0,431.446,7.818,528.901,153.368 +18,5.61,2.965,7.355,1.6157,1,376.304,3.473,11.6665,6.554 +15,7.1221,1.5928,5.514,6.132,0,491.275,7.584,796.435,12.6522 +20,1.3751,4.3539,313,2.7283,0,2.691,736,338.229,9.2997 +27,1.7631,4.019,1.606,1.1313,1,320.799,1.0522,869.567,235.136 +16,7.4469,5.7572,8.959,4.1068,0,424.651,6.402,166.224,11.6806 +31,1.6488,5.8339,5.955,2.145,0,6.3309,2.6764,713.981,234.262 +31,1.6413,7.4999,8.249,4.933,1,292.387,2.5745,307.788,6.1205 +26,1.109,5.0989,5.453,2.605,1,196.961,9.013,264.775,184.306 +8,9.6085,1.0482,0.22,2.9447,0,217.914,1.4265,5.9758,172.094 +25,7.6376,8.5829,3.375,3.6494,1,456.262,2.8674,48.709,203.435 +24,4.1793,3.0976,3.815,1.2963,1,269.326,1.5723,397.587,166.466 +27,3.6688,9.713,9.729,4.2088,0,4.6631,2.5453,7.1073,163.766 +21,4.1473,1.1786,56,4.7657,1,468.608,2.4791,234.376,15.857 +23,7.9719,9.5825,9.857,2.4952,1,9.2606,2.8239,492.399,236.412 +15,6.9523,9.101,9.805,3.8027,1,446.318,9.171,810.189,5.4743 +20,2.6668,2.3104,9.962,2.6242,0,48.546,1.303,930.153,7.227 +22,2.567,4.658,4.766,3.473,0,438.919,3.119,520.179,162.713 +29,1.8856,7.0511,9.638,1.6306,1,338.567,1.7139,409.274,4.1361 +24,6.9427,8.503,3.956,4.374,1,371.776,1.5908,955.207,163.052 +12,7.8794,4.3407,263,4.9444,1,349.934,8.954,963.234,7.6724 +25,3.3854,9.2852,2.243,1.1451,1,230.262,7.461,198.508,1.0404 +29,1.1885,5.903,9.453,3.1795,1,13.721,2.1281,536.141,184.744 +26,1.7395,6.3001,138,1.4217,1,142.501,1.0215,822.701,1.2396 +18,9.7107,8.4542,546,3.2662,1,365.584,1.8119,824.036,5.3793 +24,3.659,2.968,756,1.052,1,313.018,2.1369,688.129,8.0738 +13,7.923,3.5427,2.864,3.9264,0,292.442,1.2914,476.754,3.186 +24,6.622,9.0595,881,5.541,1,326.304,5.802,40.962,219.257 +26,4.4375,9.1996,8.595,4.4758,0,387.393,2.5823,808.348,149.241 +24,2.8512,9.7648,5.911,4.2021,0,37.417,2.806,233.466,210.095 +33,2.0925,9.0184,9.021,3.394,1,5.2698,2.4884,434.146,163.692 +20,6.5351,1.2737,6.884,3.371,1,181.518,2.51,571.196,238.067 +21,7.9717,8.2372,971,1.0428,0,131.984,1.713,833.466,12.6037 +18,6.7951,4.0984,5.099,4.2968,1,269.119,1.8884,380.112,1.2903 +23,5.7727,9.908,6.387,6.099,1,3.0708,1.0741,553.169,3.8606 +32,1.3776,4.7228,5.763,7.797,1,381.232,2.5248,286.372,141.224 +12,9.7164,5.5384,4.843,2.72,1,5.3264,7.911,838.544,8.3455 +20,8.1884,5.2977,846,1.3709,1,135.701,1.6793,787.686,2.7094 +19,3.6354,3.2174,6.445,1.1104,0,391.371,54,821.897,5.7154 +10,9.8197,7.502,8.013,2.8791,0,2.578,2.8195,6.6902,11.3897 +28,6.4169,8.9565,7.864,1.8629,1,330.101,2.8449,492.029,12.4364 +27,6.2418,8.0268,191,7.028,1,462.239,2.1313,144.484,22.43 +14,7.7327,1.3953,6.502,2.6743,1,308.819,1.2697,677.023,2.1763 +17,8.3059,7.7677,1.996,1.9351,1,356.329,5.358,318.277,8.5874 +18,6.9083,6.2585,5.833,3.6726,0,396.133,1.4774,77.683,12.1452 +26,2.1529,4.0914,6.774,5.138,1,11.1123,2.3742,7.4515,2.7184 +21,4.0444,2.5402,9.972,3.1031,0,290.482,1.8158,518.128,165.072 +17,9.3528,8.5973,305,2.1825,1,154.528,1.5825,132.429,12.3607 +26,3.0215,7.2019,912,2.0303,0,12.4748,2.5483,56.232,11.0283 +20,4.3495,5.4774,77,1.1614,1,9.6228,9.394,611.278,157.459 +24,4.8887,6.0957,3.984,1.521,0,292.715,2.5799,467.522,6.9076 +17,4.9546,9.107,8.216,4.2384,1,397.266,1.3184,28.685,8.1439 +18,6.5165,4.7392,8.441,1.6321,1,437.945,72,4.2005,3.9048 +13,9.4877,1.937,737,3.4055,0,214.293,2.1958,665.493,12.5694 +25,3.1662,2.0838,8.969,4.7379,1,18.645,2.6335,871.737,8.9378 +26,2.0935,6.613,3.229,2.825,1,343.653,1.4531,736.311,6.2479 +28,2.7772,9.1126,882,1.9857,1,39.018,1.3642,894.088,2.9938 +15,8.9823,4.0376,582,1.3414,0,12.666,2.4163,930.206,5.574 +17,6.8123,2.0775,8.521,4.6702,1,148.645,2.6543,455.051,4.6405 +26,3.5732,6.4875,7.304,3.4104,0,266.697,2.9233,701.011,5.9382 +16,8.3435,8.7119,6.986,3.3264,0,222.193,1.037,403.405,11.6505 +19,8.7523,7.4832,3.397,2.1308,1,352.894,1.7841,920.347,5.7839 +17,8.6186,8.6876,3.799,4.2252,0,252.242,2.4688,567.343,196.237 +14,9.2703,5.3655,9.581,3.5684,1,5.58,1.5956,754.926,11.3791 +24,3.2702,7.5188,638,1.4159,1,8.2977,1.3856,2.4373,149.715 +15,7.7954,1.4006,7.737,2.9979,0,450.954,1.7158,579.794,4.9905 +18,5.1449,3.4827,3.096,2.151,0,11.3699,1.0706,744.571,9.9871 +12,8.578,3.8955,391,33,1,2.5043,5.762,264.436,144.667 +13,7.5564,5.113,7.426,4.0381,1,365.727,1.999,2.423,7.4651 +21,7.988,9.2908,3.309,6.142,1,342.006,1.8299,746.196,8.0687 +23,6.9055,8.743,7.221,2.5498,1,300.038,1.1374,344.705,193.782 +27,2.5969,1.3453,7.077,1.6811,1,251.128,2.6489,434.502,200.924 +17,5.9052,1.7279,5.348,1.7104,0,48.479,6.689,566.432,12.7906 +14,9.862,3.5764,7.774,2.3868,1,5.9916,9.321,11.9149,215.139 +15,9.4365,2.9074,581,4.9851,0,255.081,2.9115,11.2517,176.804 +27,1.3886,6.1477,2.866,2.0419,1,282.022,1.6689,961.272,1.3272 +26,2.4833,9.0278,7.341,9.116,0,1.1246,1.0403,345.508,134.274 +32,2.1856,9.6229,5.891,3.068,1,205.996,2.5827,26.297,16.747 +17,7.5338,6.536,127,1.1814,0,391.401,2.2301,5.7261,12.9812 +22,8.3601,8.3816,9.016,5.277,1,235.549,1.7194,182.189,199.674 +30,2.9216,5.252,5.456,2.509,1,437.639,2.6673,436.586,7.2201 +17,5.5527,2.0833,8.686,1.144,1,322.399,2.819,348.653,1.5715 +19,8.5663,5.2469,8.827,2.1558,1,383.043,1.1835,430.336,152.069 +20,7.5952,5.5508,445,2.1336,1,40.224,2.4317,706.871,175.392 +23,5.8801,7.4246,5.077,9.277,0,34.475,1.1578,645.372,183.661 +18,6.3131,2.1988,4.158,3.9201,1,37.469,2.7802,498.222,2.655 +20,5.5752,3.6831,4.494,6.464,1,347.655,4.576,816.673,161.611 +18,3.6779,3.6403,8.951,4.5766,0,275.232,1.1999,858.751,4.975 +26,6.0852,9.5944,7.881,2.9379,1,283.266,1.2772,594.905,185.949 +19,7.2,4.4394,1.265,1.381,1,9.4942,2.0609,12.6395,168.745 +16,8.8599,7.5509,6.103,4.8149,1,41.372,586,412.117,136.179 +20,6.7266,7.5081,9.959,1.5397,0,156.069,296,638.119,12.1518 +18,7.8501,2.6554,5.956,2.2499,1,267.868,2.9295,7.2223,171.626 +28,2.4406,5.7187,7.859,1.4213,1,12.4773,2.6963,2.9707,1.3727 +24,5.154,8.943,7.691,3.6421,1,347.932,9.007,948.851,199.725 +27,1.084,4.752,3.503,2.4284,1,487.584,1.4504,732.764,4.8294 +30,3.2201,9.4512,3.718,6.619,1,40.097,1.4668,161.577,11.4669 +20,7.5382,2.1446,7.241,521,1,309.548,2.6077,450.675,11.6832 +12,9.9263,7.416,0.5,3.6269,0,283.753,1.7912,201.622,18.651 +33,1.8926,8.9145,5.706,1.1854,1,244.886,2.4793,2.0183,4.6318 +28,4.6134,8.4768,7.129,689,1,10.2486,2.736,397.776,7.194 +19,8.2006,9.9259,7.776,2.4971,0,174.005,1.6979,651.901,159.146 +23,2.8363,6.7939,2.715,4.0138,1,203.197,8.564,954.588,9.9065 +24,5.9958,9.3669,1.468,1.3939,0,472.285,1.4961,772.136,7.1727 +22,7.5976,8.2695,2.918,1.3822,1,212.791,2.5526,237.837,149.142 +22,6.5439,8.4443,5.075,4.1694,1,293.095,1.7509,34.285,2.0777 +31,2.6922,5.6914,3.421,7.392,1,461.212,2.6872,525.375,189.547 +21,4.1985,3.8236,5.684,3.0836,0,259.213,2.6863,19.936,12.594 +16,8.0541,9.3456,535,4.7751,1,12.5725,1.1201,834.616,4.9445 +17,5.988,4.3212,5.098,4.2065,1,190.503,1.3443,176.285,9.8044 +28,1.0471,5.3882,368,3.091,1,18.777,2.0337,297.073,3.1458 +15,7.8489,4.4611,5.347,1.5996,1,357.359,3.332,581.825,147.979 +28,1.3178,5.6482,4.225,7.119,1,14.806,1.3967,131.992,160.632 +13,7.7116,4.7051,2.842,4.7462,1,365.144,4.482,628.369,9.7269 +23,2.8223,4.797,9.041,4.9297,0,444.621,2.5439,944.783,8.1526 +22,9.6227,8.8205,1.848,1.175,1,168.037,2.8284,694.621,203.948 +20,4.3115,4.4439,6.814,3.3485,1,6.7671,4.246,814.657,138.257 +26,3.9424,5.8894,9.246,4.2082,1,319.277,2.002,444.109,160.085 +22,2.34,1.3919,5.387,1.1684,1,180.427,1.9096,371.664,3.0605 +25,3.7504,339,8.764,9.384,1,266.993,2.2802,335.317,171.198 +16,8.8899,2.4529,1.249,561,1,317.083,2.0873,663.861,10.6707 +14,9.967,7.0459,4.938,2.0598,1,203.871,6.514,52.335,8.8 +19,4.3148,9.919,457,4.4972,1,462.347,8.736,477.596,223.057 +21,5.0375,9.0889,81,4.5149,1,199.807,4.957,10.9739,1.2944 +18,7.4986,2.1502,4.433,6.387,1,153.687,2.7634,676.639,4.6946 +14,8.9758,2.0459,369,1.0218,1,442.838,1.5655,728.129,9.001 +19,6.3374,1.8151,6.698,2.0402,1,6.8151,2.9285,204.236,7.777 +17,4.5237,1.398,9.383,3.9031,0,6.2104,1.348,762.108,12.2564 +23,4.7136,7.7181,858,3.0593,0,467.849,1.6582,88.06,9.6216 +20,7.2606,8.7503,3.275,2.5692,0,10.4484,2.3679,182.878,189.189 +28,1.029,6.1416,4.441,2.9597,1,7.4219,2.3917,457.521,18.432 +18,6.5763,1.882,4.552,481,1,267.584,6.934,877.423,18.537 +20,4.1994,2.8528,7.748,2.3883,0,2.3394,8.648,492.425,8.8645 +15,8.1478,4.7593,4.434,4.9603,1,310.008,2.934,817.101,9.7768 +33,1.8369,9.5435,272,4.422,1,226.465,2.4164,223.595,172.911 +18,6.2938,2.4735,7.101,2.5962,1,320.206,2.3816,7.3292,2.9808 +22,5.3288,7.3165,8.848,1.4782,1,141.968,2.438,6.8872,204.461 +18,6.7809,4.3945,5.139,2.6996,1,452.736,7.723,972.633,12.9902 +23,1.5837,2.9785,5.811,2.8691,0,13.529,1.3496,173.071,203.651 +19,6.2199,4.5592,1.629,2.8874,0,318.782,1.6253,866.242,190.465 +17,6.0534,7.121,2.206,4.261,1,472.546,1.5676,322.571,8.9852 +23,6.0459,7.9869,2.352,1.9487,1,200.405,2.9492,4.9688,2.4374 +17,6.4314,2.433,4.307,2.5818,0,8.0713,2.2924,248.568,220.999 +17,7.0882,7.2541,9.281,546,0,3.4191,3.396,510.438,8.2705 +12,8.2449,6.835,5.218,3.9478,1,481.509,8.805,11.5704,8.9698 +30,3.4284,9.551,1.921,1.2974,1,381.851,1.0363,922.942,218.172 +13,8.4254,1.9301,2.661,4.0828,1,459.476,9.454,900.886,220.163 +24,5.4843,8.8274,384,1.3282,0,349.417,2.3578,157.656,6.3097 +30,1.6935,8.0947,6.233,539,1,171.224,1.0817,739.737,2.135 +29,1.527,9.6786,0.44,7.742,1,6.1508,1.4773,466.101,266 +24,4.1981,4.7789,3.924,4.9284,1,464.653,1.6004,982.306,10.5191 +19,8.0641,7.274,5.647,1.599,1,24.481,8.113,6.485,136.458 +18,7.3691,3.7071,2.418,5.441,1,198.254,9.681,476.324,6.4881 +16,8.0975,1.8437,789,5.938,1,288.896,2.34,292.618,6.234 +22,5.6554,4.4308,244,1.5517,1,5.328,2.6,729.115,8.5628 +15,4.9618,1.6575,2.513,1.882,0,154.602,1.112,12.2023,6.314 +32,2.3271,9.8204,916,2.5574,1,318.938,1.8155,631.828,206.025 +22,3.9537,9.625,3.363,1.0687,1,5.1961,1.9003,948.579,154.282 +25,4.9062,5.8921,7.729,2.5966,1,6.7621,2.2119,459.342,198.947 +31,1.7974,6.2646,7.163,7.038,1,255.294,2.0815,459.688,206.515 +28,2.9855,5.3808,6.109,2.1493,1,311.729,2.6323,500.745,10.4402 +16,6.384,6.6219,8.525,2.9896,1,9.3501,2.354,421.551,11.4619 +13,7.621,1.1618,2.821,0.31,0,1.6542,1.1651,453.001,234.677 +19,9.9851,5.5502,8.851,1.9937,1,479.183,2.3463,468.606,196.042 +16,9.398,2.8721,3.992,1.5126,1,1.3746,2.5397,998.085,191.495 +20,6.7831,9.4018,4.009,1.2018,0,1.026,7.943,12.5272,140.091 +24,4.7912,7.6207,4.054,3.0227,1,16.167,1.7559,292.468,11.0676 +19,6.7256,9.7251,981,2.9427,0,11.1227,5.423,218.679,214.707 +17,8.0709,3.756,9.755,3.1535,1,286.793,2.5527,548.746,193.094 +27,2.065,2.8513,1.385,7.944,1,447.104,2.1913,1.2781,12.4029 +16,4.6891,1.9542,3.409,1.4285,0,240.554,6.662,921.888,6.4918 +12,8.5582,1.115,3.193,1.0484,1,386.651,1.8713,53.581,3.5347 +20,4.4545,2.4233,747,2.7025,1,454.614,1.528,897.116,132.649 +16,6.1469,6.7878,1.523,2.3053,0,9.47,7.765,351.516,7.1047 +20,6.2899,2.3109,449,1.6515,1,244.155,2.6794,158.431,6.3412 +20,2.6603,05.09,2.924,3.9301,1,321.035,4.435,20.037,2.5389 +24,4.2601,8.8782,8.667,4.699,0,165.942,1.4024,476.025,8.273 +24,4.0106,6.9376,3.394,4.8745,1,369.876,1.7484,4.9866,188.005 +29,1.2358,3.9463,1.237,5.827,0,352.657,2.4706,783.986,2.5916 +23,1.2177,3.7247,6.457,3.8654,0,210.547,4.505,79.273,213.266 +15,8.4853,4.5574,9.966,1.8412,0,4.3977,1.8275,704.935,5.1308 +15,3.4576,1.7704,2.323,4.3263,0,5.784,197,897.376,182.322 +27,5.6627,6.34,2.796,3.708,1,184.675,2.4677,553.982,19.752 +22,3.6885,3.6415,9.718,1.8736,1,4.1034,7.042,484.526,190.213 +17,9.4661,8.5237,1.788,1.6772,0,390.812,2.1627,533.884,209.485 +23,3.3337,7.5655,5.112,4.9658,0,167.163,1.8056,190.134,8.1533 +19,4.8669,6.1051,2.397,4.9277,0,333.049,1.504,517.168,236.613 +15,8.8546,3.642,9.324,949,1,173.189,5.497,546.339,6.7103 +15,8.5774,2.0993,9.815,3.1497,1,397.969,8.032,766.944,224.232 +31,2.6749,7.7615,8.147,2.6776,1,444.206,2.6602,35.444,10.4986 +14,8.2238,4.8641,3.148,7.719,0,418.757,1.4424,10.1305,1.3664 +22,5.1237,2.2475,4.035,8.389,1,242.237,2.7405,601.488,18.838 +15,5.3467,1.9517,2.423,4.9463,1,4.1976,1.423,790.079,188.979 +22,2.2013,1.654,8.908,2.2636,1,185.856,197,969.864,4.7351 +33,1.7254,7.7716,9.146,629,1,212.228,2.8447,9.9352,197.643 +19,7.5515,2.2899,4.189,1.074,1,480.127,2.1718,748.888,3.7819 +24,5.4682,5.2664,6.565,1.3417,1,282.749,2.35,599.882,3.6344 +24,4.9317,4.5155,1.656,2.5546,0,320.423,2.7474,2.5184,194.141 +22,7.5656,5.7961,4.349,1.6777,1,391.002,2.9536,721.059,6.9653 +18,7.8896,8.7715,6.315,2.2751,1,284.101,2.931,3.5939,1.8451 +30,2.4302,8.6775,3.854,8.325,0,299.242,4.749,787.404,229.523 +17,6.492,4.5108,3.576,1.6336,1,12.2664,5.657,724.109,13.369 +23,2.2182,1.537,1,3.516,1,2.9433,2.4553,691.041,10.7539 +14,7.7624,4.2644,8.043,4.4486,1,360.693,1.0666,12.8796,12.0986 +23,6.9126,6.0619,8.893,9.938,1,424.342,1.7798,919.843,160.908 +19,9.6095,5.5776,9.695,3.7845,1,20.6,2.5657,899.924,20.68 +32,1.6206,6.5134,7.193,1.7478,1,274.457,2.0495,901.258,161.419 +23,1.5135,1.5408,5.488,2.372,1,153.643,1.962,366.759,177.486 +23,3.5397,6.4654,2.693,1.4563,1,22.511,1.337,497.251,4.3237 +18,3.3554,1.8265,9.993,3.4822,1,10.4445,2.025,12.3746,9.2182 +25,3.2228,7.5052,5.898,4.2227,0,379.943,1.4365,6.0584,140.354 +11,9.1563,3.3909,6.812,1.4314,1,245.956,6.579,6.819,148.658 +23,3.2459,7.099,6.824,1.2111,0,273.578,39,573.082,6.4966 +24,3.4475,4.787,8.453,3.4072,1,1.8544,2.4395,328.189,233.996 +19,7.8346,4.0786,97,9.758,0,311.199,2.9081,58.376,2.8365 +20,5.0477,7.0503,2.202,3.1992,0,10.1328,2.8924,596.738,2.6947 +15,7.9904,2.2687,6.655,4.721,1,191.697,8.976,907.992,5.4996 +33,1.5883,7.9529,8.951,3.1007,1,206.358,2.4863,88.346,180.939 +23,5.3881,6.3078,6.853,2.567,1,224.366,2.0363,721.398,8.772 +32,1.3025,5.8756,4.135,5.695,1,11.3718,2.4002,820.318,237.088 +28,1.5639,3.5355,3.616,3.2455,1,425.055,2.5387,1.3128,237.055 +15,9.1579,4.8245,7.379,2.2328,1,213.925,2.9408,2.538,3.8324 +26,2.2532,5.9735,7.412,1.0856,1,306.067,4.552,464.001,9.6289 +21,5.7918,4.7246,6.071,1.7669,0,306.969,2.3092,657.157,4.894 +25,4.6999,6.9831,2.915,2.4605,1,303.492,2.2025,796.143,9.7924 +25,4.1261,4.337,9.252,4.578,1,279.659,8.632,452.794,12.7887 +11,9.0985,2.0227,5.519,4.788,1,411.313,1.1778,940.766,197.456 +21,1.1964,2.1393,7.905,3.3278,1,406.309,5.303,816.835,8.594 +19,6.9741,58,2.143,5.127,1,208.572,2.7398,11.1728,236.855 +13,9.6705,3.1996,344,4.1143,0,317.923,2.638,445.777,225.735 +25,6.0415,7.4892,8.746,1.6128,1,5.1415,1.8421,994.929,13.69 +15,9.4314,7.9416,501,2.984,1,4.5386,1.5349,415.842,11.5415 +24,1.4703,2.0247,5.123,1.3857,0,239.958,6.987,392.407,132.155 +26,4.7691,9.5904,4.817,3.667,1,450.102,2.3688,30.114,4.426 +21,3.3414,5.024,7.512,3.615,0,32.5,246,491.624,177.044 +17,7.5774,9.1698,2.819,2.7602,0,334.608,1.3884,732.559,11.9145 +17,9.8317,7.0677,2.191,1.2046,1,7.8837,2.5817,5.6997,6.865 +29,3.3088,7.2243,9.261,1.2685,1,226.652,1.8555,83.736,11.077 +18,6.8876,8.504,5.717,1.9143,1,200.395,1.9054,918.404,7.0216 +21,2.7829,2.1999,1.047,7.251,1,391.489,2.121,783.282,167.988 +14,6.088,881,193,1.6883,1,6.8912,8.601,916.479,147.464 +25,5.1754,7.1613,9.988,3.4218,1,269.596,2.0216,10.3955,9.3142 +11,9.748,3.4444,1.956,4.1542,1,455.676,1.489,455.607,7.5418 +22,6.4767,7.8665,6.105,1.6629,1,44.623,9.928,8.0332,210.729 +21,4.1456,3.3894,4.201,1.168,0,426.169,1.0618,838.468,163.737 +27,2.0269,8.1933,8.856,4.1632,1,187.493,1.4962,953.021,171.788 +20,2.3612,1.307,7.552,4.4535,1,47.055,1.0871,304.774,148.465 +22,3.0279,1.7337,597,2.0501,1,40.265,1.3624,540.041,1.8055 +23,3.2587,3.4088,107,1.345,1,425.571,1.641,304.699,1.4223 +16,8.6555,4.0849,8.798,3.4748,1,466.177,385,385.084,10.3001 +18,6.051,3.487,4.447,3.9202,1,468.501,5.414,481.792,22.332 +25,5.7105,7.6365,9.316,901,0,12.1932,2.4975,792.894,12.593 +21,2.0329,9.695,4.955,2.9752,0,6.3844,1.3793,155.528,210.212 +13,8.7413,3.5122,6.942,2.9418,0,345.437,1.0655,165.484,2.3172 +20,7.5053,8.3724,693,1.8935,0,281.607,1.3016,209.843,173.823 +18,1.609,668,7.452,3.7488,0,163.713,5.245,6.2621,5.8881 +21,7.3705,9.4234,338,2.1409,1,342.225,7.195,64.703,12.5879 +22,5.8918,9.8632,3.514,3.3839,1,3.0998,1.5466,197.966,7.0301 +21,1.7355,8.857,1.187,2.5856,1,2.3604,1.0768,443.163,17.096 +19,5.1247,2.9127,1.469,1.2423,1,177.155,1.4264,688.734,9.6213 +17,5.3623,3.724,1.858,3.0325,1,9.6923,4.491,454.457,11.092 +23,2.492,7.7639,3.282,3.6845,0,359.278,4.694,906.957,5.8883 +14,9.5113,5.9593,892,4.8695,1,474.011,1.1518,771.476,6.755 +16,8.6498,6.4437,3.683,1.9005,1,330.814,1.1366,280.292,4.3074 +26,7.0212,7.5751,7.244,3.224,1,327.392,2.65,139.106,132.912 +10,5.1607,1.1798,827,4.9399,1,3.298,1.004,895.493,3.4799 +25,4.7059,8.3321,5.911,3.119,0,256.138,2.9786,402.939,6.4369 +22,6.8588,7.0562,4.819,4.7323,1,408.551,2.8696,388.687,12.7311 +26,5.9089,5.7734,978,5.191,1,32.706,1.6268,811.904,6.596 +32,1.5605,8.8974,8.462,1.7102,1,11.3891,2.1563,1.9261,14.124 +26,5.6125,7.1931,4.548,6.697,0,424.238,2.8058,456.601,3.399 +14,8.2576,2.017,7.751,4.1776,0,482.188,7.536,717.177,233.573 +17,5.1332,4.2975,193,4.4017,0,139.496,9.469,85.02,175.197 +23,1.4676,4.9404,5.623,2.5066,0,10.3547,3.328,886.357,12.0917 +13,8.0765,5.522,746,933,0,169.263,1.6915,471.023,221.001 +26,2.8123,9.5464,3.481,6.356,0,3.1579,4.783,84.923,208.744 +22,3.3276,1.2858,2.259,2.9408,1,436.716,2.7926,4.5404,8.7973 +27,2.4824,6.9746,7.189,2.5319,1,46.465,1.2947,312.371,2.7871 +23,3.9719,5.0623,4.901,3.4739,1,316.652,2.7591,2.0393,6.0536 +13,7.8108,2.563,7.511,1.526,1,382.167,6.153,17.387,5.1985 +26,5.6745,9.2475,5.153,2.0118,1,334.325,2.0821,727.484,180.014 +29,2.8439,8.5184,865,1.068,1,188.677,1.9428,1.438,131.546 +16,8.9005,5.2426,7.354,3.0507,0,316.021,1.199,527.825,204.024 +19,8.9162,2.2894,8.332,2.1157,1,41.816,2.695,419.846,11.7528 +13,8.8352,1.2162,9.035,4.5988,1,404.954,1.3044,131.642,184.744 +20,3.1492,3.6339,572,3.2089,1,4.0529,5.953,688.778,7.7621 +22,5.0612,2.5543,7.536,1.9935,0,23.13,2.931,696.193,144.516 +16,9.8649,5.0669,752,1.3179,1,198.661,1.3244,729.085,153.456 +19,7.9481,9.6641,1.557,4.5264,1,376.004,6.242,767.654,182.229 +26,1.2445,5.7495,1.642,813,0,250.688,1.0909,321.842,191.877 +29,1.5868,8.8993,709,1.6346,0,174.851,1.8405,994.188,6.6361 +19,5.1754,6.5088,3.199,4.7175,1,353.175,1.5361,8.2224,9.2414 +15,9.183,4.7525,4.735,3.2702,1,236.789,1.9054,651.218,4.9712 +25,5.8483,8.5461,9.979,2.6636,1,12.8312,1.9856,971.067,17.948 +18,5.4803,4.7137,431,1.0177,0,445.208,3.701,232.067,6.4975 +28,1.9493,8.6863,7.262,4.1669,1,5.6524,9.447,285.344,9.3845 +18,6.911,2.9158,6.934,1.021,0,9.044,2.2461,580.218,192.726 +13,8.3989,1.2881,2.045,1.2413,0,7.1956,1.9511,783.445,8.1553 +23,4.4238,8.5531,585,9.593,1,8.1822,265,335.658,6.996 +18,7.9805,5.8742,546,7.907,0,269.021,9.454,838.407,156.284 +19,9.6803,8.8909,7.003,4.7666,0,312.433,2.794,248.633,23.409 +29,2.8339,9.3783,9.983,3.0102,1,224.306,2.586,875.623,1.503 +15,5.71,5.363,3.586,3.1892,0,10.2086,2.0119,260.424,200.349 +16,3.5842,5.1997,8.964,4.7716,0,6.6095,2.186,621.261,2.9185 +16,8.1357,3.7496,3.819,1.1529,1,246.076,1.8212,364.213,8.2776 +20,6.1983,6.2586,6.894,296,1,282.742,366,328.608,10.2012 +21,6.7112,7.9359,5.983,2.9944,1,151.981,1.9834,360.456,172.497 +17,8.1812,2.8059,53,2.5392,1,11.022,2.1936,504.209,222.376 +20,4.5637,5.568,784,2.3883,1,4.0296,1.4917,846.598,2.4483 +14,9.2358,7.0873,208,3.094,1,1.3122,114,761.725,178.754 +15,5.7973,1.3443,3.708,2.2722,1,5.2868,1.9998,454.847,7.735 +33,2.4216,8.1407,7.458,1.4378,1,37.104,2.4592,289.339,216.459 +19,7.2631,6.0611,1.728,1.3728,1,172.009,1.7576,855.758,6.6772 +22,8.1394,9.4954,6.059,1.1119,1,1.3709,2.1276,871.483,166.527 +19,3.8509,3.3953,2.888,1.6626,1,254.083,271,45.914,3.9541 +17,8.7146,1.0815,797,1.7657,1,268.034,2.146,698.887,229.907 +17,9.1553,5.065,7.984,1.5439,1,214.344,1.8426,375.571,1.038 +17,3.4921,8.581,7.754,4.8938,1,5.5341,9.931,157.607,5.5884 +18,9.8517,9.6953,5.248,4.6637,0,377.484,2.056,328.268,162.227 +24,2.2664,3.868,2.846,2.8726,0,344.541,1.9367,685.263,204.846 +28,2.8181,7.535,8.094,4.9053,1,197.365,1.7984,771.716,238.454 +19,2.658,5.251,1.861,4.956,1,190.408,5.488,853.139,4.1583 +11,9.0459,3.6862,2.898,1.7797,1,7.7968,8.887,2.7536,7.3715 +19,6.8886,6.584,1.839,2.2259,1,376.775,2.9741,491.542,214.044 +23,2.3689,6.2217,6.742,4.7953,1,299.787,1.2993,281.183,0.78 +15,4.9629,5.8522,6.862,3.0431,0,4.2897,1.783,68.712,175.997 +21,6.5377,2.8088,6.525,1.0646,1,189.032,2.697,252.878,10.1532 +29,1.7512,9.1022,4.156,3.4469,1,45.178,5.188,570.617,165.316 +16,8.9417,3.0411,1.002,1.0287,1,226.187,1.2106,714.843,12.5976 +18,8.2324,4.4973,9.112,1.6968,1,162.464,834,772.364,150.507 +26,5.5469,5.4376,5.077,1.1378,1,321.892,2.8916,276.774,159.999 +11,9.7041,1.2023,407,1.2249,1,10.1486,1.1343,9.6954,151.499 +28,4.7598,9.3216,5.888,233,1,261.902,2.1262,226.526,159.495 +13,9.857,3.7454,1.928,4.4035,1,334.761,1.7951,60.314,136.404 +13,7.0113,8.078,1.325,1.48,1,427.439,1.289,5.1945,171.335 +20,6.712,3.8729,4.055,4.319,1,346.252,1.1529,167.273,186.246 +27,2.4936,6.002,2.272,4.349,1,192.205,1.1701,99.552,189.105 +20,8.9373,5.1365,2.443,2.7801,1,38.39,2.9695,388.508,204.843 +24,4.8474,6.9454,8.925,4.9646,1,44.92,2.4358,501.561,7.5937 +28,2.4601,5.548,5.308,7.251,1,238.882,2.57,2.0897,178.986 +27,1.1135,2.8454,4.835,4.981,1,225,9.406,595.989,227.199 +24,6.0378,8.1923,6.895,2.1915,1,440.459,9.872,332.046,8.8192 +15,5.7466,7.989,9.515,2.8167,0,8.2721,1.5468,534.891,186.634 +17,7.4742,8.5549,1.122,1.4719,0,6.3163,1.893,530.857,6.9951 +13,9.0123,919,8.335,1.5126,0,153.839,2.1849,967.783,4.2137 +29,1.7147,8.3445,584,2.1224,0,189.992,2.4624,275.574,10.7142 +22,7.5835,3.6079,1.462,1.5707,1,399.688,2.6196,574.729,193.568 +21,2.6867,6.1221,2.971,4.5767,1,194.592,739,387.737,7.3709 +15,8.7236,1.5289,4.824,2.098,1,2.4411,2.3883,42.778,7.0785 +14,8.3716,6.617,6.912,1.1729,0,317.981,1.8325,6.5003,6.6642 +17,5.8671,2.1594,2.426,4.0428,1,335.611,1.5963,691.568,5.2349 +16,7.3922,1.2785,5.349,4.1698,1,40.711,1.8854,203.333,146.667 +26,3.8292,3.1241,6.847,5.578,1,199.433,2.6458,473.804,5.8401 +19,5.2405,5.1438,4.487,4.8688,1,4.3036,1.6359,439.927,224.377 +15,8.3947,5.8876,863,3.4668,0,276.531,4.866,47.346,8.3023 +23,5.1334,7.8987,8.695,1.363,0,6.0499,1.3103,381.791,130.176 +24,4.2202,6.5624,4.707,2.2802,1,8.538,2.7734,249.962,9.8201 +29,5.4479,6.0876,9.729,1.4857,1,389.292,2.4435,454.227,231.052 +13,8.4542,4.1178,756,7.501,1,201.705,6.091,5.5757,10.1763 +22,4.0169,4.7381,34,1.4559,1,262.503,2.1424,249.899,135.287 +22,2.5639,4.1452,3.807,2.9005,0,331.425,7.687,78.7,183.222 +17,7.4081,8.4217,6.011,4.1298,1,200.514,1.0456,844.392,4.1111 +13,8.4338,2.3,6.292,1.8176,1,2.5566,1.4068,718.156,7.834 +24,1.9057,572,4.764,1.7395,1,12.6372,1.3226,636.238,10.9181 +22,3.1589,6.5132,1.249,2.34,1,9.7171,878,813.153,132.154 +24,2.2777,2.0246,1.705,3.2228,0,488.697,2.322,136.553,6.8895 +30,4.1315,8.9012,8.521,3.7581,1,369.753,2.5392,530.002,11.1001 +23,5.0532,8.5905,8.679,1.634,1,225.775,1.5928,12.5152,147.639 +12,7.7394,7.673,6.739,2.9318,0,3.1684,5.189,780.087,233.586 +12,6.8603,1.0639,6.642,1.9468,0,5.7925,7.438,525.351,144.427 +18,6.5884,4.9517,5.977,3.582,1,40.645,379,811.925,10.7726 +23,4.1714,6.0922,2.029,8.234,1,472.725,5.085,801.073,5.407 +19,8.573,2.7491,4.283,1.2846,1,1.5675,2.6292,47.155,7.454 +23,5.2416,7.168,6.959,2.1303,0,455.199,1.4405,501.906,8.6037 +11,9.8119,5.9492,5.373,4.4471,1,190.282,333,3.7985,11.4467 +15,6.7073,3.2482,186,2.8666,0,10.6816,7.642,528.278,187.721 +21,2.1364,2.537,9.536,4.827,0,5.1116,2.8485,68.069,186.213 +25,7.0856,7.5015,8.448,5.164,1,385.874,1.5278,241.319,202.869 +20,3.9259,2.1475,2.605,2.3009,1,234.455,1.5469,986.662,6.9598 +22,7.1769,8.3447,6.165,2.0954,1,416.212,1.5769,975.081,8.315 +22,1.6268,4.2029,9.232,3.001,0,11.3079,3.349,290.002,3.6057 +27,2.5739,5.7708,96,4.0598,1,339.284,2.9109,715.844,20.578 +15,8.7016,8.7295,503,4.2072,1,5.9061,2.535,3.9702,156.536 +26,3.0446,8.6362,4.562,3.351,1,4.4875,2.1001,669.095,1.8612 +11,8.5334,3.7152,4.102,3.2077,1,6.67,1.733,627.776,7.2878 +17,3.5135,2.0889,8.356,4.7451,0,404.451,1.3308,823.938,3.6654 +25,6.7859,7.7515,3.806,1.9184,0,32.781,2.699,311.321,232.615 +17,7.2474,4.3308,637,4.1639,1,8.2982,2.3053,87.923,7.7905 +15,5.6139,1.9204,658,4.6075,1,192.386,1.004,859.395,11.9152 +26,3.7478,9.0443,427,2.4577,1,381.843,1.654,672.907,7.6296 +20,2.9138,1.981,4.091,3.6455,1,142.837,4.958,477.612,11.3831 +30,1.2987,2.581,7.184,1.8851,1,460.632,2.8684,622.217,239.669 +22,3.7355,2.028,2.037,7.944,1,457.301,2.126,732.659,6.8973 +18,6.8785,6.2232,6.465,2.9325,1,27.645,1.1229,975.499,6.7829 +15,9.4447,6.6168,6.871,9.824,0,315.987,9.538,130.511,8.9131 +12,8.8408,3.1104,2.552,2.288,1,326.609,7.159,319.942,4.0636 +18,7.8946,3.2001,6.006,4.3644,1,12.9234,2.3596,782.909,177.358 +14,8.096,3.3949,6.849,4.301,0,182.661,1.3038,415.088,9.1042 +19,6.9849,6.8016,4.666,1.521,1,6.7971,9.907,675.755,139.406 +25,3.3426,5.813,3.367,3.0324,1,462.436,2.7157,141.787,158.713 +17,9.1648,9.2912,6.192,1.6553,1,361.925,4.507,71.207,8.506 +14,7.0366,2.2252,9.778,2.0897,0,2.3178,7.915,677.323,154.561 +25,6.044,9.9967,4.268,2.0286,1,274.694,1.0343,589.962,12.7865 +23,1.9989,1.7152,3.917,4.331,0,171.537,7.796,767.586,1.9884 +25,5.0235,7.7155,4.643,178,1,407.644,1.7562,881.311,2.9877 +18,5.1432,2.2341,762,4.4921,0,17.19,1.8031,83.101,10.5792 +11,8.7811,8.085,5.532,1.089,1,322.075,1.642,136.298,8.3114 +21,5.9198,8.7493,3.287,2.1304,1,8.287,4.336,746.949,10.4999 +22,4.4236,8.5875,1.214,4.8596,1,279.378,5.956,455.267,152.524 +8,9.7912,4.0357,4.663,4.1338,0,146.943,211,340.543,3.7062 +27,1.9965,7.024,34,5.397,1,8.2444,3.743,880.853,158.987 +22,4.8029,5.5707,4.018,2.5426,1,30.963,719,564.017,19.635 +25,1.3782,8.5296,1.057,3.6504,1,319.321,1.0369,506.222,703 +17,7.6591,3.1506,243,3.492,1,491.677,2.3739,786.753,8.8431 +12,9.2627,5.2367,8.245,3.8042,1,334.553,6.537,557.775,6.604 +27,3.5203,4.8537,9.162,2.2873,1,257.855,2.0101,859.428,10.368 +13,8.7251,3.5391,2.077,8.796,1,45.631,1.736,11.1872,147.667 +28,3.63,8.9146,5.393,2.3244,1,41.414,1.9747,778.372,4.5017 +14,9.1969,1.6588,278,3.2394,1,274.373,2.3842,172.196,3.2183 +16,7.7857,1.4951,4.936,3.043,1,255.675,1.8144,232.979,174.921 +19,8.2442,5.7691,4.366,3.526,1,470.985,6.042,187.657,164.581 +26,1.1621,6.5749,2.691,3.248,0,308.564,9.912,246.037,11.0603 +14,9.6653,1.9462,7.004,4.8263,1,35.689,2.4155,734.512,12.0317 +15,7.54,3.9072,1.265,759,1,4.334,1.2959,658.778,6.4767 +24,3.7428,9.4656,531,1.4723,0,359.153,7.657,237.483,7.9003 +14,8.4646,2.4662,7.677,3.8382,1,132.341,2.7981,277.473,7.682 +26,3.5337,6.6836,6.659,2.0484,0,5.7769,1.9121,10.8301,17.432 +22,8.8548,7.4015,4.985,9.073,1,424.833,2.4171,420.291,133.354 +24,2.0132,4.4813,4.678,2.3362,1,345.596,735,384.799,175.077 +21,7.3332,9.3753,4.974,2.8447,1,203.782,1.018,154.358,141.772 +22,5.8663,7.3666,437,2.2638,1,215.708,1.3767,836.279,130.953 +24,1.8688,4.5792,3.929,4.5947,1,9.8559,1.7623,854.069,7.694 +23,3.177,5.6934,4.997,1.4235,1,4.775,5.699,11.7956,9.4912 +30,1.1116,6.9261,5.285,3.3067,1,17.468,1.4939,273.702,212.975 +25,5.2189,5.9219,6.919,5.615,1,7.4207,2.0569,738.728,138.223 +27,3.7114,8.787,7.112,1.9614,1,210.863,1.0376,871.267,12.5869 +18,6.3852,3.5689,3.776,3.705,1,416.913,2.0743,8.0956,1.2752 +23,3.6751,2.9989,4.135,1.1241,1,5.7377,1.169,903.347,161.013 +19,3.6993,2.1384,3.737,2.9489,1,4.5877,1.4084,7.1021,164.644 +16,7.6887,3.778,5.365,7.672,1,451.051,4.029,637.446,165.758 +25,1.4333,4.301,4.534,5.135,1,37.257,1.9538,3.1854,2.1893 +16,9.1261,8.7006,8.896,2.6162,0,2.6535,6.728,928.982,7.2109 +18,8.6704,6.7839,6.964,3.3751,1,3.9785,2.4866,360.154,8.9094 +24,7.0102,6.6053,8.987,5.668,1,342.462,1.6603,652.315,198.359 +21,6.339,6.1464,7.091,4.5889,1,185.172,1.6808,192.776,235.361 +22,9.0307,8.4922,971,1.1289,1,362.087,2.7374,328.043,9.9539 +24,2.668,4.8027,6.357,5.999,1,202.227,5.022,749.825,133.027 +32,1.7107,8.7041,9.636,1.0135,1,483.893,1.5907,973.266,1.761 +22,3.1556,3.5945,1.582,8.479,1,347.208,1.1466,992.133,2.107 +21,8.1512,9.2671,525,4.534,0,2.3308,2.899,811.583,1.788 +30,1.312,6.9866,5.791,3.9892,0,165.251,2.3781,848.721,172.672 +19,6.2453,2.5718,9.835,2.4777,1,281.803,2.2725,96.971,4.2753 +11,9.9589,5.6408,4.176,1.9426,0,7.0937,6.124,4.9914,181.884 +9,8.7013,5.3303,212,4.7531,0,126,712,178.449,10.365 +15,5.693,1.379,5.215,1.855,1,3.9654,875,6.2151,203.993 +30,1.5728,5.9124,6.488,8.349,0,262.132,1.9156,50.615,208.876 +15,8.4824,3.1479,3.152,1.3702,0,316.128,1.1125,958.904,21.116 +16,6.3908,5.235,7.148,1.1948,1,4.6452,9.361,586.612,130.441 +33,2.0344,9.4866,9.751,2.4937,1,332.578,1.9111,55.985,189.242 +31,1.8447,6.4149,897,1.4575,1,308.562,2.4861,828.419,158.859 +17,9.1866,8.7692,2.916,2.5803,1,469.948,3.991,929.659,4.4811 +21,7.0228,6.7606,3.267,3.3465,1,420.338,2.756,70.157,9.1564 +12,8.4636,3.5698,3.715,3.8865,0,471.621,1.028,896.424,230.967 +14,8.9108,5.1269,3.946,3.5508,1,483.054,2.853,183.464,185.416 +22,6.146,6.7575,1.003,1.028,1,220.404,2.5144,508.373,6.3119 +28,5.657,9.6025,762,5.795,1,243.955,1.4781,370.959,6.7434 +22,4.8738,2.5367,3.653,2.7123,1,140.811,2.8178,339.196,6.1003 +28,3.8525,8.7498,8.798,9.946,1,254.216,1.385,222.108,7.8916 +31,4.9114,9.2408,9.269,4.247,1,7.5357,2.7784,895.057,222.794 +17,7.9649,6.7042,244,2.6355,1,335.715,7.189,455.866,10.405 +24,6.4173,9.3127,9.885,1.634,1,1.2466,1.8493,534.951,8.7421 +17,9.0327,3.9788,0.71,3.7807,1,11.7814,2.9834,283.548,5.7404 +27,4.9904,9.5302,5.204,1.571,1,10.4036,1.1282,963.222,214.178 +17,6.4638,7.0278,3.895,4.8936,1,468.945,44,615.098,22.977 +10,6.6818,4.201,5.185,3.7926,0,7.2451,1.922,1.0687,7.765 +27,6.3253,9.0687,3.246,2.885,1,445.388,2.5772,275.214,147.997 +17,7.3237,4.8447,6.227,2.5444,0,6.2179,1.4757,999.354,230.024 +24,3.1369,4.6033,93,2.8131,0,325.349,1.6102,975.027,11.9875 +20,5.6113,5.6647,6.211,3.4765,1,159.943,2.3983,54.917,11.2479 +26,1.938,1.4938,2.753,2.489,1,158.001,2.4347,568.476,12.6647 +23,4.4606,4.6917,176,2.4172,1,499.136,1.4323,902.573,7.961 +26,5.389,8.3113,5.527,1.8397,1,11.3021,2.5742,71.148,7.2029 +15,6.87,1.548,5.784,1.3573,0,10.128,1.4053,932.894,167.758 +15,9.5548,2.7292,4.266,4.731,1,294.667,2.0251,484.342,232.015 +14,6.4059,245,723,1.588,1,370.376,1.001,976.142,136.499 +18,7.6923,4.1571,8.933,3.171,1,491.252,414,544.154,4.5714 +26,5.5564,7.2832,6.114,8.364,1,350.707,2.5543,648.391,10.2435 +19,6.7069,7.9877,1.157,4.2864,1,280.936,9.394,9.1741,11.7605 +29,1.6384,9.4519,5.109,2.9332,1,204.566,1.1942,615.514,3.6534 +27,3.2895,6.085,4.973,3.8939,1,297.556,1.989,770.098,7.9028 +18,4.2567,2.5463,604,4.0439,0,300.417,1.7776,444.911,10.6815 +20,5.2524,9.2415,6.069,4.1162,1,10.8856,2.466,507.414,6.2857 +30,1.4108,7.7532,8.083,2.7531,1,335.604,2.2973,399.394,8.4933 +28,2.2602,5.7443,749,8.856,1,10.2212,1.8517,969.351,6.6299 +29,3.4913,6.9564,203,7.412,1,244.977,2.566,481.858,147.077 +19,9.7438,9.2432,8.623,2.8699,1,12.9935,1.6065,134.949,138.865 +25,3.9821,7.1239,3.425,1.8326,1,156.401,1.243,3.8583,132.407 +20,5.3384,3.6837,9.465,2.7902,1,306.939,1.114,774.745,2.3216 +21,2.7649,7.1303,717,2.4924,1,3.2243,133,552.196,4.4054 +11,6.497,4.028,4.862,3.011,1,6.017,1.194,1.2743,2.6599 +18,3.5261,3.8642,5.971,1.606,0,6.531,3.936,388.697,1.5187 +28,2.8629,4.0632,2.477,1.642,1,8.4353,2.7886,914.909,5.9239 +17,5.6492,1.6684,7.714,3.608,0,9.8936,2.642,948.277,4.6685 +24,1.0496,2.309,6.269,9.656,0,386.966,1.4916,6.3024,173.999 +20,1.069,1.3338,181,3.261,1,223.429,5.406,132.188,167.013 +23,2.9716,6.5462,6.084,2.7329,1,234.968,4.383,1.4822,4.8321 +27,1.3305,8.0229,4.915,4.909,1,322.167,7.684,869.987,3.9735 +30,1.9722,9.882,196,4.177,0,364.554,2.7262,8.0177,3.4775 +21,4.0497,3.4636,9.957,2.0657,1,1.754,1.5644,11.6821,7.6812 +20,8.2233,5.9938,8.972,3.0821,1,428.363,2.4121,235.346,7.0605 +22,6.1484,9.3714,2.925,5.864,1,494.217,1.5203,918.077,6.849 +19,5.614,1.6704,5.411,1.9319,1,6.0904,1.8283,691.352,136.289 +26,3.6414,7.1765,3.165,3.6694,1,32.554,1.8303,620.713,215.528 +12,9.3858,7.5498,7.755,3.1134,0,1.207,94,78.681,12.9326 +19,4.5731,8.898,9.303,2.4224,1,2.4515,1.3358,696.352,1.5314 +33,1.7838,8.6125,3.588,8.826,1,142.501,2.5921,748.468,143.892 +21,6.5536,8.1311,8.056,4.0157,1,423.202,1.4673,8.292,11.6389 +23,2.0245,334,4.984,1.3658,1,32.625,1.306,593.868,217.663 +17,4.107,9.108,3.966,4.1024,1,22.291,1.5796,755.675,8.7173 +17,5.5667,4.913,9.384,3.058,1,219.299,1.1423,570.002,180.476 +14,8.868,3.3474,5.104,1.8637,1,233.027,1.5462,2.1677,9.226 +17,5.4419,5.0929,4.674,203,0,155.517,406,219.009,173.158 +21,7.3203,5.3235,6.724,1.1621,0,438.857,2.9038,963.271,9.966 +9,9.9354,2.6767,2.612,4.4454,1,283.935,1.024,707.648,8.2732 +26,2.1834,9.116,3.248,4.0899,0,241.975,1.4496,69.162,227.541 +21,3.4726,3.6826,932,2.8743,0,232.538,0.63,66.365,168.769 +17,4.5512,4.555,6.785,2.3316,1,467.913,1.751,13.653,222.006 +17,4.7965,3.2023,8.266,3.2357,0,361.831,1.9551,1.4042,11.9005 +23,4.6992,5.3111,2.711,2.3312,1,7.2407,2.9555,446.246,145.492 +15,9.1685,4.0822,5.438,3.2215,1,218.485,2.2488,449.881,12.426 +17,7.4263,2.7384,9.714,1.537,1,144.186,7.621,813.687,11.4928 +17,6.4711,1.3132,3.187,4.1925,1,493.434,1.4802,189.752,138.775 +19,3.7844,8.1916,1.605,3.5096,1,207.698,1.493,28.236,9.336 +20,8.4141,9.9615,5.109,1.6499,1,3.3935,1.595,8.746,4.4564 +9,9.5955,3.2954,3.878,4.1533,1,205.606,2.984,405.876,5.1509 +16,8.3908,3.8162,1.596,2.4367,1,160.675,2.3838,26.343,9.1884 +28,1.0141,6.1804,8.886,8.732,1,299.791,1.701,270.267,10.4293 +19,6.7276,7.1844,9.907,3.886,1,11.3039,281,261.513,177.532 +23,1.4602,3.9203,5.686,3.498,1,1.7987,2.5847,239.203,3.973 +28,3.3185,9.0493,7.747,4.3256,1,4.794,2.8276,326.595,136.774 +22,1.5357,5.6,859,4.0372,1,141.574,2.597,541.323,6.5349 +17,6.4342,4.5039,701,3.2783,1,174.161,8.367,443.333,12.3757 +23,7.1793,6.4667,442,7.069,1,417.225,2.2251,7.2812,150.388 +27,2.0304,9.528,1.576,4.702,0,135.035,1.619,431.601,139.788 +26,4.4545,7.9455,71,1.7251,1,1.5747,2.8477,847.815,5.1691 +15,5.1061,4.001,99,4.2746,0,390.367,1.1675,10.9697,170.269 +16,4.3215,3.3231,306,4.8087,1,434.459,0.01,944.918,156.909 +25,2.0892,4.7054,3.924,1.2068,1,246.153,592,315.504,223.681 +19,4.7705,3.1452,241,3.8105,0,142.464,1.6946,2.439,152.196 +20,7.7606,7.2019,646,2.8693,1,38.607,2.2563,260.624,172.878 +31,1.6391,8.2627,5.299,159,0,4.449,2.3719,7.8963,194.647 +30,1.7216,7.3135,2.733,2.7146,1,462.014,2.7346,570.718,2.5441 +27,4.1929,9.8933,796,4.0297,1,432.766,6.872,323.162,16.712 +13,9.4755,2.7255,81,1.3806,0,272.417,2.2152,808.808,7.6459 +24,7.0172,8.7499,8.425,4.4868,1,138.791,2.4813,735.299,197.556 +23,7.108,7.6662,9.548,1.1813,1,1.6422,2.5088,47.391,11.5243 +25,4.2573,3.6218,7.161,3.824,1,499.912,1.2346,564.996,139.348 +24,6.3429,7.3412,7.336,7.997,1,381.037,1.8779,612.682,6.2481 +23,1.0912,1.0408,9.336,4.185,1,169.355,1.6547,277.998,156.136 +17,6.7249,7.8933,2.091,2.0865,0,9.636,1.7925,147.983,8.556 +15,9.2196,5.3233,9.946,3.9847,1,319.646,8.461,382.754,179.658 +17,6.5132,2.9229,7.735,2.6562,0,493.452,2.0497,10.3909,3.9191 +19,8.8633,6.5578,7.266,2.4028,1,353.536,2.1301,321.715,5.4618 +12,7.5158,6.4162,3.611,4.0346,0,4.1857,5.878,557.076,218 +23,2.085,2.0949,5.458,2.1174,1,201.139,1.3309,544.711,7.5162 +8,9.1221,304,6.539,4.0102,0,5.4592,1.2663,12.9407,9.318 +30,1.598,4.3362,6.203,5.033,1,45.608,2.2469,1.8256,5.616 +20,5.8057,5.6951,705,3.1816,1,165.207,1.9995,9.8054,5.525 +28,2.2792,8.7661,824,3.5129,1,366.688,1.4286,4.5789,214.315 +30,1.1054,9.2822,3.556,4.4955,1,4.2345,1.9576,406.464,7.8349 +20,4.7983,5.2881,434,1.1216,1,6.4207,7.886,395.853,173.348 +20,3.6554,7.538,2.606,3.0211,0,339.744,697,249.199,5.6972 +19,5.374,4.393,1.726,2.1663,1,42.174,7.198,22.329,19.417 +19,6.1948,7.4608,1.389,1.9139,1,10.0725,885,402.456,162.658 +25,1.3937,2.048,3.664,5.336,0,209.169,2.0732,9.5708,181.489 +28,2.107,3.7106,4.934,6.712,1,309.709,2.9575,222.166,10.5489 +21,6.0278,6.3423,63,4.1849,1,398.138,9.271,411.635,211.095 +19,4.0885,1.816,9.465,3.7488,0,314.098,2.7895,10.3882,8.9763 +19,7.5626,7.2246,7.652,1.9117,0,4.7713,1.8196,842.406,144.215 +21,6.8706,8.3554,7.309,4.1424,1,27.141,6.748,679.258,153.617 +16,8.6104,3.9914,1.729,4.038,1,442.303,356,389.288,22.854 +19,7.2324,4.4794,6.038,3.1239,1,434.012,2.1712,158.894,3.2285 +23,4.8694,8.5128,5.297,4.3409,1,292.508,2.0897,202.245,3.2545 +19,7.0567,7.7565,9.825,4.1943,0,497.848,6.878,12.8889,11.0892 +22,3.4784,2.8815,7.477,1.8639,1,5.2562,9.981,168.483,22.029 +23,3.7568,3.2398,5.758,3.7262,1,239.298,2.6941,428.289,5.204 +17,8.1009,6.7888,8.508,2.1373,0,387.562,4.717,253.208,6.6306 +19,5.0178,5.632,1.551,4.2007,0,7.0519,2.5063,885.733,6.8061 +13,8.1854,1.6223,152,2.6538,1,486.375,5.077,961.319,7.3189 +12,8.4018,3.0993,6.902,3.8243,0,177.023,1.4452,694.451,5.929 +22,8.7181,8.9998,983,3.929,1,17.507,1.4969,810.673,198.146 +15,9.2497,6.8817,1.154,2.9501,1,10.6597,1.4163,262.568,2.138 +26,4.8789,9.8597,7.447,2.7514,1,144.009,8.638,668.374,11.4649 +23,3.8698,7.6701,2.705,3.0499,1,288.794,7.601,6.7419,1.3526 +23,6.2398,9.4197,6.286,3.4782,0,214.677,2.1995,960.614,191.675 +18,4.3406,2.1619,9.174,4.5905,1,9.6689,827,673.505,179.181 +23,6.4097,7.7148,3.165,3.9284,1,40.457,1.8297,323.683,173.167 +15,7.3503,2.022,2.171,1.0982,1,3.112,2.5399,775.311,176.704 +21,7.1956,6.7076,1.066,4.1295,1,417.326,2.5111,2.5641,225.657 +19,4.371,4.6928,1.305,6.104,1,137.469,5.015,382.474,10.1935 +22,2.5017,3.4676,622,3.111,0,247.952,1.9642,896.701,206.778 +22,4.8748,8.624,876,4.4138,1,190.532,1.8068,270.568,4.4216 +30,2.2833,8.5427,432,5.056,1,285.301,846,671.235,10.8303 +10,9.0109,223,3.209,4.2485,1,397.995,1.1744,366.503,2.138 +23,4.1129,6.0951,7.066,3.9931,1,49.466,8.553,398.441,6.8194 +25,2.3901,3.6783,8.702,2.5189,1,15.303,1.6112,748.478,10.9958 +31,1.229,4.1566,7.848,1.5445,1,276.902,2.4109,911.104,21.823 +23,6.8124,8.3204,5.306,2.0272,0,233.004,2.6325,175.051,7.6068 +17,6.7321,3.0984,1.024,4.8433,1,499.464,2.1685,284.123,161.378 +28,4.0654,9.4305,7.098,1.1985,0,404.457,1.4504,492.907,200.152 +26,1.6454,1.7963,3.628,2.898,1,198.542,2.8743,617.678,7.8367 +23,4.6867,6.6272,857,4.162,1,23.844,1.6916,473.109,4.0615 +25,3.801,6.7211,8.425,1.0895,0,12.2978,1.4356,807.473,141.887 +16,7.0941,2.522,3.382,3.8166,0,377.624,2.5703,770.414,6.8252 +17,6.452,3.2475,2.182,1.513,1,422.606,5.539,41.119,156.589 +21,4.2813,8.348,8.715,4.9288,0,482.493,4.736,5.0206,3.2328 +29,2.961,7.6181,9.021,2.5041,1,282.914,2.3476,202.551,3.6383 +14,9.8923,3.291,339,2.5827,0,335.342,2.6117,492.083,162.222 +21,5.086,5.3396,3.548,1.816,0,223.029,2.183,928.239,233.654 +16,7.1945,6.168,5.796,4.7826,1,304.564,2.2923,571.894,5.9255 +25,2.265,2.0875,7.334,8.712,1,174.375,1.2734,535.091,171.339 +22,5.3703,4.8582,631,2.6917,1,368.845,2.1112,72.673,12.769 +22,1.2478,8.597,5.933,1.9784,1,1.135,4.049,160.772,202.522 +26,5.5491,8.4333,9.528,2.0779,1,1.4228,2.919,155.449,9.3333 +20,9.6762,7.1801,2.621,3.2165,1,35.806,2.6438,351.941,233.211 +26,4.4579,9.4363,9.088,3.3104,0,465.341,1.2179,994.904,1.9775 +34,1.351,6.9347,9.502,7.714,0,316.124,2.6801,877.182,236.315 +32,1.2786,9.404,2.692,2.4979,0,363.264,2.6848,683.313,203.097 +23,4.4919,5.5451,7.542,3.9524,1,411.967,1.3838,397.243,20.795 +30,2.4402,6.2022,2.388,2.2164,1,180.837,2.8407,559.127,202.177 +33,1.2102,9.7697,7.376,829,1,5.4057,2.9306,310.519,206.847 +21,7.8059,6.4213,7.974,1.5661,1,466.546,6.516,677.564,195.637 +18,5.1267,3.079,2.472,1.0619,1,469.285,0.2,424.657,215.884 +28,3.6032,7.238,7.159,6.291,1,22.092,9.934,12.9014,11.0592 +19,9.1007,9.0547,8.121,1.8879,0,10.8585,1.4665,222.937,22.543 +26,2.0453,7.9558,3.586,2.7047,1,446.177,278,612.606,9.2391 +17,9.6033,5.8383,1.677,3.638,1,354.213,422,697.619,174.844 +25,3.8257,6.713,92,3.0191,1,4.114,2.9151,10.5061,170.485 +20,8.9956,9.9019,5.754,4.9651,1,5.386,2.2119,810.258,197.015 +20,6.4265,9.066,9.781,4.8206,1,49.16,2.6248,826.104,177.212 +19,8.4404,6.6724,823,4.1459,1,1.9064,2.9135,725.851,8.491 +12,9.8561,2.834,4.358,1.3317,1,141.278,1.1344,686.753,177.397 +27,3.5956,6.4009,5.366,112,1,274.248,2.0636,23.955,5.591 +11,9.6502,6.0762,2.795,4.1677,1,9.2178,5.521,920.426,12.7975 +23,4.5053,1.5346,1.631,2.786,1,11.6027,1.655,275.888,201.348 +18,4.4696,2.0675,4.821,1.0281,1,176.484,6.296,19.068,199.098 +21,4.0635,6.2163,4.635,2.7223,1,134.777,4.813,642.149,201.915 +15,5.8727,1.2823,5.219,8.919,1,401.678,2.953,370.463,144.579 +27,2.3873,2.6518,9.528,4.1689,1,250.137,1.7392,933.698,4.4115 +22,5.9834,8.3525,6.039,3.8858,0,13.931,2.8496,465.647,12.1915 +16,5.8753,3.2709,6.058,3.7788,1,156.548,3.667,172.081,12.3891 +14,7.8571,4.8806,128,4.0806,0,1.9932,1.5069,957.953,7.7944 +21,8.5028,9.4114,9.965,1.0985,1,2.4696,2.0612,52.028,10.1784 +22,4.964,2.2715,7.728,3.6445,1,358.954,1.4876,523.373,209.322 +23,3.721,3.8963,8.772,1.7764,0,5.6455,2.7353,391.945,12.4303 +22,3.334,6.0646,4.143,3.3342,1,237.898,4.989,837.634,169.139 +25,2.7516,7.5534,5.021,6.101,1,421.183,725,294.767,11.8995 +29,1.5188,9.0165,5.221,3.5279,1,184.227,1.1494,2.3573,148.193 +21,4.082,9.1547,1.941,4.8605,1,172.876,1.6665,502.305,2.2221 +30,3.4322,7.7664,6.895,218,1,436.524,7.635,926.628,223.533 +13,9.6978,2.2833,903,4.691,1,432.425,5.053,280.534,10.4624 +22,6.0194,2.481,1.637,6.182,1,440.068,2.4145,273.642,179.593 +20,4.1255,3.8377,863,2.1528,1,285.957,5.657,740.719,160.104 +21,6.2242,1.4155,7.382,1.4539,1,476.152,1.328,777.778,191.825 +29,2.2528,7.1039,2.732,4.0346,1,409.482,2.8634,441.201,8.369 +25,4.9964,6.6113,6.239,2.3689,1,207.817,1.8381,835.307,224.484 +18,6.6361,4.397,6.958,2.4227,1,314.778,1.4932,180.214,199.139 +22,5.4001,8.3659,3.219,3.5852,1,6.0895,1.0808,373.355,200.103 +22,4.616,2.4874,8.151,1.8098,1,275.666,1.5612,410.235,11.2107 +15,9.9446,4.3223,0.55,1.766,1,131.575,2.2029,319.668,191.118 +19,8.9228,6.6793,869,3.7846,1,141.774,2.4676,22.556,138.044 +17,6.6107,4.2942,7.633,3.9002,0,6.2859,1.9495,344.768,12.0835 +22,6.1244,4.4129,8.686,72,1,17.91,2.371,2.7823,188.381 +13,6.5859,6.563,202,719,0,240.695,2.653,706.317,150.672 +19,2.8118,4.0144,2.435,1.0655,1,300.177,431,68.712,1.8519 +23,4.5562,7.6485,0.09,1.758,1,152.435,2.2032,455.716,7.5482 +30,1.3551,9.1518,4.421,1.4572,1,396.124,7.851,329.686,149.302 +26,5.2799,4.135,0.89,3.3426,1,26.048,2.633,439.753,216.912 +22,5.8872,4.2359,4.675,4.1407,1,319.026,1.6076,937.156,22.392 +26,3.0497,7.0263,8.497,9.604,0,139.072,1.4356,607.529,201.339 +19,9.6763,9.4277,3.272,2.8149,1,407.068,2.3185,734.044,6.1035 +15,9.1851,2.6706,3.396,1.8391,0,312.137,2.2233,237.222,11.3612 +18,7.4993,4.4014,8.956,2.5289,1,431.174,2.1128,10.381,10.4014 +22,5.8005,7.9597,4.258,3.1038,1,7.9976,2.0697,9.2353,10.5284 +14,8.8297,6.0969,7.898,4.468,1,190.332,1.5462,477.299,1.1948 +24,2.1759,1.1059,2.366,9.615,1,5.6508,2.7794,719.519,4.1673 +23,8.1146,6.2773,9.488,435,1,10.7764,2.6719,776.379,3.6782 +20,2.1234,1.8675,5.746,3.1361,1,197.274,9.882,723.206,148.144 +21,8.1479,5.1022,7.593,1.9707,1,447.291,2.4141,913.635,9.8832 +25,3.4819,5.291,895,8.145,0,27.852,2.6733,6.1482,7.7853 +19,8.8938,8.762,4.927,5.854,0,165.189,1.8548,856.786,10.6537 +16,9.4964,4.6249,901,2.7945,1,37.345,1.6667,66.407,7.7811 +26,2.3392,2.7944,877,1.5024,1,9.841,2.0157,183.765,181.793 +12,5.1641,2.3097,468,4.9871,0,185.046,4.892,685.557,4.009 +12,9.8289,8.7425,3.037,2.0295,1,300.416,262,516.642,1.3472 +21,5.3507,1.7101,4.433,1.0614,1,291.619,2.4605,365.451,156.169 +16,8.7719,4.2587,1.723,3.1442,1,303.779,1.72,255.479,5.5339 +15,6.2986,1.8717,0.73,1.2213,1,10.575,3.675,469.513,154.405 +22,4.378,7.733,1.845,2.4704,1,16.854,1.249,246.741,1.405 +22,3.5721,4.7437,3.466,2.4129,1,465.783,8.947,9.2019,5.9303 +26,2.829,3.5114,6.633,2.2678,0,486.988,2.6264,847.659,3.6932 +13,7.8562,3.611,4.821,3.9804,0,156.019,1.5217,596.909,6.9762 +28,4.4789,8.5221,7.386,1.0831,1,322.252,1.7325,370.033,7.8925 +19,5.6015,5.5377,9.612,4.5215,1,12.0648,7.059,452.213,11.8847 +23,5.4309,7.1787,1.165,3.9567,1,184.264,2.3972,866.179,12.4833 +24,6.1955,8.9704,7.096,1.6656,0,396.167,2.7903,326.645,151.224 +20,8.7902,9.0174,2.303,903,1,250.589,2.3775,386.371,7.9597 +12,9.8267,3.2851,4.145,1.3977,0,424.795,1.4786,76.842,12.7685 +27,4.6683,9.5245,329,1.6632,1,31.437,2.5053,208.517,237.628 +9,8.4477,2.488,1.359,2.7847,0,314.461,5.639,66.267,5.0553 +15,7.8808,3.7684,3.198,2.318,1,1.694,3.402,439.981,3.6649 +18,6.1618,8.958,342,4.5718,0,374.835,1.3147,505.157,202.215 +13,9.6044,2.7464,8.996,4.934,1,488.933,5.446,789.011,9.8488 +23,2.8043,2.7308,7.418,1.3964,0,236.514,7.775,993.201,203.252 +25,1.9834,3.0262,9.722,5.464,0,7.929,1.7554,833.197,10.1925 +16,8.6857,6.1231,5.991,1.2834,0,488.489,1.2117,168.939,5.204 +21,4.9523,4.3833,2.417,4.1884,1,145.063,2.5976,232.306,8.997 +17,8.6227,7.2673,3.277,3.0759,1,204.599,6.768,415.831,146.431 +22,9.0378,8.9491,3.198,1.1366,1,3.8683,2.9904,722.034,10.7413 +24,1.5621,6.742,3.265,4.3588,0,5.5418,1.0782,514.277,11.0242 +13,8.9512,2.0447,673,4.1936,0,10.8283,1.5462,902.783,239.596 +21,5.0349,9.3268,5.308,3.7682,1,274.233,397,5.8189,130.591 +19,5.5939,2.6449,3.854,4.2382,1,278.895,1.7379,265.932,167.266 +18,6.6393,1.4989,1.491,3.0982,0,303.122,2.8839,227.079,173.034 +11,9.3374,8.997,221,2.5072,1,291.908,2.2482,746.729,41 +26,1.172,5.6338,2.188,1.8697,1,247.618,7.322,470.124,132.591 +19,5.2916,1.1376,1.075,1.1188,1,401.049,1.3278,2.4863,231.134 +17,7.1895,1.3878,7.854,2.7871,1,46.695,1.2763,775.702,180.197 +8,7.5044,3.2003,1.125,4.4475,0,134.881,2.938,368.185,8.1703 +18,7.2328,2.8165,7.242,2.9699,0,6.5097,2.6576,267.856,8.7497 +24,2.2099,6.0424,3.857,4.598,1,212.544,1.1444,190.891,7.2868 +24,3.6946,8.1675,734,1.7846,0,1.3211,1.4828,946.552,15.125 +21,4.2284,7.6135,8.127,3.4757,0,441.659,8.737,942.618,2.3356 +11,8.2399,2.6248,5.796,3.2433,1,11.9853,4.572,8.5787,6.96 +23,3.5088,2.4531,2.358,3.3522,1,274.648,2.7063,24.044,11.9571 +25,2.8963,9.6579,8.947,3.2252,1,5.7547,1.122,649.658,12.8452 +13,9.617,824,453,1.1083,1,276.629,1.1996,67.372,145.778 +34,1.0798,8.7972,2.018,718,1,1.9497,2.1921,423.495,191.334 +7,9.9804,1.9973,752,4.8931,1,384.403,9.266,572.825,3.9177 +23,7.0914,9.4728,7.094,2.265,0,477.711,1.3381,705.604,5.4004 +16,8.4562,3.4231,2.893,2.3387,1,153.488,1.6934,951.004,209.355 +25,3.6516,4.4035,62,2.1254,0,12.9107,2.9852,727.858,199.478 +30,1.1288,7.0712,8.581,1.8001,0,223.997,2.2749,11.9168,197.177 +20,7.6408,5.8767,3.137,3.9099,1,309.987,2.9013,720.668,5.1968 +11,8.5073,3.1794,1.957,3.7268,1,9.4481,2.0794,7.7049,1.3982 +16,7.6643,5.5383,5.161,4.5261,0,401.654,8.072,507.482,12.562 +29,2.2857,7.3071,9.102,1.9774,1,9.9267,8.625,531.626,20.881 +15,7.7809,4.233,435,2.8209,1,2.737,2.4674,780.482,5.7004 +12,7.9203,112,7.658,4.4615,1,262.125,1.2831,2.1443,217.008 +15,6.9269,4.5807,5.725,4.9692,1,5.7575,1.1107,876.005,3.3968 +18,7.895,1.3184,4.254,4.8465,1,349.119,2.8353,667.246,7.1543 +12,8.6133,6.6434,7.441,3.5892,1,8.3735,397,4.0879,7.1589 +18,6.5224,2.1405,9.658,7.161,1,40.869,1.5749,16.843,3.6264 +29,1.7974,4.3285,2.292,1.159,1,235.184,2.3252,4.9122,209.467 +20,5.3887,1.9767,1.436,4.1261,1,283.139,2.2085,76.828,9.9022 +23,1.6988,5.4848,9.129,4.2047,1,9.3293,1.1027,179.196,4.5758 +19,4.6679,1.1605,669,3.7318,1,7.3344,1.6069,5.5144,3.5339 +15,4.664,2.311,438,1.3996,1,315.646,167,146.608,10.1019 +21,1.5941,5.113,5.733,3.1991,0,12.773,1.6045,563.961,4.149 +26,4.1394,9.5426,7.456,1.5812,1,192.963,1.7712,500.532,2.9053 +24,1.999,1.4229,773,2.2532,1,239.725,2.6244,253.795,888 +17,8.2741,7.0848,9.199,1.9122,1,11.4817,6.322,943.506,5.853 +12,9.5292,6.793,4.268,4.5682,0,397.712,2.4754,856.261,23.937 +25,1.6508,1.0816,2.934,1.1708,1,469.712,2.1542,321.316,10.7733 +15,9.596,5.0888,6.397,2.8881,1,215.947,1.9981,479.826,174.942 +22,5.7032,4.6487,4.157,1.8049,1,458.774,1.1832,521.655,176.899 +29,3.6961,9.5158,5.946,3.3154,1,441.341,1.1023,758.614,211.298 +28,1.6918,9.4484,0.42,2.8228,0,8.3024,2.1098,433.667,2.4899 +23,5.5056,7.7961,153,4.6199,1,8.6691,2.9707,551.006,12.6161 +15,8.1506,6.021,4.694,5.081,0,238.703,1.2161,41.844,7.7213 +21,7.3638,4.5496,6.909,1.1032,1,262.929,2.7558,765.193,131.636 +25,1.452,3.5618,7.993,3.8317,1,170.565,1.7596,560.375,7.9709 +32,1.6561,9.4709,4.933,1.8439,1,15.646,2.6045,829.503,4.4078 +21,4.6259,6.0291,1.652,8.289,1,215.684,6.516,6.3198,161.479 +27,3.6576,5.7907,4.147,2.5166,1,34.524,2.2867,905.263,9.223 +25,3.0915,2.319,7.863,3.2607,1,4.2197,2.5048,821.197,214.893 +23,3.529,467,4.129,2.241,1,355.291,2.4965,82.032,3.5104 +24,8.2313,9.4519,6.965,1.4581,1,46.312,2.3541,148.906,147.635 +12,9.3631,3.1374,5.072,4.0471,1,381.753,9.126,270.838,181.009 +20,4.6459,4.4259,2.412,2.6012,1,9.5838,1.5659,980.459,1.7503 +11,9.155,1.1464,7.962,1.769,0,4.3741,8.991,950.772,216.791 +27,3.8935,8.3692,842,1.4098,1,24.519,1.0289,234.279,8.5483 +15,5.2879,2.763,5.249,3.1957,0,478.203,9.037,438.574,239.214 +25,3.0343,8.3399,2.089,9.968,1,40.953,8.527,164.384,1.6508 +16,6.7643,1.4029,671,4.137,1,281.367,2.0803,270.012,172.026 +14,9.8108,8.8656,5.029,3.3829,0,7.1491,1.9508,192.881,3.8571 +20,6.4314,7.2977,4.996,2.3569,1,356.918,6.128,9.0128,9.6646 +22,4.2203,1.6467,7.069,4.5781,1,406.499,2.0746,583.684,10.6371 +20,6.8304,5.6582,7.448,1.959,1,467.535,8.732,248.378,9.7477 +22,2.1063,3.1266,7.278,1.1754,0,306.058,6.052,992.318,8.1018 +16,8.9979,1.7823,4.096,3.307,1,257.233,2.2418,520.285,18.413 +25,5.5278,8.5918,6.317,2.8665,1,309.591,1.0886,365.503,196.773 +23,5.0441,4.0352,5.769,1.6762,0,471.626,1.7081,914.031,8.0547 +18,6.2728,3.9854,4.216,1.7183,1,314.064,6.004,624.539,11.5835 +18,6.6231,1.6989,5.972,1.9911,1,12.8796,1.8411,135.808,10.1222 +24,1.646,3.8307,9.472,1.4557,1,318.076,624,502.842,142.444 +18,7.1436,8.7162,1.929,3.5512,1,439.872,5.006,446.668,3.6064 +23,3.1774,3.6313,9.058,3.2568,1,283.501,1.1596,767.481,193.364 +23,7.4256,9.516,535,2.2039,0,251.349,2.3702,69.684,191.283 +18,8.4028,9.4631,3.084,1.9893,1,366.685,5.296,377.083,141.699 +14,8.2356,1.449,2.881,1.8253,1,330.494,3.511,474.785,179.075 +17,5.9725,1.7731,6.264,1.4173,1,2.8344,949,52.36,237.241 +23,5.6815,8.6267,1.312,4.285,0,362.656,1.2479,428.236,221.402 +25,2.2859,3.9276,8.823,1.341,1,203.775,8.461,11.6644,146.748 +15,7.9781,437,8.286,1.606,1,470.449,8.763,906.391,12.2736 +27,3.4427,2.7387,6.521,2.7384,1,485.401,2.9458,675.834,12.8286 +19,5.4703,5.9763,4.584,3.8689,1,224.369,5.824,475.023,11.1987 +27,3.5585,7.9927,933,1.9785,0,484.397,1.3753,573.891,11.5254 +23,2.2045,1.3339,8.307,4.7238,1,15.541,2.9591,221.032,175.689 +14,6.666,1.1054,4.993,4.1367,1,341.322,919,535.251,238.109 +29,1.489,9.2209,7.019,4.924,1,3.7527,02.09,748.567,1.0875 +13,7.7378,7.5115,5.669,4.381,0,7.2495,1.1132,538.338,5.5245 +26,3.8583,5.8978,5.879,3.0836,1,432.263,2.7183,485.859,5.045 +31,1.2012,7.6919,331,2.9924,0,446.892,2.7358,467.762,199.885 +22,5.6002,4.2885,4.621,6.476,1,266.306,1.1616,764.007,10.0734 +25,1.4217,7.5846,781,3.612,0,169.887,6.644,755.806,12.6032 +21,3.4855,3.718,3.573,3.001,1,225.512,1.284,75.257,11.2597 +19,7.3628,2.4409,6.958,2.5347,1,434.812,2.8959,253.708,204.884 +26,1.5642,7.2901,9.532,3.4664,0,10.5497,8.442,621.716,11.9933 +17,8.554,4.1967,9.631,2.2202,0,147.435,2.944,781.118,160.283 +34,1.0344,9.8138,5.557,2.6193,1,392.721,2.4582,566.275,4.676 +24,3.2214,3.4949,6.066,1.9918,1,467.635,8.024,781.188,156.589 +22,7.6681,9.2173,1.857,3.5869,1,4.6464,2.3732,855.859,5.7828 +25,3.8464,9.3296,6.953,4.3831,0,401.886,1.494,182.151,208.048 +25,1.917,2.4185,707,4.2042,1,322.534,1.6442,313.277,180.373 +20,4.2421,7.9822,2.847,3.9301,0,11.5386,1.072,605.297,2.6229 +24,3.4335,4.3307,6.684,689,1,377.909,1.2808,296.782,2.4833 +17,8.5844,9.1752,3.103,4.5594,1,363.958,1.4186,941.972,7.032 +21,3.8201,4.5012,498,1.3744,1,7.1015,1.5081,202.193,3.0183 +20,8.1004,7.443,8.319,4.4399,1,251.126,1.9692,363.378,177.679 +20,9.0268,4.6697,3.103,9.848,1,379.146,2.0903,994.363,236.836 +18,4.9044,2.278,631,2.1982,0,9.5772,2.9271,19.729,157.262 +11,9.1895,1.9935,748,3.747,1,231.383,2.2883,45.433,5.9771 +21,4.3959,4.2543,2.518,3.2014,1,6.0371,2.0634,320.644,135.425 +14,9.6767,7.5549,178,2.0796,0,153.417,1.1774,811.701,193.356 +23,1.8036,6.0507,7.743,3.3931,0,10.8972,3.534,311.106,23.093 +13,7.1832,6.8863,3.217,2.7447,0,252.536,1.764,169.815,1.217 +19,5.4443,2.8233,8.047,1.3787,0,7.0608,1.4331,933.804,12.5686 +21,4.4888,4.8144,1.738,3.2316,1,191.575,2.1948,324.228,10.8771 +16,6.6944,444,4.929,1.0212,1,137.581,1.9505,74.433,9.9478 +24,7.3347,8.1753,688,3.4699,1,373.024,2.8586,297.662,12.0921 +32,1.0393,9.8989,652,156,0,349.835,1.1473,186.796,9.6841 +25,2.5026,4.0688,6.011,2.7439,1,4.7465,1.8834,804.388,8.2564 +17,7.4174,1.096,9.248,2.1953,1,476.742,2.6636,6.5026,2.7554 +14,6.9975,1.6979,2.285,1.5155,0,372.341,1.2122,338.653,11.9963 +17,9.6944,6.5253,4.937,2.5785,1,307.979,1.4332,782.281,197.052 +20,7.8493,6.1208,884,3.2266,1,238.851,2.7689,517.016,2.5136 +14,9.557,7.8786,779,4.8266,1,8.8961,1.6507,692.678,177.238 +16,7.3229,2.5388,559,4.1653,1,481.008,2.3988,7.6149,6.4264 +26,3.6825,7.6363,2.333,3.5857,1,3.929,2.8069,752.312,9.1498 +29,1.9483,6.8798,633,2.3948,1,346.241,1.7132,180.221,23.714 +13,8.0364,3.2281,2.599,1.9607,0,253.722,3.276,810.617,162.051 +22,6.7973,5.4549,1.902,1.626,0,451.291,2.4651,568.533,172.587 +26,1.4337,1.4727,4.588,1.7955,1,190.349,2.4533,74.177,144.574 +20,4.2405,4.5256,6.136,4.2419,1,259.322,345,220.704,7.7367 +19,9.6112,8.812,2.486,1.9201,1,37.117,1.6444,401.471,162.028 +17,5.5036,4.2119,3.007,2.3079,0,2.3783,1.4613,804.049,10.9744 +27,4.8946,8.3957,6.136,1.3592,1,2.7238,2.5415,911.696,19.97 +23,5.1193,5.9025,9.457,1.3707,1,10.5836,8.239,234.306,137.054 +25,2.8799,1.9188,6.747,3.094,1,7.3212,1.2788,79.546,185.097 +23,4.3184,5.8111,7.829,3.069,0,3.222,1.8144,11.747,203.642 +25,4.3283,5.0598,3.668,2.2403,1,311.495,1.5517,431.491,197.069 +28,1.4712,3.9864,2.723,3.0298,1,397.969,2.8651,939.332,9.6506 +18,7.9081,1.1963,4.543,2.7344,1,478.557,2.882,945.685,8.8502 +18,4.7485,4.1671,8.071,3.9942,1,22.045,2.447,303.715,208.576 +10,8.3996,7.276,4.563,3.7551,1,13.986,8.935,200.984,3.4344 +11,8.6531,9.877,8.467,3.8573,0,431.951,226,157.992,6.7057 +25,2.9079,4.1592,9.888,2.4962,1,422.198,1.2536,486.067,2.9042 +18,6.9162,3.0538,72,1.7694,1,312.422,1.9864,10.1156,1.0102 +21,5.2505,9.2554,454,4.6672,0,136.575,1.4139,363.285,147.807 +13,8.9214,3.7571,1.496,2.713,0,454.259,2.015,2.6841,216.187 +24,2.9417,7.5786,3.844,7.631,1,8.9201,5.879,266.804,3.106 +17,7.1003,5.3025,131,2.098,1,2.1823,5.199,901.274,19.097 +23,6.4698,7.0409,8.707,3.0698,1,398.309,1.5334,452.509,9.1042 +23,3.6577,2.6012,231,41,0,28.183,2.033,8.3008,148.353 +27,2.2294,9.419,3.158,3.5966,1,12.3234,949,650.368,183.298 +18,6.8648,5.3009,1.847,2.7936,1,335.448,3.914,956.077,170.419 +23,7.6474,8.3132,9.315,2.4235,1,383.358,2.3958,468.774,3.2809 +25,3.8406,3.6505,6.695,2.1175,1,422.273,2.5751,628.045,2.7693 +17,6.8035,1.2021,912,2.5974,1,141.063,8.295,920.224,221.806 +20,4.5562,6.7371,9.723,8.089,0,1.2794,1.2622,424.908,1.9073 +11,7.4189,776,4.971,5.436,1,255.019,2.458,667.941,5.2416 +24,2.7929,4.7529,2.343,1.4482,1,428.039,6.831,446.297,10.5203 +11,9.0119,1.928,1.937,3.5475,0,10.3911,2.301,96.251,197.043 +24,3.5867,6.2738,2.229,2.9414,1,210.563,1.0956,508.764,14.463 +26,4.3101,9.7942,7.086,2.4006,0,12.821,1.8141,886.796,137.084 +28,1.5228,4.644,404,2.8576,1,6.681,2.8386,512.127,166.069 +32,2.1936,8.175,514,2.7963,1,449.262,2.1709,671.702,192.518 +20,5.6428,5.0778,6.081,1.5352,1,6.7527,1.3604,39.228,5.5805 +25,3.4083,4.9584,6.421,4.873,1,383.384,1.1006,91.838,4.536 +17,8.5193,9.3042,6.653,4.4839,1,173.302,5.716,650.473,3.0527 +31,1.1322,8.8997,3.719,2.9996,1,138.841,2.2684,2.9713,3.9639 +20,4.4118,7.858,8.059,3.4887,1,470.514,3.373,2.5485,9.606 +20,4.0361,2.9626,5.336,2.32,1,32.86,1.842,679.416,179.404 +25,1.1739,5.4501,1.055,3.7824,1,343.461,3.145,12.3126,212.382 +24,2.1193,2.239,7.971,2.9225,1,379.826,7.287,719.003,170.556 +23,4.7228,4.4392,9.531,269,1,170.467,1.8814,328.797,4.527 +20,5.4358,4.8421,0.06,4.4505,1,281.832,2.584,54.353,145.547 +27,4.6386,8.3164,3.914,1.5277,0,135.112,2.9779,182.656,12.4945 +27,5.7784,8.9603,4.875,6.895,1,417.271,2.1945,25.376,196.791 +17,6.3562,4.1462,1.465,4.402,0,299.654,4.379,442.549,226.152 +23,1.0893,177,8.677,3.6022,1,12.1703,8.331,668.823,178.304 +20,5.1769,8.6177,2.841,3.5198,0,449.879,396,164.174,12.3009 +7,9.6715,1.7428,783,3.5008,0,29.042,3.467,28.847,12.2652 +21,5.6713,6.2188,671,4.5788,1,247.515,1.7032,214.893,193.869 +16,7.0979,2.497,598,1.7447,1,1.7244,2.7202,864.048,2.9403 +25,3.8068,3.9951,1.921,2.8057,1,454.901,2.053,651.526,3.6795 +21,7.9659,9.8596,2.207,3.0975,0,476.137,2.402,473.811,8.2443 +15,7.9563,1.1969,473,4.8974,1,281.299,1.5243,947.474,179.313 +16,5.6917,4.2369,2.407,1.5617,0,221.257,1.426,738.468,1.5834 +13,9.7841,3.0715,3.454,4.7817,1,179.783,2.8125,932.904,8.2638 +31,2.13,9.0509,8.331,7.437,1,134.024,2.1659,601.617,7.645 +27,1.1525,8.6934,3.664,3.82,0,287.265,1.378,146.676,11.6577 +13,7.9314,2.377,7.546,3.1644,1,6.4048,9.977,678.673,11.1292 +11,8.2644,8.119,4.394,4.0845,1,459.587,2.794,209.476,171.457 +30,2.0819,6.2714,7.849,1.434,1,8.7979,2.4629,352.509,150.135 +25,3.3902,3.3637,9.763,3.907,0,372.757,508,514.522,216.665 +28,1.158,6.7208,2.398,3.485,1,153.444,1.545,165.792,4.3358 +21,3.6398,3.212,8.623,2.9648,1,11.3036,1.9118,3.0574,10.3699 +16,7.9583,1.334,6.218,3.0147,1,278.935,2.2322,333.815,9.6023 +20,5.6616,6.8637,8.173,4.5305,1,382.562,0.25,826.073,2.7004 +15,4.1329,2.1237,6.516,2.338,0,363.368,321,2.5226,3.9559 +28,4.3457,8.5759,4.239,3.402,1,11.6878,2.118,11.834,8.0791 +23,1.0122,5.859,2.281,1.0476,0,165.251,1.3632,808.786,176.353 +22,3.6982,2.1548,0.07,404,1,434.416,5.434,312.793,3.6039 +26,6.8181,9.9856,5.355,3.8836,1,361.622,2.9461,938.831,6.3676 +15,9.7677,4.3308,9.903,4.078,1,356.347,2.3741,386.442,162.341 +18,8.6235,7.0297,738,4.9897,1,134.453,1.7355,798.737,143.197 +27,1.2124,1.8266,3.273,2.061,1,396.002,2.1063,266.202,2.5055 +14,9.087,6.0987,8.272,965,0,179.209,4.651,7.1213,226.489 +23,8.0488,7.2611,769,1.1736,1,200.695,2.8867,882.739,3.5527 +18,8.0234,3.1448,2.816,2.9388,1,143.781,2.9891,928.024,1.4738 +22,5.122,8.289,143,4.8097,1,6.0695,1.9453,711.019,7.3021 +21,4.582,6.0342,1.182,5.179,0,210.197,2.1949,772.367,6.352 +24,3.7262,3.8912,8.773,6.079,1,847,2.1134,1.7056,7.374 +29,1.5913,5.5764,8.366,3.5088,1,227.955,1.9974,756.285,138.896 +24,3.0541,5.7676,2.952,3.336,0,362.503,1.3156,477.474,214.308 +23,3.2194,1.6554,2.852,1.2525,1,480.373,1.622,458.263,9.6611 +18,5.3567,4.0273,7.929,4.0657,1,3.9307,8.482,544.669,7.2514 +16,7.727,3.4343,9.377,6.439,0,140.645,1.3405,278.498,219.511 +17,5.2643,4.009,7.791,4.6287,0,247.066,1.3083,699.326,1.4751 +29,1.5206,7.6111,6.056,1.1952,1,8.5194,8.644,302.633,11.3595 +17,9.6201,4.8254,2.427,4.068,1,5.8414,2.3601,563.021,6.0625 +17,9.4845,9.4032,5.257,1.6976,1,226.159,1.229,145.558,9.1611 +15,8.0667,2.9368,2.335,9.392,1,290.365,1.6551,678.325,9.8591 +11,9.922,4.157,808,2.6347,0,410.104,4.683,197.717,130.833 +22,5.9003,7.8696,387,3.4342,0,498.902,1.4249,17.871,10.878 +18,9.6649,5.4602,8.337,2.4546,1,387.135,2.2844,3.404,237.132 +23,1.6804,5.4703,3.816,3.303,0,11.067,1.3336,130.568,6.123 +21,4.2911,5.334,8.241,1.8246,1,373.989,1.6732,240.245,181.838 +25,3.0284,3.986,3.333,1.396,1,268.577,2.1051,230.086,1.2239 +20,2.7625,2.7073,4.401,4.8703,1,225.405,1.1669,334.395,10.3457 +27,2.2672,9.9934,6.155,4.0971,0,467.864,1.0598,6.3872,4.8443 +16,6.6017,3.0836,703,3.671,1,351.046,2.572,935.846,226.873 +23,8.0319,8.845,9.482,2.2459,1,340.847,1.7468,12.7984,173.398 +20,6.2047,6.7623,5.736,3.1751,0,5.878,2.1209,704.944,11.1083 +26,2.3227,3.4092,5.078,953,0,432.536,1.7438,539.722,228.538 +18,8.3001,5.4353,8.394,2.8899,1,39.665,8.506,557.261,173.111 +21,6.7236,8.4054,8.658,2.6682,1,149.471,787,11.4462,228.466 +23,4.4935,8.8337,5.223,1.0413,1,146.057,4.785,250.783,169.098 +13,7.0672,1.6039,9.273,7.061,1,2.6739,141,782.082,1.8651 +19,3.3391,3.3957,647,3.7948,1,2.5428,1.2806,46.905,147.913 +20,4.1067,3.3522,1.132,1.6129,1,334.297,4.816,462.497,235.284 +13,9.2574,4.204,5.968,1.2202,1,9.3119,2.0724,550.453,5.1404 +28,3.6145,5.9824,3.541,3.6894,1,461.774,2.8852,439.468,190.258 +21,5.2299,8.5482,4.642,3.6803,0,421.202,2.204,808.075,4.4312 +17,9.0113,3.8157,3.281,1.382,1,174.443,2.6789,751.218,10.8537 +17,7.3695,7.4004,4.047,4.3628,1,190.034,1.9731,323.834,2.0319 +29,1.5598,6.277,8.226,3.4413,0,163.638,2.5808,81.396,8.1741 +22,2.3257,3.7565,5.935,1.7288,0,4.6197,4.649,52.342,186.294 +24,1.0706,1.4106,9.973,2.1374,0,1.5715,2.7194,631.459,1.0864 +24,6.6783,7.0932,7.869,3.6335,1,226.067,2.8736,867.514,7.6847 +29,5.0291,8.5457,2.737,1.0579,0,47.152,2.7201,481.233,151.141 +32,2.2085,6.8585,2.643,2.3438,1,458.625,2.3565,758.698,227.654 +8,9.6214,1.788,3.359,3.2678,1,404.919,2.709,631.806,5.8884 +19,5.7669,2.1623,8.433,2.6975,1,314.297,6.622,432.477,4.1556 +23,3.177,6.948,273,3.0416,1,428.111,2.7394,791.158,4.8881 +18,5.5054,5.7039,2.302,2.7311,1,257.534,6.883,11.4108,5.6834 +23,7.1166,7.5648,9.049,9.961,1,9.008,1.0431,585.408,153.197 +24,1.6862,1.1058,6.399,2.051,1,342.085,1.514,5.5947,23.968 +26,3.4723,8.3834,2.268,2.6599,1,460.323,1.8843,164.607,12.5662 +12,8.2627,5.5551,2.191,3.9003,0,9.803,1.6899,602.885,6.5143 +25,5.137,6.8997,8.626,3.2695,0,12.5722,2.8853,314.531,17.927 +27,5.9192,9.714,8.938,2.133,1,132.719,2.677,26.985,3.798 +14,4.8953,8.368,2.561,4.872,1,4.952,1.5178,95.628,7.203 +31,1.3951,9.0122,4.205,539,0,11.2747,1.828,372.247,145.264 +21,2.4917,1.261,8.346,1.034,0,191.991,1.2396,569.094,5.0471 +21,5.1999,3.9296,771,1.7066,1,469.918,3.974,538.906,9.5817 +31,2.8827,8.5144,8.139,1.1429,1,430.133,2.6034,7.1398,5.5473 +30,1.4498,9.0625,5.184,3.1272,1,473.003,1.6486,677.533,220.335 +14,8.5928,5.0637,9.115,1.978,0,6.0286,1.2762,517.772,8.1117 +11,9.8307,5.941,326,8.872,1,1.4024,2.054,387.603,10.7778 +17,8.1383,7.0815,1.567,1.4667,1,5.4942,1.9962,7.5357,5.6362 +16,8.6841,8.3276,7.087,3.4167,0,457.148,1.199,300.084,2.0364 +18,3.1778,1.2151,5.394,4.3793,1,7.8744,7.611,885.254,12.3014 +20,9.6456,8.1007,8.546,3.9925,1,286.318,2.6303,181.974,208.494 +21,2.7723,4.8128,812,9.104,1,11.3791,5.509,22.714,8.4404 +14,9.5629,4.5062,8.437,2.827,1,1.0318,1.5451,213.241,187.432 +16,9.9534,4.239,2.933,1.501,1,4.2311,2.3873,891.897,7.827 +21,7.4055,5.0921,6.549,1.5527,1,354.899,2.5472,702.996,5.6522 +16,9.8303,9.4505,401,4.0299,0,9.1183,2.4561,883.025,3.1559 +23,6.1259,5.482,6.096,2.2833,1,11.457,2.6899,914.609,9.6692 +27,3.3359,9.5318,7.173,7.497,0,188.628,4.271,928.688,21.464 +19,4.933,1.8029,3.688,2.1928,0,328.621,2.8214,490.858,8.9643 +19,6.342,7.2414,2.154,9.902,1,234.686,324,481.462,144.798 +28,1.6577,8.1224,5.376,1.966,0,472.305,7.677,830.634,215.554 +19,6.6011,6.7913,8.332,2.4392,1,217.091,2.521,338.607,8.6349 +18,9.8306,6.0692,3.235,1.7478,1,9.9565,2.8366,3.1989,8.7781 +22,2.711,5.6481,2.525,4.6848,1,268.071,1.2718,338.232,2.1116 +17,8.1334,8.6093,2.789,2.8127,0,225.445,9.458,719.187,8.3772 +16,9.1711,8.2165,9.491,4.2145,0,393.569,5.013,132.378,179.078 +10,9.4933,1.2229,3.593,3.8036,1,467.561,4.675,786.933,202.711 +18,9.6412,8.4859,36,3.3058,1,418.148,1.8418,81.732,17.346 +13,5.6931,4.1407,7.817,2.4844,0,19.452,1.413,10.9903,1.662 +14,9.7958,2.537,6.993,109,1,10.8058,1.783,10.6861,2.8074 +24,7.8158,8.6977,1.286,3.0673,1,457.244,2.3239,206.824,175.436 +26,2.455,4.3202,9.849,1.7798,0,19.297,1.803,362.825,226.175 +28,5.2921,8.0836,6.081,5.888,1,385.103,2.4797,537.406,166.887 +16,7.465,2.634,5.008,2.2231,1,494.764,7.958,490.687,5.4265 +15,3.2261,393,3.822,3.6778,1,288.721,2.315,854.637,2.5814 +18,6.7655,4.9546,8.987,4.8084,0,23.994,2.163,15.081,210.484 +17,6.9994,1.2023,244,1.8705,1,349.935,2.4844,700.597,2.3767 +25,2.4643,7.5438,2.858,2.7136,1,9.6965,1.505,553.398,3.6249 +19,6.0858,2.7608,1.224,4.2562,1,24.412,2.4619,739.457,143.206 +17,7.9446,4.4365,7.591,1.67,1,156.165,1.3738,348.527,4.5599 +14,5.4901,8.703,5.955,7.113,0,8.2114,5.956,476.666,5.4622 +27,1.1089,2.8666,6.091,1.4094,1,305.068,1.4232,3.8307,3.4142 +27,1.0813,7.8149,2.185,4.4956,1,287.853,6.479,12.4945,226.638 +21,4.2133,1.5159,6.512,797,1,380.602,1.4161,381.246,2.9982 +16,9.3357,6.4716,7.655,1.6461,0,436.485,4.427,486.442,22.352 +23,3.0581,9.1743,3.579,2.3232,0,11.0188,5.567,9.4889,7.8287 +24,6.7093,6.7984,8.013,4.2356,1,389.851,2.6487,826.738,197.174 +23,2.9987,8.1102,3.488,4.6886,0,183.693,3.476,946.592,227.999 +18,3.895,1.0897,7.581,2.1291,1,314.403,6.728,600.434,12.4622 +16,8.6324,2.5073,337,4.6598,1,42.512,2.9866,6.2868,184.841 +22,7.5598,8.9454,5.512,8.073,1,12.8093,1.7281,741.438,6.3843 +30,1.8586,7.1511,9.695,7.843,0,300.481,1.7575,224.992,9.1911 +26,4.8583,6.3955,9.812,4.7463,1,240.159,2.5349,736.315,132.717 +30,1.2625,6.6377,2.818,2.5484,1,395.289,1.573,440.003,204.111 +21,5.328,4.142,4.414,9.295,1,348.621,6.653,6.2892,148.977 +14,6.9619,4.456,63,2.44,1,384.816,1.2674,285.961,5.304 +27,2.0665,7.8444,8.733,3.9161,0,143.972,2.265,43.276,7.3148 +27,3.6,6.7871,5.686,4.1346,1,352.178,2.6173,738.888,207.593 +20,4.5805,4.728,3.851,4.3198,1,302.903,8.196,141.739,5.7657 +16,9.2758,8.9976,1.128,2.8479,1,22.834,7.859,294.132,8.8303 +10,9.9393,3.3616,9.468,4.3347,1,189.172,9.828,9.2702,9.3508 +22,1.4042,2.9432,5.302,2.5502,0,16.58,1.7886,619.649,3.7069 +14,7.8491,8.728,2.829,3.0353,1,4.837,8.355,479.529,8.3955 +28,4.3455,7.9699,3.502,3.7936,1,8.4779,2.6794,929.715,196.181 +24,4.5321,5.1498,2.707,2.1272,0,2.9489,2.934,743.147,203.783 +18,7.7884,1.3073,6.018,3.679,1,424.179,2.0374,780.108,139.415 +17,9.2658,2.1507,0.93,1.7508,1,430.044,2.9109,172.749,162.898 +16,9.5584,6.5623,8.567,3.1197,1,423.097,8.636,273.956,12.8297 +22,6.1941,3.8504,4.604,9.617,1,40.896,2.4455,518.008,1.0625 +28,4.2141,8.3647,8.265,7.419,1,11.0665,2.0353,2.335,167.204 +22,8.0879,9.4996,4.231,1.4654,1,245.893,7.896,871.427,239.172 +27,3.259,8.0564,2.523,1.606,1,453.922,9.552,779.963,5.4678 +20,6.0767,3.7755,9.834,3.7171,1,379.891,1.4659,6.736,235.716 +28,4.2272,7.8869,3.039,1.2936,1,91,2.3749,850.544,239.466 +19,6.9097,3.5144,3.237,6.212,1,229.713,2.6167,1.4443,3.3964 +21,3.1636,1.671,9.897,3.4956,0,5.335,1.9018,12.3077,222.272 +20,2.7243,3.339,1.339,4.2146,0,140.331,2.1647,6.4811,162.128 +15,9.2642,3.8572,7.605,994,1,217.881,7.915,484.368,11.1929 +33,1.9162,9.0356,9.358,1.168,1,44.645,2.2232,786.209,8.2719 +17,5.5536,2.3899,5.118,4.7262,1,327.192,1.8149,186.754,151.152 +21,2.9877,2.0651,25,1.9263,1,181.242,6.688,773.772,202.269 +28,1.3504,9.6982,3.751,4.693,0,245.327,2.8506,193.076,8.185 +25,1.3242,0.25,1.116,1.3711,1,408.695,1.5386,990.631,12.8511 +29,2.577,7.8578,4.162,1.0903,0,149.828,2.3834,85.494,156.063 +16,8.8009,3.2137,0.79,1.0705,0,307.517,1.5768,739.815,6.145 +23,3.5423,3.749,4.387,4.261,0,131.123,2.7988,595.772,213.379 +16,9.5541,9.178,4.319,4.4822,1,239.982,4.238,250.123,22.843 +12,6.2346,1.3964,5.568,4.8992,0,1.2329,1.6385,12.8075,146.998 +15,4.9295,5.5178,5.817,4.7725,0,426.138,755,465.704,2.808 +17,6.2208,2.7405,8.563,4.2601,1,2.4174,5.922,408.634,223.779 +14,5.6503,6.519,3.084,4.2344,0,11.218,8.431,677.736,193.202 +10,7.829,4.992,8.217,3.3054,0,166.756,1.4178,178.389,6.852 +20,3.5425,1.1556,5.659,4.1311,1,312.581,2.4605,566.507,138.998 +21,4.1775,7.137,3.005,1.0417,1,360.017,1.4,696.417,2.7489 +16,9.0468,7.6056,2.951,1.9396,0,4.0226,1.6836,305.977,3.3856 +13,9.5181,4.8557,3.611,3.2042,0,2.1733,2.7722,782.214,4.6202 +16,9.033,3.4289,6.227,4.3739,1,399.495,2.2696,437.524,9.5085 +19,4.775,4.1837,2.308,3.3023,1,356.083,1.506,171.005,210.332 +16,8.0233,9.2895,9.203,4.1951,0,415.775,5.294,202.822,7.458 +20,5.287,9.1075,5.749,2.3697,0,338.269,1.147,286.109,165.411 +23,5.4779,7.1568,0.92,3.5865,1,375.506,2.072,166.545,231.492 +23,2.8421,8.8468,464,4.8999,1,189.519,1.0166,56.729,153.896 +24,6.3202,3.1965,3.426,7.674,1,295.092,2.1836,94.965,195.745 +23,2.6752,3.8111,228,4.6346,0,402.696,7.331,897.112,216.425 +18,3.9841,6.1371,2.723,2.6118,0,8.6059,1.1769,330.516,171.551 +19,8.6953,6.2363,862,3.2161,1,211.411,1.1816,866.023,158.362 +23,2.8637,4.817,366,4.3893,1,370.245,1.7709,954.483,4.312 +27,1.6404,4.1966,4.361,2.0483,0,266.318,2.6788,301.225,12.4533 +32,1.6211,9.8618,1.176,2.0935,1,340.829,2.9497,906.232,11.2614 +16,9.4671,8.2112,4.168,2.6359,0,146.435,1.8138,997.455,12.5449 +21,5.5623,4.3498,8.389,955,1,1.6171,1.5152,799.695,10.3795 +23,4.6847,7.2729,6.231,2.4833,0,1.4573,2.0456,396.321,217.574 +20,8.2979,2.6956,7.368,1.4554,1,471.391,2.1941,612.456,213.367 +13,8.5224,1.2017,3.491,4.6398,1,47.227,1.5718,370.545,3.0168 +26,3.9897,3.5243,9.444,4.387,1,10.5641,2.2109,996.002,12.7894 +17,7.2426,4.0297,7.093,2.2966,1,7.3733,1.4738,7.7175,230.294 +13,7.9401,1.654,4.218,4.7373,1,907,2.9894,89.415,143.679 +15,6.8919,8.1479,4.265,4.5052,1,11.5628,147,8.3803,19.24 +22,2.3644,3.5919,9.187,3.5067,0,167.176,1.3296,5.1776,8.9606 +17,8.8829,5.8042,5.764,2.9468,1,12.0621,1.1911,94.054,9.054 +20,5.8519,7.396,7.064,1.4037,0,398.692,2.3109,868.609,7.8165 +19,3.5423,1.75,417,1.8348,1,374.715,5.725,367.946,5.243 +26,4.8271,8.8969,2.237,4.507,1,4.0507,1.3022,957.957,221.964 +28,1.3381,6.0869,7.236,3.9305,0,348.661,2.0938,863.238,8.3914 +32,2.1508,9.5028,6.078,1.6193,1,260.293,1.8096,902.963,8.8101 +23,7.8899,9.9875,5.013,3.3389,1,6.6083,1.6354,599.164,182.291 +28,1.2001,3.7186,624,1.788,1,369.768,1.3049,958.745,12.6454 +18,4.7491,2.988,2.083,2.3217,0,4.3023,2.256,811.486,8.689 +25,5.7026,8.5836,7.939,2.775,1,8.8575,1.9393,940.553,212.068 +33,1.4917,9.9861,9.482,4.1993,1,7.4613,2.6241,288.696,198.091 +20,9.7577,6.2964,8.911,1.0558,0,469.517,2.199,536.777,234.432 +26,3.0351,7.9514,3.214,1.9938,1,349.078,4.212,868.986,153.845 +27,3.7378,7.8175,406,6.504,1,205.643,1.8586,583.932,165.623 +22,3.7355,3.5534,8.084,3.788,1,411.102,1.336,803.087,7.788 +22,3.0737,5.7427,5.951,3.0234,1,10.798,1.1621,973.366,2.3899 +31,1.0133,8.3306,5.479,9.455,1,465.547,1.2358,806.517,2.542 +26,7.5641,6.8811,9.266,299,1,348.499,2.5646,322.206,155.026 +7,9.7016,2.116,536,4.4855,1,27.979,5.411,12.7512,2.7185 +25,3.0186,3.3671,5.149,2.6716,0,397.324,1.9306,280.019,21.759 +14,6.9674,1.4448,42,6.731,1,32.239,5.772,666.163,168.928 +16,7.6771,2.3297,694,2.671,0,443.555,2.846,2.0835,5.429 +20,8.6358,9.0549,74,5.993,1,414.576,1.5885,197.822,6.7011 +21,4.8037,3.689,9.132,2.3567,1,9.8915,2.1246,333.634,170.394 +21,3.7264,2.198,4.084,3.3423,0,11.9832,1.9396,876.473,197.789 +19,3.9277,3.0957,4.686,3.2064,1,3.2549,9.109,6.0494,201.463 +25,7.4136,6.1688,8.454,7.221,1,11.1999,2.7036,5.9437,144.247 +13,8.351,5.341,6.092,3.1674,0,171.744,1.8817,556.265,3.7256 +23,2.6345,2.1827,6.095,2.0243,1,1.4414,1.531,185.989,196.406 +20,4.3385,1.6424,2.965,2.3237,1,157.481,1.5851,249.793,189.994 +16,9.1175,2.368,8.339,4.1972,1,385.773,2.6721,192.394,200.486 +13,8.2602,5.0253,1.658,1.6625,0,420.164,1.774,585.791,3.7839 +9,9.8637,2.7118,531,735,0,4.437,1.1672,6.4992,164.246 +19,7.7882,9.476,1.916,4.3673,0,3.574,2.5249,94.06,230.459 +16,4.5388,4.6387,2.677,1.0607,0,7.3154,1.125,131.907,6.1455 +19,6.3157,588,2.823,1.4701,1,436.289,1.9175,95.208,172.015 +20,6.9491,7.2927,6.705,3.533,1,234.639,1.2098,780.348,6.214 +23,1.7061,3.2885,2.178,3.4178,0,491.451,6.138,829.736,7.3703 +20,5.9005,6.5349,6.767,4.002,0,443.666,1.8342,18.108,11.6464 +22,7.3839,2.7959,911,9.193,1,445.064,2.4932,672.951,214.789 +23,2.5059,5.7074,1.472,1.7614,1,6.4238,1.402,818.901,9.279 +19,8.0257,7.7215,5.088,6.294,1,237.615,4.402,562.455,237.514 +23,6.254,9.2801,9.219,2.7052,0,496.795,9.185,555.564,185.299 +14,9.57,2.6113,8.596,1.4629,1,7.4522,2.9441,167.819,8.6347 +23,1.3818,3.3486,9.688,3.4447,1,287.117,3.333,42.009,8.4998 +24,3.3879,4.6427,6.505,17,1,17.214,4.821,159.035,11.5915 +29,6.414,9.2717,6.758,2.984,1,193.929,2.9705,973.129,210.115 +30,3.669,9.0139,625,2.1628,1,445.396,2.6463,688.002,0.43 +15,7.4298,8.988,6.228,4.7909,1,293.951,2.1214,5.7938,13.158 +11,7.831,1.3193,1.471,4.4543,1,379.388,4.529,48.2,1.3461 +22,1.9226,4.9551,5.437,4.97,1,336.617,7.216,641.585,2.7744 +15,5.6247,1.0662,3.861,2.0842,0,264.508,5.405,10.4684,16.576 +22,5.58,3.4558,4.425,2.328,1,395.856,1.8929,668.339,5.6234 +19,4.3235,1.4839,5.236,1.5298,1,485.366,1.1966,185.532,9.983 +13,9.3963,6.3604,1.284,3.3789,1,48.341,1.433,413.801,3.9417 +20,8.4476,9.495,3.595,6.758,1,394.726,8.739,629.299,5.1973 +24,7.2749,9.9673,634,1.4999,1,243.665,2.582,371.404,184.748 +20,7.4289,3.7524,9.797,2.808,1,8.1579,2.3881,387.075,149.982 +22,5.1554,5.9901,1.185,2.3748,1,2.2235,1.929,845.179,17.643 +14,9.289,8.5627,2.585,1.0446,1,11.5722,2.566,316.172,8.8757 +20,7.2514,1.1746,8.913,4.562,1,170.129,2.6484,658.642,2.7152 +20,7.5608,6.8956,4.827,2.0561,1,6.4925,1.6036,850.661,19.327 +13,8.7552,4.0884,1.356,1.7561,1,11.2383,1.4837,161.123,3.3698 +23,3.4666,2.0615,3.842,2.6876,1,4.1773,2.8022,5.5469,9.1844 +11,8.2636,4.0275,1.159,3.7452,0,261.838,265,827.279,6.2947 +19,2.7572,7.596,2.002,5.628,0,6.3159,1.6677,555.619,7.1168 +24,4.1081,6.9541,52,3.9556,1,371.384,2.3737,829.424,144.446 +18,4.0205,2.5274,4.382,1.314,0,166.325,1.911,220.905,3.9445 +12,9.8067,3.1141,8.066,2.2155,0,336.031,1.0715,834.306,10.701 +16,8.7088,1.2108,586,2.9372,1,44.126,2.9325,10.4357,153.285 +18,7.3105,8.6466,6.063,4.785,0,4.3008,6.354,884.371,208.539 +18,7.5435,4.9344,2.006,2.8696,1,49.45,1.5935,824.308,8.9095 +23,6.0587,5.7215,3.439,7.937,0,322.622,2.2382,571.661,7.6486 +13,9.5238,5.6943,8.452,2.5877,0,2.6683,1.1711,612.256,8.8283 +19,5.4663,4.1049,879,1.9789,1,157.001,1.2236,352.386,12.0191 +21,4.4247,1.9253,8.579,2.3968,1,443.123,1.898,20.96,7.5143 +25,2.4673,7.4513,4.837,9.855,0,298.117,5.703,460.884,6.0108 +16,8.0759,1.2706,8.371,2.5041,1,143.611,2.6418,660.878,9.1973 +19,7.61,1.0387,318,7.502,1,470.247,2.455,99.848,186.679 +22,4.4592,7.1015,3.388,3.7202,1,393.626,9.139,819.081,6.0676 +26,1.2267,2.0884,7.516,2.9695,1,367.769,1.1451,439.965,202.711 +17,8.551,3.0677,785,3.926,0,444.214,1.3212,745.815,6.8426 +24,1.1028,4.7523,2.296,4.4481,1,38.489,1.0378,11.6967,144.738 +20,7.3333,4.4935,9.729,3.0819,1,143.369,1.9617,420.886,233.034 +14,9.7323,7.0858,845,1.5805,0,291.943,385,430.675,22.843 +27,4.939,6.2343,685,2.282,1,421.143,2.6405,998.836,10.4312 +24,3.1148,6.444,5.955,3.1611,1,9.0424,9.019,397.105,1.6204 +21,7.3438,7.1405,7.227,1.8672,1,8.1512,2.6171,9.2449,216.631 +10,8.3542,2.9261,9.609,4.5381,0,7.9488,1.3632,7.6556,3.046 +23,5.9179,3.2233,4.049,1.744,1,9.7128,2.329,701.401,221.652 +17,9.7033,4.38,253,1.955,1,5.1615,2.4773,296.202,175.831 +24,1.465,3.0746,6.029,4.7465,1,418.815,9.039,870.224,224.217 +25,5.5432,9.8494,2.897,4.8244,1,409.159,1.921,488.118,159.694 +23,7.4661,8.1405,4.329,1.387,1,7.5684,1.8222,337.069,238.827 +12,8.7638,1.6465,4.885,3.5802,0,352.769,1.428,761.523,11.208 +22,2.6133,559,645,1.1075,1,313.488,1.4087,423.357,7.9109 +11,8.2,4.278,486,3.507,1,138.097,9.156,740.009,9.4395 +14,5.9744,2.4406,4.263,4.3437,1,11.3684,9.306,716.951,8.4069 +19,4.569,1.1429,7.125,5.042,0,12.5293,1.6445,725.979,9.6191 +24,2.1854,5.3334,6.457,1.1938,0,365.315,968,858.551,212.449 +21,8.7877,8.58,1.852,1.204,1,159.659,2.801,849.915,142.095 +28,2.4155,7.3675,2.061,2.191,0,13.898,1.9499,667.962,174.168 +19,3.7881,2.1561,251,1.481,1,1.1241,1.3303,957.392,6.909 +20,3.6104,3.993,179,4.1934,1,454.118,1.854,3.052,237.569 +17,8.8427,5.0789,6.572,1.4915,0,376.352,1.89,931.119,6.7376 +18,7.0543,8.1021,9.944,2.4661,1,236.392,532,156.771,3.8166 +24,8.1701,8.3912,6.521,3.9392,1,471.463,2.0396,219.527,186.767 +26,3.2542,9.0972,6.067,2.4747,1,146.766,2.176,819.225,201.378 +19,6.6239,5.0925,4.099,2.146,0,337.353,1.9683,406.431,9.4511 +21,6.1457,6.9427,3.126,579,0,152.575,1.2177,431.057,12.9857 +13,8.4955,1.118,9.111,2.8402,1,157.286,1.9879,268.615,9.9391 +17,9.1548,5.6529,969,6.237,1,422.355,4.155,232.197,7.0541 +23,1.1094,2.4869,4.968,3.8232,1,393.511,3.521,11.5178,19.521 +16,7.0662,4.3172,2.902,1.2887,0,147.054,7.423,204.804,181.689 +25,1.4665,6.3405,7.701,3.3709,0,4.0695,1.2345,571.079,11.6479 +16,5.9397,2.5699,1.325,3.2311,1,178.792,7.591,709.543,10.9332 +17,3.5887,5.219,7.656,3.0834,1,380.029,246,741.451,4.3239 +18,3.761,1.023,8.189,1.3348,1,5.0272,9.751,376.422,152.946 +21,4.1766,2.216,1.249,1.3354,1,33.605,2.1173,922.735,221.683 +14,6.5916,835,9.769,4.3152,0,444.882,1.7493,335.441,172.523 +24,4.1964,1.1036,9.855,64,1,8.9614,2.89,12.2025,12.1505 +17,7.5943,2.3949,9.367,9.076,1,431.102,1.3078,945.771,9.278 +18,4.6407,2.2122,496,3.0509,0,2.5682,9.984,54.527,223.268 +30,1.6152,9.868,2.461,4.0852,1,33.344,2.081,971.662,7.3931 +18,8.0538,3.0601,582,1.7917,1,395.519,1.2359,39.973,7.1989 +18,3.5718,1.2742,4.199,3.2672,0,222.383,1.8549,759.819,11.2703 +22,4.8949,5.4556,2.059,2.7858,1,10.1864,2.8389,11.8837,10.3 +24,7.169,8.5796,4.237,3.227,1,462.365,1.4976,855.538,230.964 +22,3.9921,6.7806,6.639,3.1088,1,9.984,1.4945,178.993,3.9602 +25,1.5093,2.9608,709,4.0695,1,277.536,2.3255,7.7992,165.389 +21,4.3653,5.6162,3.334,4.9622,1,186.425,2.2682,10.6776,2.5623 +17,9.5,7.1486,178,1.482,1,230.529,1.5487,561.802,6.6455 +20,6.7756,7.281,7.495,3.3003,1,268.283,1.942,298.955,173.313 +24,7.0433,6.6654,6.407,2.0727,1,267.374,2.9424,961.345,19.297 +20,6.6905,8.7081,627,489,0,10.1812,1.132,85.415,11.2542 +30,2.7909,8.7011,9.647,3.0718,1,339.851,9.501,805.275,189.443 +23,4.765,5.7894,226,6.121,0,9.574,2.9446,811.542,22.443 +21,7.7585,4.2986,0.59,1.8928,0,1.0592,2.6164,891.771,224.589 +29,1.9124,6.4157,7.764,1.3068,0,239.244,9.906,866.558,8.2194 +26,3.5007,8.1821,7.879,1.8058,1,270.951,9.249,928.925,7.4914 +18,3.4869,565,343,2.4635,0,137.445,2.1629,935.023,174.347 +25,4.8882,9.92,9.064,1.796,1,275.838,1.2029,305.338,156.983 +11,9.8233,1.8289,9.185,2.7637,1,258.055,7.543,227.369,9.4144 +30,1.6075,4.7025,5.614,1.1932,1,17.461,2.939,646.667,5.4882 +21,5.6683,8.7203,4.821,3.1768,0,325.887,1.6971,132.098,148.424 +22,2.6143,2.2504,449,4.2688,1,478.969,2.2875,219.034,10.3257 +15,9.7361,4.768,562,1.1203,0,245.401,2.1392,775.227,3.1707 +23,2.0197,1.3258,4.094,2.5394,0,393.025,2.2666,652.842,15.342 +24,4.6324,3.9508,7.728,3.2434,1,12.3798,2.7102,654.343,167.442 +14,7.641,1.7714,4.039,2.8231,0,380.975,1.5023,951.132,8.7416 +21,7.341,3.6363,6.836,1.8282,1,324.453,2.2601,670.948,199.669 +20,4.8046,3.7346,1.014,3.211,1,319.849,2.3904,436.499,1.7682 +30,4.1187,9.9317,133,1.412,0,446.518,2.8392,287.529,11.9018 +28,4.5785,9.9481,1.397,1.8495,1,11.6675,2.1393,34.517,22.952 +19,3.3785,1.1479,455,2.6631,0,184.225,2.6778,285.035,4.5711 +24,2.848,7.2597,5.413,1.031,1,4.1534,2.851,4.4638,4.1358 +16,5.3474,5.175,794,2.5382,1,36.306,3.783,268.958,9.0887 +18,3.4168,3.019,6.104,3.2713,0,421.934,475,837.016,6.434 +17,3.5872,1.0533,575,3.796,1,202.917,4.344,730.947,5.3168 +21,6.9108,9.6549,6.806,5.669,0,178.413,2.626,62.562,227.962 +14,9.7168,9.4086,3.396,4.9528,1,329.326,3.677,903.183,8.2763 +17,6.4327,1.9393,362,3.0308,1,3.7795,2.9877,271.484,1.4361 +24,1.6928,1.6167,3.143,1.816,1,146.921,8.166,581.908,215.948 +25,1.6803,2.4054,7.121,1.2455,1,183.106,1.4341,4.1013,10.7579 +18,9.5628,5.1555,1.616,2.8645,1,259.295,2.4648,893.086,176.626 +20,3.6756,5.697,13,4.4086,1,238.285,3.549,45.326,8.8163 +21,1.8286,2.2159,5.962,2.6028,0,10.434,9.521,186.093,224.441 +19,6.3914,7.5662,9.424,3.3074,1,270.394,4.779,246.923,6.9072 +18,6.6128,3.0955,6.094,1.7885,1,462.934,1.877,849.757,159.064 +25,6.8365,9.2213,7.829,1.9408,1,1.3544,2.8823,11.7718,197.843 +29,3.4066,6.5672,6.728,1.4309,1,340.153,2.5751,925.951,5.7104 +30,1.136,4.3635,4.974,3.5282,1,312.355,2.6379,379.728,192.363 +22,9.6851,7.8991,7.184,1.7959,1,462.213,2.606,258.574,190.146 +27,3.258,8.1791,8.241,9.536,1,322.672,4.637,33.854,231.414 +21,7.0842,2.9048,2.247,1.847,1,312.421,2.355,414.893,221.475 +17,7.3597,3.3971,3.361,4.2691,1,384.903,2.1836,552.632,9.3266 +22,6.4901,9.3596,2.237,3.6913,0,133.903,2.7762,590.939,141.731 +20,3.8162,1.6474,4.522,1.6732,1,297.866,658,453.341,222.071 +18,3.4399,4.215,8.851,4.534,1,259.711,1.2421,45.19,105 +19,6.379,4.5406,3.452,3.742,1,219.236,8.848,292.447,150.564 +15,8.7949,8.0121,3.745,2.488,1,3.9744,7.738,389.972,5.1687 +19,9.5206,7.7167,8.604,6.374,1,146.314,1.9571,472.467,177.304 +31,1.9532,9.1953,5.154,5.823,1,139.991,4.918,601.612,191.153 +27,2.3935,5.332,5.354,4.392,0,362.125,1.3944,139.393,17.111 +13,9.5026,1.2006,8.608,3.3067,0,460.328,1.9399,766.334,239.059 +13,7.6288,5.8869,4.905,3.1942,0,11.5394,3.909,683.766,11.5022 +14,8.9469,7.784,6.816,3.238,1,3.7312,7.709,30.578,134.723 +23,2.8237,9.333,856,3.4418,1,499.978,2.9021,464.751,9.8158 +19,6.2883,1.7266,1.786,3.7844,0,345.603,2.3863,94.746,233.756 +16,7.3103,1.229,4.044,1.0359,0,443.235,2.0309,3.0273,221.462 +22,7.121,5.9365,4.948,3.1115,1,7.194,2.5679,813.238,236.793 +25,4.6734,8.8673,9.657,2.9002,0,400.384,419,516.607,236.374 +27,1.1386,6.7066,9.707,4.7183,1,406.662,182,622.624,21.491 +21,6.2463,9.8204,8.512,1.1618,0,7.5744,4.619,687.687,223.411 +21,3.2779,6.303,3.156,2.936,1,8.0702,1.4858,46.146,2.8771 +23,5.0523,09.03,964,3.2675,1,147.726,1.7099,199.941,4.1647 +15,9.6182,8.1407,6.893,3.7009,1,10.8394,3.411,910.495,212.445 +21,4.5913,3.1424,3.929,1.416,1,487.705,2.169,742.789,174.432 +25,8.5582,9.7353,7.017,2.8542,1,181.472,2.485,563.994,209.997 +25,2.6969,2.8794,165,2.977,1,380.653,1.3934,453.972,184.808 +22,7.0521,8.893,1.462,4.8002,1,402.525,2.9775,504.338,3.35 +20,9.7931,8.8075,8.297,5.496,1,19.297,688,825.303,219.976 +31,1.917,7.5766,6.456,3.379,0,341.293,1.9416,2.2378,185.095 +31,1.0749,5.6347,3.642,2.206,0,5.39,2.4132,866.682,136.993 +20,4.9022,1.2,5.007,2.1364,1,198.481,2.6179,5.6284,12.7767 +31,1.8336,5.3197,9.051,4.858,1,483.655,919,619.754,137.712 +15,7.7355,3.568,6.316,3.7232,1,8.4265,5.798,339.791,9.37 +15,9.2309,7.9222,3.981,4.4944,0,192.856,6.783,681.454,192.773 +26,4.9062,7.5813,1.203,1.3011,0,395.261,2.2002,9.4687,218.164 +26,3.3284,9.1061,2.937,3.1439,1,332.712,1.567,56.067,06.07 +22,4.9096,1.483,9.783,2.117,1,315.759,1.797,856.682,9.131 +17,7.511,8.091,4.374,1.9328,1,426.629,616,499.691,4.8703 +29,1.0815,9.3846,4.718,1.4647,0,1.4547,1.1729,9.3503,181.761 +23,6.3051,7.893,4.986,1.1431,1,385.582,9.304,4.7005,208.416 +19,6.5196,1.3019,8.841,3.2236,1,441.275,2.5913,624.989,8.3656 +16,6.7392,8.128,6.039,6.511,1,8.087,2.3288,7.8835,3.6573 +17,3.1782,2.085,6.937,4.3036,0,279.481,1.2887,8.0576,206.048 +17,7.4265,6.2875,3.894,3.3242,1,174.294,1.8916,431.185,5.1514 +20,1.8225,6.2967,291,3.5537,1,2.5381,143,217.413,5.805 +29,2.7934,9.8691,931,4.6767,1,208.874,1.9118,212.154,2.2227 +15,8.8972,3.9804,9.491,4.7119,1,322.015,2.916,486.166,218.478 +21,7.6485,3.3191,9.492,2.7583,1,459.507,2.1421,287.994,7.8414 +28,1.1237,6.2442,9.437,2.4769,0,310.265,1.7215,227.074,4.1242 +29,3.2354,8.2561,8.152,1.6769,1,428.372,9.015,51.927,228.875 +25,2.9297,9.3677,6.846,3.5779,0,6.0786,1.1125,297.975,8.0525 +23,3.4373,8.0312,8.445,2.691,1,10.5261,2.703,8.9418,179.397 +21,3.228,4.2667,6.005,4.6644,1,485.146,9.684,685.912,5.5295 +31,1.5627,6.3491,1.344,1.1931,1,44.37,2.9005,589.752,174.438 +24,5.1305,8.563,3.912,1.5513,1,11.7613,1.4586,219.996,5.5719 +19,7.5946,4.9061,9.713,1.5805,1,310.487,1.4227,586.424,153.058 +18,6.4606,2.1669,3.511,04.03,1,181.316,1.8877,956.034,10.5807 +19,7.0558,1.6972,8.678,4.952,1,234.299,1.4533,956.914,191.692 +21,1.7303,16,932,2.2782,0,430.439,1.0665,536.623,175.265 +14,9.5634,7.1824,3.342,2.1379,0,367.856,4.186,10.7049,224.517 +14,8.5464,1.111,351,3.657,1,11.9221,1.8909,463.604,9.0389 +13,8.2458,2.4384,516,2.054,0,157.997,2.2468,3.6714,18.104 +18,8.4069,2.9788,1.191,2.5669,1,144.855,2.7693,421.049,232.522 +14,9.3944,5.6038,1.932,3.255,1,390.331,9,910.325,8.0714 +16,5.8983,3.9796,8.378,2.5493,0,245.044,0.2,472.769,6.9601 +28,2.8025,6.7467,634,4.7962,1,475.362,2.6982,554.983,184.572 +14,6.5511,5.564,2.987,4.8946,1,408.344,1.8935,166.456,10.6925 +16,7.6859,1.2394,102,2.6584,1,10.5597,2.8737,2.5494,9.5676 +17,7.6413,4.9921,6.956,2.5755,0,392.971,1.2925,99.345,130.947 +22,5.693,3.3696,6.203,1.4275,1,25.304,1.2501,344.875,224.527 +22,1.6161,2.9581,645,4.9856,1,12.6855,1.0328,286.556,2.0124 +16,4.34,6.703,3.744,1.3711,1,181.666,4.285,575.569,11.1765 +18,9.2869,8.9572,2.083,2.2645,1,486.063,1.1359,747.865,2.6434 +20,6.26,6.9182,7.203,147,0,241.981,439,258.894,212.061 +18,5.845,1.2162,8.111,1.7462,1,359.803,1.5279,528.883,3.2808 +22,3.4197,6.505,1.386,3.572,1,238.543,2.5416,339.309,2.1529 +24,4.316,9.7487,4.868,3.7191,0,185.779,9.636,486.156,231.301 +13,9.0581,6.8117,2.487,2.8051,0,39.821,2.839,169.697,135.202 +20,6.9982,4.1746,1.681,2.8609,0,424.162,2.9213,515.017,198.214 +16,8.0865,7.0173,7.343,1.4326,1,3.5945,3.869,5.6874,11.2862 +21,5.0891,7.5633,5.381,4.0745,0,139.489,1.5861,841.597,10.4554 +25,6.6722,7.7996,2.162,164,1,253.936,2.4276,631.383,218.786 +24,3.2355,4.7788,0.31,1.668,1,158.249,757,942.076,237.569 +19,7.3491,4.2988,9.667,3.2975,1,391.792,2.5245,603.735,148.448 +18,4.8484,1.103,8.487,4.5396,1,5.7367,1.6711,190.344,220.365 +27,4.9829,9.2656,8.799,1.1731,1,398.899,9.958,48.921,207.052 +20,6.8439,6.0331,0.46,2.7055,0,308.943,2.5971,668.048,130.562 +13,9.4265,2.0315,6.238,2.69,1,144.684,1.866,380.481,225.865 +27,1.5761,9.196,3.768,4.3709,0,172.227,1.8462,557.123,5.0413 +20,8.4227,9.1493,777,2.526,1,9.145,1.512,171.062,212.363 +26,3.6314,9.8918,4.011,2.1224,1,12.6287,8.242,779.353,7.4246 +23,4.9953,8.7406,594,9.123,1,358.634,9.146,910.435,7.324 +31,1.1972,9.9778,2.871,1.077,1,187.942,2.642,321.728,188.901 +23,3.7094,2.4469,848,7.352,0,343.742,7.312,795.398,223.204 +19,5.5237,8.4225,1.511,4.8824,1,257.054,8.335,10.1026,5.2028 +26,1.5056,8.2303,3.671,1.0742,1,7.2649,1.761,254.237,12.8181 +14,5.4199,2.3094,1.249,4.6752,0,249.535,3.309,467.251,179.843 +11,9.344,9.844,4.048,1.0263,1,378.235,8.108,392.543,7.959 +27,1.9485,9.7942,397,4.6565,0,148.838,2.0318,62.343,3.526 +13,7.88,2.9602,2.725,3.2731,1,324.041,5.527,567.355,9.4139 +23,4.687,8.7089,4.007,5.661,1,9.9516,1.5655,9.6399,10.9577 +10,6.8966,413,4.782,2.9096,0,6.7849,1.5237,140.377,178.133 +21,3.3421,2.102,5.437,1.5926,1,180.113,2.5021,6.1195,4.7684 +27,2.4354,4.6587,275,1.9158,1,194.602,1.8275,953.081,195.627 +27,2.4442,2.3871,523,2.2009,1,380.505,2.751,648.891,12.0523 +31,1.6344,6.8984,509,2.1135,1,230.039,1.8843,857.029,216.934 +20,2.6708,5.6556,3.162,3.3205,1,4.0617,765,545.851,135.789 +16,6.978,7.749,8.302,3.8418,1,31.7,1.1445,20.19,10.7245 +13,8.9352,1.6263,5.456,1.6459,0,234.627,2.0971,630.335,6.883 +13,8.3271,3.8805,3.323,4.6218,1,165.822,1.4254,510.286,2.5498 +14,7.1662,1.856,9.473,4.6923,1,401.109,1.2582,41.411,8.9209 +30,1.9939,7.9222,8.451,2.035,1,7.7192,2.0146,378.087,9.927 +25,3.6027,4.1607,9.826,745,0,456.606,8.572,653.576,136.389 +24,3.7883,9.343,6.922,2.1253,1,167.031,2.7269,621.584,206.364 +20,3.2496,4.8434,3.782,2.9532,1,230.471,1.2394,16.005,11.1316 +20,5.6351,9.084,2.809,1.3895,1,464.616,1.8937,81.806,7.5428 +24,5.82,1.2894,6.633,1.2971,1,38.062,2.947,63.973,209.582 +23,4.212,2.3961,9.808,3.3917,1,3.7151,2.3564,54.045,17.614 +27,4.1841,8.5953,6.267,3.1985,1,289.148,1.5949,751.428,7.3687 +23,8.457,9.2461,8.816,8.357,1,155.181,2.5782,16.213,4.1967 +21,8.1036,8.2626,3.291,4.4225,1,254.244,1.6813,920.519,6.9847 +21,3.7702,3.3408,407,3.3999,1,371.485,1.325,277.881,2.9673 +14,9.2241,2.7245,9.063,1.8129,0,248.086,2.6204,27.013,21.682 +12,9.5753,5.4916,7.569,3.4181,1,3.5511,815,816.754,146.814 +27,3.9407,7.2185,9.814,5.633,0,26.499,1.2224,340.651,207.243 +25,4.1898,9.9337,7.748,2.3413,1,1.2065,1.029,832.401,196.887 +19,5.5507,1.3157,4.485,8.449,1,174.205,2.1423,33.473,3.6777 +11,9.4701,4.929,5.311,2.072,1,239.015,378,555.181,10.632 +20,8.8869,6.9436,9.005,1.6916,1,322.337,1.9826,238.536,233.295 +29,1.9231,8.3223,5.516,7.537,1,253.103,1.0391,734.205,5.6111 +20,4.5346,8.4635,2.554,3.1676,1,7.5973,2.937,175.272,1.2057 +24,5.9803,6.7846,4.356,3.3703,1,466.109,2.941,900.437,8.3042 +23,5.5282,9.5402,5.163,7.435,0,32.515,6.367,377.932,12.2627 +23,2.7448,5.11,967,1.231,1,158.484,1.0474,476.859,1.3411 +17,8.7294,9.1381,7.438,3.9641,1,48.297,6.211,3.3782,10.2402 +25,7.0925,9.6781,1.094,103,1,441.289,1.986,976.032,6.0819 +20,8.5412,8.4716,4.049,1.7196,0,7.1745,2.3475,815.044,5.0908 +16,8.7289,3.0976,8.046,2.4729,0,327.715,2.5819,452.539,6.3338 +12,7.7352,1.9622,4.676,4.0932,1,280.035,933,921.059,2.5296 +22,4.9529,5.4812,842,4.1928,1,9.6404,1.5737,931.749,1.8395 +19,6.4949,4.5301,3.419,3.6247,1,11.6738,1.9898,537.722,143.003 +29,2.4433,8.7776,9.576,1.236,0,281.887,1.8886,241.512,227.479 +15,7.0628,1.2003,2.095,3.6009,0,160.644,2.1481,492.239,193.138 +25,2.6133,2.5774,383,1.2327,0,417.416,2.3092,331.551,200.136 +18,7.2455,7.518,8.724,1.073,0,4.887,2.924,453.506,17.642 +23,3.0664,9.499,7.522,2.7356,1,457.015,5.049,912.278,229.436 +26,2.058,3.2076,232,3.3943,1,420.276,2.203,289.016,228.132 +29,2.4876,3.8716,9.847,2.653,1,369.312,1.43,840.577,186.793 +30,1.0179,6.2259,5.023,3.001,0,131.284,1.2811,935.948,171.827 +14,7.4687,1.5813,9.511,3.9209,0,357.479,1.3663,807.002,7.3267 +17,7.5916,8.606,505,4.2975,0,219.385,1.1161,531.981,2.188 +21,5.6344,4.4754,4.719,3.0222,1,316.879,1.7732,568.338,2.2288 +29,2.4523,9.1702,4.491,2.1441,1,156.277,0.97,821.439,176.703 +26,1.752,4.6787,3.349,4.2266,1,417.929,1.9104,5.4056,681 +22,1.1722,2.7504,5.337,3.6441,1,2.0288,6.079,738.571,195.938 +23,2.4917,1.4183,4.526,2.898,1,34.573,2.2731,533.579,8.7954 +12,9.0177,375,367,1.5988,1,414.316,2.3448,403.166,4.6099 +28,3.1738,5.3216,2.604,0.99,1,323.214,1.7356,769.258,9.7821 +17,4.1884,1.0716,2.131,2.0934,1,9.5996,1.108,273.585,168.785 +25,1.9481,3.9173,8.674,1.4341,1,14.249,432,896.578,6.6027 +22,3.2013,5.8927,5.989,1.6963,0,257.453,3.646,691.603,4.1668 +16,5.673,2.7569,7.637,2.5782,1,164.725,2.391,614.054,177.092 +14,6.4698,1.7522,9.568,8.455,1,2.458,306,527.889,211.364 +26,3.2082,7.7472,644,4.0309,1,2.0339,2.1667,22.063,140.531 +35,1.5196,9.4679,9.826,7.276,0,383.884,2.8682,620.776,12.5725 +16,4.5193,1.1944,3.118,2.405,1,4.1854,335,727.665,18.117 +17,3.1078,1.5559,1.863,3.7299,1,464.011,3.381,2.1573,175.835 +27,2.976,9.6001,4.033,2.4251,0,221.368,2.582,372.755,1.507 +12,9.6388,3.778,4.708,1.8051,1,379.093,2.0655,834.139,6.7643 +25,6.5467,9.7763,8.954,2.3745,1,6.2752,1.2141,635.889,223.683 +19,6.0119,464,5.599,4.2434,0,463.254,2.9784,619.118,230.449 +21,4.742,8.7367,2.922,4.9522,1,1.6904,1.7209,236.327,12.2469 +22,4.8605,3.0733,7.426,3.1557,1,2.1069,2.1988,635.768,134.422 +21,5.8681,9.3859,5.058,3.9672,1,2.7293,1.9595,788.289,158 +15,7.2679,3.1695,1.621,724,1,5.1704,6.681,407.739,161.362 +17,7.3193,6.5431,5.768,4.4018,1,243.416,1.4644,190.271,5.0985 +20,2.5452,8.003,9.114,4.7702,1,394.138,6.492,8.6502,3.0699 +18,5.501,2.4233,8.426,2.8758,1,142.474,1.5284,510.639,7.3124 +23,4.7076,7.7368,5.868,3.769,1,372.888,923,68.702,159.574 +13,8.8347,5.2869,3.771,2.5637,0,38.703,1.1459,171.013,10.472 +21,6.6828,9.2797,87,1.431,1,454.139,1.1166,427.229,8.3774 +17,5.7925,4.2875,4.696,4.2612,0,7.4676,8.749,572.957,174.434 +26,2.0386,8.6981,7.521,2.9842,1,6.7767,2.377,16.43,195.293 +20,6.4507,4.4896,3.603,2.8969,1,6.1048,2.3129,277.191,208.609 +29,2.0548,9.7925,2.354,3.2957,1,179.655,1.2614,612.329,10.6741 +31,4.0349,9.5983,9.314,4.28,1,244.706,2.4419,727.774,172.279 +25,2.2856,3.2914,8.216,3.6595,0,230.805,2.5072,639.633,212.451 +21,7.2287,8.8592,6.383,1.0556,0,12.8524,6.408,716.498,218.138 +26,2.8563,8.4761,1.368,2.3341,1,31.099,1.264,585.689,11.8109 +17,4.5267,2.1068,1.449,4.9015,0,169.137,2.1629,837.475,8.5278 +14,9.0611,6.2429,1.032,2.7728,0,183.041,1.4985,828.469,216.045 +22,2.8388,7.268,6.163,4.6912,1,5.2765,2.5652,798.285,6.2743 +24,5.5702,8.3671,1.156,4.0668,1,296.116,1.7147,579.704,191.243 +23,4.7734,1.7455,8.426,3.3301,1,32.764,1.8887,994.189,218.077 +26,1.1631,7.081,993,1.7468,0,378.975,2.3611,4.8721,177.533 +15,8.1348,4.2022,3.663,1.5216,1,452.005,3.667,203.697,163.166 +26,1.6214,5.7692,4.537,3.2171,1,383.002,1.7527,810.789,1.2163 +20,5.2683,8.5492,7.117,2.1628,0,11.7872,2.563,82.803,4.8834 +21,6.0461,9.7424,9.372,3.9938,1,11.7828,7.817,820.565,159.977 +17,6.6558,4.3949,8.941,3.8023,0,457.544,6.377,873.987,188.447 +13,7.1977,6.045,576,1.5607,1,395.067,1.7012,428.382,1.5214 +27,3.2795,7.4912,1.691,3.5136,1,391.123,2.5317,932.515,4.574 +25,1.0898,5.6517,7.546,2.4728,1,359.857,3.984,217.079,7.4763 +22,7.511,4.4789,6.889,1.6165,1,133.601,2.3052,937.579,154.789 +18,5.8209,3.0927,1.332,2.0648,1,423.705,4.292,561.112,12.289 +11,8.5251,5.024,5.021,4.4768,1,7.1442,569,172.245,2.006 +18,8.3925,3.3868,7.808,1.7976,1,175.009,2.7508,738.716,3.6387 +16,8.5899,7.5701,2.188,1.437,1,173.237,292,30.292,180.528 +19,5.3659,5.4389,8.713,1.759,1,280.066,5.914,228.253,7.1439 +23,4.2027,8.7685,53,1.0731,0,231.722,6.467,180.355,2.8125 +15,8.124,5.4354,7.822,2.7232,1,229.904,8.456,3.9111,1.2207 +21,5.0616,2.3826,6.158,7.372,1,276.786,1.0902,767.007,204.106 +24,2.651,8.5109,3.152,4.0872,1,207.709,3.095,491.639,11.32 +17,8.6948,5.5722,7.209,1.1279,1,12.4992,1.4054,978.945,12.0883 +13,8.943,2.0684,7.824,2.9903,1,33.206,1.1981,444.879,1.4722 +27,5.1968,6.2351,9.339,6.251,1,395.317,1.8748,844.917,11.7259 +26,1.6813,3.5772,3.678,4.8923,1,239.498,2.6026,968.414,154.986 +23,4.4904,8.4441,686,2.2729,0,324.742,8.932,3.2237,2.9472 +16,8.2318,4.533,6.026,4.1109,0,267.682,1.6395,11.4266,216.604 +15,9.116,7.2644,5.252,3.8432,1,2.9498,1.1141,354.385,188.004 +19,2.8313,9.554,8.904,3.5685,0,211.542,1.208,871.415,192.452 +22,1.6028,3.9602,32,4.1368,0,4.926,2.4632,839.571,12.8768 +20,8.8962,9.8324,2.821,5.023,0,33.094,1.9026,373.068,8.0141 +20,4.5046,8.0846,5.383,3.3925,1,254.081,65,207.905,153.709 +15,5.8758,1.5994,1.783,1.3291,1,6.3416,7.487,804.298,5.4089 +10,9.7126,2.7776,9.079,3.9294,0,271.096,927,600.945,3.2852 +27,1.5991,3.2982,6.476,4.7843,1,449.213,2.4346,4.1284,12.9199 +22,6.8349,6.5037,4.779,4.5074,1,170.245,2.2821,806.174,11.487 +30,1.6669,7.5699,8.147,5.748,1,491.184,1.1884,957.391,3.6068 +24,4.3792,7.4953,4.509,1.8478,1,47.969,472,5.1666,12.7297 +15,8.2343,5.0987,5.587,1.8216,1,392.655,1.1581,293.015,131.152 +28,4.9013,8.1082,28,6.115,1,40.69,2.4304,82.127,209.164 +13,9.9746,4.3708,3.657,4.906,0,205.273,1.3572,588.803,18.221 +16,6.0315,1.2388,1.388,1.9245,1,201.271,3.476,989.463,5.2216 +22,3.8905,5.6444,6.897,4.9604,1,477.199,1.156,916.348,196.304 +28,2.981,9.523,479,2.8447,1,183.098,1,186.489,232.563 +21,4.1547,7.9299,3.018,3.1089,1,4.8436,4.451,677.288,171.989 +24,4.3528,5.787,4.678,2.3551,1,7.6351,2.2351,656.754,188.881 +24,1.6184,6.4681,2.096,3.3117,1,355.199,8.363,11.9749,6.3943 +27,4.3262,9.3056,9.251,4.7833,1,19.149,2.6324,9.8624,238.057 +18,5.1781,4.2834,54,2.9435,1,9.9671,1.852,57.375,4.2335 +19,7.5046,3.3139,8.654,3.252,1,406.893,1.181,408.943,180.206 +24,6.9106,9.7724,5.114,2.4645,0,244.337,1.8302,549.991,9.4853 +18,7.3789,8.6344,6.189,4.9638,1,283.821,8.855,24.644,8.5649 +21,1.0753,3.2304,3.026,1.937,1,7.6975,424,561.096,6.8438 +25,2.959,4.6378,9.667,2.9694,0,9.6377,2.8925,389.561,10.5855 +21,6.9552,4.1508,2.819,5.332,1,6.2928,1.6895,888.662,18.981 +16,5.3559,1.491,5.889,7.059,0,257.271,22,313.026,225.833 +32,1.0478,9.5782,9.934,4.3734,1,387.829,9.309,872.126,9.9897 +17,8.2405,4.0431,8.811,1.5017,1,366.143,4.786,396.092,156.401 +18,7.9553,8.7533,5.363,1.5273,0,130.615,7.745,582.384,189.174 +14,5.9358,1.8936,9.904,1.9361,0,425.775,1.671,293.513,2.3937 +24,1.5982,5.4787,7.014,4.8324,1,5.283,7.353,810.998,23.053 +14,7.8986,2.396,2.087,422,1,5.7025,2.049,84.521,5.0792 +25,6.2534,7.6422,4.056,4.0938,1,424.652,2.4618,81.096,219.619 +19,8.0376,5.8091,3.345,1.7078,1,12.221,1.0422,643.438,236.785 +15,7.7657,6.2559,344,4.2473,0,354.058,1.5674,311.736,2.4097 +7,8.227,5.172,7.605,4.9588,0,454,1.254,640.123,214.259 +18,5.6621,2.1104,5.843,1.7433,1,4.6801,2.724,959.917,153.818 +25,2.2629,7.433,381,6.468,1,304.644,1.6558,651.902,196.302 +19,7.0404,2.8891,8.774,7.219,1,9.1208,2.5217,956.829,2.6183 +16,6.5843,6.2744,2.968,3.7937,1,1.4107,264,311.535,200.223 +20,7.6803,5.6619,9.971,7.246,0,233.473,1.2556,847.541,150.248 +31,2.5289,6.1215,9.542,1.3021,1,16.526,2.9113,721.284,12.2548 +28,2.7548,5.4925,9.405,1.022,0,401.128,2.2164,821.012,134.408 +13,9.0137,2.7303,8.111,1.7784,0,409.414,5.928,713.655,178.672 +13,7.7498,2.4451,2.206,3.718,0,307.212,8.555,485.559,7.1433 +13,9.1741,1.3706,5.326,4.2837,0,146.517,2.8437,689.709,226.435 +14,7.8284,8.4907,2.243,4.3007,0,230.813,663,932.769,7.3833 +20,6.3744,6.1648,2.597,2.0647,1,351.128,1.3227,423.366,210.499 +16,6.8872,1.8651,611,3.0604,1,3.4654,1.0668,952.228,2.907 +10,9.2022,1.7721,408,3.2098,0,166.249,1.4701,5.8906,219.955 +24,6.2093,8.7304,9.695,3.7463,1,411.185,7.097,2.4031,204.379 +22,6.6915,7.4273,9.187,2.6035,1,203.014,2.1951,498.865,2.9803 +24,2.4083,6.594,3.808,2.5517,0,312.334,7.038,850.028,176.862 +18,5.2653,4.0686,5.154,3.1565,1,4.8167,1.8063,255.357,8.9788 +13,7.4476,2.6198,4.661,3.5152,0,388.523,1.0733,69.649,11.5147 +26,3.4385,9.7945,8.822,1.7335,0,5.0233,7.544,551.436,1.6462 +29,2.8203,7.9724,6.886,1.6519,1,430.763,2.085,297.887,5.1018 +24,3.8244,3.0178,2.781,1.3486,0,5.3301,2.8957,292.935,228.875 +30,3.1735,8.4756,4.468,2.7442,1,445.446,2.6081,8.2543,10.0308 +22,2.9342,7.5893,429,1.8008,0,181.885,2.605,540.852,6.247 +22,4.8237,2.9708,9.593,2.7016,1,312.265,1.3632,45.564,12.3619 +17,9.1705,4.2655,1.753,2.0299,1,423.275,2.0843,296.529,238.728 +13,5.5635,1.8595,896,4.1837,0,5.121,1.6878,970.728,7.9877 +24,2.6913,1.1105,8.806,3.657,1,132.847,2.1791,82.029,3.3891 +32,1.6927,7.2276,8.967,2.8611,1,454.169,2.9254,529.701,154.453 +16,7.2654,2.6751,8.717,2.8781,1,194.088,1.0268,526.487,220.758 +25,4.4452,8.2006,511,1.9186,1,353.188,2.3126,201.676,206.196 +19,8.3965,9.9561,6.597,2.1051,1,7.2006,2.822,652.636,157.677 +17,6.9356,7.662,5.634,4.2007,1,339.186,2.6092,954.099,4.4195 +16,8.1662,4.7304,694,1.4034,0,3.658,2.3353,899.307,188.246 +23,3.4475,8.0206,5.958,4.357,0,358.663,1.5629,9.3923,197.573 +20,7.2312,7.8895,136,4.4817,0,161.902,2.4631,6.2566,203.891 +27,3.3766,7.6,325,3.2531,1,232.924,1.9999,961.633,9.6946 +12,9.4516,3.4899,9.323,3.8643,1,8.313,1.6567,207.907,9.8126 +18,6.7274,4.5385,304,3.0647,0,313.925,2.838,55.491,3.7238 +21,3.9206,5.9497,9.398,2.6263,0,168.784,3.908,8.3963,185.445 +26,3.4256,9.7394,2.501,4.8334,0,191.688,2.9789,844.865,176.934 +20,2.7183,3.2755,3.146,1.4133,0,326.096,4.633,12.6686,2.394 +20,7.2518,9.2314,6.284,7.708,1,8.9431,1.4405,64.732,4.832 +20,2.9684,2.6936,7.616,1.4374,0,426.004,6.942,6.6062,228.413 +19,6.3577,9.8907,5.014,3.0731,0,369.643,8.157,165.105,4.144 +28,3.3817,6.7026,8.821,9.259,1,288.865,1.8955,51.702,150.864 +14,6.9577,4.6351,402,4.5441,1,6.4167,1.041,5.5228,10.8874 +24,8.3345,6.1339,9.222,2.0551,1,343.555,2.8222,203.657,186.579 +9,8.2022,2.7253,1.963,4.2498,1,905,8.389,144.811,2.1055 +15,7.8477,2.7417,8.842,1.2462,0,402.198,8.176,5.0169,16.377 +24,2.6895,1.1355,4.009,1.5658,1,151.899,2.5907,971.287,147.586 +27,1.7955,1.1405,8.328,2.961,0,5.8606,2.2945,455.665,204.863 +17,7.2905,3.4767,6.717,1.2888,1,8.2244,2.0152,860.346,12.4451 +24,4.3151,7.6286,1.759,2.4516,1,481.567,4.391,364.641,17.479 +25,4.8911,6.0797,918,4.7307,1,386.915,2.3089,5.2166,10.502 +23,1.2803,1.0258,2.455,1.9445,1,11.8936,1.0823,698.697,236.155 +30,3.3362,8.5224,2.441,3.1987,1,481.733,2.9817,4.8367,134.259 +29,1.3031,6.0137,8.142,2.1386,0,7.1959,2.0137,557.254,180.849 +20,8.9127,9.6086,1.059,234,1,366.764,2.5077,147.721,2.2304 +28,3.1906,6.7019,222,2.5177,1,32.837,2.2014,674.109,11.1061 +17,6.016,1.7517,5.037,3.296,0,410.738,1.7827,893.777,1.5465 +25,1.3508,4.7378,8.305,4.4185,1,190.849,2.149,956.206,2.9211 +20,7.2016,6.485,1.475,3.7652,1,200.918,1.7925,532.499,12.1472 +15,3.9072,2.826,5.477,1.8933,0,312.284,1.536,537.377,8.4553 +10,9.0813,1.491,7.112,3.2011,1,199.103,1.0366,4.7896,11.0358 +12,8.9931,1.294,8.606,5.601,1,2.0675,9.493,772.177,11.9075 +22,3.9276,2.5166,9.356,3.5128,0,364.854,2.1419,956.646,3.834 +13,9.1086,4.2955,7.846,4.1137,1,320.473,1.7285,443.852,8.78 +16,9.9654,4.8744,6.528,4.1087,1,211.856,1.8315,795.755,206.543 +18,8.4287,1.3803,4.336,1.4214,1,151.415,2.5409,799.482,205.587 +17,8.6038,6.7339,1.121,1.3187,1,160.363,1.5759,787.844,11.7748 +23,3.2411,5.9614,7.097,2.607,1,370.514,6.548,761.094,179.795 +14,6.1903,2.9446,9.927,4.8389,0,36.458,373,222.946,180.853 +18,1.6053,1.366,7.368,4.6026,0,409.459,4.785,753.911,1.0586 +18,1.8543,7.765,167,1.7982,0,38.109,917,152.951,146.614 +13,9.99,3.9169,4.963,3.8991,1,378.972,7.112,715.378,193.086 +20,3.9398,1.5397,6.146,4.6066,1,12.5887,1.905,1.3503,142.553 +16,7.7337,3.7682,6.897,1.3046,1,5.0806,4.543,919.637,12.9973 +17,8.26,6.2818,7.197,4.1515,1,380.876,2.458,829.115,12.7492 +15,8.7222,5.4724,5.581,1.3395,0,4.9309,2.9126,686.134,12.1908 +16,9.9787,2.3118,2.234,1.7164,1,491.056,2.9907,10.3523,186.794 +27,3.1735,3.4382,9.422,9.941,1,437.545,1.9111,826.739,154.184 +27,1.3632,6.1403,6.967,2.5354,1,266.731,3.257,876.422,5.1721 +25,4.7007,8.6086,2.368,4.2166,1,176.092,2.4646,691.108,10.4004 +29,2.1707,7.5321,3.223,2.6403,1,263.422,1.6176,976.128,12.687 +28,1.2018,5.534,9.219,6.172,1,367.151,5.462,10.1951,10.0548 +23,4.2438,3.6229,8.875,1.2589,1,378.165,1.7271,711.563,5.702 +12,8.0536,3.6505,4.051,2.8143,1,3.6833,1.181,529.548,2.9938 +23,6.0956,8.7942,383,2.9159,0,402.427,2.9174,15.415,2.8155 +21,3.815,3.924,485,2.8845,1,320.749,2.4779,66.183,7.1109 +19,6.8891,9.8798,2.839,385,0,2.029,7.823,801.533,9.6637 +24,3.0882,6.6438,6.291,3.7685,0,156.581,1.2567,173.101,163.891 +26,1.1294,6.8114,5.842,4.5471,0,255.321,1.1859,795.556,23.638 +16,7.8792,0.38,6.338,2.5526,0,9.4226,2.5845,10.2041,215.365 +19,6.6137,6.0553,7.173,3.5941,1,7.762,1.0639,595.486,195.287 +12,7.8607,4.8478,19,4.5701,1,7.141,1.439,800.485,195.297 +23,1.3504,1.0578,1.051,3.2131,1,455.775,6.441,154.497,143.056 +9,8.5341,2.7792,3.595,3.3716,0,2.8054,6.467,575.804,6.0662 +22,6.5757,8.9031,1.549,3.607,0,183.006,2.8477,430.629,11.3266 +21,6.0706,5.4999,753,1.3025,1,10.2886,2.7722,611.203,3.4213 +19,6.6215,4.1342,641,2.9134,1,370.517,9.018,429.979,135.943 +8,8.7799,7.268,8.153,4.2109,1,353.592,83,258.403,552 +23,6.2824,7.1412,7.526,1.4808,1,403.111,1.551,261.273,4.5472 +25,6.2286,7.0285,817,4.4859,1,308.404,2.3917,866.053,170.951 +12,9.9161,6.1404,6.659,3.1019,1,295.827,8.058,16.489,6.6454 +18,7.8106,5.1026,7.353,2.1159,1,203.555,1.3171,131.883,10.0791 +21,4.9806,4.3378,2.718,3.1159,1,318.179,5.184,10.6108,199.695 +17,7.3666,5.9327,993,2.1993,1,5.7603,9.822,8.3413,1.0694 +21,4.5031,2.334,1.832,4.1902,1,342.256,2.2766,2.4347,5.456 +24,3.0599,9.4126,2.145,2.4116,1,5.1949,1.2848,168.802,5.4957 +18,6.3717,5.8879,2.889,4.5061,0,43.087,1.3418,20.08,164.266 +16,9.3536,3.1119,9.753,2.549,1,252.841,2.3687,277.027,5.6669 +17,9.3623,4.4968,9.883,3.3018,1,265.178,2.2889,132.799,207.288 +19,4.0771,8.0568,7.949,4.9887,0,292.429,5.615,10.3214,8.4444 +21,5.7491,1.6162,6.291,7.348,1,388.026,1.2458,546.062,6.8043 +25,2.9047,2.9284,5.201,3.6836,1,239.235,2.5466,72.15,5.5899 +18,9.9607,6.7951,9.706,6.944,1,213.794,1.3702,633.885,137.753 +14,9.8301,3.1549,6.956,4.1943,1,144.167,1.9853,561.139,205.515 +20,6.8456,7.925,9.447,2.9823,1,6.402,9.179,446.158,9.7455 +9,8.2397,1.3045,3.166,4.6908,1,9.5171,1.787,63.764,6.0604 +17,7.4359,7.6269,3.338,4.3298,1,264,4.947,902.848,10.1008 +18,6.3384,6.835,8.547,3.744,0,434.711,1.2052,631.144,21.715 +23,1.4801,1.259,1.499,6.865,1,382.479,1.0604,7.0252,8.0289 +27,5.0929,8.9822,9.459,3.1959,1,10.9341,2.6869,574.715,157.379 +17,7.0731,5.8134,5.075,2.5916,1,1.195,1.6369,528.972,7.9137 +18,7.0978,3.5183,9.264,8.428,0,246.058,1.8815,457.503,161.942 +24,4.3581,2.3259,3.368,6.468,1,206.287,2.066,573.107,211.443 +17,9.4752,6.1689,716,2.82,1,388.003,1.5949,675.891,143.654 +29,2.5062,05.09,4.829,2.446,1,201.448,2.3089,4.6887,227.386 +26,5.5032,9.916,6.268,4.3687,0,432.056,2.3493,485.399,144.364 +20,7.218,9.8322,5.044,4.0354,0,4.7919,1.0542,819.056,23.397 +20,7.2742,6.3502,9.671,3.9268,1,182.929,2.544,535.469,173.695 +25,6.8378,4.4287,6.921,0.08,1,46.697,2.9591,7.7179,156.669 +25,3.4776,4.9114,2.513,2.382,1,5.865,1.9279,777.319,19.916 +29,2.4059,6.8248,9.097,2.7492,1,195.395,2.1267,941.918,2.662 +14,6.7235,1.0157,294,4.9721,1,12.9852,2.2701,853.326,6.174 +18,6.3937,3.2835,3.716,1.7116,1,26.593,1.8389,368.943,5.1862 +21,2.6142,7.527,1.021,1.7219,1,139.383,1.4127,539.476,2.6616 +23,7.3463,7.336,0.9,6.714,1,434.954,2.954,595.399,225.069 +18,5.0965,1.9584,2.861,3.3717,0,468.569,2.183,718.641,3.1441 +19,7.1998,4.8525,2.589,3.2334,0,424.567,2.5375,669.408,6.3081 +20,8.5363,7.8477,9.203,5.066,1,199.284,1.319,207.081,8.0439 +29,2.5276,4.855,8.055,2.3371,1,494.967,2.7143,844.608,149.911 +26,1.1723,3.3548,1.411,3.3354,1,367.518,2.1965,850.691,184.191 +14,8.0119,8.235,7.693,2.4676,1,177.804,2.2384,410.308,145.122 +18,6.4873,5.503,913,3.3718,1,4.6846,2.608,139.606,179.749 +15,7.2968,2.7127,785,4.0814,1,333.523,1.8524,612.481,9.651 +17,8.5434,6.1493,8.252,3.4291,1,364.284,1.1957,363.687,238.987 +20,8.2253,9.7719,5.474,3.0806,1,6.123,2.007,743.977,4.0822 +12,9.6483,1.1131,6.692,4.268,1,274.868,1.7046,322.501,9.5942 +14,5.8234,2.1213,4.929,4.5029,0,493.544,3.336,270.369,199.724 +19,5.3965,4.7309,6.978,1.9444,1,163.121,1.59,869.033,5.9222 +28,4.617,9.6861,341,8.662,1,150.948,1.3538,619.662,180.202 +30,2.3832,7.7181,7.627,4.0893,1,451.651,2.3293,9.5132,8.7427 +21,6.1535,8.9823,333,1.0688,1,5.8708,1.5079,692.469,4.2623 +22,3.4931,3.3371,4.553,4.6448,1,466.764,1.4435,755.206,9.6802 +22,9.2918,9.9204,151,1.144,1,389.744,2.1585,242.852,188.349 +15,6.2487,1.0283,8.236,4.6064,0,19.542,2.1958,96.798,2.6869 +17,6.3356,5.297,3.137,2.9459,0,4.1774,2.9756,37.913,12.3864 +24,4.1943,8.556,4.541,3.8737,1,9.587,1.0559,941.168,177.926 +32,1.4679,9.2726,4.288,1.9925,1,187.916,2.0651,300.681,180.377 +22,1.2857,9.059,7.725,4.9586,1,352.677,5.018,613.104,9.3501 +21,4.81,1.1343,4.811,1.1378,1,243.765,2.4137,522.394,11.1945 +27,1.7611,3.317,789,1.3217,1,369.326,2.3585,992.237,205.624 +17,6.4616,1.0451,735,2.572,0,335.285,2.1775,414.272,5.2011 +10,8.9288,2.0942,1.916,4.7024,1,286.454,3.572,187.498,238.222 +23,8.9462,9.7008,5.515,2.2801,0,48.375,2.9626,834.877,10.0617 +21,6.9314,6.6786,9.471,3.3743,1,364.192,2.8278,5.1624,6.6108 +24,2.9011,7.7855,748,3.4372,0,457.307,1.1103,886.106,624 +14,8.767,7.7614,431,4.3725,1,12.108,1.7319,11.9484,3.2006 +16,8.9748,5.3507,1.566,3.3246,1,35.682,2.6667,576.292,181.562 +26,2.7699,7.9749,6.412,2.8101,0,298.901,1.4839,716.281,155.815 +18,7.6368,5.9581,399,3.5516,1,462.148,1.7975,34.296,5.9162 +26,3.5787,3.1455,8.256,3.7549,1,255.227,1.8097,846.294,222.481 +18,8.2238,5.6111,719,9.296,1,139.821,1.9478,597.768,200.565 +15,9.9751,5.3351,1.964,5.483,1,192.419,1.7265,401.204,6.4626 +29,1.2702,8.2345,0.3,3.742,1,10.9415,1.2178,33.211,7.9221 +17,9.0763,9.8173,6.267,1.8703,1,10.9986,1.6184,12.0888,4.4341 +21,6.6037,4.1104,6.852,2.49,1,235.211,2.6143,64.396,154.214 +19,9.7604,7.6339,1.242,3.0782,1,446.284,2.5923,370.403,168.273 +18,5.1851,9.976,9.438,4.7902,1,9.5935,2.3176,327.355,9.5011 +18,8.6265,7.7683,341,1.6539,0,143.935,1.2423,950.449,176.918 +28,1.5615,3.7142,7.132,3.8044,0,426.494,2.3579,28.007,237.976 +18,4.0175,3.939,5.242,2.6568,1,169.628,1.1636,877.799,146.868 +30,1.6031,3.6325,2.228,1.1004,1,481.207,1.9922,975.147,155.828 +13,9.7781,6.1064,8.462,3.0765,0,13.446,1.7023,824.513,8.9722 +9,8.3528,1.1925,8.182,4.8359,1,221.072,9.001,2.9322,2.541 +21,8.6729,9.2403,3.961,6.215,0,4.7805,1.3586,869.938,228.941 +14,9.4417,7.767,5.886,2.5364,1,496.088,2.4911,221.281,185.363 +33,1.7659,9.3001,2.578,258,0,445.071,2.7383,359.745,166.936 +22,4.4704,7.0714,6.899,1.6061,0,408.781,6.159,991.667,7.155 +23,1.6393,3.2971,309,3.103,1,7.8671,1.3686,410.928,182.163 +25,2.8971,3.9075,8.441,4.2053,1,484.679,1.3005,658.287,16.082 +23,3.0643,7.4081,2.174,3.6516,0,464.576,1.467,317.612,136.537 +22,5.222,6.0147,148,2.3143,1,217.836,2.9299,375.734,149.664 +24,3.4171,6.7164,2.685,4.5461,1,340.819,1.5562,601.649,220.408 +28,1.9088,3.8916,1.911,1.5136,1,496.229,2.4902,948.803,1.606 +24,2.5074,4.8781,5.083,3.7699,1,204.873,1.9918,289.631,3.7673 +27,2.3255,9.8987,2.037,2.37,1,5.6523,3.216,254.892,214.742 +9,9.7577,2.1392,7.632,4.4932,0,43.389,2.087,3.6012,1.971 +15,7.8336,4.1786,2.414,3.9872,0,238.243,1.9412,210.088,216.873 +13,9.7099,2.9182,707,4.5073,1,493.485,2.2754,269.788,7.112 +20,4.9577,7.6511,5.785,1.0712,0,275.446,2.233,7.2247,187.041 +25,3.5053,7.6401,9.862,3.3408,1,1.4739,7.239,567.973,213.822 +15,8.1846,2.9245,9.999,3.6923,0,245.863,2.3079,135.497,147.007 +20,3.9363,8.139,8.695,3.7121,1,359.031,1.1118,515.966,153.946 +19,3.6945,1.143,0.76,2.52,0,1.3015,2.7325,197.092,1.2135 +23,3.0926,4.2745,3.865,563,1,206.724,1.553,936.368,5.0614 +25,2.1671,4.1034,7.533,1.3072,1,7.778,31,314.027,215.873 +29,3.3082,9.8839,9.567,1.6165,1,321.548,2.0965,10.1999,197.692 +19,4.1979,4.698,234,4.2602,1,478.673,1.5404,837.793,1.4291 +15,7.0659,2.5642,5.379,4.2044,1,312.292,9.513,408.016,195.116 +29,1.5631,8.9123,218,5.234,1,347.439,613,82.192,10.1636 +21,2.8946,4.9107,5.579,4.7492,1,198.281,5.962,319.365,134.573 +15,8.2812,5.9918,4.664,9.123,1,28.157,4.848,505.037,2.6017 +23,2.3223,9.567,5.758,2.0718,1,271.929,1.7486,450.904,9.5675 +24,4.0838,3.8292,551,1.0758,0,379.803,2.3087,562.327,10.4379 +16,8.7819,9.4422,9.601,4.3017,0,428.456,7.038,407.635,160.677 +26,2.3943,5.8951,5.522,3.747,1,331.443,2.0932,501.834,157.808 +30,1.7446,3.445,8.462,1.7676,1,489.904,2.6995,682.534,13.173 +21,5.3608,6.2567,3.198,3.4094,0,414.144,1.8648,420.536,7.547 +27,3.7218,9.1041,4.381,9.218,0,6.2323,2.3269,687.561,3.876 +15,6.0707,2.7399,4.704,1.9115,0,253.738,6.127,717.159,3.8465 +18,8.2342,5.0512,2.787,1.8855,1,451.618,2.248,751.437,213.056 +31,2.2343,9.5869,3.798,1.1897,0,471.967,1.0962,476.227,21.641 +16,6.2263,1.724,5.985,4.3816,0,190.103,2.127,1.3752,19.356 +25,5.5496,7.1966,5.802,3.3942,1,362.852,2.0583,755.976,4.1971 +30,2.2967,6.1448,6.364,1.3997,1,205.273,2.8652,909.994,201.636 +20,6.616,6.7968,3.518,1.2106,1,6.183,1.8899,656.092,4.5023 +26,3.4628,3.5122,3.158,898,1,442.306,1.2339,529.302,133.111 +22,5.3905,3.1388,6.116,1.7329,1,465.977,2.3914,563.995,17.613 +23,1.7405,6.8421,1.329,2.6339,1,252.375,4.592,644.404,1.2375 +20,5.1363,2.1554,253,1.3886,0,9.154,2.4391,998.539,143.503 +20,3.7582,4.1965,421,3.5023,1,408.018,1.0978,7.1435,6.0272 +11,8.4014,1.8817,726,2.0587,1,23.848,462,3.0971,11.9486 +17,1.5128,83,2.434,1.5816,0,3.7514,4.864,964.526,9.2137 +23,4.7675,9.7006,195,4.6953,0,9.4696,2.9508,44.607,164.779 +20,5.1259,4.317,2.454,1.314,0,7.606,1.8697,61.623,11.7406 +18,7.5251,9.6935,655,1.9913,0,343.139,5.228,755.907,7.2391 +15,6.1686,1.4032,611,1.9115,0,149.705,8.057,744.675,218.486 +19,7.1949,5.8737,4.367,1.206,0,6.3845,1.1162,650.722,230.173 +13,7.9934,2.1997,9.131,1.0874,0,458.824,1.677,477.173,192.458 +19,8.7598,7.9007,7.913,1.5119,1,478.266,3.252,580.317,139.378 +25,3.8249,7.837,3.054,4.3212,0,6.9288,2.2853,73.235,212.256 +19,5.8422,1.1261,9.248,3.8354,1,11.5118,2.3606,852.306,144.402 +21,8.561,9.1206,3.296,3.405,1,29.606,2.9647,136.031,3.5719 +5,9.9051,1.9463,725,2.2855,1,7.5254,2.028,285.179,4.183 +22,9.1957,6.1298,9.941,2.5388,1,7.9296,2.6676,403.619,174.219 +30,4.3432,9.8563,0.87,1.3357,1,168.288,9.516,668.843,180.597 +32,2.7565,8.824,4.659,3.716,1,474.585,9.836,401.715,222.198 +24,5.4045,9.5656,6.664,1.6552,0,481.221,3.818,246.496,197.817 +20,7.6748,3.426,6.712,2.4779,1,420.894,2.9589,4.2812,15.35 +21,5.4331,1.0558,1.945,2.866,1,347.856,2.943,844.083,4.5673 +22,5.3486,1.8835,0.2,4.412,0,360.337,2.5945,424.744,142.572 +15,8.5441,5.1949,4.696,1.3151,1,234.786,2.723,335.937,10.4324 +27,4.2526,7.9323,9.116,1.8354,1,265.077,2.5249,535.518,5.5706 +14,8.7382,1.5015,0.01,1.9666,1,317.226,1.9038,131.691,191.791 +24,4.6612,6.5973,7.825,5.894,1,365.643,3.863,403.385,3.5893 +18,3.9541,3.2358,575,1.1291,0,4.8423,7.853,754.268,151.281 +21,5.0859,3.412,4.782,1.3082,0,11.2444,2.0677,738.756,146.581 +23,7.862,6.6192,6.379,3.382,0,481.472,2.4103,774.177,7.2867 +29,2.134,4.67,6.868,1.6305,1,167.571,2.5443,472.743,10.3017 +28,2.7678,8.1203,585,3.611,1,134.237,1.6315,375.225,2.7977 +9,9.563,1.5592,4.186,3.5173,1,210.956,1.6039,833.126,6.128 +26,2.5794,7.8995,5.838,1.9302,1,14.546,2.0526,181.558,3.125 +14,6.1095,6.424,66,1.6338,0,4.559,2.3332,727.886,4.1837 +15,6.2138,1.9405,1.351,6.326,0,10.3981,5.118,889.068,208.074 +25,5.4066,6.5615,6.636,1.1325,1,32.008,2.2195,293.291,12.5426 +20,6.8027,8.5493,5.216,1.1635,1,11.1591,1.0251,205.817,2.8108 +21,3.0684,2.5268,1.618,4.926,1,323.834,1.1513,517.399,217.319 +12,5.974,3.2719,5.352,4.1767,0,5.004,2.331,224.227,136.533 +23,4.3496,5.3712,9.127,763,1,2.0938,1.7653,872.061,6.693 +13,6.955,2.1157,156,3.0842,1,430.784,2.803,251.973,183.055 +33,2.271,8.1116,6.426,1.2796,0,380.013,2.7394,320.826,11.3624 +25,6.1379,7.7364,737,5.219,1,333.014,1.8629,889.535,12.7887 +22,2.6674,1.4529,64,3.528,1,1.545,2.9708,213.565,147.174 +20,3.5078,4.6383,1.507,658,1,11.9677,737,885.936,2.2668 +29,2.9684,7.7483,4.229,2.2187,1,406.157,2.0388,217.705,227.458 +26,2.6455,3.3733,8.023,3.1608,1,7.2334,2.8933,912.688,6.1294 +17,8.4314,6.3311,2.818,2.7725,0,406.427,8.957,324.465,14.924 +17,3.5714,5.021,6.257,4.8881,1,292.117,289,253.772,205.335 +15,9.3441,6.0869,4.112,3.9287,0,370.184,1.9019,482.418,7.966 +11,9.7293,1.5265,2.343,3.871,1,322.254,1.0983,375.531,150.613 +22,6.1413,8.3058,5.142,1.778,1,208.495,8.192,209.732,237.331 +30,2.287,3.5545,7.975,42,0,145.989,2.9808,34.497,204.432 +23,4.3709,2.8155,8.325,3.6721,1,336.365,2.2623,716.097,187.028 +19,8.1796,8.4089,8.465,4.9987,0,403.456,1.4562,833.582,10.5432 +17,4.3065,5.014,3.386,2.0294,1,2.2366,0.15,822.554,10.8305 +22,1.7832,3.9661,7.935,4.9276,1,189.954,5.748,759.249,11.653 +17,6.0111,3.7,2.122,7.085,0,175.365,8.963,1.5381,165.704 +14,8.6061,2.848,7.384,1.4826,0,279.735,1.4616,432.338,3.4641 +22,8.1633,9.1175,9.484,8.536,1,5.6963,1.4917,177.282,206.647 +23,2.5761,7.5093,137,2.3759,1,46.671,742,8.2741,4.339 +16,7.0549,6.392,4.404,3.9849,1,274.255,2.8301,738.523,4.0798 +27,2.9845,7.1469,6.478,1.7033,1,461.876,1.6284,795.545,11.5635 +23,2.9639,5.273,7.018,4.5311,1,40.847,592,81.647,6.0508 +18,8.8666,9.1987,1.761,2.7242,1,9.5819,2.104,891.408,8.774 +16,3.247,3.1295,9.722,2.3271,0,6.617,2.141,594.148,7.982 +27,3.3692,5.7416,6.153,3.9352,1,430.625,2.1635,998.149,6.4552 +30,1.1959,5.1976,1.643,5.072,1,26.805,2.1045,488.885,9.1266 +15,8.836,4.8956,205,3.8688,1,9.871,2.9548,884.664,12.1269 +19,8.1334,4.5611,7.833,1.2148,1,467.113,1.0261,12.1811,11.4326 +16,6.646,2.0563,797,1.4041,1,236.514,433,157.434,194.861 +15,7.7524,7.5571,1.411,2.9973,1,150.468,2.756,594.446,7.3955 +20,2.3684,4.5134,5.748,4.5097,1,258.299,2.152,132.893,6.7659 +27,5.1249,9.5852,6.035,2.892,1,411.459,2.431,8.4548,12.1068 +20,4.161,2.6081,6.869,3.2447,1,5.5146,2.1556,204.104,1.1504 +28,1.844,6.8274,3.935,3.883,1,179.466,2.9277,789.661,2.6834 +25,5.3752,9.4072,7.739,1.2966,0,159.433,9.276,928.183,192.741 +19,9.2867,6.6346,9.744,4.1362,1,419.825,2.4093,340.133,11.849 +28,1.3605,8.7127,2.711,2.0898,1,389.234,279,975.008,1.5968 +32,3.6231,8.2748,703,8.783,1,200.052,2.7116,811.455,10.5692 +22,2.8679,3.6012,9.285,1.7506,1,332.244,1.555,233.847,9.5583 +28,3.1433,6.2012,6.863,1.2307,0,197.223,2.3637,590.254,5.9072 +13,9.1759,1.5626,6.811,1.1436,1,285.657,9.221,981.975,8.9305 +22,5.2126,5.3553,2.238,1.4128,1,495.608,5.436,850.298,4.5205 +21,5.1967,2.3042,5.351,9.047,1,267.787,2.1135,369.725,10.7774 +20,7.8452,7.4374,5.625,3.3385,1,494.287,2.6876,31.326,9.8047 +28,2.3904,5.2806,7.001,2.9,0,37.36,2.2924,821.062,14.58 +19,5.3854,4.1123,9.968,3.2422,1,6.0361,9.393,553.674,226.105 +18,4.8699,2.688,336,1.7186,1,397.983,1.0607,171.808,4.4511 +19,6.3722,9.987,652,3.8487,1,8.0643,5.679,334.554,10.0186 +13,9.996,7.171,78,648,1,266.164,2.4722,665.195,134.933 +10,7.925,4.356,743,2.8557,0,306.623,3.213,161.627,131.278 +23,4.5808,2.1726,1.364,1.3773,0,446.115,2.7096,701.729,158.722 +19,8.448,9.7107,6.225,2.638,1,10.5212,1.8034,712.829,6.4303 +30,2.5364,9.7924,3.247,1.6182,0,437.971,1.7666,278.039,152.292 +29,1.2742,6.5493,4.573,3.9526,1,467.247,2.5135,40.405,4.8281 +24,2.84,8.8011,2.157,4.4564,1,4.4744,2.2026,936.096,3.0109 +20,4.0637,2.1396,8.661,3.7129,1,442.643,9.127,751.684,199.595 +23,5.5952,9.7204,5.862,8.779,1,12.959,1.0485,789.933,11.3698 +15,6.5362,1.4278,9.446,1.3743,1,04.05,5.192,521.103,9.5347 +13,9.1955,1.0113,5.746,4.5968,1,479.287,1.3922,221.009,222.844 +16,5.5887,1.1221,1.239,2.1861,1,196.102,3.305,595.343,170.342 +21,5.5115,5.7313,1.709,4.7059,0,311.492,1.9591,774.383,162.511 +27,1.4522,7.8097,9.891,1.9623,0,276.437,5.077,1.3844,4.6622 +26,1.3142,3.6667,7.256,4.7589,1,10.6591,2.5918,12.2638,5.0222 +24,5.9604,9.779,493,4.6287,1,334.783,2.1014,479.551,11.5944 +21,4.9436,4.3442,7.038,3.3026,0,2.3057,2.6745,442.824,156.553 +12,8.5526,1.5045,4.122,441,1,10.1547,2.611,98.246,9.4865 +28,2.4461,4.6597,3.072,2.2017,1,472.332,2.3955,10.1231,1.5404 +31,1.2247,6.7904,1.541,4.5562,1,476.754,2.6424,330.449,163.927 +21,5.0413,8.3223,8.399,4.4256,0,241.328,1.337,816.959,18.57 +27,3.1373,4.5877,638,9.369,0,8.4536,2.9972,616.303,226.633 +26,1.4465,5.9361,2.898,1.9959,1,21.081,9.019,565.998,9.8104 +12,7.5214,2.6734,3.064,4.1775,0,438.535,6.352,743.789,6.1932 +24,2.1943,6.4592,1.609,2.8894,1,3.5137,1.2447,4.9583,222.194 +19,6.4749,9.8597,5.082,4.2365,1,6.3934,259,948.017,171.633 +20,3.5294,4.905,117,4.1328,1,447.826,2.6577,199.351,1.5357 +25,2.5615,8.8653,301,4.5374,1,207.692,8.055,9.1019,139.207 +24,4.4178,5.6228,9.336,5.861,1,4.1729,1.5648,345.564,6.846 +13,8.213,2.521,3.105,7.261,0,6.9605,1.8707,705.333,5.4366 +29,4.5288,9.5489,3.605,414,0,441.224,2.3733,239.168,1.7029 +11,7.7569,4.8335,4.732,4.6763,1,245.052,7.506,5.9363,4.9174 +25,2.1294,3.3169,5.617,2.3758,1,8.1497,2.1514,6.6839,11.7581 +16,7.9549,1.815,8.087,3.216,1,44.703,353,264.011,7.1728 +24,3.1324,2.4445,1.903,1.6076,1,422.639,2.1127,143.921,2.1123 +25,7.0965,8.3285,8.717,1.7571,1,1.1512,2.7579,378.709,11.5694 +17,6.092,6.1441,7.575,4.0478,0,290.495,2.551,181.342,170.037 +15,9.3623,9.1325,7.227,3.6774,1,12.2168,3.501,350.871,1.275 +18,4.4859,2.3197,868,3.4469,0,266.568,1.6717,450.042,211.777 +21,1.5955,1.2114,216,1.093,1,139.634,1.392,745.114,156.737 +22,1.1724,609,594,4.5535,1,157.938,5.622,235.126,12.4666 +17,8.4417,5.0786,8.631,1.0778,1,300.926,5.706,480.313,9.5116 +25,5.7226,9.9831,5.844,3.1453,1,26.943,1.4437,817.202,9.4389 +19,7.9772,6.9497,2.132,3.091,1,197.596,7.455,986.513,8.0534 +21,3.1098,3.0839,905,4.076,0,5.3784,1.4266,561.733,2.7775 +26,4.1058,8.7686,6.996,479,1,484.712,1.5635,437.997,1.9018 +30,1.2709,7.8172,7.218,2.8296,1,8.7303,2.1919,635.218,7.4119 +13,9.6534,1.542,1.725,3.1469,1,316.559,2.838,491.433,160.095 +21,7.0108,8.1686,282,2.523,1,4.1372,1.5112,173.109,6.9215 +12,9.3988,3.1953,4.083,1.4524,0,344.156,1.065,464.853,194.944 +19,3.3895,1.4967,5.827,4.2573,1,4.742,7.761,979.309,9.127 +18,6.5032,2.2633,706,5.065,1,11.4754,1.904,644.024,151.486 +22,7.1065,4.6858,8.099,1.0827,1,323.493,2.8288,290.598,10.3659 +22,3.8579,4.2487,6.105,2.122,0,141.468,2.294,947.675,11.9478 +8,8.633,2.8889,1.109,4.2114,0,266.425,6.183,394.696,6.1939 +15,9.5245,1.7222,6.826,1.2742,1,6.2253,2.6799,39.622,12.3329 +18,8.9637,7.6223,9.842,4.9857,1,10.12,2.2065,620.433,2.6557 +20,7.6516,9.9011,9.056,1.7763,0,366.888,3.838,573.284,9.2824 +26,3.4972,7.7779,8.717,1.9322,1,1.7569,2.1384,297.532,10.7592 +19,3.5345,2.9594,3.022,6.105,1,5.59,8.681,47.241,168.959 +12,9.6702,2.4481,7.508,3.401,1,10.7478,1.4742,339.188,9.6053 +24,1.0926,2.1767,8.511,1.2173,1,1.1995,9.007,740.403,159.705 +10,7.4444,1.367,6.783,3.1443,1,4.7689,2.522,131.278,4.1908 +19,7.3562,5.5133,2.506,1.1158,0,140.696,2.3058,752.749,6.054 +22,6.6042,6.054,9.538,1.9394,1,4.6459,2.4861,169.555,12.1427 +13,9.911,7.055,4.508,4.2834,1,43.306,6.959,312.922,11.3729 +21,3.8069,6.8021,1.298,3.6945,1,3.3037,7.189,339.998,160.741 +24,4.0597,2.9233,1.098,773,1,430.492,1.2899,990.508,7.5251 +26,1.7105,3.3031,6.475,3.0385,0,41.143,2.4344,593.924,7.168 +16,4.9852,6.8151,4.377,3.1432,0,5.0381,2.318,779.779,173.657 +25,3.3494,3.4945,945,4.528,1,1.2596,2.4261,559.824,226.131 +21,4.0905,2.1262,7.404,2.329,0,2.4996,2.7682,983.326,9.4623 +18,8.5111,3.7434,7.993,1.3033,1,295.189,1.6845,185.608,146.671 +11,9.4194,2.7208,7.254,2.3357,1,335.177,1.812,608.825,130.725 +20,2.6716,8.831,2.023,3.8854,1,310.327,8.087,799.408,13.584 +26,4.3526,8.3014,6.898,7.913,1,270.738,3.342,632.271,20.817 +18,9.3577,8.5311,107,6.165,1,8.7342,7.779,897.967,176.721 +28,1.5563,2.1975,3.051,1.3466,1,420.477,2.4353,604.701,184.749 +18,1.8312,6.477,3.988,4.7614,1,163.777,167,828.174,2.1609 +28,2.4651,7.3883,8.352,3.7391,1,493.089,8.515,184.039,3.521 +18,6.3569,2.1153,3.904,973,0,192.429,1.5509,269.443,159.193 +26,2.3543,3.9344,113,2.005,1,131.502,2.6221,449.628,12.971 +12,9.7127,6.414,3.523,1.287,1,447.125,7.499,853.102,185.827 +20,5.0204,2.2627,4.989,3.1907,1,283.707,2.335,432.294,2.2338 +26,5.5137,7.929,949,2.2965,1,360.925,1.7507,631.184,135.957 +28,3.2199,8.044,941,4.8225,1,204.199,2.0291,401.853,11.6657 +24,5.2386,2.0708,1.809,1.0949,1,443.458,2.5853,807.663,205.125 +13,6.9572,3.3591,1.851,2.9393,1,458.863,792,208.285,4.4916 +13,7.7606,1.3424,1.634,3.5011,0,218.384,1.5892,597.832,8.3691 +13,7.7848,7.417,7.889,4.1278,0,12.0362,2.2416,582.111,3.6113 +23,6.201,9.9217,6,2.0349,0,323.836,2.6538,409.209,10.8416 +15,9.1392,6.5559,1.272,3.4346,1,477.292,3.981,708.077,211.537 +17,8.3567,5.421,538,1.516,1,311.223,1.0244,3.8192,16.088 +20,7.8134,7.655,2.476,2.1774,1,477.111,2.357,843.085,178.632 +27,1.5004,8.4008,924,4.4781,1,171.904,2.5048,354.486,2.2401 +31,1.0619,8.0671,3.599,4.7495,1,45.754,2.5721,795.092,10.8486 +20,2.912,1.654,2.742,3.5941,1,5.6283,1.4508,312.009,201.281 +13,6.9717,1.8681,5.111,1.8718,0,179.417,624,196.027,200.995 +20,4.7008,6.5491,9.792,4.1003,1,247.236,3.066,395.595,237.125 +24,4.6217,3.7576,1.243,1.293,1,326.555,1.8731,799.393,12.625 +19,8.9613,9.8248,3.727,5.137,0,14.707,2.9479,706.483,497 +21,9.0601,6.654,932,3.3069,1,46.212,2.5166,407.021,215.775 +25,9.1826,9.5655,8.769,1.4562,1,451.748,2.3938,93.849,229.487 +20,3.8249,2.0145,3.943,4.7569,1,399.668,1.2539,414.688,222.659 +24,7.2195,8.6396,699,2.1803,1,5.7181,2.9556,357.245,185.259 +21,3.4447,3.2135,879,2.1468,1,3.9145,2.4749,153.272,5.086 +27,2.7155,9.8956,7.125,3.3904,1,249.066,1.007,7.9576,3.3374 +22,2.6617,1.5769,9.729,3.8378,0,382.672,2.2455,356.403,168.213 +20,4.079,5.1634,5.375,2.3778,1,6.1618,1.2976,10.1082,3.3702 +28,4.8696,7.9284,4.985,01.07,1,320.719,1.9814,468.009,228.796 +18,8.4785,4.3264,1.873,3.8665,1,263.928,2.9102,861.409,10.6999 +22,2.079,4.6808,6.338,1.6018,0,362.995,7.394,481.355,7.396 +22,7.6143,9.8636,5.904,8.756,1,217.688,2.385,485.775,3.6142 +19,5.7831,4.2531,6.519,3.1582,1,346.648,1.7711,260.906,6.9715 +25,3.5915,6.0407,261,4.523,1,7.9804,2.8499,174.633,168.901 +13,5.4354,5.454,5.487,4.8568,1,10.7297,4.034,230.106,17.695 +26,3.6995,8.4221,5.949,3.162,0,451.667,2.1591,572.309,5.1126 +15,6.3647,6.4817,2.075,4.9295,1,164.688,1.115,595.875,155.653 +20,4.9046,4.0402,2.083,1.6945,1,492.753,7.397,227.986,7.639 +17,2.4796,1.617,2.762,4.856,1,2.3102,9.626,404.931,2.4685 +29,2.0492,5.9167,7.117,7.278,1,247.938,1.2968,572.996,12.8403 +21,5.9203,1.266,6.063,2.035,1,162.494,2.8959,762.857,168.918 +13,9.1217,12,8.458,1.649,1,497.983,2.028,326.572,219.448 +21,4.0956,6.161,2.957,2.3244,0,495.017,5.069,278.643,10.5061 +15,7.597,1.8902,9.121,415,1,11.7622,6.091,733.162,2.8789 +18,6.928,1.9189,7.437,2.5608,1,133.628,1.272,518.674,222.954 +14,9.384,6.5327,395,1.6375,1,374.836,1.821,858.179,10.4985 +15,8.3888,537,953,1.6781,1,444.837,2.8963,218.893,11.9394 +19,6.0994,3.1341,257,3.178,1,331.848,1.6796,773.233,205.063 +19,6.9133,1.4943,9.568,8.155,1,432.354,2.4399,170.413,140.587 +15,9.0855,5.8018,3.104,3.8328,1,3.1646,2.3175,588.924,7.2348 +25,4.5957,6.6177,3.299,2.9102,1,320.264,1.9825,290.797,12.9787 +28,3.9412,7.2114,1.896,4.5747,1,350.085,2.7132,11.008,149.967 +29,1.0973,2.5523,8.069,1.8242,1,9.516,2.7072,620.597,213.552 +10,8.439,8.925,2.756,4.9136,1,388.985,3.833,511.731,5.636 +15,8.2088,7.868,3.303,2.8791,0,472.133,2.7058,49.112,134.251 +28,1.9401,4.2615,4.143,4.867,1,448.983,1.5717,596.594,22.092 +21,6.1917,9.4584,4.337,1.353,1,12.2484,8.042,378.713,1.0913 +18,5.1758,2.1773,4.113,3.6399,1,161.996,1.8255,673.466,4.6696 +22,2.0684,2.5674,5.037,4.0831,1,249.806,8.427,139.535,8.3116 +14,9.8251,1.1989,8.145,2.659,1,7.9181,1.437,717.822,162.832 +28,2.9323,6.0557,8.193,2.8948,0,476.977,2.4493,584.016,202.043 +22,1.6051,6.7987,7.983,4.1997,1,8.0798,966,491.608,4.7801 +19,6.3536,6.4293,1.011,2.8052,1,380.711,5.493,136.374,5.9209 +26,7.6498,8.6113,7.997,3.191,1,170.714,2.8697,285.482,197.589 +23,1.292,4.8643,1.203,3.4672,0,28.686,1.3353,302.344,3.5602 +14,6.9285,1.3446,1.247,303,1,2.3587,0.91,241.475,6.2682 +22,5.7906,2.8941,9.479,4.0873,1,10.2506,2.7698,954.638,175.846 +32,1.9294,6.6243,8.194,2.152,1,222.196,2.7336,916.485,3.9878 +27,2.5527,6.1312,5.524,687,1,338.596,1.327,550.672,198.728 +19,6.1118,5.31,875,1.3755,0,388.781,1.0874,213.616,11.7724 +28,3.6672,6.8296,9.894,3.1668,1,1.507,2.7385,912.027,10.7417 +10,9.4448,6.3739,6.106,4.8818,1,7.6245,5.393,751.912,3.2461 +22,8.3687,8.8132,6.129,5.891,1,364.896,1.7346,4.8384,163.118 +18,9.8521,5.8602,7.544,7.135,1,406.528,9.623,495.804,21.216 +25,3.337,7.786,2.321,1.8444,0,11.8286,2.2097,608.895,166.106 +7,9.7275,2.4871,1.671,4.1811,1,11.4827,4.748,7.5809,7.6052 +24,4.8811,6.7818,7.596,2.3362,1,4.4015,1.7882,5.9333,167.712 +22,4.1277,9.0219,3.449,1.6081,1,7.5147,0,468.889,12.2386 +24,1.4531,3.8573,1.351,2.806,1,4.008,7.577,1.1932,204.895 +28,1.4749,7.791,3.149,1.3026,1,294.916,4.865,5.6367,11.0315 +17,7.2281,7.2479,3.586,2.1958,1,451.946,6.295,173.486,5.6953 +20,5.1214,5.953,9.652,1.663,1,7.4788,2.5813,910.871,2.4301 +29,3.0387,5.8151,698,4.0207,1,375.722,2.7444,768.621,6.7456 +17,6.5257,1.3019,5.309,4.6213,1,286.829,2.2651,455.922,13.525 +28,3.2757,9.6732,9.689,3.7979,1,469.961,1.7703,484.414,4.081 +21,6.1987,8.1141,9.031,2.1954,1,399.061,6.926,689.164,9.543 +19,4.2329,1.0972,512,2.5217,1,426.365,8.242,479.643,10.7722 +13,8.412,1.2175,9.057,6.254,1,319.571,9.297,7.3286,8.3384 +20,8.3863,5.9447,4.043,3.7343,1,405.668,2.331,741.344,10.0894 +16,5.2962,3.4489,2.304,2.9824,0,175.435,7.587,6.7172,10.8992 +20,4.1574,3.491,2.327,4.5122,0,10.4509,2.9202,491.232,183.857 +26,4.263,5.4164,6.623,1.1931,0,45.626,2.3894,86.309,230.622 +18,8.2514,3.8785,5.011,3.7986,1,367.168,2.9992,12.6206,6.2948 +19,3.9536,1.0108,659,3.4234,0,4.5351,1.3775,709.562,226.176 +28,2.8815,8.0192,6.861,1.3292,1,433.455,1.768,5.5865,5.481 +26,1.7622,9.1508,223,3.3369,0,174.452,8.412,993.129,181.187 +21,5.2002,7.5659,54,4.6219,1,149.139,1.8112,685.266,163.523 +24,5.3392,8.2242,5.327,4.5922,0,311.657,2.9217,96.93,1.2533 +11,8.5682,2.1649,191,3.5981,1,284.299,911,671.542,173.981 +24,2.9911,2.6357,6.325,2.404,1,269.128,8.679,24.986,216.269 +17,4.4289,2.0853,5.522,4.3613,1,12.7439,8.439,927.101,223.253 +25,8.2757,7.6506,5.858,3.2889,1,479.887,2.9471,630.403,164.446 +20,8.4126,9.4792,3.025,1.5522,1,47.506,3.979,580.178,188.781 +24,4.4615,7.1684,6.398,9.363,0,2.081,2.4371,434.821,1.717 +23,5.1321,8.8147,8.295,581,0,168.914,8.237,291.748,3.8701 +25,3.7296,6.387,9.981,2.512,0,2.2774,2.5818,534.769,6.2995 +12,9.393,3.8766,8.384,3.7705,0,425.124,1.4633,372.397,12.7521 +24,2.0678,4.2576,5.575,1.1792,0,443.259,7.268,855.484,9.2699 +15,9.4037,7.532,1.934,1.213,1,259.149,2.1292,3.8511,157.712 +15,7.1548,3.146,6.814,1.9864,0,419.839,2.5247,534.791,10.6965 +26,5.7841,6.9548,9.377,2.413,1,35.168,1.4104,838.199,186.005 +30,1.2939,4.3843,2.119,8.462,1,249.787,2.142,3.733,171.261 +21,5.2804,5.5222,256,2.202,1,181.906,5.447,28.948,179.348 +24,4.6697,5.5766,149,9.456,0,133.113,2.8128,6.1007,198.924 +22,2.451,2.7738,7.367,3.3955,1,12.9715,2.893,599.054,200.213 +18,6.9077,4.7589,4.066,4.112,1,281.032,6.659,323.569,187.093 +11,9.7404,4.7076,627,2.7752,1,8.3404,8.651,960.133,1.5822 +19,6.0597,3.8843,8.749,7.321,1,8.7396,4.583,620.131,149.569 +21,7.4328,8.2068,5.577,9.784,1,5.197,1.22,566.184,4.749 +26,1.6161,4.5116,3.311,1.9654,0,306.664,1.3732,918.067,178.502 +23,4.759,6.0364,344,5.041,0,497.172,1.5558,23.134,1.4654 +28,2.0472,8.9552,2.903,866,0,44.461,1.224,56.662,235.972 +21,6.5152,8.6623,4.555,1.7448,1,352.845,6.573,547.355,147.379 +20,9.4463,8.9042,337,1.6483,0,392.763,2.4233,9.1293,4.368 +16,6.956,2.7,5.479,3.7464,0,208.426,2.4318,932.739,11.2387 +23,1.6912,3.498,7.735,3.739,1,14.904,0.99,703.232,198.402 +18,4.192,2.6107,6.745,4.3023,0,184.314,1.3835,889.225,4.32 +14,5.956,2.7871,2.945,4.0812,1,4.0711,5.504,982.712,12.8826 +26,4.6289,9.0936,5.287,3.83,1,316.898,2.4664,484.857,859 +21,8.5028,6.4924,8.401,1.5469,0,8.7433,2.8701,805.623,189.222 +9,8.332,817,682,4.1144,0,381.439,8.741,581.784,4.6706 +18,6.5065,1.3538,783,914,1,9.4988,2.3458,977.352,9.2923 +18,4.3611,1.5568,5.562,622,1,11.4062,1.0572,254.751,12.7258 +25,3.298,6.3042,6.391,2.248,1,478.653,79,2.3679,3.4767 +27,1.9529,7.3541,2.114,4.6966,1,5.2698,1.7992,194.088,222.401 +28,4.1941,8.5964,7.452,1.5401,1,249.421,1.2312,136.739,11.2513 +25,4.7186,9.4064,6.463,4.5881,1,3.1343,2.2753,442.583,5.5628 +17,7.0824,2.017,9.233,1.3631,1,4.5195,2.2463,8.6636,176.434 +20,6.9234,3.0977,169,4.5378,1,31.675,2.8381,227.996,214.611 +22,1.631,2.4032,7.514,4.5196,0,315.364,1.3135,10.5303,219.041 +19,4.5573,3.5876,836,4.6184,1,9.656,1.4475,491.885,10.3472 +30,2.636,9.1467,5.653,2.4808,1,436.243,1.2012,274.109,8.6271 +26,2.4113,5.7511,5.519,4.3297,0,351.093,8.908,476.297,223.022 +15,8.4457,7.3819,3.884,4.7538,1,150.305,1.9135,9.7999,1.2681 +31,1.3772,4.9012,8.446,1.6231,1,12.4193,2.4841,521.702,18.013 +16,4.7726,2.886,44,2.0944,1,377.143,4.734,138.769,4.2602 +25,2.5138,642,5.202,3.5962,1,366.812,2.9455,10.8353,11.172 +16,8.914,5.3792,2.172,1.5018,1,7.4416,2.0514,316.919,228.886 +24,6.0134,7.1879,7.435,3.769,1,174.594,2.3403,875.673,139.476 +26,3.0824,2.1533,431,3.695,1,10.8339,2.9966,790.636,12.5626 +22,5.5218,7.2191,8.316,2.6175,1,147.072,1.5121,959.558,1.4832 +18,7.5834,8.1067,8.381,6.116,1,143.782,2.139,465.593,6.6562 +17,9.6231,4.119,8.329,1.4666,1,488.012,2.3709,319.317,732 +32,2.984,7.4642,1.526,1.2931,1,375.106,2.6123,971.198,210.001 +12,8.9756,4.0403,6.304,4.1947,0,390.026,4.872,38.795,154.765 +12,9.4087,6.7835,144,9.676,1,138.712,724,1.9012,2.8327 +13,9.2478,7.64,848,4.0422,1,264,4.075,821.908,8.7233 +21,6.7187,9.9193,723,3.9698,1,2.9079,9.719,177.518,19.474 +18,6.6684,3.454,5.312,2.4944,1,27.65,2.7728,720.733,3.3673 +18,4.6289,4.1104,7.306,1.1692,1,142.741,74,2.4971,5.5264 +14,7.7716,1.6562,943,1.1345,0,9.6477,2.4114,11.988,12.9938 +19,5.7816,2.0407,5.287,2.3246,1,2.482,2.5646,488.728,3.4787 +22,7.0969,6.934,2.913,44,1,437.941,2.4332,7.7219,9.185 +26,4.8561,9.1705,9.726,2.6568,1,300.064,2.466,889.745,235.711 +18,7.5835,3.946,8.571,4.7639,1,5.3687,2.0376,75.237,130.524 +18,8.4202,1.7984,7.333,7.735,0,383.202,2.8617,334.903,168.367 +24,2.3179,2.851,9.337,2.8667,1,377.913,3.611,601.545,159.187 +13,8.4964,4.5505,3.468,4.8089,1,144.702,95,718.371,5.0812 +20,5.8627,2.9065,9.009,4.3026,1,9.4213,2.621,757.845,203.067 +14,8.602,2.3358,3.252,4.2519,1,406.991,1.9348,401.719,2.9292 +27,4.8817,7.3598,7.328,4.1092,1,164.782,1.9393,899.812,221.183 +23,4.4114,784,7.364,1.5451,1,423.714,2.8933,942.367,5.1857 +15,9.2355,5.3923,183,4.4531,1,2.1826,2.3093,203.758,229.139 +24,3.2605,7.9377,3.611,4.7067,0,249.644,1.1923,912.126,191.511 +9,8.5979,2.6623,194,2.479,0,8.9798,1.3075,715.554,4.1036 +20,5.3562,6.0329,9.971,1.7729,0,336.022,4.341,889.257,3.8497 +21,5.6269,6.689,1.222,2.0711,1,498.607,9.121,430.507,2.0287 +24,3.7762,6.5502,5.428,1.671,1,206.256,1.3362,664.586,5.9365 +16,6.1574,4.4585,7.906,1.0621,0,5.0155,7.833,243.026,158.186 +23,3.9269,3.4658,2.013,3.0922,1,158.837,2.7476,753.591,12.4873 +27,1.3534,8.3592,4.851,2.813,1,445.753,354,585.916,147.204 +27,3.448,7.5845,6.074,2.3129,1,382.881,1.7611,486.136,7.474 +28,1.0574,3.2126,1.602,4.792,1,11.6106,2.3148,695.755,1.9193 +11,9.8052,1.0302,7.786,3.9845,0,476.799,2.1963,556.822,166.074 +13,9.6917,7.181,2.993,8.747,0,311.094,1.9312,767.701,203.498 +17,4.5564,9.428,211,5.728,1,8.4025,1.231,859.852,8.6261 +20,7.5553,5.8287,5.583,3.1154,1,286.161,2.7554,80.26,3.9956 +17,4.1123,5.166,4.103,1.9932,1,225.638,9.868,314.432,7.4005 +21,7.0398,3.3693,9.203,299,0,409.849,2.2504,976.358,9.8887 +21,8.2489,7.532,8.801,1.7778,1,17.208,2.78,653.244,151.233 +12,9.5208,2.9435,4.834,3.8589,1,437.489,3.852,330.232,9.8274 +27,4.6019,7.6331,3.593,3.0762,0,405.985,2.8412,5.2155,21.529 +20,8.0497,7.4547,3.255,1.8139,0,337.302,2.3281,988.215,9.6291 +21,3.3934,2.4583,2.676,959,1,12.9304,1.8498,603.027,4.353 +12,9.913,7.2882,5.445,3.159,0,485.165,1.1202,235.265,5.9603 +31,1.2319,7.4778,805,4.4378,0,274.333,2.7128,496.213,11.164 +17,6.4318,3.9745,3.108,3.2314,0,453.757,1.321,403.565,187.791 +15,6.9356,2.1042,1.901,4.0645,1,10.7865,1.2955,951.852,208.658 +19,7.1924,5.2127,4.755,2.6076,1,491.689,2.2699,497.734,4.447 +27,2.0835,9.214,69,3.5899,0,40.803,2.4334,489.821,833 +17,9.4468,6.3962,7.013,4.4811,1,474.613,6.068,796.654,208.658 +18,2.6306,1.7292,5.184,3.8659,1,10.6183,1.428,397.002,5.4767 +20,6.6048,6.8276,4.964,4.5493,1,215.329,2.4086,204.553,197.199 +25,3.1941,4.272,3.004,2.1557,1,4.8817,1.2657,770.715,132.179 +22,3.7649,5.9153,9.047,4.5211,1,6.8485,4.306,911.008,9.6988 +17,5.9181,7.3406,905,3.1078,1,141.979,2.567,5.5269,3.5222 +24,4.7547,5.1495,8.698,4.3502,1,475.813,1.9219,861.301,161.289 +32,2.442,8.1398,3.767,1.969,1,333.596,1.7485,443.485,196.358 +28,2.5384,7.2216,8.806,3.2893,0,157.316,2.562,296.242,11.0663 +20,4.7633,6.1507,7.288,4.2399,1,477.287,947,4.8789,10.7125 +19,7.8155,1.5079,1.042,871,1,369.866,2.6053,213.468,181.267 +23,9.0817,8.3595,8.315,3.3089,1,45.349,2.6617,339.541,12.2028 +31,1.7571,9.3591,6.822,4.1248,1,46.361,1.3389,7.9977,188.547 +13,4.5379,1.3697,323,1.4397,0,375.385,0.23,196.902,1.2988 +26,1.9022,4.8824,1.337,2.0262,0,12.1567,2.8402,739.472,205.831 +22,1.1493,2.5889,6.356,2.8476,1,498.294,2.161,689.992,6.2897 +22,6.9555,7.5452,6.626,2.5958,1,162.545,1.772,772.141,4.0607 +21,6.422,7.2163,7.467,1.959,1,335.853,1.4795,173.605,775 +28,2.4672,1.4089,7.202,4.934,1,422.406,2.5053,5.26,200.178 +26,3.1043,8.7703,6.595,5.023,1,8.7575,1.5078,473.904,1.4428 +29,1.2134,1.8097,7.662,1.3113,1,304.521,1.4074,349.357,229.063 +20,8.5145,7.9726,5.751,1.2293,0,187.586,2.642,778.966,135.562 +16,9.7722,4.5698,2.608,3.7111,1,12.2145,2.892,543.438,167.684 +24,2.2191,3.2827,9.124,2.8637,1,5.886,1.6478,931.869,174.075 +21,3.0833,1.5824,182,3.8199,1,435.987,1.3642,7.0594,7.0244 +17,8.8157,1.6761,3.666,3.495,1,6.7941,2.4933,37.004,19.355 +21,9.3382,6.6189,7.289,2.4261,1,439.059,2.4933,411.188,227.098 +21,4.7766,5.5043,4.272,1.6189,1,300.345,9.581,134.631,8.8764 +23,1.4556,1.2209,248,4.2497,0,310.528,1.7287,587.186,200.484 +19,1.3545,1.127,66,3.5389,0,414.326,4.624,4.98,18.529 +18,6.1655,7.231,6.486,4.3463,1,254.721,1.9066,715.598,141.503 +28,4.5361,7.4377,9.649,2.321,1,178.642,2.502,4.7069,8.8228 +23,1.2579,7.1188,5.519,3.6041,0,6.9403,5.625,874.737,9.9644 +16,6.2493,5.843,5.068,2.7,1,285.208,9.691,7.4377,7.3826 +26,1.1017,5.6027,3.183,4.125,1,276.584,1.3468,461.786,10.2305 +15,8.0863,8.468,2.567,2.5358,1,146.948,2.5352,163.832,23.751 +25,3.7579,9.0375,21,2.701,0,300.028,2.1941,141.791,8.722 +30,1.3623,9.0712,273,2.588,1,219.683,9.506,724.004,159.722 +20,6.2952,6.9823,4.491,3.3426,1,402.765,7.291,776.509,7.6706 +28,4.5792,9.2619,1.979,1.3657,1,279.743,2.0871,741.807,11.1995 +18,9.7642,8.1145,873,985,1,466.839,1.4397,409.952,2.0106 +26,5.8978,8.2854,7.177,3.322,0,258.991,1.7807,990.878,183.176 +25,3.4772,5.6971,8.946,4.7864,1,443.748,1.9461,346.569,158.646 +17,7.3849,3.0606,9.368,1.7304,1,260.263,1.6761,252.827,8.3396 +22,3.4434,2.178,618,4.3404,1,279.017,1.8392,99.654,12.5963 +16,9.1382,3.272,528,4.7984,1,183.404,2.6625,977.504,209.333 +21,4.3725,6.285,7.409,4.7163,0,200.085,2.6046,595.918,1.0664 +14,5.9488,1.7266,1.101,4.4086,0,466.551,4.471,216.949,223.252 +24,1.4552,2.5864,6.697,4.4742,1,11.1641,1.7595,246.114,11.2992 +21,4.8351,4.6806,7.794,1.445,0,6.0729,1.3179,525.677,206.317 +16,8.4913,2.3305,7.259,7.573,0,415.105,8.566,778.342,206.756 +16,8.2508,5.8864,9.519,3.1963,1,288.455,1.8934,8.668,1.4091 +26,3.0189,9.2318,7.381,2.4405,0,142.324,1.5327,690.794,187.583 +31,3.0347,7.4809,6.932,4.937,1,21.62,2.3247,11.208,175.888 +14,8.3557,6.6643,2.617,3.3877,1,262.453,2.803,84.567,1.0366 +17,9.3736,5.8272,9.248,2.8143,1,29.607,908,536.797,225.729 +23,1.8582,4.8795,1.795,4.3153,1,410.526,773,989.797,152.292 +21,5.0505,1.8656,9.049,3.0459,1,197.176,2.2379,755.452,4.0208 +26,4.0371,8.9471,3.127,2.8697,0,338.252,2.7374,502.256,2.9543 +13,8.8362,2.4854,1.302,2.2038,0,417.383,1.7621,149.765,134.874 +23,1.7517,9.131,8.267,2.3139,0,421.887,1.8509,546.972,1.412 +20,2.9001,7.5002,25,4.7719,1,12.7123,1.393,12.33,3.9458 +19,7.7722,1.7562,8.321,6.922,1,175.087,1.5113,906.111,227.629 +27,1.4616,3.719,2.623,2.2311,1,297.453,1.5806,237.767,178.738 +17,5.4328,2.828,8.847,3.2791,1,442.886,1.169,866.713,147.237 +21,4.979,1.3707,6.915,2.1651,1,395.223,2.3472,310.864,5.0117 +20,4.1996,1.732,6.662,1.4161,1,291.981,835,22.968,5.2444 +23,4.5512,5.441,3.653,1.4368,1,491.867,2.1703,311.194,10.6999 +22,5.7695,6.5666,594,1.1683,1,219.494,1.2088,710.479,180.973 +32,2.4523,8.3701,8.301,1.7195,1,421.225,2.9869,529.963,943 +14,6.148,3.7332,1.709,4.3584,0,40.921,6.366,11.6398,1.0626 +19,8.2489,8.7458,3.723,2.5261,1,454.019,1.747,145.688,208.827 +21,7.8414,2.1335,6.004,1.2012,1,493.839,2.9397,384.744,195.376 +22,2.3851,3.2539,4.823,1.9226,0,247.848,7.315,345.158,166.723 +23,2.3432,1.5074,1.987,5.292,1,9.7815,1.906,853.218,11.9888 +20,3.4136,6.2056,1.406,4.5202,0,230.448,1.1237,576.531,3.483 +22,4.2497,4.1987,1.232,2.041,0,426.942,1.9189,194.848,2.4536 +25,4.6761,6.1328,863,4.902,1,418.053,1.7882,3.806,21.729 +20,7.1173,7.6167,316,1.7377,1,167.985,2.1218,11.1339,9.1805 +23,1.5101,5.457,977,4.1818,1,2.3653,553,703.408,166.973 +30,1.3121,6.2763,1.985,1.2819,1,254.921,2.5086,848.626,10.9488 +29,4.5272,9.3525,1.103,3.808,1,23.705,1.436,784.713,175.423 +16,7.2745,2.9906,577,1.587,1,4.2882,1.5566,791.977,4.6394 +19,2.7409,3.5916,0.08,3.0308,0,397.445,1.2331,268.351,11.6296 +23,6.7735,7.177,6.025,1.5579,1,141.795,2.9681,989.195,9.0448 +27,3.3385,6.1131,8.506,2.2176,1,322.876,2.4047,9.5544,5.8813 +9,8.9748,1.7853,479,4.0932,1,5.0744,9.342,822.884,143.451 +19,9.0612,3.7615,7.999,1.2405,1,430.352,2.3492,10.5849,12.8874 +24,3.6756,4.6784,3.945,1.5433,1,369.637,1.311,274.856,11.8966 +24,3.0699,4.1939,1.595,4.2267,1,194.211,2.61,50.046,141.865 +14,4.7017,1.7827,1.761,2.4638,1,314.744,925,6.2807,3.4207 +26,3.1648,9.2443,9.188,4.1383,1,9.3727,1.0662,40.023,8.8932 +21,7.0515,7.6232,1.106,1.8724,1,492.711,1.2895,356.613,7.7922 +16,8.4346,4.8136,8.668,1.9918,0,398.054,2.2327,65.07,184.602 +18,7.0578,6.8006,5.442,8.357,1,39.447,5.469,720.833,8.574 +13,8.4192,8.9728,391,4.5817,1,7.669,8.588,9.959,6.7663 +18,4.5729,1.3617,4.645,4.4839,1,8.867,2.1716,4.7688,220.391 +20,2.4069,2.5037,8.174,4.9211,1,292.686,2.305,778.132,7.2084 +15,7.6416,5.427,7.262,2.0122,1,7.206,6.034,532.711,3.6456 +26,4.2443,7.9901,4.888,4.0931,1,390.217,2.2601,53.929,181.763 +17,7.0414,3.625,0.86,2.0748,0,208.038,2.6266,98.091,1.1483 +28,3.4358,9.8402,1.204,2.2715,1,169.297,2.1865,443.364,10.2317 +25,1.7311,4.5491,9.099,4.15,1,3.6825,1.5814,204.231,205.286 +14,9.9332,3.5923,8.464,8.868,1,498.033,2.972,683.835,228.983 +26,2.4058,2.9272,7.083,1.1016,0,478.005,2.4817,817.521,5.9765 +9,9.8958,1.7436,8.179,1.5736,1,6.5798,3.721,507.337,7.1089 +14,9.7955,7.9157,5.438,3.9409,0,166.406,1.1552,694.896,13.614 +18,8.1444,9.5541,6.752,1.8633,1,195.394,1.515,518.792,5.4372 +16,6.9348,4.1364,5.606,1.7908,0,148.401,2.129,413.279,3.6179 +21,6.2003,9.5242,3.554,4.9941,1,467.234,1.5105,4.3935,10.2236 +21,8.7949,8.238,5.689,1.919,1,360.671,2.7228,182.005,1.734 +25,3.605,4.8105,2.575,1.2389,1,477.958,4.162,48.497,214.613 +26,5.2091,6.7403,4.403,3.1161,1,437.253,2.4575,402.563,8.0207 +18,6.5745,4.3498,2.808,4.1994,1,377.271,1.532,844.455,8.0708 +21,4.7007,5.5872,1.229,348,0,348.484,1.0983,11.7361,18.993 +18,4.8474,5.805,3.219,3.0945,0,433.081,1.9307,5.9626,8.1972 +29,3.9726,6.9626,852,1.787,1,342.075,2.3713,9.6266,182.618 +12,6.0781,5.282,3.811,2.6317,0,9.436,1.3209,681.312,4.3498 +17,8.6552,8.1708,748,1.285,0,324.063,6.984,598.529,12.6957 +31,2.8138,8.2495,1.752,1.5332,1,257.501,2.7474,635.898,184.443 +14,9.4099,2.3708,4.244,2.3355,1,490.947,939,165.352,10.7976 +15,7.2018,3.2366,1.149,4.6355,0,254.983,2.9947,521.189,1.7235 +15,8.4095,4.8131,1.386,3.5533,1,1.9227,2.302,769.993,176.857 +18,6.1957,5.9666,6.174,4.6842,1,132.095,2.0635,687.038,11.8574 +10,8.0157,2.8735,6.075,3.2999,0,458.691,372,444.301,7.594 +30,1.1458,5.9249,2.134,355,1,481.178,1.3456,11.2466,238.271 +18,8.3654,2.9779,4.744,1.3279,0,364.249,1.5074,871.944,210.257 +18,1.3612,5.549,8.633,4.5289,0,2.8432,1.1291,530.942,9.077 +6,9.1992,253,1.742,3.2172,0,1.1771,4.499,890.764,142.477 +7,9.9277,1.0115,192,4.9082,0,239.798,1.1024,444.313,8.5096 +26,3.6466,7.9225,652,7.798,1,499.836,2.249,244.643,8.977 +25,2.8929,9.6143,535,1.4837,0,434.648,8.728,314.339,2.711 +18,7.8883,4.2697,9.799,1.8118,1,466.554,251,423.968,140.102 +26,3.2772,5.1268,6.096,1.6328,1,311.771,2.2573,618.081,7.6831 +17,8.7901,1.4685,4.704,1.26,1,429.562,2.0135,771.222,168.796 +27,1.9256,5.5103,0.43,2.2173,1,159.849,2.8198,250.214,10.9061 +21,2.1336,1.4465,5.731,3.2115,1,1.3682,1.1398,195.845,183.959 +18,9.8124,6.1121,906,1.5563,0,459.125,2.3586,210.632,195.136 +26,7.0646,9.3326,0.93,3.985,1,10.9215,1.7628,935.155,157.736 +15,8.622,1.957,6.256,3.5427,1,364.243,1.9383,172.309,10.0313 +30,3.919,7.6456,184,2.2951,1,329.484,1.6424,352.286,237.235 +15,7.0884,235,5.626,2.7824,1,7.9082,2.3375,491.009,7.3604 +14,6.3482,3.755,1.333,2.277,1,9.7889,126,560.641,12.3499 +11,6.4284,1.1075,176,4.4518,0,164.536,2.415,859.504,12.4897 +14,7.1428,3.5248,6.305,2.7937,1,378.465,2.878,12.1755,10.2801 +10,6.1782,1.7354,6.485,4.6164,0,1.9622,8.661,11.6933,2.914 +21,4.8616,3.733,5.837,2.5529,1,203.534,1.7734,323.246,8.4946 +26,3.4833,4.1752,1.835,1.4629,1,332.557,1.9369,419.069,5.1646 +18,7.9172,3.1959,6.034,1.7772,1,8.5735,2.1378,380.038,215.966 +22,3.0365,6.5662,565,2.6106,0,5.9709,8.423,397.983,15.729 +21,7.2312,9.1885,6.092,2.6499,1,195.106,1.9506,85.294,6.9075 +20,3.1,4.006,554,3.4367,1,14.328,3.531,838.302,135.776 +18,6.628,1.9234,6.553,1.1225,1,324.548,299,807.446,20.477 +18,7.7237,2.7072,8.955,3.2942,0,484.784,2.084,757.728,224.264 +28,2.9684,8.54,8.504,3.8929,1,2.234,2.1468,4.9985,1.8009 +30,1.5395,5.7164,9.807,3.383,1,45.119,1.8664,157.894,188.858 +26,2.1788,4.5501,9.762,2.4091,1,216.612,7.766,734.871,231.914 +18,6.454,1.4964,7.723,4.9584,1,332.004,2.7824,598.895,11.2139 +22,8.645,4.4973,9.564,2.0241,1,425.514,2.627,677.205,238.928 +26,1.405,2.7849,8.673,533,0,286.729,1.5466,719.762,229.699 +24,7.6074,9.4316,7.276,4.1075,1,4.8656,2.9674,912.251,157.654 +26,4.0719,8.8407,754,1.061,1,7.0298,8.959,638.792,203.427 +14,5.3068,839,49,3.5664,0,39.464,1.4734,282.812,7.1175 +18,9.3597,5.1665,8.376,8.949,0,11.4549,2.7838,9.2186,220.191 +24,3.9877,2.2506,4.897,844,1,284.519,1.3864,437.764,142.053 +23,5.188,4.1078,8.146,799,0,21.404,1.413,712.751,12.232 +30,1.1231,8.7685,3.129,1.8849,1,151.819,2.382,289.082,200.559 +26,1.7344,5.2751,3.976,5.331,0,393.484,634,12.8879,213.479 +22,3.3273,3.3422,7.002,9.884,0,365.608,4.736,998.755,16.83 +23,1.2507,2.0789,9.153,3.8231,1,323.054,1.6958,424.686,6.009 +18,6.6824,8.1932,878,3.8494,1,186.336,9.555,224.152,143.329 +17,4.8376,6.2452,8.615,4.0874,0,11.3235,2.311,17.291,197.197 +19,5.9333,4.6807,793,4.2058,0,257.947,1.5299,864.155,130.865 +26,2.5718,2.1748,3.155,2.1022,1,408.552,2.1977,821.408,224.366 +24,3.6634,3.3425,3.552,4.3377,1,287.832,2.2096,617.187,215.356 +24,6.9744,9.5984,465,2.6297,1,48.507,2.5126,551.714,12.7122 +10,9.6877,5.2009,157,2.353,0,7.719,1.4459,951.925,9.6919 +24,1.4538,4.007,477,3.5927,1,499.173,1.1718,235.985,1.3218 +18,9.0135,5.2142,955,1.0691,1,345.705,2.0524,42.124,151.823 +18,6.1919,7.7899,194,3.9475,1,416.337,401,3.4418,6.3832 +22,6.0753,3.4011,8.468,2.1473,0,167.476,1.9006,424.404,160.429 +16,5.5025,1.7871,571,6.365,0,254.171,1.217,390.374,191.703 +31,1.6245,5.8494,6.336,5.966,1,398.495,1.3586,949.998,9.8086 +26,1.8089,6.652,1.875,8.245,0,380.325,8.888,36.465,374 +17,6.4082,7.1272,8.287,4.4529,0,167.017,3.818,836.441,207.661 +24,4.0686,8.8199,868,4.9547,1,162.205,1.2043,768.928,131.762 +15,9.2554,3.7117,5.233,1.7849,1,331.406,9.246,155.799,7.555 +24,4.6593,7.535,9.126,1.4607,1,46.683,2.8804,96.309,152.111 +34,2.2895,9.5835,8.448,1.0939,1,219.393,2.8306,634.656,161.855 +17,7.4325,4.3501,7.313,4.1191,1,176.471,1.9318,600.585,3.5392 +30,3.6402,6.2326,7.341,1.046,1,447.344,2.7111,2.1588,155.136 +22,5.7292,6.6631,1.054,4.6205,1,341.528,2.2538,702.219,6.8805 +18,7.2805,5.4651,2.708,3.3368,1,194.138,1.0377,6.5073,19.287 +12,9.1024,2.0526,668,4.4856,1,2.8638,1.8117,193.527,225.963 +12,8.1297,7.5514,87,2.77,0,360.745,661,10.7635,2.464 +21,7.0872,8.0375,1.583,3.4534,1,176.443,2.0616,384.424,220.166 +16,7.1167,5.5298,8.805,3.0973,0,3.5283,1.344,797.754,216.827 +16,9.5133,4.8856,2.399,4.156,1,306.145,2.494,710.308,8.2298 +18,3.6624,1.1394,9.702,4.1793,1,161.503,1.7497,11.5628,6.921 +21,01.01,8.395,5.973,2.949,1,169.228,1.753,800.477,159.174 +22,3.4476,3.3956,2.373,3.1625,1,239.585,2.6153,466.239,8.2731 +24,2.961,3.1085,4.971,4.6094,1,358.737,2.6331,4.2304,4.5995 +20,6.9565,9.5366,2.191,4.6493,0,138.165,2.5584,231.588,2.6055 +22,6.7034,7.8362,984,3.3212,1,4.0473,2.3229,787.334,4.7046 +23,6.3412,6.5992,8.473,388,1,212.213,2.0338,735.967,5.6992 +25,1.1462,5.1765,262,5.221,0,2.7463,1.1907,196.468,190.998 +11,7.559,1.6737,9.478,4.2897,0,348.634,409,4.7619,188.117 +28,3.9118,9.7846,7.211,4.236,1,479.622,8.663,30.225,11.8659 +17,6.9855,3.7504,824,1.0676,1,329.379,1.0412,796.978,132.798 +16,6.1992,1.0693,6.706,1.1527,0,137.695,1.0742,939.007,220.276 +21,4.0846,4.938,6.469,3.2012,0,9.0851,1.6965,577.157,21.793 +28,2.2112,8.74,2.188,2.8832,1,11.6392,6.251,10.0193,198.882 +25,1.8498,8.8729,7.584,1.4471,0,11.0805,569,507.065,8.9826 +13,8.4837,1.097,871,1.0381,1,156.915,2.1509,998.803,8.7973 +15,9.2656,8.863,4.894,3.8227,1,4.8673,225,939.282,213.092 +15,6.8481,2.7148,99,4.6773,0,44.786,4.486,993.279,222.363 +27,1.9309,3.897,9.687,264,1,44.256,1.3049,702.421,191.629 +25,4.6182,8.4779,7.516,6.659,1,307.618,4.472,431.828,181.713 +21,7.5605,8.6387,1.589,3.2108,1,3.096,2.8794,894.198,133.959 +19,8.0184,5.9623,3.417,4.0222,1,40.2,2.0103,896.229,8.12 +22,2.064,5.7443,1.606,3.9559,1,3.0894,1.2983,152.921,5.7752 +26,1.2003,8.1312,7.666,3.5984,1,5.3211,3.368,777.632,3.3681 +18,7.4092,7.8631,589,4.4371,1,162.648,1.1556,920.116,174.768 +30,4.2094,8.9011,8.404,1.0867,1,215.735,1.9518,899.534,186.475 +29,3.2903,5.5275,9.422,5.365,0,176.944,2.9064,709.765,8.6075 +30,1.1161,9.6765,6.766,3.0768,1,8.2615,1.4181,541.985,145 +24,5.8627,9.9615,213,4.1114,1,5.6065,2.0772,778.982,225.263 +12,8.6604,1.1654,3.601,2.9102,0,429.708,5.861,520.994,10.4901 +19,9.6187,8.4954,4.772,4.815,1,181.591,1.8709,328.022,233.902 +18,6.0917,4.9982,6.046,3.9778,1,10.93,7.172,266.349,162.566 +16,5.6302,3.8757,6.687,3.504,0,243.496,5.944,545.251,2.9763 +25,1.7655,6.1307,5.542,3.013,0,1.8412,1.5277,461.395,7.8469 +13,5.9399,5.597,3.513,5.387,0,300.141,635,52.925,157.692 +23,4.4198,5.0646,8.909,3.9242,1,12.4245,2.164,26.809,155.821 +26,6.4642,8.7089,814,9.912,1,299.098,2.812,594.677,5.5677 +19,4.4985,2.1346,4.663,1.442,1,307.063,1.1808,665.454,4.2446 +23,3.1627,4.2639,7.756,4.5538,1,404.612,9.674,80.878,6.643 +25,1.8547,9.3948,609,4.454,1,11.4952,5.277,594.088,188.854 +24,3.8343,4.2856,7.053,1.0924,1,231.732,1.1712,75.851,5.8049 +26,1.8698,3.5837,8.197,3.901,1,480.944,1.6789,177.691,168.427 +26,2.5921,4.4054,6.608,2.399,1,363.562,1.1189,12.9852,20.88 +14,9.886,5.1945,129,1.4253,0,487.672,1.8692,187.845,9.3989 +20,4.9969,6.3199,1.801,3.1183,0,463.683,1.9873,847.802,1.679 +18,5.7868,8.1969,3.421,3.8159,0,305.374,2.935,560.588,3.407 +15,8.8626,4.521,2.337,52,0,131.965,2.0933,460.762,7.4855 +20,9.9601,8.1748,9.627,1.631,1,378.462,2.701,764.538,4.5589 +18,6.2444,5.3372,6.516,1.0717,1,34.906,788,132.837,6.9483 +14,8.3123,3.3848,297,4.9939,1,294.445,1.6541,1.6146,13.057 +23,3.9425,6.5795,9.297,3.3549,0,348.915,1.8116,317.855,5.059 +27,3.7517,7.1772,7.406,2.0284,1,306.793,2.1294,256.405,1.5428 +23,4.6243,5.5805,2.846,3.783,1,25.969,1.1573,314.258,205.377 +16,7.0526,5.661,3.789,2.9934,1,207.978,2.4561,973.834,12.5357 +13,7.1397,1.6988,1.994,3.2085,0,2.2354,1.6197,572.068,224.527 +23,3.8372,2.853,9.711,4.082,1,432.844,1.2268,593.221,786 +24,2.1989,2.8263,5.173,1.4429,0,43.277,2.1578,659.113,36 +24,6.6916,6.7342,8.961,4.9071,1,297.024,2.7821,403.748,177.503 +24,2.1549,1.835,3.465,2.1973,1,133.942,2.436,979.186,11.4301 +28,6.2064,7.5568,8.608,1.4797,1,1.4066,2.792,973.529,219.312 +16,7.2408,2.6534,539,1.7422,1,714,7.978,771.553,18.878 +12,7.3055,3.1002,9.821,2.5979,0,3.6454,3.555,219.575,12.0951 +15,7.7812,5.2791,912,4.6835,0,179.943,1.603,881.395,11.4846 +8,8.8557,2.1593,3.632,3.6758,1,9.4198,1.333,10.9911,194.683 +26,5.4996,8.8447,7.747,2.8855,1,132.529,2.0238,633.596,19.289 +14,7.5722,8.537,7.523,8.141,0,34.983,0.72,462.643,6.6467 +23,6.5726,4.4438,9.013,7.468,1,479.575,1.3631,4.8824,161.913 +27,2.6798,8.4942,3.073,2.511,0,10.3388,1.9667,904.868,154.369 +27,1.2312,6.1584,4.655,3.6435,0,232.822,1.4493,961.482,20.546 +23,3.5609,2.9233,865,3.7551,0,49.574,7.082,908.321,208.459 +24,4.9873,4.2076,7.786,1.1296,1,465.837,2.6411,200.542,6.4387 +22,6.554,7.0669,3.935,5.005,1,176.158,2.2936,339.652,211.138 +24,8.6496,9.7326,8.457,1.9223,1,159.845,1.8032,956.176,221.897 +22,2.7662,8.9314,47,4.5909,0,12.1085,2.0956,11.536,2.6313 +22,2.1299,3.4243,782,2.7268,0,7.7701,1.246,587.472,137.699 +18,9.6713,9.982,2.068,1.6005,1,230.026,1.1277,490.667,10.4751 +17,1.9724,35,2.861,1.6182,0,17.056,4.803,16.038,9.6476 +22,5.3064,2.763,4.932,6.604,0,372.419,2.4108,887.712,169.159 +22,6.2701,8.2384,4.497,2.3661,1,11.8433,1.1431,142.813,3.1096 +19,5.8724,1.9946,5.206,3.9568,1,368.166,2.077,59.678,196.787 +19,1.7743,6.077,5.448,4.8428,1,144.073,8.998,324.999,6.384 +25,1.5132,2.3715,3.315,2.508,0,296.364,2.388,423.801,138.792 +24,1.9494,4.261,1.752,8.361,1,319.215,3.157,219.246,5.4086 +23,6.2703,7.3057,7.685,3.4148,1,335.891,1.875,628.422,160.193 +21,5.8991,6.2434,0.4,3.784,1,8.7669,2.4228,988.791,12.6104 +24,3.1037,2.3762,5.058,3.585,0,141.356,1.9808,835.208,239.941 +19,6.74,5.0327,6.447,4.2507,1,12.3058,2.0883,686.374,206.957 +19,8.3806,9.2621,9.096,4.1466,1,28.808,1.578,758.817,8.0792 +26,1.3742,8.1501,7.076,2.3627,0,3.7873,1.6771,840.894,12.6836 +16,5.4832,3.2319,455,2.8021,1,259.128,1.977,477.822,7.6275 +20,7.2038,9.8226,8.386,3.567,1,4.3734,7.524,571.374,17.491 +27,3.2708,7.0862,9.894,3.3837,1,168.528,2.1658,896.528,10.1379 +23,3.7699,6.245,4.725,827,0,343.353,2.8363,698.988,2.7705 +17,6.5227,3.516,9.696,6.122,0,206.282,1.6253,144.663,158.593 +14,9.0814,1.6841,5.473,813,1,140.171,2.1768,78.174,2.656 +18,8.2893,7.2786,4.596,3.7784,1,307.929,2.0507,3.2479,7.135 +22,6.2482,1.8374,3.314,2.2004,1,370.135,2.9982,849.052,217.714 +17,7.572,5.1149,6.576,2.7275,1,12.7292,2.385,790.416,2.2602 +21,4.2834,9.326,2.298,3.8634,1,14.97,1.8829,832.439,12.1062 +20,6.7687,9.2089,1.049,1.7049,1,320.147,3.455,3.3357,190.821 +19,5.1956,3.4396,272,3.7445,0,482.612,1.088,972.724,217.081 +29,2.7094,9.0813,2.924,2.2115,1,10.6936,7.521,617.991,134.361 +24,7.3156,9.4488,3.958,1.8859,1,327.124,2.561,802.048,3.6764 +18,6.1982,613,5.521,1.6652,0,453.295,1.3385,570.894,225.806 +22,4.2276,4.6414,2.927,4.8247,0,230.983,1.6059,346.352,179.822 +10,9.2021,2.466,9.841,3.8599,0,158.422,2.8945,303.187,9.4961 +35,1.1884,9.0869,2.917,101,1,333.436,2.5101,7.9235,6.6475 +22,3.842,5.1841,441,4.7871,1,1.5716,2.3695,54.709,1.1452 +18,1.5119,7.494,1.033,3.8772,1,18.008,4.267,152.153,4.5943 +12,7.8987,1.1028,2.606,7.459,1,12.8987,683,571.842,186.642 +14,7.319,3.8351,483,3.817,1,11.2311,3.766,628.667,2.6071 +29,3.9822,9.4023,5.595,1.541,1,8.988,2.2208,44.766,3.1059 +19,7.081,6.9291,7.511,3.1209,1,368.532,1.2322,164.762,4.7024 +22,4.5634,8.6762,1.957,3.0827,0,47.755,3.524,43.838,9.4882 +17,7.8063,3.6646,3.679,1.3793,1,192.385,2.2171,879.885,4.5377 +15,5.0877,4.321,166,2.2284,1,2.4552,5.838,463.467,217.033 +26,4.7105,9.7432,8.395,1.0595,0,359.456,1.7671,349.302,6.1837 +13,9.4126,1.717,0.78,2.529,0,269.102,2.2246,633.466,220.677 +31,3.2579,9.4765,633,2.5849,1,361.822,1.8242,622.674,236.386 +28,2.084,3.6868,3.649,1.735,0,323.952,2.9809,9.971,181.153 +17,6.2609,1.009,9.553,2.7144,1,452.718,1.3025,244.126,1.785 +11,9.7239,6.8916,392,4.7325,1,7.022,9.354,499.461,5.7605 +24,4.4006,9.8054,5.262,7.169,0,8.4581,6.036,372.668,6.416 +32,1.5583,9.6563,3.552,98,1,170.785,1.5113,326.757,130.261 +23,4.0537,1.6094,5.961,3.844,1,245.694,2.5574,451.257,3.8014 +21,5.5534,1.8125,9.782,2.3135,0,462.857,2.8407,297.411,1.8532 +29,2.4573,5.6554,9.975,3.5347,1,453.482,2.9162,353.997,4.2326 +22,6.9229,6.373,7.747,2.9038,1,435.936,1.5941,775.893,7.8564 +13,9.9797,7.3942,4.043,2.4745,0,11.1263,1.8158,515.129,1.181 +19,5.0657,1.8105,4.944,1.7698,0,364.838,1.7446,874.127,4.6887 +25,4.1926,9.5901,3.567,1.5499,1,191.746,1.3979,949.075,4.0205 +24,4.6063,6.3874,9.856,1.8814,1,465.591,4.567,922.857,185.366 +24,2.0363,8.4705,7.078,3.0582,1,10.7268,1.964,261.174,4.0698 +15,8.9495,5.4007,4.489,8.388,0,7.0629,1.3099,478.157,189.969 +19,4.7334,4.1428,121,3.8568,1,421.193,5.585,539.702,12.1964 +28,4.4855,9.7718,5.205,2.8763,0,358.454,2.66,853.669,181.885 +24,6.9372,5.8212,9.839,1.3458,1,410.711,2.2851,56.343,10.8086 +25,4.9783,8.6687,5.231,2.5058,1,7.8972,1.8552,260.188,216.253 +18,6.8341,9.5329,1.824,4.8139,1,442.396,1.422,552.064,6.6364 +29,1.553,6.7535,221,1.025,0,33.881,1.8667,5.3842,184.034 +18,8.3235,5.4894,3.547,9.976,1,32.578,1.8632,835.796,3.9221 +13,9.4645,351,9.182,2.2419,0,291.292,1.3176,570.339,211.835 +15,6.8389,4.002,9.966,3.1922,0,382.438,1.9733,65.52,6.826 +14,9.5911,2.1985,9.454,1.0611,1,207.804,2.5737,20.893,10.9785 +22,2.3629,1.8601,7.294,4.657,1,6.6411,2.274,562.553,10.1102 +19,5.2967,2.5476,5.581,3.2129,1,269.632,1.4203,535.331,14.971 +14,6.4163,3.0493,5.907,4.3872,1,374.051,7.869,623.435,10.5824 +20,6.2356,3.6007,539,1.6466,1,7.6824,1.4335,848.946,141.355 +25,4.6132,4.2054,707,4.1448,1,11.201,2.8379,766.893,206.809 +21,4.0428,9.887,4.189,1.8911,1,348.273,2.46,551.406,3.4087 +21,2.1414,4.236,6.692,1.2638,1,134.825,811,894.469,5.8595 +24,4.5257,6.7394,1.216,4.5583,1,8.497,2.3489,364.834,192.677 +25,2.4639,5.3733,2.657,4.611,1,444.696,5.117,497.625,5.4735 +18,7.6093,4.4414,836,4.7144,1,8.0448,1.7133,65.294,217.357 +29,2.8795,6.3444,9.037,2.2926,1,172.074,2.4196,446.359,12.9795 +27,1.5271,8.2768,539,4.9631,0,214.215,1.6839,367.804,1.9647 +14,5.9713,4.2769,316,2.698,0,23.807,1.2116,12.127,4.958 +20,6.3571,6.4112,927,3.7874,1,180.655,9.638,63.954,183.097 +22,8.8472,9.5357,7.021,354,1,456.269,9.153,20.068,205.524 +23,6.1928,8.3962,414,2.4833,1,329.313,2.5123,146.872,5.7568 +20,4.1093,4.26,5.984,3.6873,0,179.747,2.4752,190.331,5.7787 +18,8.2271,6.4472,4.298,3.9141,1,17.886,2.4701,691.596,228.985 +16,5.8625,1.7707,4.653,7.902,0,251.476,8.482,146.976,157.485 +28,1.7135,5.6052,8.868,2.0949,1,1.6832,2.3968,976.474,4.0227 +19,6.0927,9.8133,1.611,2.0954,0,463.321,1.099,760.956,10.7661 +16,9.1722,5.1832,1.037,5.182,1,11.1655,6.194,398.807,218.505 +26,4.5668,9.2764,27,2.2152,1,348.796,1.5435,59.735,149.082 +20,3.6669,4.0733,314,4.0355,1,388.861,1.2202,1.755,9.7793 +28,2.2912,9.9884,1.474,1.5009,1,413.692,3.357,846.087,3.6248 +22,2.363,5.7922,0.22,2.1629,1,8.2821,1.252,278.499,17.424 +14,4.8949,4.227,112,4.8048,1,268.347,1.8335,8.1165,6.6327 +20,6.3611,5.8675,2.272,1.585,1,4.1837,9.404,760.538,135.819 +24,1.7255,2.7457,3.327,2.9576,1,402.396,479,336.286,144.034 +11,9.4561,3.248,316,3.7172,1,243.226,1.2927,571.866,133.308 +17,7.7962,8.2085,6.079,3.8044,1,7.9245,9.203,845.591,5.9158 +17,6.2796,2.7573,5.688,3.5797,0,359.339,1.7298,778.172,169.986 +20,8.4559,7.9655,97,3.6323,1,165.585,2.7894,343.468,135.852 +25,1.7217,2.8822,595,2.951,1,5.7253,9.236,87.001,9.6884 +21,5.2915,1.9433,9.987,2.6707,1,230.537,2.9914,394.961,1.2511 +21,6.6708,9.7394,9.445,3.9148,1,11.7623,2.581,505.024,7.9503 +12,8.4579,3.6165,27,4.703,0,475.111,2.648,616.334,8.4587 +22,8.0512,6.0138,7.954,602,1,180.681,2.1389,8.0271,189.879 +25,3.4936,6.0998,3.536,4.0728,1,286.226,2.2459,601.192,12.3227 +16,9.4679,5.6047,637,3.5615,1,47.418,1.2686,581.643,223.709 +27,2.1191,9.147,296,2.061,1,196.861,8.581,87.476,180.175 +16,8.8762,6.7444,3.217,4.702,0,179.063,2.382,360.127,12.9121 +15,9.7385,4.0373,5.232,3.833,1,8.1203,2.8687,249.767,4.0533 +30,2.5944,8.6238,6.611,4.8393,1,469.152,2.9697,481.749,5.3048 +15,7.4986,1.8106,7.491,4.6466,0,400.372,1.9034,690.458,3.8419 +28,1.3626,5.4424,2.459,2.4065,1,11.0505,2.2203,566.275,10.6284 +25,4.6488,9.5055,3.218,3.7735,1,166.337,2.4667,146.825,173.406 +23,5.6465,6.254,3.084,3.346,1,457.456,2.3966,354.413,182.238 +21,6.2258,8.1697,3.627,4.0572,0,26.864,2.9802,7.3148,2.3076 +17,9.4234,6.5356,9.997,3.9384,1,278.167,2.4313,741.933,11.9019 +24,7.0503,8.3937,7.779,7.662,0,324.072,1.9877,884.119,11.5546 +26,5.3315,9.4449,975,1.1687,1,381.082,1.1286,5.5216,10.5333 +18,8.2871,2.7292,6.931,1.3287,1,469.643,1.794,530.173,7.2292 +13,9.5548,1.6966,4.063,4.0925,1,401.113,2.6411,57.032,11.4194 +27,1.1986,4.8399,3.897,4.0537,1,467.275,9.164,44.444,12.3986 +14,9.8427,7.0186,4.886,2.4767,1,410.305,92,507.706,143.927 +21,1.7752,2.2719,4.169,2.9042,1,2.3217,9.815,713.253,9.0568 +17,8.3295,41,8.283,4.1346,1,5.8767,2.8807,488.888,226.824 +27,3.523,3.4294,465,1.563,1,442.446,2.3822,920.456,8.1321 +30,2.1896,9.6886,2.956,2.509,1,1.3848,5.614,545.465,214.812 +22,4.9587,6.9497,7.749,2.413,1,397.087,36,8.1079,192.301 +19,6.7956,4.0133,8.544,4.5686,1,424.922,2.1974,953.791,11.1665 +19,4.4286,1.9258,4.204,3.9523,1,207.732,1.737,155.343,11.9115 +25,1.4911,3.5609,6.678,1.8331,1,177.427,2.489,786.615,208.767 +20,6.3952,1.6984,588,3.239,1,9.7202,2.898,531.637,11.8254 +12,9.1216,1.0631,5.295,3.1846,1,2.4459,1.8534,743.484,163.051 +26,4.4489,9.0674,45,4.1725,1,372.691,1.9546,518.296,194.233 +29,2.947,9.9765,292,3.3247,0,3.6864,2.5608,6.838,217.891 +20,4.9832,1.6411,6.129,2.1254,1,472.335,1.0112,381.177,5.2359 +25,1.4353,5.452,3.033,6.168,1,148.372,1.6748,624.479,234.088 +17,8.3844,3.2973,7.425,4.5539,1,397.122,1.7286,632.593,23.168 +19,8.4371,4.6166,8.961,1.3798,1,2.9841,2.9021,973.314,7.1365 +17,6.292,2.0482,1.394,1.1214,1,268.139,3.945,610.261,147.295 +22,4.1779,3.0142,7.245,4.0799,1,17.455,2.2767,293.575,1.126 +11,8.1981,2.1987,5.145,4.9061,1,1.5001,1.7255,5.2991,4.0279 +23,5.9922,7.7426,1.121,3.3008,0,32.79,2.5361,790.531,140.116 +24,8.4334,7.1258,6.516,3.1241,1,471.581,2.4959,890.398,156.025 +17,6.6831,6.3495,6.095,1.5972,1,5.376,361,617.502,12.8305 +17,8.0596,3.8722,5.156,1.021,1,135.218,7.694,487.553,169.133 +26,6.3871,9.0904,9.265,959,1,351.803,5.425,862.377,190.294 +24,4.7273,9.6953,5.211,2.9222,1,435.627,1.3851,247.953,4.043 +15,9.6215,1.7364,9.905,7.566,1,9.539,2.7159,404.745,158.308 +12,5.87,2.2301,5.092,4.4192,1,3.5358,15,51.258,135.024 +18,6.4458,5.2563,1.159,9.407,1,4.321,1.4646,5.8879,2.8221 +21,2.9844,9.125,4.705,2.6105,1,10.7603,2.6544,691.693,5.4865 +20,6.6309,4.3645,1.823,2.5601,1,3.5659,2.7786,196.674,10.0721 +23,6.1445,5.8179,5.971,3.0197,1,179.691,1.9719,339.822,207.302 +27,2.6635,5.2207,6.931,1.6372,1,220.063,2.4893,420.348,5.2086 +22,1.5363,3.3091,4.684,4.3677,1,239.962,9.722,642.125,4.3902 +18,6.4392,5.4245,977,2.2215,1,7.1165,8.579,7.4829,173.028 +17,7.8732,9.588,4.686,3.5008,0,231.994,1.474,347.453,23.419 +13,5.7106,2.0602,815,3.1796,1,4.526,1.5096,281.618,10.7359 +27,3.041,6.5483,6.821,5.858,1,11.9711,1.3675,1.1504,8.4033 +14,6.9987,434,7.904,3.1132,1,184.543,1.1157,694.737,6.0946 +17,1.721,6.642,9.624,2.7535,0,5.9176,0.34,243.576,1.1938 +18,4.9765,5.5183,1.488,4.493,1,407.002,6.923,174.774,4.2819 +17,2.4703,1.0494,5.324,4.4044,0,10.0606,611,799.986,2.242 +26,2.6601,2.235,5.675,7.548,1,377.445,2.8319,4.8806,11.8584 +29,2.8206,1.7151,9.225,4.084,1,236.947,2.8994,901.238,234.767 +20,4.4804,5.6485,6.273,1.473,0,239.872,103,690.033,188.977 +22,1.4604,7.0334,1.455,4.9331,0,322.597,5.116,180.029,144.406 +22,4.5801,2.0248,4.364,1.079,1,2.2139,2.6663,356.602,11.6793 +19,5.6054,6.6826,6.548,3.3645,1,3.938,115,950.483,148.124 +20,5.3496,1.8248,7.003,3.0426,1,163.422,2.8304,622.656,9.0246 +22,4.4451,6.1346,8.631,3.2329,1,208.411,1.1402,61.263,4.2812 +17,8.5523,4.1196,1.805,1.0914,1,21.497,1.6161,65.654,141.546 +33,2.3079,6.538,9.515,1.1336,1,338.444,2.2915,46.811,12.6745 +21,5.5513,9.9505,591,2.1532,1,353,7.317,17.563,226.689 +32,1.5584,9.3782,9.838,4.793,1,479.553,302,159.382,15.596 +27,1.6404,428,8.578,3.731,0,8.7244,2.4298,690.438,185.623 +27,6.1648,8.8544,6.603,4.418,1,12.4316,2.9539,885.102,2.2248 +17,6.0942,6.649,735,2.8649,0,452.814,1.9763,307.209,182.625 +21,8.9023,9.5305,727,1.9887,1,2.746,2.4757,50.837,235.884 +24,6.0209,2.8183,415,1.4681,1,495.653,2.8239,992.315,157.799 +10,9.6381,3.8203,1.018,1.5791,0,1.7979,6.857,26.459,17.81 +23,1.4383,9.164,874,1.0364,1,6.0273,1.0512,396.312,235.085 +20,1.8821,1.1227,5.474,2.0575,1,12.1953,6.571,369.886,9.3906 +26,1.3966,7.2674,2.154,1.0153,0,219.361,1.854,4.226,197.803 +28,2.6675,9.4433,8.602,3.4902,1,259.226,2.1968,514.422,9.5926 +18,5.8714,6.1075,4.457,6.197,1,5.2359,437,216.591,10.222 +14,6.8101,7.1585,6.955,4.7412,0,3.6837,2.781,137.312,157.978 +29,1.4103,7.6197,6.529,4.491,0,1.593,1.0729,713.312,6.1541 +8,9.5137,2.6281,3.199,4.7173,0,12.8375,1.817,768.103,238.268 +10,8.5795,4.523,2.432,4.1665,1,460.766,5.387,890.003,7.9016 +14,3.6695,187,3.425,3.4036,0,194.921,2.098,934.791,2.9484 +25,1.6947,3.5065,7.967,4.5615,0,382.004,2.6318,870.375,7.7413 +28,2.529,2.4146,5.863,6.961,1,9.5094,2.3392,13.127,205.432 +22,2.1425,6.232,2.535,8.816,0,3.234,2.5785,231.393,7.5343 +28,2.1096,1.7953,8.178,1.2608,1,27.714,2.605,131.251,146.725 +20,5.6671,1.245,548,1.2241,0,411.046,2.8335,359.989,224.477 +25,3.2126,9.1488,6.992,1.5542,0,44.923,0.56,132.831,6.2392 +20,4.2233,1.4027,4.391,2.8782,1,273.102,2.7,656.745,3.1528 +14,9.9055,5.3765,7.313,1.409,0,147.016,1.5751,719.548,2.3244 +17,7.1588,5.9311,9.275,1.9114,0,5.4756,4.987,167.998,10.5688 +17,9.5408,5.4349,0.75,1.2319,1,333.911,1.9673,62.536,2.5029 +19,2.283,9.906,442,3.0331,0,140.218,981,3.276,10.8914 +18,4.4393,3.188,151,4.9258,1,421.981,1.394,440.027,207.052 +15,5.9926,5.127,8.064,2.5883,0,302.561,2.359,292.486,186.596 +26,1.6908,3.9567,4.607,2.1284,1,429.439,1.2711,99.851,139.608 +27,1.0377,1.886,753,1.8412,0,283.327,2.4795,923.557,204.101 +17,7.0339,5.6163,7.191,3.9247,1,385.871,9.331,15.609,2.4065 +22,6.7764,6.9281,2.919,3.599,1,147.153,2.2984,918.197,14.626 +16,4.6971,5.3212,489,4.7989,1,251.529,1.672,424.602,2.7754 +20,5.4068,4.3424,9.028,2.0896,1,9.703,1.1812,580.882,11.5713 +20,4.739,3.8733,4.831,1.5685,1,303.916,3.823,538.427,11.1231 +30,1.216,8.4169,281,4.8703,1,26.687,2.5906,728.895,6.3637 +23,4.0183,2.1937,7.164,4.6794,1,377.641,2.9038,341.607,199.165 +24,2.5937,7.3422,8.859,3.2097,1,364.478,9.768,7.8986,5.4775 +33,1.8858,7.5748,3,925,1,313.809,2.9666,423.451,132.455 +13,9.6105,4.192,6.879,3.7427,1,2.8343,2.2569,54.906,11.5743 +17,6.3942,2.973,767,1.6778,1,451.505,37,559.365,10.3597 +13,7.5579,4.7054,2.099,1.9414,0,901,1.4558,794.672,805 +23,3.8383,9.321,4.896,7.937,1,401.634,2.5023,5.3784,167.216 +18,4.5383,4.593,893,2.6173,1,239.673,1.6016,988.213,3.044 +23,3.1323,1.116,7.467,3.7228,0,408.997,1.6499,990.659,196.931 +25,1.8727,1.8715,8.475,1.3651,1,232.535,1.3431,10.8027,6.3935 +21,2.6113,5.0418,1.082,4.6937,1,323.469,1.1851,350.577,2.8801 +18,8.1776,8.4914,8.165,9.737,1,181.633,822,594.408,10.009 +19,7.0979,2.3564,7.716,3.313,0,371.839,1.8652,379.593,134.247 +23,5.9224,9.3516,3.469,3.2218,0,12.7088,2.3002,492.748,7.4487 +22,5.2758,9.5491,6.903,4.2466,0,359.678,2.3705,332.669,2.9228 +12,9.3019,9.589,0,4.7657,0,9.6691,1.8739,715.012,4.399 +31,1.6546,8.3756,9.318,3.8359,1,361.084,1.0238,370.377,168.915 +20,3.5254,3.6383,5.504,9.983,1,146.836,678,435.588,212.745 +20,4.1494,7.268,6.203,4.8883,1,139.316,2.6873,580.149,2.4125 +17,8.0418,5.6882,6.647,4.5972,0,405.747,1.2871,969.509,5.5352 +16,9.9326,5.5868,5.614,8.158,0,406.846,1.8035,645.386,4.855 +26,3.166,8.4998,8.568,2.7939,1,345.701,5.837,10.5952,212.416 +18,8.8688,9.9599,6.097,2.7776,1,461.954,4.259,325.712,10.6737 +15,8.4756,5.0816,9.078,2.2127,1,7.8097,2.605,425.517,222.047 +25,3.0219,3.452,5.823,4.9214,1,134.661,2.3963,742.772,11.2344 +24,4.594,1.859,1.711,2.981,1,147.007,1.9394,452.407,206.924 +19,4.6871,48,9.136,3.136,0,152.643,1.8635,662.513,228.422 +16,9.804,5.0911,6.816,1.0265,1,164.016,2.7582,84.11,8.0436 +23,2.628,5.5552,6.992,2.6367,0,348.505,4.761,11.3294,153.771 +17,8.1924,8.2494,9.855,3.8987,1,135.379,5.108,768.082,159.941 +20,4.1977,5.0458,752,1.2336,1,142.961,5.684,748.124,5.138 +20,7.5778,9.1647,4.286,1.9668,1,285.207,1.2701,821.515,10.5175 +22,4.7801,6.2808,2.391,4.7538,0,9.6679,2.6227,956.506,205.279 +23,6.2052,8.4034,6.304,3.8074,1,182.444,2.6444,316.502,227.108 +10,8.4935,1.483,8.068,2.8636,0,2.897,1.7718,43.473,215.813 +23,8.2375,8.5534,9.663,1.11,0,476.274,1.9744,270.055,233.496 +22,8.7978,6.7514,4.546,2.1265,1,158.654,2.6933,333.835,15.673 +24,1.5366,1.7023,7.862,3.8703,1,425.021,1.8727,336.528,5.5872 +14,7.2285,1.8976,9.171,4.1027,1,264.973,6.894,871.077,138.092 +31,2.2599,9.265,6.833,1.223,1,11.4106,2.1147,7.2269,10.1075 +17,4.7424,3.222,2.427,3.3103,0,9.6714,2.3097,210.672,6.2077 +22,5.9373,4.6253,6.079,475,0,34.748,1.906,614.453,185.469 +22,4.6247,3.1348,0.97,1.161,0,482.434,8.207,767.543,151.008 +24,5.6765,6.6508,9.876,2.7434,1,9.1535,1.1998,700.403,189.625 +15,9.9687,8.3963,6.424,1.1219,1,5.7711,1.4118,5.611,6.4678 +25,2.217,3.6038,887,3.946,1,19.355,4.359,459.256,216.932 +16,7.0791,4.269,2.003,3.6491,1,196.905,1.3567,192.629,5.7291 +24,4.564,9.8192,2.461,2.4899,1,403.126,4.836,988.261,144.461 +28,2.1971,7.8392,9.529,3.9814,1,234.445,1.4984,998.903,1.3655 +23,2.4286,8.972,1.352,3.3197,0,3.1231,1.524,6.039,12.9831 +18,9.5435,4.3876,1.911,3.649,1,460.334,2.8456,671.047,2.3694 +12,8.9164,2.3408,4.205,1.5368,1,186.594,739,814.934,7.9732 +16,9.1634,4.1186,5.896,1.3164,1,334.266,1.401,331.532,206.565 +14,9.9238,7.1609,6.038,3.1944,0,333.744,983,69.67,214.447 +18,2.8748,1.0943,292,1.2004,0,2.8171,5.782,195.792,184.152 +20,4.199,2.7047,9.206,4.0771,1,1.802,2.0797,13.668,8.8249 +12,7.023,4.664,9.151,2.6146,0,4.4019,3.354,926.049,138.893 +23,5.3542,4.3235,3.921,1.1349,1,478.266,1.8844,64.611,5.3755 +19,4.7655,8.2745,4.343,3.1258,0,396.996,62,818.778,162.804 +15,4.2203,2.466,7.025,4.7252,1,6.6006,1.395,537.386,8.3377 +22,6.344,6.7532,663,4.105,1,307.435,2.164,163.178,5.304 +26,6.1803,9.325,3.823,5.467,1,305.987,2.7789,382.889,140.393 +19,2.4531,2.3693,4.142,4.2192,1,28,1.4785,88.284,2.6833 +26,5.2457,6.9363,348,548,1,214.532,2.5216,2.5451,164.808 +26,5.9812,9.751,2.354,1.969,1,355.888,2.4078,215.106,4.4881 +20,6.1326,9.6228,4.581,1.7397,1,9.3396,8.873,260.754,132.829 +23,2.891,2.3493,6.864,2.3335,0,425.452,2.6242,270.366,9.4202 +13,7.6804,1.1933,742,2.8472,0,330.152,1.9208,10.7601,135.899 +20,1.2268,1.4828,7.789,2.5365,0,3.462,3.126,849.737,5.9031 +23,4.1935,7.0204,3.747,4.5659,0,427.457,2.8173,167.919,7.4493 +16,8.0219,7.2576,7.646,3.8433,1,0.97,0.53,831.378,3.3677 +20,6.075,6.7424,65,4.9191,1,443.964,1.4111,361.511,186.472 +21,3.3505,3.3608,477,2.3823,1,166.859,1.3991,462.745,1.6827 +17,7.2546,1.6978,7.939,4.216,0,349.325,1.8757,468.222,9.0344 +21,6.1065,5.8076,0.63,4.7777,1,393.715,1.9949,716.017,10.7783 +17,8.1662,4.8368,4.741,206,1,140.634,6.987,733.987,4.6849 +17,7.6152,7.2883,6.446,3.8805,1,178.218,1.0573,644.281,9.2357 +20,6.491,4.4136,9.069,1.564,1,254.771,4.338,776.031,10.0341 +17,5.3936,3.3864,5.664,3.8061,1,291.346,378,1.822,5.3839 +24,2.1986,2.9348,7.998,4.6897,1,146.021,2.4752,509.762,153.421 +23,3.352,2.1147,9.807,1.9463,1,496.198,2.2522,528.785,7.405 +20,4.7719,2.6575,7.056,1.2048,1,368.502,1.3281,246.946,4.7416 +15,6.3937,9.483,5.733,1.1314,1,137.076,2.877,560.807,149.778 +16,5.6234,3.4686,375,2.4586,0,320.216,1.3498,472.486,150.607 +19,3.5937,3.657,3.745,8.544,1,217.686,8.834,477.391,6.3663 +28,1.0582,1.8641,5.654,3.3646,1,430.164,2.3338,12.7266,163.932 +21,5.4662,7.4677,7.972,1.8418,0,164.475,2.899,44.091,11.2749 +21,3.5706,3.2547,4.381,1.6155,0,9.3927,1.3541,768.766,12.6539 +19,7.6115,6.6824,9.601,2.3064,1,2.3068,1.7742,41.589,7.9826 +34,1.2155,7.1688,2.718,2.7129,1,492.155,2.9572,492.623,236.225 +19,6.2635,5.8119,7.446,7.097,1,179.611,2.688,967.845,176.973 +12,9.4733,9.587,419,3.5388,0,11.0259,3.419,873.066,5.9623 +21,2.5697,2.144,486,4.4147,1,245.884,2.9641,929.413,5.6775 +24,5.2448,7.3865,8.025,1.3899,1,14.582,1.2169,8.69,185.802 +32,1.8228,9.5879,2.962,902,1,11.645,2.2311,622.395,9.3123 +21,6.6311,8.6227,968,3.8025,1,308.192,2.3504,231.178,2.1963 +16,5.9548,1.6789,5.203,9.177,1,3.7424,9.437,410.201,8.544 +20,4.6663,3.2682,5.288,2.063,0,254.496,6.429,682.953,9.9349 +14,5.6924,1.7245,7.972,3.0962,0,193.716,8.283,583.126,9.953 +19,9.0692,6.0131,9.683,1.1988,0,266.265,2.2932,510.675,169.646 +29,2.7666,7.1219,553,8.591,1,16.022,2.5214,816.304,137.945 +26,1.2031,3.1707,5.917,4.908,1,28.516,2.0985,685.773,184.829 +14,8.755,5.3951,6.813,1.4593,1,4.0909,1.3237,822.835,7.6261 +19,6.1941,6.9092,9.858,4.5172,1,188.079,7.877,932.613,14.982 +17,9.0159,4.2134,9.426,8.911,1,11.8749,1.2757,714.851,212.569 +22,6.3725,8.5402,7.125,4.0949,0,219.045,2.7436,401.441,1.6629 +20,8.2914,7.7155,5.218,2.5101,0,199.168,2.5896,220.651,170.028 +21,4.8671,6.467,1.615,393,1,315.592,9.701,278.206,171.812 +18,7.7487,6.2113,3.842,3.668,1,314.379,9.838,402.664,190.567 +13,9.2174,2.3533,5.851,4.4604,1,206.682,2.3399,74.269,6.4571 +19,6.1491,5.5752,7.252,8.151,0,9.0812,1.2797,4.9753,9.9965 +30,2.6271,9.5689,6.354,3.628,1,290.957,1.7182,816.139,5.753 +30,3.4192,8.7906,7.141,2.2253,1,483.258,1.267,760.554,7.406 +22,2.7878,4.0452,4.292,3.7694,1,9.2721,727,504.422,232.442 +21,3.2217,2.9151,7.276,3.5696,1,3.453,5.666,40.567,10.6957 +19,3.7577,2.3441,1.437,133,1,132.281,4.186,12.157,203.653 +18,5.9962,5.3251,1.626,8.936,1,20.646,343,296.805,190.771 +17,6.2919,1.1425,1.628,2.3551,1,153.094,8.418,11.8532,10.6686 +23,4.8385,5.4928,8.909,4.668,1,417.355,5.142,820.696,238.123 +13,6.5388,133,76,1.7104,0,246.514,7.739,514.244,201.787 +22,1.7342,3.2385,8.015,3.1444,1,12.3064,2.274,254.319,11.5847 +25,1.7901,2.1993,2.336,604,1,47.51,1.0247,2.7908,7.4329 +27,2.5465,9.7122,4.684,3.5556,0,6.2531,1.5599,528.682,1.8071 +26,5.6627,7.2724,916,3.0153,1,6.1456,2.8337,754.566,11.1552 +21,2.926,3.4965,5.859,3.577,1,12.2642,1.0412,768.829,8.6402 +12,3.5496,9.285,2.101,4.5233,0,3.8386,931,222.282,17.073 +22,4.6028,5.168,2.841,7.325,1,375.826,1.0871,995.111,4.723 +17,8.3068,2.1345,9.204,1.3079,0,156.405,2.4517,573.092,199.547 +25,1.1248,5.3643,4.271,4.9789,1,364.919,1.0204,338.687,9.9991 +23,6.8444,8.3536,587,7.814,1,381.369,8.752,39.888,11.2736 +19,7.0199,6.1579,4.599,3.6031,1,11.8759,2.757,133.192,4.387 +18,8.1879,6.3379,3.784,3.6254,1,259.182,8.917,498.422,224.996 +16,9.3948,5.4103,2.233,3.415,1,259.796,2.9108,755.762,9.5613 +35,1.1812,9.2727,6.862,1.1372,1,435.682,2.4979,415.316,202.254 +31,2.3841,9.319,7.182,1.0757,1,1.2815,2.0527,868.184,5.6989 +16,8.9755,5.1272,2.749,3.3317,1,15.84,1.795,481.985,2.3198 +20,5.1267,3.0576,789,9.313,0,441.245,6.743,901.604,152.583 +23,6.0813,4.5959,8.545,3.3078,1,11.8402,2.1912,706.172,23.626 +15,6.9672,1.8656,9.207,2.4626,0,6.844,1.0414,6.446,155.266 +19,7.1116,6.3634,1.612,1.9331,0,28.807,1.4569,7.6347,146.091 +12,9.3857,5.2009,3.039,1.5012,0,152.938,3.122,802.105,10.6135 +6,9.9725,1.033,8.604,4.7379,0,233.647,8.885,363.255,6.8112 +17,7.4814,1.9765,1.985,2.5405,1,410.006,1.5874,197.353,10.34 +21,3.585,4.7963,35,2.8063,1,260.348,1.4041,866.667,3.575 +16,8.9178,8.8759,8.708,4.7463,1,257.945,1.0305,983.474,6.2858 +28,1.443,5.6639,3.264,3.2694,1,139.091,1.4158,810.661,11.6973 +26,3.0797,6.8154,4.145,4.7893,1,396.433,2.2348,727.878,3.4751 +15,9.0765,3.3903,4.463,5.318,1,369.907,1.378,1.0949,189.968 +21,3.3057,5.7141,8.483,4.2332,1,11.706,1.5185,11.4914,2.775 +22,2.9859,4.4738,3.379,1.6771,0,160.002,2.1034,674.234,7.7182 +32,2.2431,6.5913,8.923,4.0524,1,394.314,2.5248,415.469,12.3996 +12,8.732,5.058,6.169,4.2782,1,178.859,1.5806,2.9281,222.947 +24,5.5005,4.933,5.273,1.3574,1,20.178,2.8445,743.461,137.629 +17,7.074,2.9599,3.256,2.0442,1,182.206,1.0603,424.577,7.0777 +20,3.1516,3.2619,2.437,3.6301,1,8.0816,7.577,662.237,8.4526 +23,7.8224,9.6092,6.241,4.953,1,170.448,2.0793,473.652,8.1398 +13,7.84,1.8269,4.469,3.7777,1,401.468,5.272,3.6233,4.3289 +26,3.8134,3.1125,9.105,5.524,1,245.538,2.6999,639.565,3.4764 +21,4.6961,5.0989,4.916,4.5723,1,229.109,1.1597,790.205,11.5353 +28,2.8872,8.6303,5.118,1.3817,1,7.8176,2.0944,164.417,6.4863 +12,9.789,4.1667,4.167,2.878,1,8.8785,1.7106,892.171,2.2042 +16,6.8104,7.4387,7.893,5.858,0,2.1475,1.632,189.746,5.1955 +19,9.4109,8.5637,4.248,1.3475,1,6.978,2.1272,428.608,12.4974 +23,3.7305,3.1002,2.693,2.0198,1,244.007,2.37,531.915,6.1654 +19,8.037,3.9275,862,2.4352,1,204.616,2.9474,320.727,5.7058 +17,7.8927,3.5656,5.968,3,1,137.689,1.2484,505.453,148.958 +23,7.2249,8.3286,5.915,4.4433,1,495.023,1.5088,721.173,16.546 +13,9.6908,4.435,6.108,384,1,198.998,2.6246,717.311,5.7899 +20,4.542,3.0842,7.188,3.8684,1,394.423,8.076,92.306,11.3314 +25,2.1765,6.7941,3.131,2.3529,1,10.5273,5.674,86.347,183.496 +16,7.0454,5.6544,338,2.6194,1,12.3521,3.987,985.255,165.577 +19,7.5638,4.3629,8.106,1.0413,0,284.196,2.9348,599.426,1.663 +16,6.1755,5.3995,1.289,3.0368,1,2.014,8.111,40.651,8.6417 +22,2.8614,1.9758,7.218,2.6862,1,8.713,2.2722,247.697,173.586 +16,5.5401,4.3072,823,8.212,0,7.1109,1.349,25.153,4.3065 +22,3.8097,5.017,3.753,1.1906,1,11.1561,7.217,159.415,4.7023 +27,4.8472,9.0119,63,3.345,1,263.925,2.74,72.94,151.241 +18,6.807,2.6084,5.222,3.314,0,343.115,1.3914,65.77,6.81 +23,7.7069,8.6783,6.531,689,1,155.939,1.6979,299.371,7.77 +23,03.09,6.4424,1.714,1.1024,0,11.9535,6.675,893.216,12.5476 +16,4.6479,2.034,3.716,3.3983,0,411.406,9.725,556.763,180.139 +26,3.4225,7.2463,9.302,1.5811,1,8.1388,2.2431,7.8329,11.9589 +20,2.7877,3.555,4.424,1.7137,1,339.163,1.0291,7.0836,214.422 +20,8.0505,9.9738,8.025,6.595,0,465.665,1.5179,151.755,2.5594 +15,9.1833,8.7264,9.272,2.8774,1,11.6105,3.431,219.151,180.996 +23,4.3321,2.9734,9.743,1.7107,0,4.3483,2.5502,888.563,130.473 +17,7.7615,2.5741,8.983,3.3816,0,489.879,2.2127,780.664,196.005 +12,9.073,3.8144,3.174,3.7073,0,135.387,2.2822,209.707,7.5937 +12,8.6151,3.5617,9.626,2.9235,0,137.832,5.346,256.007,11.5704 +26,2.6453,3.7234,8.124,1.3803,1,241.886,1.4855,64.042,197.663 +11,9.6066,3.1828,8.372,2.543,1,11.5529,826,872.808,199.628 +23,4.3901,6.2113,152,1.2597,0,496.436,9.453,323.562,9.0238 +19,4.0532,1.6426,9.542,4.5146,1,2.1483,1.0441,530.242,197.327 +33,1.5619,8.4598,7.781,3.8319,1,225.737,2.7411,891.474,163.776 +27,5.3756,8.124,768,2.465,1,274.173,2.9783,772.925,9.8263 +27,1.9811,4.7648,815,4.8273,1,233.475,1.8532,892.594,232.729 +26,3.2369,8.5273,2.326,2.7338,1,260.261,1.5503,285.293,7.415 +22,3.8525,2.4715,9.623,1.6427,0,49.379,1.3203,694.025,9.1839 +11,8.2794,1.757,5.007,4.773,1,438.451,549,12.2872,7.3669 +18,8.8794,6.1921,3.979,2.7187,0,154.222,2.4003,620.046,224.583 +23,3.7222,4.5791,8.399,4.3021,0,275.739,2.0155,310.985,2.3869 +15,8.7283,5.6716,873,4.3336,1,156,1.9479,704.466,150.726 +22,8.7151,8.9934,4.169,3.0228,1,204.785,2.4271,150.456,171.991 +21,7.8819,9.6993,3.757,1.9672,1,8.1937,2.7842,668.924,4.4202 +25,2.3203,6.3445,3.499,3.2515,1,35.568,1.1686,711.434,3.5987 +18,7.2129,7.6406,3.077,3.8107,1,11.0545,1.2792,858.585,1.148 +15,9.5052,8.381,2.101,2.0581,1,374.448,2.9254,690.206,3.813 +17,7.1429,1.6072,1.729,2.3813,1,15.658,1.9933,527.636,193.972 +29,3.9846,7.332,6.404,3.4031,1,462.914,2.5541,786.318,226.549 +20,5.5052,4.3137,9.194,4.3833,1,222.708,6.647,291.589,216.341 +16,6.8115,4.4597,5.089,3.9551,1,419.759,9.512,680.692,8.7673 +19,5.5951,3.0861,298,112,0,314.083,1.1748,727.282,17.421 +28,2.0796,6.0736,1.592,6.219,1,488.699,9.508,398.616,19.849 +22,3.8086,1.8517,8.301,4.2639,0,371.361,2.6527,989.077,194.997 +17,8.2216,6.2692,9.715,4.1691,1,363.852,1.5345,362.529,1.5044 +11,8.7528,1.738,3.492,1.944,0,132.433,2.8609,9.3646,5.1559 +20,2.2357,6.383,291,2.9214,1,25.243,964,31.044,225.347 +9,9.5715,3.3036,6.015,4.5292,0,145.057,1.117,10.8443,177.577 +18,3.9594,2.3114,7.753,4.5578,1,9.647,4.142,345.911,200.245 +17,6.9608,8.8899,4.554,3.9155,0,355.293,6.512,136.594,12.339 +16,7.7664,5.495,6.301,1.0479,1,11.7918,1.9199,44.514,9.4333 +14,8.3075,1.7661,7.165,3.6514,1,198.662,5.433,780.196,156.294 +16,9.5117,5.4872,9.606,5.055,0,142.319,1.1445,7.6769,11.3486 +20,3.8163,4.8107,165,4.4697,1,9.9818,2.3862,567.477,8.9703 +12,8.7266,4.585,9.974,7.457,1,3.356,3.743,5.3389,8.349 +17,2.1852,725,3.922,3.3117,1,168.945,2.414,885.763,3.7898 +22,7.3454,9.8807,7.232,3.0512,1,4.0872,1.6199,922.169,12.7059 +19,7.6778,6.5883,5.724,3.8845,0,27.016,2.0942,497.434,12.4763 +21,7.0995,3.6541,4.867,2.7579,1,9.812,2.7329,771.539,141.785 +26,3.2708,4.7043,6.981,2.978,0,47.001,1.9859,596.982,2.7894 +17,8.8574,2.6655,3.958,3.5292,0,483.238,2.8385,347.256,219.582 +20,2.5197,3.4487,1.261,1.9158,0,152.327,7.336,252.689,178.093 +23,1.4827,6.4904,4.889,1.6014,0,130.097,1.0255,76.101,3.1431 +19,7.4572,8.8281,5.219,4.9584,1,5.2203,2.5179,43.568,1.9043 +23,5.2793,1.8413,2.019,2.952,1,452.459,2.4332,921.036,154.301 +20,8.6419,8.4036,9.356,3.5536,1,293.432,1.9947,975.935,8.1961 +20,4.4506,1.2156,2.275,2.6316,1,305.062,1.5181,218.289,7.6572 +20,2.5145,2.1499,4.092,3.8499,1,447.928,531,565.453,201.598 +10,8.528,3.718,1.549,3.7604,0,455.393,8.413,541.565,8.2834 +15,5.9402,1.4081,5.358,3.2857,0,414.171,475,869.418,151.724 +26,2.7028,9.173,3.076,4.9887,1,386.721,1.535,694.075,12.8898 +20,7.4835,4.5944,4.893,2.299,1,438.621,2.3282,611.304,6.3112 +15,5.6,7.767,2.246,3.531,1,437.985,3.939,682.235,7.9594 +22,6.4388,9.5973,538,3.9889,1,184.322,1.0722,395.563,226.366 +26,5.1481,8.7899,7.792,1.8802,0,486.696,2.9324,960.689,7.9529 +18,8.4584,7.5468,6.411,2.2859,0,354.566,1.2275,6.7049,188.161 +14,8.4661,9.3347,3.407,4.8458,1,185.105,4.245,3.8838,206.706 +16,7.3845,2.2013,475,1.615,1,221.025,2.0693,421.434,1.7049 +32,1.9486,8.3637,8.656,1.6765,1,343.566,2.4298,16.303,159.145 +17,8.5497,6.8999,1.698,2.4311,1,180.549,8.375,549.352,179.823 +27,7.0391,8.6976,9.307,73,1,413.279,2.4281,1.892,10.4165 +17,7.2732,7.9691,4.786,4.4956,1,7.4032,8.146,465.086,136.638 +21,4.2668,3.465,3.404,1.4312,0,453.797,2.0793,301.975,3.8833 +16,8.9135,7.744,7.418,1.2885,1,150.599,3.744,210.337,7.6439 +15,7.5283,2.6246,8.768,4.1016,0,7.6356,1.2835,450.203,16.984 +24,2.0133,3.2859,3.707,1.3899,0,429.012,1.5615,856.003,144.617 +17,4.67,1.0791,4.073,3.2881,1,11.9732,2.1759,658.841,3.2733 +19,8.9774,9.3508,4.332,4.1075,1,421.698,1.9501,168.342,237.132 +26,1.4248,2.91,9.223,3.9624,1,148.132,2.56,503.884,225.069 +12,9.6527,5.2062,6.926,3.9098,0,466.932,5.529,932.354,5.3788 +18,7.1125,3.9133,2.476,4.432,1,10.9539,1.9837,444.833,210.029 +18,6.6824,9.5993,185,3.992,0,3.4825,3.833,475.841,6.4121 +25,3.435,3.3505,2.304,1.5339,1,468.266,1.4342,941.944,135.297 +25,3.2391,7.7855,2.636,1.797,1,8.2813,1.5737,14.445,187.692 +15,9.4785,8.5542,2.302,2.5021,0,472.066,818,737.691,8.2579 +22,3.6845,4.3561,6.585,1.9739,0,411.989,2.111,30.617,133.235 +17,7.9795,3.7817,1.159,2.7851,0,4.0963,2.5178,867.233,10.8085 +25,4.5381,7.4775,3.874,1.4939,1,222.568,8.604,6.3819,182.448 +30,2.2533,9.129,6.251,2.4288,1,3.67,1.0384,990.498,11.4882 +31,1.0964,7.5493,2.909,1.6737,1,164.893,1.9212,770.923,136.059 +18,5.8983,2.2713,653,976,1,175.752,6.621,29.149,202.934 +15,9.782,8.8831,818,3.2468,1,299.817,5.786,763.247,167.675 +22,4.3222,3.8758,126,3.3672,1,487.948,1.2646,92.374,12.6601 +19,4.2147,5.7623,8.358,4.1462,1,8.4882,177,12.1788,11.071 +25,4.0968,8.3144,6.579,4.3738,1,164.575,2.7509,914.443,3.0424 +15,5.6849,1.8839,645,3.5223,0,293.551,2.8203,366.573,1.3528 +24,4.966,7.8451,3.911,3.4375,1,8.571,1.3446,1.6395,228.666 +16,8.9192,5.9616,2.786,2.834,1,355.355,6.277,12.1297,4.4766 +25,5.5497,8.9334,578,5.489,0,20.183,1.4117,885.946,6.6449 +16,5.5698,1.7197,5.228,4.0628,1,474.786,2.998,98.284,146.628 +25,2.2453,4.2068,4.811,1.1648,0,314.935,1.1934,896.418,198.702 +13,9.8447,8.3284,3.145,1.7778,0,18.154,221,447.121,199.954 +23,3.2498,1.923,1.378,7.265,0,359.737,2.1185,961.796,199.115 +27,1.6603,1.122,7.424,9.758,1,419.377,8.271,412.782,234.741 +22,6.9683,9.9057,8.799,3.8771,1,40.024,1.562,12.2559,1.3369 +15,6.3583,2.8039,9.442,1.3093,0,131.382,406,347.532,9.5964 +25,4.7363,9.7554,586,2.2452,0,208.492,1.5739,998.437,219.261 +20,4.7997,1.8253,7.399,7.584,1,226.089,98,629.686,11.2161 +20,8.0656,3.6109,7.265,3.3896,1,194.192,2.7756,346.599,209.111 +25,2.7614,7.5287,9.471,3.6413,1,155.432,1.5035,627.937,4.238 +16,8.3823,6.5778,2.529,1.8085,1,376.374,3.002,434.844,12.1048 +16,6.8387,5.8112,7.422,3.9237,1,6.112,1.0232,5.9053,221.389 +19,4.7707,5.299,546,1.1995,1,146.772,1.382,209.116,6.2708 +22,5.1223,8.4344,6.312,3.4595,0,7.0809,1.5927,2.9043,223.118 +14,3.3098,2.3495,3.508,3.6498,0,6.4385,367,262.244,2.035 +12,7.769,4.4247,7.689,4.8433,1,138.479,1.4193,742.169,1.8943 +20,5.6159,1.5545,8.633,1.1616,1,381.077,9.165,201.385,11.4438 +27,3.8877,5.9594,3.648,4.686,1,484.711,2.2848,532.776,2.5531 +18,6.3645,2.5054,5.256,1.3152,1,257.309,1.4468,704.588,5.4143 +14,9.9616,3.3384,1.174,6.143,0,169.486,2.5446,553.196,7.1406 +25,4.9174,4.7125,4.169,8.485,1,414.585,2.824,2.5217,11.5559 +12,9.2862,2.677,3.608,1.6706,1,3.3552,2.9086,369.709,9.3723 +18,4.1052,9.194,1.831,02.07,1,4.6584,7.806,447.214,221.315 +29,1.4926,6.8593,8.945,4.5186,0,172.683,2.3027,349.326,212.644 +25,2.8382,4.2897,1.481,9.781,1,224.204,1.3143,550.801,179.537 +26,4.7683,8.6479,6.357,4.8588,1,398.919,1.2785,518.022,158.234 +29,2.9767,6.9467,8.901,4.0508,1,462.632,2.6047,195.576,4.9042 +22,1.002,81,912,4.4074,1,265.638,437,754.454,144.438 +15,9.235,6.1671,7.932,4.6472,1,247.822,1.4334,169.552,3.5295 +11,8.5949,9.372,1.761,3.7662,1,10.6506,1.7786,464.376,10.8653 +16,7.6806,7.8093,8.174,3.9439,1,225.591,1.984,758.739,11.0766 +33,2.5103,9.9151,2.766,2.1891,1,461.822,2.5935,70.029,16.553 +26,2.0833,5.312,9.224,2.5523,0,19.645,943,437.864,20.043 +25,1.6084,6.8278,7.091,4.6624,0,10.5341,1.9705,791.031,7.6921 +17,7.5163,2.3731,7.853,1.8913,1,168.648,2.7842,71.662,9.884 +15,9.3593,4.376,85,2.097,1,257.297,2.1593,390.691,1.1273 +29,4.8748,8.561,5.828,3.8138,1,299.293,2.658,896.558,209.958 +20,2.0723,1.6742,8.211,2.8658,0,216.215,2.086,15.054,11.6718 +17,5.6115,2.6554,8.616,4.0744,0,379.268,1.4782,364.897,5.9523 +22,4.1395,4.4543,286,3.778,1,292.227,1.6945,700.832,7.749 +26,4.3734,7.1225,9.392,3.1062,0,332.524,2.0671,874.248,12.6903 +16,6.592,3.7588,433,1.2385,1,431.459,3.506,329.354,3.2903 +22,7.4685,9.2773,6.145,4.5163,1,432.844,1.9704,56.563,10.1987 +22,1.9954,9.446,6.934,5.495,0,10.1754,438,2.1721,12.3859 +22,1.3203,3.708,1.073,4.2153,1,311.672,2.028,377.134,5.5008 +15,9.949,7.0895,48,4.428,1,35.832,1.408,337.626,4.7721 +21,3.0946,2.2599,7.849,1.255,0,7.2926,1.8011,844.046,4.754 +32,1.4845,6.5641,3.847,1.1753,1,421.385,2.8744,8.3237,140.525 +20,2.7089,1.6422,1.071,1.6652,0,9.0235,2.0959,7.1493,4.8106 +27,1.3506,5.598,7.627,3.1326,1,39.964,1.7742,448.275,210.775 +17,4.5263,1.2102,8.492,6.586,0,8.0733,6.437,413.315,144.906 +18,8.2216,9.2998,5.874,2.1866,1,370.889,4.561,169.944,133.539 +24,4.0712,5.5175,1.612,1.0213,1,7.4074,1.8218,270.711,12.1124 +18,4.9977,7.9635,152,4.2765,0,189.415,6.688,974.453,5.1674 +20,7.0803,3.3265,7.008,2.248,0,7.1758,2.1198,518.051,232.659 +19,5.58,5.9266,5.501,1.7797,1,135.358,3.434,9.6975,232.091 +15,8.753,4.9495,6.508,3.1569,1,492.257,1.0189,5.9249,7.7105 +19,8.7943,9.4574,8.132,4.5654,1,5.3838,2.3193,5.1518,186.292 +28,1.0892,7.4757,4.342,4.34,0,203.232,2.4931,395.129,2.8619 +17,8.2024,7.3054,1.245,4.476,1,33.846,1.0357,866.961,187.327 +16,5.1466,4.635,0.94,3.143,1,4.7299,6.202,834.587,6.872 +12,9.8996,5.4967,5.453,4.2046,0,5.4516,2.8746,374.208,6.9392 +21,5.3491,4.6699,6.153,3.8996,1,7.1631,2.2832,776.679,12.1736 +17,9.8821,9.2784,9.334,4.5122,0,322.493,2.4212,754.726,9.4159 +15,7.7911,2.5734,9.316,1.5579,1,454.668,6.683,488.165,2.8279 +22,3.2374,2.6983,5.721,4.5588,1,412.995,1.2733,410.344,142.339 +15,5.8456,4.1135,2.976,2.0132,0,491.528,2.046,188.743,5.1322 +11,9.9292,2.4337,9.971,3.1705,1,289.069,3.282,285.983,10.6675 +14,8.7178,1.2918,6.808,2.1209,1,480.739,6.629,345.308,5.5443 +30,1.8763,8.5741,4.084,2.1382,1,152.467,9.097,814.591,20.582 +20,7.3573,5.5828,5.598,2.7332,0,210.752,2.9916,557.423,8.1125 +25,4.1102,8.6136,4.158,1.7796,0,198.021,1.2663,208.905,212.998 +29,1.0628,8.3113,8.883,3.9637,1,2.3679,2.0936,10.4869,7.8263 +21,4.6313,2.8204,4.825,3.1682,0,414.853,2.7133,501.697,4.3079 +22,3.1128,5.4774,8.235,3.4488,1,1.2359,7.382,669.653,138.392 +14,8.3698,8.322,8.402,1.1552,1,364.938,4.342,820.695,133.233 +24,4.036,9.1525,8.243,4.8479,1,203.532,7.298,799.342,148.539 +17,8.4477,4.0426,7.222,3.3009,1,3.124,2.6473,825.914,7.2514 +27,1.1954,3.9368,8.549,986,1,144.973,1.9971,453.369,7.6793 +20,3.7704,3.0276,3.872,3.7525,1,173.064,1.354,867.001,5.6983 +30,3.1705,4.6066,1.147,8.686,1,482.351,2.4608,450.162,222.816 +22,3.1021,2.5176,8.425,3.169,0,33.054,7.102,17.644,163.909 +23,1.6137,3.7485,4.982,2.6378,0,271.786,7.175,403.405,181.501 +22,2.6841,7.9995,1.274,2.7676,0,6.3525,1.7017,346.625,4.6599 +25,5.9999,8.3426,1.153,9.448,1,195.552,2.3702,398.255,158.779 +17,3.6222,3.0418,1.592,1.7419,0,1.7882,7.787,662.033,183.039 +17,4.7566,4.6901,751,4.7288,0,380.843,6.301,660.347,8.2189 +25,4.3918,8.7382,7.109,1.425,1,8.1388,1.4219,232.653,3.7846 +11,8.8831,5.267,2.038,7.778,1,297.218,4.026,322.771,167.281 +20,9.1477,8.8914,8.469,4.9628,1,349.696,2.2434,599.401,146.674 +19,5.4366,2.1918,2.813,1.5115,1,183.255,1.732,9.3287,138.148 +24,3.9714,6.7854,793,3.4013,1,316.297,1.5376,691.778,4.3816 +30,1.9612,5.8255,4.888,1.1578,1,382.116,2.6168,187.103,6.2998 +15,9.5806,5.5294,7.315,2.7506,1,9.2062,2.1977,852.204,149.972 +28,1.542,8.5936,3.814,1.9314,1,30.043,4.478,407.572,147.261 +16,3.6789,1.0157,3.471,4.8079,1,366.942,1.2613,228.598,133.133 +21,3.6826,3.4703,8.414,2.164,0,178.524,9.638,671.142,184.353 +25,3.8836,5.3825,353,2.9209,0,8.1246,2.4062,55.849,195.518 +28,2.4786,8.1129,9.747,4.7238,1,143.058,2.1571,180.216,6.6363 +11,8.0485,2.1644,6.482,4.9462,0,466.537,1.416,828.889,3.7826 +29,2.1025,8.0293,4.325,5.083,0,178.724,2.4709,458.756,4.828 +15,6.7142,3.9964,6.281,4.1716,1,5.385,1.2302,160.722,6.7514 +24,2.1146,1.8891,1.227,1.9106,0,4.1363,2.4107,79.822,22.746 +25,1.6348,7.5899,5.141,2.9741,1,9.0248,962,14.21,3.2919 +12,9.1849,909,9.851,1.8752,0,6.3756,4.039,968.358,210.903 +23,2.7112,5.1477,2.353,2.1956,0,247.522,2.2679,447.392,4.8811 +12,8.3913,6.388,7.223,7.943,1,173.776,3.432,73.094,8.3627 +18,5.9017,3.5642,435,2.8638,1,420.703,2.0513,457.448,3.0209 +29,1.7007,6.0108,6.525,2.7336,1,440.539,2.1707,195.687,2.4806 +16,9.599,5.5612,2.049,9.468,1,23.664,1.9866,760.533,2.2834 +26,3.2227,4.0466,4.705,2.7087,1,444.264,2.4547,296.463,8.2262 +14,8.7368,4.2905,9.801,4.8655,0,225.231,1.5349,685.594,12.5686 +23,2.5193,2.2677,1.953,3.572,1,320.981,2.6911,264.799,4.8194 +14,8.6855,4.5588,6.364,2.4049,0,8.1267,1.7085,248.697,223.842 +28,1.1191,9.5325,5.756,4.5804,1,2.6291,1.5236,462.871,140.741 +23,5.606,8.5045,5.651,2.8766,0,8.1943,1.5282,818.077,212.416 +17,7.925,1.4523,6.151,6.752,0,12.5923,2.7362,617.497,3.5717 +8,9.4132,2.978,5.022,2.7375,1,375.491,7.311,7.4022,3.4439 +20,9.1828,9.3352,169,9.049,1,8.6753,2.0851,736.526,203.221 +15,8.3766,5.2675,9.001,3.8375,1,6.5327,7.278,583.973,136.316 +18,8.9937,5.3784,827,4.8359,1,463.805,2.765,62.733,225.261 +27,2.793,7.8072,1.742,1.8041,0,344.401,2.8612,360.042,3.5255 +19,3.5577,3.1469,4.133,2.1746,0,236.653,3.892,56.06,6.244 +25,3.6007,4.8191,7.705,2.1075,1,4.7484,2.0586,37.817,219.975 +27,4.3935,9.6866,9.801,1.4265,0,425.895,1.2737,9.0691,167.721 +24,4.5399,6.7215,9.511,3.9709,1,5.4129,2.5113,845.986,19.372 +19,5.901,1.5375,8.994,3.0886,1,305.523,2.3196,681.246,7.1043 +20,2.4389,1.3323,1.584,3.203,0,333.838,4.313,673.735,736 +14,7.2212,2.0426,9.145,4.194,1,200.069,1.4035,201.742,11.5891 +29,2.5081,7.6671,8.784,9.354,1,455.608,826,666.961,237.602 +18,3.7928,2.9538,3.769,4.8958,1,2.535,1.2886,23.971,217.809 +17,5.5301,2.139,3.945,1.8833,0,409.058,2.1006,690.659,1.7285 +15,8.168,9.4417,4.599,3.0822,0,276.897,6.965,340.195,4.5068 +21,7.6552,1.6971,6.562,3.891,1,305.602,2.4301,165.939,7.4695 +15,6.8098,956,2.608,1.7233,1,493.413,1.595,907.202,199.296 +19,2.402,2.3713,229,4.0118,1,291.324,1.037,11.3604,197.931 +16,5.9234,2.3503,1.412,2.386,1,398.514,824,76.417,4.4401 +22,1.787,4.2201,4.401,4.523,1,7.6765,8.401,11.0758,12.7939 +26,4.3963,9.2039,282,2.8757,1,404.645,1.4013,687.872,12.0431 +22,4.7216,8.7918,7.645,4.6429,0,380.536,3.223,11.9282,9.9427 +30,1.3583,4.5689,1.067,4.913,1,484.055,2.9902,513.736,12.8621 +25,3.4659,4.109,9.175,2.2695,0,467.855,2.9987,196.116,7.0269 +16,9.6008,5.5501,8.953,2.8258,1,10.6993,1.5594,867.916,12.7572 +13,9.5827,2.4345,9.088,4.1746,0,232.467,1.704,40.747,164.546 +22,4.1709,5.218,7.396,1.1077,1,455.742,2.7804,2.5272,1.5001 +32,1.3879,9.3922,107,4.3081,1,320.383,2.3094,63.188,232.153 +18,2.6119,1.867,4.381,2.9596,0,23.185,5.038,450.688,3.9673 +20,4.53,1.984,1.314,3.6275,1,5.4469,2.3775,861.142,8.6472 +14,9.53,4.7246,9.877,3.993,0,175.879,6.928,438.813,11.2951 +23,2.2708,4.9161,333,3.8309,0,33.262,1.2907,417.029,9.836 +14,7.8716,1.843,5.853,1.5539,0,388.457,1.5975,459.552,131.607 +24,1.9781,1.4795,7.794,4.0262,1,223.583,2.151,861.255,208.794 +10,9.8313,3.7815,9.206,2.5458,0,2.7922,4.505,590.954,216.244 +22,4.4345,6.8373,7.555,1.3731,1,316.586,2.285,672.669,7.8286 +15,7.9771,2.2842,6.745,4.7638,0,460.793,2.5984,723.207,134.111 +25,4.0833,4.2301,466,3.8253,1,248.205,2.4804,93.814,186.431 +18,6.649,5.5735,6.054,4.9284,1,464.212,1.5698,839.145,6.0683 +28,2.7281,8.8859,942,1.8223,1,17.705,1.9871,928.011,12.6833 +26,2.3142,3.2607,8.839,3.2461,0,443.183,2.1579,349.872,8.8013 +12,9.4426,1.3356,5.438,3.0579,1,39.317,1.4296,222.692,9.0762 +10,9.2588,4.8927,401,3.4378,0,480.871,7.717,211.356,2.2593 +20,8.9872,7.4672,9.199,1.916,1,395.511,1.4442,859.223,9.7654 +20,6.6289,1.0986,4.893,1.4586,1,16.074,2.8524,832.285,3.8611 +19,8.2744,4.2468,8.686,4.5467,1,450.284,2.5135,653.907,7.2305 +22,1.6213,1.779,8.569,2.1191,1,334.866,1.3966,7.2313,7.9267 +14,4.0131,3.356,8.158,4.8032,0,8.1035,6.767,324.868,10.3344 +25,3.8233,4.8295,614,1.0675,0,2.2983,2.6688,736.859,220.059 +13,6.7208,2.982,2.471,4.9871,0,182.923,1.9147,256.083,151.439 +26,4.2036,8.4511,8.755,3.4879,1,393.432,1.2142,627.818,233.871 +23,2.3366,6.0215,899,3.882,0,309.107,335,547.314,141.756 +20,6.3682,4.5393,4.581,1.9843,1,263.564,2.2553,270.046,193.318 +13,8.3295,4.0794,0.44,4.535,1,1.864,9.509,934.995,200.196 +22,4.4391,4.9725,1.751,2.7273,1,21.775,1.8189,264.172,177.361 +20,2.1904,4.044,9.684,3.4047,1,7.8862,1.7089,895.843,16.078 +30,2.7702,8.9279,2.131,474,1,227.284,2.0989,545.523,10.03 +29,3.1373,9.983,1.909,3.1584,1,495.885,1.6129,10.091,136.146 +23,3.6991,1.8149,6.607,4.3954,1,439.769,1.8912,835.289,4.6492 +15,6.7852,1.2038,2.428,8.914,1,155.315,2.446,793.518,148.379 +17,6.4085,1.4358,9.388,3.6886,1,296.754,1.9958,832.665,12.3431 +19,7.2647,6.6103,109,127,1,251.048,5.826,641.767,193.038 +22,4.2625,6.6144,58,4.631,0,6.5024,1.1759,714.499,21.661 +19,8.416,8.4792,5.049,4.9146,1,494.903,1.5376,907.987,3.1871 +30,2.8368,7.5183,4.881,1.7709,1,212.588,2.0606,136.421,165.818 +23,5.2214,4.4969,1.634,5.354,1,25.283,2.2273,9.2207,228.011 +19,8.2084,6.1286,4.945,3.2929,1,32.38,2.1148,133.825,220.291 +26,2.6214,6.8828,4.117,1.492,1,9.5772,2.853,871.371,200.262 +26,1.9888,5.1274,8.903,2.4124,1,11.1113,1.1607,567.305,1.1602 +10,8.9532,4.7565,93,1.3589,0,9.6279,842,184.305,6.0596 +24,4.0864,6.451,9.763,2.3667,1,192.233,1.1953,150.295,3.5589 +20,7.1548,5.5747,6.244,914,0,9.9838,1.9406,450.969,222.464 +28,1.2281,6.4394,1.518,2.581,1,463.198,5.788,817.577,179.734 +20,7.2104,6.1285,468,799,0,357.157,1.5063,807.125,12.7628 +29,3.8449,7.192,5.381,3.0957,0,448.918,2.6546,852.741,235.056 +28,1.5017,6.428,2.349,2.8005,0,424.242,2.1934,771.255,4.6733 +22,6.4883,5.1974,3.012,1.1658,1,351.576,2.1761,7.1004,153.977 +28,3.1672,6.818,2.451,3.2332,1,12.1373,2.5461,722.965,146.251 +21,4.4813,4.4948,6.502,4.421,1,307.659,1.1977,523.772,8.1709 +25,1.7252,2.4167,5.535,1.3866,1,9.3149,2.2784,729.148,11.6491 +15,2.3245,142,78,4.16,1,6.6238,1.761,48.944,5.6493 +22,3.6818,5.5996,5.265,3.3125,1,316.288,1.693,488.704,162.508 +28,1.8078,5.9066,7.912,1.691,1,312.313,9.954,134.873,10.0378 +14,9.1974,9.7205,812,1.8757,0,7.8311,5.905,906.173,5.652 +26,1.0544,3.6148,8.897,2.5388,0,176.214,1.5556,380.876,228.188 +15,5.3547,3.9413,5.783,3.6585,0,3.3141,5.496,58.655,12.0341 +29,2.1092,2.018,9.506,1.4357,1,357.867,2.9267,215.085,169.352 +19,3.7691,7.053,1.481,4.9137,0,493.748,2.5533,37.52,4.7263 +20,9.3345,7.728,9.936,3.4227,1,369.953,2.9476,871.872,3.0535 +28,2.4553,2.4968,6.443,1.8641,1,422.076,2.4233,217.503,216.581 +18,9.6925,6.089,5.675,4.851,0,238.172,2.8533,214.045,141.824 +25,2.8521,6.8777,5.153,9.068,1,4.7792,1.1043,267.894,11.8404 +18,7.6741,4.7124,237,2.438,1,363.303,1.4937,578.914,12.5076 +20,5.9201,8.7635,9.396,2.4735,0,12.826,7.194,525.481,5.6689 +14,8.9603,4.4379,644,3.8386,1,194.147,1.9074,183.569,219.045 +19,5.9859,2.8491,916,3.6309,1,35.155,2.3647,695.049,5.1418 +26,5.811,8.9602,21,1.1964,1,452.392,1.4962,908.465,3.7922 +26,2.7591,8.6156,508,2.9748,0,243.125,8.891,206.841,223.211 +25,2.4961,1.6404,6.094,1.031,0,480.803,1.523,676.224,6.1818 +12,9.2484,2.596,614,1.9927,1,259.952,1.887,590.521,206.996 +20,3.9505,8.999,4.997,3.8205,1,6.1255,2.1634,33.565,185.403 +21,4.3487,2.8655,3.068,1.9975,1,259.217,1.3548,621.652,9.1666 +23,7.8384,9.7226,5.317,4.178,1,430.314,2.6947,21.781,6.096 +26,4.0494,5.5852,5.163,4.8808,1,269.023,2.7698,835.615,182.157 +11,9.5686,3.7326,194,3.0361,0,373.878,3.765,3.199,143.424 +25,7.6413,8.8872,2.825,725,1,273.979,2.9883,571.392,6.097 +21,6.3769,4.5314,532,1.8984,0,273.027,2.9095,325.592,213.811 +20,8.9281,3.1524,9.002,474,1,14.238,1.8814,882.547,173.036 +33,1.4465,9.4122,7.252,3.0136,1,10.063,2.4763,504.373,218.227 +24,3.3136,8.4952,9.961,4.1078,1,139.459,553,804.463,10.4993 +25,5.1853,8.4367,3.022,3.1497,1,220.419,2.9112,924.582,3.0768 +27,3.0428,5.1228,8.785,3.9304,1,404.795,1.3689,341.006,221.778 +22,7.6951,7.8944,6.031,3.9995,0,414.496,2.7291,881.538,144.342 +11,9.2729,1.7935,4.531,4.2551,1,8.1689,1.1554,729.016,145.454 +24,4.8139,5.7322,2.226,1.3333,1,276.427,2.3645,11.7093,140.224 +26,4.0792,9.8385,7.384,4.3563,1,208.014,1.2538,11.2881,11.3374 +10,9.654,2.9096,9.041,3.2705,1,285.468,1.0881,819.172,6.121 +25,5.1937,7.9435,2.353,1.4486,0,323.812,2.8403,473.633,147.125 +18,5.4014,4.9048,1.754,4.9365,1,139.806,2.0973,500.199,172.465 +23,4.1648,3.981,6.962,4.7509,1,459.621,2.5202,892.334,21.997 +18,9.1859,7.6302,977,2.8722,0,467.724,1.6301,904.765,1.7315 +17,6.1206,1.6857,0.75,4.216,1,5.2679,2.755,12.1579,6.113 +21,7.8596,6.3147,2.846,1.3075,0,351.509,2.2199,379.912,186.405 +10,8.3063,8.566,0.42,2.0802,1,1.6616,2.165,896.275,186.036 +26,4.0766,9.4687,3.843,9.199,1,2.3282,2.3006,821.656,5.0888 +18,4.9032,2.9172,8.521,2.6005,0,47.89,561,723.799,4.4332 +18,8.6362,2.2646,7.714,2.48,1,347.427,2.4872,11.0948,8.8114 +19,4.2693,1.2914,589,1.0641,1,162.271,9.956,624.983,1.51 +21,8.1454,9.46,275,3.364,0,334.939,1.7949,586.033,175.287 +22,9.4689,7.119,938,589,1,422.918,2.2481,175.495,160.754 +26,6.6089,7.4166,6.533,3.085,1,435.452,1.9109,77.612,206.094 +17,7.6746,4.994,9.705,1.9245,0,1.026,2.0171,318.857,10.3212 +19,8.2459,4.7473,5.801,2.0491,1,409.114,2.678,624.419,152.817 +15,8.6054,1.1002,8.212,1.5987,1,426.601,1.1219,368.217,228.948 +27,4.5555,5.5984,8.131,1.2897,1,297.785,1.6414,9.3551,230.113 +21,1.4614,2.4692,3.373,1.6939,0,239.952,5.248,529.547,1.7059 +25,4.6169,9.7715,964,8.169,1,5.5499,1.4026,313.577,452 +17,7.0638,7.9658,219,2.0173,1,11.9807,4.501,08.06,230.396 +21,5.0532,4.1299,7.687,4.523,1,245.243,1.9008,206.524,12.8476 +15,7.7407,1.5134,9.656,1.1221,0,43.254,9.728,622.667,168.096 +28,4.2128,7.8533,3.389,3.4223,1,401.567,2.577,11.0368,219.023 +14,6.7127,1.2205,6.481,7.089,0,247.965,1.0307,9.6592,10.3957 +23,2.6778,1.8933,5.622,1.7695,1,392.814,8.605,944.581,10.5757 +15,7.7443,2.1152,7.615,1.6059,0,382.867,1.4738,11.6448,4.1976 +17,5.9113,5.5689,8.662,4.6851,0,289.508,526,382.299,217.399 +25,2.8366,7.8706,603,2.1399,1,11.0163,6.114,142.077,155.442 +20,3.6272,3.1431,8.159,3.4523,0,174.002,2.3494,939.876,4.3265 +13,7.7375,8.467,3.123,3.0123,1,8.2032,1.4917,48.635,13.435 +18,5.3434,4.6454,2.286,7.052,1,3.575,619,12.2008,7.8759 +21,2.9443,7.4811,4.307,4.6977,1,4.0263,946,771.128,3.5324 +13,9.7054,2.2166,6.777,1.7293,0,379.813,1.3994,782.979,4.3649 +18,7.4361,2.1992,1.872,2.238,1,1.6743,2.2279,902.187,134.222 +18,9.6142,9.4723,6.804,1.5022,1,199.926,1.0536,708.599,135.452 +24,4.8439,9.5415,3.941,1.6782,1,49.289,7.439,6.4169,189.586 +28,5.2759,9.9047,7.956,4.637,1,39.762,1.1891,554.808,5.9516 +20,9.0816,8.0766,368,3.0999,1,375.309,2.8774,390.199,21.98 +17,5.7254,1.8818,668,1.7338,1,137.354,1.2695,751.095,12.4467 +14,7.3655,2.1198,6.498,3.1457,0,320.865,7.789,59.502,4.9001 +26,3.2696,3.4023,9.409,337,1,249.356,1.7077,727.949,9.9187 +22,5.0205,3.1813,7.134,4.9102,1,311.912,2.4322,188.639,221.606 +27,2.111,9.5653,7.963,8.526,0,217.908,67,44.27,11.4758 +27,2.8538,7.8907,9.046,3.2967,0,265.482,1.6743,437.783,209.932 +30,1.1985,7.2401,6.751,3.5789,0,494.198,2.5089,981.165,3.836 +22,1.3534,1.8596,2.902,858,0,164.656,6.469,2.8919,21.935 +23,9.7956,9.0953,8.698,5.586,0,10.8226,2.765,817.883,10.3349 +27,3.1812,8.2787,7.476,7.629,0,224.247,1.7331,10.6141,22.467 +15,6.9698,1.6364,4.244,1.2341,0,26.216,1.5502,8.9574,207.859 +22,8.5519,8.7117,7.105,8.412,1,4.2814,2.891,334.895,158.392 +18,5.9559,2.7225,8.677,3.37,1,402.986,389,703.759,161.483 +24,2.3783,8.087,9.757,2.1042,1,211.026,2.2204,681.662,5.0762 +21,7.553,6.5682,9.524,2.689,1,206.593,2.4557,631.602,144.679 +23,6.4023,6.538,3.253,2.367,1,32.942,1.4657,776.806,131.879 +12,7.5813,9.493,4.217,4.3062,1,386.622,194,240.054,8.0195 +17,7.9277,3.1885,1.095,8.529,1,49.297,1.573,637.506,12.1349 +14,9.7787,9.9281,2.475,1.8008,0,8.676,4.605,641.657,222.994 +23,6.1621,6.7843,8.824,3.595,1,172.778,1.6877,657.792,1.273 +27,4.0748,7.3008,3.608,684,1,8.4129,2.2159,598.509,10.011 +17,6.8362,2.1292,6.206,3.329,1,440.428,1.5932,229.308,8.1973 +25,1.616,7.878,666,3.4629,0,274.247,1.8924,915.156,230.695 +13,9.0766,2.769,7.818,3.3848,1,42.622,3.118,976.245,233.735 +23,2.0744,2.489,1.828,2.7607,0,492.613,2.911,692.295,140.559 +22,3.9506,2.3454,3.048,4.7626,1,275.103,2.5528,449.639,132.002 +11,8.3417,1.9275,4.483,2.5359,1,5.9076,148,541.819,216.771 +16,6.3758,5.7476,3.648,2.2471,1,180.634,8.529,11.7288,157 +23,4.5427,3.281,9.829,1.2377,0,1.8095,2.8131,369.762,134.947 +27,5.2609,8.2035,8.349,4.942,1,42.465,1.3766,976.373,5.912 +12,8.6909,1.8395,4.797,2.7408,0,8.943,2.0236,552.245,232.359 +21,04.06,4.6463,8.793,1.5745,0,296.092,6.651,565.021,7.6838 +11,8.8268,1.366,3.477,2.6201,1,5.3067,8.115,95.444,12.4992 +27,1.7932,4.8168,7.858,1.0306,1,3.779,1.527,887.491,10.0216 +14,7.9912,5.584,2.237,4.1909,1,12.8075,1.9143,573.029,21.447 +24,8.6279,9.7772,7.723,4.9985,1,275.926,2.8814,276.301,239.956 +21,2.6364,7.9059,4.565,1.612,0,3.7544,1.7233,12.5762,1.6413 +19,4.8731,4.9011,1.075,4.2116,1,307.444,2.879,865.015,175.687 +18,2.4895,8.659,2.733,4.3649,1,335.996,1.1008,920.891,8.832 +16,7.3594,5.9245,4.023,4.9804,1,484.849,7.325,499.342,3.3378 +24,5.8181,7.5876,7.493,1.7136,1,449.769,7.632,10.3603,9.7305 +16,6.7179,1.9072,73,3.7802,1,283.396,1.5162,610.162,239.555 +25,2.7684,5.6821,6.595,1.144,1,396.682,0.95,373.787,8.5816 +26,2.9057,8.1421,716,3.124,1,181.821,8.679,166.282,6.6576 +33,1.3735,7.6825,6.539,3.5242,1,292.856,2.9041,919.952,203.081 +27,3.8986,8.0299,7.607,3.7056,1,201.677,1.7519,247.055,208.305 +24,6.0377,8.7932,1.782,1.0359,1,168.521,7.853,71.405,8.1329 +14,8.7214,9.3768,5.871,4.2436,0,36.382,8.276,435.084,7.1682 +19,7.2023,4.0552,9.411,2.1049,0,148.335,2.4331,829.642,155.348 +25,4.9186,5.6877,6.108,1.0818,1,190.276,2.6594,703.827,4.9243 +17,9.5781,7.9066,6.113,2.7127,0,183.586,2.0371,131.928,11.6084 +17,7.4732,6.9714,7.364,4.3168,1,435.202,1.2943,455.116,3.3922 +17,9.3715,9.9552,3.332,4.8354,1,8.5202,2.2937,267.191,7.3141 +18,5.7483,1.368,7.005,3.741,1,190.738,2.8121,716.449,7.1396 +25,3.3301,3.5513,9.162,281,1,443.935,4.986,549.242,166.776 +25,1.4754,2.8103,109,6.735,0,7.652,2.5851,346.779,6.7746 +22,7.5348,2.6232,8.701,3.814,1,473.933,2.5465,336.166,215.639 +25,2.0917,2.2253,2.186,5.061,0,44.945,1.0995,12.3342,235.931 +22,3.725,7.0912,4.559,1.9152,1,208.924,8.754,221.684,1.9455 +19,5.7922,8.476,8.523,1.6925,1,326.513,1.6959,716.332,9.5435 +24,6.0797,7.4161,8.239,5.684,1,495.533,8.169,613.805,7.2442 +17,6.4052,6.9343,8.919,4.4112,0,277.474,4.361,36.204,8.4478 +28,2.4963,2.508,9.404,3.0771,1,4.8449,2.8592,837.754,6.3685 +19,4.4176,2.5283,4.472,3.9823,0,426.821,1.4741,489.569,9.184 +19,6.5547,6.2886,6.564,1.8577,1,6.7076,1.4168,79.649,3.394 +14,9.7284,7.6217,3.905,2.0512,1,12.8636,3.783,783.368,6.7156 +22,7.5487,8.7649,3.507,1.5881,0,436.758,1.5125,849.519,179.476 +19,9.3034,8.5214,4.316,2.1921,1,12.8015,2.2285,851.274,8.2571 +19,7.8599,9.6488,7.431,3.0519,1,372.543,7.441,682.272,4.988 +18,6.3255,5.8138,5.014,2.4649,1,223.837,1.1067,751.929,2.6027 +25,2.7282,9.0866,8.141,4.1896,1,379.874,5.367,779.138,8.3521 +17,7.2002,8.0851,7.452,4.5007,1,11.6176,1.0652,177.468,154.418 +23,6.6104,8.9467,205,2.3484,1,209.783,2.5838,307.242,6.0793 +14,6.4222,1.163,6.302,1.1987,1,159.081,7.112,11.3197,10.1387 +21,5.4081,9.659,4.366,4.726,1,12.4522,886,197.478,228.576 +19,5.7579,4.7353,4.566,3.6752,1,157.215,1.6087,780.504,132.567 +27,04.01,7.9818,8.184,3.2006,1,161.496,1.7385,947.639,12.7665 +16,5.6738,1.272,5.476,3.7271,1,477.689,9.867,676.899,9.8386 +27,2.778,3.9594,8.856,3.799,1,266.615,1.9247,887.187,133.642 +17,8.2466,2.7146,7.128,3.381,1,231.026,1.137,324.797,236.296 +24,2.672,2.9166,5.528,7.656,1,251.659,1.0217,847.338,6.0914 +25,1.7647,1.2326,7.545,7.373,1,498.065,4.337,345.398,226.063 +20,4.9262,8.0576,383,2.1034,0,326.795,6.894,895.225,3.5777 +14,6.9248,924,271,787,1,351.743,1.1476,800.065,2.6665 +19,4.9395,3.1251,833,4.2726,1,156.811,1.4802,983.761,157.121 +17,3.4908,1.7441,4.376,2.8905,1,235.769,2.796,82.9,6.0283 +16,6.0235,5.8904,2.355,1.8413,1,9.2033,304,404.228,10.6654 +25,4.123,2.5425,9.843,3.481,1,342.595,2.0221,11.8979,175.117 +11,9.3958,2.59,5.423,2.9551,1,172.247,1.2124,87.553,12.8362 +12,9.3038,4.8834,6.624,5.827,1,374.144,5.296,575.479,0.33 +19,5.5213,6.5269,2.788,3.7161,1,10.6581,7.048,85.956,7.3402 +17,3.951,1.213,3.218,4.0138,0,201.752,2.1602,393.258,1.5525 +13,7.6342,1.7551,3.355,2.7199,1,235.592,1.553,3.866,222.267 +25,1.3304,2.4717,6.987,748,1,8.3263,1.5262,6.1892,190.716 +25,5.2729,9.7375,4.737,3.9343,1,3.4796,1.081,673.793,236.122 +26,4.0269,3.9715,5.177,1.5391,1,158.534,2.4334,12.3318,212.426 +16,9.2848,5.9899,592,1.1133,0,272.446,2.3703,748.007,11.408 +28,1.108,2.4154,7.688,2.3528,1,326.339,2.0676,425.248,211.823 +16,5.9753,4.9046,904,4.6132,0,212.636,1.1544,567.477,161.385 +17,7.666,7.412,7.769,1.4869,1,250.139,1.8937,803.201,12.5904 +18,5.3652,3.474,5.632,4.5279,1,271.596,1.9195,260.541,8.8955 +26,1.7686,4.6873,6.691,2.683,0,255.955,9.966,418.774,163.432 +18,9.7522,3.9866,3.276,4.176,1,4.5164,2.6399,732.262,141.632 +19,5.6621,1.3688,4.094,3.4928,1,202.501,2.9546,919.243,147.404 +19,6.5277,6.876,2.312,953,1,10.2166,9.433,297.397,9.596 +32,3.1295,9.929,9.793,1.5831,1,266.868,2.4037,626.496,177.436 +21,5.3515,3.9565,497,6.819,1,379.038,1.5027,951.702,1.9522 +25,4.8623,6.2456,9.961,1.6612,1,289.743,1.391,652.364,174.278 +31,1.6741,9.6298,4.898,1.4023,1,11.0911,1.1597,893.861,175.383 +26,1.9554,8.3153,2.198,3.6817,1,10.3878,8.761,940.333,12.3826 +18,8.5373,4.6355,5.075,3.5101,1,1.8499,2.7585,930.049,6.3188 +25,3.1584,7.3749,396,4.7746,0,21.319,2.2224,760.892,12.4626 +19,2.7546,1.2814,9.048,3.6221,1,216.431,1.3221,556.575,2.9541 +21,5.5442,5.121,8.186,3.4741,1,11.8218,2.2547,10.5785,6.8435 +16,7.9187,2.7906,7.258,3.471,1,382.129,2.1558,230.479,10.1112 +21,1.5575,1.6116,6.098,4.4148,0,193.243,802,263.209,161.576 +17,6.1913,4.2628,5.798,1.4812,0,334.701,5.284,4.2927,4.4932 +27,2.0729,1.3101,9.967,1.5005,1,320.035,2.5089,11.0904,3.7961 +30,1.3281,6.9899,278,3.7061,0,30.237,2.4342,301.809,145.871 +33,1.4747,4.5624,7.797,1.1435,1,454.033,2.9906,9.9834,163.091 +11,8.5075,5.3114,5.814,4.5601,1,7.945,581,17.784,2.1977 +21,2.0618,1.4638,9.759,2.6739,1,3.4019,1.6211,6.3873,7.959 +25,1.4064,1.3977,8.278,1.5006,0,36.107,2.104,422.367,3.5316 +25,4.9411,5.8342,9.985,3.8805,1,176.763,1.7476,823.114,216.246 +25,8.5959,9.8501,5.883,1.5616,1,493.261,2.1313,814.121,161.433 +15,3.3617,9.625,2.045,4.8164,0,10.8206,4.118,905.842,221.046 +15,4.7954,2.8573,5.037,4.9149,1,9.171,45,748.144,159.532 +27,1.3593,8.6946,7.111,3.334,1,294.111,2.791,251.998,231.657 +19,5.0417,7.227,7.744,5.682,1,139.713,1.1402,705.366,10.5338 +19,6.1985,8.7589,5,1.316,0,170.246,9.868,756.284,143.784 +23,6.1382,5.2429,505,2.5771,0,460.512,2.622,547.676,144.285 +17,3.9918,4.0827,2.352,4.2572,1,1.3121,2.506,80.894,754 +22,3.8398,3.0968,8.749,9.244,1,26.563,1.3281,8.0553,6.589 +27,1.9596,2.9712,1.529,522,1,16.745,2.8735,598.833,3.4864 +22,4.3012,3.058,6.665,3.724,0,172.996,1.5087,485.094,12.2671 +27,1.8955,8.848,2.661,2.5348,1,12.3904,3.972,80.716,10.3326 +13,7.8994,7.238,3.565,4.4235,1,6.7425,8.738,136.681,12.954 +19,9.6965,6.6972,9.406,2.118,1,1.7241,1.8804,220.498,192.118 +17,9.7307,7.9875,2.404,1.0616,1,493.848,36,563.105,197.338 +18,8.7856,2.5711,95,3.4663,1,330.183,2.9043,947.733,234.484 +18,6.4071,6.1804,693,4.1293,0,388.603,1.7009,9.2368,133.811 +17,7.3078,4.6007,5.046,4.037,1,3.2501,2.1124,745.943,8.3332 +20,3.5669,7.8244,6.417,3.9253,0,7.419,1.4969,213.345,7.3927 +20,6.6769,3.0926,3.273,649,1,300.144,2.8738,11.4394,8.1778 +22,5.1008,6.4318,6.903,1.9862,1,361.916,1.7677,400.818,7.7719 +21,5.3382,8.8221,61,4.9237,1,197.433,1.986,587.222,9.4301 +18,7.82,4.0215,8.573,4.9444,1,193.878,2.5825,828.748,1.7972 +21,3.5373,6.662,8.166,3.0121,0,19.224,2.5847,638.345,152.024 +19,3.8624,5.1605,9.855,3.5463,0,7.6378,845,49.675,13.633 +12,9.3218,3.4597,9.365,4.7564,1,376.957,8.499,292.811,11.0871 +26,1.506,6.7223,3.562,2.2496,1,10.7596,739,299.628,1.9465 +22,5.3707,9.5103,3.993,6.843,1,162.205,199,772.871,2.237 +17,9.2152,4.8561,746,3.3447,1,33.563,2.6303,12.2919,130.825 +15,6.4933,4.6619,1.341,4.8005,1,52,9.514,155.009,8.779 +19,5.9177,6.5458,314,3.486,0,383.129,1.0409,722.539,173.949 +18,3.2477,1.035,1.185,4.0166,0,449.547,2.989,961.432,238.507 +22,4.0895,2.5351,4.549,2.1137,0,2.5809,2.9692,12.9032,143.378 +23,8.6684,9.1898,552,4.823,1,295.812,2.4788,613.332,173.624 +23,6.033,6.6994,2.112,8.444,1,204.229,1.7156,246.797,10.5345 +16,5.6327,1.344,266,4.9133,1,3.9232,2.3158,3.55,160.179 +26,1.8962,2.0463,7.194,2.4659,1,341.115,2.3313,833.945,156.427 +32,1.1443,6.8284,0.02,601,1,306.159,1.9702,513.519,197.782 +16,9.6732,7.644,9.734,4.7768,1,32.133,522,3.3651,170.722 +26,4.3929,8.3986,2.216,2.4889,1,406.748,2.1609,896.499,179.772 +18,6.4289,2.9218,6.639,4.1813,1,143.459,1.7089,540.328,133.593 +31,1.7174,9.3103,4.348,2.7423,1,338.534,2.1722,739.697,11.6284 +20,7.148,5.5295,597,5.085,1,371.659,1.6304,42.927,11.1992 +16,9.3931,6.9654,4.722,3.0778,0,8.4407,2.869,193.034,9.4083 +19,6.181,5.9674,5.168,4.987,1,478.533,1.8811,470.918,6.3847 +23,2.135,1.2274,8.547,1.737,1,169.991,1.721,294.796,7.995 +26,6.2355,9.6311,7.323,4.209,1,356.854,2.5284,303.768,161.063 +15,7.8971,1.2288,793,1.1774,0,37.701,1.1377,647.439,216.231 +19,4.6577,2.5488,2.092,1.9693,0,252.015,9.474,10.3139,223.316 +14,8.9185,8.1363,3.119,1.8635,0,6.4359,1.5095,403.044,139.335 +16,6.8381,6.186,1.164,4.494,0,137.831,1.7534,551.179,2.2593 +17,9.0932,8.3815,4.569,2.5224,1,11.7123,6.614,712.759,210.879 +20,6.6115,5.1574,9.843,2.2359,0,259.321,2.0468,63.657,179.459 +24,2.1816,3.7699,5.146,4.0901,1,130.634,2.4071,887.384,6.0339 +31,3.7872,9.2185,7.419,2.445,1,273.385,1.732,99.246,192.851 +21,2.8162,3.625,6.829,4.323,1,144.103,1.5689,938.049,11.3282 +17,9.1794,8.5613,8.499,1.084,0,49,8.839,766.511,213.022 +15,7.8436,2.3082,2.157,3.4399,1,181.628,2.7287,689.155,5.9427 +22,7.0876,8.4874,7.538,2.6281,0,303.425,2.2635,4.5077,192.217 +20,3.7087,1.392,8.814,4.3801,0,386.848,1.4409,538.164,170.858 +24,2.6564,5.8022,1.715,2.4927,1,1.4182,1.9773,66.708,3.466 +20,7.8081,8.8811,3.468,1.1091,1,12.9157,1.0106,418.811,13.52 +16,5.2674,4.7354,9.701,4.0257,0,492.731,1.795,390.949,171.728 +24,3.0321,7.4657,7.808,1.4716,1,130.908,6.118,547.101,3.7539 +17,6.5496,8.0467,2.826,4.6784,0,388.599,2.385,907.574,12.7656 +28,1.363,7.3649,5.639,1.2521,1,254.687,1.5245,268.319,7.2979 +27,3.9355,9.2533,4.043,8.386,1,6.1087,1.8662,405.064,167.101 +21,5.217,4.4683,0.49,2.4666,1,32.17,1.1413,656.557,12.9634 +25,2.3316,1.7313,3.552,2.526,0,48.317,1.5905,194.147,14.915 +10,9.8619,4.781,2.793,1.821,1,443.415,2.563,836.555,1.741 +23,2.8819,2.4646,6.748,2.4801,1,345.146,2.3099,669.407,3.3071 +20,2.1732,1.432,7.785,1.0755,0,256.074,983,358.739,132.501 +26,2.8318,5.5795,874,468,1,159.667,1.9033,724.945,4.3481 +14,7.9216,1.8495,1.553,1.4803,1,178.483,1.3,286.553,11.9686 +17,4.8296,3.893,8.229,2.3868,1,173.103,5.514,776.716,165.607 +17,6.0887,3.599,2.548,1.9714,1,461.041,1.5692,7.9981,194.345 +33,1.1891,8.3157,4.273,6.773,0,10.5656,2.3428,432.484,3.4322 +27,1.3099,5.9145,9.014,2.8984,1,189.015,1.2406,269.022,178.051 +19,5.0124,3.5809,4.545,3.5517,1,215.982,1.1031,818.533,8.7165 +16,8.3499,8.9423,1.971,3.3777,0,20.445,4.274,75.522,162.944 +11,8.9671,702,1.599,1.9688,1,2.099,1.7837,843.443,3.4868 +34,1.7804,9.8032,473,688,1,135.487,2.484,655.047,12.3642 +24,5.8453,6.1629,7.627,2.4974,1,249.284,1.684,797.369,201.015 +10,9.2191,1.8346,9.972,4.4522,1,380.247,4.953,44.44,2.5544 +27,4.4918,6.7907,7.874,2.3436,1,284.737,1.9837,681.277,198.643 +15,8.4661,7.6338,877,9.784,0,192.431,904,4.0806,10.8664 +29,2.2033,4.2934,7.478,4.653,0,33.257,2.5142,881.917,197.585 +20,9.4186,8.6163,8.954,4.7196,1,332.947,2.7645,687.926,230.013 +13,7.7628,1.5073,763,3.715,1,12.3962,1.7911,867.435,3.8317 +18,9.472,2.7884,9.299,1.5648,1,5.1887,2.6453,77.315,161.897 +13,7.0896,9.349,3.964,1.4768,1,401.592,2.535,293.513,5.6423 +17,4.2706,2.1088,9.216,4.4761,1,264.891,685,280.151,3.2533 +14,9.4436,2.3873,757,8.878,1,8.8262,9.518,801.642,15.074 +27,3.4801,9.1763,7.152,2.6752,0,131.036,2.3195,192.862,2.5916 +21,3.9896,7.811,7.357,3.5675,1,383.212,1.4527,11.9555,11.1641 +19,7.3073,4.2742,9.969,1.982,1,326.636,1.045,2.4892,152.629 +18,7.8878,5.324,7.689,1.995,1,472.583,4.742,305.444,11.9911 +19,9.3646,8.9869,3.826,1.1388,0,232.474,2.4319,10.8272,167.297 +25,2.8432,9.977,5.572,4.509,1,2.6093,616,80.367,192.339 +19,8.182,7.5339,3.666,2.6156,1,350.211,1.0118,489.698,209.339 +15,7.6469,9.7079,196,4.0772,0,12.7455,7.283,25.999,134.369 +27,1.5742,7.871,2.485,2.7784,1,161.927,387,606.066,6.6391 +22,4.485,9.632,222,4.718,1,9.8324,5.161,7.9649,12.2319 +24,3.5449,7.0727,5.488,4.5457,1,154.468,1.4814,72.886,9.3045 +22,3.7404,7.976,9.062,2.4144,1,41.474,1.2782,506.379,5.4222 +14,9.8465,4.0192,9.127,1.5914,0,288.357,1.5551,1.6412,12.6976 +18,6.785,6.466,548,3.1983,1,5.4577,2.1829,326.025,5.437 +17,7.4591,3.5072,799,3.3744,0,293.302,2.677,75.269,145.336 +10,9.7896,2.7338,2.451,2.4918,1,316.782,3.554,196.234,197.185 +20,4.3948,5.774,2.551,4.1114,0,442.412,248,962.258,239.865 +21,8.2166,9.335,949,9.166,1,429.823,9.611,897.663,221.203 +15,4.9108,3.498,3.885,1.6721,0,3.1438,1.6389,780.456,2.1556 +12,8.8258,7.6923,5.877,3.4319,0,433.349,2.997,8.7763,3.8983 +26,2.6259,7.2273,5.782,1.2334,1,2.5442,2.1479,360.299,3.3275 +20,9.5292,9.6395,5.434,2.1992,1,7.7061,1.6683,305.215,134.004 +27,2.9689,9.3071,3.387,4.8187,1,5.5775,2.2454,146.249,1.1025 +23,3.936,7.6223,7.065,3.1294,0,9.0849,1.0737,999.623,224.878 +16,7.8057,5.2041,8.265,4.7453,1,401.631,1.2033,155.726,1.4841 +20,4.5438,2.0427,3.463,3.6122,1,34.306,2.4227,322.174,9.39 +18,6.4739,5.4524,855,3.6233,1,343.481,801,88.134,214.553 +26,5.2012,7.6535,2.963,2.9593,1,461.064,1.1443,152.942,227.611 +15,7.6813,8.9567,1.374,711,0,195.926,405,474.833,11.167 +23,3.055,7.8971,4.674,2.5986,0,1.644,1.666,975.933,11.7224 +27,1.5261,1.9527,1.559,1.2633,1,319.884,2.5544,254.816,152.683 +20,3.6994,5.9969,4.628,4.9934,1,434.037,837,706.028,9.7833 +21,5.2688,3.3217,221,1.3348,1,48.813,1.8414,8.9239,7.7919 +24,2.5122,921,7.387,1.1534,1,181.946,2.5363,604.863,177.462 +20,4.1932,2.2022,276,3.1194,1,411.076,1.4818,345.659,142.886 +21,4.5998,1.1322,5.547,2.5547,1,424.614,9.391,702.569,11.5601 +32,1.5165,8.4272,1.695,1.068,1,7.2219,2.9898,438.561,2.4189 +14,6.2498,2.5851,1,6.477,1,315.749,1.945,306.009,1.6527 +10,8.9591,2.847,8.692,4.0552,0,8.657,6.313,550.548,12.2596 +30,2.3657,9.5994,6.715,2.4185,0,223.315,2.6557,14.829,148.664 +20,6.3803,3.7909,989,7.301,1,439.633,8.919,816.288,157.803 +19,6.9827,959,6.641,2.3262,1,394.734,2.4595,753.202,214.774 +20,4.774,2.8385,6.116,1.2657,0,28.517,9.996,549.518,195.894 +16,7.3099,1.193,4.734,1.118,0,404.355,2.4359,373.378,3.3783 +17,4.6966,1.0281,4.193,4.7886,1,7.6414,2.0572,916.074,190.663 +20,5.5417,7.749,8.871,1.8101,1,9.746,1.4056,638.114,162.313 +30,1.0662,5.9326,2.451,2.322,1,10.4432,1.5688,291.952,198.727 +13,7.2255,1.8935,3.983,4.8516,1,388.007,533,808.642,202.405 +15,6.9521,3.6124,3.291,3.9742,1,445.483,3.477,63.867,8.2928 +31,1.3456,8.6202,7.712,1.2721,1,281.418,2.1508,135.742,6.3185 +25,4.3143,4.2434,9.165,2.0445,0,478.986,2.5457,12.3091,132.632 +20,9.8113,9.1569,8.498,4.3114,1,364.015,2.1659,938.724,7.1666 +25,4.7866,4.9794,7.977,1.7871,0,281.842,2.7386,295.033,8.3924 +23,5.5175,3.9884,9.868,2.837,1,305.795,2.6702,666.848,1.6598 +21,9.1894,7.5039,6.971,2.6743,1,424.767,2.3346,4.607,237.927 +16,7.4554,7.318,7.511,2.1965,0,4.509,2.6944,560.937,7.4231 +13,6.2386,8.948,9.828,3.1975,0,8.4009,5.017,238.817,187.218 +18,8.1802,6.5197,7,2.3665,0,133.147,2.1941,14.823,238.358 +21,8.7793,4.8694,634,1.062,1,447.388,2.261,775.768,23.259 +22,5.112,7.9042,739,4.0719,0,472.472,4.619,811.447,152.132 +31,5.276,9.1627,9.178,5.658,1,178.085,2.7287,71.806,12.9279 +20,4.4745,3.8837,8.838,2.3204,1,461.929,264,2.1075,7.4226 +17,9.7004,5.9641,842,2.8995,1,273.424,1.3038,29.206,206.762 +16,7.2745,5.007,9.458,3.5275,1,236.637,644,367.352,8.1119 +31,1.749,9.8161,5.374,2.054,1,416.382,1.5701,693.942,2.5614 +15,8.7666,8.3108,69,3.6777,1,273.042,1.2365,757.988,7.0584 +22,5.325,9.1174,111,6.568,0,227.241,1.8692,631.576,7.5623 +23,1.6188,2.5434,5.446,3.2672,0,7.982,2.2993,791.197,172.436 +21,5.9475,7.7253,4.353,4.1317,1,6.449,2.3057,433.027,4.069 +18,4.7545,2.6547,4.512,4.4472,1,313.796,2.1667,546.427,7.6047 +7,8.8997,2.0874,4.004,2.8978,0,3.6708,3.056,7.3608,1.8381 +31,2.836,9.4427,9.177,1.5645,1,368.473,1.2523,432.892,203.616 +15,8.4382,193,3.592,8.168,1,311.171,2.4479,438.307,173.946 +27,6.0192,9.6539,8.562,1.7278,1,228.865,1.9629,615.405,10.4997 +26,1.4915,1.4926,9.029,2.6999,1,354.902,2.0431,384.117,10.3204 +15,9.7466,8.1944,4.995,9.817,1,496.536,6.808,24.607,3.9929 +13,5.6135,2.7592,4.469,4.7626,1,12.3178,9.752,24.522,9.2274 +25,3.6179,3.507,761,4.4857,1,278.528,2.8674,142.534,217.638 +24,5.2247,2.1676,708,1.648,1,421.428,2.5408,704.012,3.3278 +14,8.7207,5.8551,3.285,2.8098,1,8.437,4.948,626.343,183.607 +20,3.7441,3.481,1.025,3.9465,1,10.1754,1.6341,583.457,1.1322 +25,2.7341,6.5739,2.649,1.227,0,260.479,1.4715,535.709,7.4803 +20,2.1616,1.565,131,2.6195,0,276.123,1.331,373.862,203.265 +19,3.6807,6.437,2.947,02.03,1,4.3167,1.4118,77.103,10.6796 +17,8.0204,9.966,2.618,9.827,1,203.715,1.9287,922.804,168.647 +20,5.2446,4.1899,6.377,3.0737,0,259.892,2.9014,445.589,2.485 +27,3.0473,8.148,9.545,4.9685,0,211.488,2.626,414.998,164.022 +31,2.4957,8.8818,6.857,1.8264,0,350.298,2.6254,17.11,196.565 +26,3.9946,2.4481,9.266,2.7619,1,385.682,2.1101,674.002,193.259 +14,9.4593,5.7437,7.841,1.6393,1,230.131,528,562.511,10.5329 +24,4.0872,7.6836,7.279,4.3847,1,21.283,1.3214,988.118,216.994 +12,9.8931,2.8883,4.141,4.323,1,352.682,1.5334,58.848,137.994 +25,5.3671,4.0901,3.248,8.939,1,277.651,2.5275,295.725,196.289 +28,2.6125,5.2397,8.463,4.4997,1,43.522,2.7685,567.311,5.123 +15,9.0203,1.3487,9.054,7.575,1,240.573,1.3546,984.848,5.0458 +18,5.1432,2.598,4.519,4.772,1,287.164,9.014,726.102,181.047 +12,7.387,1.5281,91,3.2647,1,6.4403,1.0121,137.292,155.192 +18,9.8534,6.2685,7.925,1.9295,1,417.999,1.736,349.731,162.314 +21,1.4516,7.362,2.851,2.6537,1,211.146,8.249,305.698,5.6777 +26,1.8703,1.897,99,3.2629,1,359.532,2.7322,858.256,9.5909 +18,7.4841,3.3785,805,2.642,1,214.741,1.256,615.051,6.2011 +22,3.5364,7.787,5.174,1.4648,1,506,2.9702,812.001,1.635 +20,2.6587,1.917,6.852,2.3045,1,200.205,3.285,184.484,4.8946 +30,1.3543,9.1127,9.147,1.3329,1,7.3751,5.636,908.955,238.839 +23,1.1966,193,5.412,2.449,1,199.308,1.5348,6.7728,5.617 +21,7.9704,6.5343,5.032,4.334,1,160.672,2.6049,381.089,3.823 +22,2.2099,3.8441,2.907,4.1987,1,10.1274,1.0619,2.4008,16.725 +20,5.2095,6.7265,3.052,4.5569,0,6.1886,2.5124,192.437,144.515 +21,6.4531,5.8869,7.965,7.612,0,364.281,1.2764,962.604,179.043 +22,4.8552,2.235,449,1.2463,1,37.743,2.559,8.771,156.882 +25,1.244,8.4721,1.635,3.2612,1,132.499,8.323,153.953,5.3518 +15,8.0515,4.9194,945,4.7714,1,247.595,1.4157,925.601,12.0217 +30,1.0946,8.2254,4.729,1.4979,1,232.035,8.362,713.073,4.2394 +14,7.857,4.0601,465,4.2761,1,177.624,6.457,412.895,6.0849 +19,9.0397,9.8469,6.535,2.5301,1,138.819,1.2634,7.8078,23.686 +22,4.8956,7.7049,4.711,4.7828,1,9.3016,1.1941,787.189,174.883 +28,5.8199,9.6595,1.435,6.813,1,436.446,2.3614,497.799,187.884 +19,5.2929,5.1433,5.078,4.8684,0,416.656,2.2429,329.787,7.214 +21,4.5029,4.7369,9.068,2.2049,1,20.859,1.0757,367.143,9.1712 +18,8.9868,7.5545,1.594,4.7647,1,360.601,2.9768,510.225,13.326 +22,9.0454,8.8029,6.898,2.2935,1,249.166,2.9215,55.572,3.5922 +29,4.0223,9.6415,5.939,2.6504,1,4.2692,2.7535,819.918,203.651 +18,6.5356,3.2455,7.486,4.0239,1,411.195,1.7595,773.987,3.3504 +14,9.3422,7.987,1.506,3.6131,1,10.9636,1.2369,769.388,152.761 +11,9.6585,2.1065,9.416,3.098,0,353.409,9.391,732.005,132.765 +19,5.5806,5.4557,621,2.0849,1,263.699,451,760.209,203.835 +18,5.0754,1.7985,8.471,3.9622,0,34.527,1.8954,680.826,7.4835 +20,3.5082,3.474,2.466,4.7411,1,235.602,1.6595,869.343,6.818 +23,9.6298,9.3136,7.394,491,1,351.281,1.8896,56.188,203.139 +21,2.2853,1.4609,781,2.9392,1,1.6406,1.7279,525.636,5.3137 +17,6.2185,6.324,3.974,4.3299,1,2.0426,4.131,704.283,17.905 +25,3.543,5.9295,384,3.2656,0,44.817,2.0861,174.346,4.5875 +19,3.5111,1.2074,6.578,4.1941,0,374.847,1.0813,779.182,210.167 +21,4.6447,3.2598,934,4.4753,1,414.234,1.5489,936.794,201.375 +13,9.9891,5.6298,7.356,3.7548,1,228.293,1.097,303.297,188.991 +18,1.4947,1.8718,429,3.5851,0,229.823,66,614.935,11.7953 +20,6.2069,8.1962,1.906,4.8237,0,267.002,2.6297,4.2296,8.121 +26,1.7431,9.7216,6.641,4.3184,1,12.1831,4.462,768.165,3.1792 +23,2.3907,2.1476,983,4.0769,1,366.751,1.7465,564.071,10.9585 +23,4.9561,1.8691,9.718,432,0,414.727,2.6494,676.918,1.0475 +21,5.5941,4.5494,8.684,1.1951,1,453.612,664,151.563,1.5233 +26,3.3291,7.4777,6.263,2.7838,1,258.517,1.236,81.136,3.0121 +20,3.8481,2.816,8.191,3.5478,1,207.288,1.1332,263.377,6.2603 +23,1.7827,1.988,8.876,1.5161,1,415.467,2.677,687.944,179.837 +25,3.729,5.4122,2.595,4.666,1,376.333,1.2706,59.721,1.1516 +21,9.699,9.566,8.494,1.5555,1,433.637,1.4384,657.254,236.073 +8,9.5024,3.9128,1.948,3.8551,0,327.866,798,5.9735,6.5719 +19,4.0139,4.2013,4.133,4.387,0,441.657,1.4644,744.432,7.6847 +17,6.1377,9.689,5.583,4.5645,0,4.4521,2.815,797.297,5.9492 +20,9.1864,6.9461,7.139,1.8943,1,339.781,2.6774,480.068,144.574 +28,1.0557,7.1917,301,1.8627,1,4.4398,1.9505,414.772,4.662 +13,8.2962,5.627,2.905,2.0335,1,374.454,1.693,349.119,2.2457 +21,9.5353,9.7461,6.085,1.879,1,314.222,2.4811,928.603,2.3707 +26,1.8219,6.8887,3.574,3.331,1,7.996,1.0848,757.518,159.488 +29,2.453,8.9503,775,1.7916,1,29.963,6.769,701.633,7.9085 +17,9.6467,6.9938,6.517,1.017,1,7.314,7.618,926.351,10.4999 +21,5.8379,7.3512,2.344,2.1951,0,7.1206,1.7932,355.282,227.994 +22,1.1278,2.9041,1.459,1.1208,1,7.5232,2.447,633.837,4.801 +20,3.3187,3.0348,629,144,1,241.912,1.762,689.196,1.6847 +22,5.0495,7.8298,4.505,2.3542,0,5.776,1.8825,996.265,10.5942 +17,7.2362,2.9671,169,1.0298,0,6.2828,2.9457,432.914,3.9378 +14,7.5984,5.6277,3.264,2.2637,0,12.8084,1.4503,406.179,3.4718 +10,9.9588,2.4935,303,1.3887,1,429,1.2398,9.3643,9.8432 +26,3.5876,8.1698,1.081,3.0185,0,137.895,2.8416,10.7468,160.716 +12,5.844,1.105,5.469,4.9544,1,309.204,723,516.681,5.8284 +23,5.7999,8.2945,7.636,2.7362,1,300.785,7.216,17.947,210.231 +26,4.6508,6.0273,5.755,3.2345,1,484.767,2.7153,8.2202,8.6988 +26,2.5225,1.8691,8.263,4.5964,1,5.9815,1.9408,965.244,224.172 +13,9.7971,5.4204,1.276,1.87,1,432.786,1.614,951.903,11.8175 +18,8.6799,2.825,4.356,8.327,1,195.595,2.0219,332.024,174.417 +24,5.485,3.2347,6.094,1.414,1,193.518,2.4601,791.971,203.764 +18,6.4292,3.5153,676,2.014,1,174.405,8.219,873.824,12.7133 +21,3.0453,6.332,6.958,3.2251,1,6.2368,1.1487,47.01,204.078 +23,5.8941,9.8596,729,229,1,239.253,593,23.146,9.0716 +13,7.2547,3.153,6.514,4.2669,0,393.689,1.9,138.507,8.7217 +25,5.6365,6.625,942,3.805,1,437.716,1.9926,149.414,190.575 +8,9.9126,3.7123,6.953,4.5033,0,48.143,2.056,798.964,5.7905 +20,6.5021,6.4601,7.248,4.7472,0,392.646,2.0331,390.572,172.089 +20,4.3388,3.5625,9.935,4.9505,0,311.546,1.9754,696.573,1.8501 +14,7.9494,6.7375,6.934,4.0476,0,248.767,1.054,543.307,15.255 +30,2.5342,7.2924,6.868,7.093,1,437.449,1.6661,400.722,226.058 +23,4.4606,6.9055,5.148,3.5308,1,369.757,1.8418,132.578,10.9552 +20,4.1226,1.1396,8.679,1.0166,1,8.0629,1.2905,340.114,9.9832 +25,4.8863,6.5689,9.968,4.4856,0,341.275,2.704,841.772,12.973 +16,8.036,2.7999,779,1.583,1,215.519,9.851,813.284,172.696 +14,5.3576,288,6.125,1.634,0,29.79,2.015,3.8085,8.6121 +14,8.1461,4.1483,79,4.5883,1,449.177,2.0156,148.874,31 +22,6.1884,4.3354,7.267,662,1,326.285,1.8157,758.342,12.05 +26,4.0786,4.6717,7.086,9.698,0,469.362,2.9672,342.376,10.0627 +18,8.2898,7.0482,7.756,2.1097,1,433.185,6.939,647.155,12.7849 +18,3.1446,3.0884,1.246,3.5036,1,6.4451,1.1865,567.049,171.675 +21,3.0194,3.1528,6.537,3.2378,1,5.826,1.3835,655.547,6.8014 +18,5.5405,6.055,2.957,3.3471,1,192.206,2.5845,6.316,12.1262 +26,3.3476,6.8682,7.603,4.4001,1,432.665,1.2437,931.808,6.0813 +30,1.0818,5.6783,2.404,6.052,1,11.5063,2.3164,3.076,11.0243 +16,6.8347,3.4943,684,2.6108,1,34.57,4.708,1.7952,8.2689 +19,5.5998,7.0519,295,3.6274,1,237.998,1.2294,233.891,8.857 +21,5.1997,5.3736,9,3.1806,1,373.039,4.649,993.561,139.047 +17,9.7027,4.6924,6.334,2.2416,1,8.2488,2.849,8.1807,165.507 +17,6.1408,5.1132,1.133,856,1,11.9546,5.333,875.755,3.038 +18,8.7709,6.3635,6.593,3.023,1,12.1262,1.2572,167.498,210.394 +26,2.2551,6.6,9.256,5.947,1,274.233,2.468,11.8012,8.744 +22,6.1229,2.8896,9.692,1.7161,1,144.812,2.7642,781.181,154.466 +14,8.8118,1.4074,2.359,5.883,1,405.861,1.8715,848.212,2.9374 +19,6.248,1.5663,8.093,2.1304,0,173.397,2.8874,794.261,137.149 +18,7.4621,6.3939,3.536,8.932,1,330.426,1.268,248.619,16.283 +25,4.3484,8.7287,9.005,3.8958,1,474.251,5.249,881.044,3.7785 +25,1.832,4.095,7.875,4.3574,1,303.462,1.1401,8.1167,218.917 +17,5.1211,1.6952,739,1.9482,1,12.1077,1.8641,348.558,181.792 +24,4.5503,7.566,4.071,2.5567,1,415.228,9.886,468.551,12.8141 +14,8.8035,8.3249,3.373,4.7675,1,6.271,2.1356,7.7058,3.9856 +24,3.196,8.8058,7.852,2.6775,0,12.8269,4.954,584.045,207.732 +10,9.7006,6.0683,4.103,4.9754,0,193.745,1.8019,563.789,1.647 +18,9.6232,8.6073,6.846,7.107,0,9.7989,1.1939,992.261,2.7641 +18,3.2287,1.541,6.024,4.3111,0,302.009,1.5247,625.447,167.562 +21,4.1325,1.0724,9.756,2.486,1,27.9,1.7089,40.357,6.0927 +12,09.06,9.258,9.378,1.136,1,203.248,1.797,792.283,11.0236 +15,9.6996,7.126,4.277,4.8611,0,14.719,2.7721,341.617,12.9338 +18,4.991,6.958,7.236,4.8252,1,216.954,2.3583,53.754,10.9976 +21,3.889,4.9636,8.295,1.9164,1,145.601,1.3274,6.4915,2.0134 +17,5.7348,4.7271,8.989,4.7707,0,11.0629,1.6424,329.439,176.994 +14,7.1899,3.107,681,705,1,175.635,976,532.827,5.7598 +27,3.4613,8.7041,3.021,3.4006,1,301.168,1.4938,705.289,177.248 +16,7.6283,1.7043,3.202,9.596,0,324.195,1.2789,10.8042,20.767 +24,1.4649,3.5246,4.344,1.2332,0,148.674,1.1235,799.215,12.873 +31,1.4437,7.7417,1.693,3.8967,1,473.699,2.4461,901.157,16.953 +15,4.4766,3.042,4.962,1.8868,1,13.098,5.458,288.227,8.865 +25,4.1813,6.7295,6.632,356,1,356.066,5.289,767.693,882 +24,3.8407,8.164,4.974,2.0712,1,4.074,1.565,188.545,4.7319 +28,5.4192,9.3227,6.658,1.1403,1,332.422,2.0614,528.182,8.6012 +24,3.8866,8.763,664,3.4166,1,229.974,673,799.659,4.3868 +27,2.7303,3.1938,876,9.722,1,284.554,1.6375,392.627,15.239 +21,3.7852,5.8636,9.391,4.2113,1,9.2036,8.961,3.6037,6.6453 +12,9.7741,7.729,6.179,1.3355,1,216.782,2.2706,544.568,20.298 +22,4.7,2.5787,8.814,1.9651,0,383.139,1.4066,846.253,134.545 +22,5.2024,9.422,1.314,1.4902,1,383.542,2.5022,11.7244,9.0739 +19,6.1889,3.1519,7.974,3.2196,1,11.8778,1.1909,3.9345,214.339 +22,9.8501,8.7519,1.191,5.058,1,17.63,2.4813,81.095,198.807 +23,3.1744,3.4717,408,2.3905,1,1.907,2.1495,274.461,196.808 +18,7.1315,5.619,3.238,1.6723,0,4.4981,2.4848,37.07,174.804 +15,7.4439,4.3338,5.856,4.4207,0,6.3365,2.4373,9.6112,147.411 +19,6.4659,4.5892,3.015,3.671,1,146.826,1.4591,10.5653,8.8038 +28,1.7972,9.6957,6.373,4.1485,1,379.508,1.1043,618.398,10.1424 +21,7.0919,2.9615,3.674,8.384,1,255.125,2.2954,556.707,15.531 +27,1.5769,6.2732,8.608,4.429,0,396.304,1.0846,299.478,4.1489 +19,6.3653,4.2006,6.339,1.0116,1,377.453,2.682,45.821,198.676 +17,7.6562,6.115,2.153,5.133,0,293.569,2.5765,394.316,225.281 +23,2.8987,4.8933,3.361,2.6049,1,24.993,1.1916,698.102,2.3517 +14,8.5746,8.1334,8.474,4.9411,0,46.566,3.978,863.468,5.389 +24,1.2732,9.875,3.865,1.716,1,284.635,1.9394,767.451,3.4248 +16,8.5943,6.959,5.358,2.3056,1,241.412,2.6693,1.4364,182.377 +20,5.143,1.5363,6.489,1.9304,1,43.456,2.5829,10.8558,2.5878 +26,2.9583,7.644,3.478,1.698,1,3.5719,1.6633,435.083,8.934 +25,2.204,7.24,294,1.6593,1,328.013,2.642,853.281,1.515 +12,9.5798,5.6502,4.753,4.4751,1,5.6514,2.0898,244.604,10.3814 +30,1.654,4.6823,2.149,949,1,409.911,1.8265,880.163,144.926 +27,2.7918,8.8833,2.842,3.8746,1,396.333,6.304,11.8914,150.842 +28,4.1304,7.667,621,1.2647,1,25.18,2.7016,8.1881,12.454 +21,6.5821,8.1194,304,1.9165,1,330.522,0.26,914.286,225.146 +23,5.9032,8.1326,3.207,2.1007,1,386.311,1.1191,170.357,12.7473 +24,2.1308,6.4272,9.618,1.5237,0,241.652,2.836,469.138,206.217 +30,3.6076,4.5801,5.897,4.678,1,452.979,2.7358,332.697,238.326 +25,3.1488,8.6468,7.874,5.717,1,218.515,1.062,15.616,5.5139 +29,2.9219,9.2601,454,1.4907,1,446.011,1.2773,63.579,6.3728 +19,4.7003,2.381,1.065,4.109,1,291.372,2.5853,964.036,12.5249 +13,7.3363,5.155,8.145,6.731,1,213.122,7.541,661.528,4.3771 +24,2.9571,9.5874,6.235,3.7132,1,2.049,315,360.162,13.539 +17,4.3001,2.7716,191,1.4443,0,147.778,381,714.679,164.254 +23,4.5183,8.7337,4.048,4.4173,1,433.961,1.2148,151.816,1.4495 +13,9.7881,3.888,5.387,2.1416,1,214.356,1.2857,584.216,163.535 +13,9.592,1.191,8.436,8.586,1,210.734,2.1542,474.763,3.8272 +9,8.2012,8.044,604,4.9292,1,244.705,7.138,366.384,7.1836 +24,3.1749,1.5651,5.967,8.832,1,143.152,2.1055,742.172,177.314 +26,1.6123,2.4989,717,2.8381,0,245.776,2.9969,12.7302,3.9262 +27,3.8521,4.8852,9.779,2.8464,1,187.882,2.5928,537.463,12.7604 +30,3.4012,7.015,8.072,1.8641,1,454.721,1.9067,855.853,141.402 +25,5.5533,9.864,2.762,4.7574,0,281.983,2.8197,209.693,3.9446 +18,7.9996,4.4151,7.096,4.2194,0,417.075,2.9733,271.896,6.5948 +16,8.7249,5.1818,7.633,4.1491,1,343.437,1.7108,664.065,145.551 +11,8.6038,5.2182,7.297,4.8708,0,10.6301,8.209,774.861,11.0688 +26,4.2371,5.3943,8.201,2.2855,0,433.833,2.7449,290.502,158.396 +23,7.1851,5.1774,9.037,4.859,1,4.3635,2.5326,366.299,205.132 +16,3.8155,877,984,3.8273,1,224.319,2.538,742.513,3.2408 +23,1.5481,172,1.048,1.9041,1,11.9578,2.8091,29.247,1.6952 +18,7.3141,9.767,7.964,9.517,1,268.778,1.0987,669.585,160.014 +24,1.0884,1.0156,2.524,2.4162,1,150.025,9.663,167.246,184.954 +21,4.6826,7.049,585,4.6286,1,361.413,1.0298,417.197,10.7834 +22,3.9644,2.0492,4.012,8.568,1,468.459,9.601,69.179,9.4538 +21,7.2404,8.9471,8.199,4.2435,1,354.545,1.5481,465.306,143.225 +22,7.8962,9.2861,1.266,2.091,1,177.655,1.7393,2.9045,132.349 +28,3.7369,9.7589,6.718,684,1,300.035,1.2769,412.317,11.7641 +20,8.3046,9.3908,36,4.2419,1,444.263,1.2377,295.452,196.489 +18,3.6453,2.7189,1.097,4.8481,1,135.014,2.2119,11.0269,4.164 +19,5.0169,5.0978,3.509,1.4564,1,5.9102,91,1.9047,16.349 +18,7.5432,1.7545,836,1.5177,1,6.5382,2.8407,5.506,177.922 +25,7.2363,8.0621,8.459,1.9527,1,247.427,2.1433,949.755,216.312 +18,9.8863,8.8843,8.641,4.0707,0,366.068,2.1218,752.321,226.824 +30,3.0264,8.5129,7.556,521,1,328.629,1.2659,940.344,12.1888 +22,6.9609,4.3337,2.425,1.1198,1,226.945,2.8974,12.3636,10.4074 +18,6.4871,7.5867,5.232,3.5295,1,364.649,1,574.805,12.0938 +9,9.2359,9.758,1.842,2.0282,1,316.985,2.294,9.2456,175.819 +24,2.4073,4.024,2.813,1.6515,1,314.115,2.4122,3.6538,4.121 +18,7.7662,7.5324,516,4.3614,1,10.1188,2.2161,471.618,4.1795 +18,6.1144,4.2536,735,4.5867,1,156.292,8.141,64.988,21.784 +26,3.472,9.9555,947,4.7399,1,172.212,1.7843,7.2927,4.6904 +18,5.2699,9.725,2.967,1.3628,1,404.095,1.5962,371.409,5.4836 +26,4.004,8.5563,9.266,4.5626,1,387.555,1.5813,9.9265,225.471 +18,6.2138,4.7998,4.291,3.6848,1,12.6336,1.7867,368.483,7.0627 +22,9.001,8.2715,9.389,7.711,1,2.7576,2.9812,477.078,6.9706 +27,6.1237,8.1713,9.914,3.0514,1,383.892,2.962,344.156,22.169 +26,6.6855,9.1599,5.267,1.317,0,204.933,2.945,580.487,9.002 +18,5.6687,2.9785,288,3.5419,1,10.9902,1.6461,588.744,11.8546 +28,1.4605,9.498,7.908,3.6678,1,5.8508,9.543,339.606,134.498 +20,3.0957,1.5167,1.593,3.9467,1,6.407,1.6803,395.702,208.388 +17,5.428,8.197,252,8.626,1,213.865,1.8681,446.655,1.8617 +19,3.7921,4.3162,7.849,3.1412,0,169.882,9.343,381.897,6.2605 +28,2.6359,8.2832,4.336,8.943,0,348.235,1.8983,763.041,140.882 +21,5.5372,4.7342,2.015,4.7333,1,488.333,1.866,148.548,10.4307 +26,3.9053,8.2929,6.511,3.3751,0,10.3391,2.7104,858.465,6.6787 +25,3.323,7.2969,7.328,4.766,0,12.1518,7.128,337.939,9.8314 +21,5.1759,2.0943,1.251,9.352,1,168.651,2.0928,726.721,231.898 +28,2.1996,9.4888,277,3.3173,1,232.969,1.3523,884.938,5.048 +6,9.3497,6.078,2.213,2.3834,0,348.849,3.897,888.578,3.5274 +15,8.8093,8.9828,3.799,3.6815,0,176.016,9.485,457.841,4.477 +13,7.3686,3.0444,7.634,1.4039,0,5.21,1.718,264.037,142.415 +22,1.9559,5.2015,7.137,3.2896,0,365.171,958,609.703,3.105 +11,7.9829,4.2235,6.625,8.848,0,397.321,207,192.123,10.8964 +17,8.2716,1.7183,63,2.7186,1,12.3824,2.7763,792.691,206.207 +11,7.9099,3.5815,1.421,4.789,1,6.8378,3.052,714.231,2.3329 +25,2.0257,1.9293,2.233,3.1411,1,263.901,2.452,797.684,8.7642 +20,6.7952,2.0389,272,0.25,1,10.4157,2.7184,438.925,9.072 +11,8.5089,1.8706,1.464,4.9438,1,187.082,1.403,561.854,8.6941 +18,6.1962,4.8902,4.103,7.843,0,388.681,1.618,11.1699,174.591 +18,6.8177,7.9793,752,3.5903,0,10.9804,1.7874,690.769,1.058 +21,5.1253,5.6897,0.75,2.6627,1,40.313,7.043,49.197,187.192 +24,5.7584,8.9321,7.877,1.4718,1,33.701,0.53,514.146,20.137 +29,1.3094,6.3654,5.743,8.866,0,10.9863,1.7003,848.522,10.3551 +19,6.7507,6.8934,897,8.885,0,263.202,1.0691,774.598,212.918 +29,1.733,6.6761,8.901,4.292,1,307.035,2.1911,539.841,9.1449 +20,4.9151,4.4946,9.656,4.3646,1,10.0138,1.7738,361.555,166.733 +26,3.6339,6.8934,2.024,2.3257,1,7.2475,2.488,451.971,9.3318 +14,5.9089,6.971,7.046,5.181,1,265.584,1.752,357.256,9.082 +24,2.2007,8.5985,8.419,4.4208,0,346.921,7.048,160.089,2.2022 +20,7.2248,7.7781,5.398,2.4351,0,232.534,1.701,649.318,10.6092 +16,8.1551,2.4523,3.233,2.1938,1,3.502,2.6413,69.46,237.623 +29,2.4702,7.6803,4.786,2.0368,1,462.606,2.4403,971.498,4.2614 +25,1.9388,1.264,5.123,1.8251,0,347.483,2.0386,461.147,21.494 +25,2.3096,2.1725,4.006,2.63,1,310.598,1.7222,997.319,220.655 +13,8.8941,6.514,9.298,3.0227,1,321.814,1.8944,195.228,9.8316 +20,5.7537,7.8023,7.439,2.3322,0,199.303,6.408,660.065,11.0838 +23,5.2053,7.5587,2.413,4.4832,1,49.22,1.7856,994.821,12.0677 +28,1.9604,8.1364,5.856,1.5883,1,6.634,1.4813,643.922,184.898 +14,6.846,448,6.887,2.8916,1,369.571,1.1533,457.846,2.9694 +18,8.812,5.0123,1.402,1.4998,1,210.438,2.6632,52.01,7.8873 +17,8.4537,7.0484,3.584,3.7668,0,440.548,2.4882,847.056,4.0969 +18,6.6345,1.554,9.055,5.106,1,358.631,2.302,939.719,210.819 +32,1.6775,6.4979,5.672,9.435,1,281.126,2.9572,459.387,1.6924 +20,2.0116,8.411,217,4.006,0,468.847,0.69,774.646,179.449 +23,1.4438,1.8133,1.228,916,1,456.222,646,934.352,10.5538 +24,3.3173,4.758,5.182,3.1287,0,2.6167,2.8314,289.299,171.505 +22,2.221,6.5357,5.477,4.8512,0,9.6294,1.3344,498.229,213.575 +25,3.3404,1.4587,3.344,2.6145,1,338.023,2.4161,995.463,8.1519 +18,4.4655,1.8522,6.304,937,0,46.092,8.646,359.944,5.448 +15,9.4868,2.0445,687,1.6035,1,215.165,2.6195,623.491,156.052 +18,6.4934,2.387,1.451,4.1173,1,1.9153,2.4969,660.461,239.406 +13,8.5148,2.2655,5.463,1.7583,0,321.649,1.5584,162.607,175.082 +18,7.3932,3.9515,618,3.6176,1,9.7343,2.1152,808.551,190.949 +32,2.0125,6.5379,8.809,3.8868,1,276.161,2.8921,418.772,151.166 +15,7.6233,4.3803,1.421,2.5059,1,192.342,1.3561,50.532,8.8364 +27,3.4759,7.7597,6.739,3.9161,1,279.014,1.4826,646.414,157.115 +22,6.752,7.1927,3.912,1.5845,1,466.218,2.1684,41.638,3.0852 +19,4.0687,1.2653,3.998,2.5808,0,24.29,1.1593,331.832,11.7316 +12,9.9791,4.884,7.649,3.4328,0,1.7264,2.8837,550.966,137.534 +28,3.372,8.7794,4.995,8.404,1,290.459,1.213,353.317,21.762 +19,3.5122,7.983,7.257,1.3681,0,162.873,1.2101,439.788,220.733 +12,9.3761,1.4834,5.052,3.2602,1,389.067,2.1416,11.7323,1.443 +23,1.2218,2.213,5.929,3.2768,1,234.964,1.2881,846.296,151.651 +18,7.2702,6.2834,7.607,2.4665,0,370.685,7.777,41.759,191.134 +18,7.5279,5.8237,6.073,3.9779,0,45.441,1.2404,9.1956,12.8748 +19,8.5274,9.869,6.156,2.4103,0,181.137,2.6446,792.124,2.2961 +18,9.77,8.8693,7.892,4.4066,1,494.689,1.641,2.9429,5.5855 +12,9.7804,4.1084,9.491,3.6795,1,7.4906,1.1953,603.353,7.5275 +26,1.5875,3.7159,3.767,1.5735,0,321.966,2.0146,705.637,159.072 +13,8.3966,2.9685,5.771,1.9763,0,1.7384,1.8355,199.298,1.5739 +15,6.8168,1.5241,863,3.3384,1,10.6528,1.6813,139.947,131.909 +11,6.8261,1.3808,3.588,4.4723,0,316.889,1.1735,12.2744,2.6144 +22,2.1551,1.3228,412,8.935,1,2.3096,2.166,993.397,9.4829 +16,6.8517,1.1411,8.352,2.5733,1,5.0894,1.8622,757.536,10.2134 +14,9.8423,2.4051,5.134,5.939,1,145.505,1.2594,319.583,10.8441 +15,9.2064,3.0667,7.311,1.3973,1,287.819,1.2863,342.202,170.609 +20,4.9522,9.6158,19,3.4299,1,7.991,7.022,652.139,1.9487 +27,1.3595,5.7847,4.645,3.887,1,241.177,7.483,463.095,6.4378 +26,4.2606,9.876,9.013,3.3118,0,312.872,2.3624,278.627,153.871 +13,8.4375,3.7247,2.243,4.5041,1,201.261,1.4381,6.6526,226.456 +11,7.3135,4.5763,315,4.8469,1,3.382,3.279,786.015,148.991 +19,5.1341,3.2458,4.334,1.0832,0,305.437,1.376,889.344,212.008 +23,1.4959,1.8289,7.044,3.7445,0,302.918,6.741,21.39,232.417 +17,4.8421,1.4316,4.545,4.6319,0,253.021,1.4623,7.2771,212.137 +26,5.2212,9.4508,0.46,4.568,0,346.573,1.8518,12.7439,23.333 +17,9.357,9.8681,6.698,2.0701,1,10.3901,431,420.117,18.649 +13,6.7698,4.491,2.544,4.597,0,33.927,1.3016,306.355,212.918 +19,3.8049,1.5035,7.519,1.0139,1,8.0727,2.177,8.2723,11.7948 +16,5.7279,4.2352,1.531,4.6688,1,196.347,1.132,46.032,8.2905 +27,1.5945,1.8633,3.958,2.636,1,3.3783,2.59,21.188,239.931 +16,9.7531,3.6388,656,4.995,1,409.564,1.975,7.6279,2.3462 +24,4.2405,1.291,8.284,2.2494,1,269.117,2.3433,661.349,229.968 +19,5.3008,4.5651,7.915,1.6313,0,485.525,5.456,576.781,10.341 +20,4.1976,2.7169,7.217,1.411,0,471.163,9.665,828.134,5.372 +18,7.1426,3.5191,3.591,2.7074,0,499.281,1.3314,309.259,192.724 +14,6.9601,9.431,1.223,2.418,1,5.0633,1.9741,144.464,10.6612 +17,7.4379,4.2813,2.168,2.4098,0,30.329,1.6045,366.559,191.685 +29,3.4133,9.8326,8.648,4.407,1,203.788,1.6544,78.092,1.0756 +22,3.841,3.2883,8.573,4.0116,1,266.332,4.708,249.322,233.795 +28,2.1273,8.7643,9.516,2.4072,0,154.384,1.4244,262.451,161.049 +19,6.8996,8.432,76,4.1045,1,2.4034,2.4714,156.109,1.1519 +29,1.3582,9.5206,5.368,4.123,1,353.875,1.5284,986.649,1.115 +24,6.3791,7.9011,6.487,1.5857,1,482.909,5.992,967.637,14.256 +21,8.8273,6.596,7.107,217,1,266.191,1.2402,661.472,23.436 +18,9.0175,8.5658,6.439,4.5562,0,16.479,2.2644,22.267,12.576 +15,5.0413,7.564,0.77,3.8035,0,469.139,405,768.891,8.4935 +22,5.1337,4.6283,3.595,5.363,0,182.333,1.7414,588.094,225.342 +32,1.6927,9.8926,1.794,3.5086,0,457.265,2.8959,75.207,236.149 +25,7.0369,7.696,2.046,1.001,1,427.845,1.1409,861.806,188.276 +19,8.3913,9.6208,12,1.388,1,264.356,1.309,32.529,17.23 +27,3.2019,7.7963,3.503,2.6291,0,338.436,1.8993,914.562,495 +21,4.7917,8.7488,917,4.802,0,350.159,1.413,899.573,7.5284 +16,8.5496,7.0653,3.215,4.8217,1,320.546,5.748,551.659,222.042 +13,8.8941,7.605,6.282,4.4692,0,8.0375,1.452,687.726,8.8353 +23,3.1886,5.2318,8.945,3.2491,1,346.388,512,416.926,8.0299 +25,5.9551,9.2424,8.396,3.185,0,1.609,2.5648,658.552,12.8923 +29,2.7324,8.2504,2.527,1.6242,1,355.018,2.2046,553.469,10.7469 +28,1.9169,8.4388,1.341,1.8586,1,277.418,1.0256,329.592,206.111 +20,9.2001,6.7301,1.931,2.4044,1,12.988,2.6914,32.961,1.9607 +17,8.3846,3.0458,971,8.445,0,401.882,1.9955,655.149,15.81 +12,7.8403,3.563,5.495,2.8876,1,202.639,1.3432,957.062,167.326 +28,1.4389,9.3566,1.825,2.1789,1,242.889,205,209.533,211.227 +16,8.5936,5.8612,8.407,4.7365,1,1.3837,2.1922,398.611,9.9788 +17,4.9424,2.9814,3.952,4.681,1,20.066,1.1266,807.652,7.0801 +18,4.0816,1.4914,8.992,2.8274,1,8.3681,9.085,131.781,150.375 +21,5.9183,8.2952,2.607,3.2217,1,138.072,8.648,994.225,173.982 +23,1.8222,8.3652,3.932,689,0,12.607,231,681.357,4.1035 +23,7.8098,8.1451,5.049,1.1166,1,2.301,2.2279,911.692,3.7959 +18,6.2419,6.4508,8.926,4.5036,1,230.247,4.359,839.673,6.3265 +23,2.6793,3.6602,8.688,3.4958,0,261.296,1.5619,779.364,5.95 +23,2.6941,3.0407,5.744,9.472,1,285.531,482,4.2572,180.157 +24,2.6582,855,2.218,2.8511,1,23.111,1.8836,412.431,12.7369 +27,1.513,8.3361,4.034,4.6738,1,434.763,1.1085,209.844,13.147 +17,6.2902,8.743,9.756,1.7259,1,1.884,1.8922,87.262,3.529 +17,8.5631,6.3075,6.078,9.291,0,306.904,2.697,683.483,238.622 +26,1.1575,5.0407,7.811,4.7101,0,433.066,799,11.6003,19.915 +23,1.441,5.2669,4.499,2.3063,0,2.052,3.309,366.002,10.6479 +24,6.1549,9.2671,532,2.0862,1,248.153,1.9382,7.8615,1.6052 +12,8.3755,3.162,429,1.3378,1,294.514,3.257,742.597,166.629 +26,3.9407,7.7339,7.029,4.4579,1,9.5453,1.8513,424.135,12.8411 +16,4.1465,5.205,8.515,4.2281,1,12.625,4.041,242.028,162.609 +19,6.3671,3.815,5.074,2.015,0,392.797,2.8301,522.514,162.619 +24,3.4679,4.2982,4.809,1.531,1,283.699,1.2491,5.1624,3.7136 +20,1.2395,6.308,3.403,2.2333,1,157.889,3.798,264.722,7.8914 +17,7.6171,7.8914,1.771,9.043,1,382.378,1.254,183.551,4.262 +23,6.6308,5.2956,9.392,7.137,1,373.358,9.883,931.337,235.743 +17,6.2268,2.904,3.161,1.9655,1,172.701,2.6742,383.336,193.552 +16,7.6752,405,8.007,4.954,1,244.324,4.314,588.628,222.914 +19,7.0771,6.1267,7.153,4.7873,1,332.259,2.3725,507.913,1.0591 +29,2.8529,8.0611,7.909,2.377,1,171.625,1.2521,662.613,12.1983 +28,4.1723,4.378,9.368,2.1968,1,314.505,2.4088,286.325,179.384 +29,2.135,5.5458,6.234,8.135,1,12.5537,2.6229,12.9572,2.4889 +31,2.1687,7.9983,898,3.4441,0,14.601,2.9935,9.0637,186.501 +18,7.0858,6.1051,1.677,3.941,1,155.336,2.046,201.463,155.401 +16,8.7274,2.2476,6.267,2.734,0,468.027,2.3889,488.001,236.389 +10,9.6646,6.1305,7.723,3.8655,0,416.836,2.091,243.667,3.3808 +16,6.6551,6.2828,2.716,4.7503,0,282.583,9.444,439.662,151.027 +29,2.6569,7.3411,7.408,3.4926,1,281.936,1.9387,3.901,227.312 +28,1.9509,6.2087,7.785,4.975,0,2.8073,1.3419,631.276,178.481 +24,8.3157,9.6924,8.312,4.426,1,324.754,1.6958,87.938,8.0676 +17,6.2088,1.9729,3.129,3.658,1,16.406,2.8986,5.7114,2.862 +27,6.5646,9.5109,6.816,1.0766,0,30.615,2.456,225.859,231.304 +14,8.0332,5.3834,3.043,2.2362,1,420.117,1.091,324.593,1.7257 +19,7.3295,6.7196,739,4.8831,0,2.2749,1.7998,294.368,23.404 +6,8.5101,9.946,463,4.0995,0,303.532,1.454,4.9981,7.2843 +24,1.5059,3.8058,5.975,4.233,1,28.21,1.3587,11.5513,206.475 +21,7.7277,7.6938,4.158,4.3038,1,10.3383,1.8252,913.337,133.035 +18,8.6577,7.0691,162,3.0977,0,323.216,2.1442,714.248,219.022 +21,3.5752,4.014,178,3.7197,1,277.418,2.7046,958.854,10.2389 +17,6.764,5.4659,776,1.7948,0,38.366,8.492,446.057,203.953 +20,3.8275,8.828,6.181,4.9922,1,5.5309,2.7065,880.243,5.7212 +21,9.6217,9.9586,8.486,1.3981,0,221.804,1.9846,818.374,11.2018 +29,1.3008,8.973,208,2.95,1,498.966,2.329,876.192,203.113 +12,6.2181,2.108,662,1.4103,1,34.464,1.141,4.8763,2.8407 +32,2.4985,8.5865,4.575,5.604,1,342.149,1.4298,655.991,174.872 +20,7.41,9.1943,7.377,2.8379,1,158.936,1.0575,570.963,10.4849 +20,2.583,3.5355,1.577,1.7667,1,4.6944,3.478,549.764,12.3172 +27,3.1184,7.195,2.717,2.9161,1,474.747,1.6548,50.934,138.968 +16,5.4493,4.421,232,2.7934,1,5.2736,3.953,798.017,6.6158 +19,9.2335,6.5523,3.991,2.7113,0,496.353,2.7451,968.376,2.3129 +25,2.9054,3.4032,225,6.165,1,6.289,2.5958,83.063,4.478 +22,2.2982,3.2256,3.526,2.2009,0,8.5454,1.4256,871.691,10.3421 +15,7.8308,4.2443,7.285,04.06,1,154.183,2.032,489.064,6.4529 +19,5.5056,1.4557,611,1.5757,1,256.188,1.6566,693.703,151.903 +20,9.2061,8.3114,812,2.2192,1,395.201,1.7767,421.409,171.825 +24,2.3195,3.487,6.377,2.4692,0,485.504,2.6653,366.683,12.0899 +15,6.8134,4.2015,4.771,4.3137,1,179.412,2.026,896.329,148.551 +29,3.0959,8.9405,9.346,3.278,0,1.0207,2.0763,906.159,134.579 +24,2.4108,4.9662,2.893,501,0,30.834,1.6884,685.398,1.099 +18,7.1509,5.4425,7.262,4.3259,0,355.395,5.243,839.464,202.008 +16,6.3432,9.565,7.309,4.1603,0,198.722,3.652,36.676,1.4295 +21,7.7934,8.8673,2.215,3.7682,1,9.1738,2.0819,439.423,9.8482 +19,3.7852,1.6947,9.032,2.3303,1,153.008,1.0195,822.806,2.6644 +22,5.0317,4.7322,4.912,3.7877,0,32.79,2.9998,40.407,158.955 +27,4.6492,9.713,6.789,2.3937,1,247.091,2.682,4.9568,7.8141 +12,9.8568,3.7237,1.459,3.6831,1,371.712,1.6972,359.765,1.7077 +20,3.6302,3.7157,2.578,4.4006,1,10.9085,1.9252,404.248,1.0885 +18,3.6534,1.9503,5.861,4.4527,1,420.993,4.767,16.309,5.6914 +20,4.1909,1.1432,319,2.2729,0,7.7942,2.682,350.683,160.144 +21,6.0813,7.403,4.997,4.2967,1,164.958,1.3768,935.078,172.373 +27,3.2709,7.7003,374,5.073,1,295.604,1.5641,859.948,3.0823 +22,9.2376,9.6901,6.406,5.091,1,368.432,2.6194,451.465,3.3387 +23,3.3912,7.7342,4.871,2.7413,1,133.091,188,712.791,142.374 +14,9.0623,2.4335,46,3.2592,1,47.406,1.483,160.331,229.744 +26,1.9313,4.012,6.497,765,1,353.056,1.8803,755.025,132.699 +20,6.9091,9.8544,4.221,2.3609,1,10.8838,4.779,481.027,170.818 +11,9.1629,3.4045,3.417,4.718,0,362.883,2.049,725.343,13.81 +23,2.5187,3.1197,941,3.0105,1,348.167,1.6048,647.583,2.5161 +18,9.7149,9.0596,2.204,4.2755,1,376.342,1.6426,240.437,227.151 +18,5.076,5.851,2.238,3.6882,1,45.794,9.908,836.345,1.7276 +17,9.5114,2.1487,9.354,1.8915,0,355.859,2.6467,576.455,182.369 +18,7.0914,8.891,4.325,4.969,0,175.955,9.033,786.355,235.045 +25,3.7143,9.9336,421,3.3147,0,395.259,1.5494,10.3046,7.6559 +17,2.6947,8.668,1.388,4.0762,0,347.931,5.601,619.197,4.1191 +20,3.7336,8.6225,79,3.3485,0,28.713,335,298.965,135.882 +24,1.8372,3.9052,5.889,4.9471,0,176.916,1.2781,862.286,190.816 +27,2.2948,5.2407,1.866,4.1068,0,460.525,1.5808,950.011,227.874 +30,1.9419,9.1482,4.986,2.5971,1,256.377,2.294,6.5269,166.482 +25,4.8065,9.7338,3.701,1.8344,1,314.052,1.3463,72.704,8.061 +14,8.1602,2.6216,8.039,3.4108,1,207.682,8.362,11.1948,11.8643 +24,2.2725,2.1285,3.205,2.9511,0,390.408,1.8127,858.932,182.688 +20,2.1729,8.052,4.583,3.1468,0,17.052,1.1435,133.279,189.104 +19,6.7909,5.618,7.213,1.7151,1,405.317,7.003,203.057,1.7865 +19,2.7746,136,4.334,2.1436,0,5.3971,2.731,259.104,147.298 +27,1.8785,4.119,7.932,2.7905,1,354.481,1.6101,730.554,232.169 +19,2.5016,7.338,6.617,4.1964,1,238.441,6.014,299.609,188.462 +15,9.3136,4.0523,4.105,3.8145,1,349.377,2.0127,600.124,1.757 +13,8.3932,3.993,504,5.933,1,265.698,2.4092,576.223,5.3986 +28,4.1866,8.3522,9.672,1.2278,1,6.7153,2.2756,408.239,10.6802 +19,6.9024,2.0974,6.616,1.333,1,238.496,1.7986,544.095,169.505 +22,5.8355,3.2831,905,398,0,482.279,1.5589,12.701,133.259 +24,7.0941,8.7005,1.788,1.1219,1,37.742,2.332,877.413,1.8559 +22,7.144,7.4627,4.832,3.9966,1,150.095,2.1244,215.006,177.184 +18,6.6586,2.1904,9.087,4.5237,1,472.057,1.7144,881.424,201.291 +21,3.3949,719,3.226,1.9588,1,389.473,1.9732,52.355,4.9382 +26,1.3511,7.1567,9.677,2.816,1,182.224,5.059,617.797,1.6182 +18,5.1001,3.907,971,3.5303,1,301.787,598,264.724,18.983 +20,9.0188,7.6608,9.027,4.7647,1,213.343,2.7934,230.106,153.707 +20,6.1255,4.4529,4.452,4.5647,1,4.8345,2.8059,495.796,192.841 +20,8.4915,3.46,737,286,1,403.015,2.3639,274.686,135.983 +13,9.9246,4.5121,8.795,1.2408,1,9.5539,1.1169,428.908,10.2849 +29,2.4725,7.4856,2.519,2.457,1,229.019,4.523,445.818,231.139 +22,7.226,9.0222,223,3.0827,1,351.319,1.072,278.208,18.719 +15,7.0686,4.977,1.358,3.5525,1,466.107,2.1787,298.813,9.886 +12,9.8196,5.2411,6.591,1.5414,0,3.1363,1.1956,97.318,217.804 +13,9.8704,3.284,9.778,4.2693,1,196.617,2.3877,591.581,23.844 +19,7.1801,4.6841,1.115,2.2641,0,307.324,2.019,833.556,7.3977 +28,3.1925,8.8528,4.619,4.9919,1,389.655,1.8899,5.5285,214.194 +18,8.187,3.6159,1.806,2,1,460.466,2.7907,1.1905,1.0895 +33,1.9633,9.3245,745,5.474,1,249,2.6802,523.911,5.1444 +20,8.0263,6.3061,1.181,1.509,1,313.882,2.135,828.537,3.8619 +18,9.1918,9.3416,2.398,1.275,1,3.468,5.977,61.481,8.5582 +26,4.4455,7.5717,1.964,3.9117,0,393.628,2.8168,622.641,135.029 +15,6.6757,1.0344,5.525,2.639,1,7.4833,6.814,147.965,172.795 +22,4.8713,2.3115,8.732,3.7449,1,44.731,1.1177,978.782,216.673 +22,4.9399,3.9417,5.111,2.628,1,7.7562,2.4803,534.404,3.8051 +18,3.7933,1.7011,582,1.2636,1,382.164,626,11.1576,138.788 +16,7.8592,4.9491,5.634,4.2064,1,144.652,1.9158,420.055,133.126 +12,9.4256,4.7137,7.975,4.7555,0,278.627,1.3735,8.1251,11.1934 +19,9.4668,9.5626,1.322,2.0726,1,304.217,1.8721,423.959,16.67 +25,2.573,4.3373,727,4.8497,0,10.338,2.8742,714.446,12.3207 +18,8.8727,7.8563,1.878,3.1344,0,149.348,2.4251,330.291,132.046 +21,7.6369,9.4191,7.461,2.0792,1,5.3754,8.875,319.971,216.799 +25,3.2755,8.7699,5.917,4.014,1,2.645,1.718,519.196,206.465 +25,1.6056,2.0867,5.406,1.4766,0,11.9734,2.9011,503.501,13.856 +25,3.412,4.9603,2.495,1.329,1,258.001,1.7555,472.471,3.749 +14,9.2099,3.4774,3.322,3.2827,1,356.799,5.193,521.676,230.088 +20,6.6986,3.9986,9.659,1.9524,1,39.678,1.8813,5.748,149.448 +14,7.4895,3.6081,2.406,6.796,1,3.4883,1.266,479.524,193.794 +24,3.3144,8.2636,9.016,3.348,0,136.206,5.626,992.091,1.3205 +19,7.4745,4.5214,5.805,3.9392,1,385.112,1.8979,766.692,215.238 +26,1.2531,5.2369,1.233,3.3796,1,240.434,1.2074,294.693,166.439 +25,4.3779,9.8245,4.673,2.059,1,9.1093,9.753,680.937,164.502 +16,6.6408,5.998,9.485,4.4811,1,196.107,1.9665,336.604,2.6427 +25,2.3149,4.8796,4.186,2.0543,0,135.017,2.5992,199.599,171.087 +17,8.407,7.7406,8.634,3.5515,1,2.5327,2.0358,775.816,1.8393 +16,3.1153,1.5116,2.564,4.5456,0,381.814,1.3903,21.749,1.3398 +18,6.8705,6.1153,5.709,4.2036,1,145.847,1.9766,86.004,7.8084 +21,4.6468,2.3946,8.439,2.5555,1,472.566,2.087,386.606,5.561 +27,6.3644,8.674,9.207,3.4032,1,444.063,2.3252,759.275,3.831 +23,1.9671,3.271,4.858,2.0683,0,358.139,9.211,267.001,17.427 +24,1.1522,3.2906,6.397,3.236,1,163.317,3.433,656.208,200.382 +14,9.1861,5.9819,3,1.2878,1,139.962,2.0456,220.406,4.3085 +17,3.4267,1.8356,2.532,2.1737,0,237.636,3.633,3.1616,197.591 +16,8.3771,2.8489,2.787,1.0477,1,177.301,1.386,816.458,11.5327 +16,9.9942,4.1663,935,1.909,1,450.579,6.921,857.601,229.895 +20,2.9029,3.5364,2.797,2.9427,0,6.1748,9.962,881.768,3.3434 +19,3.3865,5.2488,3.211,4.3221,0,362.234,1.4119,4.5935,1.2856 +25,6.9657,5.9964,9.688,1.279,1,305.448,2.6885,763.313,202.819 +18,9.689,5.6667,6.686,9.801,0,403.151,2.0413,837.512,8.6877 +14,9.2423,6.5417,426,2.3009,1,271.244,5.149,318.581,10.9721 +22,5.5259,3.0775,9.881,3.3295,1,31.477,2.6383,475.747,12.2831 +17,8.156,1.2643,1.532,8.561,1,48.137,1.5016,413.836,19.804 +25,2.2217,7.6081,4.761,2.835,0,4.5981,6.128,445.701,1.824 +16,9.7969,8.5078,6.471,2.5952,1,5.2433,1.5823,848.237,13.227 +8,9.6792,2.5701,556,4.0935,1,196.804,5.728,42.369,10.3336 +25,2.4736,4.0709,717,1.762,1,236.366,1.102,30.934,8.1667 +23,3.6948,4.9857,999,1.7468,1,9.9936,2.4166,139.079,8.3551 +25,1.9014,5.3333,1.403,3.3176,0,4.1334,1.9758,678.091,223.282 +23,3.4455,6.5949,1.597,6.537,1,1.1088,1.4338,9.3362,6.4347 +13,8.3436,416,9.289,1.1797,1,382.296,6.793,7.057,10.9109 +24,4.4048,7.2148,6.832,2.6775,1,242.529,8.465,684.763,11.8273 +25,1.7956,6.197,6.554,4.7662,0,421.702,2.9347,697.346,172.767 +20,04.08,4.6829,5.555,1.4367,0,180.419,1.0288,207.089,12.4557 +19,9.8325,8.2767,2.928,2.4376,1,351.723,1.8484,957.613,149.096 +20,6.6672,4.5122,6.209,1.9997,1,24.426,1.4992,789.936,9.5719 +15,4.7454,1.4909,4.101,4.487,1,306.035,693,689.564,172.468 +30,2.4988,9.8503,1.454,3.594,0,185.098,2.834,756.804,11.1804 +14,9.8756,8.8929,6.896,2.8307,1,4.0585,2.638,417.768,5.3451 +18,8.3876,7.7131,1.296,4.2306,1,473.687,1.9761,461.086,196.063 +24,3.5333,4.1151,1.907,4.9406,1,418.045,2.4331,871.513,183.709 +24,1.6306,1.8385,8.177,3.4936,1,155.946,2.2462,3.5165,150.598 +33,1.5096,9.4141,6.601,1.8997,1,479.351,2.4278,804.397,12.5267 +27,2.0834,5.3235,631,2.0591,1,150.244,2.2192,453.093,5.1939 +23,6.2269,8.5236,4.182,1.7584,0,221.495,1.3367,469.329,208.405 +16,9.3589,3.421,3.963,3.0181,1,377.568,2.6888,332.443,2.3326 +21,5.4707,3.3529,6.903,3.697,0,154.502,2.7373,611.001,9.1964 +18,8.5865,9.8554,0.74,4.0973,0,162.254,1.3109,678.917,204.615 +18,5.013,5.2183,5.102,2.083,0,205.041,1.4543,169.146,142.936 +15,7.3773,1.407,9.693,3.5835,1,234.195,1.4569,57.006,10.5269 +15,7.5869,2.1967,9.557,4.5811,1,6.1808,8.367,470.263,189.927 +21,2.5657,4.8194,4.124,4.6041,1,8.746,3.448,78.409,237.483 +18,4.2509,4.247,8.206,3.5201,1,459.579,7.859,549.834,4.5315 +17,6.7357,4.6253,5.433,3.1845,0,176.594,2.5323,435.277,1.2176 +26,1.6363,4.1894,5.118,2.6576,1,5.0844,1.6292,533.642,11.1117 +28,4.2539,7.7934,55,916,1,379.586,2.5506,495.662,6.8975 +21,5.8132,3.5494,574,6.181,1,14.753,2.2355,935.826,16.002 +13,9.966,9.8255,9.006,2.4286,0,9.0832,1.0458,318.769,11.8622 +20,5.2708,1.8077,7.801,7.972,1,481.306,5.559,4.6975,11.9761 +19,8.3445,5.9099,7.863,2.885,1,460.271,1.7017,665.377,8.5196 +19,4.8886,897,1.599,3.2285,1,5.2873,2.8076,607.805,5.0562 +21,8.1675,7.3386,3.584,2.6281,1,449.643,2.5182,91.087,5.1229 +27,6.3587,9.9475,2.332,1.821,1,445.434,2.2915,12.6302,9.2873 +20,8.9794,8.1914,3.159,2.886,0,317.187,2.2925,527.419,163.641 +23,4.6985,5.557,5.795,5.667,1,264.869,1.5833,159.263,8.0916 +15,6.4387,4.8474,3.648,7.682,0,10.8719,5.086,461.152,7.8244 +17,6.6702,8.3503,5.607,4.9494,0,6.0692,8.566,801.376,10.2 +27,4.7564,9.3597,4.385,1.7225,0,303.185,1.7337,858.814,237.807 +29,2.2988,9.8921,2.866,1.4599,1,410.979,9.491,835.522,2.1897 +27,1.842,3.9654,954,2.613,1,344.322,2.3447,551.931,7.0717 +31,1.15,9.9092,8.918,3.1766,1,09.04,1.1197,637.621,7.1981 +9,8.8618,1.5593,114,3.261,0,145.009,3.417,556.049,23.388 +24,3.1283,2.5355,17,8.772,0,273.209,2.3476,565.623,9.7723 +22,2.9036,8.902,8.268,4.5962,1,312.496,2.0944,886.299,136.073 +12,7.6243,2.7174,9.968,4.2025,1,3.6126,7.595,21.718,4.7551 +29,3.8801,7.6794,7.271,1.1516,1,307.026,2.9433,444.378,305 +22,5.5544,8.5292,153,2.4292,0,36.816,1.2096,613.962,8.1425 +26,2.4626,7.7889,2.267,2.292,1,9.0679,2.0414,767.699,153.368 +18,9.6377,6.3107,9.718,1.7426,1,12.3109,2.7313,764.271,16.597 +11,8.6642,5.1397,8.086,4.0882,0,12.9448,468,12.6076,18.093 +24,8.7741,7.087,5.668,5.463,1,469.905,2.6371,229.691,206.559 +21,4.661,3.9083,2.369,2.0766,1,203.508,2.1117,912.403,2.775 +15,7.8613,8.4131,144,2.1402,0,265.286,5.027,363.944,1.987 +28,2.2949,6.7719,209,2.3436,1,362.157,1.9935,1.2686,189.044 +29,1.0776,6.978,612,4.3067,1,18.573,2.6237,207.799,10.458 +32,1.1798,5.3594,218,1.0908,1,5.2778,2.397,969.857,227.308 +26,6.2794,8.8523,9.936,5.146,0,327.161,2.2818,316.651,226.436 +14,5.0986,2.5201,1.834,3.089,1,333.637,484,617.577,3.3997 +17,5.6621,3.8115,7.107,8.692,0,130.274,5.719,729.383,165.894 +28,1.0672,7.7764,1.551,3.747,1,1.7614,1.6431,650.117,1.6106 +23,4.8042,4.9275,5.401,2.1332,1,332.677,1.7404,383.791,9.6818 +25,7.4626,8.8921,806,1.0982,1,351.713,2.8309,436.111,20.201 +21,4.9842,3.464,7.668,1.8061,1,1.3032,1.406,839.605,11.063 +17,7.59,3.6933,5.849,1.2986,0,346.592,9.075,666.157,8.067 +26,3.0972,8.8874,862,4.632,1,469.464,5.723,3.3201,5.7679 +12,8.3183,4.6437,8.486,2.8017,0,8.9393,1.625,211.423,2.0729 +17,6.2959,5.1612,547,1.351,0,260.662,206,293.435,9.7976 +24,2.8969,3.3276,9.216,4.8319,1,348.388,1.7225,371.832,167.208 +22,3.1305,2.7667,9.166,1.7067,1,11.504,5.288,581.125,158.486 +24,6.6523,6.5595,9.205,3.4758,1,375.774,2.5549,372.845,172.546 +13,8.4695,1.1984,778,4.0518,1,434.044,1.7894,826.762,9.2116 +29,4.7407,8.7927,121,1.3955,1,407.275,2.5947,479.097,6.3667 +24,3.3247,7.792,9.877,3.7437,1,12.9449,1.2824,507.157,1.3664 +13,8.8031,1.9075,4.876,4.1621,0,402.108,1.7873,433.115,225.978 +20,7.0234,6.9402,2.382,1.2066,1,206.672,1.5763,317.362,2.8387 +22,5.0328,6.0263,7.697,4.9625,0,133.232,2.96,727.552,4.2779 +16,5.3911,1.8454,2.643,1.034,0,8.3986,2.3905,237.267,0.6 +25,2.8383,2.732,7.272,1.085,0,454.491,1.7862,692.595,7.612 +17,6.6412,4.0899,8.373,3.9001,0,213.449,1.8198,534.409,196.523 +26,4.2287,6.9924,7.843,9.707,1,432.866,7.464,11.1241,7.9739 +15,9.9608,6.3872,274,3.4913,1,7.9772,2.2043,2.7788,159.836 +26,5.3217,5.3223,4.016,4.2777,1,383.497,2.9485,177.749,231.731 +18,5.373,7.6841,4.133,4.7961,1,5.5007,3.883,763.411,214.207 +21,6.0927,7.5794,4.913,2.3712,1,8.782,1.9118,390.752,4.3193 +16,9.2508,6.1786,1.674,4.8555,1,497.525,1.5536,806.828,8.621 +22,8.2074,7.8699,4.525,2.0581,1,3.6769,2.5512,506.887,180.274 +18,5.0602,3.3426,5.108,1.0906,0,23.077,1,4.2419,234.638 +19,7.4683,8.8125,5.317,2.5696,0,439.193,4.098,847.637,171.824 +18,6.2761,6.1491,8.199,3.2491,1,40.969,1.112,936.901,6.0531 +19,5.4313,8.2236,5.173,2.2898,1,235.588,4.888,8.3473,3.1877 +26,2.7308,5.4628,2.308,2.8349,0,305.424,2.1238,216.267,11.8838 +18,5.1754,2.1844,6.631,2.082,1,314.853,419,718.397,4.6308 +25,3.2124,5.4241,7.973,2.6238,1,5.4912,1.867,997.204,5.4628 +14,9.2336,3.7111,3.194,4.763,0,142.452,2.6046,877.541,152.264 +21,4.0187,6.975,6.453,2.4992,1,150.492,1.039,10.7958,12.356 +11,9.5704,4.7579,1.469,1.2659,1,189.064,804,611.165,2.8966 +21,5.7975,8.3611,3.419,3.7937,0,136.959,2.9695,668.552,3.6883 +21,6.6839,6.7807,9.092,1.6879,1,12.5749,2.0198,634.524,4.664 +19,5.8865,6.8454,9.113,4.081,1,177.393,4.221,57.238,5.2718 +26,2.1644,2.1716,5.753,2.842,1,189.613,9.201,299.282,212.955 +29,4.3824,9.8425,7.024,1.6609,0,243.612,2.955,671.821,190.328 +28,1.8923,8.4168,854,4.718,1,8.6768,6.816,731.167,9.9548 +26,6.6066,7.89,9.586,4.266,0,394.168,2.2585,580.009,178.064 +17,5.0219,3.3022,4.899,3.2919,0,430.334,7.235,502.184,9.7673 +15,8.2019,5.3563,5.616,1.9267,1,12.4082,1.1954,22.684,190.105 +20,2.9842,1.371,4.156,4.3574,1,6.165,2.6421,549.277,4.3667 +22,2.4811,5.3848,72,2.582,1,361.156,853,136.968,3.6604 +18,4.657,1.4589,4.228,1.4767,1,462.123,9.217,8.1989,1.8706 +14,9.3393,5.5304,7.906,3.6044,1,1.7574,1.4616,780.073,5.8034 +17,7.3938,6.4872,8.049,3.1201,1,7.218,1.8765,67.951,3.5116 +16,4.7703,3.902,8.924,3.998,0,9.1713,847,652.542,191.674 +18,5.6554,4.9854,515,3.2179,1,342.396,1.232,928.846,5.7593 +30,1.7579,8.7565,5.272,8.351,1,482.391,1.0329,386.965,12.389 +6,9.8612,1.0856,1.074,3.3516,0,37.519,806,405.735,181.487 +21,6.9977,7.9173,2.007,1.9577,1,286.516,1.0661,419.609,162.498 +25,3.5686,1.7075,9.002,2.3157,1,350.275,2.7951,47.063,4.9101 +12,6.2723,3.671,4.968,4.6078,0,11.5349,8.239,517.715,1.8497 +25,1.9853,1.8557,7.585,1.7998,0,344.276,1.7568,780.237,218.823 +15,9.6925,7.6504,644,3.0598,1,160.722,8.943,225.526,149.278 +24,2.5731,4.0513,4.168,1.8174,1,11.1211,0.32,439.744,169.575 +21,6.8323,8.7252,6.742,4.736,0,11.8278,8.692,510.076,9.2643 +24,3.2091,5.2471,1.334,2.2676,1,333.894,1.4123,177.426,5.7986 +13,7.4581,2.225,3.258,2.9853,1,383.613,8.886,704.923,12.7348 +18,7.9914,7.1671,645,2.0375,1,290.901,1.8725,6.5708,1.8692 +18,7.0608,1.1023,6.513,1.9533,1,3.1928,2.8473,590.053,191.994 +15,6.5305,7.8938,9.709,4.1019,1,1.9005,2.078,210.121,157.081 +16,9.0322,1.681,827,1.484,1,10.8583,2.151,1.8384,182.792 +23,1.7076,3.4545,9.746,1.4779,1,143.234,38,322.614,136.623 +20,3.9782,7.6127,8.456,4.0588,0,20.241,31,434.849,138.698 +22,3.2346,9.5423,8.552,4.6027,0,3.8014,3.988,819.128,14.409 +15,9.8921,3.7143,5.772,2.0615,1,362.579,1.4398,413.767,188.198 +21,4.5045,8.294,5.183,4.444,1,355.749,144,916.281,5.4092 +18,7.5935,1.9079,4.063,9.947,0,173.339,2.1665,844.113,163.568 +19,7.1625,8.0718,8.181,1.1071,1,281.501,878,20.081,132.649 +23,2.9087,6.5749,1.821,4.231,1,5.0458,1.4863,16.416,11.8826 +20,3.151,1.9274,562,4.5163,1,207.609,2.0283,251.404,12.9818 +21,3.5316,3.025,9.479,1.114,0,428.782,7.127,366.085,6.5328 +20,4.7001,1.3177,38,2.966,1,330.311,1.7379,587.646,8.899 +24,3.1089,3.8297,9.768,4.516,0,5.1972,7.853,132.841,182.199 +27,1.1769,2.0365,7.289,1.3069,1,423.789,6.423,536.721,219.882 +18,8.9145,6.44,3.285,3.8072,1,340.348,2.4552,584.966,11.5383 +18,9.6905,9.9451,6.978,2.55,1,226.528,9.987,664.281,201.096 +20,4.0741,1.201,8.179,2.2779,0,346.046,2.4419,554.591,133.262 +22,4.0466,5.4092,2.454,2.9207,1,8.641,6.507,82.692,223.273 +24,1.0638,5.7367,7.709,4.4511,0,275.243,1.0676,645.175,12.202 +21,7.1223,9.1421,8.044,4.522,1,308.964,308,925.306,4.9165 +18,8.429,5.0601,2.494,3.4736,1,463.872,1.4895,703.915,208.828 +22,2.3195,5.437,419,4.634,1,3.3446,1.1448,441.749,192.065 +22,2.437,4.7165,2.041,1.0668,1,187.391,179,217.588,9.5523 +15,8.1107,2.689,2.006,4.1889,1,468.407,1.3946,2.0416,202.059 +6,6.5466,5.603,652,3.4901,0,10.8611,2.232,9.9499,2.172 +30,1.4037,4.0866,726,723,0,40.66,2.5109,197.779,191.939 +15,6.6029,5.259,0.38,1.1581,1,803,1.4811,224.277,16.513 +25,3.7803,5.5049,8.844,3.0292,0,1.2942,2.0702,744.624,9.1123 +21,4.3185,3.0729,2.522,2.512,0,163.811,2.4634,392.195,189.981 +13,7.9276,5.336,4.532,2.6397,1,384.252,1.535,331.294,3.0399 +10,8.2984,1.343,639,1.1597,1,5.2072,1.0116,6.1844,4.8797 +21,4.6032,9.3263,8.775,3.375,0,191.427,754,543.274,12.8059 +18,9.5244,8.9452,5.246,1.3321,1,6.5734,1.489,61.678,211.446 +15,4.6582,1.9,3.735,1.9472,1,11.1797,1.135,879.079,3.1225 +18,7.9465,3.4344,867,1.8446,1,251.497,1.4337,507.814,135.424 +20,5.3549,6.1349,3.102,3.3601,0,159.569,1.352,1.7643,180.752 +10,9.0778,9.569,794,4.513,1,10.5956,1.837,7.4626,178.405 +14,9.1699,3.5457,445,1.0277,1,196.748,7.871,278.295,150.711 +25,1.7868,2.5111,7.851,1.2025,1,350.527,7.335,147.794,225.821 +17,9.4284,9.1552,308,5.421,1,5.9709,8.898,772.882,11.5713 +21,8.4298,8.5251,5.859,1.038,1,239.797,1.9223,11.6778,211.259 +17,8.1218,5.7983,5.945,3.0353,1,13.736,2.0912,169.176,14.87 +24,2.8082,5.2035,9.285,3.6608,0,18.931,1.0172,670.119,176.992 +20,8.2461,9.3073,2.865,3.3015,0,410.778,2.3647,247.232,11.156 +20,8.6512,9.3243,2.788,2.3759,1,464.865,1.2536,96.939,4.0229 +26,3.6024,9.6933,4.405,2.622,0,12.1489,1.5672,864.556,2.6183 +9,9.5703,1.2538,3.569,4.795,0,314.985,4.366,747.095,163.759 +24,1.4487,1.6056,7.363,8.404,1,338.339,6.987,349.705,9.0354 +29,2.3492,6.7674,6.418,3.3421,1,421.243,2.1827,6.6212,136.196 +24,5.8382,5.4143,7.589,4.5645,0,449.521,2.9311,343.037,179.052 +17,6.1821,1.847,0.82,3.4889,1,233.996,2.114,382.963,188.756 +15,6.8064,6.198,923,1.0902,1,491.288,1.626,136.158,12.2318 +30,1.1527,8.8808,4.309,1.579,1,485.414,4.287,12.9434,7.5481 +22,9.6433,8.6887,9.847,151,1,253.234,1.3373,671.427,186.211 +26,1.4013,3.5727,2.157,3.0638,1,271.016,2.1977,240.078,9.9683 +26,2.2876,8.9105,7.144,3.065,1,333.875,4.978,681.231,224.815 +31,1.1261,5.9368,534,3.6275,1,186.908,2.2525,552.818,197.897 +26,6.1017,8.0591,8.169,55,1,331.022,1.6675,902.449,17.926 +14,9.3904,4.2743,4.768,4.0892,1,257.143,2.3236,799.198,5.7899 +14,6.9935,1.134,7.839,3.6936,1,1.7718,1.6729,159.858,8.7063 +19,8.4039,4.3373,9.302,7.044,1,426.364,1.8076,61.406,203.755 +28,1.1195,4.573,7.323,1.7381,1,470.223,7.462,656.595,5.554 +21,5.8781,5.5094,7.761,3.1926,0,1.3115,2.1606,863.434,187.552 +21,5.1361,1.0558,672,2.479,1,394.631,2.532,644.547,9.6996 +26,5.4907,9.914,205,5.755,0,192.907,2.6139,149.307,191.844 +25,1.6499,2.4414,9.743,4.367,1,292.816,884,265.865,132.574 +16,7.1599,1.9855,6.932,3.9073,0,249.997,1.8738,641.223,12.6434 +25,5.529,5.268,5.614,7.798,1,275.655,2.9686,912.823,168.382 +19,7.8863,5.3721,367,8.605,1,247.593,1.7607,892.614,19.352 +17,5.3676,4.3982,444,4.1546,1,426.688,5.138,365.594,166.429 +30,2.3444,7.7189,3.691,3.0607,0,341.753,2.6328,832.367,10.8171 +17,6.8343,5.1665,4.989,3.0236,1,206.319,7.929,516.175,7.7001 +24,2.5515,6.097,2.115,2.3967,1,344.284,135,469.699,202.951 +18,8.8516,7.2375,1.731,2.845,1,482.524,1.2916,357.378,12.4987 +15,6.518,2.503,5.084,3.1988,1,4.0154,3.008,681.421,188.031 +22,2.4148,5.7064,5.859,4.8391,1,194.045,3.457,603.602,238.972 +17,9.661,8.8419,2.399,1.1149,0,435.227,1.3899,380.917,154.533 +16,5.6653,1.739,5.874,1.0728,1,369.528,1.8381,76.521,6.6803 +33,1.6561,4.0518,9.003,2.861,1,467.464,2.7162,385.552,207.734 +21,6.6415,9.2623,4.732,3.291,0,1.9905,2.1158,588.543,6.5682 +26,3.2788,3.5315,8.574,2.7452,1,431.388,2.5278,398.459,6.2496 +18,8.2332,4.5873,9.273,5.562,1,395.899,1.2354,12.5708,1.7745 +17,8.3604,9.8154,924,1.8227,1,40.752,9.558,169.582,1.8855 +13,9.8105,1.9932,958,8.933,0,298.631,1.7785,660.171,206.957 +20,5.5168,6.526,476,1.6574,1,2.5959,2.0865,813.111,5.5375 +22,5.0946,8.5942,5.881,4.7563,1,269.565,1.7048,473.778,2.6085 +18,7.7813,8.6847,4.259,3.4166,1,203.876,7.936,332.331,8.4621 +26,2.1922,4.7208,3.265,378,1,263.521,1.1092,343.133,171.251 +22,5.9222,5.1421,641,1.2625,1,370.148,1.3449,601.671,8.1511 +22,5.9162,8.3581,21,518,1,29.798,425,473.013,7.4227 +30,1.8053,7.3856,9.681,3.5743,1,146.281,2.6395,1.0731,11.7136 +19,4.7619,2.6515,2.321,2.3471,1,299.754,1.5342,773.757,5.088 +11,8.6796,1.689,9.171,4.9701,1,4.1569,2.2531,150.895,11.7858 +10,8.7054,4.797,109,3.6679,0,2.683,5.157,678.062,237.605 +30,1.8931,8.5891,2.381,2.5896,1,200.764,1.6699,350.772,191.844 +31,1.8165,8.9583,2.349,4.0235,1,378.593,2.7784,582.223,1.6918 +27,3.3643,9.5623,9.962,3.524,1,411.317,6.428,856.566,157.157 +18,8.8729,8.7956,46,1.2189,1,27.492,1.0376,16.273,11.0667 +26,2.1601,5.8004,6.396,2.6513,0,434.003,1.165,779.859,19.83 +15,7.48,4.4461,8.697,2.78,1,6.2957,1.1499,4.7925,2.3646 +31,1.9105,7.7485,6.723,2.2562,1,482.053,1.8019,922.155,5.5855 +22,6.6082,7.3982,3.627,896,0,46.088,1.1813,209.571,189.874 +28,4.2046,5.3814,9.583,1.1168,1,299.619,2.0222,79.647,203.808 +13,8.1002,8.733,8.935,1.4052,1,2.9361,1.4537,7.6548,12.7036 +25,3.1032,9.2608,434,513,0,227.101,4.729,333.778,4.727 +20,6.7528,4.556,5.733,4.5847,1,8.9636,2.8457,637.212,214.492 +23,3.1211,3.6333,9.675,3.4305,1,314.213,7.185,662.236,9.1864 +17,7.4229,6.2957,9.826,3.4481,0,9.4983,1.6874,701.821,9.523 +14,8.8631,6.7384,4.498,2.8617,1,240.899,1.821,35.735,196.515 +25,2.1412,2.1069,8.474,3.4466,1,10.2813,2.7559,669.348,10.0337 +17,8.7994,8.3694,302,4.9093,0,9.0923,2.784,434.216,4.5598 +16,6.3422,2.8994,3.718,1.9258,0,12.3962,1.0936,570.261,192.379 +18,2.144,1.8668,1.648,3.5626,1,1.4598,3.629,551.754,10.9852 +23,4.8479,4.064,2.092,1.7976,1,358.057,2.31,176.458,145.874 +24,2.4477,7.3056,6.569,4.2714,1,153.363,7.868,848.132,197.549 +23,7.3031,9.6546,5.108,4.2901,1,349.054,2.1018,86.847,12.5381 +20,7.8298,8.0928,2.311,4.5113,1,326.739,2.7454,211.688,2.6515 +30,1.9522,9.4035,4.029,273,1,3.3056,1.7707,422.368,231.303 +19,5.5553,1.4061,3.732,1.491,1,156.017,2.5837,470.227,6.877 +14,8.3316,7.118,9.874,6.696,1,28.343,6.739,553.433,23.862 +19,9.4255,5.577,8.536,2.2699,1,459.201,2.7313,3.205,1.446 +18,5.6217,2.903,388,2.4772,1,20.066,6.799,761.227,11.6109 +20,9.5525,8.2805,9.139,1.2795,1,252.396,6.774,863.339,169.184 +24,5.8212,6.7199,3.426,3.6172,0,375.079,2.6396,150.772,217.512 +28,4.5477,9.7073,6.679,1.3488,0,401.648,1.6647,897.663,187.281 +15,8.6338,2.5479,9.666,4.2695,0,46.167,2.3983,852.403,6.1351 +23,5.4368,4.8578,3.903,8.883,1,248.595,2.4075,546.834,5.8393 +20,5.2471,5.0124,6.799,1.8362,0,9.6919,1.9409,281.984,8.5581 +13,5.4128,2.3918,2.959,3.1112,0,382.211,5.672,215.415,2.653 +16,8.6211,5.9009,2.663,3.0267,1,6.2788,2.0763,494.234,160.698 +14,8.4875,4.4329,5.742,3.901,0,209.171,1.909,512.132,225.902 +17,4.6317,4.4672,9.793,4.2313,0,314.107,602,65.535,154.105 +22,3.9997,3.6274,4.531,2.9903,1,345.928,1.9287,803.621,12.801 +19,5.4274,1.693,9.376,4.3493,1,366.514,2.7234,935.155,12.0804 +18,6.155,5.221,9.144,4.3382,0,9.6766,2.3151,798.318,142.227 +24,3.145,3.3525,2.538,2.7296,1,490.825,9.974,909.955,170.547 +13,8.1456,132,4.018,4.5539,1,8.9209,2.4711,504.375,19.08 +20,5.3783,3.0794,6.433,4.242,1,4.8037,2.8998,4.8496,167.597 +20,4.1964,2.7863,518,4.7906,1,332.025,9.959,6.1312,169.208 +23,1.9614,3.9345,96,4.2525,0,45.5,5.605,275.803,228.416 +21,3.1496,1.3185,9.937,4.106,1,279.692,5.925,617.846,215.842 +17,9.5435,5.0768,7.527,2.3468,1,297.741,1.201,341.872,197.742 +22,3.7459,6.9244,4.377,1.0602,1,269.242,157,174.482,1.0406 +25,2.5197,6.3019,6.182,4.5535,1,2.1374,1.4633,85.199,160.528 +24,5.1461,8.0375,876,3.6127,1,340.656,2.1969,985.145,10.9195 +22,3.7638,4.5201,4.953,1.4087,1,17.91,1.5914,2.6475,148.224 +33,1.3164,5.1909,9.308,1.705,1,467.837,2.9102,9.853,164.708 +26,3.9083,8.104,8.966,3.4304,1,9.3395,1.3851,504.345,171.516 +16,5.897,4.277,3.374,2.3891,1,151.058,398,344.291,208.662 +24,5.9654,7.016,5.314,4.074,1,252.427,1.4104,78.433,218.398 +26,4.209,4.346,6.974,7.072,0,238.678,2.7896,657.759,145.639 +18,5.0257,4.1774,0.34,3.7282,1,200.152,2.876,7.7825,214.599 +13,9.6897,7.6021,649,1.6428,0,157.201,6.689,549.434,183.509 +19,4.3961,1.7484,5.054,2.5382,1,7.3592,2.1467,343.167,4.8654 +20,3.324,3.3859,6.016,3.8331,0,410.461,8.823,965.461,8.475 +19,3.1912,2.2417,58,3.7559,0,224.385,2.2957,480.526,2.373 +21,5.1199,3.5911,956,8.351,1,286.478,1.258,928.387,14.079 +15,7.8357,2.3037,2.073,492,0,273.276,2.3882,3.9873,12.5182 +24,2.8539,5.7941,3.481,2.9558,0,287.744,1.6546,11.2242,167.128 +20,7.3837,7.9817,5.411,3.7082,1,35.242,2.474,392.406,202.279 +29,1.1903,7.8661,2.938,7.452,1,31.469,1.1584,888.087,3.9466 +21,4.7704,3.645,2.762,1.8598,1,136.951,9.997,549.158,205.544 +22,7.9828,9.8876,8.693,4.3514,1,276.855,2.4302,825.899,2.354 +22,4.0486,5.9385,1.451,4.7211,0,12.2256,1.8746,290.694,211.978 +22,6.0736,3.994,4.955,2.2703,1,294.418,2.3322,12.0379,204.117 +29,2.8448,8.3554,9.528,3.976,1,215.967,1.1164,253.578,167.269 +18,7.678,7.2987,625,1.2885,1,1.9709,2.0752,64.885,7.2007 +27,1.4705,7.4928,7.172,1.1648,1,366.993,1.957,872.703,2.2419 +12,8.6729,1.9614,4.312,1.1948,1,137.333,1.102,460.449,186.741 +24,2.7838,4.6832,199,2.4694,1,460.097,8.624,201.679,5.2291 +18,8.8696,8.6183,6.461,2.9161,0,140.279,2.3211,641.236,10.5825 +26,4.1728,5.0404,6.319,6.125,0,498.311,1.6023,204.965,12.7406 +19,7.5042,6.8345,1.104,4.4468,1,231.476,1.2265,574.585,164.506 +24,3.873,5.8793,4.622,3.0999,0,1.3204,2.6899,11.1269,11.6985 +17,9.1532,8.4236,9.153,2.9863,1,3.8134,1.4921,813.024,166.688 +22,2.1397,2.8456,2.051,4.9364,0,4.1044,1.8402,807.115,195.369 +27,2.6067,5.7548,4.611,3.1407,1,2.8107,2.9575,545.843,171.135 +14,5.4373,1.2323,4.611,4.6448,1,133.895,1.5672,4.7801,7.1881 +32,1.7374,6.9021,8.108,1.4313,1,162.294,2.3505,287.384,214.629 +27,2.7638,7.3197,8.246,1.2006,1,5.5643,1.2415,146.902,132.137 +9,9.4939,4.284,7.593,2.5826,1,219.066,109,528.221,11.169 +18,9.7884,6.7579,3.655,2.543,1,182.675,2.5034,11.0717,138.011 +24,4.3863,4.1469,72,1.1324,0,318.162,2.8332,871.029,11.5973 +10,9.3096,1.241,3.495,3.4983,1,9.7932,1.3031,851.663,181.226 +24,5.9034,4.1991,6.798,1.482,1,456.993,1.5109,164.537,10.0959 +21,3.4277,1.9423,7.027,3.4532,1,257.995,1.2724,697.939,186.414 +21,7.3216,4.1556,965,2.2859,0,311.867,2.9907,699.538,182.437 +15,6.9301,3.8434,4.536,3.445,0,1.976,2.7101,402.787,6.6449 +13,9.9021,7.3839,6.324,2.3854,1,279.544,1.233,161.469,2.3026 +25,3.3854,7.7422,5.392,4.8867,0,18.405,2.3371,140.787,20.423 +20,7.0485,6.0703,1.506,1.6734,1,462.086,1.8025,742.081,4.0541 +20,1.4682,2.269,4.612,4.9129,1,442.822,754,227.976,7.484 +30,2.0228,9.3102,5.448,3.249,0,318.824,1.3341,607.419,9.6558 +27,1.0353,6.8623,9.507,3.4188,1,383.926,4.491,867.223,6.0996 +14,9.9951,342,3.665,2.2711,1,322.297,2.6191,597.168,5.2887 +13,8.2205,8.1883,9.801,4.1107,1,8.484,381,974.223,4.1355 +17,8.0805,2.2027,5.423,3.9481,1,351.563,2.6193,649.047,179.807 +21,5.5875,5.7922,2.425,4.2011,1,8.8545,2.8225,321.457,188.021 +22,3.7006,4.6663,1.917,4.737,1,341.285,219,853.943,1.1134 +24,2.3614,4.1984,1.417,4.1118,1,5.253,2.1595,317.803,131.235 +27,3.5621,8.8971,4.529,1.0702,1,155.453,1.6467,971.855,3.2435 +27,4.3837,4.3736,219,1.284,1,258.464,2.8628,482.955,11.9893 +17,7.8068,7.534,445,1.0887,1,166.585,2.3944,953.715,8.3503 +27,5.857,9.4664,9.884,2.3964,1,346.994,2.0832,191.762,4.8436 +34,1.6974,9.2054,6.701,3.7106,1,261.355,2.7765,2.1285,227.534 +28,1.1623,6.8443,7.598,1.0932,0,479.834,481,20.417,229.619 +25,1.921,4.6789,119,565,0,178.906,1.1279,10.7385,135.353 +20,4.6945,9.286,4.731,3.2298,1,36.093,2.5288,736.616,4.5132 +13,9.3987,7.9075,2.862,4.9195,0,417.921,3.048,27.19,139.984 +20,6.7366,7.548,8.941,3.1944,1,12.6809,2.8063,643.079,22.284 +14,8.2164,686,1.813,3.4553,1,377.066,2.2355,67.197,9.0663 +18,5.1974,5.3738,4.587,2.8058,1,196.657,1.318,691.363,3.3057 +18,4.255,1.6013,588,3.9117,0,6.4364,1.0162,834.282,166.486 +18,1.9756,773,514,4.879,1,1.824,4.428,157.476,157.505 +11,8.8834,4.2311,8.302,2.7206,0,371.879,281,5.9959,333 +13,8.0484,1.3722,2.315,2.084,1,9.3122,1.2708,3.9408,204.865 +23,2.5131,1.6052,3.774,4.3017,1,2.5597,2.5293,11.2752,158.579 +16,5.6103,7.691,7.921,4.8486,0,248.605,1.5956,385.394,4.6968 +18,5.3864,2.0509,5.281,6.459,0,173.349,1.3534,967.702,777 +20,6.6258,7.1548,4.021,2.8909,0,345.903,9.571,359.693,233.352 +12,9.5157,8.0893,294,3.9623,0,5.3682,4.708,458.394,181.123 +21,6.2179,4.5253,7.534,2.6667,0,6.6327,2.9703,816.253,8.7612 +18,5.862,5.0655,9.722,2.046,1,202.054,772,919.412,10.3869 +23,1.4529,3.266,6.203,3.2761,1,260.204,9.354,971.727,12.9327 +27,1.5662,6.932,8.565,1.3506,1,412.097,2.3081,828.187,172.471 +24,2.6861,2.5757,5.169,1.7457,1,292.813,1.5617,507.491,4.1503 +24,1.2922,5.439,2.317,4.9614,1,451.299,9.416,237.182,4.6975 +19,7.6902,7.3955,144,3.1823,0,10.8884,2.9782,602.383,1.1585 +18,7.51,06.05,6.534,4.3646,0,29.811,1.8575,204.827,236.591 +23,2.2245,3.9213,4.931,4.0388,1,327.619,8.855,6.5167,210.137 +16,8.5247,1.1832,7.821,3.2614,1,362.903,2.5439,92.016,13.271 +26,2.3931,7.8077,6.947,4.2036,0,494.325,4.505,489.942,10.3266 +23,3.7106,3.6379,988,1.4358,1,234.017,1.3907,513.158,5.6986 +28,3.2408,7.3605,5.103,3.1856,0,18.466,2.5188,613.127,142.796 +25,4.3508,5.1298,4.272,2.953,1,426.103,2.951,456.894,165.722 +24,3.292,7.3866,2.867,3.1121,1,8.8395,1.1492,449.986,165.404 +19,5.4006,9.0729,4.769,8.432,1,1.8514,4.143,915.994,1.545 +27,4.6667,9.2103,8.729,1.3862,0,221.795,1.7008,818.381,168.489 +16,9.8791,5.3511,424,1.4333,0,12.3603,2.832,220.466,207.929 +27,1.5033,5.1151,9.779,3.1997,1,198.263,1.9968,29.886,2.758 +25,2.2796,2.6568,9.933,4.8627,1,493.042,1.8065,664.016,18.129 +28,1.4754,9.358,5.978,4.7703,1,174.244,9.279,575.381,197.577 +20,6.6326,4.5792,3.315,1.1359,1,353.983,1.819,768.498,6.6281 +26,1.4906,1.2759,223,1.5242,1,12.5201,2.654,730.356,170.905 +15,8.528,4.327,2.765,1.803,0,151.711,1.1266,711.462,2.3221 +15,5.6074,1.2705,501,1.9941,1,12.1578,7.262,881.416,155.811 +16,5.7431,5.0253,4.751,4.1734,0,28.608,1.4429,768.888,12.2479 +17,6.0544,5.6128,573,4.5788,1,11.3054,1.1286,250.419,203.965 +26,2.5373,3.3776,7.185,1.1825,1,359.182,1.4098,874.109,10.8472 +19,2.7792,7.165,3.719,1.329,1,340.137,2.872,342.177,10.2743 +26,3.8694,9.435,1.994,1.1042,0,210.635,1.1986,911.786,224.108 +23,6.3415,7.7335,5.449,1.7505,1,1.2789,2.4796,826.027,224.224 +23,2.8911,8.3888,9.738,4.0238,0,1.1326,1.201,8.3345,8.571 +28,2.047,3.6687,6.951,3.2343,1,266.403,2.9037,773.568,11.6536 +16,9.7311,7.6083,4.917,3.9297,1,419.599,2.1265,505.113,3.863 +26,1.1978,4.8537,7.769,2.9152,1,299.437,1.0981,977.342,6.5689 +13,8.2243,2.0108,7.375,1.2887,1,217.825,755,463.835,159.874 +17,8.0923,1.2442,8.917,1.14,1,441.059,2.0561,7.6338,3.1029 +18,3.6749,3.4505,2.047,45,0,9.8498,9.073,300.205,2.705 +24,2.2206,1.3755,8.589,3.9049,1,179.712,2.7807,435.907,17.451 +25,2.3107,9.9827,301,4.2356,0,282.655,349,595.999,153.923 +12,7.2769,4.919,941,3.8414,1,145.835,862,160.585,216.639 +19,6.7853,4.4114,2.811,372,0,498.856,6.631,519.932,130.154 +16,8.0447,4.5209,9.268,3.8111,0,22.616,1.8199,488.638,226.879 +17,9.4373,3.1963,9.638,2.288,0,2.5861,2.5049,838.296,146.235 +15,7.2273,5.7135,1.455,528,0,8.8042,5.104,309.379,9.2916 +24,2.4027,1.4998,9.745,2.2024,1,26.624,1.7542,455.022,146.031 +25,3.191,7.8391,857,2.3807,1,275.028,4.325,394.727,179.803 +14,8.5797,3.3245,2.186,4.0806,0,492.072,1.6895,635.909,8.341 +22,2.8838,5.9134,4.442,3.3976,0,299.983,545,837.827,8.9406 +32,1.6527,7.1564,9.936,7.666,1,333.314,1.6734,678.868,151.185 +23,7.3295,8.8904,4.886,1.1307,1,10.6861,1.5653,470.399,10.9342 +22,4.6227,8.3579,5.504,1.4284,1,5.3432,1.285,641.451,12.6474 +20,9.2804,6.0831,6.944,6.184,1,301.005,2.0683,329.022,23.57 +18,6.8523,3.8839,9.683,1.4382,1,43.244,1.7168,152.659,1.0506 +28,1.8138,5.032,7.834,3.643,1,293.686,1.8693,326.521,155.496 +20,9.5307,7.6873,2.242,1.207,1,221.392,1.5893,449.253,221.493 +23,3.327,8.7755,303,4.1768,0,289.103,2.166,444.872,5.6691 +18,4.0349,1.0378,976,2.3476,1,234.386,1.575,740.225,5.0887 +22,4.6203,3.8486,6.445,1.6147,0,7.0941,2.7668,936.982,8.712 +30,1.461,7.7612,1.807,2.0621,1,370.592,2.8305,39.507,1.7779 +21,5.4686,4.3165,2.574,3.5475,1,266.519,2.18,9.5584,134.468 +26,2.1099,3.3223,8.881,2.584,1,199.661,2.7353,4.3079,15.491 +25,4.6087,4.1132,3.268,364,0,279.819,2.7695,1.3913,196.773 +21,4.1564,6.0284,5.666,4.6116,1,12.0613,786,938.719,1.5882 +25,7.9556,9.9981,3.976,0.33,0,213.979,2.9818,995.677,10.4684 +14,8.2285,4.9299,74,4.6931,1,311.223,8.023,6.087,18.821 +22,2.3807,2.0849,3.629,1.408,1,11.3097,556,364.627,184.392 +20,4.299,1.6285,4.081,3.8549,1,374.498,2.8867,672.652,1.7674 +17,4.3602,4.235,8.957,2.6734,1,260.505,6.712,187.156,2.735 +27,2.3627,5.5882,3.245,2.5286,1,430.853,1.7524,598.493,187.999 +23,8.1861,5.4457,3.792,3.639,1,423.618,2.912,815.481,3.3115 +14,7.3651,2.0523,7.829,1.1937,0,247.259,1.484,859.506,138.669 +21,2.7134,6.9533,759,3.8877,0,9.7733,8.079,709.356,2.2619 +25,4.3005,7.4111,7.983,4.4563,1,368.321,1.8265,9.0947,7.0923 +26,1.9522,2.591,9.538,2.6456,1,209.339,2.2877,354.912,3.7929 +22,6.6539,3.441,7.956,1.7667,1,297.314,2.4221,967.669,176.735 +31,2.0923,9.9047,4.076,2.997,0,5.3633,2.6515,200.828,161.454 +11,9.8734,3.7426,8.215,3.4109,1,315.792,5.053,459.387,3.2473 +17,8.0261,7.608,5.087,1.3922,1,186.775,1.1101,340.835,1.4239 +23,4.5121,4.5273,2.777,2.751,1,167.095,2.1428,213.483,11.192 +23,6.2071,7.9334,3.029,3.3293,1,489.958,2.1459,330.301,4.6932 +16,9.2021,7.6902,2.238,2.4286,1,216.215,9.242,197.623,1.954 +21,5.9869,6.6776,145,598,1,339.019,9.127,878.481,6.3425 +27,2.5705,8.5478,1.845,5.546,1,313.864,9.619,182.699,5.1658 +26,4.4083,9.3922,632,3.496,1,5.2152,2.6762,627.309,16.439 +25,8.5883,5.7998,8.885,3.184,1,373.964,2.7285,942.892,206.607 +14,6.7979,2.3747,931,4.3298,1,16.158,445,953.119,5.7033 +18,6.8565,3.9863,5.868,1.5566,1,39.947,975,60.442,5.3531 +19,8.8014,7.5831,8.405,4.433,1,30.382,1.1761,278.187,9.3064 +14,9.0458,6.5088,1.836,3.7988,0,158.546,2.9472,255.419,4.1414 +16,9.2781,1.778,9.017,2.6221,1,178.146,2.8325,749.996,227.236 +24,1.8536,5.124,5.064,1.5332,1,365.754,1.885,98.09,5.8446 +15,5.8971,6.8296,672,2.0305,0,27.503,1.374,8.6819,2.2399 +15,7.6646,2.5108,1.413,1.071,1,334.176,5.737,791.574,133.653 +15,7.8123,4.9967,309,3.3135,0,7.9159,1.3026,131.756,12.9029 +25,6.4604,7.4675,436,1.8289,0,393.488,2.8771,305.203,151.659 +21,2.5011,5.6267,3.093,3.5702,0,160.196,2.841,570.957,232.009 +13,8.1768,833,599,3.1409,1,309.931,2.3741,304.252,7.7637 +9,7.481,1.8558,236,3.2563,0,5.734,5.736,653.759,8.6297 +22,1.7752,2.1933,2.657,3.9645,1,16.071,1.5236,423.024,8.089 +22,5.1743,2.5786,9.944,3.1558,1,324.434,2.3009,226.923,150.871 +25,2.5658,5.654,2.355,2.0936,1,137.103,2.0775,535.621,144.977 +27,4.0373,5.0397,2.392,1.9496,1,440.156,2.3272,3.377,12.6914 +29,1.1627,2.0316,6.868,5.979,1,330.614,2.4408,743.668,8.7438 +17,4.603,6.755,8.594,3.8972,1,435.139,9.172,527.066,10.2636 +18,5.9489,1.7143,3.871,3.8055,1,197.695,1.0921,947.233,190.202 +24,6.5762,9.8438,8.756,1.2315,1,1.6993,2.4472,11.1762,146.219 +14,6.9714,4.6855,3.401,4.3134,0,28.807,1.159,734.969,171.914 +18,8.5266,8.6735,197,2.945,0,169.597,1.5434,307.941,6.6415 +29,2.9392,8.4875,3.296,2.3934,0,224.094,2.7612,379.417,218.758 +29,2.0843,5.1152,6.094,875,1,340.555,2.655,355.002,8.439 +21,8.6638,7.0669,3.671,1.9137,1,350.332,2.4129,364.442,142.967 +22,2.4095,1.9275,6.729,3.2034,1,1.3778,646,436.527,194.964 +22,9.7728,6.884,2.369,4.487,1,384.651,2.6631,3.0795,207.909 +17,8.5828,2.7238,701,2.2978,1,246.759,2.735,84.829,7.6692 +23,5.5079,8.3206,3.474,4.9672,1,278.349,1.991,882.978,11.034 +8,9.8328,8.372,4.559,3.5827,1,148.997,8.967,4.9161,8.373 +29,1.8764,7.7314,5.577,2.7344,1,210.417,1.4698,778.243,189.544 +20,3.7276,9.994,6.862,2.6652,1,355.188,2.2879,8.155,2.9897 +27,6.744,8.8119,2.387,2.188,1,388.357,2.4391,809.735,10.274 +21,4.1501,3.042,8.359,4.7866,1,193.553,01.03,616.858,237.794 +16,9.3554,6.5439,7.218,4.6409,1,345.559,9.782,313.289,220.257 +27,1.5906,4.875,2.341,3.412,1,12.9022,2.2085,617.744,7.9206 +20,5.9447,3.663,975,4.951,0,416.011,2.0591,51.158,5.3731 +20,6.3178,6.4544,6.648,1.0392,0,304.907,1.5396,639.397,6.0406 +25,6.8746,9.4752,4.524,9.195,0,387.593,1.2608,480.618,164.349 +22,3.301,4.127,1.575,2.5979,1,238.577,1.9715,775.146,174.191 +23,4.2811,9.1885,5.332,1.039,1,11.4555,973,5.4817,5.1958 +12,8.5931,6.0908,1.648,3.479,1,214.616,2.271,350.839,5.7598 +25,2.7545,8.0731,4.295,2.7261,1,190.743,1.7193,563.694,7.7613 +13,8.4418,3.8387,4.087,883,0,166.358,6.308,592.361,10.3963 +20,6.0639,4.7184,7.199,3.7203,0,10.6087,2.3244,17.785,220.193 +21,7.8597,8.6885,1.924,9.441,1,379.584,2.3171,8.3784,6.362 +17,7.4225,4.1485,8.219,4.1244,1,4.3176,2.1299,3.0769,153.167 +30,2.8676,5.3466,3.261,1.7752,1,44.378,2.7108,418.883,206.807 +13,6.1193,2.019,444,1.6931,1,8.7512,4.225,337.083,173.607 +12,8.8095,1.586,7.723,591,0,489.937,7.777,57.213,5.2018 +20,4.889,6.4169,6.254,4.9386,0,494.234,7.569,45.502,11.4419 +18,9.6993,7.1698,308,03.06,1,199.194,2.3472,400.127,218.467 +23,5.0699,5.826,3.862,2.1137,1,493.911,1.564,844.887,2.7772 +23,2.2851,1.4331,3.058,4.831,1,434.534,758,625.301,237.003 +17,4.5049,4.4541,5.948,3.4957,1,4.1215,4.093,64.964,3.447 +17,9.5653,3.5509,3.326,1.4137,1,473.664,2.679,388.008,3.418 +26,3.8775,4.9566,7.257,4.9414,1,2.1257,2.0764,779.076,195.086 +17,8.8129,8.7033,5.798,4.7527,1,9.0957,1.5856,160.567,198.803 +19,8.9313,7.7586,1.457,3.6765,1,292.298,2.8964,407.981,0.91 +18,4.1517,8.399,3.103,4.8554,1,4.0369,2.5488,5.6702,4.0393 +27,1.7493,8.9031,2.214,5.282,0,8.0864,5.344,12.4283,227.647 +19,7.521,4.7177,3.903,1.3996,1,476.746,1.5244,9.0711,6.7043 +25,3.8036,7.4386,516,1.2662,1,497.344,1.4582,447.022,2.938 +18,8.0463,1.4004,5.068,3.601,1,399.068,2.5329,700.351,6.097 +21,4.9839,6.7072,7.545,4.8611,1,257.605,4.473,31.957,176.504 +20,5.3674,2.3633,1.892,2.999,1,45.015,1.3554,3.6345,219.949 +15,8.2012,4.3838,9.465,4.2834,0,5.5949,1.9096,710.136,3.7238 +18,4.4413,1.686,3.428,3.8408,1,471.446,2.8358,215.359,5.3859 +22,4.9881,1.5161,3.002,1.8793,1,175.776,2.6978,725.448,10.5968 +22,4.3857,9.208,6.852,94,1,430.745,1.6015,1.7281,179.593 +23,4.3061,2.3974,8.055,305,0,334.187,1.8202,319.219,158.087 +22,5.7335,1.2002,3.785,01.02,1,480.137,2.5572,625.018,7.8608 +22,8.2792,6.9191,7.468,2.4694,1,432.339,2.2332,872.439,1.5924 +23,4.2559,2.904,8.837,2.2895,1,443.949,2.638,756.587,6.0711 +21,5.7183,6.1774,7.668,2.9265,0,315.877,2.6878,455.124,5.2695 +14,7.0365,1.4071,342,3.8598,1,416.579,2.4978,72.133,5.053 +25,3.425,9.4516,8.274,1.8868,0,378.566,281,542.166,23.401 +28,3.4977,9.3309,7.745,8.018,1,8.0812,9.328,815.262,6.1289 +10,9.4007,2.255,6.693,4.2002,0,324.298,1.2106,774.345,200.768 +20,7.5118,6.1442,0.76,1.6635,1,7.4088,2.0337,976.094,11.6367 +18,6.1947,2.801,9.794,1.4344,1,434.728,9.206,11.3889,23.335 +19,6.8295,9.3179,4.311,3.8216,1,3.2975,9.707,347.298,3.5893 +24,1.2637,5.2299,672,4.6707,0,493.523,1.2006,200.453,2.6562 +14,6.5629,4.322,4.609,4.5748,0,200.313,2.866,63.446,591 +20,5.5856,3.425,464,6.872,1,8.5315,1.3115,667.387,172.427 +14,5.9117,7.685,2.943,2.5158,1,467.837,422,211.773,7.353 +21,4.2348,3.9294,5.869,4.644,1,2.2713,191,427.337,208.885 +25,1.7333,6.6993,3.096,4.8049,1,235.053,7.098,606.129,152.113 +31,2.7401,4.6989,6.854,1.0761,1,385.114,2.8164,662.364,138.584 +17,9.5567,3.8372,822,9.871,1,158.375,2.865,11.1621,11.6854 +16,4.6783,1.1916,4.204,4.4444,1,264.417,1.587,921.862,6.1962 +18,5.2001,2.4494,9.001,4.8393,0,350.207,1.9391,4.3742,1.5525 +25,1.4744,1.2014,798,3.4882,1,475.988,2.3878,973.213,10.6456 +28,1.3381,8.075,8.401,605,1,5.1351,1.677,323.163,2.3789 +15,7.4546,1.3524,8.286,2.4293,1,7.8613,1.1229,323.182,217.375 +24,5.8429,5.9537,322,4.083,1,254.435,1.9267,451.566,199.039 +21,5.5784,3.4274,2.987,2.8624,0,209.237,2.6948,698.009,148.743 +22,3.1881,2.2598,3.051,663,0,205.398,2.1805,168.006,10.8586 +17,7.7028,6.3947,8.114,8.594,1,148.481,1.0502,262.435,10.9007 +25,2.5141,4.57,8.317,4.3207,0,280.342,2.7299,961.957,11.1484 +26,2.7094,4.2015,3.297,2.6351,1,441.644,1.9939,878.074,178.911 +20,5.1464,5.9285,5.926,3.5292,0,8.0462,2.4907,220.268,3.0289 +21,3.5765,4.9127,1.389,1.8653,0,10.7643,1.1565,577.281,12.7511 +19,3.2272,3.0348,4.688,2.6624,0,335.412,65,211.566,19.504 +16,6.8071,5.5906,9.988,4.8855,0,2.8099,4.985,554.561,12.243 +21,6.8587,6.695,1.588,1.6485,1,336.882,2.7815,372.116,3.298 +8,8.4207,2.669,9.476,3.3739,1,157.228,994,36.88,5.8726 +24,4.7594,4.6587,8.243,8.625,0,178.927,1.7881,638.719,16.046 +25,1.6578,5.768,9.722,6.087,0,202.775,1.2274,259.322,224.208 +19,3.463,1.8641,1.796,3.9182,1,174.794,1.2887,410.217,21.45 +16,9.82,5.6051,2.135,4.2205,1,420.605,1.2025,926.006,197.449 +22,6.3663,8.6619,169,3.3416,1,473.034,2.023,757.811,228.039 +17,7.3876,8.8281,7.247,791,0,274.006,367,389.451,6.718 +21,1.0662,6.994,6.441,1.2029,1,290.939,1.888,237.959,2.975 +14,5.6639,4.1911,1.781,4.5559,1,3.5242,1.617,662.422,8.505 +30,1.3378,5.8301,7.911,1.4435,1,356.596,2.568,809.613,138.483 +17,6.1231,1.4707,2.992,4.0943,1,292.049,2.0899,862.157,7.5952 +12,9.2869,7.6543,135,1.4297,1,2.5197,3.426,568.638,1.0609 +11,9.7158,7.4424,4.226,4.6973,0,9.9213,7.845,521.632,12.1725 +18,5.865,9.0334,91,4.5723,0,10.0972,1.9708,722.446,4.7927 +15,5.1238,849,2.632,2.163,0,8.5484,3.368,184.009,174.617 +14,9.5052,2.1668,3.713,3.8521,1,329.323,2.7308,853.618,2.1408 +24,7.0625,8.2719,8.519,8.473,0,46.422,1.4325,8.3184,22.995 +33,1.5841,6.7058,7.925,1.0764,1,381.488,2.8892,606.987,210.403 +24,5.1915,8.9439,4.428,2.2992,1,238.687,5.775,593.797,209.725 +17,3.1622,5.718,7.246,2.8816,0,202.026,919,317.595,189.574 +22,5.2282,5.9696,5.686,1.629,1,193.229,1.7708,4.5108,152.061 +20,5.0992,5.6905,3.408,2.8769,1,300.623,9.862,720.676,1.2823 +15,6.2393,3.567,7.259,8.533,0,17.961,1.7172,3.3932,158.982 +23,4.2109,5.1352,6.835,1.117,0,11.3061,1.421,187.816,179.263 +25,2.4784,6.0952,6.191,2.8561,1,301.421,1.3715,548.794,3.1397 +21,5.5335,1.9129,618,2.5871,0,195.353,2.5535,940.583,147.781 +12,8.4718,2.7333,683,3.4483,1,7.062,5.755,7.5274,11.4928 +17,6.9761,6.4035,3.845,3.2491,0,1.1116,1.4989,582.999,11.3386 +21,4.0453,4.683,8.691,4.4874,1,137.068,1.248,335.604,4.7871 +20,9.4197,8.5801,1.623,2.2973,1,256.211,2.0213,672.724,177.465 +14,9.2099,3.4238,8.839,418,0,17.712,1.504,95.338,22.203 +19,2.8841,2.6666,3.423,3.1533,0,1.2028,1.5883,275.904,189.073 +27,1.3548,9.8487,125,3.3757,0,11.1576,1.4356,956.368,8.8568 +23,7.6718,9.1114,0.6,2.6075,1,4.821,2.9207,87.192,236.203 +15,8.4485,2.899,376,3.4465,1,474.316,2.2675,610.985,8.7401 +14,9.7108,7.7073,8.155,1.6179,0,156.417,4.649,760.654,5.6262 +14,9.1985,1.1033,4.308,744,1,7.383,1.5276,866.239,23.234 +18,6.4048,2.749,6.686,3.3228,1,330.282,2.3512,805.434,189.556 +19,5.7705,2.737,3.083,1.2259,1,11.6224,1.5737,333.441,182.699 +22,1.2506,2.6935,2.095,2.2816,1,283.368,1.0701,814.478,1.8584 +23,3.2199,8.1932,388,2.4581,1,7.5373,1.13,320.384,4.6086 +23,5.1365,7.1067,6.068,2.386,1,492.007,1.101,868.408,4.444 +24,6.6565,9.8161,6.569,2.9922,1,48.513,599,262.911,186.396 +24,6.0153,7.1151,5.782,1.473,0,327.992,2.1918,576.538,6.6778 +15,7.6837,4.1826,9.881,4.9484,0,353.601,1.8327,695.994,3.1734 +22,3.5179,6.9893,6.911,3.5816,1,212.939,806,431.533,4.3654 +27,6.0846,9.9946,9.315,2.1269,1,48.109,1.8901,785.143,153.872 +29,1.7933,7.1014,1.179,9.567,1,21.187,9.262,926.102,10.3932 +23,4.723,7.6168,614,4.009,1,11.9734,7.301,194.391,225.935 +20,7.7514,9.3837,311,3.361,1,5.7689,2.2235,4.3108,8.7814 +16,7.2406,1.1365,1.366,1.5848,0,10.4063,2.4273,630.251,20.013 +16,9.9158,7.0478,5.259,1.1474,0,286.107,1.8771,606.165,131.152 +27,3.501,8.5081,519,1.8998,0,12.2546,2.3524,347.891,169.283 +22,5.4837,9.5438,575,2.9646,1,327.125,1.0971,787.608,4.0479 +16,3.9658,2.1097,7.452,3.3585,0,191.092,2.154,827.881,179.756 +22,4.9654,5.0393,9.713,3.2259,0,443.436,1.8147,338.666,2.0557 +16,8.7126,6.8055,8.783,4.3163,1,279.239,7.679,68.545,165.869 +18,7.1579,2.4747,1.184,1.0938,0,311.302,2.3324,645.605,11.1724 +13,8.942,6.1947,3.385,3.1837,1,27.828,1.0743,349.218,5.4846 +27,2.8316,2.5758,2.558,5.056,1,442.784,2.012,969.457,11.5293 +12,8.8603,3.3346,1.768,2.7397,0,3.171,1.6586,352.938,205.363 +23,1.5379,4.4152,5.447,2.9198,0,3.3674,2.4525,624.081,3.7133 +20,8.9974,5.2919,5.533,1.0812,1,35.087,2.4969,386.325,4.071 +19,3.9617,4.4937,2.272,1.9585,1,383.982,2.049,2.1715,12.8159 +22,3.8313,4.932,7.119,4.136,1,216.795,8.853,10.0722,150.061 +22,5.6088,2.9859,7.329,742,1,176.153,2.6126,239.993,10.0848 +9,9.4662,1.5897,21,2.1725,1,138.973,1.212,814.047,6.3934 +20,1.43,4.735,3.958,4.6637,0,11.7197,1.5446,447.644,1.6126 +20,4.1701,1.9598,8.901,2.5205,1,455.979,0.55,592.737,1.195 +15,8.7091,5.8194,5.203,3.6257,0,14.757,1.6581,944.418,9.797 +23,4.5645,7.8612,3.476,4.1343,1,324.039,7.938,155.553,216.308 +23,2.7924,1.6925,2.537,1.0189,0,393.547,2.4877,863.201,3.1526 +15,4.8231,1.0856,2.434,1.0911,1,1.0983,6.007,385.444,7.083 +22,4.47,7.4929,998,3.793,1,1.6937,1.0796,344.105,236.614 +11,9.2387,3.0516,8.172,3.7665,0,166.569,2.852,629.273,222.594 +21,7.8574,9.515,867,3.009,0,348.008,1.7639,899.652,1.0287 +24,5.546,7.1432,2.923,1.6125,1,130.399,2.8259,355.051,132.303 +9,9.8953,3.2676,457,1.9927,0,742,5.195,763.794,15.204 +16,5.1875,2.8954,7.814,4.1452,1,144.074,592,2.905,1.2987 +26,1.5241,5.237,393,2.1093,1,4.5065,1.2674,626.871,17.475 +19,3.3605,7.914,3.083,4.6296,1,10.9707,2.2452,634.253,237.089 +20,4.9246,1.1768,5.733,4.983,1,166.595,2.9253,56.05,10.3051 +18,2.4121,1.7586,4.096,3.9036,1,6.4029,1.538,938.444,10.786 +18,9.5281,7.7472,2.823,3.3319,0,353.182,2.3579,939.205,158.243 +15,7.9016,5.1386,2.752,1.9595,1,12.796,1.106,34.864,17.677 +22,3.4146,1.057,7.978,3.352,1,330.547,4.612,461.801,189.545 +19,6.3172,6.7352,974,2.8657,1,299.516,5.769,794.452,1.8619 +22,7.493,4.2369,348,1.8085,1,449.023,2.7717,845.472,192.165 +17,9.4715,5.1085,391,1.7545,1,4.3967,2.4281,423.789,207.378 +8,8.9347,2.1412,366,3.4385,1,10.7304,9.352,355.536,1.0855 +24,5.6367,5.5178,7.592,2.3182,1,432.589,2.8206,82.241,9.392 +19,7.9719,9.7915,5.524,3.7605,1,411.066,3.158,383.101,132.214 +16,6.0593,7.344,7.836,1.9909,1,9.6053,9.676,41.118,11.9234 +20,5.9743,2.8392,6.975,7.543,1,5.3868,1.9588,144.175,235.223 +27,2.0327,2.43,9.075,2.3067,0,428.121,2.9983,54.752,7.0656 +24,2.1352,2.4855,8.858,4.7551,1,8.9069,1.3969,333.184,141.648 +22,5.7658,3.7871,7.883,4.1976,1,435.555,2.4321,594.701,12.1602 +32,3.4198,8.1811,4.752,1.0287,1,480.557,2.7476,453.727,12.8576 +28,1.1893,9.1286,3.081,1.9565,1,11.0403,289,750.655,15.832 +14,7.5056,2.0222,507,4.639,1,420.194,8.668,284.995,12.9023 +25,1.2924,5.4295,5.021,6.185,1,211.916,3.011,18.028,1.667 +25,6.3575,6.369,6.103,1.2698,1,394.389,2.3282,70.593,20.249 +22,5.8527,5.2183,1.861,1.3111,1,203.698,1.7012,390.286,4.8277 +8,9.7193,4.3408,6.556,2.8547,0,3.5198,2.867,567.968,5.5477 +20,5.3579,1.9198,4.566,2.0537,1,356.348,1.2622,941.658,155.513 +26,1.5724,4.8822,6.202,3.994,1,7.5344,1.5419,489.253,11.466 +21,5.9652,4.0121,2.396,3.1459,1,463.513,2.0933,160.868,137.875 +20,8.5699,7.9556,4.344,4.954,1,208.873,2.3385,432.436,11.94 +12,9.9716,7.636,2.102,3.0321,1,4.1,2.636,483.746,10.0287 +19,4.8731,1.34,8.753,2.535,1,11.424,1.4629,768.319,11.5993 +18,3.8827,8.852,488,2.4683,1,431.259,4.834,203.236,3.386 +23,9.1599,9.0815,225,3.375,1,160.543,2.2598,353.433,232.633 +23,2.7212,5.3551,412,3.1961,0,428.164,1.973,5.9528,13.794 +23,6.5389,8.578,6.757,2.1566,0,8.6143,2.169,704.958,6.8836 +16,4.6514,5.815,2.146,2.0555,1,234.109,225,746.493,171.082 +29,1.3697,5.2652,9.896,2.9823,0,43.913,1.531,462.619,211.225 +23,4.1256,5.3943,5.337,3.0312,1,2.4202,2.5217,542.886,7.1152 +28,3.3871,8.607,289,752,0,152.139,2.14,752.316,7.7883 +19,7.1748,9.761,6.577,6.261,1,454.926,2.5852,275.618,10.5252 +11,9.5391,2.4045,2.752,1.1826,1,298.263,6.183,610.896,5.215 +24,3.4124,4.0654,8.203,3.3899,1,358.116,8.607,96.428,194.349 +19,8.3032,8.6584,3.082,2.8837,0,421.064,1.3238,661.388,140.202 +30,1.4982,9.3888,9.882,3.7881,1,261.798,1.5698,8.7329,1.3691 +22,5.8431,9.9272,6.051,3.703,0,422.683,7.565,297.357,239.209 +31,1.635,9.5919,8.444,4.2659,1,319.382,1.1437,523.935,137.993 +13,9.4063,594,728,1.8841,1,342.825,2.0611,8.1944,213.585 +15,7.8972,4.771,3.483,1.7253,1,7.6427,1.9361,679.804,12.0388 +13,6.9215,1.4761,7.375,4.1551,1,469.509,3.314,65.767,139.788 +20,8.4151,3.4886,6.551,1.188,1,398.042,2.9571,87.756,10.9074 +20,6.8277,8.2992,1.942,2.3059,0,12.7098,1.6882,504.993,10.1463 +20,9.7205,8.9266,3.562,9.716,1,289.997,1.4507,695.217,5.2393 +17,7.4256,1.8683,2.634,4.5692,1,188.233,2.9017,190.198,23.091 +12,9.3219,6.1966,6.134,2.039,0,330.201,421,1.2841,4.3625 +25,5.6542,9.1736,3.446,1.0624,1,496.873,1.631,180.531,12.6337 +23,2.0536,4.6373,3.091,3.4601,0,2.2873,2.4152,7.1592,2.0903 +18,5.7536,1.0354,2.074,1.2232,0,476.262,1.1967,433.441,23.841 +22,2.1419,4.5781,409,4.7175,1,3.6196,2.2089,47.362,133.362 +20,6.3324,3.7579,1.955,1.8381,1,230.382,2.6975,648.028,19.55 +21,5.3424,5.7766,9.626,3.3232,1,241.055,785,149.364,135.103 +16,6.6032,4.3866,1.545,1.7262,1,134.362,7.244,222.569,193.196 +21,1.0904,1.735,9.133,4.0362,0,28.335,1.0821,800.343,12.8258 +26,2.7536,9.94,4.285,4.4846,0,416.982,1.2553,580.757,10.6794 +17,5.422,5.4354,3.779,3.9396,1,146.981,3.331,3.907,10.9417 +11,9.5545,4.7363,2.313,4.2425,1,3.5202,6.939,849.921,562 +28,4.4525,9.5462,6.358,5.094,0,316.142,2.6197,633.508,8.8957 +20,4.8193,1.5586,6.855,4.6203,1,375.873,1.6998,194.773,228.467 +14,7.4323,1.8924,4.676,3.1215,1,477.262,8.035,259.545,162.138 +21,6.4341,8.0801,557,4.3461,0,7.9762,2.8308,558.012,220.637 +24,3.6903,2.6083,9.185,3.4222,1,45.068,2.3229,565.193,4.8063 +26,4.6973,7.9923,9.803,1.1992,1,241.062,1.0873,807.137,11.7878 +19,2.9593,2.7153,431,3.0478,0,11.7879,2.2963,364.997,8.276 +15,9.6942,3.319,6.137,4.547,1,481.374,1.7882,55.381,162.493 +27,2.1757,5.1701,4.503,3.4786,1,11.9215,2.0515,586.713,188.164 +23,4.3465,1.9669,3.219,2.045,1,366.722,9.643,56.309,179.472 +28,1.2326,7.5785,773,7.587,1,392.443,6.285,8.2177,2.0825 +22,2.996,6.412,4.561,4.8961,1,21.526,7.607,41.714,5.9407 +17,8.0242,9.236,8.184,4.5054,0,344.992,2.512,345.495,157.399 +25,2.8106,7.8299,17,4.4677,1,286.239,1.4131,99.285,182.158 +20,1.7206,1.8078,5.821,3.9441,1,9.6016,1.2187,471.032,6.5811 +20,5.2701,8.2016,8.808,3.4599,0,379.944,76,440.876,9.7498 +27,1.0897,6.4174,2.175,3.2754,0,464.008,2.5691,488.851,8.4304 +28,1.7629,6.6895,1.833,5.305,1,244.319,2.0456,92.009,1.096 +19,8.2686,8.3226,7.723,4.5028,1,497.155,1.3402,615.339,138.363 +18,7.9433,5.7382,2.551,4.4056,0,213.983,2.9011,395.252,160.587 +16,9.2362,4.66,192,3.7393,1,239.868,2.8216,913.452,6.6345 +11,8.6906,6.3664,378,4.6366,0,336.949,2.853,930.545,165.068 +14,7.1486,2.9796,3.925,2.7654,0,9.2885,1.8454,27.167,5.826 +29,1.471,1.826,8.741,2.2382,1,450.973,2.4511,399.462,171.727 +17,8.0456,6.1659,6.184,4.8397,1,400.636,5.189,966.794,10.9725 +15,8.6096,2.3385,406,2.3207,1,436.209,3.839,545.638,209.264 +13,8.1917,7.992,5.344,3.2066,1,304.779,7.793,437.428,130.736 +16,5.5763,55,954,1.8653,0,441.874,839,20.345,4.4317 +29,3.0961,6.0832,1.132,3.1816,1,339.986,2.895,390.594,197.283 +15,8.608,3.6215,2.077,3.6005,0,25.578,2.3414,634.922,186.643 +18,7.5445,7.5231,9.625,3.1233,1,465.895,1.792,4.8314,2.0215 +14,9.8269,3.7518,9.573,2.5728,1,21.986,2.3594,9.2473,1.153 +20,2.4012,4.86,1.772,1.5006,0,250.285,5.089,1.5323,3.271 +19,3.031,4.0708,1.451,3.2192,0,8.4772,1.0717,226.738,202.876 +24,2.9062,6.5057,4.211,4.5421,1,47.383,9.556,191.163,7.6892 +15,8.1329,3.5614,497,346,1,11.0526,8.171,85.23,12.114 +28,2.6822,9.6377,6.549,6.696,0,10.0708,9.263,193.386,144.712 +32,1.5999,9.3615,775,5.989,1,5.0597,2.2626,664.569,178.436 +15,9.987,8.4803,58,4.616,1,22.668,7.997,12.7176,199.189 +29,1.2234,9.203,4.852,3.3137,1,136.807,2.4022,597.624,12.3808 +13,8.5172,4.4914,9.578,4.7589,1,370.391,2.731,441.264,9.9782 +23,4.2883,5.3643,4.268,2.9141,1,153.761,1.7855,414.581,4.7026 +21,8.5745,7.4209,3.565,2.3087,1,360.385,2.589,857.996,145.805 +18,5.9916,6.9615,998,3.9617,0,9.7981,2.379,176.042,13.197 +20,9.1147,8.9068,532,8.047,1,11.4983,1.9047,599.266,6.9878 +17,9.3357,7.1633,3.752,1.9067,1,403.087,1.5349,823.645,10.7089 +33,1.0819,9.9788,3.859,2.3314,1,185.547,9.958,716.758,177.516 +22,1.6787,3.4851,195,1.4923,1,5.5887,302,983.512,150.499 +28,3.2532,8.33,5.122,1.8564,1,480.702,2.0295,1.2085,11.5618 +19,7.0238,6.9763,4.389,3.905,0,8.8696,9.281,885.516,6.5356 +16,8.9944,6.9139,2.708,9.899,1,7.5099,1.0168,617.317,160.321 +19,5.1395,3.2584,1.605,1.6775,1,179.191,2.1528,1.246,150.638 +21,6.4628,7.856,3.112,3.9795,1,4.7817,2.8361,470.839,10.9976 +28,2.6965,9.1938,5.087,9.125,1,7.7808,1.2009,769.763,5.7246 +18,8.2447,2.1855,583,1.7332,1,423.222,2.2402,190.721,4.197 +18,9.706,6.255,1.537,3.246,1,8.5753,2.8698,681.692,8.1456 +20,3.4174,3.9213,9.477,2.7855,1,5.5713,2.935,148.272,218.092 +28,5.4534,9.8955,5.429,3.0563,1,439.979,1.5876,805.418,180.933 +22,1.775,4.7883,634,4.3276,1,221.898,335,572.779,213.857 +18,6.0322,2.2832,6.931,4.0956,1,7.8581,2.4755,4.3548,202.224 +19,5.5251,3.8186,618,1.4269,1,290.759,8.607,9.9967,11.0132 +27,2.2999,6.5384,7.389,6.848,0,2.0753,9.983,865.226,12.7306 +20,4.9786,7.609,0.75,7.804,1,213.691,2.0619,4.2671,4.0701 +25,4.1969,6.036,6.511,4.8448,1,295.157,2.3675,305.557,173.009 +27,5.6965,9.3122,7.322,3.3661,1,47.856,1.2,571.243,10.1268 +22,6.2709,8.5036,88,2.129,1,163.232,1.9966,221.305,3.8705 +26,1.0765,6.767,7.268,6.839,0,382.526,2.8691,23.199,2.2885 +21,7.8491,9.9339,1.367,2.429,0,6.635,2.6607,778.274,167.072 +22,7.4171,6.9873,3.395,1.0391,1,216.791,2.1039,298.085,11.5729 +20,4.2966,1.6228,9.427,4.0183,1,11.1567,2.8292,4.8197,2.159 +27,1.4764,1.242,5.029,2.8661,1,246.234,2.6278,723.911,197.884 +17,7.7944,1.7128,9.674,3.0632,1,208.616,2.187,954.822,148.671 +19,9.5966,8.3818,889,2.3141,1,489.893,2.7517,833.615,921 +23,3.1614,2.164,4.776,1.2803,1,458.749,2.4522,553.076,7.3124 +19,3.9117,2.3315,624,2.947,0,291.103,1.5068,430.635,173.377 +26,2.6543,7.5731,6.302,3.5849,1,8.8255,1.5068,925.914,1.4167 +18,6.1924,5.8611,787,1.8547,1,278.478,264,768.563,176.701 +25,2.3936,7.8274,1.754,2.5247,1,396.041,907,574.951,12.1175 +22,4.2057,7.4615,2.588,4.1984,0,1.9014,2.2387,881.024,187.886 +15,7.2731,506,7.487,7.434,0,217.015,1.6643,605.695,205.257 +22,6.041,8.9251,164,2.7261,0,2.1323,2.2829,97.377,184.262 +23,4.4782,2.2703,8.466,1.7421,1,12.1979,2.849,859.708,1.8738 +20,4.7822,5.5339,1.319,3.514,1,4.6057,1.3576,554.941,11.049 +20,6.059,6.4429,352,941,1,480.289,2.653,923.608,7.6497 +24,1.0528,1.6863,395,3.3524,1,8.4414,1.8797,349.015,12.2038 +31,1.7066,9.7623,9.794,5.145,1,7.5052,2.992,703.918,231.792 +17,8.9313,4.8816,1.103,3.238,1,486.027,1.8639,179.563,2.9855 +22,1.7009,5.764,1.017,3.6231,1,257.984,1.5832,896.411,207.744 +25,7.3612,9.3726,7.512,3.2017,1,378.993,2.1367,25.557,237.805 +14,9.2803,5.8627,3.122,4.4747,1,163.657,1.0529,949.542,237.605 +23,3.4362,6.9919,7.173,2.5983,1,26.643,4.316,2.6822,191.205 +18,4.3344,5.2518,0.2,2.6501,0,3.427,7.086,685.019,11.1739 +21,6.1203,8.3474,4.601,3.5351,1,204.409,2.0509,158.556,4.272 +13,8.9354,3.313,2.653,1.617,1,277.545,1.4345,773.103,145.971 +17,9.4772,2.6838,4.515,1.846,1,257.205,1.6225,496.987,146.489 +18,7.6561,4.6965,7.691,1.1502,1,20.291,969,910.554,7.5944 +28,1.7796,766,762,1.1901,1,393.954,2.5101,717.919,148.037 +25,7.0224,7.0591,5.158,1.6783,1,25.082,2.9984,770.583,2.7971 +20,4.6927,3.9366,9.284,4.7173,1,31.806,9.366,12.9275,152.162 +18,5.2363,2.7267,2.638,4.0242,0,9.2311,2.156,10.5596,215.213 +19,1.4423,338,2.403,4.6798,0,43.075,5.133,852.052,11.3296 +26,2.7196,7.1983,6.138,4.993,1,181.418,2.2273,233.516,183.495 +19,8.1146,8.3381,6.213,2.1689,0,241.052,1.2926,868.272,152.554 +21,5.0856,3.9504,465,1.1354,1,176.097,1.8159,151.113,735 +20,3.715,5.6422,6.078,2.8,0,445.954,7.127,315.367,2.928 +22,4.4562,2.2769,3.744,4.4057,1,45.037,2.555,929.451,18.596 +13,8.6896,6.222,7.474,2.3287,1,11.2142,0.52,841.321,9.709 +17,7.741,1.214,8.081,2.527,1,376.357,2.7858,6.37,229.499 +24,3.4508,4.8864,5.522,6.722,1,5.1442,1.837,453.617,214.578 +24,2.0575,6.4421,17,2.1023,1,1.4925,8.639,910.769,8.697 +28,3.268,9.1819,6.364,1.935,0,418.292,1.6888,2.461,7.4492 +16,9.2868,3.8134,7.489,1.7584,1,6.5589,2.5754,11.6246,147.104 +18,6.2343,7.6519,249,4.4365,0,7.7391,1.7311,648.744,14.683 +19,5.8013,5.9769,4.646,2.965,1,303.294,6.483,11.3934,2.1368 +25,6.3675,9.2701,9.657,4.8607,0,408.384,2.5771,45.435,5.1693 +23,4.2943,3.9838,2.981,412,0,9.48,1.7885,512.745,152.752 +9,8.264,3.191,2.232,4.728,0,5.7096,697,861.652,192.185 +23,5.7096,8.8714,2.109,2.7402,1,3.8661,1.6855,957.817,4.6081 +22,2.0507,4.924,5.588,3.5122,1,1.2423,2.0259,517.109,168.464 +27,2.1616,1.3639,9.498,9.357,1,5.824,2.0416,515.257,208.914 +19,5.8317,824,6.087,3.2711,1,471.346,2.172,729.527,2.8273 +14,9.4291,8.4311,3.033,4.4098,0,4.7641,2.6872,200.582,10.5385 +24,3.7752,1.061,6.386,6.974,1,298.779,2.4745,94.145,204.133 +23,8.8259,8.6166,6.248,6.354,1,460.483,1.8231,1.1187,8.895 +14,7.8769,4.5127,5.969,1.5199,0,31.391,965,1.1776,6.467 +19,3.2303,403,1.594,8.086,0,1.6373,2.2486,62.941,178.948 +31,1.3271,4.0165,6.346,5.532,1,298.207,2.9249,34.807,9.6187 +23,1.9166,1.868,4.302,3.3916,1,451.533,9.167,404.134,169.515 +19,7.5564,6.244,186,1.0691,1,16.128,1.8207,229.223,3.0334 +27,2.797,6.7936,5.398,3.3351,1,156.814,2.306,413.724,132.843 +22,4.3414,4.8753,9.893,4.3096,1,12.4432,1.9173,829.703,9.1071 +21,5.5153,4.052,3.497,3.2601,1,252.772,2.7676,702.257,239.353 +22,7.5292,6.5613,9.656,5.968,1,11.8971,1.42,10.3707,141.934 +29,2.0191,8.4204,962,2.8679,1,361.894,1.5955,6.6113,16.372 +21,4.6573,7.2032,7.325,1.9681,0,322.431,1.147,511.131,3.1448 +24,5.3657,8.2996,1.143,1.7169,0,200.387,2.7007,732.859,238.073 +14,5.8674,2.1951,2.736,1.5927,0,361.278,7.868,667.844,1.2337 +18,8.3652,8.8889,5.708,4.6472,1,4.9248,2.9353,865.474,1.7001 +20,2.5451,3.2219,5.928,3.7125,0,374.764,6.063,141.932,1.8176 +14,8.2705,134,7.752,6.692,1,301.454,7.604,609.695,208.944 +23,7.2359,8.4339,6.153,2.38,1,315.041,1.4539,768.354,174.861 +25,6.2028,9.4182,5.936,1.5911,1,3.2332,1.9815,938.462,233.533 +17,7.2958,6.5556,9.124,4.8897,1,309.068,1.322,10.9874,1.5974 +17,4.7082,2.3144,4.522,4.8901,1,247.061,1.0554,247.245,166.002 +24,2.2456,2.5174,2.253,1.5977,1,242.931,1.6203,361.046,12.7985 +19,6.9919,4.6659,1.618,1.7606,1,160.927,2.8749,545.343,153.393 +24,5.7221,8.9783,0.4,2.9971,1,3.807,2.8859,414.526,12.31 +16,6.7544,1.496,7.128,2.3965,1,211.319,9.841,862.506,162.083 +26,4.042,8.2597,425,1.0655,1,200.458,2.0405,951.022,217.694 +14,9.1618,2.913,1.291,3.3021,1,211.403,2.1657,7.9378,140.994 +25,6.2863,8.0859,1.061,1.6706,1,305.997,1.9603,702.684,21.514 +26,1.7686,9.2027,5.853,3.2686,1,149.953,339,12.3131,187.719 +21,5.0482,4.2749,2.429,1.9184,1,134.692,1.6184,898.976,207.582 +18,7.8072,3.6505,1.663,3.501,1,248.891,2.2898,150.678,15.822 +18,8.1472,8.0222,5.928,3.339,1,296.159,6.024,991.596,12.4465 +16,5.4514,5.2948,7.613,2.5441,0,283.664,1.0446,433.473,1.6693 +15,9.0527,6.8445,3.322,3.5237,1,440.821,6.114,388.118,200.377 +27,3.409,6.2283,5.782,2.3048,1,384.572,2.6608,590.418,5.8083 +19,4.6954,1.5289,981,5.807,1,2.6095,2.5756,400.413,8.799 +19,9.0874,8.4479,9.352,9.105,1,281.738,5.076,242.347,12.4577 +16,9.0663,1.9578,3.369,1.23,1,208.907,2.2817,632.852,151.804 +25,7.1714,9.3228,9.975,3.161,1,180.526,1.0919,73.108,15.884 +17,8.7308,2.5057,9.786,3.5569,1,478.948,2.0585,945.868,160.732 +29,1.799,7.3388,7.788,1.837,0,228.398,1.4801,415.027,156.893 +14,8.785,2.8466,201,4.676,0,359.717,1.4159,708.715,193.966 +26,3.8856,3.1779,5.435,4.0998,1,483.543,2.6439,835.267,184.647 +24,2.605,3.1,868,3.4183,1,7.55,1.9109,83.307,19.508 +22,3.1543,7.4789,8.951,2.2611,0,2.7308,7.073,4.3927,11.0463 +18,4.7617,5.5682,7.896,1.2371,1,15.681,3.323,362.145,1.5076 +28,3.2607,8.8295,9.723,7.587,0,2.2222,2.8002,2.3284,153.498 +21,3.8851,3.0737,6.084,2.2919,1,5.8382,4.602,563.489,5.0452 +29,2.2148,6.9199,5.222,4.4262,0,495.855,2.2022,86.644,206.285 +28,3.6656,7.5295,519,942,0,480.089,1.4875,816.769,17.32 +16,6.1506,1.5148,3.864,2.8433,0,345.646,4.202,813.137,183.809 +20,4.9767,4.1959,4.687,4.8084,1,376.493,2.33,358.318,6.8741 +23,4.1205,4.8282,6.354,3.1856,1,7.0246,2.7135,5.5866,151.933 +14,7.7181,3.5569,9.329,2.1998,1,297.618,3.645,180.694,12.674 +11,9.0416,3.2211,5.959,3.5819,0,7.7206,2.013,673.984,6.4428 +20,7.8111,6.8642,8.571,4.1229,1,189.193,2.5495,142.504,194.934 +20,3.988,2.1587,8.628,2.9526,0,172.673,1.5029,134.075,13.199 +16,7.7,7.0939,5.188,4.3592,0,30.698,2.0236,360.138,4.5789 +27,2.3678,9.3504,3.475,2.573,1,3.9847,1.3244,10.3589,7.3259 +25,2.1729,5.652,6.396,4.1501,1,5.1731,1.2373,336.486,5.4506 +22,4.1106,6.1143,4.459,4.7601,1,304.966,899,969.996,7.4976 +12,8.2693,6.893,814,2.5062,1,318.059,1.6888,2.9752,4.5161 +25,3.2171,8.6448,3.778,3.025,0,169.941,4.794,832.237,8.9073 +25,1.5693,2.8545,9.941,3.0473,1,7.3436,2.1517,993.685,166.556 +25,2.1854,6.1505,485,3.9072,0,44.304,1.6483,442.041,230.232 +18,8.7287,9.7911,6.967,4.1148,0,2.6474,2.5426,943.625,5.0529 +24,6.704,5.955,8.412,1.361,0,358.688,2.763,268.533,7.1959 +26,3.2788,7.2471,6.487,3.6668,1,7.2022,2.7018,982.474,517 +21,5.9977,4.4532,5.697,3.9191,1,318.687,1.8037,862.936,5.4073 +13,5.7482,6.037,7.076,3.5021,0,331.828,9.562,885.851,10.0428 +19,6.8989,7.976,4.293,3.5685,0,40.213,1.0715,139.094,11.0817 +23,3.0987,0.35,914,207,1,197.513,1.9576,871.362,6.392 +17,8.7796,7.1966,9.624,2.2102,1,1.0898,2.1359,942.405,3.6078 +18,3.7843,2.292,4.323,4.0909,1,405.525,4.839,820.857,135.137 +21,7.2472,8.6231,6.654,4.67,0,222.034,2.9938,10.045,9.8205 +24,1.1451,1.5764,5.313,1.1473,1,423.545,3.225,9.3929,10.2304 +25,4.3539,5.1427,547,2.896,1,387.992,1.8213,36.403,214.795 +23,4.1654,5.9715,9.527,4.0217,1,249.153,1.5931,707.876,134.746 +20,5.8914,4.5755,7.925,3.762,0,49.97,1.773,2.2328,9.3201 +25,1.6546,3.4076,1.491,3.0945,1,231.038,1.6013,951.139,6.091 +16,8.1112,4.6781,9.816,935,0,348.252,1.737,530.195,10.2863 +29,2.96,3.1142,7.369,3.6194,1,334.902,2.9878,364.789,206.848 +20,7.0933,4.3812,4.723,3.8662,0,259.033,2.9438,565.617,231.624 +14,8.2289,3.5891,6.114,3.6142,1,292.675,1.5731,718.628,9.0535 +16,6.0569,5.662,1.067,3.829,0,399.304,625,280.546,5.0156 +17,7.6679,2.3792,5.604,2.1546,1,285.807,5.488,298.212,219.485 +17,6.9567,9.8866,737,4.9688,1,225.074,1.711,473.495,3.4665 +24,4.1998,5.1987,5.449,3.8539,1,331.041,1.8356,673.231,7.1372 +12,8.2797,1.9416,5.527,2.8934,1,1.7755,1.4347,709.307,4.8995 +20,3.6523,4.7707,8.744,4.671,0,5.4597,1.2489,330.816,135.799 +18,6.1409,8.6642,7.251,4.541,0,6.2713,1.5756,329.267,9.8074 +13,7.7086,2.181,2.496,4.0728,1,212.884,2.6186,492.238,6.892 +24,4.4106,6.7955,8.884,2.8185,1,435.888,2.122,546.502,184.303 +24,3.7249,5.4797,5.732,2.6355,0,321.647,1.6323,65.292,159.388 +24,5.1341,1.6956,6.064,1.6435,1,486.309,2.1031,621.533,238.923 +20,8.3617,8.1748,169,1.2544,0,1.997,2.9121,378.793,7.4877 +16,9.3693,3.6888,8.578,2.5618,1,361.004,2.2191,303.918,202.867 +18,5.9058,2.938,931,2.8889,0,157.101,1.6443,314.842,7.2602 +20,6.9532,8.2813,775,1.2226,0,1.1643,2.3003,648.947,2.169 +18,9.1295,6.3853,9.408,4.613,1,412.963,2.9912,438.816,3.6215 +31,1.8869,8.9826,3.023,2.7864,1,8.1347,2.6662,143.006,12.2033 +21,3.0887,6.2988,8.611,2.6325,0,10.7037,2.673,1.5864,194.402 +20,7.3801,7.4082,4.889,2.1782,1,170.233,1.7245,3.9381,1.3779 +22,8.4137,8.3645,1.639,2.904,1,394.179,2.3594,868.841,199.684 +11,8.7133,5.474,6.688,4.412,0,312.295,2.0156,463.249,171.858 +24,4.736,7.7605,6.841,1.585,1,132.431,1.2509,660.853,8.285 +25,1.8041,6.1371,2.869,3.2123,1,8.4245,9.673,929.747,2.5511 +13,4.94,6.951,275,3.0372,1,5.4774,1.881,135.017,1.8151 +22,3.0766,5.0858,1.998,2.9224,1,7.4908,1.2371,45.314,162.958 +17,3.6208,8.246,3.998,2.6286,0,434.073,1.176,543.677,134.647 +21,7.9504,7.3595,1.676,9.072,0,461.342,2.5102,84.312,8.6126 +27,1.6797,5.465,194,1.403,1,483.979,947,993.781,2.1195 +21,8.4482,9.5357,3.914,2.6209,1,417.366,1.9348,714.562,9.4316 +23,4.849,1.8314,9.618,3.9467,1,443.695,2.6203,645.416,163.722 +20,6.3646,6.0603,7.642,2.1599,0,408.052,1.8653,921.109,2.2419 +26,1.8069,2.1158,3.197,1.0196,1,479.028,1.4784,839.007,20.558 +23,4.0362,6.1406,9.516,4.397,0,422.825,1.059,866.394,1.5098 +27,1.8073,7.2265,6.456,3.3151,0,231.001,2.0447,1.2679,145.967 +18,9.6539,7.223,4.554,2.1167,1,161.627,2.9926,519.288,4.5395 +23,8.2654,8.1507,4.683,6.269,1,292.106,2.4253,784.901,2.1994 +21,5.1367,8.5355,4.107,3.3723,0,304.092,1.9034,189.643,8.5193 +22,3.0124,7.727,233,1.0379,0,287.457,1.4074,753.938,160.063 +13,9.4011,3.4327,3.866,2.5451,1,353.363,673,1.9069,2.9053 +26,4.1014,6.8712,5.279,1.5309,1,349.488,2.0763,579.415,11.4167 +22,2.4489,4.9859,528,4.6585,1,4.3597,5.319,852.815,9.7466 +18,6.0685,1.9068,7.617,1.1414,1,142.761,2.6611,437.035,10.2589 +15,9.494,5.5271,3.588,2.0996,0,44.493,1.062,742.058,22.642 +23,1.0345,4.0744,7.168,4.7975,0,295.018,1.1994,535.095,8.3767 +24,3.1431,3.9004,5.781,1.5936,1,164.262,6.481,650.818,237.991 +19,9.446,8.0975,9.618,3.223,1,425.229,1.445,521.501,12.9214 +26,2.5398,4.076,3.853,1.5836,1,12.4521,2.0414,481.078,202.195 +22,2.0192,2.645,9.012,5.534,1,20.46,9.083,84.321,8.3727 +17,6.1317,5.806,8.206,3.1377,1,138.127,2.1055,10.1816,2.0346 +17,8.7566,8.5624,6.377,4.5802,0,435.675,1.8617,588.805,2.0257 +24,5.294,9.606,6.545,2.2628,1,364.144,1.1172,12.3662,137.796 +12,9.9511,6.8841,846,3.1309,0,230.113,9.384,56.718,22.318 +21,7.1125,3.6437,9.502,3.0445,1,46.615,2.584,96.396,1.7093 +28,1.6667,9.386,1.069,2.0754,1,463.722,358,6.6527,165.388 +18,9.9355,6.628,5.632,3.0745,1,355.763,2.1477,427.787,13.518 +28,4.671,8.4433,3.301,1.2966,1,445.997,1.2518,803.951,15.654 +28,3.5866,7.6585,4.299,1.8902,1,359.697,2.1531,375.995,5.173 +19,6.0209,3.7914,6.102,2.2116,1,314.106,1.5225,525.112,1.6922 +19,3.7388,4.787,9.089,4.32,1,210.392,2.516,12.3561,1.7935 +24,1.7781,1.8613,4.576,1.7417,0,136.735,2.9462,230.843,5.9214 +24,1.0129,2.9201,9.877,3.1757,1,3.0129,2.581,689.561,5.1273 +22,5.0463,7.7813,5.928,1.067,0,400.435,4.753,830.302,3.0326 +17,8.5318,8.9398,1.606,1.2628,0,6.1082,1.261,649.992,6.3524 +23,6.1508,7.2446,0.19,3.2421,1,205.175,2.8339,838.552,12.8154 +13,9.9929,4.6517,7.161,3.8115,1,11.7317,8.792,609.601,227.883 +21,3.5816,8.651,504,2.3106,0,227.313,1.706,812.106,221.345 +22,3.5241,5.695,4.803,1.6755,1,157.492,1.5643,983.058,6.5211 +20,2.4377,3.7433,1.482,4.5514,0,414.847,9.904,9.1996,1.589 +30,2.4766,4.6382,4.332,679,1,489.089,2.089,484.853,238.952 +25,3.5667,6.0912,7.499,3.6036,1,470.777,1.5044,197.994,11.4338 +14,8.1356,649,4.588,3.4509,1,311.185,1.7349,470.576,234.792 +17,9.1518,9.8972,1.635,3.4512,0,489.638,6.305,504.591,12.9034 +14,9.7758,3.6394,2.519,4.6771,0,200.361,2.7796,625.702,212.727 +25,3.0906,8.4809,3.675,3.641,0,261.244,3.317,444.905,10.7333 +15,8.9317,5.3497,696,1.5078,0,12.8425,2.0708,331.465,149.286 +25,3.9543,1.3044,5.843,1.767,1,448.991,2.6577,5.2737,12.8578 +26,2.0156,7.9757,6.075,1.9556,1,8.9855,2.521,4.4446,5.2771 +18,8.8302,7.0983,622,154,1,305.244,863,183.258,183.312 +16,6.725,5.2744,4.023,4.5676,1,399.727,9.995,454.497,1.3153 +28,2.4826,5.1455,414,3.678,1,297.699,2.3698,423.341,8.6979 +17,4.8685,8.748,3.338,3.499,0,3.9388,2.1521,198.789,208.777 +27,3.5853,6.5585,5.577,3.6508,0,305.723,2.4665,824.116,12.0644 +18,7.6312,9.1125,346,4.2186,1,38.354,1.1925,686.658,1.8635 +19,5.0807,9.324,4.164,2.7668,1,9.3914,2.9813,349.733,4.9807 +12,9.9035,2.6351,7.975,3.6263,1,368.476,1.0983,798.998,2.6313 +32,1.4927,9.0231,1.621,1.5136,1,439.289,2.4161,989.353,6.6632 +19,4.1951,2.8434,6.191,3.7279,0,493.229,1.0524,252.592,3.9675 +20,5.3371,6.5394,5.056,1.7171,1,20.503,6.553,368.964,170.868 +18,5.5282,5.3482,3.051,4.5142,1,1.2581,01.01,992.969,158.262 +24,3.8434,5.9633,7.275,8.169,1,20.954,578,146.504,3.2419 +15,7.5632,4.1579,5.512,1.5788,1,330.114,3.873,8.6416,10.6798 +14,8.8727,2.9999,4.774,2.4938,1,445.683,1.0919,525.781,7.1002 +11,9.4485,4.853,6.677,3.8793,1,469.053,4.404,473.745,8.0932 +18,8.2458,7.4428,8.023,3.744,1,454.788,1.507,8.7506,138.235 +19,8.6552,7.4609,9.727,1.0536,1,32.898,1.062,297.136,215.685 +25,5.9549,6.7073,6.294,7.212,1,341.262,1.294,424.747,215.358 +18,8.433,6.4363,8.744,1.5198,0,1.192,2.874,823.988,9.9125 +18,3.7315,2.4372,11,2.4188,1,181.866,1.0765,710.764,9.4367 +19,4.5863,2.234,5.302,2.695,1,453.428,4.129,915.381,12.4314 +24,3.8522,8.0872,2.146,2.1457,1,344.809,9.156,339.175,11.3788 +19,5.2065,4.9114,942,3.3155,0,23.396,2.3738,316.285,1.4828 +19,3.5702,3.0684,532,2.1378,1,5.2126,941,46.855,13.89 +8,9.6545,1.0193,7.468,4.7316,1,12.3158,1.1505,1.7453,140.336 +21,3.8156,6.272,4.123,1.3048,0,277.461,2.3664,215.247,10.8081 +24,1.8824,3.4887,6.701,3.1369,0,448.751,7.817,219.356,9.9352 +23,5.7414,8.0474,4.897,3.0569,1,4.7906,1.4349,7.0479,225.347 +28,1.5139,9.1872,4.371,1.4079,1,7.6878,1.895,460.579,144.198 +28,1.9949,8.9675,2.903,2.0584,1,327.503,5.222,906.465,195.907 +27,2.9745,9.2,3.826,1.8274,1,147.075,6.283,1.399,228.922 +25,5.1792,9.0773,3.498,8.625,1,8.4852,1.3907,632.131,194.424 +23,4.8993,5.2722,6.462,2.3865,1,8.9218,2.4629,880.539,226.315 +14,8.1972,2.1942,116,1.9333,1,246.307,1.0635,11.6446,18.223 +21,7.6553,7.9805,926,8.916,1,291.872,1.1415,918.086,4.0829 +21,4.8369,2.1371,0.66,2.2494,1,452.175,903,820.336,5.4463 +21,4.1933,2.6721,5.463,2.1092,1,264.909,9.615,222.426,4.6535 +23,3.8482,2.3325,4.302,6.568,1,345.637,1.2105,90.629,7.731 +19,7.966,5.1498,1.524,6.559,1,9.0343,2.6982,805.976,8.5198 +24,1.4687,3.2183,411,3.2375,1,35.673,731,12.0275,194.684 +26,1.1154,1.5416,7.897,3.5329,1,324.347,1.8738,832.293,8.6604 +18,8.1599,4.5317,8.896,4.7059,1,10.8091,2.663,546.761,174.532 +26,5.2943,8.7391,7.026,435,0,334.689,1.2509,81.78,216.916 +27,2.1779,5.7055,599,5.893,1,10.5746,1.9527,621.488,2.7493 +28,3.1201,8.7834,6.704,2.591,1,296.789,1.7571,397.938,63 +12,9.3925,1.9587,241,2.6611,1,334.425,1.0159,605.129,213.278 +9,8.7355,1.6697,3.153,3.1137,1,346.675,4.123,639.819,5.7181 +16,7.3881,5.7558,1.959,2.0176,0,454.633,6.589,768.544,3.6825 +20,5.34,4.6333,7.758,3.9895,1,473.919,1.723,832.375,7.085 +23,5.6829,6.6017,6.486,3.4335,1,405.099,2.2942,666.579,4.4646 +17,9.7772,7.9463,6.118,4.9292,1,439.374,1.5984,989.752,190.476 +20,9.6919,7.5131,668,6.895,1,9.664,2.3569,780.765,152.282 +29,2.9374,9.4226,2.368,2.916,1,181.334,8.706,911.657,4.0153 +19,8.2999,3.9826,4.446,1.374,1,1.9861,2.414,326.299,140.055 +23,2.7752,2.0639,6.333,953,1,11.2423,9.276,323.065,4.9942 +19,2.9218,5.5091,6.366,4.6631,0,190.862,364,368.712,4.7413 +16,7.0848,1.1074,7.919,1.5198,0,433.788,1.6014,445.319,142.907 +24,4.645,2.8885,2.871,2.7622,1,255.877,2.8359,961.786,159.525 +13,9.3839,2.0789,7.703,1.5903,1,324.431,1.2432,8.2796,8.3088 +27,1.8011,3.9656,4.402,1.229,1,181.408,1.5462,503.459,183.218 +20,5.6037,1.1122,6.702,7.618,0,301.458,1.3539,169.549,200.931 +15,9.2667,3.184,4.557,1.6018,1,407.768,1.3723,812.784,219.923 +16,9.137,6.5679,9.486,3.0771,1,150.621,6.431,4.0833,150.254 +24,2.4088,6.1025,1.793,4.8581,1,466.128,1.2674,460.593,5.2806 +23,4.2997,7.0836,675,2.7905,0,10.6657,1.4907,400.794,179.632 +19,6.5721,6.6039,5.765,2.6635,0,459.651,2.2346,10.1259,2.5883 +20,2.4346,1.1429,1.727,1.763,1,1.4149,4.195,382.952,4.3492 +12,9.7122,2.9108,66,4.2005,0,271.376,1.7148,81.094,199.869 +17,9.2327,1.2953,7.991,2.242,1,492.586,1.9866,14.61,218.599 +24,2.5026,8.4297,1.575,4.5312,1,304.889,1.1484,983.671,1.6012 +28,2.0904,7.469,1.865,2.6934,1,277.431,1.6475,6.787,7.4909 +26,1.7687,2.0153,9.784,8.423,0,341.235,2.1322,296.212,151.003 +15,9.185,3.4131,7.173,2.2585,0,144.651,1.3953,77.715,225.275 +24,2.7426,9.6661,2.505,4.9749,1,2.6958,1.2001,363.946,136.974 +25,4.7466,5.9416,5.909,1.5254,1,12.5532,2.4741,48.555,197.038 +28,5.0397,8.0116,5.341,1.3473,1,8.8124,2.9665,194.792,221.461 +18,6.3911,2.6459,8.445,0.59,0,461.785,6.499,718.341,12.457 +28,1.6456,2.1005,7.293,2.9857,1,426.131,2.6682,187.746,177.708 +28,3.0408,7.8392,8.317,4.461,0,158.857,1.6363,850.244,158.979 +17,9.3834,6.8587,2.115,3.83,1,418.035,1.3438,544.105,161.127 +17,9.1757,6.8098,6.402,4.5961,0,10.5876,2.6795,552.675,12.4096 +18,8.0316,5.5263,402,4.6594,1,9.979,2.731,934.176,149.566 +26,1.1746,5.6358,689,5.396,0,383.768,818,77.527,13.305 +26,3.9431,7.357,7.135,2.7913,1,163.465,1.0751,745.708,153.058 +19,6.6516,2.7,244,4.855,1,3.2396,2.5558,85.946,12.1247 +23,3.4767,3.5277,5.798,2.8601,1,359.993,1.4725,10.0899,5.3399 +16,9.1863,8.7164,8.404,4.0749,0,494.801,8.641,728.784,166.468 +21,6.705,3.0887,3.799,2.689,1,282.989,2.8865,240.876,9.2168 +21,1.6472,5.4631,448,4.3603,1,131.834,6.511,288.137,3.0658 +17,9.1811,7.0264,7.138,4.1984,1,186.453,1.831,2.4995,204.318 +20,9.6199,9.9992,9.297,1.3827,1,324.325,1.2837,894.784,4.3523 +25,1.6994,4.3529,7.172,3.1505,1,35.069,1.3539,741.722,12.977 +19,5.7912,4.2809,5.784,371,0,443.166,318,147.894,173.068 +26,3.7303,8.4259,0.23,1.9802,1,454.418,7.714,334.644,155.449 +23,4.5356,8.055,154,1.1898,0,430.639,501,485.134,3.8606 +27,2.6169,7.3108,6.947,4.6856,1,324.245,2.2489,498.972,4.6593 +19,6.2026,4.6323,231,2.0269,1,224.926,2.0932,599.697,3.5724 +14,9.6218,3.2394,8.582,3.2703,1,339.653,2.3823,477.462,1.7411 +20,5.5277,6.0873,4.664,3.6599,1,333.283,2.0978,652.159,6.7986 +27,1.7462,8.7622,5.306,3.8661,0,10.8991,3.861,885.032,12.5793 +22,6.58,8.8378,7.539,3.6789,1,253.777,2.9358,404.092,4.1508 +20,4.062,1.085,7.794,1.4458,1,10.4107,5.656,877.944,233.006 +15,8.7033,4.2835,6.427,3.4303,0,449.562,1.0513,227.414,167.719 +24,4.9121,4.6472,9.384,2.745,1,161.624,2.1206,130.168,140.024 +30,2.7356,9.7762,9.823,2.9869,1,402.713,4.213,247.007,16.354 +26,2.72,6.78,9.469,41,1,188.614,5.115,214.527,10.4628 +22,7.9189,4.0725,8.242,1.2913,1,381.868,2.6297,985.228,11.2778 +18,3.3903,2.606,7.056,4.6534,1,11.0456,996,387.243,21.328 +20,7.9051,5.6539,6.633,1.4504,1,381.872,1.9968,654.959,173.265 +22,2.853,9.608,1.038,2.1901,1,8.9766,2.5762,699.092,141.165 +27,3.8952,8.3445,2.715,9.334,0,245.409,2.9196,450.757,228.051 +21,5.1894,7.5252,57,693,1,5.6813,6.309,231.336,159.034 +12,9.4888,4.6051,1.374,1.0433,1,263.949,3.688,443.717,9.5686 +14,9.3856,4.2921,4.392,2.7682,0,410.357,2.2222,479.023,1.139 +26,2.8618,8.9734,1.465,4.5951,1,377.773,5.646,954.468,9.3762 +22,4.224,2.8846,9.017,1.631,0,2.5358,1.7406,572.937,221.953 +24,2.3446,2.4902,8.057,1.617,0,246.089,1.5979,970.174,1.0716 +26,5.5899,9.392,716,2.8207,1,426.113,1.6798,580.946,4.4295 +23,5.1452,8.0925,2.489,1.7837,0,325.052,1.9494,153.548,194.099 +16,9.1068,8.2063,8.191,4.5521,1,2.9601,2.5527,390.533,8.7589 +11,9.37,1.9519,803,1.8892,1,162.816,8.155,79.439,4.4616 +20,4.4521,1.433,9.455,2.4522,0,278.293,1.6657,427.406,19.576 +15,5.4256,2.603,9.975,2.6669,0,8.6326,1.0101,10.8737,134.026 +12,9.0661,2.3704,9.763,3.9103,0,340.957,9.562,10.5115,131.631 +13,8.2604,7.7419,4.101,2.8195,0,317.423,613,244.694,7.0508 +24,1.0329,2.4004,2.503,1.1958,0,10.1222,1.7982,569.124,162.032 +33,3.8805,7.291,7.584,6.199,1,275.199,2.9175,831.853,206.838 +21,4.796,2.5191,2.993,4.6889,1,405.859,2.2838,538.376,180.049 +21,3.0674,3.9529,8.064,4.1978,0,187.413,7.284,74.862,146.982 +31,2.7961,9.8316,534,1.148,1,12.3493,2.1484,649.137,8.4125 +23,1.3401,2.4481,7.939,4.1076,0,35.061,8.919,528.858,205.153 +17,6.7903,3.7637,2.759,2.953,1,3.5402,2.2609,22.266,135.866 +25,3.3626,3.0109,508,2.5945,0,416.337,2.5648,884.337,21.35 +23,1.4711,1.0962,564,611,0,471.729,1.003,282.958,6.1003 +25,3.0788,4.8989,9.431,3.9043,1,482.394,66,260.292,157.031 +18,8.2172,3.7869,2.666,9.903,1,216.269,9.151,26.522,224.445 +17,8.6634,6.9489,9.367,3.6399,1,311.601,6.176,10.4729,8.9781 +29,5.3476,8.1759,8.049,793,1,428.682,1.8558,503.668,228.304 +19,4.7446,5.4425,7.309,3.9818,0,11.1712,8.702,334.255,9.4191 +7,9.8007,322,7.869,1.152,1,1.3851,1.081,526.723,10.5045 +29,2.8051,6.1892,6.054,1.1795,1,192.283,1.594,458.584,193.547 +22,2.9382,5.539,2.441,1.3414,0,442.186,2.6241,524.594,6.2585 +25,3.6268,6.1636,1.895,7.875,1,252.536,1.354,304.677,16.941 +27,2.5548,6.8503,8.663,2.4053,1,265.109,1.1289,816.987,7.1613 +20,4.4143,1.9777,7.251,1.4184,1,345.737,5.355,538.851,142.505 +16,9.1975,8.1935,2.132,4.9664,1,287.259,1.1621,21.635,186.231 +21,6.5381,9.1109,6.151,2.8998,1,2.7238,9.928,902.786,6.273 +27,4.7075,8.1309,4.475,2.8324,1,28.043,2.9848,11.8361,2.1234 +13,9.4097,3.0511,1.587,1.1043,1,323.979,914,73.61,22.425 +27,1.4362,5.8664,5.319,2.0434,1,320.798,7.165,681.664,195.799 +28,2.8925,9.1482,2.815,6.199,1,364.172,2.059,8.213,210.482 +19,6.093,3.2066,962,3.8126,1,25.996,2.5723,902.493,10.5346 +24,6.54,8.2003,467,1.6558,1,450.029,1.2519,323.149,171.924 +25,1.356,948,5.901,3.7598,1,23.213,2.3888,743.486,239.586 +18,4.6273,365,469,1.8585,1,259.093,2.0765,284.232,10.3807 +24,6.8424,7.5971,4.021,4.9438,1,390.153,2.7841,530.435,203.227 +18,7.2826,7.6145,2.577,8.556,0,416.617,713,97.261,1.9028 +21,6.7433,7.8898,307,76,1,324.181,622,614.669,130.527 +26,3.8851,9.3003,1.257,2.9741,1,6.3187,2.1061,30.336,7.9978 +20,1.8417,1.1791,139,4.7648,1,165.976,1.7557,463.793,12.5542 +18,4.844,2.3198,1.829,3.2353,1,1.1978,2.084,679.281,2.7378 +30,2.1588,9.0372,8.034,4.286,1,147.725,1.7264,450.737,8.8244 +13,9.5286,1.7724,4.395,2.7024,0,285.122,1.7431,911.641,1.8367 +26,5.2765,6.8223,1.471,4.5474,1,402.615,2.7977,868.786,10.8742 +26,3.8553,5.3046,1.003,325,0,292.825,2.7639,155.342,10.6031 +9,7.8967,8.319,2.979,8.346,1,1.9947,114,787.091,7.913 +16,5.4815,2.8526,798,4.0728,0,12.9553,1.241,942.991,227.595 +23,3.7903,5.2037,3.645,4.4695,1,289.031,1.5317,323.739,1.9904 +17,8.3077,8.5235,1.599,3.5358,1,354.524,1.0737,245.838,197.971 +14,8.8044,7.0754,4.041,4.9578,1,433.227,1.487,1.9493,8.5183 +23,7.0571,6.2188,5.553,4.511,1,483.823,1.4169,12.4501,4.7835 +30,1.4227,4.9603,296,2.7284,1,445.893,2.9271,961.304,6.5414 +15,6.0969,2.9868,6.276,3.425,1,233.664,2.166,39.721,216.455 +15,7.8697,1.1924,3.951,3.5132,1,373.465,2.45,393.468,197.976 +18,2.2285,4.0908,97,3.9674,0,12.0264,587,274.012,3.782 +15,3.058,2.852,6.739,4.5881,0,3.1915,1.7304,172.418,3.5359 +12,8.9425,2.1106,7.124,1.8082,0,2.7535,1.1611,513.702,162.007 +26,1.1811,4.3248,6.288,2.148,1,12.0653,1.047,725.956,7.6179 +17,7.7745,4.1861,3.419,1.8122,0,1.8771,2.6112,555.287,220.594 +20,5.264,443,5.296,3.3581,1,425.136,2.9204,4.5096,18.876 +22,5.0209,5.8906,3.872,1.0673,0,24.496,1.16,805.435,210.009 +28,1.0639,5.4968,7.006,4.0499,1,40.545,1.9213,932.278,4.6289 +15,8.3746,781,5.836,1.0988,1,469.949,1.6692,445.973,3.6169 +28,4.2384,9.4316,818,503,1,496.954,2.308,37.28,223.663 +15,5.8669,9.938,6.431,2.5404,1,468.582,1.235,237.555,9.7007 +23,7.0957,8.5483,6.872,3.6323,1,358.278,2.3202,308.852,9.9772 +12,7.3237,31,3.707,1.7483,0,22.099,1.1836,648.003,164.297 +15,9.6038,8.8228,8.758,3.7445,1,298.992,9.227,772.445,9.5388 +22,5.7821,1.972,843,2.192,1,408.248,2.9567,338.894,210.046 +24,4.5975,7.5781,1.752,8.586,0,448.777,2.557,346.276,230.178 +12,9.5833,3.6169,9.043,4.528,0,478.234,8.072,45.659,7.9805 +22,6.779,7.3822,4.409,3.5529,1,365.303,2.5704,178.501,4.9934 +22,3.6834,4.0175,7.237,1.9286,0,269.977,1.245,927.936,1.8073 +23,2.1382,7.091,8.141,4.5639,1,484.186,1.7527,708.402,5.1447 +14,8.583,7.6751,5.051,2.7013,0,479.312,1.451,439.248,3.3467 +21,4.2596,7.125,3.991,1.7422,1,238.776,2.7609,13.105,6.989 +22,6.9442,9.2212,9.155,1.745,1,324.329,4.108,850.337,1.1198 +17,5.2373,5.097,2.309,6.572,1,404.634,6.401,488.877,12.2247 +24,2.7904,4.7933,257,2.9689,1,21.654,4.704,798.914,169.871 +21,6.4152,7.2303,3.616,2.9108,1,414.689,1.4925,4.306,235.982 +26,1.5461,3.9325,8.595,4,1,5.5728,2.4506,280.918,3.7363 +21,4.7201,2.1723,9.388,1.006,1,240.576,8.008,625.874,167.575 +20,5.9195,7.5909,2.201,1.4539,1,241.306,427,493.044,132.959 +24,4.9244,7.8429,8.639,4.862,1,342.329,1.2298,302.121,11.475 +25,7.738,9.2269,2.582,1.4767,1,5.8207,2.945,209.119,173.242 +11,8.4513,3.7617,9.706,2.1405,1,5.1605,332,308.795,5.7277 +15,7.9412,5.0625,5.974,4.8201,0,450.297,1.512,744.916,7.471 +23,1.3493,3.6313,71,3.2653,0,151.871,2.1981,19.187,9.2307 +24,2.7472,2.5708,341,3.9144,1,163.461,2.4202,597.875,4.3775 +23,5.8295,7.5103,1.475,1.6275,0,388.431,2.2386,429.444,11.4869 +11,9.4134,3.3965,1.876,7.226,1,207.455,2.233,765.408,3.1648 +18,8.5146,4.2815,7.676,1.2836,1,416.462,1.3856,209.602,7.6354 +11,8.5828,4.0367,2.228,1.2823,0,200.734,2.362,277.389,2.7159 +25,3.7289,7.1266,9.691,2.9156,1,38.03,1.8596,404.701,8.612 +24,4.865,9.178,6.361,1.7074,1,262.655,2.311,17.491,8.525 +20,5.2364,6.6676,6.925,4.287,1,467.914,1.452,466.583,148.212 +21,2.4163,4.7158,2.178,4.9427,1,163.694,9.181,42.189,3.6454 +35,1.2796,7.7921,8.927,1.7165,1,181.345,2.8165,990.185,23.843 +17,9.5221,6.4097,6.678,3.5253,1,484.993,2.13,597.925,6.5844 +17,3.1664,6.061,8.644,3.2874,0,368.763,121,7.8767,5.447 +22,3.1595,9.566,9.565,9.723,1,386.284,8.542,465.342,6.728 +16,1.7504,3.792,1.256,4.59,1,147.988,525,879.717,159.976 +13,9.3566,4.5682,966,9.972,0,266.022,8.829,86.81,160.769 +22,6.2176,8.2585,8.034,3.6848,0,15.677,2.0565,962.187,216.649 +17,7.1933,3.1308,8.661,1.738,1,12.9934,2.2793,895.289,2.1802 +16,9.2042,3.8416,5.838,1.8354,0,267.621,2.4123,184.537,9.0328 +30,4.1106,9.0948,366,2.2772,1,49.388,2.73,1.3535,213.426 +21,6.5936,8.369,6.526,4.3225,1,10.7311,1.0974,62.009,191.443 +31,1.3492,6.6505,3.057,7.013,1,12.126,2.5878,70.542,5.6028 +25,2.681,2.668,2.384,2.728,1,12.1564,2.183,13.99,213.592 +15,8.4812,1.1704,4.881,2.0102,1,395.851,1.6133,175.167,163.396 +15,7.9009,1.606,2.162,2.779,0,255.241,2.8639,963.446,6.3436 +20,4.1558,1.0701,4.837,3.438,0,192.384,2.8432,944.395,1.0758 +24,4.3913,2.926,9.566,3.8016,1,421.895,2.6928,165.402,11.9386 +19,5.802,5.5179,8.398,4.2736,1,148.745,6.067,254.538,171.139 +22,1.2022,0.64,9.416,3.7192,0,196.109,6.237,893.193,6.4475 +19,3.1712,1.3623,8.063,4.5818,1,3.681,2.703,440.643,4.0497 +18,2.8741,1.8108,3.548,3.7415,1,5.9455,1.1937,800.092,1.8067 +26,3.2543,6.3198,812,4.6804,1,6.8366,2.3923,402.026,202.086 +20,8.2532,6.1579,9.229,9.656,1,173.488,2.0608,739.019,1.3136 +26,3.5171,5.5077,947,2.4993,0,262.043,2.2871,402.858,146.257 +18,2.7237,2.505,6.832,4.9697,0,372,788,900.187,183.178 +17,5.5384,3.7112,2.114,3.4079,1,9.4966,1.2899,332.317,187.316 +11,8.7908,9.669,397,4.3932,0,8.7825,2.5713,527.887,156.888 +24,3.1721,2.2646,1.472,152,1,12.6673,1.4698,526.538,156.671 +30,1.7068,8.9771,9.655,4.3588,1,8.304,2.0704,652.383,11.3782 +25,4.2076,9.7969,4.621,3.4886,1,9.7564,2.2679,313.633,10.001 +16,7.7289,6.4766,855,8.538,0,49.194,3.623,646.234,3.2965 +21,5.9562,9.1682,465,1.284,0,297.365,4.672,149.625,12.8485 +21,8.3511,6.4274,6.608,1.2996,1,381.347,2.1737,894.677,1.7047 +7,9.6363,332,241,4.5789,1,409.672,1.637,152.732,11.2367 +19,8.134,9.9676,2.499,3.3407,1,33.384,1.0257,841.892,175.416 +18,6.4342,9.895,4.363,4.5973,1,35.204,2.7543,696.217,10.6287 +24,5.4401,6.8264,6.306,2.2308,1,316.142,1.7231,347.656,12.1988 +25,1.3606,2.5284,1.715,4.6831,1,324.687,2.7314,334.159,202.129 +14,9.8589,3.9198,7.646,2.3148,1,464.225,9.282,966.385,15.518 +21,4.4513,6.4593,3.644,1.0213,1,9.2869,1.9099,203.034,3.0623 +24,2.3701,4.3649,8.174,757,1,137.365,8.602,725.729,130.305 +7,7.2004,2.5055,98,4.9691,0,4.6629,3.334,191.845,8.7498 +24,3.5586,3.3445,6.798,1.6693,0,418.662,2.9721,906.344,4.964 +20,6.272,3.4155,2.933,8.003,1,224.378,5.287,74.452,155.512 +23,6.2809,9.5932,7.954,42,0,453.552,5.654,933.378,9.2761 +24,5.0116,7.9861,4.022,1.4278,0,205.838,2.5258,880.317,184.154 +17,8.5251,4.5855,6.653,4.4456,1,221.307,2.4067,554.004,14.076 +24,3.3847,1.9982,9.343,2.67,1,224.178,2.9335,160.707,2.5022 +20,5.0377,8.1102,206,3.1622,1,306.247,2.152,229.245,8.4084 +12,5.8392,1.5718,111,4.612,1,383.062,2.824,20.98,6.4762 +14,6.9726,2.1046,7.703,2.5642,0,175.646,1.3461,228.433,3.5993 +14,8.0557,3.6601,6.464,4.1914,0,315.083,1.7752,48.165,192.053 +23,4.5533,8.8035,293,1.6192,1,10.1984,1.141,869.116,9.0847 +13,6.8144,1.3179,4.944,4.8855,1,277.024,4.752,3.2883,147.182 +25,2.3555,1.2223,419,3.941,1,273.292,2.11,246.096,211.683 +14,9.3938,4.9397,1.924,3.6241,1,444.358,2.1956,600.835,130.322 +19,4.4475,2.7641,4.245,3.3028,1,447.923,2.691,86.667,6.1939 +21,7.5657,5.6873,834,9.584,0,243.606,2.795,304.506,189.764 +25,1.1831,4.5164,4.797,1.9442,1,1.23,7.643,388.702,10.4581 +29,2.8467,4.3496,5.864,1.5641,1,422.311,2.6617,379.691,135.321 +21,5.3837,1.1197,8.738,4.725,1,311,2.769,300.757,21.65 +13,8.9043,1.4105,3.088,2.9239,0,239.127,1.4702,701.775,11.7426 +18,5.7453,8.2108,7.007,4.9683,0,9.895,1.2359,659.257,8.0327 +17,9.3688,8.8588,8.617,2.7979,1,176.296,8.344,844.842,174.574 +20,5.3542,2.3468,2.026,2.7263,0,318.382,2.4221,918.402,3.204 +20,5.414,1.1346,3.565,2.016,1,18.56,5.898,901.471,219.294 +24,2.0777,5.342,9.798,6.961,0,463.446,1.8664,544.759,219.731 +16,8.2239,6.083,9.832,2.5661,0,320.382,1.7014,19.384,139.058 +19,3.2227,7.1535,2.232,4.9259,0,323.222,7.467,22.994,3.7031 +17,9.0965,3.7281,664,4.383,1,187.219,2.9491,594.351,10.8502 +18,9.1974,6.7968,2.709,1.701,1,1.9272,2.539,919.214,10.1593 +15,9.4898,7.1296,3.977,2.715,1,36.909,616,535.127,7.1595 +24,5.6821,9.3534,441,2.7635,1,358.122,1.2668,936.371,4.2024 +12,7.0938,6.487,6.188,3.4268,1,265.063,1.0769,269.628,6.3287 +18,8.1966,1.9229,8.995,3.4389,1,208.134,2.6484,9.5483,133.327 +21,2.1791,6.853,3.303,3.949,1,269.159,7.935,798.328,16.457 +29,6.4086,8.6799,0.85,1.249,1,373.408,2.9954,88.059,235.103 +25,1.3087,7.9259,935,4.7184,1,356.393,6.002,45.36,5.1782 +19,5.4781,5.7464,419,3.503,1,329.055,7.317,11.142,4.8964 +22,2.3936,8.366,504,2.3808,1,451.889,1.9982,5.1904,2.8088 +21,2.6463,2.7331,597,4.5979,1,304.944,4.832,7.1932,225.358 +21,4.2854,2.9772,3.925,2.4383,1,7.255,2.6664,444.723,9.1644 +23,4.8919,5.6074,8.968,3.182,1,309.032,3.298,242.467,221.755 +22,6.6086,2.5804,2.415,1.1462,1,30.628,2.95,467.304,213.465 +22,1.6699,7.296,706,2.8933,0,3.4818,2.6239,493.605,1.0554 +23,5.5332,7.3076,3.024,4.393,1,213.865,2.519,463.512,6.7145 +23,2.6436,2.9908,449,2.1184,1,325.548,1.2217,623.723,7.2605 +19,6.1658,4.5237,5.567,1.6455,1,352.251,1.5409,68.261,6.6563 +16,6.7366,1.2767,8.349,4.076,1,446.525,1.3691,401.986,10.2081 +27,6.0104,8.0255,4.095,5.507,1,42.069,2.9623,343.661,11.9834 +15,7.6447,5.6553,6.173,3.414,1,5.8276,1.045,374.717,181.968 +25,4.0205,9.0159,0.9,2.0329,0,304.392,1.1451,7.948,6.4249 +19,7.886,4.9547,7.897,2.9388,0,298.241,2.9052,328.414,7.1699 +24,4.8949,9.4143,1.939,1.0277,1,151.874,1.1082,207.914,143.665 +21,5.3577,8.9187,7.334,3.0485,1,9.2053,1.1951,297.932,4.3025 +19,6.8329,5.7646,5.019,3.3699,0,9.9754,1.8939,717.253,11.3566 +33,1.1652,9.3389,746,3.512,0,8.8774,2.7218,988.653,6.0236 +15,6.8859,3.2309,4.945,4.1217,1,403.132,8.836,924.317,4.7518 +18,6.5673,3.6564,128,4.3063,1,7.4197,2.8428,823.409,190.957 +20,3.7886,4.548,5.699,3.178,1,132.196,8.477,739.825,169.709 +28,1.7721,5.892,4.921,3.0159,0,10.8894,2.4462,945.488,5.9955 +26,1.8184,7.2192,5.179,2.9701,1,356.428,8.275,754.521,9.9642 +13,9.309,7.7352,8.789,623,0,7.9198,219,476.245,3.7014 +16,7.2035,1.4982,8.948,1.7117,1,1.2032,2.4369,605.348,1.276 +22,2.1439,4.4416,4.535,4.8446,0,187.113,1.3502,312.727,140.453 +17,4.2105,1.7686,4.557,2.7773,1,152.547,1.1722,1.3275,8.7255 +15,6.3323,6.6213,5.152,4.6661,0,198.852,1.2896,360.077,4.974 +12,8.5201,1.5795,5.196,3.3782,1,376.908,1.8347,410.782,2.7505 +31,1.3929,9.0416,9.504,142,1,6.183,7.881,735.761,163.207 +19,3.1297,2.3063,6.494,3.886,0,1.8854,7.118,860.628,6.515 +14,9.1977,2.914,2.775,3.6109,0,12.7822,1.4503,963.028,217.773 +30,1.0825,8.5091,5.315,2.7728,1,444.604,1.069,358.274,4.6273 +27,2.8126,4.5847,6.272,6.358,1,8.4537,1.9285,957.823,5.8506 +14,9.6312,0.24,6.398,3.0703,0,498.519,2.4685,801.392,204.416 +21,6.5206,4.9459,5.853,4.0514,1,402.846,2.1823,4.0536,137.383 +20,3.355,8.454,1.777,3.7649,1,228.068,1.4079,599.308,2.6011 +30,1.6029,9.8534,336,1.2308,0,373.931,1.6962,371.985,13.187 +23,1.2537,5.8811,3.378,1.291,0,259.408,785,4.3671,7.3951 +26,3.2027,2.5653,4.275,4.8392,1,282.996,2.7371,536.188,176.866 +14,8.9334,5.6372,618,4.437,1,290.386,1.6742,588.969,1.867 +20,4.7432,7.687,815,1.5917,0,32.436,9.492,259.708,220.293 +19,7.483,7.9989,3.441,4.1203,1,3.0382,8.807,940.481,11.4769 +19,9.2646,9.2533,9.136,8.087,0,308.249,1.979,61.435,176.228 +26,4.6724,8.7444,1.544,9.842,1,358.474,1.753,184.204,169.119 +19,2.7215,3.4176,569,906,0,155.362,5.635,724.044,4.278 +23,5.6541,3.2577,4.823,4.386,1,489.289,1.2298,504.148,211.222 +10,9.1728,3.509,1.891,4.2734,1,7.2223,2.0285,478.502,5.5848 +18,8.2394,6.514,9.374,2.894,1,455.221,893,836.188,4.5736 +28,1.5925,5.349,103,1.2948,1,338.225,1.5278,146.798,12.4954 +17,7.2332,4.5935,4.126,4.2433,1,332.157,7.646,496.077,236.291 +22,6.1471,9.0763,9.267,4.0132,1,438.011,215,782.955,7.5215 +15,9.1672,1.6788,3.844,5.048,1,415.865,1.1647,663.785,231.468 +21,2.1023,967,931,3.2207,1,172.717,2.1962,1.536,10.4422 +15,5.8063,7.332,3.029,3.6092,0,352.685,6.416,789.576,200.322 +15,8.9152,2.2337,498,3.5791,1,2.5301,2.2635,945.225,12.7196 +15,4.6902,3.329,1.852,3.6157,0,232.009,2.1985,707.622,4.9263 +25,5.338,5.0284,4.666,8.473,1,468.889,1.5221,877.142,211.198 +26,1.6341,3.1409,8.363,1.5754,1,137.045,2.9144,367.204,1.7272 +20,3.5033,1.8048,8.726,4.2209,0,2.4985,2.6502,357.097,163.861 +23,3.9206,7.5008,493,4.492,0,291.472,1.6895,327.656,199.382 +13,9.5061,2.0445,1.609,1.3959,1,17.755,1.6733,73.762,199.686 +26,3.544,6.8761,2.753,1.151,1,189.842,8.333,942.645,157.272 +21,5.1478,3.4926,5.949,4.2988,1,291.229,2.7606,886.547,6.0239 +22,7.0417,5.1183,361,1.8855,1,310.795,2.6878,158.712,12.76 +31,2.4597,9.3387,844,1.6473,0,218.661,2.2262,629.847,151.089 +18,5.378,3.735,7.167,1.735,1,253.775,3.836,995.999,213.527 +20,7.6469,5.2026,1.005,2.0785,1,496.628,2.1109,302.415,3.832 +20,8.8017,8.5442,6.246,1.8913,1,478.574,7.593,638.437,11.1581 +18,6.6363,5.8797,113,2.8322,1,353.659,5.664,907.558,7.9953 +20,7.0215,2.7687,255,3.947,1,8.074,2.2776,900.553,10.2651 +24,2.1366,3.9768,1.779,4.8577,0,17.998,2.8792,328.261,4.3932 +9,9.512,6.8027,1.731,4.6823,0,441.544,3.267,10.2986,5.2183 +27,2.1932,8.9081,6.164,4.672,1,211.783,4.919,649.549,184.764 +13,7.9721,4.107,5.636,4.3964,1,477.684,6.577,947.498,11.481 +24,3.3833,7.154,176,3.3016,1,244.151,2.8887,512.904,12.3395 +17,9.4023,3.2505,9.902,1.1055,1,430.885,2.0892,46.313,215.395 +16,7.4796,2.3278,4.218,2.474,1,1.7689,2.0349,865.309,5.7595 +14,7.7843,2.6493,971,4.966,0,217.082,1.5151,430.351,7.9025 +24,2.9715,2.2127,1.206,1.62,1,350.131,1.6128,684.119,7.4068 +18,4.9874,1.9583,5.839,2.5194,0,431.782,8.705,394.756,158.217 +12,6.5603,1.3062,9.791,4.9663,0,304.816,4.636,383.366,134.988 +19,7.9298,9.3395,572,2.1772,0,8.6631,2.3408,195.929,11.3171 +26,1.9356,1.4419,949,2.6232,1,442.897,1.4121,9.7567,160.316 +10,9.6613,2.044,4.441,3.4758,0,287.407,768,886.309,11.614 +14,9.012,2.4627,4.358,9.037,1,5.4009,1.8983,189.408,19.583 +22,3.4331,9.3301,0.5,4.6641,1,231.923,6.284,7.1596,9.8458 +20,8.4048,7.5571,6.974,2.6452,0,349.472,1.4663,586.485,213.746 +21,5.6649,7.897,3.676,1.3813,1,225.508,5.707,550.537,2.8711 +18,5.1563,1.0476,8.639,4.6755,1,435.395,2.279,572.079,2.2548 +25,3.8299,8.3631,293,3.1273,1,211.847,9.624,473.424,157.368 +17,6.2287,4.0819,4.398,2.4184,0,291.726,1.3251,150.517,9.3529 +16,7.569,2.6282,511,2.9008,0,10.5585,2.2646,3.0706,10.9371 +24,4.6984,5.7575,607,3.7415,1,256.343,1.9788,5.595,167.044 +19,6.663,8.2218,2.761,7.727,0,11.1429,1.1991,943.716,5.1489 +12,7.2938,7.7865,4.275,4.3242,0,11.2594,2.131,536.536,1.0543 +23,7.4001,8.9,4.845,4.7975,1,139.951,2.7648,405.724,10.5333 +25,1.4677,9.2813,6.869,2.835,0,2.21,238,416.723,214.734 +13,8.7377,2.3812,7.735,3.4114,1,8.1655,2.2038,655.673,10.8177 +21,5.1243,4.2386,7.378,4.2992,1,21.218,2.8362,382.896,137.271 +16,3.3617,1.463,3.416,1.8741,1,6.553,0.92,798.494,5.2008 +24,3.1759,8.7932,9.995,4.9642,1,6.6692,2.263,267.343,11.1378 +20,5.3471,1.5457,8.487,3.4025,1,483.966,7.486,373.587,11.5357 +17,8.9815,8.6147,0.26,2.12,1,213.549,9.403,935.647,5.6434 +17,4.4051,3.2939,1.951,3.3867,1,201.866,1.354,267.681,3.9311 +15,7.7475,3.6813,314,2.6084,0,133.868,1.5757,66.497,8.4062 +25,1.8714,3.913,4.523,5.582,1,256.224,2.176,370.922,9.328 +23,5.2845,3.2688,8.508,3.9793,1,298.032,2.7027,476.485,3.9948 +18,9.9252,8.8836,7.784,2.8219,1,209.093,1.3944,5.4736,175.525 +13,7.9339,2.555,8.512,3.9792,1,196.904,2.239,175.562,155.792 +23,2.8948,4.0633,272,7.746,1,350.213,3.816,11.0894,7.5067 +15,5.513,314,5.935,2.6918,0,474.888,9.863,846.268,132.279 +20,3.1026,3.7092,2.832,3.8331,0,438.911,3.542,962.074,199.052 +17,4.686,1.7264,109,4.9415,0,5.931,2.0752,7.7295,201.395 +16,8.0208,2.5222,6.842,4.422,0,326.154,2.7229,8.6077,15.705 +18,7.941,8.776,143,4.3217,1,3.524,2.6672,556.647,2.9773 +23,3.0529,4.3605,6.677,1.2373,1,316.546,9.793,508.995,3.9096 +11,9.3,2.738,648,4.1899,1,232.177,7.027,654.066,7.2002 +23,6.3331,5.8934,8.102,8.464,1,245.557,8.222,739.438,160.972 +19,4.4193,1.4211,1.396,9.905,1,294.013,862,799.247,6.1921 +21,5.5174,2.5939,7.835,5.506,1,371.328,2.467,157.593,11.1464 +18,6.4456,5.4625,9.993,4.288,1,364.729,0.4,4.7457,198.126 +19,6.039,2.3752,851,5.413,1,2.224,6.435,890.267,214.026 +21,5.3776,6.7913,7.518,6.906,0,368.247,245,474.845,201.251 +19,5.5444,4.9149,6.622,1.2294,1,414.908,1.417,971.532,2.7945 +27,2.5877,7.7199,4.218,2.8633,1,3.4086,2.0957,537.442,218.581 +21,8.3146,9.4824,7.305,4.4009,1,161.473,1.858,514.927,164.193 +23,5.8758,1.158,7.242,2.0911,1,396.032,2.8363,62.675,148.509 +21,2.1797,3.3467,6.315,2.7314,0,246.553,1.2053,178.443,5.9411 +19,7.8954,3.1955,7.963,8.324,0,347.446,1.333,26.15,222.775 +10,9.392,1.5118,4.488,1.3297,0,251.158,2.032,906.748,4.167 +17,9.5258,8.103,1.213,6.696,1,489.111,4.568,220.204,1.9725 +27,4.3212,7.5988,5.591,2.0496,1,468.097,2.0748,240.641,3.6882 +21,2.2197,4.8443,265,2.9517,0,140.573,7.051,514.884,166.595 +23,5.6656,5.3777,3.844,1.4201,0,192.942,2.3198,64.474,149.486 +21,2.0135,5.954,174,4.23,1,215.673,2.117,1.0895,226.723 +14,9.4059,5.5551,3.828,4.9062,1,5.2102,2.2418,462.213,8.3756 +29,2.6522,7.9134,8.088,6.008,1,202.037,2.0717,405.023,8.3428 +27,3.2749,5.7383,5.427,893,0,387.424,2.123,866.963,160.688 +19,4.6597,2.6531,98,3.9489,1,423.448,1.6404,84.13,4.1798 +28,4.4485,6.6755,4.698,9.532,1,443.066,2.0347,906.864,11.137 +15,8.152,3.6149,2.915,1.7657,1,728,1.5785,84.363,3.704 +22,5.1069,5.4487,4.776,1.9712,1,394.403,6.183,788.844,142.089 +23,2.5369,4.8757,4.047,4.583,1,251.314,6.528,860.415,188.158 +20,3.4049,3.8118,932,3.2942,1,10.308,1.2159,183.058,4.8901 +19,5.582,7.1888,412,203,0,249.373,418,347.441,7.3721 +34,2.3271,8.8388,6.836,741,1,42.213,2.6679,686.782,3.1641 +17,6.5049,521,851,9.978,1,217.125,8.048,92.39,147.762 +24,6.0917,9.3362,9.592,1.5909,1,495.231,1.546,67.024,135.365 +18,7.4323,5.1152,1.776,2.4226,0,308.342,1.2733,215.869,198.335 +20,9.4393,7.1973,5.313,4.1892,1,244.882,2.4468,945.218,232.882 +17,9.2103,8.5562,436,1.5741,1,147.445,1.1921,762.738,236.074 +11,9.5147,4.671,4.992,1.8827,0,5.526,788,719.378,2.572 +29,3.2024,8.3497,1.255,1.6467,1,305.274,1.6347,764.882,132.753 +26,2.1841,1.7762,8.379,448,1,288.748,1.7231,662.553,189.517 +19,3.7205,1.5917,1.139,4.776,0,258.407,2.2776,3.1891,158.156 +24,9.0558,6.5747,5.133,695,1,268.852,2.3993,261.082,215.277 +21,9.7485,8.7014,5.211,1.4383,1,421.761,2.1186,957.006,10.6013 +17,8.7339,8.9243,9.717,6.465,1,158.435,136,295.718,10.2503 +24,1.9902,6.4374,655,2.4527,1,275.127,62,77.391,6.267 +15,9.5269,5.2549,2.878,4.6608,1,339.974,2.9323,430.239,3.756 +19,4.8102,3.3139,2.408,5.035,1,10.4909,7.926,908.452,166.235 +28,1.0838,9.8,1.282,2.2045,0,46.241,8.471,562.092,11.3152 +25,4.9815,3.197,7.565,1.119,1,368.561,2.1967,635.567,158.455 +27,1.4146,7.4419,6.908,3.8545,1,2.6648,1.7448,247.229,5.7173 +22,5.8949,5.3198,6.099,3.2061,1,432.553,1.3907,6.6948,207.142 +22,4.047,6.0851,408,3.4985,1,464.935,3.493,758.991,216.687 +19,5.2609,3.9348,7.628,2.3617,1,396.835,2.445,7.6967,158.951 +22,6.5185,9.6482,6.419,4.5382,0,213.112,2.1109,72.458,6.6672 +14,8.8192,5.7168,9.639,2.0478,1,497.188,3.738,559.938,5.1877 +21,6.9571,9.3779,5.872,2.5704,1,6.2218,1.3074,821.823,15.012 +19,4.9064,759,304,3.4764,1,268.303,2.2084,213.715,225.787 +19,8.3749,5.7267,3.815,2.6028,1,8.5195,2.7696,546.114,138.747 +18,9.1502,7.1719,1.758,9.467,0,219.674,2.6208,61.803,201.433 +31,2.0778,7.4508,7.229,1.5854,1,463.712,2.5921,8.3555,135.697 +27,5.7874,9.0498,7.077,4.615,1,397.131,1.0755,741.551,161.904 +23,3.5606,44,2.007,2.1631,1,391.041,2.7815,395.139,136.266 +18,1.4236,33,1.585,3.047,0,176.927,2.051,137.625,138.087 +23,7.0169,4.7226,77,5.926,1,467.135,2.6595,393.194,17.742 +9,8.7649,2.929,912,3.1529,1,18.413,2.668,10.7318,9.5099 +24,2.4661,9.7453,2.331,4.4644,1,1.9987,1.187,889.116,216.959 +15,8.3117,2.2207,3.442,1.6886,1,318.901,1.2889,462.192,207.238 +19,8.6806,4.7266,2.805,1.1102,1,181.324,2.484,146.648,174.075 +8,9.2291,6.114,4.136,4.465,0,7.6862,1.2256,259.575,178.422 +28,3.3876,5.2205,714,3.4597,1,467.329,2.6539,727.403,9.9178 +17,9.1356,3.7996,8.706,527,1,31.862,7.043,788.227,199.806 +18,3.886,4.466,1.826,2.0406,1,470.265,118,5.0903,223.826 +17,5.971,3.3512,6.864,3.3704,0,291.489,2.2839,6.9281,190.836 +25,1.4546,3.9144,3.526,2.8719,1,3.1932,1.8785,918.013,3.1925 +29,1.3949,9.8992,9.805,3.0927,1,1.497,1.3203,337.672,188.789 +16,7.4834,2.0789,2.989,2.8357,0,450.281,2.5358,201.391,11.1497 +19,5.2003,5.4478,72,3.9903,0,1.9364,2.4725,131.827,146.088 +29,3.3066,9.8732,5.156,1.6021,1,307.588,9.736,481.198,237.878 +27,2.7137,7.9202,1.507,3.5423,1,148.988,2.5139,773.342,8.6245 +19,7.0296,9.9337,445,4.9554,1,343.829,1.0355,525.907,8.3647 +32,1.1936,9.683,6.983,1.9498,1,142.361,1.8657,3.0467,6.3152 +11,8.253,4.8954,7.323,3.9552,1,1.8611,5.775,489.066,3.051 +27,1.7132,6.9638,4.607,1.2305,1,365.419,7.926,318.541,4.0362 +19,2.7234,1.1044,6.769,1.4095,0,155.451,1.3436,686.031,12.3425 +19,4.4761,4.4115,5.382,4.6743,0,275.399,9.438,528.274,218.352 +24,5.3637,8.0902,6.298,1.297,1,386.933,3.874,965.684,194.376 +24,4.195,5.0534,5.967,1.0871,1,351.412,1.447,602.183,4.3798 +26,3.8864,7.027,6.658,2.4146,1,174.286,1.5341,636.156,134.806 +17,9.6752,7.4575,1.996,2.1992,1,373.913,4.761,525.028,203.262 +15,6.7742,2.5347,2.687,3.1458,1,462.841,5.229,317.895,12.9478 +29,1.2109,8.757,0.44,9.636,0,304.987,88,634.297,218.744 +21,4.8716,4.5982,4.461,3.527,1,351.753,911,339.583,217.892 +13,8.8751,2.1019,7.744,1.8467,1,432.954,1.0759,720.175,8.3579 +24,3.7131,8.6542,3.674,2.6218,1,42.182,0.44,244.478,209.743 +28,1.851,4.1782,1.625,2.81,1,175.801,2.7573,373.985,140.428 +19,7.8255,7.5031,2.515,3.1975,1,49.585,5.982,587.812,11.5163 +14,6.4541,5.4803,2.147,2.7433,1,1.4283,1.979,632.207,185.824 +22,6.1328,3.8187,7.317,1.2288,1,493.354,1.2125,671.927,189.508 +27,1.4822,8.0988,4.703,3.8227,1,12.2999,5.774,703.313,162.101 +25,2.2645,5.8447,7.086,4.389,1,220.219,1.853,325.123,194.615 +22,6.6029,3.9056,4.162,9.918,1,441.844,2.2582,893.651,228.342 +19,2.8704,1.096,8.897,3.6969,0,12.2164,1.6713,3.9634,209.541 +19,5.5366,8.9545,9.835,1.3986,1,11.2391,171,196.546,1.7821 +17,5.9039,3.547,6.698,2.4674,1,321.554,1.4041,7.9439,204.007 +26,3.5516,8.6319,8.638,1.636,0,352.725,1.165,674.822,187.567 +12,9.5358,3.5996,5.079,2.5349,1,3.735,1.0629,280.929,222.418 +19,8.5822,6.3934,9.346,1.7333,1,225.222,1.0899,207.162,177.497 +21,7.5014,9.222,8.316,4.971,1,244.554,2.4689,485.861,210.685 +26,1.7019,1.5171,9.918,1.7874,1,135.918,2.2059,622.857,2.453 +30,1.9552,5.6695,6.231,3.1352,0,273.055,2.6908,623.054,234.673 +16,5.435,7.6443,7.792,4.4417,1,7.7289,4.216,561.878,4.5818 +26,2.4464,7.5758,5.429,3.1897,0,161.803,1.6013,992.066,207.415 +13,9.8044,5.2563,2.591,2.8293,1,35.662,606,861.613,223.107 +29,2.4267,6.2474,3.548,2.8461,1,436.893,2.4766,246.472,534 +23,5.3872,7.5753,894,2.4823,1,294.689,1.0997,761.129,219.283 +22,4.2771,8.4103,559,4.0379,1,3.7422,2.079,573.604,199.011 +23,6.7545,7.6181,5.915,2.521,1,339.373,974,7.9814,221.379 +21,2.1613,3.54,3.725,4.4256,1,448.799,8.607,5.9085,4.2452 +27,4.8728,9.9673,3.867,2.9315,0,252.157,2.298,801.623,186.586 +22,3.4723,4.345,8.846,4.2444,0,246.846,3.798,549.541,11.6997 +14,8.9898,2.446,8.538,52,0,495.707,1.6673,575.612,6.1845 +27,1.3653,3.6262,5.988,4.3464,1,318.149,2.3818,342.906,181.481 +15,9.2235,1.2778,2.729,6.007,1,403.014,2.2186,931.045,11.3581 +19,8.4969,1.2144,4.755,3.6061,1,323.247,2.8077,716.214,215.972 +19,3.6781,2.8154,4.083,2.0826,1,11.0458,19,928.495,170.576 +9,8.1036,5.338,3.536,3.4054,1,142.039,1.0614,10.8275,3.3395 +26,1.2809,6.8851,1.028,3.1409,1,332.853,1.1088,587.892,6.0183 +9,9.7018,7.399,5.431,817,1,228.036,999,641.152,6.3488 +17,5.7394,2.0329,3.018,2.5731,0,202.174,2.4518,134.733,8.2572 +21,3.7295,929,6.608,1.3862,1,1.1226,2.0667,352.802,159.948 +18,4.2632,6.317,3.192,2.8022,0,442.185,1.5842,222.656,21.464 +25,1.5976,2.6775,4.312,3.69,1,442.249,1.2151,984.614,142.488 +20,9.9041,5.719,524,4.063,1,230.486,2.6862,547.981,180.432 +29,1.3536,9.6469,9.925,2.5788,1,35.037,7.934,322.108,7.6016 +19,6.8942,8.7556,5.076,3.0881,1,8.891,1.1936,667.852,12.5392 +28,4.9846,8.7593,242,1.4768,1,251.906,2.8579,662.952,12.099 +9,9.5402,1.7607,5.412,4.765,1,219.433,1.939,353.857,168.254 +27,3.214,2.6491,8.704,2.6015,1,328.307,2.3418,993.984,12.431 +20,5.7888,7.639,7.726,9.126,0,234.823,2.1542,810.872,8.0221 +25,5.3412,7.7847,7.009,5.389,1,249.217,2.7057,406.315,5.8538 +9,7.3258,6.982,1.395,2.7083,1,147.856,2.717,663.459,6.1129 +32,1.6121,5.567,6.577,1.8762,1,2.4212,2.9113,713.434,235.412 +21,2.7441,2.4788,7.663,9.627,0,458.513,865,182.078,8.5794 +23,2.9311,2.4345,5.724,1.535,0,6.116,1.0131,879.378,193.585 +19,7.6434,9.9073,8.927,2.833,1,140.662,2.545,827.777,1.7128 +21,2.7022,7.5678,277,2.993,0,223.805,1.535,758.118,2.1517 +27,6.1614,8.3694,2.421,709,1,159.546,2.8942,230.449,164.676 +26,2.9372,5.7198,8.696,3.1987,1,275.959,2.159,144.887,10.973 +20,8.7546,8.7101,6.254,4.7599,1,230.807,1.5171,188.743,211.318 +10,9.4797,6.4549,14,4.8915,0,12.7738,3.246,10.2089,206.933 +22,5.6664,9.4617,3.531,4.4425,1,4.401,1.5781,940.888,181.358 +19,4.1708,2.8134,8.579,4.0354,1,6.8768,9.602,85.298,195.676 +25,3.1065,5.9532,273,1.0468,1,24.316,8.148,9.9872,208.921 +31,1.448,6.9013,32,7.822,1,422.973,1.8543,681.191,188.058 +23,3.4165,3.9294,2.813,2.2247,1,5.0319,2.3728,253.131,12.6454 +20,6.8881,8.7971,914,3.0982,1,338.603,1.3298,2.7101,6.3539 +25,5.8026,9.798,9.015,4.2534,1,396.046,1.4799,299.468,188.972 +15,9.4964,4.9377,5.188,1.1598,0,138.386,1.9543,44.563,7.625 +16,4.5665,3.9064,5.532,2.3982,0,33.412,3.739,2.9838,5.8756 +19,7.2448,4.7194,332,3.2372,1,343.329,2.4858,330.483,4.12 +26,5.4039,8.5274,2.437,2.228,0,353.896,2.5108,703.349,150.525 +24,5.6132,6.4547,8.152,2.271,1,445.405,1.6231,236.144,5.8195 +17,3.41,4.477,1.063,1.1256,1,199.263,5.627,490.044,8.9959 +21,5.0946,5.4217,4.874,4.9333,1,12.1845,1.5023,888.705,170.175 +17,5.2371,173,6.344,2.376,1,271.922,3.178,3.8107,190.519 +20,7.3598,7.7854,1.037,2.6637,1,3.1274,2.2899,787.781,7.5544 +13,9.4658,3.2831,5.196,1.0928,0,16.696,9.335,390.054,202.272 +23,3.9639,4.7201,5.775,2.5707,1,441.613,9.333,545.738,1.391 +32,1.3798,7.9868,7.425,1.2767,0,266.029,2.8351,238.563,236.609 +19,5.4667,4.645,2.348,1.0117,1,218.338,1.2656,583.159,10.005 +19,5.9002,1.5854,2.933,1.3786,0,132.842,2.3687,733.393,7.7972 +27,2.516,3.9796,5.695,138,1,12.5188,1.9115,209.523,221.682 +13,7.8442,2.2993,9.831,2.8508,0,11.8306,9.485,349.836,3.1773 +11,9.8644,3.379,2.175,1.9374,1,414.617,3.714,571.705,8.5872 +21,9.512,9.9817,9.859,4.4934,1,49.251,2.3932,422.613,8.6136 +29,2.774,8.2541,7.143,2.035,0,267.399,2.2875,300.221,10.1847 +18,8.8783,8.839,8.261,216,1,3.9917,5.075,457.171,203.601 +19,7.3404,9.3705,896,4.4294,1,37.552,7.473,297.919,203.852 +24,5.0846,3.4094,3.004,6.332,1,438.527,2.2987,308.855,141.993 +23,5.8655,2.9708,577,108,1,465.614,2.9509,614.527,238.022 +19,8.6464,2.3406,3.715,8.946,1,314.388,2.5309,482.295,202.599 +24,5.3212,8.3012,9.813,4.1194,0,25.344,2.0525,680.302,163.457 +23,4.3589,6.7955,1.053,4.0136,0,310.264,2.7463,839.071,4.787 +18,5.4392,2.3617,5.624,1.7007,1,6.475,8.557,943.536,131.935 +14,6.2122,3.7699,61,3.3402,1,32.771,29,159.838,5.1338 +25,2.7017,5.0671,7.127,2.5362,1,354.823,9.629,629.928,7.2397 +18,9.1082,5.2814,1.972,4.5237,1,361.015,2.9158,586.576,164.607 +25,7.0677,8.8873,1.296,2.821,1,281.536,2.6459,868.276,4.4261 +13,6.6994,3.8057,337,4.0659,1,350.022,1.511,896.931,2.1802 +29,1.8955,9.0852,771,853,0,319.416,1.5059,762.898,12.7571 +13,6.4376,4.4137,1.066,1.9581,0,5.7764,237,599.507,228 +31,2.0886,7.4637,2.298,9.598,1,449.183,2.3671,20.727,14.614 +28,1.7083,9.3025,85,3.5131,0,311.364,1.1178,283.872,216.322 +28,5.7458,9.0758,9.684,3.3916,1,363.897,2.7358,606.739,4.5658 +15,4.6251,5.695,5.921,2.7395,1,171.444,1.634,14.795,9.1865 +20,6.2993,2.057,7.199,3.4908,1,45.962,2.202,192.125,219.928 +25,1.803,4.7691,6.514,3.1978,0,251.308,1.1981,912.318,168.929 +17,4.8788,4.3155,1.444,3.8822,1,339.503,8.047,956.749,3.2475 +28,2.5731,6.4089,5.949,1.197,1,476.091,1.5523,1.5182,9.1679 +19,9.8839,9.4471,1.314,2.1446,1,458.041,1.4565,863.857,181.439 +19,6.0504,1.124,4.012,7.581,1,322.399,1.0464,938.633,159.547 +16,7.1869,4.5186,569,2.148,0,8.2871,1.9466,530.482,3.7358 +21,3.9288,1.9241,5.589,3.5085,1,475.284,1.9839,454.412,1.4996 +28,1.8527,8.9411,1.191,3.457,1,492.068,2.314,919.612,16.36 +13,9.7828,9.6458,344,3.5471,1,5.1698,1.7862,1.7458,146.165 +23,3.5763,4.787,7.982,1.5438,0,225.149,2.1322,842.081,1.4242 +17,4.8143,1.0401,7.259,3.3111,1,274.128,2.277,30.361,233.955 +19,6.8488,7.8529,818,1.8373,1,4.6041,1.9774,644.751,6.0585 +27,1.2223,6.9714,1.274,4.7225,1,9.484,2.4119,329.966,9.2646 +18,8.2923,3.5467,8.926,1.7168,0,268.853,2.4958,527.715,4.2623 +24,5.8292,8.8741,7.691,3.0151,1,481.545,1.249,810.234,198.845 +25,3.504,9.7583,9.962,3.7507,0,1.3905,2.0923,189.456,231.016 +28,1.5545,5.5785,254,4.532,1,456.222,2.3909,667.279,5.1193 +27,2.4625,5.6573,4.878,2.1896,1,449.304,1.1905,899.353,6.7961 +16,9.0553,2.9751,2.365,1.8024,1,428.589,1.6285,902.041,169.564 +15,7.1742,5.8451,6.228,2.1501,0,188.775,7.953,89.518,12.6693 +22,3.2491,4.3964,1.154,1.6185,1,245.412,9.307,523.279,2.5216 +25,1.5904,3.0219,1.272,3.2696,1,201.797,1.5049,770.024,222.869 +12,7.2155,6.719,719,4.6636,1,473.793,4.534,452.389,146.676 +17,6.1517,2.5271,6.936,6.304,1,260.675,1.1116,465.562,7.2302 +16,4.6407,1.9785,4.941,2.8046,1,4.0306,9.043,291.016,11.7553 +21,4.2725,5.4204,6.177,4.4882,1,13.703,7.147,292.375,12.1959 +29,2.9513,6.0167,8.793,5.006,1,231.017,1.4517,4.7446,12.61 +23,7.0265,6.0857,7.403,2.4693,1,476.778,2.516,536.157,11.9353 +11,9.736,3.8818,4.617,4.3261,0,284.476,7.268,315.673,13.483 +23,2.5814,4.2123,9.844,4.5023,0,348.036,1.9792,19.581,9.4405 +18,6.374,8.3424,4.563,2.5718,1,4.426,7.626,130.496,3.5079 +19,4.8177,4.7623,1.125,1.248,0,438.662,4.263,353.529,15.95 +32,5.0202,9.8777,9.927,5.282,1,269.509,2.83,90.002,190.197 +25,3.2873,4.3962,228,2.9336,1,460.614,1.8997,521.238,201.844 +14,8.4262,6.4958,5.499,6.193,0,222.738,3.138,561.367,5.269 +17,5.3673,5.036,3.091,7.471,0,341.542,1.8979,6.3785,9.711 +17,5.8907,6.5334,5.036,3.8606,0,235.419,529,524.648,234.825 +25,3.7428,8.5143,5.587,3.7535,0,7.1279,2.6634,670.936,1.5015 +25,2.6363,9.4246,2.401,4.2139,1,136.025,7.424,159.208,188.533 +33,1.7732,9.9732,5.569,5.287,1,3.3629,2.4204,983.718,3.0267 +16,7.4271,2.8218,7.561,9.907,1,220.133,5.976,915.963,197.913 +24,2.7661,5.7537,2.665,4.1648,0,324.671,1.6749,993.171,161.333 +21,7.2107,4.5072,3.834,3.6054,1,12.1856,2.737,366.714,174.008 +19,4.5134,5.6382,2.682,4.0298,0,245.194,888,824.076,234.557 +16,4.742,1.5745,8.206,4.9487,1,229.487,2.442,335.448,225.476 +22,5.2226,8.5615,725,4.3222,0,26.671,1.6578,751.638,7.3049 +23,4.3094,9.0957,8.712,2.6023,1,9.2292,517,948.351,9.1952 +27,1.9056,4.4966,0.17,1.5538,0,266.992,2.185,16.347,9.7724 +17,3.7867,2.8043,736,2.8484,1,182.103,1.7725,148.917,4.3338 +10,6.9736,1.4083,1.194,3.1929,0,143.021,1.0391,11.336,9.1472 +22,6.9921,6.8376,161,1.6766,0,292.991,2.117,800.367,234.966 +18,3.576,3.1223,5.331,3.8547,1,7.4018,7.156,669.967,11.7495 +32,5.1409,9.0954,9.709,4.638,1,450.329,2.7511,527.092,228.624 +25,2.741,6.7101,3.572,3.897,1,467.426,1.0407,776.174,1.715 +30,2.8933,6.4569,9.585,0.16,1,330.305,2.2889,851.424,9.429 +26,1.2074,5.594,382,2.4898,1,151.577,7.756,950.033,138.079 +13,9.0707,4.578,9.269,4.3072,1,313.003,2.1445,209.239,176.701 +26,2.8964,9.3192,1.812,4.325,1,300.762,946,44.726,5.219 +25,3.0478,6.2794,9.125,2.5887,1,195.625,8.866,923.783,12.0806 +26,3.5164,9.9406,562,797,0,143.624,2.787,46.671,209.506 +25,2.1467,5.3736,9.482,4.4741,1,8.4226,1.3537,492.778,182.814 +18,6.7534,7.1011,2.008,4.1617,1,10.8692,1.3053,943.021,5.5635 +22,1.6763,5.621,3.027,4.6696,1,326.515,1.077,73.733,8.0273 +28,2.2078,6.3174,4.909,4.3749,1,442.947,2.9435,556.528,7.339 +18,6.8028,7.6465,3.807,3.6828,1,192.478,7.323,363.713,172.682 +31,4.0569,7.7851,6.675,9.244,1,6.095,2.3732,916.196,232.363 +17,7.3715,7.7011,9.748,1.5125,0,6.403,1.3423,1.8849,6.7219 +16,6.0168,2.2628,6.064,2.4843,0,202.953,1.1944,327.796,141.192 +26,3.3042,9.754,7.215,2.9445,0,11.6283,6.104,946.612,237.254 +21,6.8575,9.9518,88,3.9109,1,161.278,1.9002,503.222,3.7819 +21,2.0465,756,6.278,1.1348,0,12.0835,1.001,627.616,15.818 +27,5.8277,9.3645,4.538,6.414,1,332.074,2.4388,537.289,7.9677 +23,4.9343,2.8945,8.858,2.4131,0,319.257,2.9054,403.387,23.8 +23,3.4109,6.8928,3.882,7.892,0,456.152,6.814,66.863,2.6105 +13,6.436,3.3811,6.795,3.4687,0,349.872,386,76.881,10.8302 +15,8.842,9.6775,2.282,2.8782,0,8.2471,9.466,370.782,6.1194 +9,9.9901,1.015,2.594,3.7055,1,375.797,1.4013,594.616,7.604 +20,6.4699,4.9775,3.761,3.172,1,9.0634,9.029,9.1931,231.263 +24,4.6424,4.2805,3.041,4.8235,1,27.93,2.9114,552.122,136.361 +25,3.0269,3.2602,2.539,0,1,3.8539,2.3376,750.272,168.189 +28,3.3139,6.4553,497,1.6272,1,2.3663,2.8984,589.391,148.866 +16,5.3151,1.3106,8.367,3.3982,1,232.115,1.1197,879.663,3.5634 +22,4.3055,7.1666,643,2.257,1,5.2492,914,293.331,4.0934 +22,9.2243,9.8059,8.874,4.167,1,153.333,1.2221,496.839,150.347 +25,4.3147,8.0456,1.255,3.834,0,169.417,1.5685,9.6605,187.154 +27,4.361,8.6002,653,2.9075,1,384.713,2.2247,703.021,146.657 +20,4.4518,3.5964,563,4.4796,0,16.634,2.6433,448.463,13.689 +17,8.5296,3.2489,5.024,2.7772,1,24.715,1.3895,535.062,179.031 +18,6.8571,5.1705,4.912,3.0179,1,386.293,8.675,137.111,5.8466 +17,6.5275,4.573,5.745,1.73,1,10.2449,9.565,997.378,175.595 +29,4.1973,9.4536,2.871,937,1,402.449,2.0908,774.201,9.8693 +15,8.3611,1.4379,6.629,1.081,0,415.897,1.7027,406.623,161.772 +29,1.3453,9.0301,5.024,4.4415,1,494.423,1.4595,57.426,6.5932 +12,8.8372,8.358,3.347,5.129,1,222.024,6.083,62.253,3.2992 +24,5.6147,8.2262,8.265,4.9989,0,185.325,2.6264,961.158,6.998 +25,4.5843,1.5196,7.277,8.221,1,351.003,2.3431,770.705,192.834 +13,5.4745,3.813,3.936,3.3732,1,2.9076,4.219,35.617,4.7273 +16,7.1967,7.1949,8.476,4.7448,0,1.9876,1.1022,977.929,8.7231 +25,1.1149,2.8027,9.203,1.8114,0,167.495,1.6264,308.778,184.525 +19,8.844,7.145,5.369,3.6722,1,364.758,1.363,581.177,10.8044 +21,5.0207,5.5509,215,1.7543,1,5.8227,1.1934,703.661,5.2212 +21,4.0867,1.0881,9.158,1.5247,0,317.773,2.1565,278.415,4.6743 +28,2.2442,9.3213,1.895,1.009,1,134.753,1.635,956.797,9.7904 +18,4.9552,4.5231,484,4.1047,1,325.837,1.4142,223.949,135.642 +21,5.4669,7.3445,3.275,1.2869,1,228.488,7.865,447.355,9.4164 +21,4.6328,5.0102,727,1.4158,1,5.7576,2.539,188.075,217.097 +15,7.1079,6.0436,9.233,4.9948,0,12.3641,1.3947,876.238,92 +18,4.7881,3.0277,6.373,1.6366,1,10.9857,5.141,229.385,9.6483 +11,9.6528,2.1936,9.518,2.1139,0,8.2292,7.747,4.4394,17.828 +18,6.3935,5.4257,924,4.9503,1,234.173,1.521,4.8551,213.814 +22,8.2673,4.4022,608,1.8465,1,477.333,2.9211,419.616,8.6016 +28,1.9842,3.9011,6.042,1.8308,1,329.044,2.0528,52.755,161.661 +24,4.5756,6.7257,9.661,4.1386,1,418.001,8.389,5.1222,139.284 +25,4.0316,6.9051,5.027,1.5597,1,49.054,1.1472,10.1937,4.8368 +14,6.1253,4.592,515,1.1689,0,270.311,1.2184,10.6488,163.427 +10,8.75,3.3874,2.212,2.1161,1,11.9035,4.609,671.816,5.9896 +23,1.705,4.1176,2.448,3.5032,0,463.906,482,306.817,188.138 +26,1.6532,9.689,3.379,2.162,1,349.492,4.452,566.947,207.816 +14,8.6529,2.359,436,1.8696,1,479.471,1.565,8.2959,11.4821 +24,2.9157,5.164,9.049,1.7312,1,325.516,2.0226,893.194,1.299 +25,7.0188,9.9624,5.156,1.2241,1,387.573,1.7722,311.389,176.965 +25,5.8859,7.3656,6.709,3.2714,0,445.318,2.9333,780.419,11.2132 +10,8.496,8.745,672,1.45,0,379.625,3.776,828.436,2.2685 +24,2.1258,2.025,541,3.0337,1,281.323,2.9594,98.803,7.9473 +27,2.168,7.1929,5.865,2.5217,1,23.596,1.4,743.629,6.9754 +21,6.0114,4.3919,8.873,1.0859,0,411.689,6.559,448.377,174.326 +19,9.5174,7.868,5.285,1.3328,0,385.993,2.8298,161.102,10.1776 +26,4.735,9.2348,8.778,853,0,183.215,1.4058,5.7394,140.891 +24,3.9425,5.993,811,2.831,1,249.166,1.042,887.397,12.0264 +16,6.4602,1.8711,759,3.0959,1,317.495,6.414,452.197,173.822 +17,9.374,7.8219,202,3.3639,1,1.4185,8.036,752.464,172.332 +24,8.5324,9.5581,6.577,0.83,1,12.3784,2.9377,501.367,10.771 +11,9.9594,5.8023,4.435,3.077,1,12.5107,9.119,880.868,3.2408 +30,1.2031,6.82,2.907,4.9104,0,441.616,2.9334,752.169,9.789 +24,2.0157,3.3747,4.186,372,1,165.744,9.906,9.4603,3.8432 +20,6.4852,3.8153,4.452,2.4519,1,272.572,6.943,754.625,230.198 +16,8.3852,7.3465,9.106,3.6652,0,415.793,5.501,274.146,228.035 +26,3.5672,9.2777,1.035,0.23,1,12.9847,1.2356,775.326,10.9605 +21,3.1529,6.2899,2.797,3.8914,1,6.1879,7.104,94.903,6.631 +21,8.0828,7.8985,5.376,4.8976,1,47.418,2.0908,930.831,8.9914 +25,1.5074,1.7164,6.983,4.424,1,352.341,7.193,13.375,214.823 +21,4.3244,2.1196,6.306,4.1111,1,8.8527,2.5062,6.4126,6.9125 +26,5.5523,5.3203,9.416,1.8929,1,409.856,2.502,779.212,149.275 +18,6.0431,1.7655,7.956,7.206,1,393.563,8.566,712.862,4.4145 +22,7.5575,6.35,5.571,2.466,1,418.771,2.2606,184.411,198.039 +23,4.1936,2.9165,2.147,3.576,0,138.106,2.5726,687.722,214.055 +21,6.5142,7.9153,4.509,2.6105,1,22.429,1.7704,2.5333,147.629 +21,6.2684,8.0811,6.934,968,0,346.837,1.099,63.485,149.703 +19,5.9285,4.6379,838,3.6431,1,195.334,1.3229,833.983,9.0854 +21,6.7643,1.8081,9.597,2.4398,1,3.4986,2.3587,645.421,169.702 +22,3.335,6.4677,6.055,2.2947,0,6.8225,0.88,7.4742,11.4831 +31,1.7618,9.9279,5.269,981,1,298.557,1.1934,991.063,178.917 +26,2.0734,6.2259,177,1.8063,1,187.584,4.824,362.531,232.443 +20,3.0212,3.577,721,9.093,1,269,1.1972,386.673,19.737 +14,5.5018,1.729,1.561,3.677,1,383.427,2.595,9.3904,12.4159 +15,8.564,3.2036,548,9.951,1,208.352,9.631,175.447,234.933 +15,7.3116,1.9578,4.009,3.0838,1,156.885,1.1204,278.464,14.57 +15,8.1014,8.1305,3.369,1.398,0,35.676,7.664,80.121,1.5569 +24,4.1588,8.4481,6.374,3.2849,0,227.554,3.041,694.831,175.288 +21,4.6419,2.5862,5.357,2.7023,0,347.416,1.565,587.812,196.815 +20,4.5431,3.2564,596,2.1172,0,6.599,2.5952,865.254,3.2361 +19,2.7269,2.3625,472,3.365,0,471,1.1969,997.827,16.303 +29,1.5509,9.0838,2.777,2.0786,1,279.951,7.104,390.927,22.102 +19,6.3182,5.0265,9.528,4.1069,1,491.106,8.551,397.311,6.0342 +18,9.903,6.5614,864,3.648,1,136.179,2.5857,738.728,140.402 +27,2.5015,4.1548,9.389,2.7032,1,341.447,1.5834,647.905,6.5901 +23,1.4202,6.3101,3.112,4.3853,1,8.6129,3.924,2.326,185.858 +18,8.0158,3.8586,5.127,4.1443,1,155.774,2.1277,658.873,139.358 +20,3.2733,3.3968,1.088,2.6592,1,3.9037,4.631,722.412,10.2738 +16,8.4668,6.3448,709,3.422,1,440.397,1.807,986.077,6.957 +17,7.3354,5.9106,4.295,2.83,1,155.219,7.671,590.903,226.752 +10,9.5111,2.9353,7.417,1.7763,0,11.5233,5.043,687.574,11.9457 +22,4.6803,1.4935,2.694,2.7006,1,365.302,1.815,79.086,192.986 +16,6.9577,3.6858,5.623,3.2357,1,9.972,1.4537,10.5,9.4055 +21,5.1837,4.152,2.787,3.2242,1,12.0138,2.1722,737.306,203.785 +19,6.6753,6.2868,3.886,3.3676,1,5.1808,1.5347,551.397,3.8409 +25,5.0464,9.1453,9.064,3.3963,1,481.436,1.257,10.9075,5.5559 +23,2.6977,3.618,8.558,5.464,1,12.3819,1.5787,673.182,8.2014 +21,5.5711,2.4366,516,9.586,1,497.832,1.3035,242.159,2.1263 +14,5.7573,1.9372,2.381,3.1527,1,8.8075,1.113,542.519,10.6522 +15,8.2954,5.0229,1.932,2.0409,1,1.0326,2.0421,288.151,11.6622 +20,7.6197,4.297,9.541,3.8143,1,447.847,2.8864,11.3491,2.7552 +19,6.9741,7.2904,2.027,6.245,0,290.009,1.2661,258.356,10.2504 +24,2.0205,2.4242,8.082,9.576,1,175.705,1.2712,444.419,4.7351 +15,7.4855,5.945,369,2.7923,0,25.667,1.373,499.188,210.051 +26,5.5027,8.8386,9.857,2.5037,1,130.363,2.6711,156.996,12.223 +23,9.0469,9.1068,3.682,1.332,1,317.379,2.7874,327.769,228.472 +21,9.2788,9.5878,3.515,2.0417,1,308.234,2.4394,860.797,8.1944 +28,1.4964,7.7326,6.375,1.749,1,4.1996,319,911.278,8.1935 +24,8.3858,9.0599,9.615,1.852,1,455.344,2.7007,53.983,8.1291 +24,1.3393,2.3453,9.762,4.746,1,230.263,719,495.458,6.4388 +20,4.3045,1.9758,7.072,2.884,1,9.7577,1.3337,585.595,188.217 +17,5.8807,649,7.546,4.3186,1,153.692,1.5019,222.424,6.7858 +29,2.3329,7.0684,5.634,1.3011,1,433.111,2.502,993.635,6.9123 +25,7.7168,9.3747,7.558,1.697,1,191.593,2.2526,74.782,1.1255 +28,1.0752,1.8694,8.598,3.5431,1,280.981,2.3913,246.358,231.687 +30,2.5174,6.3694,4.861,4.2768,1,473.845,2.6037,279.425,212.711 +23,6.2272,7.4646,6.199,6.909,1,325.858,1.4282,651.928,7.0202 +24,7.4295,9.2761,5.373,1.9287,1,337.858,2.3408,329.618,12.4985 +15,9.2498,6.4686,5.625,7.937,1,12.4284,2.041,361.764,11.5859 +27,7.3495,9.7029,0.89,5.318,1,334.148,1.3336,783.133,2.1049 +12,7.046,3.4467,3.556,3.2408,0,196.901,904,274.258,12.7487 +19,4.5491,3.4993,2.082,4.8377,0,455.521,2.7459,708.189,2.7198 +31,1.0116,5.4301,4.563,3.3908,1,6.4769,2.8752,935.536,10.4182 +19,2.0814,3.835,2.081,4.9241,1,14.282,2.518,132.894,2.1073 +16,5.811,143,4.984,2.172,1,3.3,1.5979,152.841,14.134 +19,7.0762,7.3177,9.035,4.4893,1,190.452,9.754,943.444,1.1762 +24,4.757,7.5172,6.174,1.0254,1,7.4186,1.0276,211.484,150.823 +22,7.5761,7.4697,8.554,5.895,1,422.572,1.3521,3.0692,169.732 +18,5.6968,3.4502,1.662,3.5126,1,462.522,3.752,869.823,137.007 +26,1.6676,5.2229,9.009,1.857,1,334.713,5.423,28.948,11.2678 +22,2.7281,3.5997,6.018,1.5884,1,5.1667,1.7321,30.537,1.459 +5,8.56,1.604,318,3.3564,1,170.815,563,234.652,2.725 +17,7.5242,5.6245,6.331,1.6674,0,482.246,1.7994,91.849,8.2184 +10,9.0529,1.2376,9.514,2.8628,0,6.8151,9.568,776.674,185.101 +25,2.058,8.004,792,1.4973,1,278.245,2.4966,600.825,155.347 +15,9.912,7.555,5.825,3.9188,1,176.465,1.8,458.726,3.1967 +25,2.8847,951,9.155,1.5619,1,499.581,2.1243,152.095,165.105 +28,1.106,9.5901,97,2.675,1,142.695,3.433,926.727,13.798 +13,9.9768,5.1526,6.309,1.159,0,2.3886,7.976,752.167,4.2014 +30,3.5297,9.8302,4.749,3.9587,1,351.091,2.99,286.095,181.272 +14,7.0122,0.58,347,3.1017,1,16.337,1.301,948.021,199.273 +24,2.5901,5.8353,6.275,9.612,1,328.791,1.0766,935.839,5.5814 +19,6.2221,3.4933,527,1.0769,0,5.2326,2.6216,662.924,152.613 +17,9.1363,8.4348,7.531,1.3125,1,261.532,992,985.154,9.0752 +21,3.8816,3.6122,45,2.8827,1,187.616,1.6043,195.376,1.4031 +15,7.0323,2.6049,3.069,2.7416,1,268.384,6.308,734.076,206.725 +30,2.6911,8.5755,504,1.3693,1,426.736,1.1045,160.654,196.979 +12,6.6232,3.7465,377,3.4703,0,486.374,5.993,694.774,7.6306 +15,4.0281,1.683,3.075,4.4452,1,376.566,1.135,920.653,12.7561 +27,2.9009,3.9029,8.308,2.176,1,383.429,1.2495,540.737,12.2969 +28,3.8186,6.5452,9.348,2.086,1,264.468,2.3676,765.436,4.259 +23,2.6096,2.5436,8.737,2.9676,1,4.87,2.8559,151.691,3.4962 +16,9.1172,4.3199,5.224,2.9322,1,33.353,1.8716,636.863,202.624 +20,4.5747,5.672,8.842,977,1,7.389,1.1665,7.256,208.166 +28,3.2075,5.8809,9.209,1.0528,1,12.2831,2.3096,4.6529,174.043 +25,5.0357,7.5629,4.092,3.092,1,353.791,1.5157,637.722,1.7464 +24,3.8848,4.1331,2.834,2.8448,1,328.496,1.1029,57.708,218.194 +13,7.6998,4.2023,983,3.2269,1,157.163,5.373,335.959,235.381 +16,9.741,8.828,4.791,7.987,1,386.022,2.3884,51.78,186.147 +20,4.9423,2.0194,9.463,1.6651,0,469.658,1.5013,687.497,8.4819 +17,8.7493,1.5468,5.609,1.649,1,27.263,2.8914,648.281,9.7386 +21,6.0928,4.8169,6.676,4.099,1,338.843,2.4057,8.2896,208.713 +26,2.4151,5.2926,1.129,9.733,1,13.589,1.26,681.338,6.7245 +24,7.2156,9.4894,1.435,2.7416,1,485.404,2.2226,662.938,3.4046 +15,5.6209,7.323,4.645,3.9147,1,136.852,1.3602,672.918,197.473 +16,6.8555,5.9987,9.513,4.1479,1,443.705,2.396,84.888,4.64 +18,9.1972,5.265,3.608,3.3328,1,463.935,1.55,580.936,217.752 +26,4.9639,5.1623,8.775,1.4976,1,359.814,2.5972,938.522,142.964 +18,9.1106,8.7316,1.203,4.1152,0,405.794,2.5663,980.209,133.289 +17,7.756,2.0554,617,3.7108,1,228.928,1.7249,754.325,18.618 +13,5.3974,4.077,6.006,3.5223,0,459.773,1.1401,365.095,3.952 +21,6.429,6.7227,8.599,3.367,1,371.323,303,151.667,171.249 +22,3.9302,3.4516,33,2.163,1,163.372,9.342,821.939,143.639 +9,9.8524,1.759,1.899,3.4768,0,1.7473,2.9694,155.166,12.5707 +15,7.1962,2.5137,2.197,4.724,0,270.392,2.1795,154.708,5.2158 +28,1.3946,3.0933,0.95,3.8686,0,420.325,2.1528,919.852,199.064 +24,3.9396,6.1684,1.537,4.1574,0,430.334,2.2833,564.274,6.0156 +17,6.6098,1.7259,37,2.7249,1,417.559,1.8603,30.04,11.7545 +26,1.507,4.1305,5.345,1.5229,1,10.7373,1.7576,963.354,3.7939 +27,1.215,4.8248,5.286,3.3887,0,213.074,1.3609,710.257,23.369 +18,5.0502,4.5924,844,3.5599,0,306.913,1.3318,539.496,4.6688 +31,3.9942,9.7394,9.489,3.3768,1,333.778,2.6125,336.185,192.772 +14,4.9447,455,5.385,4.7335,0,167.292,1.1804,67.985,6.3139 +30,3.3642,9.5097,0.93,1.8359,1,346.321,2.5209,733.586,6.145 +28,2.4825,5.8194,7.252,1.983,0,295.449,2.5132,714.989,10.121 +21,7.2023,7.9573,2.646,4.5422,1,283.388,2.3127,203.384,203.003 +21,5.6311,4.3039,9.284,8.025,1,331.512,1.129,700.272,165.014 +22,2.8014,4.5384,6.674,3.4866,0,301.684,4.439,585.632,209.192 +19,3.8763,8.7933,4.141,4.366,0,8.3437,9.441,851.575,1.1331 +30,6.3263,8.9593,6.802,1.5507,1,437.208,2.5426,628.521,229.366 +24,1.6501,2.3869,4.013,4.1521,1,12.0285,2.6198,154.814,1.8513 +21,2.3271,1.9924,1.142,1.6603,1,372.244,1.247,325.347,173.056 +22,1.6592,4.9624,719,3.9713,0,8.8228,9.742,746.379,4.9722 +25,8.3109,9.2028,8.241,3.491,1,330.483,2.5512,742.562,201.803 +16,7.7717,3.2236,7.288,3.2762,1,447.842,7.491,230.488,206.967 +20,7.7798,6.5201,2.291,3.3857,1,4.855,2.928,361.047,13.23 +22,7.4469,7.0815,9.566,2.4571,0,489.839,1.4679,2.5166,9.6689 +21,7.0245,7.7867,253,3.4355,1,1.4838,2.8119,338.388,190.409 +18,5.2929,5.6392,3.327,4.6159,1,5.684,1.2865,3.6076,209.768 +18,6.7805,4.0246,2.601,3.6693,1,42.878,9.714,874.142,177.182 +28,1.3453,9.6702,481,4.8065,1,354.352,1.0872,669.981,21.766 +21,6.5932,6.1133,4.057,2.2431,0,5.2905,2.6529,969.456,150.368 +19,8.2009,7.2857,6.231,2.6415,0,468.707,9.921,893.005,160.913 +22,5.5032,3.4498,8.826,1.3187,0,335.966,2.008,607.441,137.247 +19,4.2176,6.6995,9.897,4.928,0,5.5522,1.4095,507.899,11.7159 +25,3.4968,2.578,8.081,2.757,0,430.277,2.825,884.887,157.167 +13,6.7852,2.451,4.687,1.7931,0,240.452,4.781,305.431,134.677 +20,7.2352,7.1472,7.237,1.4885,0,139.067,1.286,231.283,175.498 +13,8.8387,5.2139,8.436,1.9326,0,412.521,3.739,415.921,224.216 +24,4.081,6.8328,4.653,4.5886,1,369.223,1.7344,6.2666,8.9531 +14,7.928,2.6944,7.851,1.8402,0,311.522,1.2087,308.952,9.868 +14,6.0522,5.9872,4.827,4.5849,0,449.257,1.828,9.2844,3.608 +18,8.9455,4.4393,3.865,2.1167,1,43.064,2.5495,6.2134,12.6488 +15,5.7503,5.9696,5.261,4.2738,0,11.3396,1.1265,555.826,3.1536 +17,5.6587,2.9088,6.759,2.6088,0,439.343,1.4809,711.084,17.184 +22,6.2009,7.1545,7.269,1.5568,0,18.702,1.2225,541.308,187.101 +20,7.7438,8.0593,3.567,2.2467,1,215.887,1.466,7.9872,173.458 +11,9.6822,2.5992,5.713,2.1219,1,486.166,49,40.102,131.195 +27,1.6621,3.1962,9.099,1.2996,0,379.937,2.4464,11.9842,12.8212 +28,1.4809,6.6115,9.763,1.4482,1,160.743,9.969,653.563,155.173 +19,9.438,6.9559,2.272,9.323,1,323.963,2.1734,828.142,133.128 +20,5.7689,7.041,1.928,1.68,1,269.662,1.947,12.5539,18.007 +21,6.5341,6.827,6.767,3.122,1,5.8302,1.5715,7.6184,214.687 +23,5.3418,3.9281,4.147,1.9328,1,443.876,2.7264,411.892,12.8671 +20,1.8429,3.9485,242,3.5616,0,410.941,1.1947,310.439,2.6482 +11,7.9128,2.5482,3.469,4.9349,1,388.855,5.918,268.083,3.1448 +16,7.725,1.5683,8.067,1.8855,1,279.577,2.972,219.282,9.022 +27,3.8053,6.9258,7.974,2.3132,1,11.0419,2.5773,323.756,11.911 +21,3.7562,9.319,4.947,8.206,1,441.948,7.164,965.721,5.4012 +21,8.5406,9.3779,4.726,1.9611,0,176.483,2.9252,859.094,10.866 +25,1.6512,8.2669,5.795,3.6342,0,1.1959,7.435,605.344,3.2576 +21,8.9299,8.5751,2.194,1.087,1,490.887,1.443,80.247,5.7799 +28,3.31,9.0667,526,9.103,1,430.579,1.374,2.4588,17.615 +17,6.3369,4.086,11,1.8819,1,31.134,186,12.0341,236.537 +14,9.4239,8.467,4.756,4.0932,1,6.204,1.5955,299.537,4.4689 +14,7.1031,1.5806,3.361,3.1183,0,11.3858,2.0179,64.746,8.1383 +19,4.7299,2.164,6.749,4.7879,1,226.025,2.2264,88.458,8.4165 +18,7.2058,7.8489,6.384,4.5227,1,314.042,1.5678,238.829,5.3598 +22,4.0958,748,3.808,7.557,1,354.077,2.4378,14.781,4.8974 +29,3.4953,9.8852,73,2.128,1,394.136,2.2563,84.944,3.1607 +16,9.9701,6.748,2.523,1.9955,1,27.783,5.819,415.044,217.804 +20,7.7571,7.5345,6.333,2.6104,0,328.092,1.2048,702.513,155.849 +11,6.8025,2.458,724,2.5779,0,405.621,4.277,552.548,6.9712 +20,4.1976,6.7387,1.076,6.705,0,359.921,4.003,184.152,6.1943 +26,1.4424,4.322,647,6.241,1,477.406,2.1364,70.357,141.534 +34,1.2795,8.3783,7.558,2.343,1,437.323,1.5914,42.657,167.333 +14,5.9876,1.6962,3.215,4.2543,0,8.4681,1.8028,294.871,6.0722 +21,7.8583,6.9736,4.897,4.7387,1,47.371,2.1966,903.671,8.3319 +16,5.8364,2.2448,9.457,5.784,0,10.2088,8.317,1.5926,6.9747 +13,8.5671,6.845,9.455,1.0656,0,495.632,1.2041,410.821,2.105 +29,1.3008,4.8149,3.075,4.493,1,350.665,1.8204,307.507,9.2767 +20,4.3008,1.6929,0.81,4.3875,1,313.766,2.899,6.3935,12.8067 +25,3.1336,7.2944,5.939,4.7935,1,162.161,2.4992,8.9619,157.288 +17,5.0255,2.3757,9.755,1.309,1,6.6554,1.0303,180.564,10.2017 +27,1.6514,3.4247,4.776,1.5179,1,6.3087,1.9763,50.995,236.009 +20,9.5872,5.6744,7.747,1.8133,1,433.288,2.9867,289.817,150.201 +24,3.1993,2.8497,7.681,2.5123,1,216.221,1.4261,83.948,21.278 +13,9.3008,3.7799,4.974,3.4123,1,279.926,6.451,247.576,219.837 +24,4.833,8.1562,7.956,2.522,1,465.918,6.493,723.019,197.136 +5,9.8697,1.7921,261,4.755,1,12.7677,1.811,218.273,6.4797 +19,5.9865,822,1.223,4.995,1,381.969,2.3012,5.2127,10.3507 +8,9.3775,3.2836,4.252,3.993,0,235.232,8.803,271.976,92 +24,1.0481,4.2438,9.436,1.6724,0,10.6377,5.182,839.193,10.8338 +19,7.7341,5.4266,5.007,1.8877,1,426.486,2.1411,9.1429,7.0501 +11,9.1275,3.7242,6.353,3.5441,1,339.975,9.274,351.051,2.6855 +27,2.2575,7.8991,6.242,4.6469,1,4.7461,1.8014,1.7937,201.261 +21,1.8651,3.932,1.326,3.581,1,270.879,1.2535,633.942,161.627 +23,4.8212,4.3177,3.903,3.8793,1,425.882,1.2025,943.332,239.785 +11,9.4031,3.8226,7.069,3.7539,1,3.3467,1.4683,390.523,11.9613 +22,5.8815,6.4758,972,1.6049,1,208.137,9.414,581.149,7.9369 +24,5.7471,9.6628,168,3.7847,0,402.607,2.6117,457.762,6.3315 +24,2.2701,5.1038,4.104,3.9226,1,429.179,2.191,973.597,10.4487 +29,1.1971,9.8688,951,2.667,1,387.681,905,738.639,7.4369 +13,8.2913,3.0225,2.424,2.6838,1,152.855,1.2192,5.3781,237.782 +17,1.7882,3.087,3.768,3.7986,0,253.465,5.185,11.7637,4.3871 +15,6.7046,1.6566,5.406,4.0852,0,370.639,2.2312,475.776,4.591 +13,9.2315,3.9512,2.306,1.686,1,7.6294,1.0603,635.428,3.12 +20,2.8779,3.1633,2.276,4.1978,0,297.499,7.843,297.492,213.968 +15,6.9875,9.705,7.778,4.071,1,360.187,1.0781,677.898,166.541 +29,1.7083,4.3266,9.626,1.1706,1,424.996,6.585,58.076,188.153 +12,6.4338,3.3812,3.236,3.5848,0,5.5836,899,440.742,7.6913 +23,2.4754,1.2262,688,9.327,1,164.837,1.704,586.474,149.449 +19,7.6236,2.9612,2.581,4.652,1,270.827,2.5921,917.299,169.896 +27,3.7111,8.8644,928,2.8727,1,350.528,1.1126,250.772,7.834 +18,5.1705,3.0205,6.729,4.5433,1,365.018,962,79.33,173.887 +24,6.3949,7.1396,8.027,1.773,1,12.663,2.3454,2.1838,151.118 +21,2.5415,6.1205,494,4.1325,1,6.938,673,9.395,7.1096 +15,7.6747,4.2718,5.985,2.5324,1,346.908,9.062,950.189,1.2685 +19,3.7238,2.3903,5.276,4.3045,1,454.563,1.3565,700.751,5.7088 +17,6.9613,3.6901,293,4.2174,0,398.759,1.802,636.984,148.689 +22,2.4245,5.9211,2.624,4.3764,1,311.233,4.682,340.715,143.767 +16,7.1931,3.5075,0.58,3.8444,1,488.785,1.2986,192.494,12.1836 +22,2.1537,2.149,7.065,4.215,1,216.558,1.6989,386.117,6.0354 +19,4.8282,1.1646,332,8.801,1,262.525,1.5308,602.406,10.6689 +26,3.2249,8.7977,5.674,1.5193,1,6.143,1.7237,638.038,3.4571 +19,7.7354,4.4031,1.705,1.2124,0,472.976,1.9872,177.855,158.972 +23,3.3583,6.2521,1.404,3.7121,1,291.673,1.1381,451.047,208.598 +12,8.9355,4.9041,6.231,7.682,0,19.54,1.909,571.091,11.1285 +13,9.0264,8.7257,3.109,9.111,1,2.2282,1.667,960.361,5.1119 +24,2.768,5.4693,4.409,4.3948,1,18.121,2.5761,553.929,198.693 +18,6.5246,4.8078,0.36,3.5294,1,1.799,2.0323,584.793,7.5139 +29,1.7895,9.246,6.483,4.3769,1,162.168,2.2926,767.537,142.552 +28,4.5238,7.1969,4.701,6.968,1,475.727,2.7864,424.723,1.8101 +19,7.4199,1.1155,9.635,1.9949,1,7.7134,2.2516,390.029,172.305 +18,6.9348,1.777,3.524,1.4158,1,272.706,2.0769,59.5,11.0561 +24,6.6223,7.8712,7.403,484,1,9.3309,1.9673,785.475,10.1604 +28,3.5429,8.3585,2.573,1.4226,1,39.169,7.757,641.206,224.361 +28,4.4022,5.4519,5.088,1.8979,1,281.199,2.8719,19.427,11.7957 +25,1.9265,5.5446,5.526,4.611,1,10.1118,1.6261,403.723,402 +17,7.4712,6.3193,3.291,2.8324,0,433.121,6.662,517.471,230.357 +19,5.535,4.3912,4.718,1.9159,0,392.012,6.295,528.507,2.931 +24,7.3789,6.802,2.793,2.323,1,475.651,2.4458,346.199,12.8609 +18,3.2405,1.0848,6,3.5199,1,314,7.506,52.719,152.063 +23,3.9199,9.6128,2.156,3.6464,1,228.558,1.243,676.246,214.676 +24,4.1979,7.5015,7.001,4.1724,1,499.921,1.2852,473.293,163.011 +34,1.2317,6.3117,771,2.4277,1,405.594,2.4521,456.834,194.672 +19,4.0694,3.1632,2.802,4.8433,0,415.643,1.2433,803.567,184.781 +15,8.2297,1.6096,408,4.5703,1,310.566,2.4106,75.927,5.1248 +18,9.0757,4.0934,374,2.7568,1,35.645,2.4816,428.181,168.112 +25,5.664,6.6158,2.371,2.2248,0,402.663,2.5731,996.053,15.302 +24,5.0995,6.3371,7.792,152,1,4.614,1.7667,7.5806,5.8553 +27,1.2774,3.8264,606,3.555,1,34.629,2.0984,332.736,3.0799 +16,8.9128,6.1329,2.058,2.8248,1,407.704,7.856,4.6462,180.393 +25,1.1171,8.1375,2.574,4.6877,1,2.0433,2.991,841.075,23.307 +13,9.5028,2.628,8.168,2.9712,1,148.527,1.5983,758.074,177.227 +15,5.4029,4.5062,2.091,4.9643,1,162.006,317,68.684,179.868 +24,4.0774,7.5856,3.342,4.2691,1,427.291,1.3972,222.328,4.2009 +13,9.318,5.4614,6.644,4.768,1,390.176,3.063,710.642,5.9293 +24,1.2195,6.5148,5.611,1.6383,0,328.211,3.253,361.759,140.583 +24,6.2328,5.1668,4.609,7.467,1,402.362,2.6124,869.884,7.543 +25,5.9404,9.9187,8.997,3.9844,1,226.715,1.9216,207.507,160.302 +22,2.9739,5.462,2.197,3.931,1,43.744,1.9357,225.662,3.4755 +24,4.86,4.9104,7.414,1.0572,1,11.7108,1.2134,96.098,9.9215 +14,6.8704,9.142,1.591,3.8237,1,352.288,1.2398,52.185,7.6845 +11,7.5442,1.5979,6.157,2.9099,0,12.0876,9.093,451.922,2.5549 +26,1.1965,3.8304,8.706,5.476,1,1.9931,1.3031,358.231,138.905 +12,9.4317,1.5554,4.579,2.5089,1,142.076,1.7614,83.29,8.6699 +27,2.4807,9.6369,7.243,4.6557,1,246.453,5.598,35.918,1.0556 +28,3.1022,9.4679,8.204,2.5323,1,421.718,7.851,362.595,10.6661 +22,3.3713,3.3611,136,3.9435,1,254.428,1.4843,132.101,141.662 +26,1.3404,6.3975,7.058,1.445,0,8.9575,1.1543,525.519,3.1299 +29,2.1075,5.3375,9.198,3.6404,0,496.383,2.4585,924.512,140.399 +17,9.8771,8.1559,5.764,4.7342,1,135.037,2.4651,957.964,7.2486 +20,3.837,6.2745,1.861,2.4976,0,492.647,1.008,99.556,6.2316 +24,2.0377,25,1.269,1.6885,1,468.167,1.3524,47.834,190.916 +28,1.9629,7.6317,2.597,3.2333,1,271.221,2.9298,777.199,11.2258 +18,7.4751,7.4685,1.035,4.5813,1,4.5982,2.4824,557.009,9.0702 +16,8.6911,5.0972,5.134,8.838,1,347.707,647,552.478,195.125 +27,3.3126,9.0292,697,2.0185,1,422.859,8.407,808.179,218.483 +29,1.1882,9.0845,2.234,7.815,0,222.651,2.504,837.004,7.562 +25,3.1978,5.2391,4.399,2.4833,1,11.952,2.0335,2.9595,1.2096 +27,1.5086,6.0799,4.739,2.7021,1,401.412,9.507,943.362,12.9772 +32,1.9306,9.9652,5.654,4.721,1,272.539,1.6098,824.754,171.637 +22,4.8836,2.9882,7.056,2.0626,0,9.8815,2.3044,723.898,14.107 +26,3.0693,3.2462,472,2.8348,1,474.769,2.5081,853.512,165.133 +15,5.6435,1.8277,806,4.4263,1,474.049,9.761,541.891,155.214 +25,3.2814,8.9587,609,1.607,0,183.525,7.117,775.531,229.439 +18,9.4648,7.4449,4.232,3.3708,1,3.2002,2.5456,602.663,20.782 +9,9.1535,1.0564,418,3.7858,1,315.394,1.1438,547.501,3.1642 +26,6.1013,9.8177,7.461,1.6526,1,158.613,2.466,219.492,10.8625 +22,4.1898,7.3096,223,8.217,1,3.3178,4.493,848.941,10.9144 +31,4.4303,8.5052,9.392,2.5145,1,445.903,2.7357,885.032,10.952 +21,4.7067,4.815,4.864,1.784,1,499.058,1.4494,971.481,223.369 +14,7.5482,5.0496,4.463,1.3323,1,175.203,5.104,12.9234,7.8526 +24,5.0648,6.986,7.805,4.8671,1,372.373,1.6052,298.658,147.426 +18,8.7106,5.4295,7.132,2.5108,0,3.2885,2.61,688.552,215.115 +13,9.4969,6.6665,6.073,4.2824,0,184.853,1.168,856.677,1.2129 +25,4.0235,8.1787,9.351,9.766,0,5.4376,5.342,753.791,210.853 +14,6.0463,3.7434,4.223,4.6972,0,2.7675,1.7297,461.036,18.359 +31,1.8555,8.4867,8.085,3.9722,1,294.396,2.5034,728.718,4.9889 +16,2.8042,1.6292,3.801,4.0435,0,401.015,3.641,8.1404,7.8123 +18,4.7212,2.7089,8.383,1.9488,1,226.485,1.242,665.913,7.4541 +16,2.8558,4.335,2.595,2.4282,1,26.209,1.689,1.7933,5.3114 +12,8.889,3.6443,2.893,2.9668,1,135.365,6.915,5.7073,153.245 +23,2.4246,3.7991,6.779,3.9488,1,368.194,219,759.723,235.879 +21,5.1009,8.0527,2.127,4.2453,1,180.537,1.286,482.851,3.9987 +20,6.4513,6.5313,2.292,3.902,1,3.375,2.0932,6.8955,5.5725 +13,7.2268,4.3672,3.053,4.5203,1,8.2754,2.1314,487.043,6.969 +22,4.4476,6.5211,6.789,4.6875,1,6.4234,1.9101,7.2127,225.017 +12,8.8219,5.278,8.894,2.9644,1,217.939,8.886,352.572,150.197 +19,6.1149,1.8027,6.746,9.338,1,3.2606,2.2078,165.799,5.104 +24,4.9556,6.2695,8.278,4.0921,1,403.242,1.7295,227.179,192.957 +33,1.6052,6.4137,5.436,2.7429,1,454.003,2.5835,20.365,221.489 +19,5.1822,7.7413,689,4.086,0,12.4197,1.434,37.805,9.6826 +11,8.3866,04.03,1.005,4.074,1,242.755,5.404,11.6829,4.1476 +23,6.5309,7.2255,5.544,4.336,1,259.532,1.904,532.459,7.438 +17,8.4895,6.8398,3.278,3.0351,1,492.501,4.524,41.303,5.2108 +27,5.4461,9.6339,2.206,2.4157,1,3.281,2.8894,841.466,4.8342 +22,2.0662,2.1513,4.663,4.7306,1,333.941,2.1099,827.666,4.0989 +32,1.1228,5.5168,6.665,1.4832,1,172.882,2.269,826.035,210.251 +23,3.729,6.0176,385,01.03,0,250.903,2.0378,474.943,2.0613 +20,7.2819,9.9865,8.025,4.4854,1,10.8517,2.927,297.881,9.9204 +13,8.1123,2.0118,7.385,7.436,0,8.0121,1.3959,421.247,3.536 +22,3.6618,5.2322,7.349,3.4326,0,12.1783,1.9542,690.498,7.0415 +18,5.4609,3.4619,9.852,1.5001,1,3.5631,6.881,534.488,169.664 +20,4.7901,5.2589,2.952,2.8392,0,139.045,2.0385,628.061,4.8681 +24,4.6947,2.3213,6.447,3.0811,1,345.175,2.4597,696.781,239.695 +19,3.0821,4.761,8.555,2.0868,1,325.741,8.248,91.918,1.1592 +23,2.2273,5.7257,5.795,4.8748,1,277.248,5.988,944.536,3.2756 +27,2.7702,3.3585,7.895,6.592,1,194,2.6495,842.065,188.851 +20,1.498,1.8194,4.145,1.957,0,6.2891,156,7.4411,23.424 +24,2.7832,3.2394,5.905,2.152,1,421.435,7.672,979.542,228.963 +23,1.0828,4.928,557,3.1552,1,135.869,1.2202,706.594,191.577 +27,6.6453,9.5044,9.858,2.0363,1,456.099,2.0168,696.458,233.517 +29,3.8474,5.8115,0.8,4.852,0,437.273,2.9912,3.2875,201.791 +14,9.7583,8.1477,8.688,4.7371,1,7.7464,1.1125,484.606,1.3926 +28,2.7435,4.2312,6.943,2.0804,0,449.076,2.8464,630.235,202.952 +25,4.1125,9.0331,1.861,1.7134,1,313.917,1.1003,285.724,11.6107 +24,4.2206,4.8332,31,2.2336,1,315.143,2.0866,9.2408,10.9621 +28,1.0761,5.7395,8.647,1.083,1,42.634,4.961,53.712,607 +18,8.5529,4.9179,3.963,5.011,1,202.528,1.3812,451.832,148.862 +31,1.288,7.3328,2.639,7.429,0,367.632,2.6138,5.364,161.186 +17,9.4616,5.6666,5.617,8.333,1,333.882,0.96,524.224,189.772 +11,9.0287,2.716,4.209,9.884,1,385.757,3.156,11.664,7.8229 +16,5.8197,1.4554,6.517,2.0998,0,330.094,1.5681,430.305,3.0752 +18,5.8924,6.0612,4.838,3.1195,1,4.2027,1.3186,277.709,10.5564 +18,6.884,4.8918,6.972,3.1444,1,146.356,6.886,970.766,8.6949 +24,4.4835,9.598,8.534,5,1,46.996,2.7168,4.4386,180.752 +14,6.825,3.9562,1.956,4.6048,1,11.1713,1.8051,564.423,5.5065 +23,1.4029,5.1478,3.294,4.1142,1,23.613,1.0415,160.401,3.3161 +29,1.4864,8.2689,4.368,4.8197,1,178.464,2.9884,326.101,10.5645 +14,5.1151,761,9.621,1.7999,0,4.3149,4.127,192.062,150.718 +18,5.9466,3.485,3.653,3.324,0,9.0594,2.5439,995.195,6.7439 +15,8.9904,8.2266,3.811,8.401,1,143.334,6.919,4.2038,2.7464 +23,1.9419,6.4842,6.535,4.0852,0,231.659,7.185,545.943,10.5388 +17,8.4038,2.8996,4.192,8.068,1,437.262,1.4945,611.962,230.851 +31,2.8904,8.4534,9.512,1.6299,1,257.808,1.9858,774.446,232.155 +24,4.5468,4.9329,8.945,2.4542,1,325.952,2.0714,629.724,170.085 +21,3.8494,4.9835,5.134,2.9727,1,212.978,664,239.033,186.517 +24,4.6014,9.7659,6.448,2.7982,1,435.031,8.606,602.058,4.8842 +30,2.3545,9.4712,58,5.105,0,331.311,1.9818,975.217,8.9917 +22,5.5321,3.5853,6.957,2.1084,1,4.5315,2.6692,849.967,145.141 +15,8.2148,1.4058,7.072,4.6145,1,238.751,2.1997,458.962,18.01 +16,4.9738,3.2567,3.592,4.3618,0,413.617,7.976,482.634,3.999 +16,5.4155,3.048,2.197,2.9539,1,366.828,1.5233,141.579,10.9831 +15,8.6389,2.077,9.151,2.8616,0,452.656,1.9427,574.226,3.9061 +15,7.3545,3.9552,4.267,5.584,1,11.3834,406,287.441,152.006 +27,5.4141,9.4102,6.537,1.2013,1,488.586,1.6347,11.7033,185.319 +27,3.3193,8.7136,333,1.2632,1,142.539,1.415,479.467,199.994 +13,8.9643,5.1144,4.141,2.441,0,2.509,1.1999,5.4621,175.768 +17,6.1932,5.6523,8.173,3.6568,0,247.836,1.8706,12.893,3.8195 +21,2.9903,593,3.876,2.3036,1,5.5169,1.9086,226.854,198.819 +25,3.4221,2.155,6.032,6.303,1,340.655,2.9144,990.728,8.0259 +14,8.2282,2.477,2.099,2.1967,1,450.278,1.2849,810.397,200.584 +32,1.3973,7.5454,4.165,8.132,1,460.672,1.5938,546.341,6.0216 +9,9.9288,1.4565,9.276,3.7557,1,303.519,4.725,24.024,11.4169 +32,2.1732,8.6905,5.665,8.325,1,267.632,1.6451,523.731,138.377 +15,8.1646,6.4332,9.019,2.4127,1,496.996,1.083,652.507,8.333 +17,4.553,2.2942,902,3.4671,0,289.713,4.496,1.4518,216.887 +17,5.4299,1.5772,9.441,1.141,0,463.729,5.137,988.015,12.277 +21,8.9259,6.2762,8.954,3.802,0,458.298,1.8979,630.513,4.609 +23,4.7162,9.1984,33,2.8165,1,144.757,1.7019,988.364,3.8595 +23,5.8374,7.1836,934,271,0,6.876,2.3941,474.375,164.772 +22,1.4437,3.4855,1.375,2.9388,0,219.584,1.3932,627.272,1.9616 +27,1.0211,5.8738,399,3.7675,1,430.685,1.4246,466.846,10.5557 +21,3.2032,3.1076,554,1.6466,1,418.067,4.847,1.9389,12.9666 +22,7.1252,9.9915,3.489,2.4417,1,301.835,2.2281,851.393,5.5951 +23,2.0914,7.4884,6.208,4.6438,1,7.8329,11,454.512,3.1008 +27,2.0239,6.1438,4.023,2.3555,1,5.3794,1.2747,476.227,11.777 +18,4.6986,4.2326,256,4.9828,1,477.341,565,366.364,8.1679 +22,6.8305,6.1815,4.765,785,1,210.699,2.313,43.833,3.3658 +17,7.4086,3.4162,4.421,3.5447,1,324.081,2.0202,728.295,5.049 +22,2.6061,2.886,7.568,3.2631,0,452.932,2.1203,703.618,11.3026 +22,1.7163,3.9509,2.796,4.3615,1,434.947,4.457,810.295,3.1932 +24,9.4636,9.3048,2.175,4.622,1,283.452,2.1964,97.492,224.669 +28,3.346,6.263,2.559,1.401,1,243.953,2.0727,397.254,186.109 +9,8.6801,8.396,3.037,6.609,1,36.763,79,34.557,7.8134 +14,8.7714,8.8499,5.992,4.6655,0,174.823,9.528,49.859,6.2005 +15,7.9527,2.6887,4.715,2.1332,1,312.695,2.619,162.846,209.831 +20,2.5195,2.4377,3.369,4.5503,0,1.1576,2.0442,760.449,10.2463 +16,8.3962,2.9709,3.743,1.472,1,412.156,6.363,585.327,207.052 +18,7.9233,5.772,3.709,6.318,1,499.016,794,219.227,17.819 +20,6.3705,5.4469,9.724,1.4827,1,477.353,235,865.395,2.2108 +24,4.0348,4.9141,233,2.9859,1,179.947,1.4514,622.872,195.265 +19,3.3626,7.1754,8.181,4.2262,0,265.551,991,4.3699,12.9571 +29,2.097,3.1654,7.082,1.927,1,11.8108,2.5368,204.552,162.624 +17,5.5878,7.8206,56,4.574,1,151.494,791,892.183,5.2561 +15,6.2673,1.7532,9.932,1.2212,1,228.673,1.849,387.235,65 +26,4.2341,7.8262,7.564,3.4677,1,37.354,1.9212,984.508,8.1985 +21,5.2782,6.6381,6.824,3.6786,0,8.941,2.7508,534.455,4.5751 +26,4.2716,6.8321,4.053,1.3698,1,196.887,2.6764,215.836,10.4452 +16,6.7691,4.8155,5.552,1.348,1,278.248,2.509,597.956,2.1815 +15,9.1113,6.67,2.533,1.8262,1,10.7592,8.653,11.1327,214.811 +19,2.4753,798,355,226,0,3.9239,1.5631,80.944,2.8494 +23,4.4327,8.5155,836,4.5038,1,269.787,799,631.562,183.404 +20,2.2678,5.555,8.965,4.7676,1,318.905,1.5859,964.307,225.438 +13,6.6245,1.4874,1.625,3.6769,0,320.501,1.3433,693.207,3.5575 +15,7.5598,5.7679,7.871,3.6334,0,178.292,1.7652,5.8659,8.3154 +19,9.3872,7.3941,7.412,1.2045,0,11.8681,2.7609,481.664,175.455 +22,3.5098,7.625,1.784,3.696,1,11.0193,8.239,535.997,171.471 +18,9.5519,9.2076,4.218,4.0105,1,2.0262,1.9173,917.608,8.975 +26,1.5694,9.7361,4.228,2.7958,0,9.2342,1.2895,438.142,1.6967 +20,6.4271,6.0595,0.76,3.4081,1,409.303,1.3054,597.578,2.8834 +24,1.5142,4.8124,8.377,3.8982,0,1.526,1.9418,194.097,136.325 +17,9.044,7.4139,948,2.0472,1,2.1944,2.854,25.218,1.321 +23,5.7683,3.2836,563,7.227,1,6.3509,2.5891,553.101,141.218 +17,7.0241,4.9326,7.617,3.9752,1,21.012,1.9186,700.015,8.2191 +22,8.4842,9.1615,7.862,2.2688,1,166.869,1.3846,441.106,160.659 +26,2.3528,9.5566,148,4.1346,0,8.8918,1.272,438.342,18.769 +31,1.3473,9.2707,5.255,2.1885,0,5.5475,2.3614,263.434,189.936 +15,8.9099,2.6245,8.576,1.0851,1,469.431,6.547,701.149,9.032 +22,3.8344,2.3247,3.185,855,0,455.625,1.763,1.5418,227.327 +25,2.1608,2.9766,4.251,3.7196,1,385.949,1.5149,517.641,140.795 +22,5.2162,4.4131,8.044,2.8744,1,12.6011,1.9481,1.3529,214.968 +14,6.3848,3.1417,893,2.023,1,161.849,5.623,597.533,147.635 +27,1.2787,3.7421,8.595,2.4606,0,332.922,2.0873,4.0597,11.6188 +24,3.4741,6.2064,3.112,2.7482,1,145.849,1.881,940.666,175.135 +26,1.2952,7.6253,15,1.1971,1,265.311,5.404,483.174,5.2661 +24,4.783,7.3556,2.342,1.8908,1,325.642,1.3489,687.183,2.4774 +18,9.0559,8.1442,895,1.4621,1,259.598,2.0359,855.062,2.172 +13,9.8439,3.218,924,1.9421,1,206.642,2.7048,243.068,203.793 +15,6.7334,4.773,6.928,2.5028,1,173.947,3.663,544.653,218.987 +25,2.4547,7.8938,214,8.668,1,388.875,262,864.815,195.459 +18,9.1526,5.3308,9.347,1.9676,1,369.499,4.955,542.396,217.064 +26,5.6462,5.7814,5.164,1.9275,1,348.114,2.9678,398.845,236.346 +22,2.3837,5.259,4.601,1.43,0,187.339,2.3051,375.181,12.6254 +10,9.2955,2.5531,4.343,4.9925,0,387.868,1.8431,390.267,3.6931 +19,7.8172,6.3835,6.926,3.681,0,478.852,399,619.277,145.902 +19,7.5853,8.5918,4.523,3.2148,0,34.449,1.2481,5.5205,8.4934 +22,7.3826,9.1698,1.286,8.722,1,20.395,2.1457,421.229,8.3148 +28,2.8031,5.1942,8.802,4.1976,1,398.241,2.6877,564.983,174.674 +23,2.8991,5.4547,4.284,4.571,1,304.651,1.1455,788.517,2.1756 +21,7.1946,8.3305,74,2.1974,1,438.839,2.9991,534.694,9.008 +23,2.9775,5.3762,5.294,4.1174,1,356.591,4.192,926.911,166.866 +23,4.948,5.1686,6.473,1.2495,1,38.496,1.1608,449.335,6.2575 +23,8.038,9.0508,2.756,7.003,1,333.718,2.6262,654.286,9.252 +19,8.0556,7.8993,8.003,1.5794,1,4.601,1.9497,2.7405,7.3832 +27,5.0794,9.0907,6.698,1.7084,1,242.559,2.4328,246.064,147.562 +16,8.1297,2.1825,6.503,1.9868,1,2.8245,2.7234,817.303,3.7084 +17,8.5476,5.2438,4.208,1.8648,1,223.775,1.5219,590.353,172.941 +23,6.893,8.4247,9.619,2.0557,1,358.213,7.042,946.711,221.982 +24,3.0558,1.1115,2.742,3.5502,1,210.628,2.0811,755.348,200.666 +26,3.4661,7.9466,5.777,1.2279,1,815,1.6904,455.167,217.689 +26,3.8336,1.8297,3.091,929,1,184.643,2.3179,780.924,224.897 +26,2.0512,8.0812,7.448,2.4484,0,3.3879,1.5351,473.109,8.936 +26,3.4584,6.12,478,2.2415,0,390.298,2.4333,336.867,190.978 +25,2.8857,1.9324,459,3.003,0,391.876,2.7061,5.6625,11.8758 +25,5.098,4.7335,8.109,669,0,403.189,2.2487,866.967,6.4746 +18,9.1759,6.8191,4.343,2.5496,1,1.5164,2.231,424.752,179.252 +25,1.9403,6.3385,3.412,1.1738,0,1.6135,1.7616,688.319,5.8591 +16,7.4824,4.2725,6.075,4.388,1,451.725,1.4149,161.529,2.6309 +26,7.1855,8.9937,7.019,8.665,0,6.1842,2.9178,830.673,169.109 +29,1.8618,5.1926,2.012,1.006,1,335.045,1.9353,825.958,6.9013 +14,9.3032,5.0587,1.854,2.2378,0,397.727,2.5211,487.326,7.3421 +16,6.1162,6.225,9.582,4.9308,1,223.932,1.5162,675.423,211.469 +25,4.2735,9.2212,5.897,3.1694,1,273.236,1.6646,526.239,3.2529 +17,7.8088,1.7712,3.901,1.7701,1,11.369,1.9887,556.743,183.563 +28,3.3163,5.2834,8.014,843,1,46.18,2.1857,889.914,9.2691 +19,7.2416,8.0357,5.252,2.4247,0,150.901,1.3451,967.247,214.322 +24,1.3574,2.1545,2.417,1.0323,1,10.8906,1.0689,373.824,10.5683 +13,8.5547,5.2737,2.067,3.2388,1,262.702,7.183,338.416,9.8165 +18,5.0335,2.4068,3.969,2.915,1,9.5257,1.2709,310.769,10.3168 +21,6.7302,7.5969,8.599,1.3261,0,343.346,6.337,773.051,201.046 +23,2.9911,5.6434,614,3.444,0,257.558,1.2503,725.668,2.522 +20,7.0937,8.5598,2.185,3.7751,1,7.3902,2.624,5.3362,169.167 +22,7.9502,8.9456,8.932,2.9273,1,3.3623,2.9312,9.7556,4.9258 +19,5.2589,6.4873,1.217,4.2106,0,6.8477,1.7313,649.743,21.171 +19,6.5595,7.2539,6.296,1.299,1,6.8312,438,282.209,9.0222 +16,5.1069,5.4922,2.135,3.2643,0,156.425,1.2827,10.0665,8.1349 +17,9.0468,3.8443,6.059,5.934,0,416.635,1.8062,419.527,17.103 +22,5.4808,6.4812,3.831,1.459,1,2.8647,1.1123,878.708,173.388 +16,8.5763,9.0829,1.017,3.2827,1,6.4044,6.155,372.649,152.091 +12,8.2122,4.1668,5.825,4.1279,1,15.145,6.805,698.674,7.9154 +23,4.6945,3.1441,683,1.6046,1,276.667,1.4218,901.569,146.485 +21,3.0708,3.8844,6.803,3.9943,1,381.441,6.493,17.762,1.3024 +22,4.6547,4.354,637,3.3888,1,460.596,7.486,613.605,229.243 +14,8.436,7.356,5.002,1.7434,0,206.044,2.6193,908.583,10.8651 +23,3.0487,4.9844,5.195,4.382,1,5.2917,2.3372,201.479,7.3075 +18,5.7199,4.9431,6.356,2.5461,1,10.6758,1.659,988.825,206.587 +15,8.2549,5.8844,6.903,3.2412,0,143.624,9.605,371.433,7.7801 +24,4.1813,3.6282,6.549,2.4782,1,393.049,1.5958,225.351,239.322 +22,6.7799,6.1311,5.869,2.2636,1,343.322,1.818,839.441,165.744 +25,3.2107,8.7822,1.558,4.2399,1,10.4503,2.0495,47.323,155.899 +30,1.9835,9.5547,2.106,1.4735,1,419.373,1.1533,673.971,3.6446 +18,8.1495,5.8361,2.602,1.831,0,429.578,1.1915,494.711,146.367 +20,1.8907,4.259,9.197,4.3989,0,441.219,796,647.093,3.723 +24,3.4424,9.6924,7.594,4.1251,1,137.502,1.2018,4.5015,188.065 +16,8.696,7.0586,5.529,1.8328,0,6.6865,2.5851,356.678,3.3217 +22,4.1182,3.3596,2.521,9.273,0,5.1979,2.3658,660.739,8.612 +10,9.7574,1.4716,1.109,3.3777,0,200.044,2.8073,357.273,11.4416 +17,9.8176,1.4342,8.988,3.938,1,214.662,2.097,777.997,193.246 +23,3.4145,1.6774,8.927,2.1188,0,434.105,1.7336,961.276,151.862 +21,1.3688,4.557,1.107,4.293,0,133.878,7.778,4.7037,179.512 +21,7.3456,9.0215,7.972,2.9895,0,313.446,2.2006,856.765,5.8554 +26,5.0589,5.4077,4.466,136,1,394.106,2.7185,177.373,5.6943 +26,1.9068,6.9996,324,3.1462,1,134.576,2.075,918.164,9.1349 +19,7.3677,8.2811,7.391,3.366,0,13.357,1.3292,947.325,4.483 +29,1.2806,7.9154,6.143,2.4357,1,334.578,4.481,573.488,199.369 +23,8.8318,8.8261,0.78,875,1,363.068,2.4318,484.222,8.8792 +32,2.2479,9.6725,743,507,1,479.881,1.8423,760.915,1.6213 +28,2.1458,4.3907,3.186,1.5665,0,42.497,2.6389,918.841,209.332 +26,2.5811,9.5034,3.193,2.326,1,411.026,1.893,240.122,232.278 +19,9.6424,7.2329,3.298,3.211,1,346.157,2.7172,388.617,15.518 +12,7.2385,7.067,5.025,63,0,5.9243,2.016,423.361,8.5581 +14,8.2123,6.8178,283,3.5553,0,404.621,8.628,847.363,9.9302 +19,4.5787,6.8672,4.444,3.5636,0,467.661,4.685,145.548,6.1477 +24,4.0268,9.0586,3.678,2.2227,1,195.359,4.362,626.814,170.706 +21,3.1104,3.7293,7.353,1.717,1,156.831,515,357.432,8.5457 +18,5.3258,5.8491,6.035,4.2115,0,261.241,1.4407,886.659,7.796 +15,5.9665,1.219,6.536,3.9229,0,478.228,2.3531,346.393,1.1079 +17,6.686,3.3208,2.106,4.9164,1,2.5416,2.6948,978.167,14.754 +21,3.3141,6.224,3.255,1.8597,1,35.444,1.7006,2.5476,6.9692 +8,9.5379,5.2187,212,4.5342,1,407.334,4.733,247.158,4.0462 +26,2.5278,8.1745,1.084,437,1,394.375,2.376,462.748,132.568 +13,9.6909,2.0644,2.651,2.0573,1,283.387,1.4824,263.761,6.6825 +27,1.1337,5.2744,655,2.3269,0,460.281,2.2961,74.002,1.76 +16,5.3301,2.0401,6.026,2.2044,1,6.7262,1.8605,816.406,4.646 +22,4.2003,1.2069,9.981,3.1255,1,12.2575,1.7483,700.533,186.698 +20,5.0421,5.11,1.008,851,1,153.478,1.445,970.694,204.483 +15,6.136,7.915,8.212,4.3323,1,4.339,1.2346,461.478,209.315 +22,4.9203,5.8735,1.188,2.7588,1,185.335,1.6512,979.972,12.836 +18,4.7336,3.134,6.699,4.521,0,8.033,1.7949,133.365,228.228 +12,7.5945,1.0671,6.432,132,0,362.313,144,847.485,3.6401 +17,7.1729,5.5,9.027,3.1499,1,207.476,5.987,4.8057,162.805 +20,8.4994,5.9141,1.139,2.0623,1,35.223,2.8494,536.597,169.023 +19,3.2496,2.899,3.154,2.5255,1,146.827,1.5259,489.627,1.2764 +19,6.4858,5.7338,908,3.719,1,6.5959,2.1109,857.737,6.7787 +21,6.2668,8.385,4.074,1.1358,0,6.5995,9.246,703.725,227.772 +29,4.3276,7.2232,9.116,1.0245,1,10.1632,1.7561,446.646,182.167 +16,5.3745,1.3119,7.815,3.515,1,5.7608,1.0694,896.715,1.3127 +24,3.824,5.9247,7.229,2.6068,1,11.0274,8.909,887.011,12.9791 +27,2.2766,6.7225,533,1.1682,1,289.517,1.2342,3.4485,155.669 +20,2.9242,3.723,8.835,2.4201,0,12.8168,1.3795,872.308,23.354 +29,1.9496,8.5535,4.494,2.2978,0,171.473,9.934,53.132,171.944 +17,7.1476,9.0627,1.497,3.4572,1,2.6367,774,840.571,153.277 +27,6.9465,8.5045,8.376,133,1,446.105,1.8715,18.951,218.047 +16,9.5555,8.2463,2.796,2.9338,1,6.908,1.1422,159.585,158.625 +19,7.5671,7.4497,536,3.0284,1,174.333,6.055,724.981,223.709 +26,1.4684,6.3343,126,3.7276,1,18.974,2.2751,282.604,11.8266 +18,8.9582,6.7863,6.091,4.4462,1,386.063,2.1712,563.252,172.456 +22,8.7641,8.064,6.071,2.2009,1,241.771,2.6604,691.927,151.621 +23,4.9899,6.625,2.602,1.7126,0,191.478,1.6651,614.303,132.606 +19,6.2728,3.2773,7.272,5.116,1,347.937,8.383,701.976,7.7783 +17,9.7847,3.7596,7.736,1.6842,1,298.507,2.5911,624.154,216.907 +23,5.7907,8.9706,9.205,3.424,1,3.9067,8.409,385.337,6.4811 +9,9.1479,1.712,5.849,4.0141,1,15.635,1.9668,9.9589,3.8253 +25,1.7473,6.9882,7.794,4.035,0,489.304,5.712,856.792,170.892 +29,2.7195,9.5478,7.531,2.0862,0,241.668,1.8875,847.548,131.173 +26,4.9668,7.0623,2.578,1.2982,1,212.097,2.5226,1.5622,6.3087 +24,6.2628,9.9391,3.102,5.901,0,7.496,1.6198,842.457,208.874 +15,8.3461,6.8754,4.785,4.2562,1,419.535,1.4127,159.479,6.869 +9,9.8944,3.436,19,4.3875,1,6.6654,2.9804,339.534,1.5308 +22,4.4997,8.2701,2.974,1.3314,1,5.2542,674,419.215,3.688 +22,1.4267,2.8463,4.739,3.1088,0,21.95,9.952,682.835,221.485 +18,8.2105,4.4606,1.081,1.2933,1,218.323,2.7558,10.1491,9.6523 +21,6.4394,3.1209,1.263,1.1256,1,490.734,1.9279,828.379,5.1237 +24,2.7869,2.6855,4.632,106,1,6.3767,1.6263,94.332,136.104 +21,5.4535,4.3141,731,2.8858,0,241.914,1.9131,953.169,11.7093 +17,7.6808,3.7875,8.337,7.497,1,10.0623,9.658,10.092,239.962 +17,7.9337,6.3334,5.463,619,0,350.882,2.135,920.186,213.241 +23,5.4966,8.1315,4.747,5.243,1,195.843,8.254,572.151,6.5065 +24,3.7469,2.9709,3.843,1.5688,1,324.234,1.1995,729.659,16.745 +10,9.7637,2.1372,1.929,3.3458,1,169.206,1.4396,931.291,9.2922 +20,6.9703,6.669,1.466,1.0131,1,282.273,1.1817,664.386,8.7465 +21,4.6741,6.7032,7.919,4.438,0,234.568,1.563,462.172,8.8106 +26,3.5242,9.0113,465,1.4424,1,187.182,5.882,529.861,153.421 +13,7.5799,1.595,7.903,1.6561,1,268.762,5.521,687.658,12.9116 +26,3.1797,8.5304,7.041,1.0899,0,191.899,1.0551,945.252,181.212 +25,2.5454,5.21,1.939,1.269,1,403.009,1.4211,890.911,3.6717 +20,5.7685,6.213,5.103,3.707,0,247.619,1.0252,581.297,10.2102 +21,3.6099,9.137,444,1.4739,0,451.564,1.7297,21.89,206.478 +13,6.6601,4.3261,4.239,4.2981,1,11.1402,0.93,353.262,759 +19,2.0614,2.273,5.426,3.4421,0,5.6062,5.315,368.189,149.638 +18,6.8945,2.5423,9.821,4.3763,1,190.484,2.5885,296.282,188.577 +24,3.5497,5.041,8.129,5.243,1,9.183,6.018,749.278,9.2125 +35,1.2022,8.1246,9.037,2.2781,1,19.656,2.8999,837.628,212.068 +31,2.1424,7.4378,296,1.1463,1,10.3705,2.9622,326.633,176.566 +16,9.4025,5.91,1.403,3.6061,0,434.108,2.0904,847.665,145.452 +13,8.8062,5.3942,848,4.8512,1,283.952,1.506,737.093,4.7597 +24,3.1025,4.2731,2.632,4.0768,1,248.795,2.3863,446.705,160.825 +26,8.1953,9.7271,4.419,1.764,1,393.873,2.6196,701.676,200.104 +22,6.4771,5.6019,6.421,1.5833,1,6.5184,2.1288,771.645,175.178 +13,9.7381,2.5397,5.008,1.429,1,428.507,3.061,565.421,137.966 +20,4.3625,2.3009,9.032,2.008,1,241.652,9,448.682,171.498 +20,7.1331,6.1135,9.399,3.976,1,6.8217,5.757,11.0697,234.453 +25,1.5718,5.2283,1.635,1.3816,1,409.706,5.656,1.1356,2.593 +16,4.5662,77,8.529,1.521,1,230.388,5.476,937.879,159.343 +19,9.6744,8.3007,4.817,2.2023,1,30.23,1.5293,27.481,190.318 +21,5.8508,7.0412,4.533,2.0247,0,446.804,1.5603,666.354,153.334 +25,3.5909,6.6183,7.849,3.857,0,445.346,2.1691,943.928,6.5542 +23,2.0824,6.878,931,707,1,446.409,6.044,820.108,197.462 +18,7.3318,3.6206,8.825,7.887,1,208.459,278,131.357,219.192 +26,6.8037,9.3538,6.709,3.1329,1,374.803,1.9983,803.893,164.041 +25,4.3654,8.6259,8.753,2.8587,1,11.6635,1.452,729.129,12.2646 +15,9.5585,2.8554,9.945,0.77,0,415.588,1.999,336.103,8.7917 +22,1.1998,1.5706,518,4.2613,1,170.861,1.1422,692.706,7.9214 +25,3.7335,4.4909,933,1.6453,1,231.956,2.2524,827.628,173.575 +17,9.2896,3.5583,1.665,1.8348,1,445.696,2.0478,298.508,14.571 +29,3.8884,6.8223,3.236,2.1023,1,40.287,1.951,870.339,3.7644 +25,3.2703,9.6643,1.036,1.6135,1,476.256,827,8.8026,3.3863 +21,5.808,3.63,8.153,2.7873,1,181.736,2.5744,53.218,1.7064 +9,8.4142,6.222,2.969,1.9432,0,7.5543,1.1298,240.887,164.043 +29,1.9283,8.9761,9.759,1.2972,1,455.205,4.068,73.073,7.5447 +8,9.4872,3.795,7.026,4.5224,0,246.577,2.2668,183.117,4.858 +22,8.1557,9.5277,1.734,1.5418,1,44.47,1.4594,348.039,8.1046 +25,2.6313,6.6458,476,3.4924,1,366.037,96,136.112,199.708 +23,7.4081,9.4169,4.669,1.7361,0,437.401,2.3456,813.796,5.9439 +20,4.4646,1.9966,4.925,2.1761,1,327.361,1.3051,140.952,152.052 +23,4.6207,407,5.357,1.1797,1,406.186,2.2648,72.592,10.5521 +17,8.0496,4.8821,312,3.7616,1,6.0168,2.2668,710.158,131.735 +11,9.6651,4.5062,6.863,3.686,0,484.147,2.998,150.945,142.985 +25,2.1399,3.3149,4.872,1.112,0,9.049,1.8397,570.391,10.9155 +26,4.7857,9.5766,791,301,1,1.2251,1.0804,501.911,1.3885 +22,5.3285,8.2258,8.153,4.6119,1,265.404,1.6392,59.856,136.247 +18,4.3868,6.6158,2.305,4.4441,1,355.956,2.656,937.855,9.5406 +20,4.2687,1.6286,484,2.5304,1,358.209,1.7646,8.9732,4.7971 +30,1.4704,7.3432,7.032,2.4668,0,169.616,2.3326,822.299,215.162 +24,7.1698,7.2701,9.778,4.0621,0,376.916,2.9604,863.486,176.656 +23,4.9259,4.2507,4.467,6.923,1,42.128,9.608,135.011,6.8176 +26,2.7531,9.2479,2.596,3.2685,0,305.006,4.654,659.545,12.935 +11,8.3443,1.6698,1.567,2.3799,1,192.996,1.0977,705.102,231.147 +11,8.223,2.6734,2.874,3.7167,1,306.787,579,55.318,5.8911 +20,5.3775,6.322,3.279,1.505,1,431.115,1.2263,507.901,227.372 +29,3.6861,7.9545,4.239,2.9636,1,450.236,2.7438,32.464,164.007 +18,6.7428,6.2176,6.554,2.7836,1,1.5758,5.831,692.191,12.9801 +20,3.5934,3.1494,2.732,4.2042,1,6.1199,1.4332,292.691,23.597 +20,3.1241,1.6381,51,3.3842,1,2.257,1.7179,465.423,8.009 +12,7.5746,4.015,3.733,4.4008,1,246.221,5.397,858.795,6.6775 +20,1.3629,1.6675,8.556,4.4364,0,218.195,9.903,9.8645,8.1502 +30,1.8529,4.5328,4.984,2.0408,1,272.901,2.7341,533.087,180.206 +25,1.0611,2.4718,9.648,6.872,0,341.823,8.872,491.213,8.0882 +23,2.3765,2.5898,5.036,3.1514,1,182.892,1.9061,384.697,2.4663 +25,1.6209,8.7558,2.759,4.3687,0,10.4289,4.109,601.554,154.635 +15,9.9622,5.1514,1.933,3.748,1,19.741,2.1996,2.547,5.3516 +22,3.5993,7.2925,6.945,2.7896,1,4.506,8.374,497.545,999 +23,2.3434,3.571,5.364,575,1,414.723,6.938,490.834,4.7798 +23,3.169,3.6516,604,135,1,191.863,3.725,520.951,196.595 +13,9.4251,4.7917,7.551,3.3982,1,311.394,1.405,220.316,22.566 +18,5.6814,1.8642,7.259,3.4092,0,162.363,2.9036,215.521,158.869 +16,4.2834,1.2019,434,3.1933,1,307.406,1.2417,650.731,7.4518 +19,8.8605,8.703,8.026,4.2961,1,270.218,2.3328,10.18,10.4759 +28,4.5549,9.3943,5.327,4.044,1,10.428,2.7603,312.862,4.6692 +19,4.0151,7.881,3.917,5.263,0,312.662,6.121,832.508,211.387 +21,2.8655,3.4902,5.375,4.3227,0,5.4811,2.6095,11.2726,15.974 +26,4.4002,9.5829,6.125,2.5164,1,240.543,2.1241,473.385,2.0259 +19,3.8502,8.316,1.495,1.3653,1,359.939,1.7339,671.944,8.8064 +23,7.0957,6.4364,4.174,3.6908,1,274.531,2.4272,150.228,12.9125 +25,3.6062,9.7222,3.356,4.472,0,373.136,332,319.338,191.359 +21,6.1948,9.7822,3.504,3.448,1,136.581,7.908,563.169,220.921 +20,1.593,4.7122,913,3.9597,1,2.4409,3.932,333.956,3.1842 +22,2.7216,1.6275,1.598,1.4125,0,2.7985,2.6879,11.8838,200.293 +17,4.6666,2.0208,1.618,1.4439,1,134.363,2.964,240.082,1.5788 +17,9.4325,8.896,3.732,4.3206,0,203.834,2.9399,11.8321,5.7718 +22,4.3953,9.1168,8.945,3.0743,1,268.753,3.297,98.372,5.043 +19,6.9767,6.0788,206,1.1708,1,378.831,1.9855,243.292,1.5319 +25,3.2958,7.6618,4.162,2.6208,0,419.805,1.9815,535.248,7.781 +30,2.1433,7.3993,3.116,3.4293,1,34.684,2.7937,434.237,3.5042 +29,1.5268,6.6182,7.874,1.0927,1,231.604,9.694,573.818,210.367 +22,3.7487,8.2728,501,3.2745,0,132.244,996,50.311,6.8118 +30,2.4189,6.8541,1.965,2.107,1,213.901,2.5389,72.989,11.5132 +28,2.5661,5.34,2.106,1.5185,1,136.698,2.9357,874.284,11.6908 +14,7.8468,2.3696,993,3.3699,1,312.231,904,292.446,238.863 +32,1.1425,7.4389,5.708,7.467,1,409.103,1.906,191.771,8.7521 +19,6.0203,4.7344,139,1.111,1,259.094,7.309,984.496,6.3624 +22,4.4152,2.9479,2.722,4.3955,1,2.292,2.1839,867.412,231.179 +24,5.5589,8.0195,1.678,3.3716,0,469.874,2.3182,370.279,142.206 +21,6.0655,6.9671,1.246,2.4946,0,147.142,2.2876,895.839,6.9476 +31,3.8203,9.3734,7.972,1.0545,1,457.255,1.3065,673.841,6.8997 +22,3.656,1.6544,4.958,1.707,1,406.534,4.734,443.046,2.0727 +18,7.6006,6.4919,6.312,2.8717,0,206.563,1.7543,874.688,133.648 +13,8.8415,2.4424,3.313,7.766,0,2.8352,2.3671,67.853,173.685 +32,2.7332,9.0358,5.537,2.4087,1,473.852,2.7366,828.187,11.3931 +24,1.8786,995,2.576,2.0449,1,329.527,1.3579,423.582,212.265 +12,9.0802,6.5616,308,2.3834,0,12.4827,737,800.728,11.6152 +23,4.1491,7.9109,6.522,5.278,0,266.768,3.565,373.258,8.3126 +20,5.9619,3.5492,1.504,5.325,1,317.685,2.3928,737.728,6.0188 +24,4.2359,9.5414,6.172,4.8206,1,11.333,1.6059,441.175,5.839 +28,2.1322,8.5073,8.522,4.8968,1,4.677,2.0226,411.143,7.5963 +17,6.304,2.9462,1.204,2.1308,1,133.733,4.777,798.667,238.074 +13,5.7263,754,8.975,3.945,1,2.3801,197,133.786,8.6598 +23,2.8269,2.9666,794,3.279,0,3.4993,2.9027,928.927,12.5904 +22,5.0668,2.8131,3.489,5.846,1,7.8293,2.4327,513.594,6.5922 +19,8.1725,8.8996,6.105,1.4834,0,7.9203,1.2001,639.714,3.4449 +23,6.3138,9.6712,5.594,1.5683,1,12.3976,1.3714,411.209,15.5 +26,1.8723,7.044,964,2.9789,1,468.715,2.7872,649.416,130.853 +16,5.9322,4.7129,7.989,2.8999,0,28.791,623,712.753,1.6278 +20,7.3246,5.4833,9.732,4.6175,1,211.253,2.4085,869.793,211.869 +8,8.1343,9.291,1.812,3.9502,0,28.19,538,855.835,12.185 +19,6.6621,3.775,8.951,4.2842,1,2.856,2.6271,364.237,8.0477 +24,2.3739,3.1708,5.568,4.4561,0,447.373,1.7679,619.694,187.046 +14,7.3916,5.3606,9.359,4.1964,0,266.157,1.4327,782.772,2.6902 +23,7.0961,6.6119,1.761,1.6644,1,225.825,2.1194,767.215,11.3707 +30,1.2198,7.0349,792,1.0751,1,470.801,203,892.022,131.705 +18,4.7057,1.3676,598,2.8588,1,365.204,5.866,833.624,18.603 +22,3.9966,8.1295,8.832,3.4478,0,16.871,1.221,720.677,8.8859 +23,7.0247,6.7854,6.742,1.9328,1,468.079,1.8536,751.367,205.191 +27,2.9452,8.8907,3.703,4.2417,1,425.999,4.336,809.369,167.441 +19,6.3178,4.4934,1.905,4.8028,1,477.267,1.1385,83.951,185.058 +19,9.2189,8.9389,8.165,2.847,1,4.8112,7.827,359.142,232.579 +23,8.1802,8.6577,6.032,2.283,1,477.642,1.9367,783.993,202.741 +17,9.2931,4.3841,3.604,4.2144,1,271.441,2.7578,949.717,8.3229 +12,9.8066,3.8114,4.438,1.213,1,336.108,4.979,240.634,154.995 +30,1.096,9.3281,8.265,6.451,1,10.6119,5.678,5.7753,208.467 +20,6.6047,7.1516,3.389,4.2283,1,7.0201,1.8016,8.1672,12.6029 +22,4.7156,9.2825,896,3.6601,1,3.9694,1.3607,224.551,163.872 +19,8.7387,7.9697,9.113,2.0807,0,211.157,2.1543,920.592,4.1343 +20,3.2663,6.093,3.873,4.4443,1,11.0675,8.637,135.528,195.819 +9,9.8293,1.1585,3.484,1.7573,1,4.0811,1.6345,750.127,181.791 +17,6.5234,2.9148,2.044,3.1692,1,477.533,1.1605,868.373,213.335 +21,8.1418,9.6884,8.974,3.1717,1,366.696,8.438,878.746,170.436 +27,1.7704,3.1942,2.175,9.217,1,258.927,2.1879,422.581,210.456 +25,2.6511,9.325,6.367,1.4243,1,371.674,2.3877,500.309,3.8932 +19,7.8256,7.0755,8.808,4.58,1,305.729,9.869,330.016,195.275 +31,1.1979,7.34,349,9.171,1,8.9016,1.8689,155.871,228.712 +14,8.3519,2.8546,8.288,8.679,1,316.718,5.358,22.005,195.722 +27,1.1255,2.9767,4.106,2.3981,0,340.506,2.3729,143.437,147.655 +18,6.9141,4.6889,658,461,1,11.8735,8.438,413.447,22.236 +15,4.2858,2.179,3.724,4.4731,1,160.072,5.129,178.642,2.2677 +23,6.5035,7.8932,6.955,5.007,0,19.165,2.8199,409.367,4.048 +15,7.2643,3.1709,2.543,3.0828,0,301.273,1.2675,852.677,231.677 +26,4.0823,8.5376,219,1.6989,1,6.3404,1.9305,65.797,163.921 +30,1.9717,8.0263,9.478,4.0214,1,371.739,2.4276,666.124,2.74 +28,1.6268,6.614,164,2.9491,1,173.012,2.0584,813.747,8.1603 +17,6.3004,3.2487,8.241,1.9415,0,345.886,1.694,5.0782,179.713 +17,5.6859,5.1632,1.691,4.9194,0,466.444,1.1148,796.566,180.093 +20,7.6798,4.4483,3.922,3.312,0,434.937,2.7556,204.385,4.0798 +19,5.5876,3.3888,8.225,2.8889,1,368.791,4.006,352.468,11.2835 +28,4.802,8.4814,2.059,4.9478,1,9.6663,2.6518,314.962,193.755 +26,4.5828,4.8351,8.657,3.4548,1,366.037,2.1295,11.4599,232.031 +29,1.238,8.3272,4.978,3.6988,1,317.895,1.7142,181.973,149.416 +24,04.02,1.0522,3.662,1.605,1,386.273,9.742,956.784,153.152 +12,9.7842,1.4102,6.624,1.068,0,434.407,4.381,60.427,11.2644 +20,8.862,9.7732,3.414,1.806,0,155.738,1.3295,479.232,12.9374 +22,3.9644,5.8777,3.473,4.9586,0,322.152,2.3513,760.217,2.3744 +21,6.2902,5.0977,7.335,4.8976,1,137.569,2.2359,815.602,8.3901 +16,8.6257,5.2316,3.098,1.6725,0,173.142,1.9363,11.916,12.175 +23,4.9715,2.1527,2.008,1.4549,1,260.322,2.9775,743.496,6.5995 +32,1.1616,7.187,8.076,7.298,0,217.082,2.9179,933.073,8.6359 +24,1.6706,8.478,8.054,1.6457,0,300.315,1.2,589.582,233.087 +19,5.5935,5.7332,4.976,1.8507,1,379.381,5.776,618.015,1.249 +14,9.725,5.7077,5.267,3.7414,1,30.251,1.3915,871.703,7.2634 +25,7.2389,9.1419,6.961,4.3315,1,48.49,2.5337,682.688,140.149 +27,1.6382,5.2618,5.093,3.7337,1,36.906,1.3757,995.315,6.6952 +20,2.7042,1.3706,417,3.2324,0,492.506,1.1979,289.867,162.351 +21,7.9419,5.7275,9.949,3.8295,1,37.172,2.2237,847.026,7.1826 +12,8.573,9.133,1.476,3.6925,1,253.959,1.9504,616.285,15.317 +21,6.5593,2.0379,5.927,2.3787,1,205.503,2.9061,372.078,203.967 +18,6.7998,3.111,8.859,1.6793,0,36.783,1.6478,884.229,158.075 +30,1.255,5.1329,6.872,1.4139,1,343.562,2.9024,996.284,1.1972 +11,8.4568,8.453,8.809,3.3968,0,334.382,8.728,6.7271,190.851 +15,8.0945,4.6939,3.363,4.7965,0,360.892,2.5945,926.268,5.1072 +27,3.3313,9.3295,272,2.9053,0,436.086,1.0528,21.108,15.235 +23,7.3781,7.1976,8.513,4.5626,1,11.388,2.429,213.136,155.216 +26,2.9337,7.741,3.941,711,1,282.447,2.778,5.1339,192.897 +27,1.363,2.2421,7.097,3.9724,1,301.651,1.8696,922.966,12.1398 +27,2.8102,6.7366,1.477,4.268,1,146.428,2.1856,761.804,9.0231 +33,2.6077,8.947,7.558,3.155,1,493.975,2.8759,6.2915,12.4327 +17,4.0397,3.292,549,4.6703,1,392.769,1.1255,63.72,130.982 +22,4.766,8.1245,2.686,2.9496,0,160.633,1.5348,12.8933,197.169 +23,5.5769,5.6181,4.945,1.2027,1,179.217,2.6949,753.891,4.9217 +24,5.2908,5.4609,6.969,1.0786,1,359.129,2.0184,414.963,20.324 +28,3.4361,9.5781,119,2.7792,1,5.747,2.6208,6.1259,8.777 +28,1.2625,7.4764,6.375,4.5324,1,23.202,1.8548,831.113,178.527 +25,6.4459,8.5012,5.416,3.618,1,171.555,2.2192,576.689,8.0571 +17,4.5617,3.54,2.203,3.022,0,427.001,392,775.139,170.132 +24,3.688,5.5436,753,3.849,1,395.647,1.019,677.786,191.803 +18,8.8025,6.1541,3.035,577,0,166.048,2.3113,440.052,133.936 +18,7.7207,3.2158,2.769,5.838,0,432.398,1.212,70.168,148.691 +18,8.7199,5.7025,4.712,1.8306,1,45.68,1.0885,2.4606,169.863 +23,5.4548,2.3666,6.761,1.3694,1,276.229,2.8547,34.634,165.223 +24,2.1784,1.4338,9.288,9.916,0,7.9619,1.6576,780.075,17.458 +16,7.266,3.7397,1.414,9.935,1,385.164,5.775,765.431,203.922 +28,2.8547,7.3929,3.965,6.533,1,159.672,1.4167,888.535,5.2924 +22,4.9711,9.1619,67,3.0543,0,263.641,1.556,614.935,5.1536 +29,1.585,4.5771,7.586,3.4406,1,2.2794,2.9662,942.775,232.964 +18,8.4278,6.4282,4.477,3.5147,0,250.045,2.1547,562.135,204.317 +25,2.1335,1.0304,7.069,2.6618,1,190.132,1.5582,505.449,142.009 +15,9.1279,9.0446,3.222,4.7645,1,343.033,1.296,205.244,1.963 +18,8.7781,5.686,8.443,4.4027,1,2.0392,2.7465,781.048,205.142 +24,5.1812,7.8034,5.348,4.7882,1,312.473,1.9378,695.137,180.383 +23,7.6993,7.9444,9.436,1.944,1,385.978,1.0683,466.153,22.953 +11,6.575,2.5648,788,4.3889,1,6.389,1.3939,9.6238,3.159 +13,8.2277,5.2917,5.143,3.8144,0,374.982,8.344,134.445,6.846 +26,4.8862,9.6048,7.665,1.6999,0,6.5102,2.8813,12.3317,12.4188 +18,8.0723,8.963,6.002,533,1,349.028,2.1058,381.843,205.452 +22,5.1621,6.8305,232,3.4131,1,227.638,1.1769,167.388,237.916 +18,9.4687,9.6226,9.723,6.823,1,275.996,5.496,862.234,7.6806 +17,5.3773,3.1958,2.983,1.4689,1,168.674,5.311,900.353,8.727 +23,5.1636,8.6145,2.493,2.5018,1,12.2733,1.4332,858.201,4.6922 +19,8.0656,9.3366,4.857,3.3994,1,3.5524,1.4027,612.766,210.482 +17,8.3942,7.4709,5.422,4.6311,1,432.345,1.2534,600.392,11.1948 +20,5.9904,2.3133,7.663,2.9662,0,305.215,2.5554,892.015,204.794 +27,2.6182,3.34,3.933,3.3571,1,49.14,2.9375,412.245,10.6538 +16,5.2098,3.581,0.44,1.5501,1,425.226,1.0645,7.1721,1.2814 +16,9.7127,8.3145,535,3.4365,1,434.817,8.838,475.689,148.218 +22,7.7769,8.4961,3.944,2.189,1,298.925,2.3103,558.173,10.4563 +16,8.3005,6.3271,9.145,4.2847,1,4.0471,1.3494,553.958,11.7925 +27,1.2954,3.5253,8.513,1.9623,0,456.698,6.527,167.414,227.753 +15,5.2107,7.681,455,2.3414,1,5.8943,5.428,785.579,10.9698 +19,6.8196,7.5306,2,2.1629,1,258.573,8.417,734.647,191.167 +15,8.4703,7.2653,9.009,4.0556,1,428.428,4,237.554,1.4139 +29,1.4435,9.126,1.243,4.7685,0,236.204,2.8243,555.717,11.4969 +17,8.6719,7.3053,2.445,1.6364,1,8.2835,1.2907,792.425,140.807 +16,5.9356,8.2869,1.524,2.3751,0,186.598,2.485,1.7608,2.7175 +21,2.7758,7.4595,1.798,3.5296,0,494.194,4.949,282.403,7.2536 +21,3.8553,6.3069,8.029,4.4769,0,49.988,0.97,477.317,177.502 +21,3.5374,4.2697,5.795,2.4685,0,355.417,1.6551,846.581,4.4138 +26,5.7777,9.0212,9.561,5.445,1,443.996,2.1111,800.978,3.0828 +24,1.4652,6.5097,2.315,1.8434,0,2.2103,9.236,159.483,7.1826 +27,2.4268,3.9836,4.856,2.7518,0,137.986,2.8728,468.114,206.151 +17,8.3142,8.347,9.774,2.0876,1,18.448,2.2809,31.159,183.106 +25,2.1934,2.907,8.264,9.328,1,5.999,2.4774,407.419,186.432 +24,3.1006,5.4373,7.286,1.849,1,188.481,9.709,545.219,7.739 +16,5.0803,2.7564,189,3.437,1,4.6516,1.1429,504.347,2.3745 +16,5.6541,2.2124,7.694,4.9637,1,258.705,1.6142,150.159,7.669 +12,7.8725,5.2739,3.476,4.596,1,221,1.3551,130.471,140.688 +16,5.026,1.6982,5.305,3.4164,1,135.225,7.797,138.966,168.549 +20,8.1088,8.1941,6.092,4.2076,0,433.142,2.9918,842.875,9.0694 +23,6.5651,4.8437,6.094,1.2786,1,10.6529,2.5451,2.9736,12.6927 +23,2.0179,5.7386,7.265,3.1122,0,3.2422,714,210.381,6.6961 +26,2.407,1.4738,6.617,303,1,12.4865,2.6772,956.333,8.7433 +21,4.9333,3.2458,684,3.5359,1,413.779,1.7607,7.5361,175.156 +16,4.572,4.1009,4.573,4.8494,0,293.594,377,4.5958,172.373 +17,7.6919,8.0821,664,4.304,1,293.037,1.0385,393.456,6.742 +20,6.2266,7.7016,296,2.6722,1,287,772,159.689,226.616 +17,4.4932,2.2298,3.131,3.9437,1,236.076,2.633,570.106,6.4563 +24,2.5368,6.1618,1.246,4.7195,1,132.809,5.369,345.195,217.821 +21,3.0415,2.4346,4.186,1.0801,0,168.105,1.4532,21.688,12.2855 +23,6.1795,9.8825,9.868,3.9663,1,299.343,1.1439,998.616,11.9804 +23,4.8109,9.5212,2.853,1.3492,1,43.717,447,347.693,10.8147 +19,5.6343,5.6326,5.314,4.3847,1,9.0828,1.1837,644.596,221.383 +29,2.5361,6.989,7.432,4.918,1,384.111,913,875.372,4.9946 +19,6.9662,8.0143,135,8.911,1,2.4451,1.2305,923.163,146.795 +15,8.6728,7.21,9.004,3.6031,1,163.365,5.169,416.026,7.6268 +27,3.3215,6.9983,3.866,8.739,1,10.9456,1.8291,976.395,219.657 +24,5.4236,9.5855,8.691,7.903,1,457.792,1.336,72.732,4.0642 +11,9.7797,5.9646,389,2.7773,0,8.8999,1.1636,587.443,162.286 +26,3.9992,6.363,1.457,4.1749,1,289.316,2.6847,696.347,10.1222 +22,6.3554,8.4927,3.225,1.3423,1,8.2392,1.259,366.536,158.693 +24,1.8118,6.6989,3.455,4.2057,1,236.742,1.3232,430.161,3.7826 +17,6.4541,7.3293,8.478,4.0398,1,20.67,204,590.406,9.4478 +20,1.8067,2.3417,112,2.8955,0,2.0679,1.8161,333.566,2.5743 +18,9.6331,3.7127,6.411,3.2328,1,412.934,2.8092,771.124,232.506 +14,7.441,1.473,1.313,2.022,1,390.056,8.748,258.576,5.1358 +18,8.0934,5.0577,8.232,1.8357,1,138.929,1.1798,798.837,238.374 +18,7.3369,4.5573,7.786,1.317,0,306.998,1.7645,160.636,10.044 +19,6.3076,9.9716,4.999,0.75,1,181.335,2.796,225.217,1.7172 +25,5.0492,6.1121,2.127,1.9483,1,384.614,2.8509,755.563,4.218 +16,8.7254,7.8644,6.345,1.7745,0,346.242,1.4028,27.051,14.375 +8,9.6115,3.3401,1.563,3.6445,1,4.5233,3.453,79.744,147.535 +22,5.4913,8.3155,0.19,2.9905,0,422.094,1.1957,786.031,12.595 +12,9.3838,6.1508,6.267,4.5655,1,8.9713,1.1215,264.728,1.5936 +23,6.25,6.9699,9.912,727,1,8.7055,1.0361,8.235,7.9561 +21,5.8455,2.9443,8.911,2.987,1,366.873,2.0797,174.697,8.6177 +21,5.0903,5.4864,5.931,2.673,1,9.1626,1.0366,755.001,169.156 +26,2.8836,6.3404,5.385,51,1,6.1198,9.716,848.524,10.0525 +27,1.0335,5.8909,9.984,3.9386,1,167.791,9.663,389.225,137.512 +31,3.1736,9.1519,5.474,2.5299,1,419.356,2.3335,172.577,6.8719 +23,5.5875,8.9827,4.201,2.4403,1,8.8404,9.251,8.4715,174.236 +24,4.4196,9.7098,9.096,1.8125,1,169.536,42,223.658,1.1224 +22,5.0364,6.6743,2.342,1.8749,1,143.127,1.0966,979.888,237.241 +17,9.8258,9.7191,975,2.1557,1,17.803,8.347,17.857,153.958 +28,4.1525,8.3248,6.341,802,1,357.136,2.7271,9.5305,3.5727 +21,5.0696,2.7083,958,4.177,1,202.733,1.4337,787.619,172.198 +25,2.2016,4.2744,3.731,2.5252,1,379.788,7.037,619.257,188.774 +29,1.4316,2.3839,4.236,7.506,1,320.202,2.9448,539.473,189.263 +11,7.9787,42,5.475,3.8938,1,18.055,7.402,453.374,6.4976 +19,6.1361,1.8805,9.917,1.3724,0,21.612,2.2891,704.823,230.073 +17,7.8463,406,221,4.895,1,351.811,1.9487,701.371,4.257 +28,2.3488,7.1984,3.758,1.176,1,267.378,1.3867,430.182,9.1161 +17,6.1465,4.2553,1.322,1.7855,0,43.417,1.2175,241.886,2.5012 +28,3.2828,3.1257,6.076,1.766,1,466.592,2.6171,842.851,9.2366 +26,3.0526,7.6172,7.277,7.084,0,358.854,1.4252,172.976,1.3734 +32,1.1037,8.3249,4.821,1.6192,1,494.604,1.1261,538.666,154.795 +26,2.1731,9.753,2.458,1.5524,0,298.268,1.0628,695.747,1.4991 +19,3.7834,6.4201,6.209,4.2019,1,1.9915,8.276,642.488,147.803 +24,2.0519,4.6153,5.392,4.2163,1,252.426,1.2269,622.606,5.618 +9,9.8727,3.0526,1.712,9.671,1,11.5005,3.598,665.881,4.2995 +17,3.7777,2.2232,4.057,6.197,0,166.857,1.954,876.898,8.328 +22,2.1729,2.1293,4.352,3.1708,1,245.035,1.6244,371.739,153.831 +25,2.7917,4.0919,9.826,4.0231,1,147.525,1.3628,631.162,138.768 +23,6.2893,9.9179,8.493,4.8186,1,154.811,5.202,699.997,163.313 +22,1.5764,85,7.344,34,0,201.008,3.204,594.423,220.555 +12,8.7619,1.9721,8.888,2.0684,1,143.229,4.298,903.973,4.8793 +10,9.6535,1.8839,7.355,3.6699,1,8.475,9.457,658.231,9.9206 +24,3.2207,7.1712,9.034,4.1428,0,38.278,1.3545,430.185,6.3797 +18,5.0509,3.5248,546,3.114,0,197.606,5.801,847.131,140.724 +29,1.1992,4.5726,4.561,3.4031,1,415.879,2.2669,494.672,6.8016 +18,6.7664,1.4862,7.469,1.4447,1,441.358,0.58,534.862,133.924 +23,4.7253,04.05,5.833,373,1,375.482,3.724,586.457,197.559 +25,3.4305,1.032,1.752,2.4455,1,198.337,2.9837,329.557,132.227 +28,2.8615,5.3304,3.405,7.908,1,360.661,1.3431,725.314,201.151 +11,6.8862,9.794,3.178,3.685,1,7.761,0.51,10.7145,146.724 +26,4.746,7.9051,2.613,3.7063,0,330.558,2.6837,870.161,208.872 +23,2.6169,5.666,3.431,4.2103,0,203.016,6.933,756.992,22.33 +21,7.202,7.2397,5.149,1.8878,0,327.822,2.7767,360.095,12.1875 +19,6.0857,4.1852,8.549,665,0,377.395,3.569,234.129,189.755 +17,8.728,3.8149,742,1.2987,1,281.343,2.5254,394.019,11.2516 +23,2.0573,9.821,8.352,2.3391,0,321.239,5.528,807.002,169.247 +18,8.071,5.2386,8.836,3.4701,1,10.6764,2.815,4.1255,9.002 +21,7.0617,5.145,4.162,1.9102,1,29.635,1.7227,473.245,232.059 +23,2.0351,4.681,346,2.6802,1,230.237,5.697,261.569,21.464 +24,7.2534,7.4052,576,2.6213,1,214.026,2.5345,876.202,214.389 +24,4.9739,8.325,9.305,8.249,0,205.158,1.1717,419.703,6.75 +14,9.5049,7.5079,658,3.1152,1,155.462,2.1984,700.919,6.796 +23,2.2745,1.4387,7.411,2.1963,0,152.667,1.9303,364.314,9.6624 +20,6.7855,6.2206,3.781,4.0396,1,349.853,2.1429,336.403,211.245 +19,4.4378,8.032,9.488,3.4531,1,27.89,1.0311,332.614,206.073 +19,9.6113,6.9462,4.196,5.573,1,1.4976,2.8165,681.393,6.947 +23,3.9698,3.8184,8.166,2.4438,1,2.4263,1.6794,964.598,130.026 +6,9.6597,1.325,2.827,3.5125,1,28.506,2.327,216.063,11.4041 +19,9.1134,8.6205,2.991,4.351,1,423.142,2.002,647.462,156.162 +23,3.4334,6.1401,5.955,3.9625,0,2.1989,2.2147,27.278,5.1336 +17,8.2319,3.5472,998,1.11,0,253.603,2.5499,553.857,2.0412 +12,9.9604,3.073,5.176,2.5154,1,425.568,2.0858,546.183,6.541 +22,3.274,5.3731,9.363,4.7028,1,2.224,8.325,455.546,9.154 +22,4.931,9.2323,7.862,2.8567,1,137.897,6.777,503.658,227.187 +24,5.6816,5.9638,7.959,2.1203,0,45.996,1.6963,881.429,164.355 +26,3.6544,9.7165,436,34,1,4.0735,5.903,9.7718,179.791 +24,1.1374,1.3645,3.865,6.671,0,303.498,1.1373,83.198,226.839 +24,2.9812,5.6831,1.919,2.8933,1,253.691,1.8861,46.769,10.1292 +25,3.5374,7.9813,9.639,2.4691,0,7.584,8.547,340.258,11.3848 +21,4.9924,5.2554,9.594,1.8191,0,2.1244,1.1263,185.375,8.629 +20,2.5399,9.107,7.471,4.6161,1,251.294,1.0816,816.658,4.3529 +17,8.8593,5.8289,2.963,1.6624,1,367.565,1.3816,596.122,183.935 +21,7.3442,6.1174,2.452,2.6858,0,8.8621,2.0231,731.092,217.605 +32,1.7668,7.2871,9.886,2.8436,1,34.566,2.347,321.814,19.533 +18,6.8508,7.6121,665,2.6373,0,273.192,1.9952,39.903,1.1453 +20,6.8829,7.7077,8.436,2.3879,1,178.923,785,914.507,7.1795 +20,9.606,6.6344,3.555,1.6853,1,332.215,2.6905,96.157,142.101 +25,1.0272,2.1581,4.189,4.5438,1,9.5988,1.7436,742.444,7.8524 +25,3.2314,4.0424,832,2.254,1,228.466,2.7607,751.932,3.6029 +18,9.3501,7.7613,906,2.6422,0,274.652,2.8916,697.456,12.9207 +18,9.3892,9.5343,3.542,3.2824,0,229.348,1.4035,591.338,12.5158 +20,7.4853,7.895,952,3.383,1,198.751,2.7491,599.128,170.375 +18,7.8919,5.3554,6.991,3.9064,1,370.457,1.0962,964.165,239.968 +24,1.8233,3.1252,7.549,2.5625,1,32.805,7.811,753.402,155.577 +13,5.6249,2.2539,7.575,3.2859,0,319.731,2.209,658.788,7.6053 +23,3.0842,5.0581,606,3.8601,1,44.59,1.3555,197.179,229.531 +28,2.631,6.0609,2.032,4.3705,1,49.675,2.0661,977.303,137.112 +16,8.2927,977,4.913,1.9611,0,283.602,2.9305,52.509,154.977 +27,2.2153,7.8021,3.682,4.0571,1,174.134,1.5639,944.276,8.5815 +26,5.2179,8.1988,4.109,1.2942,1,389.438,2.2034,716.422,10.8441 +19,9.4472,9.6551,7.814,3.3017,1,7.105,2.6884,4.968,10.0471 +25,2.6725,1.8064,147,5.135,1,256.455,1.6296,543.606,224.692 +18,9.8019,5.9455,6.605,1.002,1,262.254,5.003,893.755,194.302 +15,9.9486,4.2663,1,4.788,0,491.734,2.5446,6.1263,2.1769 +20,6.2006,3.3483,631,1.5969,1,495.503,1.7225,86.806,7.5328 +28,2.5313,5.6563,4.083,1.555,1,399.607,2.2755,617.257,1.3365 +27,3.8449,7.8238,8.409,3.1525,1,236.508,1.9754,5.4082,12.4022 +13,4.8204,2.305,145,1.5827,0,273.613,1.831,379.862,6.7062 +21,3.7839,9.694,5.546,3.6819,1,159.871,5.073,3.9869,1.7616 +27,3.5257,8.0988,6.785,2.296,1,414.923,8.587,1.1699,185.282 +16,9.7501,7.5115,2.295,1.0835,1,373.273,8.541,897.461,2.1871 +31,2.3803,7.6039,5.123,02.04,1,385.713,2.5176,751.093,6.5175 +14,7.6,3.8906,9.114,1.9133,0,6.9338,1.7947,296.577,185.193 +28,1.1937,7.5162,5.122,655,1,199.317,2.501,12.2573,12.2777 +15,6.3656,3.8677,1.573,4.9707,1,268.676,1.1616,6.3888,196.108 +18,9.2435,8.9871,6.278,1.4222,0,6.2329,1.669,91.805,9.9476 +19,3.5914,1.7722,5.922,3.6052,0,184.312,7.545,629.301,195.567 +18,2.6697,2.9235,27,1.1001,1,4.3716,1.195,168.953,12.9159 +17,6.8651,5.5134,906,4.3893,1,479.421,1.1408,684.647,2.1109 +18,7.4134,3.1921,1.568,1.9388,1,375.632,1.3836,998.902,11.3158 +20,7.1923,4.2424,1.363,4.5045,1,310.374,2.7143,790.147,13.285 +23,3.8739,4.9242,2.595,1.7092,0,10.2428,2.7251,452.067,146.904 +31,3.2698,8.5635,4.541,432,1,167.064,1.5012,816.035,222.692 +13,9.6033,5.2319,3.717,2.5851,1,7.2242,1.4145,746.864,4.4054 +15,9.3097,3.6246,8.906,2.6239,1,26.806,1.9215,9.7767,145.447 +21,5.1158,2.4774,6.121,5.992,1,410.258,7.744,92.644,180.485 +15,8.6157,4.0868,8.761,1.1748,0,9.518,8.571,885.262,213.589 +18,5.0709,5.1574,527,3.9175,1,5.1654,77,594.654,12.6073 +20,4.8195,7.4611,899,1.838,0,11.4675,2.346,513.068,5.1348 +19,2.4109,1.2105,4.633,2.4476,0,357.033,5.355,235.464,196.244 +24,4.8377,2.2161,822,2.652,1,44.699,1.9217,836.113,217.211 +14,5.8368,3.7965,1.941,3.4436,0,376.506,638,437.568,2.5528 +25,1.2025,3.604,912,1.873,1,262.474,3.722,583.514,5.5132 +18,4.997,3.9175,3.294,2.9282,0,5.2556,1.8489,178.387,209.151 +24,8.0322,7.9352,3.889,155,1,377.457,1.9553,221.685,11.626 +12,7.1204,3.2415,3.063,1.3259,0,5.282,179,985.349,4.0584 +20,6.7164,5.019,1.352,2.4984,1,173.845,2.3187,49.906,154.871 +14,9.186,6.2391,2.508,4.5564,0,153.996,1.8185,817.585,10.9989 +29,1.1623,2.3218,6.823,6.329,1,179.612,1.1912,831.433,23.231 +25,6.0134,7.187,3.859,8.464,1,164.765,2.9495,981.695,5.3451 +15,8.0861,5.4711,6.325,3.3463,1,38.459,306,983.075,8.6919 +20,5.872,4.4678,5.363,1.8743,1,8.5862,1.6346,462.386,3.9876 +24,3.9151,8.0978,5.491,3.1171,0,422.923,4.791,950.817,1.1936 +21,2.2263,2.435,2.485,4.9873,0,42.913,988,37.18,6.5737 +13,8.9881,8.8318,5.215,4.9344,0,245.463,3.996,611.563,196.759 +22,5.2369,5.6105,236,1.7686,1,5.3074,2.1946,823.495,6.4136 +17,8.903,6.0917,4.317,2.5196,1,287.704,1.2047,914.649,167.122 +25,6.2727,8.7506,5.726,4.5235,0,410.466,2.9589,528.601,12.6246 +24,7.0677,8.1758,182,4.608,1,144.737,1.9615,423.681,12.473 +19,8.2384,6.0156,2.566,2.2615,1,418.874,2.752,731.233,18.757 +18,6.9324,7.5319,2.195,1.8879,0,338.459,7.225,461.368,148.264 +21,4.5825,4.3332,706,1.4744,1,493.623,9.564,675.083,3.8365 +18,5.6227,5.4738,3.479,4.971,1,412.356,1.088,806.177,5.2983 +14,8.2274,6.207,979,3.6677,1,10.075,2.5155,842.716,130.508 +18,4.3629,8.986,3.539,1.9437,1,224.502,635,261.771,202.876 +23,4.4931,8.2943,4.605,4.1451,0,5.1754,2.8402,575.744,3.6557 +18,1.8612,5.967,6.531,2.4483,1,3.4835,1.307,3.4784,2.5655 +13,9.2313,1.694,6.485,4.3641,1,353.027,2.6696,799.779,12.4209 +30,1.8193,7.9583,9.499,1.3319,1,456.466,1.3542,133.844,4.5276 +21,6.8339,115,8.576,1.118,1,486.788,1.5777,872.968,238.617 +22,4.7188,2.824,794,1.2364,1,135.233,2.9922,412.742,1.046 +22,4.6506,5.8404,9.516,2.6924,0,10.0886,2.6101,175.596,10.7727 +22,7.116,5.9545,2.308,1.4566,1,28.011,2.7121,797.857,3.901 +31,1.6038,7.7715,6.171,7.356,1,10.043,1.7566,208.284,163.459 +20,6.3434,5.0593,8.872,4.9731,0,147.954,2.869,400.471,151.232 +18,7.9483,5.094,6.241,4.5022,1,418.613,2.0634,571.207,193.696 +19,8.4539,7.2531,9.774,3.1751,0,405.231,2.458,36.643,135.217 +25,2.5348,4.9862,1.004,4.4577,1,447.537,2.1628,187.238,4.5448 +15,9.0768,6.0849,4.393,4.6773,1,241.122,2.3427,412.033,1.2796 +22,6.9053,8.9777,9.774,3.3805,0,282.043,1.9139,152.802,173.315 +15,8.9367,4.0145,3.796,2.5934,0,385.295,2.1792,721.964,10.5581 +18,5.3675,3.8513,7.396,4.41,1,11.9633,1.3078,17.979,5.3331 +17,5.8783,355,304,2.839,1,411.547,2.1206,487.559,6.0437 +13,9.2713,6.1343,6.948,634,0,8.779,8.304,564.774,3.5766 +14,9.0992,2.977,9.346,1.8343,1,39.883,1.9048,945.616,6.8059 +22,5.0334,5.0415,3.827,2.2296,1,387.954,1.5713,8.7476,190.085 +24,3.4697,8.0423,213,4.6768,0,15.089,2.6956,931.151,148.958 +24,4.5385,5.4992,279,3.2959,1,363.956,2.0197,216.144,236.976 +19,4.4899,2.6964,892,4.3764,0,10.6997,1.7899,842.527,12.5827 +24,3.5818,7.8617,7.225,3.788,0,288.116,9.392,9.959,12.5158 +24,3.4172,2.6972,1.067,1.5493,1,350.293,2.5884,988.815,4.5933 +14,8.7496,7.3303,546,3.5935,0,357.349,1.625,809.556,140.749 +31,1.6288,6.1026,8.048,9.765,1,491.468,2.6993,7.2322,146.008 +16,7.0985,1.7,8.099,2.0407,1,9.1003,1.9589,22.197,4.9567 +22,2.5554,9.0513,1.205,4.0305,1,240.399,5.685,55.306,2.1112 +20,4.1006,2.1964,3.015,3.0596,0,440.052,2.709,528.336,8.8505 +28,1.5539,9.8959,0.78,4.1271,0,280.756,9.791,632.977,4.1305 +19,3.4298,731,5.254,1.2735,0,438.195,5.048,468.872,12.0769 +14,7.9158,2.6348,9.566,3.7487,1,217.029,9.574,736.823,12.6266 +17,8.9651,1.9986,4.811,1.0116,1,397.676,2.8832,355.001,145.957 +22,2.9937,1.399,677,2.7265,0,435.025,2.2583,184.623,144.679 +27,5.1719,7.3237,5.098,2.1677,1,42.322,2.7504,4.3442,161.971 +22,5.2329,6.9343,943,2.7824,0,435.683,8.966,331.518,5.5309 +13,8.8622,7.9235,3.987,6.777,0,10.9777,2.473,43.261,175.402 +15,7.8652,2.567,2.298,1.8061,0,219.492,1.6883,662.478,12.5958 +18,5.6177,4.4434,3.266,3.3345,1,8.7286,1.449,808.392,10.4953 +20,7.0367,6.5911,8.528,2.7927,0,9.0271,2.1618,247.662,155.495 +16,8.6262,4.3977,4.979,2.7448,1,243.914,1.628,498.271,12.0303 +27,1.0859,6.9733,3.543,2.5542,0,480.044,1.1894,241.397,12.616 +18,4.626,6.3397,5.443,4.7194,1,295.956,141,951.654,5.579 +11,9.1652,1.1465,1.332,4.6728,1,426.923,1.4032,651.071,192.489 +16,7.6628,7.8104,54,1.8007,0,468.592,3.619,681.123,10.1802 +23,5.8856,7.2068,2.806,1.7595,1,4.3288,2.766,535.912,12.4338 +23,5.7668,6.5583,605,2.7745,1,8.1032,2.7651,289.011,9.3579 +21,4.1299,1.5509,7.117,478,0,145.421,2.4109,208.426,132.367 +18,5.6847,2.68,8.266,1.515,1,308.389,4.736,660.079,1.297 +20,6.8984,3.9318,9.267,1.1543,1,3.0865,4.423,92.249,9.2138 +22,4.7653,2.7993,4.121,1.1169,1,393.327,1.6899,220.765,160.483 +16,7.4274,2.2781,7.405,3.1925,1,3.1894,2.1824,576.047,225.227 +23,8.7511,8.0536,747,1.9218,1,7.9216,2.7136,534.032,203.803 +31,2.3922,6.3823,575,8.558,1,190.854,2.6821,645.237,231.076 +17,5.0639,5.6547,1.248,4.4379,0,27.886,466,591.912,187.564 +22,4.6722,2.2595,4.486,4.3707,1,440.752,2.9864,280.067,151.828 +18,7.1872,9.1808,2.113,4.3123,1,481.865,4.704,694.527,10.1585 +23,3.2488,1.9118,2.869,1.9537,1,442.321,2.5204,279.933,2.9554 +20,6.7623,7.9495,6.479,2.849,0,5.3522,1.7608,656.464,6.0193 +21,8.8974,9.6667,3.585,5.337,1,315.615,2.0349,306.934,6.5082 +25,4.7632,7.2709,5.574,1.3802,1,220.857,1.8119,9.1599,10.2692 +22,9.1991,9.9286,4.124,1.0999,1,6.2896,2.609,135.951,146.362 +15,9.9385,6.5105,169,4.3699,1,277.556,1.9113,835.755,148.479 +23,1.9548,2.1746,74,4.9318,1,178.329,2.546,130.142,10.933 +19,3.0975,2.0382,2.362,4.0834,1,172.894,4.631,337.208,6.5915 +11,9.5534,3.2456,577,3.6492,1,4.7223,2.6001,294.765,1.3559 +13,9.6249,713,6.186,2.9431,0,489.426,2.9789,6.7281,237.321 +31,1.8794,6.817,7.957,3.8495,1,36.298,1.9845,603.524,225.494 +23,1.135,2.6867,3.397,4.7352,0,140.167,2.9291,800.798,4.3902 +26,2.4499,8.1518,3.871,3.1967,0,458.738,6.597,992.406,145.295 +17,9.9641,3.5917,8.162,7.731,0,474.044,2.4878,936.672,7.0957 +25,2.62,4.7996,2.226,8.193,1,405.187,5.071,5.8833,4.6663 +24,5.5229,9.6569,1.192,2.9193,1,329.658,1.5478,264.934,164.259 +14,8.6358,2.4217,5.011,1.6673,1,188.188,1.9921,417.997,188.686 +29,1.1836,7.2125,6.462,4.5512,1,217.173,1.9808,876.264,9.7582 +21,6.4404,7.5512,5.997,3.0582,1,227.506,2.0126,366.484,1.4175 +19,3.4932,2.21,7.139,3.3825,0,474.381,9.628,574.609,9.6359 +19,8.761,05.01,568,291,1,380.067,2.9212,662.997,12.7727 +18,3.5512,3.502,4.282,2.4942,0,146.007,197,304.979,214.372 +20,7.1808,7.7191,2.386,2.1558,1,31.232,1.863,586.121,157.633 +20,7.068,6.2248,7.591,3.5294,1,29.695,2.5983,6.0377,170.519 +25,2.9934,4.7598,8.727,1.9132,0,406.063,2.6733,485.381,4.8632 +27,1.3132,7.7936,2.813,4.8829,1,4.7654,2.1606,38.475,172.865 +19,4.6832,2.3516,952,3.351,0,350.636,1.7244,362.197,12.0438 +23,3.6027,7.5362,2.534,3.2996,0,165.585,1.372,242.544,196.899 +16,8.2808,8.6537,104,4.5967,1,6.4816,1.3485,819.557,5.1929 +19,8.2033,8.7862,3.224,4.976,1,365.887,1.2753,883.104,12.3567 +22,5.1132,7.8367,5.382,9.891,0,165.823,2.0997,889.247,5.0275 +19,6.4586,4.0801,9.737,4.0527,1,365.062,2.1936,402.146,6.862 +24,6.4383,9.8181,3.994,8.116,1,8.1218,1.5443,26.657,199.729 +18,8.4444,3.7959,0.22,2.2852,1,492.964,2.2224,10.7428,165.071 +24,4.825,6.3863,1.668,5.009,0,401.704,1.5854,675.684,174.837 +15,3.479,1.6107,173,3.1169,0,144.576,2.921,336.866,1.6449 +29,3.3853,9.8045,1.926,2.3426,0,370.262,2.5548,28.39,174.902 +25,5.8257,7.0399,7.623,3.1435,1,6.79,2.6114,377.724,11.7938 +22,5.0423,7.5338,61,3.3898,1,326.719,7.994,559.176,11.0195 +18,4.9611,6.578,9.974,3.0972,1,2.9818,2.3593,170.306,9.903 +30,1.8202,7.6342,5.227,1.4701,0,166.694,1.5335,961.724,204.431 +15,7.4674,7.7472,5.443,4.1848,0,489.231,3.721,735.288,4.2591 +25,2.9236,6.7177,3.576,2.7584,1,6.046,1.194,5.6318,195.388 +22,2.7726,2.9191,6.903,2.4493,1,298.712,2.297,31.372,222.798 +19,4.7148,4.8969,4.715,4.9353,1,3.5303,2.3594,5.977,4.0377 +22,03.05,1.1043,3.291,1.4175,1,334.701,5.887,237.194,239.903 +17,6.2547,4.7159,2.651,2.6402,1,139.331,4.932,293.725,237.728 +16,4.3432,2.4382,9.257,3.4116,0,154.988,6.256,72.08,149.117 +18,5.0402,3.491,291,6.261,0,168.901,6.784,721.552,6.4448 +15,5.8345,1.626,4.364,1.7712,0,10.2578,2.0219,5.4872,10.311 +23,2.8318,2.3005,3.503,4.1984,1,470.829,1.9158,592.246,4.0892 +21,2.4018,7.657,862,1.1838,1,452.916,388,961.302,2.8849 +22,8.9238,9.199,1.859,2.4665,1,435.008,2.1733,632.081,168.967 +18,4.9035,5.3041,1.895,3.1532,1,5.3223,1.0472,960.942,139.163 +19,4.7088,3.9674,6.936,3.3558,1,11.6722,1.3724,386.754,135.258 +24,1.3205,5.3503,4.066,3.6416,1,306.113,3.746,465.181,5.9463 +24,5.4818,6.2829,782,4.3299,0,485.186,2.1259,500.532,5.6377 +24,5.9875,9.2188,709,1.9643,0,302.409,1.1287,924.708,237.536 +16,6.0296,1.7869,192,3.5332,1,163.551,1.8964,386.478,150.906 +18,7.3633,2.9555,5.629,3.6609,1,408.702,1.2817,983.584,196.669 +26,2.5973,9.7579,7.429,1.5014,1,6.7715,1.466,547.695,9.0843 +24,3.27,3.7119,633,4.8408,0,440.871,2.1105,22.594,202.483 +12,8.2966,2.256,0.6,4.3261,0,487.338,1.6575,11.2651,173.371 +14,9.5245,1.4764,7.396,1.4493,1,483.826,1.3027,181.144,8.403 +19,2.2234,2.634,568,3.3753,1,7.3848,6.047,4.889,172.247 +25,5.4788,9.8992,7.314,3.589,0,274.804,1.873,695.387,222.149 +20,2.9276,2.7887,2.727,2.1574,1,29.246,8.256,521.735,5.1296 +27,1.5407,9.2354,5.719,4.3187,1,9.7459,1.2875,740.545,131.432 +25,3.9295,9.9589,2.423,3.4511,1,273.389,1.695,78.444,231.996 +30,2.2932,5.9984,8.388,3.2908,1,323.269,2.3302,93.205,197.136 +12,7.3894,332,4.806,1.1042,1,164.481,2.701,12.5828,14.887 +17,5.8035,8.159,6.429,2.0392,0,15.784,2.6725,194.242,1.6744 +27,2.2945,4.8159,7.941,2.1696,1,3.0119,2.6027,552.792,9.7518 +29,1.0832,4.0617,8.953,3.6683,0,478.413,2.9133,138.229,156.184 +19,8.2734,6.0618,7.321,3.092,0,401.808,2.7253,10.1795,9.8319 +27,2.5857,4.3885,1.488,4.293,0,379.725,2.9142,669.674,23.93 +26,6.4559,9.3408,8.545,1.5385,1,1.0889,2.6618,727.464,180.814 +22,4.0323,5.3474,6.186,2.3652,1,312.155,3.375,844.966,4.49 +21,6.2694,6.9373,6.094,3.6837,1,9.0314,1.313,916.589,11.7693 +23,3.8409,8.9649,9.213,3.7178,1,330.859,2.285,448.074,9.2153 +25,1.7825,1.4687,2.488,2.4527,1,310.578,1.6359,980.076,142.522 +22,3.1966,2.2973,2.396,5.847,0,425.963,1.5893,4.7508,10.7175 +24,2.6925,1.0732,5.132,1.4645,1,12.7717,2.7665,871.426,5.7096 +24,4.8522,1.3964,7.509,1.2735,1,1.3731,2.9091,328.261,173.849 +16,6.9246,5.1258,4.472,3.9051,1,457.055,7.789,922.497,2.5599 +22,3.3743,3.2118,6.339,8.999,0,454.318,1.7469,230.378,12.7712 +26,1.1086,4.2317,4.525,2.3246,1,22.793,1.3933,743.584,7.4438 +23,5.6704,9.8249,6.104,3.3536,0,3.9044,1.6402,431.202,231.967 +15,6.4518,1.567,8.223,4.8239,0,248.984,1.5952,38.765,7.2855 +14,9.6658,5.4081,1.805,4.9962,1,262.007,2.7424,6.8825,8.1826 +18,6.3052,9.887,6.954,4.7646,0,410.863,2.6884,708.853,169.701 +18,5.2406,3.185,7.874,3.5912,1,358.551,3.682,183.599,3.0834 +16,6.1606,5.2753,4.471,3.7322,1,3.5402,1.0353,468.363,7.791 +18,9.3511,9.4663,3.232,3.7961,0,352.669,2.2583,149.895,16.702 +13,8.4554,3.9123,135,4.313,1,6.787,2.052,608.433,7.381 +18,3.9068,6.491,7.971,4.7589,1,4.4736,1.8936,238.751,7.464 +24,3.1353,3.8816,3.279,2.2285,0,199.304,2.9814,598.453,1.981 +19,3.3637,1.4574,3.573,2.0826,1,3.8682,1.0108,94.715,3.6055 +20,5.5398,2.2999,336,2.3023,1,414.634,1.5457,921.709,145.007 +20,7.6964,6.1809,4.987,3.2991,1,231.565,2.9375,20.846,10.9612 +17,5.529,6.742,7.025,3.8772,1,293.502,2.0867,10.8194,3.7446 +26,1.6102,4.6472,7.719,4.3527,0,288.432,1.946,5.2234,1.8726 +18,7.5122,6.0946,3.926,2.2811,1,489.055,4.642,83.022,1.3518 +15,8.2537,4.2186,6.631,1.8169,1,457.891,0.74,256.815,2.0486 +17,3.6055,1.913,7.207,4.9168,1,424.564,1.1324,291.098,2.3058 +21,6.9771,9.8552,2.969,1.1594,0,191.635,1.3945,233.983,2.0715 +17,4.8393,3.6712,966,1.11,0,7.255,1.4916,841.683,1.3219 +19,9.2021,7.7858,8.947,3.577,0,295.934,2.7064,979.113,167.287 +12,8.607,3.2565,6.771,8.983,0,220.158,3.216,757.635,225.904 +21,5.7289,4.7502,6.481,1.997,1,11.2763,7.451,825.342,205.435 +13,7.2235,3.8846,589,1.4619,0,4.8846,4.309,624.295,6.3805 +16,8.9501,3.4254,8.179,8.436,0,218.047,2.2059,533.487,4.9027 +19,5.4615,2.185,5.661,2.8985,1,325.434,2.9117,724.362,1.1499 +24,3.8193,3.6002,8.479,1.8676,1,312.695,2.6819,4.5405,3.7448 +26,7.783,8.8949,9.746,2.3112,1,386.961,2.1699,7.0787,136.265 +25,2.9806,6.9039,9.571,9.793,0,233.277,646,690.401,23.955 +19,4.4968,1.4542,8.561,3.8393,1,16.082,1.0411,341.719,206.168 +18,8.7915,5.9116,109,1.5736,1,26.935,2.5909,493.946,12.3581 +25,7.5198,8.9223,8.857,1.7136,1,487.503,1.9592,784.173,10.1629 +21,4.6343,7.2003,751,1.2608,1,2.2545,6.288,581.386,3.5478 +25,2.9327,1.4868,8.512,2.172,1,264.333,1.3995,807.209,10.0462 +21,4.2037,8.6783,2.802,2.3179,0,164.632,2.638,424.964,142.766 +21,3.5569,3.0154,6.101,2.6483,0,5.2675,1.5624,294.549,142.914 +24,2.5848,4.5408,381,4.8378,1,217.335,2.7031,242.489,133.811 +14,7.69,5.2614,7.712,4.5235,0,320.582,1.162,140.364,197.765 +27,3.2686,8.5051,1.117,3.047,1,264.083,1.8417,4.6429,12.242 +23,5.0875,9.3161,4.107,1.945,1,1.4588,6.993,6.2618,11.3484 +29,4.4727,9.2965,8.174,3.0613,1,289.559,2.9712,278.289,7.3386 +7,9.8387,795,6.953,4.483,1,11.6001,1.953,285.628,4.3258 +24,4.5198,9.2189,6,3.5517,1,170.738,1.8519,387.967,337 +20,1.7198,5.439,403,1.9504,0,156.102,7.691,595.701,7.7304 +24,1.8084,2.6577,419,4.1885,0,429.257,2.6474,761.707,151.939 +15,6.3168,5.1499,6.735,4.7126,1,2.3787,3.658,205.728,134.135 +22,6.3943,4.7993,9.689,2.0856,1,173.998,1.2878,761.656,12.7324 +21,4.7688,6.0471,6.553,2.3028,1,197.408,5.561,14.76,18.537 +22,4.8866,4.7945,2.244,2.9507,0,309.417,2.3983,988.807,5.5883 +30,1.4854,9.3438,3.552,9.857,0,394.482,1.0543,292.183,162.849 +16,5.6489,2.4055,9.767,4.6367,0,363.833,5.601,838.962,14.572 +17,5.5427,2.7402,2.241,2.165,0,376.311,2.1777,198.561,8.1358 +30,2.3459,9.2074,5.615,8.341,1,9.6194,2.4517,951.136,5.245 +21,1.9346,7.674,4.005,3.8137,0,455.869,1.3872,828.361,135.046 +29,2.1122,6.0956,7.683,1.0958,1,207.074,1.1365,365.795,226.836 +29,1.9093,6.8174,8.674,7.176,1,5.555,1.8964,427.257,1.8324 +21,6.4874,5.0554,3.408,2.8144,1,334.048,1.9542,1.38,228.716 +27,2.7683,6.9423,6.604,3.3575,1,302.001,1.9822,258.918,11.1542 +18,3.2629,1.7275,549,2.8478,1,6.2979,8.273,296.403,17.041 +31,2.5621,8.5263,2.784,3.2826,1,479.934,2.8239,458.211,192.769 +10,9.6205,1.4003,2.719,5.776,1,280.782,6.403,147.659,3.6364 +12,8.6916,4.1981,5.386,2.3801,0,234.632,1.1225,483.979,1.079 \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/diagrams/images/class_diagram_mermaid.png b/examples/object_oriented_agentic_approach/resources/diagrams/images/class_diagram_mermaid.png new file mode 100644 index 0000000..5117163 Binary files /dev/null and b/examples/object_oriented_agentic_approach/resources/diagrams/images/class_diagram_mermaid.png differ diff --git a/examples/object_oriented_agentic_approach/resources/diagrams/src/uml.mmd b/examples/object_oriented_agentic_approach/resources/diagrams/src/uml.mmd new file mode 100644 index 0000000..095144c --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/diagrams/src/uml.mmd @@ -0,0 +1,92 @@ +classDiagram + + %% ========================== + %% Abstract Classes + %% ========================== + class BaseAgent { + - model_name: str + - messages: ChatMessages + - tool_manager: ToolManager + - logger: Logger + - language_model_interface: LanguageModelInterface + + + __init__(developer_prompt: str, model_name: str) + + setup_tools(): void %% abstract + + add_context(content: str): void + + add_message(content: str): void + + task(user_task: str, tool_call_enabled: bool, return_tool_response_as_is: bool): str + } + + class ToolInterface { + + get_definition(): Dict[str, Any] + + run(arguments: Dict[str, Any]): str + } + + class LanguageModelInterface { + + generate_completion( + model: str, + messages: List + + + __init__(developer_prompt: str) + + add_developer_message(content: str): void + + add_user_message(content: str): void + + add_assistant_message(content: str): void + + get_messages(): List + } + + class ToolManager { + - tools: Dict[str, ToolInterface] + - logger: Logger + - language_model_interface: LanguageModelInterface + + + __init__() + + register_tool(tool: ToolInterface): void + + get_tool_definitions(): List + + handle_tool_call_sequence( + response: str, + return_tool_response_as_is: bool, + messages: ChatMessages + ): str + } + + class OpenAILanguageModel { + - openai_client: OpenAI + - logger: Logger + + + __init__() + + generate_completion( + model: str, + messages: List ChatMessages : uses + BaseAgent --> LanguageModelInterface : uses + BaseAgent --> ToolManager : optionally uses + + ToolManager "0..*" --> "1" ToolInterface : manages + ToolManager --> ChatMessages : uses + ToolManager --> LanguageModelInterface : uses + + LanguageModelInterface <|-- OpenAILanguageModel + OpenAILanguageModel --> OpenAIClientFactory : uses \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/docker/dockerfile b/examples/object_oriented_agentic_approach/resources/docker/dockerfile new file mode 100644 index 0000000..baa1d8c --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/docker/dockerfile @@ -0,0 +1,15 @@ +FROM python:3.10 + +RUN apt-get update && \ + apt-get install -y build-essential && \ + rm -rf /var/lib/apt/lists/* + +# Create a non-root user +RUN useradd -m sandboxuser +USER sandboxuser +WORKDIR /home/sandboxuser + +COPY requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt + +CMD ["python", "--version"] \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/docker/requirements.txt b/examples/object_oriented_agentic_approach/resources/docker/requirements.txt new file mode 100644 index 0000000..572ee45 --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/docker/requirements.txt @@ -0,0 +1,5 @@ +numpy==1.23.5 +pandas==1.5.3 +matplotlib==3.7.2 +seaborn==0.12.2 +scikit-learn==1.2.2 \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/images/AgenticWorkflow.png b/examples/object_oriented_agentic_approach/resources/images/AgenticWorkflow.png new file mode 100644 index 0000000..e8a8845 Binary files /dev/null and b/examples/object_oriented_agentic_approach/resources/images/AgenticWorkflow.png differ diff --git a/examples/object_oriented_agentic_approach/resources/object_oriented_agents/core_classes/agent_signature.py b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/core_classes/agent_signature.py new file mode 100644 index 0000000..a441511 --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/core_classes/agent_signature.py @@ -0,0 +1,37 @@ +# object_oriented_agents/core_classes/agent_signature.py +from typing import Optional, Dict, Any, List +from .tool_manager import ToolManager + +class AgentSignature: + """ + Encapsulates the logic to produce an agent's 'signature' data: + - The developer prompt + - The model name + - The list of tool definitions + """ + + def __init__(self, developer_prompt: str, model_name: str, tool_manager: Optional[ToolManager] = None): + self.developer_prompt = developer_prompt + self.model_name = model_name + self.tool_manager = tool_manager + + def to_dict(self) -> Dict[str, Any]: + """ + Return a dictionary containing: + 1. The developer prompt + 2. The model name + 3. A list of tool definitions (function schemas) + """ + if self.tool_manager: + # Each item in get_tool_definitions() looks like {"type": "function", "function": {...}} + tool_definitions = self.tool_manager.get_tool_definitions() + # We need the whole definition for the final signature + functions = [t for t in tool_definitions] + else: + functions = [] + + return { + "developer_prompt": self.developer_prompt, + "model_name": self.model_name, + "tools": functions + } \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/object_oriented_agents/core_classes/base_agent.py b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/core_classes/base_agent.py new file mode 100644 index 0000000..24e77a1 --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/core_classes/base_agent.py @@ -0,0 +1,95 @@ +# object_oriented_agents/core_classes/base_agent.py +from abc import ABC, abstractmethod +from typing import Optional +from .chat_messages import ChatMessages +from .tool_manager import ToolManager +from ..utils.logger import get_logger +from ..services.language_model_interface import LanguageModelInterface +from .agent_signature import AgentSignature + + +class BaseAgent(ABC): + """ + An abstract base agent that defines the high-level approach to handling user tasks + and orchestrating calls to the OpenAI API. + """ + + def __init__( + self, + developer_prompt: str, + model_name: str, + logger=None, + language_model_interface: LanguageModelInterface = None + ): + self.developer_prompt = developer_prompt + self.model_name = model_name + self.messages = ChatMessages(developer_prompt) + self.tool_manager: Optional[ToolManager] = None + self.logger = logger or get_logger(self.__class__.__name__) + self.language_model_interface = language_model_interface + + @abstractmethod + def setup_tools(self) -> None: + pass + + def add_context(self, content: str) -> None: + self.logger.debug(f"Adding context: {content}") + self.messages.add_user_message(content) + + def add_message(self, content: str) -> None: + self.logger.debug(f"Adding user message: {content}") + self.messages.add_user_message(content) + + def task(self, user_task: str, tool_call_enabled: bool = True, return_tool_response_as_is: bool = False) -> str: + if self.language_model_interface is None: + error_message = "Error: Cannot execute task without the LanguageModelInterface." + self.logger.error(error_message) + raise ValueError(error_message) + + self.logger.debug(f"Starting task: {user_task} (tool_call_enabled={tool_call_enabled})") + + # Add user message + self.add_message(user_task) + + tools = [] + if tool_call_enabled and self.tool_manager: + tools = self.tool_manager.get_tool_definitions() + self.logger.debug(f"Tools available: {tools}") + + # Submit to OpenAI + self.logger.debug("Sending request to language model interface...") + response = self.language_model_interface.generate_completion( + model=self.model_name, + messages=self.messages.get_messages(), + tools=tools, + ) + + tool_calls = response.choices[0].message.tool_calls + if tool_call_enabled and self.tool_manager and tool_calls: + self.logger.debug(f"Tool calls requested: {tool_calls}") + return self.tool_manager.handle_tool_call_sequence( + response, + return_tool_response_as_is, + self.messages, + self.model_name + ) + + # No tool call, normal assistant response + response_message = response.choices[0].message.content + self.messages.add_assistant_message(response_message) + self.logger.debug("Task completed successfully.") + return response_message + + def signature(self) -> dict: + """ + Return a dictionary with: + - The developer prompt + - The model name + - The tool definitions (function schemas) + """ + signature_obj = AgentSignature( + developer_prompt=self.developer_prompt, + model_name=self.model_name, + tool_manager=self.tool_manager + ) + return signature_obj.to_dict() \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/object_oriented_agents/core_classes/chat_messages.py b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/core_classes/chat_messages.py new file mode 100644 index 0000000..0068466 --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/core_classes/chat_messages.py @@ -0,0 +1,23 @@ +# object_oriented_agents/core_classes/chat_messages.py +from typing import List, Dict + +class ChatMessages: + """ + Stores all messages in a conversation (developer, user, assistant). + """ + + def __init__(self, developer_prompt: str): + self.messages: List[Dict[str, str]] = [] + self.add_developer_message(developer_prompt) + + def add_developer_message(self, content: str) -> None: + self.messages.append({"role": "developer", "content": content}) + + def add_user_message(self, content: str) -> None: + self.messages.append({"role": "user", "content": content}) + + def add_assistant_message(self, content: str) -> None: + self.messages.append({"role": "assistant", "content": content}) + + def get_messages(self) -> List[Dict[str, str]]: + return self.messages \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/object_oriented_agents/core_classes/tool_interface.py b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/core_classes/tool_interface.py new file mode 100644 index 0000000..1466c1d --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/core_classes/tool_interface.py @@ -0,0 +1,33 @@ +# object_oriented_agents/core_classes/tool_interface.py +from abc import ABC, abstractmethod +from typing import Dict, Any + +class ToolInterface(ABC): + """ + An abstract class for any 'tool' that an agent can call. + Every tool must provide two things: + 1) A definition (in JSON schema format) as expected by OpenAI function calling specifications. + 2) A 'run' method to handle the logic given the arguments. + """ + + @abstractmethod + def get_definition(self) -> Dict[str, Any]: + """ + Return the JSON/dict definition of the tool's function. + Example: + { + "function": { + "name": "", + "description": "", + "parameters": { } + } + } + """ + pass + + @abstractmethod + def run(self, arguments: Dict[str, Any]) -> str: + """ + Execute the tool using the provided arguments and return a result as a string. + """ + pass \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/object_oriented_agents/core_classes/tool_manager.py b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/core_classes/tool_manager.py new file mode 100644 index 0000000..c9e324b --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/core_classes/tool_manager.py @@ -0,0 +1,102 @@ +# object_oriented_agents/core_classes/tool_manager.py + +import json +from typing import Dict, Any, List +from .chat_messages import ChatMessages +from .tool_interface import ToolInterface +from ..utils.logger import get_logger +from ..services.language_model_interface import LanguageModelInterface + +class ToolManager: + """ + Manages one or more tools. Allows you to: + - Register multiple tools + - Retrieve their definitions + - Invoke the correct tool by name + - Handle the entire tool call sequence + """ + + + def __init__(self, logger=None, language_model_interface: LanguageModelInterface = None): + self.tools = {} + self.logger = logger or get_logger(self.__class__.__name__) + self.language_model_interface = language_model_interface + + def register_tool(self, tool: ToolInterface) -> None: + """ + Register a tool by using its function name as the key. + """ + tool_def = tool.get_definition() + tool_name = tool_def["function"]["name"] + self.tools[tool_name] = tool + self.logger.debug(f"Registered tool '{tool_name}': {tool_def}") + + def get_tool_definitions(self) -> List[Dict[str, Any]]: + """ + Return the list of tool definitions in the format expected by the OpenAI API. + """ + definitions = [] + for name, tool in self.tools.items(): + tool_def = tool.get_definition()["function"] + self.logger.debug(f"Tool definition retrieved for '{name}': {tool_def}") + definitions.append({"type": "function", "function": tool_def}) + return definitions + + def handle_tool_call_sequence( + self, + response, + return_tool_response_as_is: bool, + messages: ChatMessages, + model_name: str + ) -> str: + """ + If the model wants to call a tool, parse the function arguments, invoke the tool, + then optionally return the tool's raw output or feed it back to the model for a final answer. + """ + # We take the first tool call from the model’s response + first_tool_call = response.choices[0].message.tool_calls[0] + tool_name = first_tool_call.function.name + self.logger.info(f"Handling tool call: {tool_name}") + + args = json.loads(first_tool_call.function.arguments) + self.logger.info(f"Tool arguments: {args}") + + if tool_name not in self.tools: + error_message = f"Error: The requested tool '{tool_name}' is not registered." + self.logger.error(error_message) + raise ValueError(error_message) + + # 1. Invoke the tool + self.logger.debug(f"Invoking tool '{tool_name}'") + tool_response = self.tools[tool_name].run(args) + self.logger.info(f"Tool '{tool_name}' response: {tool_response}") + + # If returning the tool response "as is," just store and return it + if return_tool_response_as_is: + self.logger.debug("Returning tool response as-is without further LLM calls.") + messages.add_assistant_message(tool_response) + return tool_response + + self.logger.debug(f"Tool call: {first_tool_call}") + # Otherwise, feed the tool's response back to the LLM for a final answer + function_call_result_message = { + "role": "tool", + "content": tool_response, + "tool_call_id": first_tool_call.id + } + + complete_payload = messages.get_messages() + complete_payload.append(response.choices[0].message) + complete_payload.append(function_call_result_message) + + self.logger.debug("Calling the model again with the tool response to get the final answer.") + # Use the injected openai_client here + response_after_tool_call = self.language_model_interface.generate_completion( + model=model_name, + messages=complete_payload + ) + + final_message = response_after_tool_call.choices[0].message.content + self.logger.debug("Received final answer from model after tool call.") + messages.add_assistant_message(final_message) + return final_message \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/object_oriented_agents/services/language_model_interface.py b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/services/language_model_interface.py new file mode 100644 index 0000000..2473181 --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/services/language_model_interface.py @@ -0,0 +1,28 @@ +# object_oriented_agents/services/language_model_interface.py + +from abc import ABC, abstractmethod +from typing import Dict, Any, List, Optional + + +class LanguageModelInterface(ABC): + """ + Interface for interacting with a language model. + Decouples application logic from a specific LLM provider (e.g., OpenAI). + """ + + @abstractmethod + def generate_completion( + self, + model: str, + messages: List[Dict[str, str]], + tools: Optional[List[Dict[str, Any]]] = None + ) -> Dict[str, Any]: + """ + Generate a completion (response) from the language model given a set of messages and optional tool definitions. + + :param model: The name of the model to call. + :param messages: A list of messages, where each message is a dict with keys 'role' and 'content'. + :param tools: Optional list of tool definitions. + :return: A dictionary representing the model's response. The shape of this dict follows the provider's format. + """ + pass \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/object_oriented_agents/services/openai_factory.py b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/services/openai_factory.py new file mode 100644 index 0000000..f1327de --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/services/openai_factory.py @@ -0,0 +1,27 @@ +# object_oriented_agents/services/openai_factory.py +import os +from openai import OpenAI +from ..utils.logger import get_logger + +logger = get_logger("OpenAIFactory") + +class OpenAIClientFactory: + @staticmethod + def create_client(api_key: str = None) -> OpenAI: + """ + Create and return an OpenAI client instance. + The API key can be passed explicitly or read from the environment. + """ + final_api_key = OpenAIClientFactory._resolve_api_key(api_key) + return OpenAI(api_key=final_api_key) + + @staticmethod + def _resolve_api_key(api_key: str = None) -> str: + if api_key: + return api_key + env_key = os.getenv("OPENAI_API_KEY") + if env_key: + return env_key + error_msg = "No OpenAI API key provided. Set OPENAI_API_KEY env variable or provide as an argument." + logger.error(error_msg) + raise ValueError(error_msg) diff --git a/examples/object_oriented_agentic_approach/resources/object_oriented_agents/services/openai_language_model.py b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/services/openai_language_model.py new file mode 100644 index 0000000..f0f4cd2 --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/services/openai_language_model.py @@ -0,0 +1,46 @@ +# object_oriented_agents/services/openai_language_model.py + +from typing import List, Dict, Any, Optional +from .language_model_interface import LanguageModelInterface +from .openai_factory import OpenAIClientFactory +from ..utils.logger import get_logger + +class OpenAILanguageModel(LanguageModelInterface): + """ + A concrete implementation of LanguageModelInterface that uses the OpenAI API. + """ + + def __init__(self, openai_client=None, api_key: Optional[str] = None, logger=None): + self.logger = logger or get_logger(self.__class__.__name__) + # If no client is provided, create one using the factory + self.openai_client = openai_client or OpenAIClientFactory.create_client(api_key) + + def generate_completion( + self, + model: str, + messages: List[Dict[str, str]], + tools: Optional[List[Dict[str, Any]]] = None + ) -> Dict[str, Any]: + """ + Calls the OpenAI API to generate a chat completion using the provided messages and tools. + """ + kwargs = { + "model": model, + "messages": messages + } + + if tools: + # Passing tools directly to the API depends on how the OpenAI implementation expects them. + # Adjust this as necessary if the API format changes. + kwargs["tools"] = tools + + self.logger.debug("Generating completion with OpenAI model.") + self.logger.debug(f"Request: {kwargs}") + try: + response = self.openai_client.chat.completions.create(**kwargs) + self.logger.debug("Received response from OpenAI.") + self.logger.debug(f"Response: {response}") + return response + except Exception as e: + self.logger.error(f"OpenAI call failed: {str(e)}", exc_info=True) + raise e \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/object_oriented_agents/utils/logger.py b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/utils/logger.py new file mode 100644 index 0000000..6307bdd --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/utils/logger.py @@ -0,0 +1,28 @@ +# object_oriented_agents/utils/logger.py +import logging +from typing import Optional + +def get_logger(name: str, level: int = logging.INFO, formatter: Optional[logging.Formatter] = None) -> logging.Logger: + """ + Return a logger instance with a given name and logging level. + If no formatter is provided, a default formatter will be used. + """ + logger = logging.getLogger(name) + logger.setLevel(level) + + if not logger.handlers: + # Create a console handler + ch = logging.StreamHandler() + ch.setLevel(level) + + # Use a default formatter if none is provided + if formatter is None: + formatter = logging.Formatter( + '%(asctime)s - %(name)s - %(levelname)s - %(message)s' + ) + ch.setFormatter(formatter) + + # Add the handler to the logger + logger.addHandler(ch) + + return logger \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/object_oriented_agents/utils/openai_util.py b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/utils/openai_util.py new file mode 100644 index 0000000..67f2bb0 --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/object_oriented_agents/utils/openai_util.py @@ -0,0 +1,36 @@ +# object_oriented_agents/utils/openai_util.py + +from typing import List, Dict, Any +from .logger import get_logger +from ..services.openai_factory import OpenAIClientFactory + +logger = get_logger("OpenAIUtils") + +def call_openai_chat_completion( + model: str, + messages: List[Dict[str, str]], + tools: List[Dict[str, Any]] = None, + openai_client=None, + api_key: str = None +) -> Any: + """ + A utility function to call OpenAI's chat completion. + If openai_client is provided, use it, otherwise create a new one. + """ + if openai_client is None: + openai_client = OpenAIClientFactory.create_client(api_key=api_key) + + kwargs = { + "model": model, + "messages": messages, + } + + if tools: + kwargs["tools"] = tools + + try: + response = openai_client.chat.completions.create(**kwargs) + return response + except Exception as e: + logger.error(f"OpenAI call failed: {str(e)}") + raise e \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/registry/agents/file_access_agent.py b/examples/object_oriented_agentic_approach/resources/registry/agents/file_access_agent.py new file mode 100644 index 0000000..7b163d5 --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/registry/agents/file_access_agent.py @@ -0,0 +1,47 @@ +import logging +import os + +# Import base classes +from ...object_oriented_agents.utils.logger import get_logger +from ...object_oriented_agents.core_classes.base_agent import BaseAgent +from ...object_oriented_agents.core_classes.tool_manager import ToolManager +from ...object_oriented_agents.services.openai_language_model import OpenAILanguageModel + +# Import the Tool +from ..tools.file_access_tool import FileAccessTool + +# Set the verbosity level: DEBUG for verbose output, INFO for normal output, and WARNING/ERROR for minimal output +myapp_logger = get_logger("MyApp", level=logging.INFO) + +# Create a LanguageModelInterface instance using the OpenAILanguageModel +language_model_api_interface = OpenAILanguageModel(api_key=os.getenv("OPENAI_API_KEY"), logger=myapp_logger) + + +class FileAccessAgent(BaseAgent): + """ + Agent that can only use the 'safe_file_access' tool to read CSV files. + """ + # We pass the Agent attributes in the constructor + def __init__(self, + developer_prompt: str = """ + You are a helpful data science assistant. The user will provide the name of a CSV file that contains relational data. The file is in the directory ./resources/data + + Instructions: + 1. When the user provides the CSV file name, use the 'safe_read_file' tool to read and display the first 15 lines of that file. + 2. If the specified file does not exist in the provided directory, return an appropriate error message (e.g., "Error: The specified file does not exist in the provided directory"). + 3. The user may request data analysis based on the file’s contents, but you should NOT perform or write code for any data analysis. Your only task is to read and return the first 6 lines of the file. + + Do not include any additional commentary or code not related to reading the file. + """, + model_name: str = "gpt-4o", + logger = myapp_logger, + language_model_interface = language_model_api_interface): + super().__init__(developer_prompt=developer_prompt, model_name=model_name, logger=logger, language_model_interface=language_model_interface) + self.setup_tools() + + def setup_tools(self) -> None: + self.logger.debug("Setting up tools for FileAccessAgent.") + # Pass the openai_client to ToolManager + self.tool_manager = ToolManager(logger=self.logger, language_model_interface=self.language_model_interface) + # Register the one tool this agent is allowed to use + self.tool_manager.register_tool(FileAccessTool(logger=self.logger)) \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/registry/agents/python_code_exec_agent.py b/examples/object_oriented_agentic_approach/resources/registry/agents/python_code_exec_agent.py new file mode 100644 index 0000000..a125325 --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/registry/agents/python_code_exec_agent.py @@ -0,0 +1,61 @@ +import logging +import os + +# Import base classes +from ...object_oriented_agents.utils.logger import get_logger +from ...object_oriented_agents.core_classes.base_agent import BaseAgent +from ...object_oriented_agents.core_classes.tool_manager import ToolManager +from ...object_oriented_agents.services.openai_language_model import OpenAILanguageModel + +# Import the Python Code Interpreter tool +from ..tools.python_code_interpreter_tool import PythonExecTool + +# Set the verbosity level: DEBUG for verbose output, INFO for normal output, and WARNING/ERROR for minimal output +myapp_logger = get_logger("MyApp", level=logging.INFO) + +# Create a LanguageModelInterface instance using the OpenAILanguageModel +language_model_api_interface = OpenAILanguageModel(api_key=os.getenv("OPENAI_API_KEY"), logger=myapp_logger) + +class PythonExecAgent(BaseAgent): + """ + An agent specialized in executing Python code in a Docker container. + """ + + def __init__( + self, + developer_prompt: str = """ + You are a helpful data science assistant. Your tasks include analyzing CSV data and generating Python code to address user queries. Follow these guidelines: + + 1. The user will provide the name of a CSV file located in the directory `/home/sandboxuser`. + 2. The user will also supply context, including: + - Column names and their descriptions. + - Sample data from the CSV (headers and a few rows) to help understand data types. + 3. Analyze the provided data using Python machine learning libraries and generate appropriate code to fulfill the user's request. + 4. Generate Python code to analyze the data and call the tool `execute_python_code` to run the code inside a Docker container. + 5. Execute the code in the container and return the output. + + Note: All files referenced in the prompt are located in `/home/sandboxuser`. + """, + model_name: str = "o1", + logger=myapp_logger, + language_model_interface = language_model_api_interface + ): + super().__init__( + developer_prompt=developer_prompt, + model_name=model_name, + logger=logger, + language_model_interface=language_model_interface + ) + self.setup_tools() + + def setup_tools(self) -> None: + """ + Create a ToolManager, instantiate the PythonExecTool and register it with the ToolManager. + """ + self.tool_manager = ToolManager(logger=self.logger, language_model_interface=self.language_model_interface) + + # Create the Python execution tool + python_exec_tool = PythonExecTool() + + # Register the Python execution tool + self.tool_manager.register_tool(python_exec_tool) \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/registry/tools/file_access_tool.py b/examples/object_oriented_agentic_approach/resources/registry/tools/file_access_tool.py new file mode 100644 index 0000000..b26a2fd --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/registry/tools/file_access_tool.py @@ -0,0 +1,105 @@ +from typing import Dict, Any +import pandas as pd +import subprocess +import os + +from ...object_oriented_agents.utils.logger import get_logger +from ...object_oriented_agents.core_classes.tool_interface import ToolInterface + +class FileAccessTool(ToolInterface): + """ + A tool to read CSV files and copy them to a Docker container. + """ + + def __init__(self, logger=None): + self.logger = logger or get_logger(self.__class__.__name__) + + def get_definition(self) -> Dict[str, Any]: + self.logger.debug("Returning tool definition for safe_file_access") + return { + "function": { + "name": "safe_file_access", + "description": ( + "Read the contents of a file in a secure manner " + "and transfer it to the Python code interpreter docker container" + ), + "parameters": { + "type": "object", + "properties": { + "filename": { + "type": "string", + "description": "Name of the file to read" + } + }, + "required": ["filename"] + } + } + } + + def run(self, arguments: Dict[str, Any]) -> str: + filename = arguments["filename"] + self.logger.debug(f"Running safe_file_access with filename: {filename}") + + return self.safe_file_access(filename) + + def safe_file_access(self, filename: str) -> str: + if not filename.endswith('.csv'): + error_msg = "Error: The file is not a CSV file." + self.logger.warning(f"{error_msg} - Filename provided: {filename}") + return error_msg + + # Ensure the path is correct + if not os.path.dirname(filename): + + filename = os.path.join('./resources/data', filename) + + self.logger.debug(f"Attempting to read file at path: {filename}") + try: + df = pd.read_csv(filename) + self.logger.debug(f"File '{filename}' loaded successfully.") + copy_output = self.copy_file_to_container(filename) + head_str = df.head(15).to_string() + return f"{copy_output}\nThe file content for the first 15 rows is:\n{head_str}" + except FileNotFoundError: + error_msg = f"Error: The file '{filename}' was not found." + self.logger.error(error_msg) + return error_msg + except Exception as e: + error_msg = f"Error while reading the CSV file: {str(e)}" + self.logger.error(error_msg, exc_info=True) + return error_msg + + def copy_file_to_container(self, local_file_name: str, container_name: str = "sandbox") -> str: + container_home_path = "/home/sandboxuser" + self.logger.debug(f"Copying '{local_file_name}' to container '{container_name}'.") + + if not os.path.isfile(local_file_name): + error_msg = f"The local file '{local_file_name}' does not exist." + self.logger.error(error_msg) + raise FileNotFoundError(error_msg) + + # Check if container is running + check_container_cmd = ["docker", "inspect", "-f", "{{.State.Running}}", container_name] + result = subprocess.run(check_container_cmd, capture_output=True, text=True) + if result.returncode != 0 or result.stdout.strip() != "true": + error_msg = f"The container '{container_name}' is not running." + self.logger.error(error_msg) + raise RuntimeError(error_msg) + + # Copy the file into the container + container_path = f"{container_name}:{container_home_path}/{os.path.basename(local_file_name)}" + self.logger.debug(f"Running command: docker cp {local_file_name} {container_path}") + subprocess.run(["docker", "cp", local_file_name, container_path], check=True) + + # Verify the file was copied + verify_cmd = ["docker", "exec", container_name, "test", "-f", + f"{container_home_path}/{os.path.basename(local_file_name)}"] + verify_result = subprocess.run(verify_cmd, capture_output=True, text=True) + if verify_result.returncode != 0: + error_msg = f"Failed to verify the file '{local_file_name}' in the container '{container_name}'." + self.logger.error(error_msg) + raise RuntimeError(error_msg) + + success_msg = f"Copied {local_file_name} into {container_name}:{container_home_path}/." + self.logger.debug(success_msg) + return success_msg \ No newline at end of file diff --git a/examples/object_oriented_agentic_approach/resources/registry/tools/python_code_interpreter_tool.py b/examples/object_oriented_agentic_approach/resources/registry/tools/python_code_interpreter_tool.py new file mode 100644 index 0000000..822c8f6 --- /dev/null +++ b/examples/object_oriented_agentic_approach/resources/registry/tools/python_code_interpreter_tool.py @@ -0,0 +1,66 @@ +import subprocess +from typing import Tuple, Dict, Any + +from ...object_oriented_agents.utils.logger import get_logger +from ...object_oriented_agents.core_classes.tool_interface import ToolInterface + +class PythonExecTool(ToolInterface): + """ + A Tool that executes Python code securely in a container. + """ + + def get_definition(self) -> Dict[str, Any]: + """ + Return the JSON/dict definition of the tool's function + in the format expected by the OpenAI function calling API. + """ + return { + "function": { + "name": "execute_python_code", + "description": "Executes Python code securely in a container. Python version 3.10 is installed in the container. pandas, numpy, matplotlib, seaborn, and scikit-learn are installed in the container.", + "parameters": { + "type": "object", + "properties": { + "python_code": { + "type": "string", + "description": "The Python code to execute" + } + }, + "required": ["python_code"] + } + } + } + + def run(self, arguments: Dict[str, Any]) -> str: + """ + Execute the Python code in a Docker container and return the output. + """ + python_code = arguments["python_code"] + python_code_stripped = python_code.strip('"""') + + output, errors = self._run_code_in_container(python_code_stripped) + if errors: + return f"[Error]\n{errors}" + + return output + + @staticmethod + def _run_code_in_container(code: str, container_name: str = "sandbox") -> Tuple[str, str]: + """ + Helper function that actually runs Python code inside a Docker container named `sandbox` (by default). + """ + cmd = [ + "docker", "exec", "-i", + container_name, + "python", "-c", "import sys; exec(sys.stdin.read())" + ] + + process = subprocess.Popen( + cmd, + stdin=subprocess.PIPE, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + text=True + ) + out, err = process.communicate(code) + return out, err \ No newline at end of file diff --git a/registry.yaml b/registry.yaml index e888528..ccede46 100644 --- a/registry.yaml +++ b/registry.yaml @@ -1788,3 +1788,11 @@ tags: - usage-api - cost-api + +- title: Build Your Own Code Interpreter: Empowering LLM Agents with Dynamic Tool Calling + path: examples/object_oriented_agentic_approach/Secure_code_interpreter_tool_for_LLM_agents.ipynb + date: 2025-01-26 + authors: + - msingh-openai + tags: + - completions \ No newline at end of file