diff --git a/.Rbuildignore b/.Rbuildignore index c503c4f..1e56ebd 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -1 +1,7 @@ ^\.github$ +^\.git$ +^app\.R$ +^README\.md$ +^\.Rproj\.user$ +^extdata$ +^www$ diff --git a/.gitignore b/.gitignore index 7617d4e..9f0075d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,4 @@ .Rhistory .RData .Ruserdata -/test data +/test data \ No newline at end of file diff --git a/DESCRIPTION b/DESCRIPTION new file mode 100644 index 0000000..904778b --- /dev/null +++ b/DESCRIPTION @@ -0,0 +1,17 @@ +Package: datamap +Title: Interactive Visualization of Data Matrices +Version: 0.1.0 +Authors@R: person("Steven", "Ge", email = "Xijin.Ge@sdstate.edu", role = c("aut", "cre")) +Description: A Shiny application for visualizing data matrices with heatmaps, PCA, and t-SNE. + Allows users to upload, transform, and visualize their data interactively. +License: MIT + file LICENSE +Encoding: UTF-8 +LazyData: true +Roxygen: list(markdown = TRUE) +RoxygenNote: 7.3.2 +Imports: + shiny, + pheatmap, + readxl, + Rtsne, + stats diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..506c070 --- /dev/null +++ b/LICENSE @@ -0,0 +1,2 @@ +YEAR: 2025 +COPYRIGHT HOLDER: Steven Ge diff --git a/NAMESPACE b/NAMESPACE new file mode 100644 index 0000000..2fc780c --- /dev/null +++ b/NAMESPACE @@ -0,0 +1,3 @@ +# Generated by roxygen2: do not edit by hand + +export(run_app) diff --git a/R/datamap-package.R b/R/datamap-package.R new file mode 100644 index 0000000..f5ac63c --- /dev/null +++ b/R/datamap-package.R @@ -0,0 +1,6 @@ +#' @keywords internal +"_PACKAGE" + +## usethis namespace: start +## usethis namespace: end +NULL \ No newline at end of file diff --git a/R/main_app.R b/R/main_app.R new file mode 100644 index 0000000..f54b489 --- /dev/null +++ b/R/main_app.R @@ -0,0 +1,582 @@ +# DataMap: A Shiny app for visualizing data matrices with heatmaps, PCA, and t-SNE +# by Steven Ge 4/5/2025 + +#' Run the DataMap Shiny application +#' +#' @export +#' +#' @return A Shiny application object +#' @examples +#' if (interactive()) { +#' run_app() +#' } +run_app <- function() { + +library(shiny) + + +max_rows_to_show <- 1000 # Maximum number of rows to show row names in the heatmap +default_width <- 600 +default_height <- 600 + +ui <- fluidPage( + + sidebarLayout( + sidebarPanel( + width = 3, + + # Place Upload Files and Reset buttons on the same row + fluidRow( + column(6, + actionButton("show_upload_modal", "Files", + icon = icon("upload")) + ), + column(6, + conditionalPanel( + condition = "output.data_loaded", + actionButton("reset_session", "Reset", + icon = icon("refresh"), + style = "background-color: #f8d7da; color: #721c24;") + ) + ) + ), + + conditionalPanel( + condition = "output.data_loaded", + fluidRow( + column(8, transform_ui("transform"), style = "margin-top: 5px;"), + column(4, uiOutput("transform_status"), style = "margin-top: 5px;") + ) + ), + + # Dynamic UI for selecting row annotation columns + conditionalPanel( + condition = "output.row_annotation_available", + uiOutput("row_annotation_select_ui") + ), + conditionalPanel( + condition = "output.col_annotation_uploaded", + uiOutput("col_annotation_select_ui") + ), + + # Heatmap customization section - only shown after data is loaded and Heatmap tab is active + conditionalPanel( + condition = "output.data_loaded && input['main_tabs'] === 'Heatmap'", + hr(), + # Use the heatmap control UI function from the module + heatmap_control_ui("heatmap") + ), + + # PCA and t-SNE plot control section - only shown when those tabs are active + conditionalPanel( + condition = "output.data_loaded && (input['main_tabs'] === 'PCA' || input['main_tabs'] === 't-SNE')", + hr(), + h4("Plot Settings"), + + # Font size control + fluidRow( + column(3, p("Font:", style = "padding-top: 7px; text-align: right;")), + column(9, sliderInput("global_fontsize", NULL, min = 5, max = 30, value = 12)) + ), + + # Width & Height controls + fluidRow( + column(3, p("Width:", style = "padding-top: 7px; text-align: right;")), + column(9, sliderInput("global_width", NULL, min = 200, max = 2000, value = 600, step = 20)) + ), + + fluidRow( + column(3, p("Height:", style = "padding-top: 7px; text-align: right;")), + column(9, sliderInput("global_height", NULL, min = 200, max = 2000, value = 500, step = 20)) + ) + ) + ), + + mainPanel( + width = 9, + tabsetPanel(id = "main_tabs", selected = "About", + tabPanel("Heatmap", + # Use the heatmap module UI + heatmap_ui("heatmap") + ), + tabPanel("PCA", + pca_plot_ui("pca") + ), + tabPanel("t-SNE", + tsne_plot_ui("tsne") + ), + tabPanel("Code", + code_generation_ui("code_gen") + ), + tabPanel("Data", + fluidRow( + column(12, + div(style = "overflow-x: auto;", + tableOutput("data_preview") + ), + downloadButton("download_data", "Transformed Data") + ) + ) + ), + tabPanel("About", + titlePanel("DataMap: a portable app for visualizing data matrices v0.11"), + img(src = "heatmap.png", width = "375px", height = "300px"), + img(src = "pca.png", width = "384px", height = "329px"), + img(src = "countries_label.png", width = "401px", height = "300px"), + img(src = "tsne.png", width = "335px", height = "300px"), + #img(src = "countries.png", width = "286px", height = "300px"), + includeHTML(datamap_resource("www/help.html")) + ) + ) + #,tags$head(includeHTML("www/google_analytics.html")) + ) + ) +) + +server <- function(input, output, session) { + + # Track if main data is loaded for UI conditionals + output$data_loaded <- reactive({ + return(file_data$data_loaded()) + }) + outputOptions(output, "data_loaded", suspendWhenHidden = FALSE) + + # Switch to Heatmap tab when data is loaded + observe({ + if (file_data$data_loaded()) { + updateTabsetPanel(session, "main_tabs", selected = "Heatmap") + } + }) + + # Show the modal when the button is clicked + output$main_file_upload_ui <- renderUI({ + if (!is.null(file_data$data())) { + # If data is already uploaded + tags$div( + style = "padding: 15px; background-color: #f8f9fa; border-radius: 4px; text-align: center;", + tags$p( + icon("info-circle"), + "Reset the app to upload a new data matrix.", + style = "margin: 0; color: #495057;" + ) + ) + } else { + tags$div( + tags$h4("Data file (Excel, CSV, ...)"), + file_upload_ui("file_upload"), + fluidRow( + column(2, h5("Examples:", style = "margin-top: -8px; text-align: right;")), + column(10, + downloadButton("download_countries", "Countries", style = "margin-top: -15px;"), + downloadButton("download_rnaseq", "RNAseq", style = "margin-top: -15px;"), + downloadButton("download_iris", "Iris", style = "margin-top: -15px;"), + downloadButton("download_scrnaseq", "scRNAseq", style = "margin-top: -15px;"), + align = "left" + ) + ) + ) + } + }) + + observeEvent(input$show_upload_modal, { + showModal(modalDialog( + title = "Upload Files", + + uiOutput("main_file_upload_ui"), + + hr(), + tags$div( + tags$h4("Optional: Column Annotation"), + file_upload_ui("col_annotation_file_upload"), + fluidRow( + column(2, h5("Examples:", style = "margin-top: -8px; text-align: right;")), + column(10, + downloadButton("download_col_rnaseq", "RNA-seq factors", style = "margin-top: -15px;"), + downloadButton("download_col_iris", "Iris column info", style = "margin-top: -15px;"), + align = "left" + ) + ) + ), + hr(), + tags$div( + tags$h4("Optional: Row Annotations"), + file_upload_ui("row_annotation_file_upload"), + fluidRow( + column(2, h5("Examples:", style = "margin-top: -8px; text-align: right;")), + column(10, + downloadButton("download_row_rnaseq", "RNAseq gene info", style = "margin-top: -15px;"), + downloadButton("download_row_scrnaseq", "scRNAseq clusters", style = "margin-top: -15px;"), + align = "left" + ) + ) + ), + + footer = tagList( + modalButton("Close") + ), + size = "m", + easyClose = TRUE + )) + }) + + output$download_iris <- downloadHandler( + filename = function() { + "iris.csv" + }, + content = function(file) { + file.copy(datamap_resource("extdata/iris.csv"), file) + } + ) + output$download_rnaseq <- downloadHandler( + filename = function() { + "RNAseq.csv" + }, + content = function(file) { + file.copy(datamap_resource("extdata/RNAseq.csv"), file) + } + ) + + output$download_scrnaseq <- downloadHandler( + filename = function() { + "scRNAseq_PCA.csv" + }, + content = function(file) { + file.copy(datamap_resource("extdata/scRNAseq_PCA.csv"), file) + } + ) + output$download_countries <- downloadHandler( + filename = function() { + "countries.csv" + }, + content = function(file) { + file.copy(datamap_resource("extdata/countries.csv"), file) + } + ) + output$download_col_rnaseq <- downloadHandler( + filename = function() { + "RNAseq_design.csv" + }, + content = function(file) { + file.copy(datamap_resource("extdata/RNAseq_design.csv"), file) + } + ) + output$download_col_iris <- downloadHandler( + filename = function() { + "iris_column_annot.csv" + }, + content = function(file) { + file.copy(datamap_resource("extdata/iris_column_annot.csv"), file) + } + ) + output$download_row_rnaseq <- downloadHandler( + filename = function() { + "RNAseq_gene_info.csv" + }, + content = function(file) { + file.copy(datamap_resource("extdata/RNAseq_gene_info.csv"), file) + } + ) + output$download_row_scrnaseq <- downloadHandler( + filename = function() { + "scRNAseq_clusters.csv" + }, + content = function(file) { + file.copy(datamap_resource("extdata/scRNAseq_clusters.csv"), file) + } + ) + # Use the file upload module for main data + file_data <- file_upload_server("file_upload") + + # Use a separate file upload module for the column annotation file + col_annotation_file_data <- file_upload_server("col_annotation_file_upload") + + # Use a separate file upload module for the row annotation file + row_annotation_file_data <- file_upload_server("row_annotation_file_upload") + + # Reactive to indicate if column annotation file is uploaded + output$col_annotation_uploaded <- reactive({ + !is.null(col_annotation_file_data$data()) + }) + outputOptions(output, "col_annotation_uploaded", suspendWhenHidden = FALSE) + + output$row_annotation_available <- reactive({ + has_uploaded <- !is.null(row_annotation_file_data$data()) + has_factors <- !is.null(transform_data$factor_columns()) && + ncol(transform_data$factor_columns()) > 0 + return(has_uploaded || has_factors) + }) + outputOptions(output, "row_annotation_available", suspendWhenHidden = FALSE) + + # Render UI for column annotation row selection + output$col_annotation_select_ui <- renderUI({ + req(col_annotation_file_data$data()) + annot_df <- col_annotation_file_data$data() + row_choices <- rownames(annot_df) + if (is.null(row_choices) || length(row_choices) == 0) { + row_choices <- as.character(seq_len(nrow(annot_df))) + } + selectInput("col_annotation_select", "Column annotation:", + choices = row_choices, selected = row_choices[1], + multiple = TRUE) + }) + + # Render UI for row annotation column selection (merged from both sources) + output$row_annotation_select_ui <- renderUI({ + all_choices <- c() + default_selected <- c() + + # Get choices from uploaded row annotation file + if (!is.null(row_annotation_file_data$data())) { + uploaded_choices <- colnames(row_annotation_file_data$data()) + if (!is.null(uploaded_choices) && length(uploaded_choices) > 0) { + all_choices <- c(all_choices, uploaded_choices) + # Select first uploaded column by default + default_selected <- c(default_selected, uploaded_choices[1]) + } + } + + # Get choices from auto-detected factor columns + if (!is.null(transform_data$factor_columns()) && + ncol(transform_data$factor_columns()) > 0) { + factor_choices <- colnames(transform_data$factor_columns()) + if (!is.null(factor_choices) && length(factor_choices) > 0) { + all_choices <- c(all_choices, factor_choices) + # Select all factor columns by default + default_selected <- c(default_selected, factor_choices) + } + } + + # Remove any duplicates + all_choices <- unique(all_choices) + default_selected <- unique(default_selected) + + # Create the selectInput if we have any choices + if (length(all_choices) > 0) { + tags$div(style = "margin-top: 5px;", + selectInput("row_annotation_select", "Row annotations:", + choices = all_choices, selected = default_selected, multiple = TRUE)) + } else { + return(NULL) + } + }) + + # Use the transform module + transform_data <- transform_server("transform", reactive({ + file_data$data() + })) + + initial_loading <- reactiveVal(TRUE) + # Create a reactive that provides the main data for processing. + current_data <- reactive({ + # If there's no data uploaded yet, return NULL + if (is.null(file_data$data())) { + return(NULL) + } + + # During initial loading, don't show heatmap if transform dialog is open + if (initial_loading() && !transform_data$modal_closed()) { + return(NULL) + } + + # Once transformation is applied for the first time, mark initial loading as complete + if (transform_data$has_transformed()) { + initial_loading(FALSE) + } + + # Return appropriate data based on transformation state + if (!is.null(transform_data$processed_data()) && transform_data$has_transformed()) { + return(transform_data$processed_data()) + } else { + return(file_data$data()) + } + }) + + # Show transform status + output$transform_status <- renderUI({ + if (transform_data$has_transformed()) { + tags$div( + icon("check-circle"), + style = "color: green; margin-top: 7px;" + ) + } else { + tags$div( + icon("info-circle"), + style = "color: grey; margin-top: 7px;" + ) + } + }) + + # Modified reactive function that matches original behavior + col_annotation_for_heatmap <- reactive({ + req(current_data()) + + # Check if we have annotation data + if (is.null(col_annotation_file_data$data())) { + return(NULL) + } + + # Get annotation data + annot_df <- col_annotation_file_data$data() + main_cols <- colnames(current_data()) + selected <- input$col_annotation_select + + # Process annotations using the extracted function + process_column_annotations( + main_data_cols = main_cols, + annotation_df = annot_df, + selected_annotations = selected + ) + }) + + row_annotation_for_heatmap <- reactive({ + req(current_data()) + + # Get selected annotations + selected <- input$row_annotation_select + + # Get main data rows + main_rows <- rownames(current_data()) + + # Get file annotation data + file_annot_df <- NULL + if (!is.null(row_annotation_file_data$data())) { + file_annot_df <- row_annotation_file_data$data() + } + + # Get factor annotation data + factor_annot_df <- NULL + if (!is.null(transform_data$factor_columns()) && + ncol(transform_data$factor_columns()) > 0) { + factor_annot_df <- transform_data$factor_columns() + } + + # Process annotations using the utility function + process_row_annotations( + main_data_rows = main_rows, + file_annotation_df = file_annot_df, + factor_annotation_df = factor_annot_df, + selected_annotations = selected + ) + }) + + + # Create reactives for font size, width, and height to ensure availability for PCA and t-SNE + fontsize_for_plots <- reactive({ + if (!is.null(input$global_fontsize)) input$global_fontsize else 12 + }) + width_for_plots <- reactive({ + if (!is.null(input$global_width)) input$global_width else default_width + }) + height_for_plots <- reactive({ + if (!is.null(input$global_height)) input$global_height else default_height + }) + + # Use the heatmap module + heatmap_results <- heatmap_server( + "heatmap", + current_data, + file_data, + transform_data$unprocessed_data, + col_annotation_for_heatmap, + row_annotation_for_heatmap, + transform_data, + max_rows_to_show, + default_width, + default_height + ) + + observeEvent(input$reset_session, { + # Create a modal dialog asking for confirmation + showModal(modalDialog( + title = "Confirm Reset", + "This will clear all loaded data and reset the application to its initial state. Continue?", + footer = tagList( + modalButton("Cancel"), + actionButton("confirm_reset", "Reset", class = "btn-danger") + ), + easyClose = TRUE + )) + }) + + # Handle confirmation + observeEvent(input$confirm_reset, { + # Close the confirmation dialog + removeModal() + + # Reload the page to reset the session + session$reload() + }) + + pca_results <- pca_plot_server( + "pca", + current_data, + col_annotation_for_heatmap, + row_annotation_for_heatmap, + fontsize_for_plots, # Use our reactive + width_for_plots, # Use our reactive + height_for_plots # Use our reactive + ) + + tsne_results <- tsne_plot_server( + "tsne", + current_data, + col_annotation_for_heatmap, + row_annotation_for_heatmap, + fontsize_for_plots, # Use our reactive + width_for_plots, # Use our reactive + height_for_plots # Use our reactive + ) + + code_gen_results <- code_generation_server( + "code_gen", + file_data, + transform_data, + heatmap_results, + pca_results, + tsne_results, + col_annotation_file_data, + row_annotation_file_data + ) + + output$data_preview <- renderTable({ + req(current_data()) + data <- current_data() + + # Ensure data is a data frame + if (!is.data.frame(data)) { + data <- as.data.frame(data) + } + + # Limit to 30 rows and 30 columns + max_rows <- min(30, nrow(data)) + max_cols <- min(30, ncol(data)) + + # Get the row indices and column indices + row_indices <- seq_len(max_rows) + col_indices <- seq_len(max_cols) + + # Create a preview version of the data + preview_data <- data[row_indices, col_indices, drop = FALSE] + + # Return the preview with row names preserved + preview_data + }, rownames = TRUE, colnames = TRUE, bordered = TRUE, width = "100%", + digits = 3, align = 'c') + + + # Download handler for the data + output$download_data <- downloadHandler( + filename = function() { + paste0("transformed_data-", format(Sys.time(), "%Y%m%d-%H%M%S"), ".csv") + }, + content = function(file) { + data <- current_data() + write.csv(data, file, row.names = TRUE) + } + ) +} + +# Run the application +shinyApp(ui = ui, server = server) + +} \ No newline at end of file diff --git a/R/mod_code_generation.R b/R/mod_code_generation.R index 47f72ab..e98e523 100644 --- a/R/mod_code_generation.R +++ b/R/mod_code_generation.R @@ -22,7 +22,7 @@ code_generation_server <- function(id, file_data, transform_data, heatmap_result # Initialize an empty vector to store code parts code_parts <- c() - utilities_file <- "R/utilities.R" + utilities_file <- datamap_resource("R/utilities.R") if (file.exists(utilities_file)) { utilities_code <- readLines(utilities_file) code_parts <- c(delimiter, "# Utilty functions", utilities_code, "") diff --git a/R/utilities.R b/R/utilities.R index d892108..947351c 100644 --- a/R/utilities.R +++ b/R/utilities.R @@ -179,7 +179,6 @@ create_dr_plot <- function(coords_data, x_label, y_label, point_annot = NULL, fo #' If there are no annotations selected, no common samples between datasets, or if all annotations fail to process, the function returns NULL. #' #' -#' @export process_column_annotations <- function(main_data_cols, annotation_df, selected_annotations) { # Check if annotation rows are selected if (is.null(selected_annotations) || length(selected_annotations) == 0) { @@ -324,4 +323,33 @@ process_row_annotations <- function(main_data_rows, } return(combined_annot) +} + + +#' Find resource files for datamap +#' +#' @param path Path to the resource within the package +#' @return The full path to the resource file +#' @keywords internal +datamap_resource <- function(path) { + # First check if we're running in app directory + app_path <- file.path(".", path) + if (file.exists(app_path)) { + return(app_path) + } + + # Then check inst/ directory during development + dev_path <- file.path("inst", path) + if (file.exists(dev_path)) { + return(dev_path) + } + + # Finally check installed package location + system_path <- system.file(path, package = "datamap") + if (system_path != "") { + return(system_path) + } + + # Fallback for packages not yet installed (development) + file.path("inst", path) } \ No newline at end of file diff --git a/README.md b/README.md index 1822832..f37d1df 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ To use this app, just visit this static [GitHub page](https://gexijin.github.io/datamap/) deployed from this repo via Actions. For large datasets, install it as an R package for local execution: ```{R} install.packages("remotes") -remotes::install_github("gexijin/datamap", ref = "rPackage", upgrade = "never") +remotes::install_github("gexijin/datamap", upgrade = "never") DataMap::run_datamap() ``` diff --git a/app.R b/app.R index f1abbd2..6dab4da 100644 --- a/app.R +++ b/app.R @@ -1,575 +1,22 @@ -# DataMap: A Shiny app for visualizing data matrices with heatmaps, PCA, and t-SNE -# by Steven Ge 4/5/2025 -library(shiny) +#' Run the DataMap Shiny application +#' +#' @export +#' +#' @return A Shiny application object +#' @examples +#' if (interactive()) { +#' run_datamap() +#' } +#' + +source(datamap_resource("R/utilities.R")) +source(datamap_resource("R/mod_file_upload.R")) +source(datamap_resource("R/mod_transform.R")) +source(datamap_resource("R/mod_pca.R")) +source(datamap_resource("R/mod_tsne.R")) +source(datamap_resource("R/mod_heatmap.R")) +source(datamap_resource("R/mod_code_generation.R")) +source(datamap_resource("R/main_app.R")) + +run_app() -source("R/utilities.R") -source("R/mod_file_upload.R") -source("R/mod_transform.R") -source("R/mod_pca.R") -source("R/mod_tsne.R") -source("R/mod_heatmap.R") -source("R/mod_code_generation.R") - -max_rows_to_show <- 1000 # Maximum number of rows to show row names in the heatmap -default_width <- 600 -default_height <- 600 - -ui <- fluidPage( - - sidebarLayout( - sidebarPanel( - width = 3, - - # Place Upload Files and Reset buttons on the same row - fluidRow( - column(6, - actionButton("show_upload_modal", "Files", - icon = icon("upload")) - ), - column(6, - conditionalPanel( - condition = "output.data_loaded", - actionButton("reset_session", "Reset", - icon = icon("refresh"), - style = "background-color: #f8d7da; color: #721c24;") - ) - ) - ), - - conditionalPanel( - condition = "output.data_loaded", - fluidRow( - column(8, transform_ui("transform"), style = "margin-top: 5px;"), - column(4, uiOutput("transform_status"), style = "margin-top: 5px;") - ) - ), - - # Dynamic UI for selecting row annotation columns - conditionalPanel( - condition = "output.row_annotation_available", - uiOutput("row_annotation_select_ui") - ), - conditionalPanel( - condition = "output.col_annotation_uploaded", - uiOutput("col_annotation_select_ui") - ), - - # Heatmap customization section - only shown after data is loaded and Heatmap tab is active - conditionalPanel( - condition = "output.data_loaded && input['main_tabs'] === 'Heatmap'", - hr(), - # Use the heatmap control UI function from the module - heatmap_control_ui("heatmap") - ), - - # PCA and t-SNE plot control section - only shown when those tabs are active - conditionalPanel( - condition = "output.data_loaded && (input['main_tabs'] === 'PCA' || input['main_tabs'] === 't-SNE')", - hr(), - h4("Plot Settings"), - - # Font size control - fluidRow( - column(3, p("Font:", style = "padding-top: 7px; text-align: right;")), - column(9, sliderInput("global_fontsize", NULL, min = 5, max = 30, value = 12)) - ), - - # Width & Height controls - fluidRow( - column(3, p("Width:", style = "padding-top: 7px; text-align: right;")), - column(9, sliderInput("global_width", NULL, min = 200, max = 2000, value = 600, step = 20)) - ), - - fluidRow( - column(3, p("Height:", style = "padding-top: 7px; text-align: right;")), - column(9, sliderInput("global_height", NULL, min = 200, max = 2000, value = 500, step = 20)) - ) - ) - ), - - mainPanel( - width = 9, - tabsetPanel(id = "main_tabs", selected = "About", - tabPanel("Heatmap", - # Use the heatmap module UI - heatmap_ui("heatmap") - ), - tabPanel("PCA", - pca_plot_ui("pca") - ), - tabPanel("t-SNE", - tsne_plot_ui("tsne") - ), - tabPanel("Code", - code_generation_ui("code_gen") - ), - tabPanel("Data", - fluidRow( - column(12, - div(style = "overflow-x: auto;", - tableOutput("data_preview") - ), - downloadButton("download_data", "Transformed Data") - ) - ) - ), - tabPanel("About", - titlePanel("DataMap: a portable app for visualizing data matrices v0.11"), - img(src = "heatmap.png", width = "375px", height = "300px"), - img(src = "pca.png", width = "384px", height = "329px"), - img(src = "countries_label.png", width = "401px", height = "300px"), - img(src = "tsne.png", width = "335px", height = "300px"), - #img(src = "countries.png", width = "286px", height = "300px"), - includeHTML("www/help.html") - ) - ) - #,tags$head(includeHTML("www/google_analytics.html")) - ) - ) -) - -server <- function(input, output, session) { - - # Track if main data is loaded for UI conditionals - output$data_loaded <- reactive({ - return(file_data$data_loaded()) - }) - outputOptions(output, "data_loaded", suspendWhenHidden = FALSE) - - # Switch to Heatmap tab when data is loaded - observe({ - if (file_data$data_loaded()) { - updateTabsetPanel(session, "main_tabs", selected = "Heatmap") - } - }) - - # Show the modal when the button is clicked - output$main_file_upload_ui <- renderUI({ - if (!is.null(file_data$data())) { - # If data is already uploaded - tags$div( - style = "padding: 15px; background-color: #f8f9fa; border-radius: 4px; text-align: center;", - tags$p( - icon("info-circle"), - "Reset the app to upload a new data matrix.", - style = "margin: 0; color: #495057;" - ) - ) - } else { - tags$div( - tags$h4("Data file (Excel, CSV, ...)"), - file_upload_ui("file_upload"), - fluidRow( - column(2, h5("Examples:", style = "margin-top: -8px; text-align: right;")), - column(10, - downloadButton("download_countries", "Countries", style = "margin-top: -15px;"), - downloadButton("download_rnaseq", "RNAseq", style = "margin-top: -15px;"), - downloadButton("download_iris", "Iris", style = "margin-top: -15px;"), - downloadButton("download_scrnaseq", "scRNAseq", style = "margin-top: -15px;"), - align = "left" - ) - ) - ) - } - }) - - observeEvent(input$show_upload_modal, { - showModal(modalDialog( - title = "Upload Files", - - uiOutput("main_file_upload_ui"), - - hr(), - tags$div( - tags$h4("Optional: Column Annotation"), - file_upload_ui("col_annotation_file_upload"), - fluidRow( - column(2, h5("Examples:", style = "margin-top: -8px; text-align: right;")), - column(10, - downloadButton("download_col_rnaseq", "RNA-seq factors", style = "margin-top: -15px;"), - downloadButton("download_col_iris", "Iris column info", style = "margin-top: -15px;"), - align = "left" - ) - ) - ), - hr(), - tags$div( - tags$h4("Optional: Row Annotations"), - file_upload_ui("row_annotation_file_upload"), - fluidRow( - column(2, h5("Examples:", style = "margin-top: -8px; text-align: right;")), - column(10, - downloadButton("download_row_rnaseq", "RNAseq gene info", style = "margin-top: -15px;"), - downloadButton("download_row_scrnaseq", "scRNAseq clusters", style = "margin-top: -15px;"), - align = "left" - ) - ) - ), - - footer = tagList( - modalButton("Close") - ), - size = "m", - easyClose = TRUE - )) - }) - - output$download_iris <- downloadHandler( - filename = function() { - "iris.csv" - }, - content = function(file) { - file.copy("data/iris.csv", file) - } - ) - output$download_rnaseq <- downloadHandler( - filename = function() { - "RNAseq.csv" - }, - content = function(file) { - file.copy("data/RNAseq.csv", file) - } - ) - - output$download_scrnaseq <- downloadHandler( - filename = function() { - "scRNAseq_PCA.csv" - }, - content = function(file) { - file.copy("data/scRNAseq_PCA.csv", file) - } - ) - output$download_countries <- downloadHandler( - filename = function() { - "countries.csv" - }, - content = function(file) { - file.copy("data/countries.csv", file) - } - ) - output$download_col_rnaseq <- downloadHandler( - filename = function() { - "RNAseq_design.csv" - }, - content = function(file) { - file.copy("data/RNAseq_design.csv", file) - } - ) - output$download_col_iris <- downloadHandler( - filename = function() { - "iris_column_annot.csv" - }, - content = function(file) { - file.copy("data/iris_column_annot.csv", file) - } - ) - output$download_row_rnaseq <- downloadHandler( - filename = function() { - "RNAseq_gene_info.csv" - }, - content = function(file) { - file.copy("data/RNAseq_gene_info.csv", file) - } - ) - output$download_row_scrnaseq <- downloadHandler( - filename = function() { - "scRNAseq_clusters.csv" - }, - content = function(file) { - file.copy("data/scRNAseq_clusters.csv", file) - } - ) - # Use the file upload module for main data - file_data <- file_upload_server("file_upload") - - # Use a separate file upload module for the column annotation file - col_annotation_file_data <- file_upload_server("col_annotation_file_upload") - - # Use a separate file upload module for the row annotation file - row_annotation_file_data <- file_upload_server("row_annotation_file_upload") - - # Reactive to indicate if column annotation file is uploaded - output$col_annotation_uploaded <- reactive({ - !is.null(col_annotation_file_data$data()) - }) - outputOptions(output, "col_annotation_uploaded", suspendWhenHidden = FALSE) - - output$row_annotation_available <- reactive({ - has_uploaded <- !is.null(row_annotation_file_data$data()) - has_factors <- !is.null(transform_data$factor_columns()) && - ncol(transform_data$factor_columns()) > 0 - return(has_uploaded || has_factors) - }) - outputOptions(output, "row_annotation_available", suspendWhenHidden = FALSE) - - # Render UI for column annotation row selection - output$col_annotation_select_ui <- renderUI({ - req(col_annotation_file_data$data()) - annot_df <- col_annotation_file_data$data() - row_choices <- rownames(annot_df) - if (is.null(row_choices) || length(row_choices) == 0) { - row_choices <- as.character(seq_len(nrow(annot_df))) - } - selectInput("col_annotation_select", "Column annotation:", - choices = row_choices, selected = row_choices[1], - multiple = TRUE) - }) - - # Render UI for row annotation column selection (merged from both sources) - output$row_annotation_select_ui <- renderUI({ - all_choices <- c() - default_selected <- c() - - # Get choices from uploaded row annotation file - if (!is.null(row_annotation_file_data$data())) { - uploaded_choices <- colnames(row_annotation_file_data$data()) - if (!is.null(uploaded_choices) && length(uploaded_choices) > 0) { - all_choices <- c(all_choices, uploaded_choices) - # Select first uploaded column by default - default_selected <- c(default_selected, uploaded_choices[1]) - } - } - - # Get choices from auto-detected factor columns - if (!is.null(transform_data$factor_columns()) && - ncol(transform_data$factor_columns()) > 0) { - factor_choices <- colnames(transform_data$factor_columns()) - if (!is.null(factor_choices) && length(factor_choices) > 0) { - all_choices <- c(all_choices, factor_choices) - # Select all factor columns by default - default_selected <- c(default_selected, factor_choices) - } - } - - # Remove any duplicates - all_choices <- unique(all_choices) - default_selected <- unique(default_selected) - - # Create the selectInput if we have any choices - if (length(all_choices) > 0) { - tags$div(style = "margin-top: 5px;", - selectInput("row_annotation_select", "Row annotations:", - choices = all_choices, selected = default_selected, multiple = TRUE)) - } else { - return(NULL) - } - }) - - # Use the transform module - transform_data <- transform_server("transform", reactive({ - file_data$data() - })) - - initial_loading <- reactiveVal(TRUE) - # Create a reactive that provides the main data for processing. - current_data <- reactive({ - # If there's no data uploaded yet, return NULL - if (is.null(file_data$data())) { - return(NULL) - } - - # During initial loading, don't show heatmap if transform dialog is open - if (initial_loading() && !transform_data$modal_closed()) { - return(NULL) - } - - # Once transformation is applied for the first time, mark initial loading as complete - if (transform_data$has_transformed()) { - initial_loading(FALSE) - } - - # Return appropriate data based on transformation state - if (!is.null(transform_data$processed_data()) && transform_data$has_transformed()) { - return(transform_data$processed_data()) - } else { - return(file_data$data()) - } - }) - - # Show transform status - output$transform_status <- renderUI({ - if (transform_data$has_transformed()) { - tags$div( - icon("check-circle"), - style = "color: green; margin-top: 7px;" - ) - } else { - tags$div( - icon("info-circle"), - style = "color: grey; margin-top: 7px;" - ) - } - }) - - # Modified reactive function that matches original behavior - col_annotation_for_heatmap <- reactive({ - req(current_data()) - - # Check if we have annotation data - if (is.null(col_annotation_file_data$data())) { - return(NULL) - } - - # Get annotation data - annot_df <- col_annotation_file_data$data() - main_cols <- colnames(current_data()) - selected <- input$col_annotation_select - - # Process annotations using the extracted function - process_column_annotations( - main_data_cols = main_cols, - annotation_df = annot_df, - selected_annotations = selected - ) - }) - - row_annotation_for_heatmap <- reactive({ - req(current_data()) - - # Get selected annotations - selected <- input$row_annotation_select - - # Get main data rows - main_rows <- rownames(current_data()) - - # Get file annotation data - file_annot_df <- NULL - if (!is.null(row_annotation_file_data$data())) { - file_annot_df <- row_annotation_file_data$data() - } - - # Get factor annotation data - factor_annot_df <- NULL - if (!is.null(transform_data$factor_columns()) && - ncol(transform_data$factor_columns()) > 0) { - factor_annot_df <- transform_data$factor_columns() - } - - # Process annotations using the utility function - process_row_annotations( - main_data_rows = main_rows, - file_annotation_df = file_annot_df, - factor_annotation_df = factor_annot_df, - selected_annotations = selected - ) - }) - - - # Create reactives for font size, width, and height to ensure availability for PCA and t-SNE - fontsize_for_plots <- reactive({ - if (!is.null(input$global_fontsize)) input$global_fontsize else 12 - }) - width_for_plots <- reactive({ - if (!is.null(input$global_width)) input$global_width else default_width - }) - height_for_plots <- reactive({ - if (!is.null(input$global_height)) input$global_height else default_height - }) - - # Use the heatmap module - heatmap_results <- heatmap_server( - "heatmap", - current_data, - file_data, - transform_data$unprocessed_data, - col_annotation_for_heatmap, - row_annotation_for_heatmap, - transform_data, - max_rows_to_show, - default_width, - default_height - ) - - observeEvent(input$reset_session, { - # Create a modal dialog asking for confirmation - showModal(modalDialog( - title = "Confirm Reset", - "This will clear all loaded data and reset the application to its initial state. Continue?", - footer = tagList( - modalButton("Cancel"), - actionButton("confirm_reset", "Reset", class = "btn-danger") - ), - easyClose = TRUE - )) - }) - - # Handle confirmation - observeEvent(input$confirm_reset, { - # Close the confirmation dialog - removeModal() - - # Reload the page to reset the session - session$reload() - }) - - pca_results <- pca_plot_server( - "pca", - current_data, - col_annotation_for_heatmap, - row_annotation_for_heatmap, - fontsize_for_plots, # Use our reactive - width_for_plots, # Use our reactive - height_for_plots # Use our reactive - ) - - tsne_results <- tsne_plot_server( - "tsne", - current_data, - col_annotation_for_heatmap, - row_annotation_for_heatmap, - fontsize_for_plots, # Use our reactive - width_for_plots, # Use our reactive - height_for_plots # Use our reactive - ) - - code_gen_results <- code_generation_server( - "code_gen", - file_data, - transform_data, - heatmap_results, - pca_results, - tsne_results, - col_annotation_file_data, - row_annotation_file_data - ) - - output$data_preview <- renderTable({ - req(current_data()) - data <- current_data() - - # Ensure data is a data frame - if (!is.data.frame(data)) { - data <- as.data.frame(data) - } - - # Limit to 30 rows and 30 columns - max_rows <- min(30, nrow(data)) - max_cols <- min(30, ncol(data)) - - # Get the row indices and column indices - row_indices <- seq_len(max_rows) - col_indices <- seq_len(max_cols) - - # Create a preview version of the data - preview_data <- data[row_indices, col_indices, drop = FALSE] - - # Return the preview with row names preserved - preview_data - }, rownames = TRUE, colnames = TRUE, bordered = TRUE, width = "100%", - digits = 3, align = 'c') - - - # Download handler for the data - output$download_data <- downloadHandler( - filename = function() { - paste0("transformed_data-", format(Sys.time(), "%Y%m%d-%H%M%S"), ".csv") - }, - content = function(file) { - data <- current_data() - write.csv(data, file, row.names = TRUE) - } - ) -} - -# Run the application -shinyApp(ui = ui, server = server) \ No newline at end of file diff --git a/data/RNAseq.csv b/extdata/RNAseq.csv similarity index 100% rename from data/RNAseq.csv rename to extdata/RNAseq.csv diff --git a/data/RNAseq_design.csv b/extdata/RNAseq_design.csv similarity index 100% rename from data/RNAseq_design.csv rename to extdata/RNAseq_design.csv diff --git a/data/RNAseq_gene_info.csv b/extdata/RNAseq_gene_info.csv similarity index 100% rename from data/RNAseq_gene_info.csv rename to extdata/RNAseq_gene_info.csv diff --git a/data/countries.csv b/extdata/countries.csv similarity index 100% rename from data/countries.csv rename to extdata/countries.csv diff --git a/data/iris.csv b/extdata/iris.csv similarity index 100% rename from data/iris.csv rename to extdata/iris.csv diff --git a/data/iris_column_annot.csv b/extdata/iris_column_annot.csv similarity index 100% rename from data/iris_column_annot.csv rename to extdata/iris_column_annot.csv diff --git a/data/scRNAseq_PCA.csv b/extdata/scRNAseq_PCA.csv similarity index 100% rename from data/scRNAseq_PCA.csv rename to extdata/scRNAseq_PCA.csv diff --git a/data/scRNAseq_clusters.csv b/extdata/scRNAseq_clusters.csv similarity index 100% rename from data/scRNAseq_clusters.csv rename to extdata/scRNAseq_clusters.csv diff --git a/inst/extdata/RNAseq.csv b/inst/extdata/RNAseq.csv new file mode 100644 index 0000000..5bef7f2 --- /dev/null +++ b/inst/extdata/RNAseq.csv @@ -0,0 +1,467 @@ +symbol,p53_mock_1,p53_mock_2,p53_mock_3,p53_mock_4,p53_IR_1,p53_IR_2,p53_IR_3,p53_IR_4,null_mock_1,null_mock_2,null_IR_1,null_IR_2 +Phlda3,4.236306445,4.28460269,4.365203817,4.113050921,12.17775465,12.02947172,12.95476854,13.0988683,3.734077316,3.066565004,2,2.492449186 +Cdkn1a,4.733035648,5.029232582,4.726342076,4.725242139,12.12459084,12.04504672,12.76713924,12.94078263,4.286224035,3.943188334,4.473915289,4.398275685 +Tnfsf4,3.294241044,4.101466604,3.677283755,3.028138521,11.01105327,10.98111514,11.95127854,11.77824042,2.661445587,2.907315663,5.070849249,4.698712009 +Gm10721,5.180996014,6.466237515,7.324812078,7.932552798,15.12454318,16.69280206,6.303806353,12.41993432,8.398696197,8.290341641,5.846168796,10.01415507 +Gm10719,5.895229711,7.889427325,8.724968893,9.209160033,16.01712007,17.47044273,7.656288769,13.9173266,9.871894975,9.486986429,6.426246268,10.99131972 +Tex15,4.023732797,4.101466604,4.295136453,3.413066444,10.89698018,11.08144985,12.15611002,11.85563326,3.89314645,3.340400992,7.715180346,6.75687351 +Plb1,2.976964514,3.553925444,3.562670827,3.716622471,10.03797015,10.20458249,10.98075073,10.74658536,3.45680615,3.209970323,3.277146836,3.694911979 +1700007K13Rik,2,2.255337515,2,2,8.52123376,8.362814866,9.510701094,9.677751238,2,2,2,2 +Grhl3,2.718566724,2.255337515,2.793064158,2.87303589,9.252960263,9.382909832,9.302146413,9.496323641,2,2.728281369,2,2.267134935 +Plk2,6.540483092,6.720473232,7.205736084,7.175182111,13.09460792,13.35357132,13.77993282,13.77097464,6.882724557,7.20545716,7.064274867,5.677858121 +Zfp365,4.866725546,5.919711111,5.826753254,6.034126716,11.59383212,11.56197151,12.25722726,12.33394047,5.281698252,6.009282756,5.070849249,5.372550493 +Psrc1,7.021052716,6.954676405,6.898282383,7.158485081,12.84034863,12.78855139,13.68319106,13.74752244,6.920160948,6.745710587,6.605666687,6.559438515 +Bbc3,6.618382231,6.563948195,6.459793691,6.40355328,12.26916712,12.24596907,12.46392282,12.68530581,5.903038272,5.86503433,5.727146202,6.315975428 +Gtse1,7.118102215,6.491292569,6.611645994,6.472720394,12.43031306,12.31021866,13.00971246,13.16477175,6.264953384,6.543903472,7.064274867,6.442836614 +Dact3,3.554166053,3.349885883,3.43816071,3.168173086,9.391909304,9.109308704,10.0930242,10.01078918,3.647442438,4.023054398,3.832876068,4.398275685 +Matn1,2.718566724,2.472206906,3.43816071,3.413066444,8.144273956,8.346147265,9.261053214,9.003900736,2.255668576,2.523839188,2.890761998,3.782822403 +Ckmt1,2.2158483,2,2,2,7.445469658,7.22480379,7.986127145,8.29795067,2,2,2,2.267134935 +Prrg4,7.544498034,7.703608713,7.459039581,7.369060817,12.65270634,12.51142402,13.16771594,13.18503537,6.99223971,7.108101367,7.468491961,7.338517893 +Cox6b2,4.133931288,3.891656122,4.495888242,4.423697269,9.095656618,9.05393282,10.05284189,10.12542493,3.45680615,4.694256915,3.581606147,4.505524682 +Inka2,7.380917267,7.637812166,7.401845233,8.264453023,12.82283219,12.85153951,13.24472864,13.41184164,7.479780266,7.855763357,7.301477298,7.707655235 +Ddias,7.264599944,6.666500072,7.065455302,6.525761504,12.043962,12.10385996,12.64805763,12.65600086,6.668459559,6.530301836,7.523107327,7.360113799 +Slc19a2,7.124790774,6.861666014,7.451006476,7.25588605,12.36176244,12.37942806,13.12585133,13.09782084,7.00971045,7.288599777,8.18485622,7.718842614 +Robo3,2.403565732,2.255337515,2.793064158,2.501573121,7.230426236,7.444287022,8.661480928,8.648613718,2.661445587,3.673050397,2.890761998,2.492449186 +Scn4b,3.294241044,4.28460269,3.882350692,4.366690008,8.377388539,8.018162183,9.444477042,9.747805004,4.448754151,4.788681433,3.096851215,3.782822403 +Cep170b,7.908512652,8.286488482,8.091040114,8.212824907,12.83506304,12.81831355,13.27461689,13.40440518,7.872459423,8.150645001,8.433218513,8.046425232 +Gm9949,5.87949615,5.308344543,5.291752243,5.372188845,9.866199815,9.54869078,10.20892628,10.48208329,5.310178521,5.752387168,4.04680616,4.556300361 +Hmcn2,5.7981468,5.938051116,5.990888225,6.650412752,10.37600813,10.41299976,11.09488436,11.16185247,5.659163444,5.886545484,5.416897213,5.583090722 +Kank3,7.157776195,7.016390345,6.989844387,7.376299261,11.84166249,11.85931145,12.83279113,12.93234598,7.278294573,7.771557921,8.728751643,8.980756457 +Cd80,7.574123578,7.81199144,7.625315813,7.317348563,12.00259967,12.08011769,12.57255494,12.46807102,7.189099737,7.013507041,7.301477298,7.483311108 +Dcxr,8.002301122,7.865672066,8.205286472,8.163470545,12.24346393,12.0437552,12.98759782,13.25755425,7.942358109,8.168316184,6.824409731,7.528516866 +Sesn2,8.248777148,8.359743683,8.367713273,8.314297235,12.6941661,12.65155342,13.1096944,13.24151919,7.991547042,7.828237375,8.201696408,7.762744275 +Hic1,4.989070688,4.497423029,4.829089744,5.048888004,9.256127661,9.245862039,9.927131389,10.06667796,4.727436452,4.239122495,5.527893648,5.223428512 +Rhod,2.2158483,2.660695792,2.573859718,2.87303589,7.022950058,6.828581186,7.586354452,7.707552052,2.828270502,2.907315663,2.361452162,2.267134935 +Epha2,7.7531447,7.724890542,7.498547558,8.112367789,12.20095105,12.30267969,12.87215963,12.80412336,8.017686884,7.991000345,7.842331292,8.050858622 +Fam131a,4.989070688,4.546060717,5.09959111,4.366690008,8.749644359,8.902565747,9.93519191,9.587501477,5.06484454,5.039718917,4.233071757,4.60534958 +Enc1,7.30638615,7.502643255,7.574458774,7.732742332,11.83214315,11.86517275,12.31280679,12.38704142,7.415694829,7.328440677,7.776413997,7.416170685 +Ier5l,3.774333367,4.034863393,3.43816071,3.805102068,8.137419728,8.148843346,9.009473696,9.107452953,3.966553518,4.484563717,4.680245472,4.60534958 +Snai3,3.904415611,4.034863393,3.882350692,3.967277552,8.052523704,8.294956973,9.286479548,9.368742624,4.640389562,3.943188334,5.021117212,4.869058619 +Celf5,5.350360959,6.043449174,5.64151852,5.939564935,9.99121534,9.733064814,10.4739171,10.86361303,6.174903497,5.524393492,5.956115975,5.400610616 +Akap1,6.126100113,5.700897658,6.216145839,5.729532737,10.32111137,10.33911665,10.90889712,10.76147903,6.078856488,5.752387168,9.219687079,9.118066475 +Dglucy,9.083175369,9.137401018,9.095957559,9.127867041,12.37566282,12.45132521,12.72591603,12.98632239,8.552634947,8.345750188,6.687648648,7.209631035 +Plekha7,7.170762053,7.318917139,7.224707434,7.596822981,11.22336894,11.36508195,11.69715247,11.90581239,7.535119823,7.441758913,6.445226313,6.495826317 +Plod2,4.585680003,4.847130731,5.179552205,4.423697269,8.699336548,8.832494325,9.835359556,9.29168791,4.996388748,3.943188334,5.165448125,5.428135372 +Thyn1,7.493728762,7.346640151,7.376621791,7.063028487,11.50542945,11.47169312,12.13963643,12.18486591,6.882724557,7.188237792,9.533040012,9.066452902 +Rac3,4.834446472,5.159986439,5.179552205,5.342930487,9.278106848,9.485407088,9.707072173,9.794066645,5.392393755,5.114547692,5.757835005,4.908678125 +Dennd2c,7.312258021,7.318917139,7.147277637,7.681070623,11.32791354,11.51147804,12.00826455,11.93800891,7.594216768,7.374841406,7.215648945,7.286833573 +Ankrd13b,4.661238356,4.340822592,4.365203817,4.855261593,9.10973239,9.236848423,9.332978799,9.250052322,5.418789636,4.539912876,6.881265208,6.881575578 +Cdc42bpg,8.233386492,8.422962063,8.315576781,8.844451842,12.32415215,12.46682719,12.68288192,12.73869799,8.313336563,8.486226732,7.61816255,7.841623833 +Ikbke,10.11695024,10.51632173,10.07377221,9.553687133,13.90471069,13.97726255,14.15192279,14.33149873,9.995418565,9.313220723,9.702345813,9.963322872 +Pkd1l2,2.56964645,2.660695792,2.573859718,3.88846741,6.689757624,6.72924371,7.469113118,7.118809728,2.977788722,3.066565004,2.361452162,2.858905856 +Abcb1b,8.654448742,8.676106877,8.721633907,8.268348931,12.52591807,12.6254589,13.10210705,13.13342359,8.237512733,8.087033529,9.936659521,9.845778173 +Cfap126,5.747040227,5.468319721,5.583911538,5.751966459,9.168068076,8.873781771,9.76926363,9.822751802,5.031022634,4.960795631,5.070849249,4.869058619 +Ogdhl,2.718566724,2.660695792,2.793064158,2.69922708,6.280847002,6.965832419,7.146999803,7.635465835,3.237087773,2.285565721,3.943802815,4.089040188 +Asap3,4.331895821,4.847130731,4.495888242,4.366690008,8.377388539,8.489646295,9.013285982,8.896198302,4.448754151,4.304507053,5.070849249,5.091932727 +Ccng1,11.71349787,11.57640061,11.76534687,11.35027239,15.36080277,15.23286702,15.85129466,15.84268229,11.29515031,11.32029916,11.68671216,11.2761095 +Pidd1,7.845121469,7.836639599,7.506320963,8.103671866,11.68596389,11.72636097,12.28745076,12.35232737,7.843523302,7.777327128,8.889822705,8.787087365 +Mef2b,6.885839309,6.17297675,6.325639697,5.536275497,9.785198044,9.814081142,10.64339118,10.58971939,5.702780658,5.728762447,7.667486821,7.416170685 +Lpin1,9.318705779,9.491053116,9.490178498,9.433921713,12.56762593,12.59888368,13.00612986,13.19310103,9.262945697,9.201803122,7.592853274,8.331552779 +Macroh2a3,5.657621205,5.612313251,5.36198022,5.751966459,9.567906413,9.595277807,10.07672102,10.05290743,5.958069321,5.604462155,6.908874205,6.789074017 +Dzip1,6.877942604,7.033548647,6.681970693,6.105552561,9.987408668,10.39285332,10.04355133,10.31330443,6.722435666,5.680319746,5.377915981,6.224746864 +Ak1,3.554166053,3.11215946,2.983313619,2.87303589,6.632411446,6.852382436,7.389217648,7.383735283,3.237087773,2.285565721,3.832876068,3.944040584 +Polk,9.22376693,9.366251088,9.249738368,9.27840903,12.98719896,13.10165356,13.44324131,13.38082992,9.22605355,9.188875053,9.565929009,9.241498059 +Ppp1r36,2.56964645,2.472206906,2.573859718,3.168173086,6.25574855,6.093464377,7.146999803,6.950768861,2.828270502,3.066565004,2.361452162,3.150880318 +Gm8482,3.38618521,3.732651019,3.974897492,3.805102068,7.123494071,7.278497903,6.575393183,6.920755723,3.237087773,2.523839188,2,3.393594456 +Gm7451,4.801428619,5.279868376,4.726342076,4.582333828,8.763065587,9.777253435,8.335822984,8.741682769,4.809528777,5.219981459,6.719180002,6.655721243 +Fas,7.713759782,7.332845235,7.498547558,6.819261916,10.90910389,10.92189056,11.47050094,11.39870443,7.069243879,6.757433347,9.604430982,8.217870921 +Mybl1,9.034277391,8.0954604,8.873605561,7.098475035,11.10802542,11.11011487,11.83115421,11.80826378,7.689438951,7.153169946,7.486927768,7.367241188 +Macroh2a2,4.505944659,4.885436425,4.061863734,4.631559689,8.500015939,8.59920658,8.37190227,8.377445273,4.448754151,4.367056342,5.787884574,5.400610616 +Zmat3,9.341854297,9.693530937,9.577630483,9.940593629,12.76146628,12.84673374,13.06654429,13.08540305,8.977947685,8.867795432,8.657299253,8.721859389 +Ckap2,7.704859621,7.075572297,7.252704746,6.921761499,10.65928551,10.87618282,11.31933982,11.36496999,6.938521048,7.003697325,8.079465682,7.9164133 +Ddit4l,4.959443269,5.221172261,5.523908288,5.751966459,8.603115739,8.694461548,9.024662767,8.821008163,5.192720218,4.919653551,4.233071757,4.828320278 +Gcdh,9.005573103,8.858071562,9.024678551,8.710548016,12.22458906,12.19161017,12.93781872,13.25473745,8.971275301,8.88392806,9.241566726,8.877218169 +Aldh4a1,9.101940816,9.049462545,9.062077329,9.084331083,12.32264226,12.25101422,12.78898622,13.14300132,9.002152419,8.881251785,8.811533874,8.460445515 +Mgmt,5.460214331,5.442858938,6.076923882,5.879702183,8.731552932,8.930786656,9.251401608,9.911271446,5.975956211,5.34954949,5.165448125,5.254511532 +Bmp1,5.018101898,5.442858938,5.09959111,4.307337135,8.598132037,8.549111853,9.366150289,9.133856062,5.884218016,5.114547692,6.327409469,7.050486937 +Ei24,9.890385826,9.838477849,9.886925021,9.747566669,13.351807,13.14445652,13.60923719,13.83850014,9.564272305,9.694828796,10.20929865,9.922778853 +Cpt1c,3.294241044,2.660695792,2.793064158,2.272475024,6.552222025,6.921517145,6.821365168,6.460230204,2.977788722,3.570459614,4.142942955,3.694911979 +Jag2,4.989070688,5.159986439,4.778630418,5.282571143,8.243361498,8.303615821,9.430289275,9.306271287,5.192720218,5.524393492,5.491835431,5.809270048 +Pmaip1,8.652135605,8.821494126,8.684431042,8.747302207,12.08015588,12.10695506,12.49083226,12.49537346,8.266869812,8.538119303,8.826087849,8.867197953 +Cad,10.68893994,10.80940728,10.56084445,11.15050814,14.25519109,14.25836155,14.72955598,14.75258022,10.6907236,10.69439546,13.07034852,12.71703102 +Acad8,7.288625766,7.332845235,7.342289531,7.199870823,10.57428662,10.51345336,11.43470254,11.42031681,7.428741679,7.296656462,8.121370504,7.773514079 +Aen,10.12697946,10.22387339,10.24615185,10.33818825,13.70941387,13.78621403,14.10155504,14.31599887,10.19474044,10.30268978,12.28745254,11.83625951 +ENSMUSG00000072812,5.501915851,5.9561609,6.253574768,5.084679392,8.598132037,9.138641167,8.353975409,8.393924541,5.310178521,5.18568593,3.943802815,4.828320278 +Ccnf,8.385947652,7.940351551,8.038399259,7.487431918,11.08772387,11.10764475,11.75692437,11.73146014,7.678557107,7.484706137,8.493725106,7.954770311 +Aaas,9.536257132,9.571083726,9.4803454,9.511576343,12.86493475,12.85301499,13.51053266,13.64555297,9.574580915,9.613313846,10.57186495,10.28926309 +Gm13854,6.665016205,7.108331538,6.81310282,7.43986112,10.13578937,10.31576523,10.72469578,10.48976989,7.285484423,7.108101367,6.285897513,6.778420172 +Cercam,6.393137396,6.598948407,6.05589118,6.601836869,9.549952097,9.595277807,10.30536321,10.21780006,6.174903497,6.502707705,6.463959897,6.596301625 +Scarf2,4.186026757,4.034863393,4.061863734,3.805102068,7.137302132,7.187864349,7.906370537,7.809347145,4.887200304,3.460011225,3.832876068,4.984795226 +Pcdhgc3,5.28019568,5.416940736,4.495888242,5.561896522,8.583076795,8.277481793,9.212136236,9.000317654,5.659163444,5.318231989,5.454852834,5.830053715 +Dyrk3,6.265788401,5.634974481,5.395852498,5.587070468,8.845284573,9.167389116,9.005651309,8.974983772,5.097891669,5.318231989,5.727146202,5.723005244 +Exoc4,11.77405237,11.87953527,11.84566836,11.90148293,14.97907817,15.16083026,15.66237167,15.61818399,11.90393539,11.83947352,12.30574156,12.00597347 +Gnb1l,6.436793841,6.52807771,6.443690968,6.300785678,9.754170333,9.963622991,10.37368301,10.42442762,6.824683008,6.792040711,8.689493521,8.190004662 +Vcan,6.779648617,6.414782983,6.522465282,5.219575803,9.246604528,9.511802107,9.837511441,9.37705564,5.865148998,5.496685028,6.780247665,7.423027091 +Lacc1,9.083175369,8.742828066,9.008348881,8.701931636,11.97451117,12.00313381,12.35772889,12.5573421,8.522524866,8.70782963,8.990163535,9.006091142 +Plxna1,9.765407601,10.11322806,10.27828717,10.30822486,12.61465423,12.55332274,13.27917584,13.35177546,9.661425793,9.552373804,8.833310146,9.033230844 +Atg9b,3.554166053,2.827379902,2.573859718,3.028138521,6.25574855,5.73221341,6.889322596,6.980170323,2.828270502,3.943188334,4.04680616,3.393594456 +Mcam,5.831238991,5.763939684,5.613002542,6.445450173,8.593131059,8.411692529,9.939205345,9.854851309,6.045365306,6.488710162,5.695790377,6.022915327 +Ass1,8.784749098,8.64574281,8.891523976,8.716263812,11.69707742,11.55835826,12.27916264,12.2754788,8.259586357,8.534717268,8.677504703,8.609140291 +Rtl10,5.941426357,5.542112217,5.523908288,6.190132307,8.758605703,8.969390878,9.589422625,9.483548228,5.519793488,5.843197575,6.94932162,6.559438515 +Kifc1,7.375318829,6.945640606,7.333577271,6.685800571,9.809117288,9.879249832,10.41893362,10.3075171,6.814778267,6.46030094,6.536552463,6.596301625 +Ptpdc1,8.205262666,8.246578855,8.210054232,7.971309841,10.78302257,11.1454644,11.4240023,11.69701282,7.828834651,7.484706137,7.932523789,8.298378801 +Tnfsf8,5.43890266,5.416940736,5.776210693,5.048888004,8.230536482,8.694461548,8.502406462,8.61151737,5.567761762,5.039718917,4.916194403,4.908678125 +Syt12,4.767637379,5.190903693,5.395852498,5.012186041,8.293550991,8.303615821,8.49697121,8.720061896,5.418789636,5.468433955,5.416897213,4.947238613 +Rxylt1,8.585814495,8.634540942,8.621405057,8.295329631,11.69474484,11.60288624,12.18428244,12.2861856,8.47614763,8.575021585,9.35380144,9.418320017 +Spc25,7.593541274,7.187115936,7.243432547,6.754073979,10.02131244,9.977217631,10.87368074,10.75085641,6.873211678,6.933095637,8.079465682,7.515744825 +Bax,10.01802525,9.901750219,10.03264789,9.936926723,12.99053083,12.90194775,13.64638111,13.76676283,9.867110537,9.917532859,11.28202332,10.93846603 +Tmem63b,8.326264498,8.737602465,8.509827954,8.815455177,11.65809898,11.76370944,12.30388552,12.33429628,8.860093744,8.79287931,10.72532324,9.589594765 +Efcab8,3.631349188,4.546060717,3.301881152,4.423697269,7.007997065,7.396519539,7.51285661,7.510053413,4.286224035,4.023054398,5.29664392,5.558393222 +Apaf1,10.81835853,10.89462826,10.82991686,11.05337577,13.57715774,13.65512791,14.25453222,14.23894257,11.0591251,11.03742604,10.40860526,10.09258075 +Notch3,4.464361122,4.593112016,4.14388433,5.251417282,7.671056853,7.942563422,8.323593224,8.063974006,5.614186324,5.34954949,4.398015364,5.910317704 +Qpctl,8.157135891,8.216844149,8.171463547,8.646132662,11.29210115,11.30597779,11.73631355,11.68478718,8.153557663,8.220067005,8.520817729,8.447053529 +Trp53inp1,13.05500532,13.02842414,13.05225199,12.87716361,15.08551415,15.04635244,15.92852642,15.90176337,12.90464215,13.11583198,11.50982436,11.15418508 +Ddit4,9.269755759,9.854256242,10.23332878,10.09554664,12.23706613,12.30051844,12.91609301,12.91079742,9.195845169,9.268861882,9.919795806,8.528783729 +Cdkn2b,3.774333367,3.455509812,3.974897492,3.716622471,6.572691097,6.804380672,6.889322596,7.383735283,3.45680615,3.570459614,3.832876068,4.505524682 +Rasd1,4.133931288,3.814343035,3.677283755,4.245437312,6.780542646,7.169033785,7.864775435,7.689865354,4.227706854,4.694256915,4.916194403,4.78639807 +BC034090,5.67595389,5.938051116,5.395852498,5.859182926,8.557630242,8.73982987,8.93103282,9.441889655,5.786247844,5.578263266,5.663737888,6.469574739 +Gm21969,3.472619117,4.165130232,3.783457728,3.88846741,7.17795065,7.050577131,7.214786893,6.965544489,4.227706854,4.170633377,3.832876068,4.282408945 +Dcaf4,8.744058623,8.659623931,8.517540977,8.661027113,11.60443342,11.57812009,12.14050817,12.33144732,8.739623116,8.77568945,9.183409362,9.258847249 +Sulf2,7.812349811,7.346640151,7.618159365,8.279973928,10.47175535,10.4832828,10.89036029,10.91685001,7.982727442,7.839310869,6.622440012,7.768139227 +Gria3,6.458136457,6.621818879,6.582527346,6.93162204,9.555104742,9.758480937,10.18208258,9.892064449,7.165911941,6.847936418,6.264684846,7.217539872 +Ctc1,9.577066476,9.786289051,9.597780332,9.851207627,12.5979001,12.61679954,13.16857088,13.2693251,9.813407112,9.784927899,10.02604298,10.00732797 +Hdac4,10.40283894,10.52998828,10.35347368,10.58228529,13.41640407,13.56662223,14.0143645,14.03757199,10.55897337,10.53921846,11.67218496,11.26470443 +Gm28041,6.085532912,6.291827159,5.696913299,6.15689304,9.026854665,9.354023244,9.555836012,9.585111489,6.205548913,6.386729557,7.667486821,7.136429985 +Gm6786,2,2,2,2,4.94577978,4.929301606,5.351164343,5.309504902,2,2.285565721,2,2 +Wnt6,2.718566724,2.255337515,2.573859718,2.272475024,5.177264484,5.924116636,5.654335376,6.396233625,2.472776571,3.570459614,3.832876068,3.694911979 +Sp6,4.898298181,4.959125317,4.726342076,4.366690008,7.293445457,7.091153025,8.090860763,8.399376065,4.960902934,4.484563717,5.527893648,4.220788189 +Klhl26,8.588236359,8.703166748,8.621405057,8.67283294,11.45807899,11.44356792,12.1664183,12.22225825,8.710538607,8.548277534,9.358815048,9.192181547 +Zfp385a,8.553954608,8.547634098,8.517540977,9.423477579,10.83795894,10.80935301,11.02956514,11.31031164,8.573344229,8.77568945,6.605666687,7.429851066 +Sh3yl1,5.231448299,5.128392085,5.428947717,5.795813745,7.255965197,7.490523484,8.412885145,8.468432702,5.724104521,5.86503433,4.233071757,3.944040584 +Ccdc122,6.788100465,6.361425208,6.654250801,5.706744655,8.911063049,9.148287607,9.087489613,9.340681442,6.111587802,6.416609817,5.210518769,6.401776666 +Hmgcll1,6.029605492,6.361425208,5.776210693,6.808599761,8.38319456,8.443381255,9.488962433,9.363173882,6.250330005,7.296656462,5.337852167,5.372550493 +Slc35e4,5.256027871,4.994604762,5.179552205,4.679161198,6.977617942,6.987489831,7.898146904,7.889012231,4.396585756,5.34954949,3.712704574,3.694911979 +Klrb1,3.472619117,3.891656122,3.783457728,4.245437312,5.815021191,6.280527977,7.031445404,6.777388661,4.227706854,3.673050397,2.650246926,3.150880318 +Peli3,3.965307359,4.034863393,4.14388433,4.423697269,6.44527968,6.594605547,7.075869929,7.427081906,4.166715446,4.367056342,3.437393082,3.277335555 +Rap2b,9.561127592,9.262739292,9.397081397,9.77109743,12.11764223,12.06428195,12.46218061,12.4706628,9.174703799,9.313220723,8.661363045,9.348009267 +Jun,9.610809734,8.676106877,8.867582957,8.785863734,11.87191553,11.92391682,12.17282378,12.17853854,8.762990994,9.244078679,9.987718413,9.006091142 +Slc2a9,8.357834809,8.314835552,8.505955923,8.883076351,10.81236691,10.77084253,11.15651226,11.15944483,8.552634947,8.790028519,6.867260015,7.331246817 +Mdm2,11.04287167,11.14901281,11.05726832,11.34613109,13.97018419,14.10225612,14.33107749,14.34938857,11.19371015,11.26182875,11.33259224,11.10173514 +Kif18b,7.598355135,6.981449128,7.086350034,6.330902363,9.214398946,9.14347245,9.798277711,9.832859832,6.530029114,6.085665439,6.605666687,5.948834974 +Slc22a12,4.801428619,4.28460269,4.495888242,6.538722587,7.293445457,7.24292478,8.119439355,7.801133239,5.470175298,6.175785983,4.142942955,4.398275685 +Gpr179,3.554166053,3.732651019,2.983313619,4.042004615,6.552222025,7.278497903,6.468372095,6.655113936,3.89314645,3.768827726,4.614693621,4.743221125 +Sgsm2,7.873198444,8.186483675,7.873888491,8.369748188,10.93995989,10.8123899,11.40453957,11.5168936,8.292076179,8.141727573,8.620200634,8.560221988 +Cpne2,6.336640873,6.109666125,6.271931278,5.978136548,8.411879267,8.329284849,9.065626495,9.097425865,5.659163444,6.140410401,5.165448125,5.314737896 +Fosl1,4.697583589,5.159986439,4.778630418,5.153703677,7.840999906,8.089995959,8.21522865,8.150571942,5.06484454,5.039718917,6.407013188,6.495826317 +Slc39a14,8.677378397,8.821494126,8.632102455,8.867750412,11.46835716,11.61424187,11.90123669,11.99897743,8.642172065,8.588209965,10.4770643,10.01301946 +Lif,4.546363116,4.682847135,4.432025256,4.813210419,7.341950952,7.592972851,7.69478004,7.569293355,4.547751423,4.64462122,4.54602092,5.02139891 +Gm12895,9.164950881,9.874632531,7.994858367,8.584967804,10.29824685,8.85033382,7.565734344,8.592605253,8.980164973,8.81828606,5.563072572,5.89066645 +Gm12896,9.164950881,9.874632531,7.994858367,8.584967804,10.29824685,8.85033382,7.565734344,8.592605253,8.980164973,8.81828606,5.563072572,5.89066645 +Ldhb,4.733035648,4.226102827,3.882350692,4.366690008,6.780542646,7.661938156,6.328496569,6.374254646,4.342459929,4.877303674,2.890761998,4.089040188 +Rps27l,9.485191821,9.051569701,9.41989639,8.9621736,11.98457157,11.74634747,12.59816407,12.43593797,9.290008606,9.29322653,11.10536176,10.73173133 +Csf1,8.124135659,7.865672066,7.949962397,7.675213394,10.61062269,10.65551045,11.17194291,11.24897844,7.858063908,8.236912818,8.851209274,9.073006487 +Heyl,3.294241044,3.732651019,3.43816071,3.521505142,5.744602455,5.924116636,7.031445404,6.636768368,3.647442438,3.858640528,3.437393082,3.694911979 +Fam216a,7.451786436,7.156116523,7.298192378,7.271498897,9.866199815,9.687479848,10.59841782,10.75723936,7.320905825,7.69438007,8.091563203,7.620864701 +Cby1,7.341264155,6.954676405,7.186511933,7.054029079,9.50539528,9.245862039,10.03607557,10.24983953,7.044029758,7.003697325,6.824409731,6.534329202 +Pomt2,8.37757117,8.332273732,8.350542941,8.437058453,10.92411664,10.89778874,11.70483447,11.73200034,8.528597366,8.544899398,10.2664419,9.535259255 +Nexmif,2.56964645,2.827379902,2,3.028138521,5.066159961,5.449709713,5.351164343,5.524325829,2.661445587,2.907315663,2.361452162,2.492449186 +Stac2,8.16689054,8.429458288,8.195703421,8.854853241,7.037749658,6.875797383,5.730417878,7.023178681,9.398434936,9.481695809,5.663737888,5.929704877 +Fam83h,5.373011013,5.493338952,5.613002542,5.282571143,7.824025118,7.862783077,8.188503056,8.903889801,5.826237743,4.960795631,5.527893648,5.986350588 +Gna15,8.448600913,8.499050328,8.52138208,8.704809485,10.45117414,10.31362351,11.07404671,11.36914337,8.528597366,8.353494795,7.643035469,7.217539872 +Rrm2,9.201793254,8.495958825,8.646243374,8.272234348,10.67475395,10.50033131,11.45726788,11.53310284,7.828834651,8.025343843,8.796831581,8.419890749 +Creb3l1,4.421543338,4.165130232,4.295136453,4.307337135,6.280847002,6.446096851,6.278686222,5.907671439,3.89314645,3.858640528,2,3.694911979 +Dnm1,5.04656042,5.128392085,5.014936794,4.855261593,7.317902048,7.505612107,8.154384437,8.124475756,4.887200304,5.410215952,5.070849249,5.53326555 +Muc5ac,2,2.255337515,2,2.69922708,5.329359085,6.446096851,3.016315449,3.690892926,3.555270817,3.209970323,2.650246926,2.858905856 +Tsen54,8.882707706,8.737602465,8.972320797,8.88561492,11.31961125,11.35470367,12.04643789,11.94920299,8.964571913,8.994549621,10.9832514,10.27322686 +Bhlhe41,9.603645179,9.550371252,9.394989304,9.670169567,11.57493177,11.41388415,12.09086113,12.16699896,9.340933103,9.77053779,8.283069213,8.584888467 +Akr1b10,9.746016193,9.660777137,9.667034966,9.62378679,11.56666409,11.57901195,12.18512762,12.34493008,9.63352405,9.614925672,8.433218513,8.70226547 +Carhsp1,9.790863912,9.623017792,9.656594405,9.853802846,11.9226309,11.68222131,12.90330972,12.93375552,9.74203242,9.958734604,9.805097564,9.650746689 +Bcl2l11,10.27638197,10.34134968,10.28733874,10.61707287,12.89927415,12.97964794,13.39328333,13.28302963,10.47499028,10.44631099,11.06605115,10.39678684 +Ercc5,9.7950633,9.812619425,9.697910821,9.751747143,12.1885708,12.35724513,12.58445569,12.50457143,9.690153218,9.603604886,10.01019795,9.560352526 +Zbtb42,6.710189853,6.699125656,6.654250801,6.808599761,8.123612798,8.232844708,8.529279746,9.090702212,6.493241691,6.474575479,4.54602092,5.400610616 +Nme4,6.165557733,5.938051116,6.097654355,5.751966459,8.359828948,8.139200634,8.839516857,9.011040313,5.614186324,5.680319746,6.518743879,6.881575578 +Nudcd2,9.259155413,9.257272219,9.156489134,9.235270674,11.708106,11.64608094,12.27202044,12.20990151,9.199655989,9.186709067,10.71753809,10.43459827 +Notch1,10.44353449,10.73989448,10.55523482,10.81782869,12.69766497,12.94201429,13.3920028,13.26820819,10.6467347,10.50050497,10.2503449,10.01188296 +Arhgap35,10.66562151,10.73465822,10.63451401,10.98577256,13.30497608,13.41354748,13.7110388,13.8245112,10.94343626,11.0027569,11.76244342,11.47354414 +Dagla,3.904415611,3.965035939,3.562670827,3.413066444,6.204202492,6.31519679,6.118022626,6.133814352,3.966553518,2.907315663,3.437393082,3.944040584 +Gm18959,5.395310955,5.542112217,5.851375675,5.859182926,7.95453978,8.186782332,8.105220823,7.949721185,5.519793488,5.380201582,4.969609437,5.223428512 +Klhl22,8.308748631,8.380008253,8.494277086,8.655087772,10.82735071,10.74723295,11.60289448,11.65490195,8.625270491,8.752446315,9.363811294,8.994630498 +Thumpd2,8.083512396,8.17493173,8.121726664,7.999709287,10.44424797,10.51904076,11.05105043,11.0793498,8.004676165,8.058888763,8.789423864,8.473714331 +Pigf,8.009547287,7.786914842,8.219542742,7.932552798,10.36578121,10.27451872,11.08223646,11.00888155,7.960439633,8.150645001,9.606540148,8.839278015 +Spsb1,4.505944659,4.885436425,3.974897492,4.366690008,6.882442795,7.111020895,6.889322596,7.327653773,4.848887186,4.170633377,4.398015364,5.284938965 +Oxld1,7.097848442,6.936547859,7.147277637,6.431619293,9.237018116,9.218650466,9.822380403,10.03725682,6.965630391,7.013507041,7.849472929,7.402359338 +Ahi1,8.360670873,8.439148106,8.430341136,8.699048036,10.49874806,10.78791392,11.44391232,11.68924486,8.585045989,8.70782963,8.766969726,8.746666759 +Rgs12,7.942983054,7.77165696,7.754949098,7.771689765,9.690038252,9.636985574,10.34068626,10.4807982,7.773659401,7.765765552,6.687648648,7.177554864 +Micall2,5.562291585,5.250818805,4.877843696,5.372188845,7.268567117,7.260820981,7.813224657,7.245286494,4.547751423,4.484563717,4.398015364,4.869058619 +Ppm1d,9.780311649,9.738695017,9.72647684,9.950326722,12.1760834,12.25827065,12.53094309,12.60530506,9.810917899,9.954921541,10.14109439,9.577354407 +Palm,6.540483092,6.27749538,6.443690968,6.979938461,8.780768519,8.59920658,9.231902502,9.431284305,6.657417704,7.089672191,6.033404797,6.240357888 +Serpine2,8.828426583,9.166858228,8.915074178,9.251106994,11.02690227,11.44258824,11.62486392,11.87337069,8.955585336,8.889265761,8.95748592,8.699444487 +Nfil3,5.86358911,5.657285255,5.776210693,4.855261593,7.542055217,8.250865607,7.889876126,7.809347145,5.470175298,4.833672935,5.491835431,5.223428512 +Gm15185,5.15509243,5.39054838,5.217929976,5.61181267,8.230536482,9.043632066,6.227094439,6.025169363,5.765829386,5.86503433,4.969609437,5.314737896 +Rnf169,11.00666491,11.13963393,11.03661611,11.30784138,13.5943095,13.65956138,13.99942646,14.06366447,11.36001304,11.34527457,11.94020245,11.38809012 +Sac3d1,7.583865094,7.283497006,7.474972836,7.332313598,9.832646421,9.584659704,10.39429469,10.506285,7.628546801,7.533246959,9.273776336,8.800313096 +Nfyb,10.07784572,9.955628379,10.00136044,10.06115049,12.35586935,12.35568468,12.99725456,13.123576,10.11828358,10.14205668,11.20616407,10.70736579 +Gm44216,6.178474048,6.2630198,6.290057156,6.40355328,8.478481402,8.504744047,8.507821314,8.015097793,6.349711253,5.798506761,5.902189511,4.743221125 +Il2ra,7.612701087,7.714288869,7.350949494,8.344136062,10.13922443,10.40094569,10.75574906,10.75723936,8.1015497,8.425066392,9.149092738,8.935920519 +Gne,10.37013908,10.39875561,10.3652763,10.54904219,12.81211173,12.87895677,13.00636898,13.23524547,10.2536663,10.51697755,10.56320342,10.64495501 +Bloc1s2,9.47475822,9.246275524,9.197879177,9.219258589,11.72306241,11.62809642,12.13920037,12.0970119,9.224183945,9.409235086,9.821533254,9.702383768 +Rap2a,7.451786436,7.533124091,7.559592713,7.87750253,9.733865693,9.75216876,10.37219942,10.45354345,7.49846364,7.724554421,7.549658751,7.626816028 +Clec2g,9.209679471,9.362861155,9.146575269,9.180502125,11.54222177,11.53832197,11.35131755,11.35448342,9.097148412,8.999494015,8.661363045,8.305816999 +Glipr1,11.29087843,11.11918515,11.01566396,11.33688541,13.45447311,13.53479903,13.65510024,13.75631196,11.0809833,11.0583085,10.94792192,10.9744996 +Mapkapk3,9.737313413,9.822524981,9.785164588,9.897221926,12.0356917,12.08074752,12.57481397,12.71512066,9.966633623,9.931829071,10.1220537,9.753596834 +Cpped1,7.892924068,7.985136409,8.224263697,8.121011611,10.28745145,10.28111024,10.54674601,10.73800515,7.853233305,7.930154173,7.806082996,8.001325508 +Bcl2l15,5.373011013,5.096090309,5.428947717,5.251417282,7.661533003,7.986246528,7.377434062,7.183433647,4.594813923,4.833672935,5.29664392,5.091932727 +Zfp958,9.452333064,9.450107879,9.432190517,9.340790398,11.72763336,11.95928189,12.24471512,12.18486591,9.555377345,9.545628827,10.9840628,9.894691343 +Efna5,2.976964514,2.976785029,2.793064158,3.413066444,5.329359085,5.569426496,5.44447472,5.524325829,2.977788722,3.066565004,2.890761998,2.858905856 +Gpr68,7.791482938,7.985136409,7.660575051,8.112367789,10.09391775,10.40296171,9.931167279,10.10721806,8.004676165,7.573591802,7.026965647,7.572349066 +Adam8,7.778816389,7.318917139,7.418419148,7.347124993,9.52653471,9.905083892,10.18715397,10.31618942,7.422233002,7.43447508,7.965765206,7.891911753 +Commd3,10.38344755,10.13525185,10.22981171,9.873119587,12.47109152,12.40278699,12.90125384,13.0352913,10.10818175,10.34894442,10.9099987,10.50898405 +Ston1,5.747040227,6.125756146,6.05589118,6.685800571,8.874432358,9.395114908,7.906370537,7.092127235,6.078856488,6.27698812,5.982341679,6.240357888 +Ppp2r5d,10.01982055,9.955628379,9.89878577,9.967203213,12.27581463,12.2307269,12.70603234,12.88528423,9.977772825,10.01475324,11.48367048,11.06220553 +Itm2a,6.415130745,6.188379627,6.427406482,6.499484695,8.324055287,8.196113213,9.054569422,9.090702212,6.403570716,6.557378069,5.846168796,6.040855946 +Tnfrsf10b,9.901139881,10.12528269,9.986153576,10.51583456,12.26995077,12.56191935,12.69835673,12.64140968,10.19474044,10.274412,10.00381089,10.00046842 +Dnah12,5.926191249,5.700897658,5.875584907,5.153703677,9.194724762,7.897516233,7.304636886,6.599362184,5.659163444,6.416609817,5.165448125,6.022915327 +Gm17981,4.661238356,5.442858938,5.179552205,5.838367611,7.204427019,7.396519539,7.795623436,7.653827869,5.06484454,5.039718917,5.118923916,5.02139891 +Eng,6.655809224,6.233625483,6.735862064,6.787036104,8.68530621,8.77138398,9.418837738,9.100775977,6.938521048,6.953622554,6.033404797,7.161245315 +Phlda1,4.929194636,4.593112016,4.829089744,5.251417282,7.164527997,7.22480379,7.938804173,7.689865354,5.192720218,5.843197575,5.787884574,5.53326555 +Scd4,6.3820137,6.306017964,6.522465282,6.551568265,9.000655984,9.670844019,8.539890449,8.420978467,6.335926243,6.814659525,7.159291894,7.032666425 +Trim7,12.42289118,12.57892933,12.44976766,12.44371519,14.04041288,13.97082126,14.38522143,14.75131509,12.44290089,12.34683496,11.09262769,11.24065026 +Zfp874a,9.161702285,9.151222597,9.197879177,9.066542058,11.25062091,11.37333115,11.98126987,11.85166182,9.195845169,9.384879487,9.735489716,9.281659655 +Slc25a42,8.531478234,8.708518345,8.55549942,9.147037637,10.84638972,11.01446246,11.12426575,11.27293481,8.691720261,8.571705565,8.781977915,8.600093564 +Tnfrsf18,8.45392259,8.380008253,8.677562593,8.21686256,10.15458178,10.00136975,11.03894591,11.26996193,8.466690559,8.454170949,8.156344912,7.95949402 +Acot1,6.015278185,6.333987562,6.271931278,6.190132307,7.293445457,7.24292478,8.607020676,8.775616024,6.429764728,6.085665439,4.860725415,5.343933763 +St14,9.876581879,9.750417269,9.744663824,9.768348943,11.85947388,11.80926513,12.15697187,12.39217722,9.546427203,9.613313846,9.769772638,9.480441226 +Xrra1,4.898298181,5.159986439,5.014936794,5.084679392,7.150979288,7.490523484,7.606683989,7.316171038,4.887200304,4.742241548,5.597414066,5.057096829 +Pcdhgc5,4.929194636,4.101466604,4.061863734,4.478537287,6.552222025,7.130618869,6.803863586,6.858788757,4.684569418,4.694256915,4.317899532,5.191661031 +Abhd4,8.424407417,8.213083847,8.284270381,8.295329631,10.11500546,9.86176649,10.5201991,10.60984526,7.853233305,8.318311903,7.204552281,7.64452411 +Rarg,7.013864253,7.439678809,7.033534593,6.754073979,8.853672775,9.001677438,8.856593741,9.207179348,7.241797822,6.325045801,5.630957075,6.968501874 +Fbxw9,7.654902379,7.660079436,7.715256535,7.867263727,9.639996155,9.726640199,10.44880023,10.5473781,7.853233305,7.833784747,7.783888644,7.886961111 +Rbl2,11.5494953,11.56464493,11.55940011,11.66853737,13.32923961,13.39340874,13.72170877,13.88635944,11.59625499,11.59803096,10.72629344,10.58584492 +Mettl6,9.579503058,9.608778188,9.65309736,9.741973794,11.91713868,11.99714093,12.29334183,12.24817009,9.612237809,9.726485684,10.9295062,10.55496606 +Crip2,8.493221499,8.286488482,8.551748204,8.690362491,9.565355151,9.084401021,10.06207301,10.23161848,8.16139506,8.257697185,6.008099143,7.345752507 +Gpr55,8.448600913,8.359743683,8.438489809,7.507348828,9.763103694,10.09910964,9.704716496,9.994672336,7.196746916,7.296656462,7.477739313,7.241009525 +Homer3,7.514251356,7.692848902,7.451006476,7.927634132,9.516003713,9.545044069,10.37368301,10.49487163,7.867676861,7.971002072,7.7229782,7.690709804 +Arhgef9,5.711934846,6.125756146,5.327293511,6.222622967,7.736019447,8.10987966,8.201927738,8.144092016,5.865148998,6.104145543,5.165448125,5.910317704 +Nectin4,6.762594913,6.741509528,7.261917733,7.44675374,8.745142727,8.879584692,9.773765491,9.529019764,6.79476242,6.943395603,7.421344641,6.778420172 +Ttc9,2.56964645,2.472206906,2.315276684,2.272475024,4.121830865,4.257427168,4.966856657,4.817410675,2,2.907315663,2,2 +H2aj,10.06573086,9.918010496,10.04337336,10.04193403,12.15120497,12.07570118,12.50883462,12.89182582,9.981097883,10.06632344,10.85162126,10.48051021 +Snx20,11.62102056,11.55055949,11.53538285,11.57293979,13.62280816,13.52650119,14.02017827,14.19622261,11.52780061,11.59680801,11.68521611,11.37886294 +Clec2f,5.747040227,5.308344543,5.523908288,5.660059359,7.365605539,7.347116161,7.446733729,7.304596176,5.031022634,4.833672935,4.473915289,4.869058619 +Tef,10.45087241,10.41357656,10.48025249,10.65774009,12.44842544,12.45083808,13.12849003,13.22683785,10.48283036,10.32944256,11.10834175,10.84519376 +Irak1bp1,5.956502261,6.060290513,6.034547305,6.360403187,8.000591341,8.039053668,8.856593741,8.72441207,6.190307574,5.775631248,6.962555961,6.608382946 +Cuedc1,6.60887178,6.688332233,6.343107187,7.166857751,8.886746219,9.10436145,9.061950212,9.385321029,7.173682689,6.891144283,6.922483065,7.522144979 +Kif1c,10.67134378,10.70484482,10.57384937,11.00807839,12.85217087,12.74987003,13.17815419,13.349841,10.6467347,10.75046381,11.02485097,10.87612676 +Hspa2,7.246314305,7.042051875,7.167028154,7.369060817,9.368685547,9.200220026,9.892362682,9.956351055,7.263806477,7.533246959,7.827941079,7.778868982 +Msh6,10.98477228,10.79186795,10.78748377,10.92906624,12.92959513,12.92141706,13.38907158,13.59700491,10.75299384,10.94177299,12.27457718,11.60860949 +Sdc1,9.487788473,9.29333404,9.319786507,8.910757917,10.03243892,9.947138499,10.71887109,10.82666085,8.840701007,8.734764871,7.468491961,7.217539872 +Zbtb10,9.373088942,9.578409559,9.332960007,9.750354997,11.62540514,12.10571782,11.97052507,11.86649869,9.653111784,9.673331584,11.05219017,10.4405234 +Ephx1,11.38477295,11.29088582,11.30577771,11.38522585,12.33430279,12.15678951,12.79120835,13.01701136,11.33467677,11.552077,9.678483038,9.260762121 +Kifc5b,6.736630318,6.954676405,6.459793691,6.360403187,8.478481402,8.549111853,9.17177222,8.93800294,6.774464962,6.210314858,6.962555961,6.495826317 +Sspn,7.091033502,7.471504505,7.075940495,7.675213394,7.603030586,8.10987966,7.847795692,7.767801817,7.570867673,7.805832092,4.54602092,5.254511532 +Kcnc3,6.932332818,7.179428304,7.167028154,7.621399904,9.481237192,9.511802107,9.659211907,9.711012872,7.479780266,7.573591802,8.977181173,8.65936037 +Vopp1,9.146992392,9.157105835,9.190660804,9.327781514,11.13494405,11.16341432,11.39507415,11.48455962,8.995591299,9.332941603,8.636806794,8.999225687 +Dffb,8.902304616,8.917045682,8.79009907,8.875433733,10.8015681,10.70373693,11.60920567,11.61738438,8.993397612,9.014226331,9.987718413,9.46225053 +Zfp456,9.895283972,9.873441859,9.824559354,9.780676109,11.87294751,11.88333732,12.47467777,12.5284019,9.993224615,10.08272362,10.79725939,10.23087416 +Hpcal1,8.677378397,8.380008253,8.660247031,8.628053937,9.919112624,9.882143235,10.16161687,10.1897597,8.3203543,8.337963782,6.622440012,7.559960878 +Cacna1b,5.460214331,5.565894139,5.09959111,6.105552561,7.293445457,7.953608824,8.147462808,7.912078493,5.724104521,5.86503433,5.846168796,6.022915327 +Gm9961,3.554166053,4.226102827,4.365203817,3.88846741,6.007739785,6.349052004,6.278686222,5.937955164,3.966553518,3.943188334,3.943802815,3.944040584 +Zfp688,8.908132154,8.884317643,8.764398746,8.774950926,10.67593699,10.68065637,11.40163374,11.52689005,8.916755286,9.13147477,9.13162339,8.969091956 +Samsn1,10.91702759,10.64260479,10.72056301,10.42364309,12.75055893,12.68590377,13.29629142,13.18897548,10.90485704,10.93855853,12.26626289,12.07996098 +Anks1b,4.079883959,4.394933602,3.974897492,3.88846741,6.150746286,6.31519679,5.144218646,5.355104395,3.89314645,3.943188334,3.096851215,3.012266786 +Gm16071,5.15509243,4.847130731,4.67208712,5.153703677,6.632411446,6.754726648,6.803863586,7.131968168,4.809528777,4.539912876,4.04680616,4.698712009 +Depdc5,11.41612442,11.57530258,11.4870969,11.78936777,13.45757198,13.48261348,14.0237262,13.99387126,11.65398952,11.66879728,11.6277045,11.52822252 +Rnf144a,11.14510651,11.27293695,11.04930895,11.4285213,10.19640278,10.02250405,10.5201991,10.8347311,11.23700144,11.21795809,8.414078777,8.367539612 +Bfsp2,9.573403871,9.381407977,9.52503285,9.307098991,11.03337806,11.08773001,11.37817397,11.39119976,9.46485883,9.481695809,8.29880716,8.647700187 +Espn,5.562291585,6.478819432,6.325639697,5.774056675,7.661533003,8.007601887,7.227970315,7.60747701,6.363365793,5.18568593,4.614693621,5.850542218 +Dkkl1,5.694056536,5.063048703,5.179552205,4.935856384,6.23020572,6.414468376,6.575393183,7.023178681,5.192720218,5.114547692,3.832876068,3.501179337 +Csnk1g1,11.32176932,11.5078425,11.34910688,11.70779868,13.51967471,13.58804509,13.74051686,13.82400455,11.47689244,11.49370149,11.85139351,11.59615096 +Trim32,7.7531447,7.671085502,7.674440948,7.651543744,9.483941488,9.307428127,10.30225038,10.34048161,7.705609352,7.712560306,8.624370128,8.081516647 +Gpr132,10.38135435,10.65651599,10.43311432,10.42713248,12.29749815,12.78507744,12.85393899,12.88819526,10.53202252,10.47765435,11.7868288,11.16189066 +Gss,8.498381392,8.492860684,8.764398746,8.833974908,10.37163404,10.49277906,11.10563786,11.14247784,8.491772946,8.630258129,8.927429538,8.923886278 +Wdr91,10.41789426,10.49247708,10.4613817,10.84612664,12.22660881,12.20264704,12.88548069,12.88746805,10.7281435,10.7938006,10.21345622,10.11392411 +Txlnb,6.762594913,6.688332233,6.709168,6.614135032,8.102651442,8.570794357,8.795918799,8.758749161,6.190307574,6.047979543,6.407013188,6.58411828 +Slc2a4,3.294241044,3.646054099,2.793064158,2.69922708,4.591844358,4.517710431,4.441457194,4.94217554,2.472776571,3.340400992,2,2 +Eid3,6.560355745,7.007734056,6.722576771,7.017459339,8.371559057,8.908254265,8.986385975,8.583055406,6.349711253,6.293185872,6.703500466,6.735000163 +Fam110a,6.947503547,7.042051875,6.837957313,7.44675374,8.42319534,8.294956973,9.09110147,9.197824147,7.102191528,7.003697325,6.407013188,5.967714721 +Paqr5,6.436793841,6.927397439,6.17771994,6.614135032,8.151095774,8.647620081,8.407101246,8.837166599,6.600904046,6.59706282,6.130409277,6.359513809 +Foxo3,11.34020682,11.48930736,11.34097929,11.72491096,13.0759089,13.0766122,13.48347634,13.54092032,11.38114155,11.4671771,10.9303484,10.65299675 +Ptp4a3,12.4865923,12.4472789,12.24432788,12.68104765,13.9568628,13.93312799,14.24392444,14.55997452,12.3834139,12.50144078,11.47099249,11.61909665 +Ttll9,5.43890266,6.026408913,5.554221841,5.859182926,7.632578314,7.714830914,7.978346996,8.111248486,5.845824552,5.928628844,5.982341679,5.830053715 +Kifc5c-ps,2.403565732,2.472206906,2.315276684,2.272475024,3.420201967,3.939615977,4.764593057,4.94217554,2.977788722,2.728281369,2,2 +Chek2,10.29503426,10.14416556,9.744663824,10.91111211,12.13752997,12.46779055,12.60386401,12.27510818,10.23243159,10.27645032,10.80370818,10.79255891 +Frrs1,8.803630166,8.98035525,8.867582957,9.237259747,11.04898501,11.47648736,10.94127464,10.91399628,9.059897217,9.062275081,9.0126053,9.388855583 +Trib2,10.32002048,10.54726479,10.20136214,10.67471916,12.15163023,12.05212945,12.77838414,12.85187531,10.62918052,11.05771603,10.16705031,10.26275467 +Tbxa2r,7.397583401,7.68200824,7.359557785,7.571820113,8.197966103,8.527098501,8.69034221,8.978630249,7.299757514,7.800175978,5.527893648,5.948834974 +Myo3b,6.229013078,6.361425208,6.537716842,6.2064691,7.542055217,8.379292101,7.160814423,7.257345095,6.455491622,6.175785983,4.614693621,5.057096829 +Txnrd1,10.63549422,10.45714718,10.80649716,10.82776323,12.52164729,12.44449036,12.85473599,12.93937994,10.23150121,10.34506508,11.33322919,11.24065026 +Igsf11,8.293987852,8.393361539,8.333165791,8.839222886,10.60442279,11.41887405,9.302146413,9.478406217,8.561546779,8.601278875,7.985348517,8.789742229 +Ehd4,10.70185786,10.72280669,10.77948696,11.18801248,11.81345155,11.47648736,12.46113428,12.6289916,10.98432826,11.34866907,9.18905027,9.520950094 +Tbc1d2,6.241375971,6.58737576,6.076923882,6.921761499,8.081381036,8.007601887,8.632030466,8.952909217,6.468185049,6.757433347,6.221300238,6.387826159 +Ptpn14,10.49219448,10.77411277,10.49497806,10.13448783,11.66288011,11.89484376,11.88416276,11.95198799,10.10716766,9.841094556,9.083977084,9.274095529 +Erich1,8.279074487,8.300731639,8.324398091,8.398473026,10.43169645,10.5356743,10.6235759,10.53875866,8.537658457,8.368860392,9.125752948,8.921467337 +Sarm1,4.929194636,5.096090309,4.877843696,4.679161198,6.832392208,6.875797383,7.188053038,7.051154748,4.960902934,4.593216784,5.337852167,5.372550493 +Gm15988,3.38618521,4.165130232,4.14388433,4.042004615,5.780241427,5.782634872,5.44447472,5.639369912,3.89314645,4.367056342,3.096851215,3.150880318 +Clcn2,6.893693025,7.100211201,6.978711924,7.43986112,8.841072111,8.990995334,9.547972941,9.478406217,7.110312199,7.126298093,8.103560125,7.964202312 +Nanos1,8.059276274,7.935795642,7.735239319,7.596822981,9.531771521,9.232320408,10.02289903,10.28413278,7.55904987,7.991000345,7.998257919,7.596810812 +Gm6092,7.202724341,7.304853266,6.967492889,7.710005292,9.478527818,10.05106725,8.273610325,8.377445273,7.460851757,7.170810417,6.867260015,7.450131436 +Tnip3,6.216543328,5.974046173,6.097654355,6.40355328,8.293550991,8.687862306,8.083626774,7.7928723,6.095314968,6.416609817,6.327409469,6.255801796 +Myo10,10.13776635,10.22853728,10.5401683,10.6413101,12.25736099,11.99513776,11.96561448,11.94594701,9.732857087,9.858887776,9.481107409,10.20525038 +Fosl2,7.682365999,7.724890542,7.891803414,7.645565152,9.426058679,10.20226906,9.433138012,9.063489796,7.389241742,7.247627325,7.746122022,7.374333539 +Pinlyp,2.718566724,3.349885883,3.151372608,2.87303589,4.509301425,5.175593773,4.835212321,4.881141402,3.113255978,3.340400992,2.361452162,2.492449186 +Rgs18,8.498381392,8.282905612,8.566694899,8.362476717,10.10098129,9.899382836,10.73627507,10.74872246,8.361758615,8.372676355,8.538600889,8.194018662 +Celsr2,6.216543328,6.731029721,6.410936084,7.369060817,8.515958488,8.577950042,9.005651309,9.276955611,7.535119823,7.441758913,7.746122022,7.014623034 +Mx1,10.23602308,9.994482531,10.26345617,10.49104268,11.74858763,11.99246252,12.62923867,12.20679571,10.11425133,10.88546091,9.747008113,10.06544972 +Tmtc3,7.659516108,7.766534928,7.741839209,7.686904168,9.20787065,9.05393282,9.961081856,9.629857762,7.473498317,7.43447508,7.026965647,7.345752507 +Rapgef3,7.791482938,7.998305187,7.59647453,7.995014699,9.11322998,9.303116625,9.398576187,9.63217482,7.937802095,7.742360674,6.327409469,7.169423137 +Tcp11l2,11.13768521,11.38245688,11.23268805,11.64400754,9.832646421,10.09162956,9.959106734,9.907450449,11.6351175,11.70367752,9.034703314,9.147343115 +Avpr1b,2.853543032,2.660695792,2.573859718,2.501573121,4.421747709,4.929301606,4.690338293,4.680825834,2.661445587,3.460011225,2.650246926,2.492449186 +Pdrg1,9.792965134,9.71761734,9.734772083,9.908499789,11.4744891,11.38561719,12.24065568,12.25795586,9.766646692,9.804835919,10.81743071,10.53136529 +D630023F18Rik,5.128715231,5.221172261,5.255313241,5.587070468,7.109552574,6.875797383,7.626731031,7.037234525,5.495197695,4.877303674,4.860725415,5.428135372 +Tnfrsf26,9.27427503,9.417801295,9.306491607,9.463109319,10.64727283,10.62474512,11.29840198,11.28770801,9.494633394,9.572421569,8.314375277,8.467095178 +Cecr2,11.05649165,11.16710378,11.04797811,11.90555365,13.00590022,13.105063,13.88756781,13.69543167,11.72677163,11.97052116,12.04345418,11.88424942 +Zfyve21,6.955029505,6.621818879,6.886417478,6.840352704,8.428820264,8.25979234,9.212136236,9.309170355,6.844290793,7.013507041,6.988665908,7.059315321 +Cers4,10.82144981,11.07429123,10.8741445,11.22055038,12.55546468,12.63191948,12.83924864,13.05701204,10.99478398,10.97101478,10.481668,10.34447795 +Scd2,11.66039551,11.32438543,11.80527905,11.82749573,13.49676109,13.5446482,13.62629601,13.79741067,11.29826373,11.55291808,12.24813882,11.78595347 +Slc35d1,8.388729039,8.656858371,8.474599776,8.744507967,10.4690281,10.58977388,10.57925711,10.74337376,8.537658457,8.500248274,8.907038337,8.795037344 +ENSMUSG00000107877,5.694056536,5.901134957,5.554221841,6.222622967,7.55239843,7.815131879,7.656288769,8.09789882,5.745117792,5.496685028,6.153674462,6.224746864 +Gm45209,3.965307359,4.593112016,4.14388433,4.245437312,5.376691365,5.569426496,6.118022626,5.602032,3.89314645,4.367056342,2.890761998,3.393594456 +Fhip1b,10.00176627,10.11926797,9.916396041,10.3091707,11.83373408,11.93927878,12.27955839,12.38154299,10.07433476,10.15762266,10.58689862,10.29113804 +Trio,10.7366606,10.88461632,10.74950728,10.90048245,12.47958501,12.64475449,13.03384099,13.23676888,10.80832605,10.90798724,11.35785333,11.24790871 +Gask1b,7.209032695,7.521008925,7.434804819,7.596822981,8.886746219,9.153086747,9.491697747,9.611186098,7.529074773,7.612839031,6.824409731,7.463495013 +Upf3b,11.01973249,10.97120406,10.74786888,10.9595064,12.80780114,12.90372858,12.74036352,12.88066304,10.82137008,10.92367904,10.71265095,10.87237449 +Gm10819,5.986189521,5.190903693,5.179552205,5.187015665,6.204202492,6.280527977,6.030441662,7.698735807,5.252644411,5.253480615,4.233071757,4.156417582 +Mmp15,3.840840119,3.455509812,3.677283755,3.716622471,4.94577978,5.924116636,5.144218646,5.111163747,3.647442438,3.943188334,2.650246926,3.150880318 +Fbxo34,8.927389009,8.926261784,8.952541834,9.188748352,10.76756871,10.71999987,11.11276259,11.23380115,8.957837234,9.021536455,9.336115318,9.01972481 +Syne3,10.32946083,10.37371059,10.35131733,10.9679158,10.84638972,10.91484349,11.29213937,11.45802972,10.59051844,10.51611525,8.360096341,8.612143304 +Bscl2,10.13113782,10.11625118,9.98754266,10.15777792,11.64123913,11.71828819,12.37078865,12.48419378,10.17841864,10.1968949,10.45733304,10.23087416 +Sytl2,6.579958373,6.890204104,6.825583589,6.998820875,7.970054207,8.838465367,8.523944986,8.182542059,7.044029758,6.066945541,5.846168796,6.723937858 +1700073E17Rik,5.639052561,5.279868376,5.492944099,5.119604295,6.849269405,6.875797383,6.533532523,7.220862644,5.130198725,5.000796898,4.742947842,4.282408945 +Zfp692,9.160075239,9.314546239,9.035463208,9.205100735,10.79396055,10.69718008,11.53887722,11.63886001,9.356378606,9.274991728,9.901015168,9.601732144 +Gm13285,4.661238356,4.394933602,4.615711816,3.521505142,6.095232897,6.245005496,5.968953802,6.025169363,4.887200304,4.593216784,3.832876068,4.018361287 +Tmem108,7.583865094,7.626548308,7.639523082,7.793482291,8.197966103,8.186782332,8.607020676,8.888465577,7.799000937,8.318311903,5.982341679,5.74505982 +Rab40c,8.609852104,8.794068714,8.718291193,9.147037637,10.39193395,10.38675411,11.12073608,11.17621459,8.989000204,8.964522028,9.236127844,8.976101968 +P2rx7,8.697708044,8.711186718,8.818475031,8.752874503,9.960476964,9.974508932,10.38549715,10.55838511,8.510302644,8.428736734,7.51414714,8.221808238 +Utrn,12.94958099,13.18082616,12.96044842,12.86418981,13.94599382,14.25543565,14.00673555,14.02825551,13.1190254,12.72313068,11.04443169,11.82788842 +Wrap73,9.430903781,9.518734079,9.639023791,9.586824593,11.09038815,11.01709724,11.96266009,11.99313043,9.867110537,9.688719352,10.58796648,9.940806525 +Glipr2,9.164950881,9.05996768,9.176114797,8.844451842,10.15288346,10.0251242,10.79503344,10.97094082,9.061992155,8.994549621,8.109521382,8.055278429 +B3gnt8,10.97416315,10.903405,10.70629203,11.31303721,9.630264336,9.595277807,9.890291134,10.35878586,11.19514251,11.4774025,8.701383532,9.012924081 +Gm10309,7.849166075,8.435925393,8.022225026,9.119264317,8.144273956,8.303615821,8.685571914,8.56376395,8.549652061,8.607769202,6.176570415,6.224746864 +Mfge8,7.43034897,7.45885835,7.467028204,7.361785872,8.776363109,8.802262696,9.676144197,9.697800098,7.877226184,8.150645001,7.014311705,7.429851066 +Fzd5,8.214698322,8.264856568,8.210054232,8.713408745,9.981679762,10.04849384,10.42180485,10.38237705,8.334288187,8.36119805,8.543012639,8.2871491 +Stra8,4.079883959,3.646054099,4.221491643,4.582333828,5.744602455,6.566101665,5.087486638,5.057004272,4.727436452,4.09873012,3.437393082,3.694911979 +Gabpb1,10.40146245,10.43874995,10.35992343,10.54904219,12.2422665,12.49450687,12.45938871,12.51245393,10.5160655,10.64397543,11.6277045,11.48628446 +Casp7,9.043131608,8.83623657,9.035463208,8.915734358,10.33015667,10.14560362,10.89139639,11.03275546,8.793570799,8.944150703,8.55179587,8.480303254 +Dstn,10.12697946,9.808887237,10.26574781,9.969598104,11.63577778,11.3998199,12.15912422,12.14688376,9.953152049,10.18825965,9.883727077,10.07527577 +Fuca1,11.46306514,11.42086313,11.35503815,11.3847773,13.07389098,12.99743595,13.39035472,13.56946184,11.34331528,11.38973388,11.5327424,11.49485152 +Fam53b,10.78549385,10.86258242,10.64423455,11.30689467,12.48060088,12.41682248,12.93329847,13.05074662,11.07269537,11.22113634,10.9945698,10.62428056 +Map3k9,10.04912484,10.25620839,10.01912794,10.59319826,11.33541984,11.44650299,11.4677251,11.85315239,10.26006749,10.35763499,8.950860629,9.155599895 +Arhgap21,10.05963507,10.091887,10.08808744,10.21440949,11.702312,11.78163991,12.00060319,11.97179136,9.803424385,9.944703827,10.09826869,9.980853989 +Ttc28,9.516047385,9.80389592,9.614059781,9.936926723,10.33615552,10.42891678,10.43323295,10.79598888,9.776886261,9.449538061,7.651232052,8.294645271 +Tm7sf3,9.269755759,9.117423336,9.193070943,9.016460089,10.65088715,10.41699551,11.06947669,11.25425299,9.040904606,9.23362536,8.967367155,8.784427607 +Ulk1,9.328878988,9.627262411,9.394989304,9.792898838,11.0370655,11.11381215,11.53821587,11.49605454,9.550909215,9.603604886,9.561586889,9.258847249 +Tert,7.021052716,7.380561159,7.186511933,7.089694711,8.557630242,8.419680203,9.185352759,9.265060487,6.920160948,6.814659525,7.382485023,7.217539872 +Mturn,8.408050041,8.603279639,8.509827954,8.766711805,7.642294589,7.802969034,7.292138722,7.644676064,8.986796464,9.03363828,6.34772595,6.632246246 +Mxd4,12.44494011,12.36367669,12.44218926,12.4385379,11.38038142,11.09148502,11.33160553,11.59677108,12.54565954,12.37445492,10.27574953,10.01301946 +Gm8818,5.501915851,5.612313251,5.014936794,5.939564935,6.592873811,6.875797383,6.985609346,6.994649369,5.591160772,5.468433955,4.680245472,4.398275685 +Ypel3,10.58788005,10.70818801,10.50277067,10.76020299,10.28590263,10.14319357,10.67261297,10.95066162,10.86701613,10.9822978,8.375020276,8.528783729 +Plekho2,11.36901404,11.28328482,11.27482458,11.55670424,12.99598797,13.01269879,13.05987837,13.3269593,11.34159171,11.44106482,11.01138264,11.26470443 +Rhbdf2,10.85301101,11.02313142,10.91559785,11.39015078,11.80482549,11.86297755,12.08770073,12.21917897,11.07684528,11.1606228,9.559410918,9.428577207 +Cep290,8.600285067,8.477269388,8.767636436,8.2006437,9.497387448,9.515533709,10.05469285,9.928341793,7.951427198,8.049383824,7.269886996,7.9164133 +Vim,12.33603451,12.28817085,12.32290986,12.51799772,11.15629261,10.85572111,11.40236075,11.48584137,12.48351966,12.62556282,10.00541031,10.59649825 +Eola1,7.892924068,7.539143734,7.567044891,7.473999563,9.293603755,8.969390878,9.757947132,9.854851309,7.742650022,7.866628363,8.409253903,8.077176615 +Ldlrap1,9.947150645,10.16669795,10.02319724,10.3702635,11.152898,11.09896585,11.84565954,11.9881644,10.20045727,10.12970734,9.434377286,9.260762121 +Gm16106,4.133931288,3.965035939,4.14388433,3.622359877,5.177264484,5.249157948,5.871510387,6.185215173,4.594813923,4.42700607,3.943802815,3.501179337 +Arhgef18,12.89707082,13.28792902,12.92009994,13.48093473,12.24545744,12.46054958,12.21315879,12.24514568,13.36187708,13.43072573,11.20963708,10.8798693 +Zfp219,7.969235306,7.898820978,7.921175954,8.196560334,9.171427222,9.048791636,9.458526642,9.860791259,8.097470342,8.190105063,7.237589455,7.161245315 +Nrxn2,6.126100113,6.762243491,6.290057156,7.390668101,7.938856699,7.986246528,7.82194539,7.857672084,6.910892528,7.003697325,5.527893648,5.967714721 +Fam13a,4.585680003,5.096090309,4.877843696,5.048888004,5.8489822,5.878480494,5.968953802,5.524325829,4.960902934,4.919653551,3.437393082,3.393594456 +Bach2,13.05248613,13.29938993,13.07022696,13.83536044,12.26524247,12.26659834,12.11101438,12.22609812,13.48857521,13.56133281,11.12388649,11.60295986 +Zfp703,7.885066153,8.246578855,8.275199484,8.915734358,9.365756114,9.18624102,9.55844754,9.643704616,8.222607094,8.06833149,7.204552281,7.225405588 +Fam168a,10.23910874,10.64400196,10.43820286,10.7364924,11.57048583,11.35366172,11.60983528,11.82658951,10.48048281,10.55525731,9.177746311,9.324400159 +Scml4,11.06347133,11.35029376,11.03929758,11.57136385,10.49473121,10.62301654,10.20892628,10.35878586,11.45354387,11.55459878,9.238849848,9.096784766 +Gm15602,4.697583589,5.128392085,4.829089744,5.313066455,6.066654058,6.132867898,6.030441662,6.259037701,5.06484454,4.484563717,3.832876068,3.944040584 +Pdk2,7.29457022,6.908920626,7.086350034,7.526994518,6.4890124,6.171223763,6.000025285,6.618186506,7.402528915,7.412400303,5.070849249,5.254511532 +Zcchc24,9.4929678,9.587151736,9.466465488,10.03737506,9.431672472,8.963938831,9.651893932,9.972899257,9.755039632,9.797757406,7.477739313,7.740960431 +Tmsb15b2,2.853543032,3.891656122,3.783457728,3.028138521,2.740272983,2.960026096,3.89814012,3.950579434,4.342459929,4.304507053,2,2 +Lamc1,10.14436457,10.29585613,10.09583628,10.51419495,11.17314689,11.01578045,11.53755421,11.59499044,10.14026173,10.25593629,9.410432076,8.808190725 +Papln,4.801428619,5.159986439,4.67208712,4.679161198,6.066654058,6.649977502,6.400128861,5.524325829,5.567761762,5.551579799,4.317899532,4.018361287 +Capg,12.23706737,12.1760251,12.2241422,11.94351086,12.39949176,12.14539478,13.02867082,13.39403171,12.23719668,12.26373889,10.64448792,10.53295075 +Kif21b,13.25135006,13.56542905,13.26149692,13.89058978,12.62571652,12.85632932,12.17495263,12.39831616,13.6450672,13.66785559,11.41312371,11.73795965 +Dgka,12.39618714,12.72123653,12.48854614,12.60240373,12.0485362,12.24765275,11.3818648,11.62903251,12.78021394,12.57904689,10.23679216,10.89843772 +ENSMUSG00000074497,12.1512217,12.64670607,12.32648184,13.05190293,11.90609113,12.15439809,11.84244872,11.90581239,12.69807134,12.63948746,10.62276971,10.40978874 +Mafa,2.718566724,3.235913694,2.573859718,2.87303589,4.591844358,3.531413984,4.690338293,4.529944782,3.647442438,3.673050397,2.650246926,2.687281759 +Dab2ip,8.291017486,8.279313823,8.454650366,8.736092628,9.305882531,9.022807255,9.744249111,9.96188824,8.497975993,8.500248274,7.051945356,7.891911753 +Cd55,14.13595975,14.28641087,14.04650783,14.22577707,13.8177522,13.80843891,13.97250913,14.17502446,14.45029354,14.56844335,11.94978708,12.48834601 +Vmac,8.583388559,8.318340091,8.494277086,8.409099083,9.380344155,9.294454771,9.955148358,10.22088228,8.463524375,8.649259211,7.730734133,7.757329073 +Ddx25,7.042405667,7.108331538,7.022735455,6.881631245,6.25574855,6.414468376,5.802688264,6.480946723,7.026972151,7.344073993,5.070849249,5.057096829 +Trpm2,10.81370917,10.95497286,11.07043713,10.97627647,11.92661215,11.83562518,12.03804178,12.13386128,10.36645094,10.1183882,9.867988663,10.42864871 +Wipi1,6.947503547,7.202369384,6.874454185,7.133071517,7.970054207,8.419680203,7.67566277,7.971844202,6.668459559,6.825837324,5.787884574,6.093376825 +Gm3200,4.505944659,4.546060717,4.726342076,5.282571143,5.42251996,5.831353476,6.060229988,6.259037701,5.097891669,4.593216784,3.943802815,3.944040584 +Nfic,8.765617646,9.097165124,8.873605561,9.725063889,10.21442682,10.19763102,10.39283215,10.40151954,9.095103943,9.151603586,8.127258769,8.600093564 +Rell1,8.023931338,7.993928937,7.921175954,8.615874353,9.17812214,8.820477586,9.094704307,9.063489796,8.105617556,7.940475085,6.89513575,6.968501874 +Ust,6.489569809,6.478819432,6.582527346,6.2064691,7.798182473,7.412618405,7.389217648,7.196018183,6.390293179,6.122391917,5.021117212,5.910317704 +Aanat,5.831238991,6.109666125,5.776210693,6.720341105,6.832392208,6.898838367,6.768210305,6.920755723,5.975956211,5.989538041,4.969609437,4.60534958 +Zbtb7b,10.60651748,10.65997293,10.58856999,10.600943,11.50875289,11.45332833,11.72007682,12.09994452,10.63200359,10.61929389,9.688473872,9.644893464 +Ngfr,7.519336712,7.745862991,7.625315813,8.457678036,8.052523704,8.148843346,7.435412492,7.405571385,7.891432691,7.540049937,5.956115975,6.127357724 +App,9.790863912,9.949991368,10.08549521,9.849908265,10.91512775,10.65551045,10.63599231,10.78769834,9.159131305,9.229422732,8.560525952,9.289184329 +Pear1,9.434946092,9.768464648,9.405419563,9.766972733,9.907073088,9.993363888,10.1091452,10.52386159,9.657274778,9.511422653,7.998257919,8.136780177 +Vasn,10.18333245,10.49014848,10.37379977,11.07633564,10.87757349,10.7183818,11.29292368,11.21691962,10.61996724,10.41519687,8.811533874,9.291059381 +Fam214a,11.68888457,11.79810477,11.58989933,11.79579282,11.29132944,11.49077521,11.40308739,11.54113967,11.71350585,11.88125855,9.725820301,9.836820612 +Tmem71,10.008111,9.886485511,9.856839397,9.941813863,9.24341613,9.333030012,8.906644077,9.175756497,10.16483711,10.18174913,7.90536794,8.460445515 +Orai2,11.19203813,11.31739723,11.23502904,11.85819384,11.97787244,11.90696962,12.53790715,12.67859577,11.7888026,11.87622714,10.37311771,10.43205147 +Akap12,10.51018666,10.50329446,10.31083238,11.2935751,10.68301492,10.56117342,11.32010949,11.46844097,10.99533219,11.51025149,9.157748723,9.773851847 +Tsku,6.029605492,6.306017964,6.360365716,6.685800571,6.962185076,6.171223763,6.889322596,6.133814352,6.220630917,6.104145543,4.742947842,4.743221125 +Btg2,12.5858229,12.52174791,12.55914459,12.75527828,13.1546072,13.15226769,13.83710832,13.90228613,12.55777267,12.80342656,11.83978586,11.47023797 +Prkce,11.40483378,11.71512879,11.41046028,12.20721463,11.73616505,11.86444139,12.17707835,12.16579992,11.82255756,11.95692287,10.12793919,10.23380167 +Sptbn5,6.426002953,6.67745745,6.522465282,6.82984585,7.341950952,7.564436371,7.304636886,7.479495553,6.657417704,6.745710587,5.118923916,5.948834974 +Lca5,7.650273847,7.82683081,7.831201038,8.07726511,8.613031791,8.720560733,8.80474445,8.900049177,7.942358109,8.114639724,6.65541272,7.023672938 +Slc2a8,7.111382501,7.179428304,7.205736084,7.552779428,7.456526296,7.330265132,7.993865562,8.226142425,7.271068712,7.312636098,5.874451051,5.929704877 +S100a11,9.945262543,9.565196157,9.816765989,9.591496988,10.53701168,10.3826736,10.69770533,11.13514474,9.623629542,9.764741315,8.628527607,9.176037441 +Pdzd2,9.501987119,9.736077086,9.597780332,10.44100623,10.1831515,10.36209612,10.51213883,10.40016061,9.696909587,10.04973468,8.534175607,8.538287349 +Nfatc2,10.02965493,10.42905745,10.15637284,10.50101061,10.83690162,10.97299577,10.53486031,10.88417239,10.05132074,9.74867987,8.84764717,9.064261742 +Psd3,10.51401311,10.61793267,10.58030813,11.0074958,9.802633088,9.749002285,9.972876141,10.01434638,10.81765523,10.99349326,9.050282913,9.094639226 +Sfxn3,9.911814366,10.09393314,9.895829711,10.42189523,10.21930363,10.57733089,9.566253882,9.933987318,10.14323297,10.18717661,8.212814975,8.950230341 +Ypel2,8.482846016,8.426213832,8.628545462,8.815455177,8.411879267,8.474388873,8.329721063,8.244432335,8.237512733,8.636619669,7.301477298,6.469574739 +Rb1,11.87395681,12.08637496,11.89978853,12.08220973,12.40020774,12.39470497,13.20486205,13.18444343,12.05014114,12.07580392,11.31076697,10.86105876 +Ctse,9.853613254,9.557802747,9.378142435,9.30899152,9.10973239,9.128929793,9.028435179,9.320708723,9.266583552,9.757462817,7.532012207,8.140944811 +Pitpnc1,10.39386819,10.6214832,10.3759228,10.42538884,10.73955396,10.6955362,10.62855529,10.90444287,10.4057466,10.16203941,8.811533874,9.044390083 +Cd93,10.20952508,9.921471125,9.885435548,10.62999958,9.923103578,9.979921254,10.46141332,10.34754922,10.57519886,11.13107741,8.681512055,9.206160949 +Trp53i11,11.84184093,11.97754466,11.81860805,12.36335177,12.16895893,12.13572891,12.49151568,12.76638594,12.09686666,12.36179138,10.78241015,10.59346246 +Zc3h6,9.601249066,9.677246987,9.458473739,9.653881316,10.44146816,10.65551045,10.31001991,10.51006948,9.658659777,9.956193682,8.261814611,9.455578448 +Pde2a,10.65814846,10.88933648,10.65038643,11.16102419,10.34510728,10.74723295,10.75688644,10.84175572,11.19752661,11.34866907,9.257761418,9.512938804 +Cast,11.43272796,11.51090867,11.55331593,11.50893134,11.77201048,11.88405917,12.0727077,12.18170569,11.5629886,11.49063199,10.07865041,10.29674831 +Cd55b,8.626443262,9.240745583,8.809078255,9.30899152,8.451103184,8.563603003,8.661480928,8.592605253,9.32532045,9.377301977,7.558401736,7.483311108 +Tcn2,9.802382945,9.940926086,9.914936701,9.681901118,10.21930363,9.826151055,10.49042199,10.45746865,9.347818194,9.565769887,8.45210765,8.826406286 +S100a10,11.02331661,10.94933328,10.96790644,10.86939839,11.51735819,11.16697766,11.98126987,12.24590238,11.25221863,11.25409191,10.35942521,10.05445281 +Etv5,8.793171205,8.721811128,8.864562201,9.523035322,9.414765131,9.259277745,9.82455172,9.758450032,8.619592344,9.101894857,7.835154127,8.217870921 +Coro7,11.88876851,12.04546255,11.88793606,12.56052006,12.25736099,12.19277593,12.8676918,12.75633069,12.16447819,12.10677748,10.85428632,11.03505115 +Gm26528,7.17721141,7.592219268,7.368115017,7.669332289,7.022950058,7.008826929,7.469113118,7.064941939,7.783849493,7.359539717,5.982341679,5.910317704 +Rps6ka5,10.1960913,10.41929939,10.35023795,10.70162083,9.931052519,10.04849384,10.07672102,10.01434638,10.68189625,10.56945825,9.093031453,8.760266514 +Brdt,5.074468413,5.336269505,5.291752243,5.817247569,5.329359085,5.782634872,5.802688264,5.812808463,5.724104521,5.989538041,4.142942955,4.341505199 +Esr1,8.020348748,8.37665053,8.238334573,8.540555185,8.109672454,8.303615821,8.016834841,8.176204461,8.076898715,8.177071264,6.500712715,7.102664614 +Mgst2,9.394004069,9.532377907,9.354652007,9.979138113,9.722460621,9.713704497,9.563656459,9.51653187,9.567225146,9.557411923,8.091563203,8.249072623 +Eps8,9.128807537,9.101239587,8.955384056,9.62074252,9.137478523,9.236848423,9.447297929,9.508986916,9.458511427,9.68412023,7.945912406,7.992133879 +Cep250,11.93231248,12.06462992,11.84528534,12.12982945,12.20832851,12.23977872,12.15222535,12.46026763,11.85825562,11.73625411,10.51573525,10.87300054 +Nlrx1,7.282656717,7.194762819,7.086350034,7.098475035,7.499924477,7.260820981,7.377434062,7.520097207,6.814778267,6.792040711,5.727146202,5.986350588 +Runx1,11.70431702,12.06358622,11.87147826,12.2607525,11.5628322,11.57096525,11.42328612,11.47877763,12.15223977,12.04803376,10.56428896,10.51461199 +Plec,12.80766992,13.07927078,12.82034464,13.42575152,12.72421139,12.8422834,12.68228341,12.81359688,13.18490908,13.00157052,11.48882498,11.75944997 +Itga6,10.23293081,10.41357656,10.22863745,10.47511791,9.857884342,9.749002285,10.03981829,10.01256888,10.42784591,10.44721603,8.766969726,9.070825265 +Rgl1,11.06521098,11.01721358,11.22799462,11.37170813,11.59257977,11.23984393,11.89866268,11.81490829,10.96542677,11.2447526,9.843160237,10.66026872 +Stard10,9.302572943,9.291552197,9.240447023,9.213207942,8.886746219,8.856231632,9.098298169,9.349157254,8.960085622,9.115622525,7.972322557,7.64452411 +Calhm2,11.16633382,11.24466727,11.11242407,11.31633393,11.24425484,11.05733278,11.69478053,11.89620445,11.24486064,11.22799861,10.14545293,9.998174629 +Rnasel,10.68668149,10.67986147,10.60676203,10.68349911,10.56282126,10.77862731,10.28027041,10.41234513,10.46235685,10.56195752,8.889822705,9.712213188 +Hmgb1-ps8,10.88192374,11.04180103,10.98121557,11.15735228,10.79177958,10.77551844,10.37664563,10.85867446,10.97824013,10.94562092,9.57457424,9.665276691 +Scand1,9.781370355,9.407966542,9.501890426,9.27454023,10.25931514,9.684167993,9.222053221,10.28707663,9.461688619,9.733921747,8.967367155,8.402650585 +Fmo5,8.739707886,8.95356203,8.698070614,9.034873496,8.699336548,8.958466103,8.502406462,8.587838232,8.806123528,8.801398038,7.382485023,7.66780177 +Chst14,6.845916325,6.918188612,6.898282383,7.017459339,6.992887464,7.029853051,7.188053038,7.131968168,6.612385268,6.685623926,5.597414066,5.788182586 +Prxl2c,8.952044699,8.796583588,8.805932345,8.724795269,8.824098178,8.519685437,8.839516857,8.907720228,8.773256451,8.829435905,7.57573034,7.470130667 +Dck,10.1093823,10.11322806,10.13271329,10.36844972,9.780806161,9.591747115,10.05469285,9.93210793,10.07951442,10.36531622,9.047180424,8.741190756 +Gtf2ird1,8.702187102,8.77123536,8.783716783,9.057564608,8.970120234,8.925186464,9.109026349,8.94547533,8.872083149,8.581630845,7.332390671,8.072823488 +Sh2d3c,11.1610562,11.27158175,11.10796067,11.61752707,11.35549391,11.31242744,11.75350962,11.87532812,11.380722,11.41447119,10.18551002,10.36063858 +Calcoco1,10.16965138,10.15302454,10.09325796,10.43235078,10.31656736,10.28548791,10.4697612,10.5050213,10.2536663,10.54176279,8.900176716,9.401060961 +Trafd1,11.14798229,11.11011525,11.29010275,11.17042353,11.21525469,11.12850722,11.62236999,11.58963531,11.0116823,11.20088816,10.03859489,10.14949852 +Tex9,9.315785923,9.453299101,9.297559784,9.703643916,9.290517662,9.172125237,9.589422625,9.573101792,9.630703965,9.842471083,8.196104825,8.693785921 +Svil,10.63783417,10.81623981,10.68590137,10.97389265,10.97402212,11.04705635,10.95422323,10.88125321,10.87120365,10.91846738,9.546285718,9.987807218 +Gab3,8.919717084,9.008830495,8.92670667,9.095338857,8.878548668,9.341463998,8.791485644,8.733073263,8.984589352,8.964522028,7.643035469,8.190004662 +Fam149b,10.92519282,11.08667422,10.83609843,11.17250398,10.55769615,10.51904076,10.97196231,11.04324058,11.20465537,11.24891087,10.00220969,9.931219808 +Fam234a,8.607466286,8.697795225,8.490363036,8.849661915,8.68530621,8.527098501,8.713959925,8.816940117,8.672653202,8.500248274,7.392298495,7.746437306 +Pstpip1,10.75994177,10.7734746,10.6798994,10.71666911,10.55641202,10.57911504,10.79614028,11.10710059,10.90951812,10.86393346,9.797732277,9.662382374 +Baz2b,13.21272927,13.35856215,13.20290878,13.43401302,13.13409455,13.3533107,12.98953435,13.16657121,13.36495599,13.38162507,12.16507081,12.25394983 +Sgms1,12.02416736,12.19925754,12.01869236,12.2437861,11.80860574,11.8341318,12.17111843,12.26730306,12.25904685,12.25704492,11.23166851,10.9744996 +Tom1l2,9.628566987,9.892375682,9.764246134,10.06002717,9.583119965,9.907925995,9.654337384,9.5803196,10.02793364,9.939567704,8.673486188,8.940706248 +Ptpre,10.15910114,10.05769991,10.25194305,10.22947631,10.28590263,10.27010759,10.01150827,10.08877847,10.30409776,10.26417694,8.840496467,9.572737366 +Abtb1,9.701967615,9.787553836,9.579473961,9.915969681,9.510709248,9.504309821,9.871512114,9.913178156,9.907281274,10.08621382,8.807872323,8.776418785 +Atp13a2,11.90755674,11.89633956,11.98848561,12.2266178,11.97210546,11.79705251,12.36930208,12.53893677,12.07187497,12.08513694,11.19989151,11.10972522 +Maml3,9.661140199,9.960122182,9.714782782,10.43495287,10.05261724,10.20919827,9.896496877,9.818688677,10.34596452,10.35763499,8.98692888,9.483724124 +Thra,7.358391972,7.533124091,7.498547558,7.892725763,7.603030586,7.661938156,7.576081237,7.680940024,8.295641405,8.334054763,6.922483065,7.559960878 +Tsc22d1,9.260674525,9.309272357,9.369644649,9.606963247,9.345081821,9.109308704,9.604664293,9.892064449,9.830712379,9.973886867,8.822463096,9.139038808 diff --git a/inst/extdata/RNAseq_design.csv b/inst/extdata/RNAseq_design.csv new file mode 100644 index 0000000..afc8c34 --- /dev/null +++ b/inst/extdata/RNAseq_design.csv @@ -0,0 +1,3 @@ +Study_Design,p53_mock_1,p53_mock_2,p53_mock_3,p53_mock_4,p53_IR_1,p53_IR_2,p53_IR_3,p53_IR_4,null_mock_1,null_mock_2,null_IR_1,null_IR_2 +p53,wt,wt,wt,wt,wt,wt,wt,wt,null,null,null,null +Radiation,mock,mock,mock,mock,IR,IR,IR,IR,mock,mock,IR,IR diff --git a/inst/extdata/RNAseq_gene_info.csv b/inst/extdata/RNAseq_gene_info.csv new file mode 100644 index 0000000..45cb6a2 --- /dev/null +++ b/inst/extdata/RNAseq_gene_info.csv @@ -0,0 +1,467 @@ +symbol,IR-mock,Apoptosis +Phlda3,None,Yes +Cdkn1a,None,Yes +Tnfsf4,Up,Yes +Gm10721,None,No +Gm10719,None,No +Tex15,Up,No +Plb1,None,No +1700007K13Rik,None,No +Grhl3,None,No +Plk2,None,Yes +Zfp365,None,No +Psrc1,None,No +Bbc3,None,Yes +Gtse1,None,No +Dact3,None,No +Matn1,None,No +Ckmt1,None,Yes +Prrg4,None,No +Cox6b2,None,No +Inka2,None,No +Ddias,None,Yes +Slc19a2,None,No +Robo3,None,No +Scn4b,None,No +Cep170b,None,No +Gm9949,Down,No +Hmcn2,None,No +Kank3,Up,No +Cd80,None,No +Dcxr,None,No +Sesn2,None,No +Hic1,None,Yes +Rhod,None,No +Epha2,None,Yes +Fam131a,None,No +Enc1,None,No +Ier5l,None,No +Snai3,None,No +Celf5,None,No +Akap1,Up,Yes +Dglucy,Down,No +Plekha7,Down,No +Plod2,None,No +Thyn1,Up,No +Rac3,None,No +Dennd2c,None,No +Ankrd13b,Up,No +Cdc42bpg,None,No +Ikbke,None,Yes +Pkd1l2,None,No +Abcb1b,Up,No +Cfap126,None,No +Ogdhl,None,No +Asap3,None,No +Ccng1,None,Yes +Pidd1,Up,Yes +Mef2b,Up,No +Lpin1,Down,No +Macroh2a3,Up,No +Dzip1,None,No +Ak1,None,No +Polk,None,No +Ppp1r36,None,No +Gm8482,None,No +Gm7451,Up,No +Fas,Up,Yes +Mybl1,None,No +Macroh2a2,Up,No +Zmat3,None,No +Ckap2,Up,Yes +Ddit4l,None,No +Gcdh,None,No +Aldh4a1,None,No +Mgmt,None,Yes +Bmp1,None,No +Ei24,None,Yes +Cpt1c,None,No +Jag2,None,Yes +Pmaip1,None,Yes +Cad,Up,No +Acad8,None,No +Aen,Up,Yes +ENSMUSG00000072812,None,No +Ccnf,None,No +Aaas,None,No +Gm13854,None,No +Cercam,None,No +Scarf2,None,No +Pcdhgc3,None,Yes +Dyrk3,None,Yes +Exoc4,None,No +Gnb1l,Up,No +Vcan,Up,No +Lacc1,None,No +Plxna1,None,No +Atg9b,None,No +Mcam,None,No +Ass1,None,No +Rtl10,Up,No +Kifc1,None,No +Ptpdc1,None,No +Tnfsf8,None,No +Syt12,None,No +Rxylt1,None,No +Spc25,None,No +Bax,Up,Yes +Tmem63b,Up,No +Efcab8,None,No +Apaf1,None,Yes +Notch3,None,No +Qpctl,None,No +Trp53inp1,Down,Yes +Ddit4,None,Yes +Cdkn2b,None,No +Rasd1,None,No +BC034090,None,No +Gm21969,None,No +Dcaf4,None,No +Sulf2,None,No +Gria3,None,No +Ctc1,None,No +Hdac4,None,Yes +Gm28041,Up,No +Gm6786,None,No +Wnt6,None,No +Sp6,None,No +Klhl26,None,No +Zfp385a,Down,Yes +Sh3yl1,Down,No +Ccdc122,None,No +Hmgcll1,Down,No +Slc35e4,None,No +Klrb1,None,No +Peli3,None,Yes +Rap2b,None,No +Jun,None,Yes +Slc2a9,Down,No +Mdm2,None,Yes +Kif18b,None,No +Slc22a12,None,No +Gpr179,None,No +Sgsm2,None,No +Cpne2,None,No +Fosl1,Up,Yes +Slc39a14,Up,No +Lif,None,No +Gm12895,Down,No +Gm12896,Down,No +Ldhb,None,No +Rps27l,Up,Yes +Csf1,None,No +Heyl,None,No +Fam216a,None,No +Cby1,None,No +Pomt2,Up,No +Nexmif,None,No +Stac2,Down,No +Fam83h,None,No +Gna15,Down,No +Rrm2,None,No +Creb3l1,None,Yes +Dnm1,None,No +Muc5ac,None,No +Tsen54,Up,No +Bhlhe41,Down,No +Akr1b10,Down,No +Carhsp1,None,No +Bcl2l11,None,Yes +Ercc5,None,No +Zbtb42,Down,No +Nme4,Up,No +Nudcd2,Up,No +Notch1,None,Yes +Arhgap35,None,No +Dagla,None,No +Gm18959,None,No +Klhl22,None,No +Thumpd2,None,No +Pigf,Up,No +Spsb1,None,No +Oxld1,None,No +Ahi1,None,No +Rgs12,None,No +Micall2,None,No +Ppm1d,None,No +Palm,None,No +Serpine2,None,No +Nfil3,None,No +Gm15185,None,No +Rnf169,None,No +Sac3d1,Up,No +Nfyb,None,No +Gm44216,None,No +Il2ra,None,Yes +Gne,None,No +Bloc1s2,None,Yes +Rap2a,None,No +Clec2g,None,No +Glipr1,None,No +Mapkapk3,None,No +Cpped1,None,No +Bcl2l15,None,Yes +Zfp958,None,No +Efna5,None,No +Gpr68,None,No +Adam8,None,Yes +Commd3,None,No +Ston1,None,No +Ppp2r5d,Up,No +Itm2a,None,No +Tnfrsf10b,None,Yes +Dnah12,None,No +Gm17981,None,No +Eng,None,No +Phlda1,None,Yes +Scd4,None,No +Trim7,Down,No +Zfp874a,None,No +Slc25a42,None,No +Tnfrsf18,None,Yes +Acot1,None,Yes +St14,None,No +Xrra1,None,No +Pcdhgc5,None,Yes +Abhd4,None,No +Rarg,None,Yes +Fbxw9,None,No +Rbl2,None,No +Mettl6,Up,No +Crip2,Down,No +Gpr55,None,No +Homer3,None,No +Arhgef9,None,No +Nectin4,None,No +Ttc9,None,No +H2aj,None,No +Snx20,None,No +Clec2f,None,No +Tef,None,No +Irak1bp1,None,No +Cuedc1,None,No +Kif1c,None,No +Hspa2,None,No +Msh6,Up,Yes +Sdc1,Down,No +Zbtb10,Up,No +Ephx1,Down,No +Kifc5b,None,No +Sspn,Down,No +Kcnc3,Up,No +Vopp1,None,No +Dffb,None,Yes +Zfp456,None,No +Hpcal1,Down,No +Cacna1b,None,No +Gm9961,None,No +Zfp688,None,No +Samsn1,Up,No +Anks1b,None,No +Gm16071,None,No +Depdc5,None,No +Rnf144a,Down,No +Bfsp2,None,No +Espn,None,No +Dkkl1,Down,Yes +Csnk1g1,None,No +Trim32,None,Yes +Gpr132,Up,No +Gss,None,No +Wdr91,None,No +Txlnb,None,No +Slc2a4,None,No +Eid3,None,No +Fam110a,None,No +Paqr5,None,No +Foxo3,None,Yes +Ptp4a3,None,No +Ttll9,None,No +Kifc5c-ps,None,No +Chek2,None,Yes +Frrs1,None,No +Trib2,None,No +Tbxa2r,Down,No +Myo3b,Down,No +Txnrd1,Up,No +Igsf11,None,No +Ehd4,Down,No +Tbc1d2,None,No +Ptpn14,None,No +Erich1,None,No +Sarm1,None,Yes +Gm15988,None,No +Clcn2,None,No +Nanos1,None,No +Gm6092,None,No +Tnip3,None,No +Myo10,None,No +Fosl2,None,No +Pinlyp,None,No +Rgs18,None,No +Celsr2,None,No +Mx1,None,No +Tmtc3,None,No +Rapgef3,Down,Yes +Tcp11l2,Down,No +Avpr1b,None,No +Pdrg1,None,No +D630023F18Rik,None,No +Tnfrsf26,Down,Yes +Cecr2,None,Yes +Zfyve21,None,No +Cers4,None,No +Scd2,None,No +Slc35d1,None,No +ENSMUSG00000107877,None,No +Gm45209,None,No +Fhip1b,None,No +Trio,None,No +Gask1b,None,No +Upf3b,None,No +Gm10819,None,No +Mmp15,None,No +Fbxo34,None,No +Syne3,Down,No +Bscl2,None,No +Sytl2,None,No +1700073E17Rik,None,No +Zfp692,None,No +Gm13285,None,No +Tmem108,Down,No +Rab40c,None,No +P2rx7,None,Yes +Utrn,Down,No +Wrap73,None,No +Glipr2,None,No +B3gnt8,Down,No +Gm10309,Down,No +Mfge8,None,No +Fzd5,None,Yes +Stra8,None,No +Gabpb1,None,No +Casp7,None,Yes +Dstn,None,No +Fuca1,None,No +Fam53b,None,No +Map3k9,Down,Yes +Arhgap21,None,No +Ttc28,Down,No +Tm7sf3,None,No +Ulk1,None,No +Tert,None,Yes +Mturn,Down,No +Mxd4,Down,No +Gm8818,None,No +Ypel3,Down,Yes +Plekho2,None,Yes +Rhbdf2,Down,No +Cep290,None,No +Vim,Down,No +Eola1,None,No +Ldlrap1,None,No +Gm16106,None,No +Arhgef18,Down,No +Zfp219,None,No +Nrxn2,Down,No +Fam13a,Down,No +Bach2,Down,No +Zfp703,None,No +Fam168a,Down,No +Scml4,Down,No +Gm15602,None,No +Pdk2,Down,Yes +Zcchc24,Down,No +Tmsb15b2,Down,No +Lamc1,Down,No +Papln,Down,No +Capg,Down,No +Kif21b,Down,No +Dgka,Down,No +ENSMUSG00000074497,Down,No +Mafa,None,No +Dab2ip,None,Yes +Cd55,Down,No +Vmac,None,No +Ddx25,Down,No +Trpm2,None,No +Wipi1,None,No +Gm3200,None,No +Nfic,None,No +Rell1,Down,No +Ust,None,No +Aanat,Down,No +Zbtb7b,None,No +Ngfr,Down,Yes +App,None,Yes +Pear1,Down,No +Vasn,Down,No +Fam214a,Down,No +Tmem71,Down,No +Orai2,Down,No +Akap12,Down,Yes +Tsku,Down,No +Btg2,Down,Yes +Prkce,Down,Yes +Sptbn5,Down,No +Lca5,Down,No +Slc2a8,Down,No +S100a11,None,No +Pdzd2,Down,No +Nfatc2,None,No +Psd3,Down,No +Sfxn3,Down,No +Ypel2,Down,No +Rb1,None,Yes +Ctse,Down,No +Pitpnc1,Down,No +Cd93,Down,No +Trp53i11,Down,No +Zc3h6,None,No +Pde2a,Down,No +Cast,Down,Yes +Cd55b,Down,No +Tcn2,None,No +S100a10,Down,No +Etv5,None,No +Coro7,Down,No +Gm26528,Down,No +Rps6ka5,Down,No +Brdt,Down,No +Esr1,Down,Yes +Mgst2,Down,No +Eps8,Down,No +Cep250,Down,No +Nlrx1,None,No +Runx1,Down,No +Plec,Down,No +Itga6,Down,Yes +Rgl1,None,No +Stard10,Down,No +Calhm2,Down,Yes +Rnasel,Down,No +Hmgb1-ps8,Down,No +Scand1,None,No +Fmo5,Down,No +Chst14,Down,No +Prxl2c,Down,No +Dck,Down,No +Gtf2ird1,None,No +Sh2d3c,Down,No +Calcoco1,Down,No +Trafd1,Down,No +Tex9,Down,No +Svil,Down,No +Gab3,Down,No +Fam149b,Down,No +Fam234a,Down,No +Pstpip1,Down,No +Baz2b,Down,No +Sgms1,Down,Yes +Tom1l2,Down,No +Ptpre,Down,No +Abtb1,Down,No +Atp13a2,None,No +Maml3,Down,No +Thra,Down,Yes +Tsc22d1,None,No diff --git a/inst/extdata/countries.csv b/inst/extdata/countries.csv new file mode 100644 index 0000000..12a39a3 --- /dev/null +++ b/inst/extdata/countries.csv @@ -0,0 +1,21 @@ +country,Area,Birth Rate,Death Rate,Infant Death,Internet Users,Life Span,Maternal Death,Net Migration,Population,Pop Growth,Continent +Russia,7.23295146,11.87,13.83,7.08,7.611223954,70.16,34,1.69,8.153724253,-0.03,Europe +Japan,5.57739413,8.07,9.38,2.13,7.996432862,84.46,5,0,8.104157127,-0.13,Asia +Germany,5.552694979,8.42,11.29,3.46,7.813747736,80.44,7,1.06,7.908467245,-0.18,Europe +South Africa,6.086035769,18.94,17.49,41.61,6.645422269,49.56,300,-6.27,7.684626769,-0.48,Africa +Ukraine,5.780713254,9.41,15.72,8.1,6.890421019,69.14,32,-0.06,7.646319536,-0.64,Europe +Poland,5.495107048,9.77,10.37,6.19,7.351255034,76.65,5,-0.47,7.583723228,-0.11,Europe +Romania,5.377289855,9.27,11.88,10.16,6.891370175,74.69,27,-0.24,7.337057148,-0.29,Europe +Syria,5.26759408,22.76,6.51,15.79,6.650210355,68.41,70,-113.51,7.254104106,-9.73,Asia +Cuba,5.044774874,9.9,7.64,4.7,6.205745541,78.22,73,-3.64,7.043254222,-0.14,N. America +Hungary,4.968613684,9.26,12.72,5.09,6.790707287,75.46,21,1.34,6.996473495,-0.21,Europe +Belarus,5.317227349,10.86,13.51,3.64,6.422097163,72.15,4,0.78,6.982635616,-0.19,Europe +Serbia,4.889155979,9.13,13.71,6.16,6.613524703,75.02,12,0,6.857921049,-0.46,Europe +Bulgaria,5.0448493,8.92,14.3,15.08,6.530839779,74.33,11,-2.89,6.840401967,-0.83,Europe +Georgia,4.843232778,12.93,10.77,16.68,6.113943352,75.72,67,-3.25,6.693364593,-0.11,Europe +Croatia,4.75277039,9.49,12.13,5.87,6.349083169,76.41,17,1.43,6.650359402,-0.12,Europe +Bosnia,4.709244513,8.89,9.64,5.84,6.152899596,76.33,8,-0.38,6.587895305,-0.11,Europe +Puerto Rico,4.139564266,10.9,8.51,7.73,6,79.09,20,-8.93,6.558816171,-0.65,N. America +Moldova,4.529571503,12.21,12.6,12.93,6.124830149,70.12,41,-9.8,6.554281715,-1.02,Europe +Lithuania,4.814913181,9.36,11.55,6,6.293141483,75.98,8,-0.73,6.544779456,-0.29,Europe +Armenia,4.473384771,13.92,9.3,13.97,5.318480725,74.12,30,-5.88,6.485810973,-0.13,Europe diff --git a/inst/extdata/iris.csv b/inst/extdata/iris.csv new file mode 100644 index 0000000..8b63930 --- /dev/null +++ b/inst/extdata/iris.csv @@ -0,0 +1,151 @@ +Sepal.Length,Sepal.Width,Petal.Length,Petal.Width,Species +5.1,3.5,1.4,0.2,setosa +4.9,3,1.4,0.2,setosa +4.7,3.2,1.3,0.2,setosa +4.6,3.1,1.5,0.2,setosa +5,3.6,1.4,0.2,setosa +5.4,3.9,1.7,0.4,setosa +4.6,3.4,1.4,0.3,setosa +5,3.4,1.5,0.2,setosa +4.4,2.9,1.4,0.2,setosa +4.9,3.1,1.5,0.1,setosa +5.4,3.7,1.5,0.2,setosa +4.8,3.4,1.6,0.2,setosa +4.8,3,1.4,0.1,setosa +4.3,3,1.1,0.1,setosa +5.8,4,1.2,0.2,setosa +5.7,4.4,1.5,0.4,setosa +5.4,3.9,1.3,0.4,setosa +5.1,3.5,1.4,0.3,setosa +5.7,3.8,1.7,0.3,setosa +5.1,3.8,1.5,0.3,setosa +5.4,3.4,1.7,0.2,setosa +5.1,3.7,1.5,0.4,setosa +4.6,3.6,1,0.2,setosa +5.1,3.3,1.7,0.5,setosa +4.8,3.4,1.9,0.2,setosa +5,3,1.6,0.2,setosa +5,3.4,1.6,0.4,setosa +5.2,3.5,1.5,0.2,setosa +5.2,3.4,1.4,0.2,setosa +4.7,3.2,1.6,0.2,setosa +4.8,3.1,1.6,0.2,setosa +5.4,3.4,1.5,0.4,setosa +5.2,4.1,1.5,0.1,setosa +5.5,4.2,1.4,0.2,setosa +4.9,3.1,1.5,0.2,setosa +5,3.2,1.2,0.2,setosa +5.5,3.5,1.3,0.2,setosa +4.9,3.6,1.4,0.1,setosa +4.4,3,1.3,0.2,setosa +5.1,3.4,1.5,0.2,setosa +5,3.5,1.3,0.3,setosa +4.5,2.3,1.3,0.3,setosa +4.4,3.2,1.3,0.2,setosa +5,3.5,1.6,0.6,setosa +5.1,3.8,1.9,0.4,setosa +4.8,3,1.4,0.3,setosa +5.1,3.8,1.6,0.2,setosa +4.6,3.2,1.4,0.2,setosa +5.3,3.7,1.5,0.2,setosa +5,3.3,1.4,0.2,setosa +7,3.2,4.7,1.4,versicolor +6.4,3.2,4.5,1.5,versicolor +6.9,3.1,4.9,1.5,versicolor +5.5,2.3,4,1.3,versicolor +6.5,2.8,4.6,1.5,versicolor +5.7,2.8,4.5,1.3,versicolor +6.3,3.3,4.7,1.6,versicolor +4.9,2.4,3.3,1,versicolor +6.6,2.9,4.6,1.3,versicolor +5.2,2.7,3.9,1.4,versicolor +5,2,3.5,1,versicolor +5.9,3,4.2,1.5,versicolor +6,2.2,4,1,versicolor +6.1,2.9,4.7,1.4,versicolor +5.6,2.9,3.6,1.3,versicolor +6.7,3.1,4.4,1.4,versicolor +5.6,3,4.5,1.5,versicolor +5.8,2.7,4.1,1,versicolor +6.2,2.2,4.5,1.5,versicolor +5.6,2.5,3.9,1.1,versicolor +5.9,3.2,4.8,1.8,versicolor +6.1,2.8,4,1.3,versicolor +6.3,2.5,4.9,1.5,versicolor +6.1,2.8,4.7,1.2,versicolor +6.4,2.9,4.3,1.3,versicolor +6.6,3,4.4,1.4,versicolor +6.8,2.8,4.8,1.4,versicolor +6.7,3,5,1.7,versicolor +6,2.9,4.5,1.5,versicolor +5.7,2.6,3.5,1,versicolor +5.5,2.4,3.8,1.1,versicolor +5.5,2.4,3.7,1,versicolor +5.8,2.7,3.9,1.2,versicolor +6,2.7,5.1,1.6,versicolor +5.4,3,4.5,1.5,versicolor +6,3.4,4.5,1.6,versicolor +6.7,3.1,4.7,1.5,versicolor +6.3,2.3,4.4,1.3,versicolor +5.6,3,4.1,1.3,versicolor +5.5,2.5,4,1.3,versicolor +5.5,2.6,4.4,1.2,versicolor +6.1,3,4.6,1.4,versicolor +5.8,2.6,4,1.2,versicolor +5,2.3,3.3,1,versicolor +5.6,2.7,4.2,1.3,versicolor +5.7,3,4.2,1.2,versicolor +5.7,2.9,4.2,1.3,versicolor +6.2,2.9,4.3,1.3,versicolor +5.1,2.5,3,1.1,versicolor +5.7,2.8,4.1,1.3,versicolor +6.3,3.3,6,2.5,virginica +5.8,2.7,5.1,1.9,virginica +7.1,3,5.9,2.1,virginica +6.3,2.9,5.6,1.8,virginica +6.5,3,5.8,2.2,virginica +7.6,3,6.6,2.1,virginica +4.9,2.5,4.5,1.7,virginica +7.3,2.9,6.3,1.8,virginica +6.7,2.5,5.8,1.8,virginica +7.2,3.6,6.1,2.5,virginica +6.5,3.2,5.1,2,virginica +6.4,2.7,5.3,1.9,virginica +6.8,3,5.5,2.1,virginica +5.7,2.5,5,2,virginica +5.8,2.8,5.1,2.4,virginica +6.4,3.2,5.3,2.3,virginica +6.5,3,5.5,1.8,virginica +7.7,3.8,6.7,2.2,virginica +7.7,2.6,6.9,2.3,virginica +6,2.2,5,1.5,virginica +6.9,3.2,5.7,2.3,virginica +5.6,2.8,4.9,2,virginica +7.7,2.8,6.7,2,virginica +6.3,2.7,4.9,1.8,virginica +6.7,3.3,5.7,2.1,virginica +7.2,3.2,6,1.8,virginica +6.2,2.8,4.8,1.8,virginica +6.1,3,4.9,1.8,virginica +6.4,2.8,5.6,2.1,virginica +7.2,3,5.8,1.6,virginica +7.4,2.8,6.1,1.9,virginica +7.9,3.8,6.4,2,virginica +6.4,2.8,5.6,2.2,virginica +6.3,2.8,5.1,1.5,virginica +6.1,2.6,5.6,1.4,virginica +7.7,3,6.1,2.3,virginica +6.3,3.4,5.6,2.4,virginica +6.4,3.1,5.5,1.8,virginica +6,3,4.8,1.8,virginica +6.9,3.1,5.4,2.1,virginica +6.7,3.1,5.6,2.4,virginica +6.9,3.1,5.1,2.3,virginica +5.8,2.7,5.1,1.9,virginica +6.8,3.2,5.9,2.3,virginica +6.7,3.3,5.7,2.5,virginica +6.7,3,5.2,2.3,virginica +6.3,2.5,5,1.9,virginica +6.5,3,5.2,2,virginica +6.2,3.4,5.4,2.3,virginica +5.9,3,5.1,1.8,virginica diff --git a/inst/extdata/iris_column_annot.csv b/inst/extdata/iris_column_annot.csv new file mode 100644 index 0000000..7e1e239 --- /dev/null +++ b/inst/extdata/iris_column_annot.csv @@ -0,0 +1,3 @@ +,Sepal.Length,Sepal.Width,Petal.Length,Petal.Width +Object,Sepal,Sepal,Petal,Petal +Type,Length,Width,Length,Width diff --git a/inst/extdata/scRNAseq_PCA.csv b/inst/extdata/scRNAseq_PCA.csv new file mode 100644 index 0000000..6e5622b --- /dev/null +++ b/inst/extdata/scRNAseq_PCA.csv @@ -0,0 +1,2701 @@ +cells,PC_1,PC_2,PC_3,PC_4,PC_5,PC_6,PC_7,PC_8,PC_9,PC_10,PC_11,PC_12,PC_13,PC_14,PC_15,PC_16,PC_17,PC_18,PC_19,PC_20,PC_21,PC_22,PC_23,PC_24,PC_25,PC_26,PC_27,PC_28,PC_29,PC_30,PC_31,PC_32,PC_33,PC_34,PC_35,PC_36,PC_37,PC_38,PC_39,PC_40,PC_41,PC_42,PC_43,PC_44,PC_45,PC_46,PC_47,PC_48,PC_49,PC_50 +C1,4.61,-0.6,-0.61,-1.72,-0.74,1.3,1.05,-0.95,0.97,0.88,-2.76,2.75,0.79,1.09,0.2,-1.11,-2.1,-2.43,-0.27,-0.26,0.17,1.39,3.36,-2.78,-0.09,0.95,1.13,-2.28,1.16,-0.24,2.25,-1.43,0.83,-0.73,0.68,0.89,-2.57,2.19,-2.33,2.09,-0.5,3.34,-1.2,-0.92,-0.97,-0.94,0.41,-0.04,-0.06,0.67 +C2,0.17,4.54,6.45,6.86,-0.8,0.5,-2.56,-1.68,-0.1,1.71,0.73,0.86,-4.06,0.28,-1.28,-1.36,0.83,-1.09,0.52,-2.96,3.19,1.66,0.47,-2.18,0.23,-1.18,0.21,2.04,2.49,0.51,3.17,2.43,0.49,1.14,2.31,0.19,0.78,-1.38,0.05,-1.29,-2.03,0.21,0.64,0.35,-1.05,2.05,0.23,3.25,1.44,-0.74 +C3,2.65,-4.01,-0.37,-1,-4.98,-0.25,-1.52,0.03,-3.77,1.77,0.75,1.95,0.75,1.49,-0.68,-0.13,-1.1,-0.29,2.26,3.14,0.25,0.36,1.58,2.04,-1.1,-1.56,1.15,-0.23,-2.98,-2.61,1.05,-1.86,1.48,0.39,-2.71,0.97,-0.09,0.9,-0.82,-4.29,-1.21,3.06,3.4,-0.74,0.82,0.67,-0.39,0.3,2.65,0.11 +C4,-11.86,0.06,0.62,-0.24,0.29,-1.51,3.39,0.15,0.54,-0.47,3.72,0.93,1.08,-0.32,-0.99,0.2,-2.17,-1.24,1.44,-0.29,-0.62,-0.89,1.42,-1.39,-1.35,1.23,-2.64,0.91,0.39,0.48,0.64,1.4,0.03,-1.62,-2.52,-1.08,1.71,0.44,-2.36,-1.49,0.18,2.24,-0.45,0.85,-0.62,0.28,-2.18,0.17,1.25,-0.31 +C5,3.05,-6,0.82,2.05,8.25,1.15,0.75,3.06,0.23,1.68,3.88,-0.28,0.21,-1.5,1.91,2.77,1.07,0.31,-0.45,2.26,2.17,0.77,0.05,-0.71,0.96,1.33,-0.36,-0.98,-0.95,2.7,1.87,-2.45,1.02,2.37,-0.45,-1.38,0.04,0.47,-0.8,0.89,0.08,-1.62,-0.29,-1.65,2.38,-0.25,0.43,0.82,-0.81,0.76 +C6,2.68,1.37,-0.59,-2.21,-2.53,0.26,-1.46,0.3,-0.09,-0.66,1.97,0.07,-0.88,-1.25,2.09,1.34,-0.9,1.53,-0.45,0.72,-0.29,2.84,0.13,0.46,1.75,0.09,-0.44,-0.93,2.84,1.13,1.14,-2.79,-2.21,1.2,-0.94,-2.56,-2.18,0.34,-0.88,0.57,-1.38,2.45,3.35,-0.63,3.76,-0.38,0.31,-0.03,2.03,-0.43 +C7,5.09,-2.41,-0.17,-1.87,1.19,0.47,-0.83,-3.16,0.24,-0.84,-1.46,-1.44,0.06,-1.62,0.53,-1.51,1.97,2.1,1.39,0.55,1.15,-1.51,-1.34,4.55,0.25,-0.07,-2.57,-3.5,-2.53,-2.44,-0.37,0.47,-0.71,3.71,-2.44,-2.15,0.35,-0.66,-1.41,0.74,-3.2,0.66,-1.57,-1.04,0.58,1.39,-0.33,-1.99,-1.25,-0.75 +C8,4.41,-3.34,-0.29,-0.66,-0.83,-0.78,0.57,-3.59,-1.09,0.28,-1.11,0.62,-2.02,1.23,-3.04,0.77,1.16,0.56,1.04,-0.31,1.24,-1.06,2.59,1.06,-3.07,1.83,0.42,-3.08,0.38,0.06,2.04,-0.52,0.27,-1.88,-3.79,-0.35,0.5,3.25,0.94,-1.36,2.76,1.41,-0.09,2.5,-1.43,4.9,-1.89,1.37,0.47,3.52 +C9,5.46,1.06,-0.03,-0.27,4.14,0.6,3.07,-3.76,0.95,-1.08,-1.37,-0.41,0.87,1.11,-0.12,0.13,-3.55,-0.65,-1.4,0.14,-1.01,-2.47,0.9,0.95,1.21,2.44,-1.07,-1.04,-1.59,1.39,1.79,-0.76,-0.02,1.8,0.31,-1.71,1.24,-1.44,2.72,-0.84,-0.39,-0.24,-0.91,-0.81,-1.19,0.56,1.76,-0.48,-1.99,-0.57 +C10,-6.57,1.25,-1.53,-2.25,1.42,-5.18,4.74,1.11,1.69,2.46,0.45,1.08,0.2,-2.56,-0.95,2.49,-2.67,-0.61,-0.39,-1.29,1.54,0.17,0.6,3.73,1.39,2.55,1.01,0.17,0.81,0.35,-0.67,0.49,-2.56,0.13,-2.33,-1.48,-0.41,-0.27,2.34,3.14,0.66,0.82,-0.22,-0.23,-2.49,0.13,2.48,-1.24,-0.92,2.19 +C11,1.98,5.23,6.03,6.74,-1.9,0.82,-2.25,-2,-0.16,1.58,3.69,1.41,-3.99,1.91,-2.03,-0.38,-2.13,0.97,1.56,-0.91,2.4,-0.51,-0.28,-0.42,0.11,2.28,-1.3,2.45,-0.85,-0.49,0.62,2.67,0.66,0.18,-0.87,-1.26,0.71,1.29,0.09,-0.38,1.81,0.06,1.22,2.29,-0.63,0.19,0.86,-0.13,1.26,2.71 +C12,5.04,0.94,-1.28,-2.97,-1.92,-0.47,0.32,0.71,1.17,-1.03,0.02,-0.2,-0.38,1.97,1.56,-1.11,-0.3,-0.04,-0.48,-1.37,-1.21,1.06,-1.09,0.89,-0.92,-0.78,2.01,-2.49,-0.6,-2.98,0.89,0,1.58,1.24,0.37,0.75,0.29,-1.26,-0.05,0.72,-2.4,-0.7,-1.38,0.95,-0.35,0.61,-0.5,0.8,-0.94,0.48 +C13,3.46,-1.02,-2.18,-2.21,-2.74,-1.41,0.25,0.68,-0.79,-0.42,3.11,-0.25,0.63,-2.98,0.53,-0.13,-0.5,0.99,1.72,1.93,-0.62,1.14,-0.18,0.96,0.11,4.52,3.28,-0.65,-2.3,1.2,-1.07,-2.2,0.24,-1.5,-2.27,1.16,1.13,1.83,1.79,0.83,1,-1.79,-1.32,-0.67,-0.88,2.63,-1.02,1.91,-2.4,-1.59 +C14,-12.35,-0.41,-1.11,-2.37,0.27,1.52,-1.44,0.64,1.26,-0.97,-1.67,1.42,-2.21,1.88,1.41,0.93,0.93,-0.55,0.88,0.06,-2.06,-0.62,3.46,-2.54,-0.21,3.82,-0.06,-2.28,0.48,-0.19,0.17,0.08,1.23,-3,0.48,-1.04,1.52,0.73,-1.88,-1.29,1.74,0.28,-1.03,0.51,-1.12,-2.53,-1.09,-2.64,-1.84,0.43 +C15,7.06,0.8,-1.78,-2.54,3.48,0.33,2.12,-5.1,1.71,-1.27,-0.17,-0.65,0.13,0.73,-2.24,0.74,0.96,0.26,-0.83,1.63,1.85,0.26,-0.68,-0.04,1.01,0.33,0.1,0.45,0.38,1.06,0.43,-0.13,1.44,0.24,0.03,-0.35,-0.09,-0.77,-1.43,-0.42,-0.32,1.61,0.88,0.31,-0.78,0.31,-0.69,-0.2,1.77,-0.91 +C16,5.5,3.51,-2,-3.5,2.07,0.06,3.05,-1.22,0.2,-2.05,2.93,1.07,-0.5,-0.82,1.54,-0.02,-0.69,-0.29,-0.71,-1.17,-0.06,0.71,1.43,1.99,-0.34,0.04,0.14,-0.11,1.02,-1.01,-0.03,-1.16,-0.56,-0.53,-0.64,-2.21,0.43,0.7,0.01,0.94,0.19,-0.88,1.33,-0.36,0.18,-0.17,1.84,-1,-0.68,-0.4 +C17,-9.14,2.27,-3.32,-4.61,2.64,2.06,0.38,-0.28,-1.96,0.03,-0.36,0.33,-0.62,-0.78,1.68,-2.05,-0.31,1.36,-0.74,-0.32,-0.2,1.95,1.03,-1.18,0.74,-0.21,-0.56,-1.11,1.24,0.76,-0.64,-1.07,-0.19,-0.52,-0.01,-0.67,3.29,-0.33,2.65,-1.33,-2.08,1.49,0.97,0.66,0.58,0.08,2.42,1.33,0.42,-0.23 +C18,3.99,-2.91,-1.76,-1.12,1.57,-1.66,1.35,-4.97,-0.68,0.98,-2.14,1.61,-3.6,-3.69,0.42,0.12,-0.43,-2.74,-0.37,0.96,-3.07,2.32,-0.16,1.15,-0.9,-1.75,1.44,0.2,1.59,0.46,-1.56,-1.49,-1.32,-0.91,-0.21,-0.58,-1.76,0.13,2.89,1.64,0.29,-3.18,2.48,-1.22,1.86,0.51,-0.59,0.24,-0.9,-0.85 +C19,-15.64,-2.33,1.68,0.04,-1.19,1.19,0.14,-0.11,-1.1,-1.39,0.3,0.74,-0.76,1.6,-1.77,0.18,-2.45,-2.92,2.96,-2.94,0.83,-1.2,-2.91,-0.92,-3.3,-2.77,-0.3,2.26,3.03,-1.5,0.19,1.77,-2.65,0.39,0.68,-1.09,0.76,-1.95,0.23,-0.33,-0.9,2.74,-1.47,0.25,0.63,-1.06,-2.2,0.06,-1.42,-0.84 +C20,4.12,-1.49,-0.06,-1.32,-3.75,-0.16,0.7,-1.16,-1.01,1.65,-0.4,1.06,0.21,-0.73,-0.23,1.91,0.85,0.45,-0.63,-0.77,0.48,-0.19,0.02,1.3,1.5,-0.2,-0.06,-2.36,0.75,1.67,1.82,1.15,0.08,-0.39,0.55,2.13,2.03,-1.49,-1.46,0.8,0.64,-1.51,0.58,-1.12,-0.26,-1.63,-0.82,0.1,0.38,1.69 +C21,1.28,1.72,4.73,5.02,-3.08,-0.45,-3.22,-0.98,-1,0.7,2.12,1.34,-1.55,3.3,1.58,0.34,0.39,1.83,1.27,0.34,2.41,-1.42,2.54,-1.9,-2.31,0.46,0.85,3.6,2.49,-1.51,0.44,-2.14,-0.98,0.63,2.47,0.75,0.67,0.39,0.19,-3.92,-2.06,-1.51,-1.06,0.16,-2.78,-0.75,4.25,0.08,-1.51,-0.34 +C22,4.82,9.22,3.97,3.3,2.42,-0.44,-0.4,1.09,-1.61,-0.13,-1.18,-1.55,3.65,-0.83,-0.65,1.19,-0.18,-2.1,-0.67,2.37,-3.15,-1,-0.43,-2.14,-1.57,-3.09,-1.38,1.79,-0.27,0.8,2.58,-2.86,3.08,0.67,1.7,-3.88,0.13,1.68,-1.11,1.75,-0.48,-0.72,-2.14,-2.69,-0.29,-0.78,-1.94,-2.22,2.73,1.16 +C23,2.53,4.93,6.08,5.88,-1.37,-0.55,-0.02,1.04,-2.56,-1,1.88,2.9,-0.27,0.46,-1.47,2.65,2.6,-0.03,-1.36,0.41,1.53,1.6,0.77,0.97,-0.52,1.05,2.16,2.29,1.52,2.26,-4.76,0,2.98,-2.58,-2.89,-0.94,3.3,0.78,2.69,-1.28,0.18,2.86,1.44,1.46,1.25,-2.14,1.87,-2.6,-0.89,-1.17 +C24,4.1,5.13,-2.42,-3.62,2.99,0.84,2.98,1.57,1.53,1.57,1.18,-0.19,-2.19,-1.2,1.05,0.35,1.05,-0.16,2.68,-0.72,1.37,-1.6,0.48,-0.29,2.26,-1.12,-0.6,0.16,-0.14,0.7,-0.66,0.22,0.05,1.15,-0.57,0.04,-0.71,0.87,-0.32,-0.42,-0.65,0.65,0.8,-1.34,0.04,-0.44,-0.56,1.79,0.22,-0.38 +C25,-9.79,0.94,-1.74,-3.89,2.33,2.96,-0.39,0.44,-2.66,0.94,-0.71,-1.9,-3.01,-0.4,1.39,-1.8,1.12,0.15,0.13,1.42,-0.6,1.75,0.4,-1.87,-1.76,1.85,-0.55,-0.74,-1.14,-0.44,-0.77,2.17,-0.3,-3.65,1.42,-1.02,-0.2,1.44,1.08,1.24,-0.23,1.46,-1.32,0.56,-1.49,-0.42,-0.32,1.02,0.14,0.29 +C26,1.8,6.22,4.51,5.14,1.12,0.25,-2.12,-1.11,-0.97,0.37,0.08,1.39,1.83,0.25,-1.87,-2.09,1.72,-0.4,1.72,-0.76,-0.3,1.42,1.54,-3.84,-0.67,0.15,0.75,0.71,-0.66,0.79,0.26,1.52,-0.15,0.24,-0.86,-0.47,-1.21,1.31,2.92,-0.48,-0.16,-1.26,-0.46,0.99,-0.43,-0.17,-1.3,0.44,1.39,-0.06 +C27,6.12,3.3,-1.69,-3.02,1.38,-0.61,2.56,0.59,1.22,0,-0.79,0.02,-1.19,-0.22,-1.7,0.64,0.43,0.18,0.35,1.11,1.22,-0.2,1.86,1.2,-0.44,1.18,0.86,0.71,0.82,-2.04,1.32,0.11,-0.45,-0.29,1.92,-2.2,0.52,0.95,-0.19,1.97,1.34,-1.65,-2.06,-1.1,0.39,-1.13,-1.41,-0.27,0.4,-0.71 +C28,4.37,0.36,-0.89,-2.41,-0.58,0.37,0.37,1.5,0.51,-0.18,-1.07,-0.63,-0.42,0.12,-0.46,-2.02,0.64,-2.11,-0.45,0.26,-0.32,-1.6,-1.04,-0.06,1.31,1,1.92,2.8,3.76,-0.42,3.79,-2.79,-1.65,1,2.16,0.16,-0.76,-1.87,-0.9,0.93,2.67,-1.71,1.2,-2.44,2.44,0.94,0.75,0.59,0.5,0.58 +C29,-8.19,-2.99,-2.35,4.25,-3.06,-5.43,-0.24,-0.96,3.56,3.24,-0.37,2.83,2.23,0.8,-4.03,1.57,0.84,-0.95,-0.57,-0.48,0.49,-2,-1,-1.12,0.53,5.27,1.37,-0.02,0.28,1.57,0.87,-0.65,0.39,1.94,0.02,0.32,-0.01,0.12,-3.04,0.75,-0.66,0.99,-0.09,-3.87,2.96,-1.76,-2.29,1.16,-0.49,-0.6 +C30,4.94,1.36,-0.21,-2.22,-1.98,-1.07,-1.6,1.77,-0.11,-1.34,-2.69,0.69,-2.04,3.13,-0.84,-0.69,1.77,1.16,0.02,-1.34,1.1,-2.88,1,-3.81,2.93,-0.96,-1.77,-1.68,-1.63,-1.96,-1.29,2.69,-3.28,-2.03,-0.29,0.87,-0.97,0.24,0.35,1.99,-0.68,-1.22,1.83,3.62,-0.65,-0.95,-1.02,2.19,-3.31,0.37 +C31,2.93,-2.79,0.53,-1.56,-4.65,-1.12,-1.82,2.96,-6.14,-8.47,7.72,3.67,-1.28,-0.01,-3.3,-2.86,-3.9,0.6,-0.8,-0.25,2.33,-0.45,-1.03,0.88,-1.36,2.75,-2.96,-5.32,2.17,3.59,0.47,-1.49,1.17,1.62,3.59,-0.35,-1.61,2.71,2.68,-0.39,-4.27,-2.22,-2.92,-1.51,-4.12,-1.31,0.31,-1.02,-0.83,1.28 +C32,-10.87,-3.29,2.02,2.19,-4.41,-9.2,5.48,1.78,-0.33,1.01,0.01,-0.17,-0.92,-0.53,-1.15,-2.34,-3.17,2.41,-3.14,2.67,-1.94,-2.9,-0.6,-1.31,1.32,0.41,0.62,-2.74,-1.62,1.5,-2.02,-1.9,3.13,-0.14,1.23,0.35,-1.37,-2.05,1.37,-1.47,-2.28,-2.35,-0.81,0.56,1.21,1.85,0.6,0.45,-0.04,6.92 +C33,5.05,1.17,-0.99,-2.38,2.91,0.13,0.87,-1.85,1.89,-0.63,0.47,0.76,-0.27,0.52,0.5,-0.54,0.54,1.29,2.09,0.29,-1.77,1.87,0.92,0.71,-0.08,-0.47,-1.71,-1.45,-0.64,0.98,0.1,1.2,1.5,0.59,0.09,1.04,0.63,0.54,0.37,-0.42,-1.55,2.73,1.87,-0.18,-0.27,-1.33,-1.6,-0.13,0.51,1.05 +C34,4.48,9.19,3.85,5.63,5.31,-0.85,1.78,1.18,-1.96,1.92,-0.72,0.91,0.12,0.96,1.73,-1.47,-3.53,2.2,1.2,0.54,-3,-1.95,1.06,2.56,-0.87,1.57,1.79,-3.66,-1.55,2.43,2.01,0.59,0.46,-0.77,-1.62,-0.19,-1.61,-0.93,-0.85,-0.17,-0.57,0.89,-0.01,0.94,4.49,-0.35,-0.93,2.4,1.7,1.82 +C35,-11.69,1.39,-0.21,-2.54,1.04,0.48,-0.11,0.34,0.02,-1.22,-1.51,0.01,0.84,-0.07,-0.74,0.83,-0.02,-0.46,-0.71,0.75,-1.69,-3.03,0.78,-1.98,-1.05,-0.3,-0.27,1.53,0.35,-0.05,-1.21,-0.66,-0.77,2.51,-2.34,-1.24,1.01,0.02,-2.91,-2.09,-0.39,-0.95,1.82,-1.27,0.59,-0.59,-0.55,-0.33,-1.2,-0.32 +C36,3.1,-0.71,-0.89,-1.34,-2.58,0.89,-2.68,-0.75,1.35,0.38,1.77,0.98,0.66,-0.75,0.41,3.81,1.42,1.64,-0.96,-0.15,1.22,-0.17,0.36,0.4,4.57,0.17,-2.8,-2.22,-1.78,1.33,1.87,-2.1,0.59,1.58,-3.19,-1.42,1.5,-5.36,-2.71,0.44,1.16,1.36,3.63,3.54,-3.98,-4.83,0.59,1.12,3.05,0.51 +C37,-16.27,0.04,-0.33,-0.88,-0.25,-0.93,-2,1.04,0.39,0.29,-0.9,1.58,-0.05,0.23,0.07,-1.83,-0.29,2.71,-1.1,0.13,0.78,-2.62,-0.78,1.32,-0.02,1.46,-1.23,-0.31,-1.17,-1.49,1.03,0.75,-1.14,-0.11,-0.51,0.03,0.03,-1.24,2.14,-0.97,-1.83,-3.55,0.26,-0.18,0.44,-0.79,-2.23,-2.02,-1.74,1.66 +C38,4.44,0.78,-2.34,-2.23,1.17,0.04,1.14,-2.28,0.3,2.5,0.18,0.33,-0.1,0.45,0.93,1.62,-1.22,-0.54,-2.25,-0.87,0.44,1.72,1.18,-1.8,0.43,-0.05,-0.01,-0.61,0.77,0.25,0.31,-0.92,-1.26,-0.18,0.01,2.54,0.71,-0.36,0.26,-0.3,1.38,-0.94,0.57,-0.44,1.15,-0.85,1.32,-0.96,-2.18,-0.26 +C39,-10.25,0.84,-2.31,-2.61,4.07,2.28,-0.22,1.87,-3.6,1.27,0.41,-0.15,-2.7,-1.43,-0.17,-0.39,0.83,-0.96,1,1.45,0.93,0.56,-1.11,-0.31,-0.01,0.16,-1.36,-0.1,1.41,-1.34,-3.7,-0.94,0.71,1.91,2.22,-1.34,1.04,0.83,-0.7,-0.19,2.02,-4.73,0.66,0.2,-0.32,1.21,0.45,0.42,0.93,2 +C40,-12.86,-1.32,0.88,-1.07,-1.22,-4.88,2.26,-0.36,0.54,-1.01,0.18,1.6,-0.07,-0.02,0.65,0.92,-0.3,1.74,2.59,0.41,-1.47,-3.05,1.53,-0.44,-2.18,1.21,-2.2,-1.69,-1.06,-0.94,-0.46,-1.78,-0.12,0.41,-2.03,-0.37,0.76,-0.56,-0.4,0.18,0.05,1.17,0.8,-0.29,1.03,0.97,1.48,1.21,-1.24,0.27 +C41,4.45,0.59,-0.78,-1.28,-1.04,-1.69,-0.22,0.58,1.73,-0.89,0.14,-0.96,-0.28,0.82,-0.08,-0.46,0.33,1.88,-0.55,-2.15,-0.87,0.16,-0.06,0.1,1.31,2.33,0.91,0.08,-1.7,-0.29,1.36,1.29,-0.16,1.93,-1.26,-0.81,0.04,-2.22,-2.52,-1.51,-0.39,-2.6,-0.94,1.64,-1.06,-1.82,-0.11,-0.37,-0.16,0.2 +C42,2.6,-7.29,2.13,2.82,3.41,0.2,-1.46,-1.33,-3.53,-1.52,-3.82,6.71,-0.26,5.1,7.1,1.65,0.93,2.19,7.29,0.41,3.03,0.16,1.51,2.34,3.32,1.38,3.46,1.02,-2.08,-2.26,1.57,2.18,0.03,-0.61,2.2,0.91,0.56,1.38,0.62,-2.85,4.37,4.01,-2.95,1.97,-0.56,-1.28,-1.99,0.18,-2.83,3.2 +C43,4.2,-1.99,-0.78,-0.83,0.81,-0.11,-0.39,-5.62,-0.17,-2.28,-1.86,0.42,0.2,-0.8,-1.29,-1.05,0.24,-0.85,-0.16,0.26,-2.16,0.09,2.77,-3.31,-4.35,0.1,3.28,-0.95,-0.23,0.63,2.34,1.08,-1.55,1.16,2.01,-0.3,0.5,-0.2,2.36,1.58,2.91,1.03,0.73,2.42,1.89,-2.09,-0.63,-0.39,-0.55,1.53 +C44,4.11,-2.35,-1.55,-1.31,-0.72,-0.06,-0.74,-1.61,0.11,-2.19,1.61,0.23,-0.89,0.97,1.37,-1.78,1.87,0.88,-0.27,-1.97,-0.09,0.61,-0.43,1,0.7,-2.32,3.59,1.36,1.98,0.51,-1.54,0.94,3.73,0.28,0.37,0.14,0.98,-1.51,-0.74,1.18,-0.66,0.94,1.08,1.14,0.18,-1.06,-0.38,1.44,-2.75,-1.02 +C45,4.43,1.77,-1.87,-1.72,-0.23,-0.68,-0.01,0.94,1.45,2.17,-0.49,0.64,-1.76,-1.38,-0.99,-1.55,-0.88,-2,-0.3,0.85,1.13,1.27,0.72,0.82,0.17,1.14,0.2,0.23,1.02,0.36,-0.02,0.55,-0.34,-1.53,-0.22,0.04,-1.25,0.86,0.46,-0.24,-0.74,1.01,-1.52,0.16,-1.1,-0.09,-1.33,1.12,1,1.55 +C46,4.74,-0.17,-1.36,-1.83,-2.2,-0.04,-0.21,2.62,-1.01,1.3,-1.27,1.05,1.41,0.2,-0.32,1.15,0,-1.67,2.72,-0.51,-0.35,-2.38,3.57,0.57,-2.43,-0.32,-0.78,1.47,0.47,0.04,-0.04,-0.1,-0.28,-1.39,2.12,-0.33,0.87,-0.87,0.09,0.96,0.49,-0.98,0.38,3.82,2.55,-2.43,-1.51,3.33,-0.05,3.67 +C47,5.2,0.42,-3.33,-1.99,-1.72,-0.82,-0.02,1.82,-1.36,1.11,-0.64,-0.04,2.61,-0.23,-2.94,0.44,-0.54,0.72,0.75,1.8,0.13,-1.92,0.33,0.44,0.02,0.58,-1.3,0.27,2.31,0.82,-1.05,-0.92,-0.82,1.01,-2.27,-0.8,3.36,1.59,3.11,-1.72,-1.48,-0.89,-0.68,0.02,2.79,-0.28,0.12,-1.15,-0.71,-1.25 +C48,2.36,-0.3,0.41,-0.22,-2,0.65,1.24,-0.05,-0.61,0.53,1.32,-0.12,1.52,1.59,1.95,-0.49,1.86,3.46,1.13,2.35,-0.11,1.18,3.74,0.94,-2.4,-0.91,2.02,0.58,1.22,0.39,-2.3,-0.61,0.1,-1.1,1.06,-3.21,2.52,2.68,-0.01,-0.68,3.27,0.24,1.43,1.75,4.34,1.15,1.08,0.06,-0.63,0.25 +C49,5.58,2.14,-2.57,-2.57,-0.42,-0.43,-0.41,1.28,0.91,-1.11,-1.13,-0.73,0.48,-0.17,1.95,2.25,0.45,0.66,0.24,-1.16,-0.77,1.26,-1.57,-1.15,-1.96,-0.74,1.35,-0.05,1.03,-2.28,-1.09,0.84,-0.06,-1.79,1.4,0.5,3.73,-0.91,-1.45,-0.89,-0.59,-1.33,0.82,0.85,-2.79,0.05,0.32,0.39,0.38,-1.13 +C50,-12.83,-0.21,-1.31,-2.69,1.31,-0.09,0.38,-0.83,-1.68,-1.09,-1.97,1.52,-0.08,-1.76,0.31,-1.16,-1.71,0.15,-1.61,-0.85,3.32,-1.03,0.85,-0.73,-0.54,-1.66,0.56,2.48,0.11,-2.35,0.8,-0.72,-0.28,-0.51,-4.49,-2.16,-0.19,-5.08,5.47,-2.32,-1.07,-0.2,-1.06,0.18,0.21,-0.74,1.27,-2.11,-0.92,4.1 +C51,5.3,1.66,-1.29,-3.13,0.56,0.68,0.63,1.44,1.68,-1.84,-2.68,0.47,-0.75,1.91,-0.57,0.44,-0.61,1.25,2,3.11,-1.22,0.39,-0.46,-1.51,-0.09,1.44,0.08,0.4,2.33,1.21,-0.41,0.01,-1.05,0.33,0.8,-0.78,2.09,-0.36,0.31,-0.61,2.12,-1.75,0.64,-1.49,-1.2,-0.47,0.26,-1.2,-0.21,-1.38 +C52,-12.11,-1.84,1.32,1.23,-3.33,-8.79,4.01,-0.46,1.32,1.19,-1.86,-0.47,0.97,1.92,0.42,1.76,-0.67,-0.48,-1.96,2.65,-0.17,2.16,3.3,-0.9,-1.31,1.92,-2.05,2.39,-2.43,-2.31,0.58,2.85,-1.88,-1.36,-0.26,-1.87,2.01,1.96,-1.28,-0.86,0.96,-0.44,-0.18,-0.48,-0.94,-0.18,-0.42,-1.11,-0.43,0.01 +C53,-5.47,4.59,-1.87,-3.81,4.73,-0.41,3.29,0.13,0.83,0.54,1.2,-0.95,-0.31,-1.36,1.99,0.69,-1.16,-0.42,-0.13,2.42,-1.09,0.19,0.51,-0.55,1.22,1.66,1.14,0.44,-0.25,-1.43,-0.83,-0.96,-0.85,-2.27,0.07,-1.11,1.34,1.29,-0.62,-0.99,-1.6,-0.4,-0.75,0.2,-1.19,0.38,-0.22,0.01,3.12,1.27 +C54,-13.61,-2.67,2.36,1.58,-4.27,-5.49,1.96,-0.77,-0.81,1.21,-0.48,-1.56,-0.28,-1.76,-0.46,-1.75,-1.77,-0.58,-1.9,-0.16,-1.94,-2.39,2.91,0.28,-0.09,-0.73,-1.38,1.03,2.68,0.18,0.4,-0.92,1.77,-1.45,0.37,0.91,-0.01,0.31,-0.68,1.07,0.25,-0.29,-1.05,-1.4,1.12,-1.29,-1.06,0.05,-1.27,-3.36 +C55,-14.67,-3.22,1.51,-0.1,-2.75,-5.72,2.42,0.41,-0.12,0.41,1.4,-0.88,1.36,-1.17,-1.67,0.53,1.85,0.54,0.13,1.11,2.37,-0.11,3.01,-0.78,-1.85,2.49,-4.35,-1.01,0.32,1.01,-0.14,1.42,0.41,1.45,0.92,-1.62,-0.23,0.76,-2.28,-1.11,3.77,-1.44,0.44,1.51,-4.98,1.25,-1.6,0.03,-2.63,-2.44 +C56,5.2,1.3,-1.45,-2.62,-2.51,-0.35,0.44,2.33,-0.26,-0.73,-0.79,1.89,1.41,0.74,0.07,-2.31,-1.22,-0.11,1.52,1.66,-1.19,-0.95,1.09,0.35,0.63,-0.1,3.2,0.17,-1.89,0.86,0.68,1.86,-3.58,-1.57,-2.04,0.24,-0.53,0.08,1.23,-0.39,0.31,0.75,0.3,0.11,2.05,-3.01,-0.37,-0.81,-0.72,2.38 +C57,4.65,-0.35,-1.1,-1.76,-2.14,-0.1,-2.25,1.15,-2.38,-0.23,-2.04,-0.97,0.84,0.14,-2.56,-1,1.14,-1.62,-0.31,-0.27,-0.51,-0.31,0.3,-0.84,2.04,-1.92,-0.14,-0.03,3.2,-1.35,1.1,-0.13,0.69,0.19,1.08,-4.04,-1.36,0.51,-3,-2.07,1.02,0.79,1.32,1.03,-1.23,-4.7,-2.79,2.05,3.08,-0.16 +C58,3.29,9.43,6.89,8.47,1.31,0.79,-1.76,-1.05,0,2,2.6,-0.61,-1.79,-0.08,0.98,-0.14,0.62,-1.59,-1.06,-1.32,0.34,-2.86,0.43,1.21,2.02,0.31,1.59,-1.62,0.28,-2.15,0.9,-0.46,2.47,2.78,-0.58,1.64,-0.57,0.82,-1.2,0.35,-0.66,-0.73,-0.61,1.76,-0.2,-1.08,2.28,-0.07,1.83,0.23 +C59,-11.07,1.47,-1.43,-2.18,1.96,2.59,-0.69,0.06,0.36,-0.44,1.35,0.75,-1.56,-0.01,1.07,1.21,-0.6,-0.78,1.38,1.96,1.23,-1.63,-0.65,1.72,-0.16,-0.23,-0.18,1.54,-2.6,0.02,0.91,-0.11,-1.6,2.11,0.3,2.67,3.38,0.66,0.54,-1.59,-1.32,2.76,1.4,-0.87,-2.23,-2.95,-2.12,0.23,1.82,-0.16 +C60,4.29,-2.41,0.61,-1.35,-6.13,-0.57,-3.26,0.85,-1.68,1.79,-2.04,-0.62,1.25,-2.51,0.29,0.51,3.5,-0.97,-3.31,2.93,-0.7,-2.07,-3.38,-1.63,-0.56,2.97,-2.31,1.95,0.18,-0.51,2.54,-0.37,-3.43,1.79,0.44,3.84,0.9,0.64,0.74,2.2,-3.06,-5.46,-2.49,-1.03,-2.17,0.53,-1.54,-1.53,-4.93,-2.33 +C61,-13.77,0.01,-0.19,1.2,-0.43,0.76,-3.06,-0.38,0.92,0.74,-0.07,0.64,2.06,0.3,-2.06,-1.66,2.56,-1.18,0.81,0.49,-0.48,-0.72,1.6,1.06,0.21,-0.59,2.76,-1.35,2.81,-0.06,1.81,-0.05,-2.83,0.76,2.29,0.06,-2.92,-2.34,1.2,0.2,3.88,-3.06,-2.3,-3.2,-0.43,0.19,-0.37,0.43,0.41,-2.33 +C62,-15.68,-3.86,3.63,3.22,-2.78,1.13,-2.58,1.25,0.26,-3.55,1.67,-0.85,-1.95,-1.54,0.94,-0.18,-0.76,-0.04,0.5,3.35,-0.66,-1.2,1.73,-0.24,-3.62,0.26,1.51,-0.97,0.91,0.8,0.7,-2.46,-0.56,2.12,2.42,-0.13,-4.33,0.82,0.45,2.12,0.67,0.55,2.53,1.98,-0.55,-0.17,-0.57,-0.89,0.09,0.06 +C63,4.21,1.03,-0.87,-2.5,-1.74,-1.65,0.94,1,0.23,-1.01,-0.41,0.37,-1.7,0.5,-0.75,-0.52,-0.84,0.08,-0.08,-0.23,-0.18,1.11,1.09,-1.78,-1.37,0.6,0.45,-0.1,0.94,-0.79,0.44,-2.07,0.15,-1.51,-0.12,-0.27,0.69,-0.49,1.45,-2,-0.52,2.16,0.05,-0.47,0.39,0.63,1.67,-2.07,1.56,1.6 +C64,4.44,1.65,-1.18,-2.1,-0.03,-0.2,0.23,3.52,0.56,-1.71,-1.84,0.54,0.18,-0.58,-0.86,0.69,-0.31,1.51,1.2,-0.04,-2.87,0.88,-2.41,-2.19,1.04,-1.45,1.85,0.22,-1.14,-1.81,-2.07,2.67,-0.16,0.53,0.51,-0.24,-0.21,0.77,0.34,-0.09,-1.9,-0.39,2.09,1.93,-1.56,1.1,-0.64,0.38,0.8,-0.16 +C65,3.38,-9.46,2.19,2.86,6.9,0.01,2.27,1.99,-0.15,0.78,2.29,0.84,2.54,1.68,2.93,-2.6,-5.97,-1.61,-0.21,-1.54,-3.16,-1.83,-4.96,-1.92,2.02,1.63,-3.67,1.81,-1.45,-2.07,4.12,3.85,1.02,3.69,1.77,1.04,1.72,2.3,0.83,-0.97,-1.2,2.28,-0.3,-2.49,1.19,1.82,1.98,1.04,-3.7,-1.28 +C66,-9.93,-0.86,-0.46,-1.84,-0.76,-5.37,4.39,-1.25,1.02,1.84,2.49,0.42,0.47,0.35,-2.03,0.34,-0.67,-3.85,-0.15,-1.85,0.73,0.28,-0.29,0.87,-1.23,0.31,-0.76,-1.21,-0.92,-1.58,0.94,0.12,1.54,-0.47,-1.23,1.51,2.74,-1.75,0.22,-3.06,-0.15,-0.75,-1.34,0.76,-2.2,0.36,1.81,-3.27,0.16,1.23 +C67,5.08,1.04,-1.44,-2.24,-2.07,-1.18,0.2,1.2,0.69,2.02,-0.65,-1.85,-1.06,-0.37,-0.92,-2.08,-1.45,1.23,0.56,-1.35,-0.98,1.32,1.18,-0.02,2.11,4.25,0.04,1.66,-2.99,-1.44,1.09,1.37,-1.48,-0.33,1.05,-2.53,-1.02,0.99,-1.55,-0.93,-2.47,0.97,-0.82,-0.77,-1.05,-0.61,1.22,2.93,-0.18,1.07 +C68,-13.83,-3.1,2.23,2.74,-5.42,-4.93,3.69,-0.95,2.53,3.15,-0.67,2.08,1.27,2.87,-0.58,1.78,-1.95,-6.55,-0.07,-2.22,1.79,0.67,0.85,-0.77,0.88,1.71,-0.21,3.37,-1.76,-0.34,3.01,-3.9,-2.78,1.41,2.65,0.43,-0.47,-0.61,0.97,2.31,-0.47,2.78,-0.41,1.18,3.11,-0.37,-1.62,-0.74,1.02,-1.69 +C69,3.7,-0.23,-0.13,-2.06,-3.12,-0.57,0.07,-0.31,-1.72,0.88,2.93,1.14,0.01,-1.74,0.63,-1.8,-0.12,2.88,1.49,-1.25,0.82,0.75,-0.64,-0.6,-1.62,2.41,-0.48,0.32,-0.8,-2.5,0.09,-1.39,1.74,-0.7,-2.69,-0.34,-0.57,0.17,-0.9,-2.23,-0.47,-2.65,0.94,0,-0.62,0.3,2.66,-2.14,3.08,0.73 +C70,3.72,-1.08,-2.18,-3.35,-2.39,-1.52,-0.82,0.54,0.69,-1.24,2.72,2.11,2.15,-4.05,0.94,-1.09,-1.04,-0.61,0.13,-0.58,0.23,-0.95,-3.24,-1.31,0.19,-0.98,0.63,-0.69,-1.44,-4.51,-1.29,-2.16,-2.02,-4.23,2.8,4.05,-0.77,-0.68,-0.33,0.98,-1.81,-0.67,-1.42,0.45,-0.87,0.75,2.16,3.88,0.31,1.7 +C71,4.99,1.36,-2.35,-1.1,-0.23,-0.82,-0.06,1.65,0.49,-0.81,-1.49,1.6,0.1,0.59,-1.5,-1.23,-0.17,0.16,0.77,1.31,-0.78,0.49,-0.13,0.36,-0.52,-0.95,0.55,-0.98,2.21,0.12,0.09,0.97,-1.8,-0.5,1.31,2.2,0.74,-0.79,2.06,0.71,0.98,-1.34,-0.84,0.8,0.61,0.51,-1.36,0.69,1,-1.37 +C72,3.24,-0.53,-0.94,-2.2,-3.5,-0.21,-1.19,1.46,-0.18,1.02,0.35,0.75,1.18,0.01,-1.07,-0.92,-1.66,-0.3,-0.4,-0.32,1.99,-1.1,2.08,0.34,0.16,-0.7,-0.25,-1.91,0.43,0.35,-1.94,1.18,-3.09,0.61,0.46,-1.15,0.27,-0.84,-2.38,1.16,1.88,-2.09,0.16,2.46,-1.08,-0.43,-1.17,-1.17,-1.74,-0.95 +C73,4.11,0.1,-1.31,-2.98,-1.41,0.27,0.39,-1.77,0.57,4.66,0.9,0.27,-0.11,-1.08,1.27,0.84,-2.28,-0.02,-0.6,0.16,-1.17,0.78,1.53,-0.06,-1.07,-0.11,1.5,1.24,2.46,0.4,-2.27,1.15,0.19,1.76,-0.32,-0.14,-0.87,-1.61,-2.43,-0.29,0.14,-0.88,1.2,-2.57,-1.27,1.02,-0.17,-0.98,0.72,0.38 +C74,2.25,-15.26,4,5.95,8.82,0.61,-2.07,3.34,-2.46,3.4,2.29,0.88,0.94,0.94,4,2.88,-2.52,2.74,-2.05,4.3,-1.63,-2.52,3.6,-1.14,4.09,-0.86,-1.52,-4.46,-0.37,1.48,-0.95,-1.35,3.07,3.1,-0.8,-2.22,1.89,0.46,0.63,3.78,-1.58,1.14,-2.87,1.72,-1.1,0.58,3.12,-0.72,2.18,1.61 +C75,4.11,8.1,2.52,2.17,2.72,-1.11,3.54,0.9,-0.59,0.19,-1.22,1.03,1.09,-0.54,0.62,-2,-1.01,1.74,-1.63,0.9,-0.53,0.43,0.08,-1.45,-3.52,-0.38,2.2,-0.56,-0.02,0.67,-1.21,-1.86,0.8,0.53,1.97,-1.3,0.38,0.84,2.39,-0.64,0.84,-0.6,-2.8,1.63,0.4,0.04,0.3,-0.74,1.74,-0.46 +C76,2.87,-1.19,-1.1,-1.78,-1.4,-1.29,-0.87,1.07,-1.25,0.51,1.39,-0.63,1.12,-1.95,1.31,1,1.33,-1.92,-0.85,-0.5,-0.6,-1.75,0.19,-1.41,-0.51,-2.43,-3.34,-1.18,2.44,0.89,3.15,-3.04,0.22,-0.7,1.71,0.81,-0.56,0.04,0.93,0.28,2.9,2.24,1.41,-0.24,-4.31,1.57,2.37,-0.36,-2.8,-1.67 +C77,3.3,-12.84,2.22,4.66,5.76,-0.62,-2.01,1.66,-1.1,5.66,-0.35,1.11,4.53,-0.26,-0.35,5.64,-3.82,3.33,-0.9,4.89,0.78,4.56,-2.51,2.01,0.45,-0.66,-3.05,4.51,-0.62,1.82,-1.49,-0.45,-0.68,4.07,-4.99,2.35,-2.15,-0.39,1.09,0.78,-3.39,-2.71,-4.34,-3.1,-0.1,-0.3,-3.47,2.07,-2.93,-2.61 +C78,4.79,-0.04,-1.12,-3.02,-3.81,-1.64,-1.01,1.33,0.03,-3.47,0.72,0.05,-0.1,1.85,-1.57,-3,-0.59,-0.08,0.5,1.6,-0.5,1.03,0.85,-0.95,0.11,1,0.74,-1.7,0.6,0.52,-0.39,0.44,-0.87,0.2,2.45,0.85,0.37,0.14,-1.54,0.03,-3.26,0.95,-1.29,1.01,0.77,-0.03,-0.2,-2.17,0.72,-2.59 +C79,3.09,5.68,4.98,4.73,0.54,-0.78,0.81,-1.4,-1.61,0.78,0.15,-0.08,-1.92,0.02,-3.21,1.75,0.48,0.91,-0.78,-0.49,0.79,-1.87,0.24,-0.3,-2.01,1.5,-0.24,-1.26,-2.97,-0.05,-1.68,-0.35,1.74,0.56,0.52,1.74,-1.12,-0.91,0.68,1.18,1.38,-3.68,1.19,-1.15,-0.92,1.81,-1.29,0.25,1.29,0.1 +C80,4.1,1.77,-1.43,-3.53,-1.41,-0.19,-0.81,-0.02,1.2,2.18,0.38,1.22,1.31,-1.67,-0.83,-1.55,-1.67,-0.46,1,0.5,-1.92,1.15,0.01,-2,-0.13,-1.43,-0.06,1.61,-0.25,-2.42,1.32,1.62,0.86,-1.23,-3.21,1.05,1.82,2.06,2.73,-0.08,-0.73,0.04,-0.06,-2.83,0.63,-0.75,0.25,0.41,-0.81,0.85 +C81,4.1,-0.72,-1.38,-0.87,-4.39,-0.64,0.35,-0.03,0.18,-1.1,3.21,-0.14,-0.36,0.35,-4.6,-0.06,5.25,-2.9,0.66,-0.44,-1.21,0.62,1.45,2.39,1.09,-1.51,2.31,-1.19,1.05,0.51,0.7,4.01,1.97,1.27,-0.24,-1.82,-1.94,1.1,1.26,-0.97,4.34,1.34,0.26,0.31,1.25,0.78,1.09,-2.42,2.59,0.24 +C82,5.18,-1.15,0.08,-1.03,-2.72,0.25,-0.53,2.72,2.5,-1.05,-0.75,0.13,-2.71,0.53,0.54,0.54,1.13,-0.8,-0.29,3.1,-1.63,-0.1,-1.51,2.55,-3.91,0.7,2.28,1.1,-1.31,2.33,1.3,2.32,1.04,-1.16,1.11,-0.26,-0.99,-0.32,2.16,0.87,3,-2.25,0.18,-0.59,0.37,2.08,-0.46,1.66,-2.64,-2.45 +C83,-12.79,0.48,-0.33,-3.42,0.79,0.96,-2.54,0.7,1.77,0.27,-2.69,-2.64,-1.2,1.46,-0.7,0.13,1.56,-0.98,0.53,2.21,1.7,-0.54,-0.25,-4.19,-1.39,0.71,-0.42,-1.78,2.12,-1.04,1.86,-1.27,-1.35,1.8,-0.26,-1.3,2.85,-0.67,-1.02,-1.16,-1.59,0.93,1.97,-2.63,-0.29,0.34,-0.78,-1.04,1.16,0.38 +C84,-9.28,2.58,-1.98,-2.12,2.08,3.02,-1.16,0.77,-0.81,0.45,1.93,-0.47,-1.28,0.64,0.07,0.04,-1.08,0.23,-1,-0.26,1.67,-0.85,-0.16,0.21,1.85,1.03,-1.42,0.76,1.71,0.37,0.63,-0.22,-0.31,0.82,-0.74,0.97,1.66,-1.66,-1.17,1.03,2.63,-0.91,0.1,-1.05,0.12,-1.53,2.13,0.53,2.09,0.51 +C85,4.92,-2.45,-0.17,-0.81,1.67,-0.51,0.23,-3.99,-0.73,0.57,-1.83,2.37,-0.67,-0.13,0.15,-1.36,-1.15,-2.29,-0.91,0.66,-1.47,1.05,1.56,-0.99,-0.25,1.56,-0.63,1.66,-0.01,-1.27,-0.96,1.41,-2.62,0.95,2.25,-2.23,-0.51,-0.39,1.17,0.23,-3.46,-0.36,-0.15,1.31,0.75,-0.47,1.15,-3.23,-0.71,-2.6 +C86,-8.24,3.09,-0.97,-2.54,3.06,0.2,2.37,-0.95,-0.22,-0.83,3.99,-0.94,0.22,-1.52,-3.12,2.67,-0.3,1.8,1.7,-0.6,2.2,0.19,0.73,-2.02,-1.18,0.03,0.74,-0.13,0.6,-1.46,-2.13,0.33,0.65,-1.12,1.1,2.53,-2.82,-1.1,0.65,0.56,1.05,1.15,-1.79,1.12,-2.16,1.01,-0.35,1.05,-0.1,2.37 +C87,3.62,0.25,0.02,-1.91,-1.46,0.85,-0.37,-0.19,-0.24,-0.16,1.22,-1.92,0.28,-0.01,-0.58,-1.38,1.38,-0.36,0.09,-1.79,-0.36,-0.47,-0.36,-0.75,0.83,-0.85,-1.23,0.02,-0.79,-1.26,-1.51,1.19,1.14,1.95,0.1,-0.67,-1.7,-1.17,-0.07,-0.8,0.7,-0.82,1.42,1.34,-1.65,-0.74,0.25,-3.07,1.17,-0.61 +C88,-10.12,2.39,-0.55,-2.89,3.55,4.04,-1.52,1.27,-2.34,0.63,-0.06,0.93,0.06,-0.31,-0.27,2.34,0.53,-1.69,0.08,0.67,-1.97,-1.89,-0.94,0.46,2.87,1.82,-1.84,2.81,0.25,0.02,-0.02,0.88,-1.32,-1.26,0.95,0.28,-1.72,1.39,0.75,1.24,-1.18,2.1,1.06,-1.56,-2.38,2.81,0.82,-0.55,-0.03,0.44 +C89,1.14,4.42,3.49,4.26,-2.63,1.45,-0.05,0.15,-2.8,3.64,1.77,-1.56,-1.58,-2.18,0.31,2.56,-0.39,-2.55,-0.23,-2.41,0.89,1.14,0.01,-1.57,-0.79,-0.71,-0.54,1.86,2.04,0.98,1.92,0.88,1.88,4.42,-2.06,-0.29,0.27,-0.1,-0.87,-0.04,1.24,-0.43,-1.4,1.14,-0.58,2.32,-4.36,-0.86,-0.57,-2.48 +C90,5.74,2.19,-1.68,-1.82,0.04,-0.5,0.71,1.52,0.93,0.08,-0.56,1.31,-0.06,2.3,3.22,-3.42,0.59,-2.49,0.6,-0.68,1.55,1.07,-1.62,0.33,-0.07,-0.61,-2.69,-0.43,-0.99,-1.57,1.42,1.96,-0.48,-0.96,-2.47,0.88,-0.14,-0.23,4.04,0.25,-0.08,-0.7,0.37,1.16,-0.06,0.55,0.36,-0.1,-1.43,-3.72 +C91,5.23,3.38,-1.46,-1.91,2.31,-0.55,1.33,0.52,1.55,-0.33,1.57,-0.58,-1.49,0.74,1.96,0.96,-0.93,-3.04,0.74,0.12,-0.39,-0.24,0.1,-1.22,2.18,-0.42,-1.38,-0.99,0.94,3.06,-0.89,0.98,-2.34,-0.13,0.27,0.2,2.18,0.51,-0.04,-2.17,0.55,0.64,4.2,-0.78,-0.79,-1.28,-1.01,-0.41,0.75,1.48 +C92,4.05,8.09,6.03,6.48,0.98,-2.12,-0.68,-0.28,-4.06,-0.44,-0.57,-1.95,0.83,-1,0.19,1.36,3.06,-0.07,-1.66,1.1,-2.19,-0.28,1.16,2.11,2.9,3.03,-2.03,-1.7,-0.86,2.11,4.2,-2.29,1.28,-2.43,4.8,-0.76,-3.22,1.22,-2.9,-0.99,0.23,0.34,-2,-0.66,2.18,4.61,-0.62,1.32,-1.51,-1.28 +C93,4.05,9.37,7.62,6.98,2.88,0.36,0.01,-1.68,-0.17,0.45,-0.34,-1.62,0.62,3.72,-2.72,-0.33,0.45,-1.44,0.6,-0.3,0.54,-1.28,0.55,2.04,2.66,-1.37,2.74,0.45,-2.4,1.4,3.56,0.89,1.62,4.44,-4.41,1.64,3.85,-0.33,-1.35,1.99,-6.22,2.2,-4.44,-0.44,-2.04,3.57,-0.76,-0.64,6.15,-1.18 +C94,4.15,2.41,0.17,-1.17,-1.33,0.49,-0.23,1.72,-0.59,0.79,-1.32,-0.2,1.63,0.27,-0.73,-0.09,0.9,1.98,-0.49,-0.48,-1.53,-1.21,-1.15,-0.99,-0.01,-1.13,-0.08,-0.5,1.56,1.11,-1,1.13,1.12,-1.3,0.08,-0.37,1.25,1.72,0.59,-0.16,1.98,1.11,1.77,1.5,0.89,-0.12,1.15,2.31,1.49,-0.39 +C95,-11.2,0.23,-2.3,-2.98,1.82,2.58,-1.98,1.92,-2.45,-3.82,2.38,0.86,-1.77,0.91,-1.19,2.25,-1.89,-0.99,-1.46,-0.41,-1.09,-0.92,1.82,0.65,-0.08,-2.89,-1.66,1.7,-1.28,2.56,-2.19,-2.35,0.09,0.99,0.37,0,0.69,-1.65,-1.02,0.34,0,0.36,1.08,0.07,-0.83,-1.55,-0.24,0.37,0.51,0.67 +C96,3.28,7.71,3.69,3.34,2.6,-0.63,1.13,0.27,-0.67,-2.31,0.67,-0.37,1.34,-0.35,-2.71,-1.19,-1.64,3.65,0.51,2.39,1.21,0.33,2.36,-0.14,-0.92,0.11,1.61,4.49,-0.03,0.52,-2.22,1.67,0.32,0.61,1.38,-1.23,-1.22,4.19,3.64,2.47,-2.02,0.15,-3.53,1.32,-2.69,2.34,0.98,-2.13,0.39,-0.96 +C97,4.48,8.25,3.11,2.92,3.43,-0.36,2.53,0.24,1.53,-2,-1.22,0.91,-0.88,1.5,1.81,1.23,-1.51,-1.58,1.44,-0.95,4.31,-0.1,1.08,0.97,1.16,2.22,2.76,-2.11,0.16,0.15,0.9,-0.62,-0.81,-0.86,0.95,1.68,0.03,-4.14,0.68,1.2,1.52,2.4,0.39,-2.12,-0.73,-2.46,-0.67,0.92,-1.88,-0.15 +C98,-14.05,0.74,1.27,-1.48,1.18,1.19,-1.69,-0.23,-0.74,-1.84,2,0.63,0.62,0.51,-0.87,-1.86,-0.01,-0.62,0,-2.59,-0.08,1.54,0.28,-0.5,0.25,-6.6,-1.15,-0.86,-1.11,1.85,-1.32,0,-1.89,-1.72,0.04,0.59,1.15,-1.13,1.1,1.64,-0.61,-2.07,0.44,-0.74,1.25,-1.56,0.09,-1.98,0.7,-2.57 +C99,-12.82,-0.34,1.07,-0.24,0.34,2.99,-3.58,0.43,-0.65,0.17,-2.2,-2.48,2.21,-0.86,-0.21,0.51,1.69,-0.8,-2.67,-0.09,-1.36,0.03,-1.25,1.68,-1.55,-1.16,-0.25,0.86,1.69,0.26,2.33,2.84,1.45,1.54,4.04,0.51,-0.28,0.65,-1.73,-0.33,-0.52,-0.72,-0.91,-0.23,3.02,0.48,-0.38,1.97,-0.6,0.32 +C100,5.04,1.7,-1.65,-3.17,-0.44,-0.31,0.09,2.88,2.59,-0.28,0.57,0.1,0.8,1.71,-0.77,-0.11,-0.16,3.01,-1.16,-0.18,-2.27,0.14,0.87,1.31,2.55,0.75,-0.51,2.04,1.35,-2.71,3.51,-2.21,1.23,-0.67,-1.06,0.58,1.03,-0.73,-2.48,2.15,0.22,-0.8,0.73,1.4,0.64,-0.41,0.36,0.8,-0.26,0.79 +C101,-14.57,-0.14,0.19,-0.91,0.33,1.1,-1.65,0.45,-0.08,-1.76,-1.11,-1.88,-0.24,1.94,1.7,1.62,-0.69,3.05,-2.34,-0.58,-2.25,2.23,0.75,1.4,-2.31,-0.15,-0.2,-1.81,-0.07,0.51,-0.75,1.13,-0.08,2.26,-2.06,-0.07,-0.55,1.46,0.83,0.71,1.76,2.54,0.77,-0.54,0.13,2.6,-0.41,1.65,-1.25,0.23 +C102,-13.98,0.19,-1.56,-3.04,2.64,2.27,-0.67,-0.91,-1.63,0.56,0.18,0.64,1.2,-1.26,-0.2,0.15,-0.01,-1.1,1.36,-0.54,-3.46,-0.92,0.6,-1.05,0.26,0.34,0.97,-0.73,-0.95,-1.08,0.26,-0.89,-2.07,-1.19,-0.8,-1.4,-1.79,-0.6,0.5,-1.02,3.55,2.26,0.26,0.86,1.07,0.64,-0.1,-1.17,-0.96,0.12 +C103,-10.3,2.29,2.38,1.43,-1.5,4.98,-9.18,0.95,8.95,0.09,0.61,1.76,0.3,-0.51,-1.14,1.15,1.13,3.71,-1.09,0.37,1.97,2.85,0.53,-0.09,3.49,-6.51,-0.02,-0.26,0.99,1.02,-1.78,-0.45,3.84,3.3,-1.79,1.03,0.44,-1.02,1.16,-0.42,2.28,-1.5,-0.8,1.76,-0.07,3.16,0.5,-2.19,2.19,1.46 +C104,2.25,-14.34,3.08,5.71,10.83,-0.83,-0.59,5.28,-1.39,-1.68,-2.27,2.56,0.4,1.43,2.1,1.7,2.07,2.47,-1.99,-1.21,-0.39,-2.09,-0.17,1.35,1.44,-1.17,4.27,1.2,-0.42,1.26,1.63,-0.84,-1.27,3.03,0.14,0.88,-2.33,0.17,1.19,-1.47,-1.29,3.93,-1.05,-0.51,0.17,-0.8,-1.09,-1.41,-0.46,3.2 +C105,-5.36,4.23,-2.64,-4.41,4.88,2.27,1.87,-0.18,0.37,-1.27,-0.1,0.72,-0.93,0.04,1.01,-1.32,-1.33,0.69,0.56,1.43,-0.56,-1.15,0.03,-1.61,2.36,1.07,-0.47,0.89,1.47,0.76,-0.57,1.32,0.38,-0.62,0.14,0.41,1.21,0.54,-0.66,-0.1,1,1.39,-0.37,-1.39,-1.13,-0.42,1.02,-1.84,1.06,1.1 +C106,3.77,-1.48,-1.45,-1.7,-1.66,0.87,-0.45,0.07,2.05,1.82,-1.6,0.39,1.69,-0.5,1.01,0.48,-0.26,0.63,1.56,1.45,-1.02,0.11,-0.69,-0.69,0.32,0.29,-0.42,-1.79,-1.59,-1.28,0.12,0.31,-1.65,0.13,-0.17,0.53,2.48,0.66,-1.04,-0.68,0.14,-1.14,1.5,1.78,-2.23,-0.31,0.82,2.11,1.03,-0.34 +C107,4.65,-7.66,1.16,0.78,3.74,-1.04,-0.02,2.27,1.3,1.27,1.84,-5.22,-0.27,0.15,-5.61,0.13,-0.93,-0.08,1.65,0.17,-0.45,2.3,-1.24,0.38,-0.55,-1.09,2.44,-3.54,1.54,-0.16,1.06,3.16,-2.54,3.29,1.41,1.95,1.21,2.25,-2.71,1.08,0.42,-1.76,-3.29,-2.26,1.74,-0.31,-1.57,1.06,-2.79,-0.66 +C108,2.82,-9.35,1.66,2.66,4.63,0.15,-1.74,0.23,-1.17,-2.6,-0.63,-0.01,-1.02,2.71,-0.48,3.56,-1.24,-0.91,1.74,2.4,-2.41,-0.19,1.28,1.02,-0.47,0.89,-0.17,-2.58,1.86,-0.7,2.8,2.68,1.26,0.71,1.76,2.45,0.26,0.52,0.06,-1.52,2.63,1.97,-1.01,0.57,-2.29,-1.89,-1.27,0.39,-0.18,2.47 +C109,3.04,4.62,2.35,3.18,-0.63,1.17,0.45,-1.18,-2.43,2.24,2.56,-0.96,-2.99,0.45,0.62,2.59,1.61,-0.27,-0.51,-1.82,-0.87,-2.12,1.8,-0.62,0.38,1.21,-1.73,0.13,-1.89,-0.31,-1.34,-0.81,0.81,-0.32,0.8,3.26,2.3,-0.64,-0.19,-0.66,0.29,1.78,-0.67,-0.48,-0.74,-0.67,0.45,-0.49,1.09,-0.99 +C110,6.27,0.05,-2.32,-1.63,3.57,-0.43,0.87,-3.19,3.92,-0.25,-1.85,-0.25,-0.19,0.17,-2.33,-0.74,0.39,2.62,-1.97,-0.7,0.17,-0.47,0.47,-1.21,0.19,1.47,-0.34,-2.01,0.98,1.6,1.56,1.97,-1.3,0.26,2.84,-1.48,-1.23,-1.31,-1.59,1.35,1.24,0.12,0.48,-0.3,-0.15,-2.71,-1.53,-0.43,-0.81,0.42 +C111,1.83,3.47,5.54,5.69,-2.73,1.17,-2.52,1.56,-1.74,-0.2,1.4,-0.34,-1.62,1.3,-0.27,-1.2,-3.07,-1.57,0.46,0.46,1.12,1.13,2.34,0.48,2.23,-3.21,-0.24,-0.2,0.26,-0.47,-1.64,0.54,-1.47,-0.04,0.86,1.11,1.38,-2,-0.76,2.07,-0.85,2.26,-1.94,1.03,2.38,-1.46,0.86,0.77,2.27,2.06 +C112,4.3,0.94,-0.34,-2.03,-2.33,-0.35,0.83,2.24,0.76,-0.21,-1.65,2.95,-0.75,1.32,-2.14,-1.3,1.46,0.5,0.25,1.89,-0.68,-1.11,-0.07,-1.33,-1.78,0.34,-0.17,-0.23,0.99,1.69,2.47,-0.88,1.31,-1.04,1.38,0.24,1.82,3.06,2.33,1.78,-0.51,1.12,-1.6,-0.45,1.85,-1.64,4.6,-1.27,-1.56,2.69 +C113,-9.29,0.47,5.02,5.41,-4.4,2.31,-7.97,-0.16,9.07,-1.06,2.15,-0.27,1.96,-1.79,-0.93,1.12,0.44,1.04,-2,-1.33,0.1,-1.34,0.49,-1.36,0.63,0.5,0.4,-1.62,-1.18,-1.77,0.14,-1.81,2.96,-3.29,-1,-1.69,0.97,-0.04,0.17,0.33,0.44,0.88,-0.22,1.89,0.13,1.42,-0.29,0.41,-1.68,0.09 +C114,-9.49,2.12,-1.27,-2.48,2.61,1.25,1.32,-0.52,-0.08,0.19,2.01,0.51,-1.28,-0.49,0.65,-0.75,-0.7,-0.48,0.5,0.29,-0.34,0.71,1.94,-0.68,-0.13,-0.32,-1.67,-1.2,0.02,0.66,1.04,1.96,0.2,1.92,-1.11,-1.56,-0.48,2.14,-0.38,0.05,0.65,-0.86,0.04,0.16,-0.94,1.56,-0.25,0.98,1.39,-2.88 +C115,4.02,0.6,-2.05,-2.23,-1.94,-0.87,0.22,0.4,0.16,-2.12,1.62,-1.04,-1.32,-0.02,1.49,0.45,0.79,0.68,0.54,-0.15,-0.42,-0.86,-0.57,2.62,-2.59,0.27,-0.51,-0.03,-0.98,2.6,-2.2,2.94,0.47,-0.53,0.35,-2.11,-0.66,1.13,1.39,-1.84,0.65,-0.25,1.03,0.33,3.22,0.93,-1.73,-1.65,-1.28,1.03 +C116,4.15,0.29,-0.96,-1.38,1.93,0.38,-0.79,-1.95,0.57,-4.47,-0.81,1.15,1.24,0.36,0.03,0.08,0.23,1.5,1.44,-1.85,-3.38,-1.79,-0.03,1.15,0.04,-0.73,-1.64,0.83,0.77,-2.08,-1.84,-0.57,-1.1,0.64,2.32,1.15,0.45,2.44,-0.37,-3.02,2.57,0.06,-0.83,-1.76,1.96,0.45,1.49,-0.18,-1.02,-3.93 +C117,3.21,0.12,-0.89,0.16,-1.76,-1.14,-1.1,-1.24,-0.14,-0.93,1.47,-0.24,1.94,0.35,1.85,-1.99,1.21,2.38,-0.88,2.21,1.34,-1.81,3.06,-1.79,-0.53,-1.09,1.44,3.28,-2.67,-2.21,-0.12,-2.03,4.05,1.55,0.69,-0.37,1.57,2.94,0.31,0.13,-0.9,-0.73,-0.87,-0.85,0.43,-3.74,0.11,-0.43,1.35,-0.35 +C118,-7.86,3.2,-2.55,-3.98,4.17,2.3,1.52,-0.08,-2.32,0.38,1.86,-1.09,2,-0.87,-0.77,-0.47,-0.15,1.31,-1.31,-1.36,-0.75,0.79,1.18,0.92,0.62,-0.15,-0.61,2.2,1.23,0.9,0.63,-1.78,-2.8,-2.36,1.96,2.11,-0.82,-0.38,-1.58,-1.54,1.77,1.52,2.69,1.17,0.09,-0.52,-0.03,-1.25,-1.06,-1.67 +C119,-10.26,0.95,1.62,0.14,0.77,-4.22,1.99,-0.91,3.34,0.24,-1.36,0.93,0.21,1.84,-1.6,2.1,2.84,-1.26,0.88,-2,0.89,-0.36,0.89,1.2,-0.87,0.05,0.24,-0.7,0.98,0.97,-3.39,1.21,0.74,0.74,-0.44,-1.96,-0.71,-2.22,-2.17,0.09,0.5,-2.16,2.11,-0.99,3.58,2.37,0.94,-2.6,-0.9,-0.04 +C120,5.23,1.24,-0.61,-2.68,-1.07,-0.62,-0.03,2.91,2.61,-2.22,-2.18,-0.34,0.42,1.8,-2.22,-2.38,-0.01,0.28,1.92,2.69,-0.09,0.67,-1.11,-0.26,-1.52,0.86,-1.25,0.93,0.29,0.55,2.08,1.13,-1.1,0.16,-0.5,-1.66,-0.6,0.74,1.43,-1.06,1.85,0.97,1.27,0.05,0.38,1.07,0.34,-0.84,-1.79,2.03 +C121,4.4,8.63,4.44,3.68,3.1,-0.15,1.16,0.9,-0.87,0.33,-2.89,0.88,1.71,0.93,0.22,0.34,-2.26,-1.25,-1.7,0.85,1.79,-1.82,-2.88,1.54,0.5,-0.29,-0.37,1.27,-1.21,-3.77,1.24,-0.64,-1.58,0.72,-0.17,-0.25,-0.12,-0.21,-1.38,-2.26,-2.08,-0.05,-0.51,1.45,2.07,0.14,0.53,0.18,0.49,0.43 +C122,-11.93,-1.26,1.94,0.5,-1.84,-4.72,2.96,-0.83,1.59,-0.69,-0.86,1.3,-0.43,0.33,-0.79,-0.39,0.92,-0.6,3.43,0.32,-0.99,-0.23,-2.57,1.42,0.15,1.52,0.53,1.67,-0.8,0.47,0.89,-1.94,-1.18,0.65,-0.66,-1.55,-0.68,-0.88,0.23,0.91,0.34,-1.09,-2.48,2.1,-1.22,4.22,-0.15,0.46,1.54,-1.76 +C123,6.13,1.09,-2.13,-2.73,0.76,-0.41,2.76,-0.69,1.23,-1.36,-0.19,0.91,-1.08,1.31,-2.82,0.22,-0.85,0.24,-0.37,-0.4,2.32,1.14,2.2,0.89,-1.83,-0.81,-1.17,-0.6,-0.89,-0.03,-1.49,-0.4,-2.05,0.29,0.53,-0.15,-2.53,0.2,1.21,3.2,2.44,1.54,-0.39,1.94,1.43,0.29,-0.44,-1.41,-0.76,0.25 +C124,3.86,-6.17,0.02,-0.29,3.75,0.07,-0.15,-5.86,0.49,-0.98,1.78,-0.84,-1.38,-1.36,1.36,-0.11,0.49,-3.26,-0.59,0.88,0.4,0.49,1.58,0.37,-0.69,-2.07,-0.12,0.54,1.9,1.15,-0.91,0.95,0.48,4.67,-1.06,-0.4,-1.56,-0.02,1.16,-0.28,0.28,0.95,-0.33,-2.78,-2.45,1.27,0.2,-0.2,-0.53,-1.08 +C125,-9.44,2.79,-1.54,-3.28,3.95,2.38,1.17,-0.63,-1.74,2.13,0.45,-0.67,1.8,1.45,-0.4,1.66,1.34,0.53,-0.53,0.89,-0.1,-2.73,2.25,-0.53,-1.16,-1.24,2.49,-0.52,0.82,-0.57,2.22,-0.44,-0.31,-1.77,-2.87,0.78,1.42,0.37,0.83,1.67,-0.27,-1.76,-0.09,-0.79,-1.23,-0.05,0.52,0.85,0.2,-0.49 +C126,3.97,7.67,4.19,2.99,1.04,0,-0.78,0.25,-0.09,-0.77,0.57,-0.58,0.05,-0.56,-0.14,-1.46,-0.25,0.29,-1.51,0.58,2.49,-0.72,0.94,-0.02,-2.7,1.2,-1,0.84,-1.38,1.21,-0.4,0.81,0.47,0.67,0.31,-0.75,-1.23,0.54,-0.26,-1.13,0.24,1.59,-0.11,-0.45,1.84,0.1,0.99,-2.11,-0.16,-0.74 +C127,5.27,-4.29,-0.46,0.04,0.79,0.84,-1.49,-4.64,0.14,0.05,-3.29,3.74,1.35,-3.39,-2.8,0.04,-1.77,-1.05,-2.82,1.11,-3.54,1.1,-2.19,-3.87,0.57,4.73,-1.18,3.32,1.37,1.66,-0.42,1.54,0.44,2.9,1.67,-0.46,-2.52,1.62,0.37,2.61,0.55,6.8,3.43,1.95,-2.15,-0.66,-1.59,0.66,-2.2,0.97 +C128,3.4,0.04,-1.22,-2.59,-3.12,-0.01,-1.17,-0.21,0.52,1.04,-0.27,-0.8,0.25,-0.83,-3.69,1.71,1.77,-1.97,-0.24,1.49,-1.79,-2.65,-0.38,0.44,-2.02,-0.69,1.1,-1.34,-0.64,-0.47,-0.26,0.15,1.61,2.18,5.09,-2.06,-1.93,1.04,0.28,0.33,-1.34,-2.13,0.25,3.57,0.44,2.11,-2.89,-3.19,3.09,-0.09 +C129,5.46,2.91,-2.56,-3.44,2.96,0.09,1.84,-0.22,1.58,1,0.02,0.67,0.72,-0.57,1.07,1.31,0.42,2.1,0.02,-0.84,-2.44,-0.37,-0.43,-0.49,0.62,-0.16,2.19,1.27,1.2,0.27,-0.41,-1.83,-0.5,-1.57,1.13,-1.1,-1.18,-1.26,1.24,-1.27,0.33,-1.71,0.97,1.23,-0.11,-0.05,-0.83,2.04,2.28,0.09 +C130,-4.54,3.37,-2.34,-3.96,6.21,0.41,2.96,1.34,0.17,-0.46,0.6,2.22,-1.75,-1.25,-1.85,2.53,-0.37,-3.77,1.05,-1.06,2.34,0.72,-2.5,0.98,0.86,1.26,-1.79,0.35,1.18,-1.12,-0.75,-2.26,1.21,-0.36,-0.44,-4,-1.01,-0.93,-1.44,-0.69,-1.23,1.97,-1.89,-0.79,-2.81,0.41,-0.63,1.99,-0.29,1.91 +C131,-9.23,1.37,-0.7,-1.85,2.69,0.48,-0.38,-0.09,-1.12,0.34,1.09,-0.61,0.79,0.24,-0.18,0.41,0.03,-1.83,2.24,-1.34,0.26,1.08,0.77,-0.3,1,-2.16,-3.01,-0.03,3.28,-0.95,-0.05,1.08,-2.19,2.46,-0.45,0.07,2.23,-0.3,2.83,1.32,0.64,-1.63,0.31,0.93,-0.15,-0.23,-1.47,-0.1,1.82,0.99 +C132,5.83,8.26,3.15,3.75,2.62,-0.76,2.75,-2.27,0.83,-0.83,1.35,-0.05,-0.51,-1.52,1.78,1.75,-1.01,2.09,-0.17,2.11,0.11,1.41,-0.34,-1.45,2.01,2.53,-1.36,0.74,-0.99,-1.54,1,-2.01,-0.61,2.72,-0.9,-0.36,-1.3,-2.49,1.9,-0.56,1.7,1.91,1.12,0.28,1.89,3.19,2.61,1.14,0.04,-0.26 +C133,4.11,-12.06,2.31,4.03,8.71,-2.02,0.76,2.55,-0.63,0.94,-1.91,2.02,1.36,2.42,4.76,-2.42,4,1.29,-1.66,-3.09,1.11,-4.5,4.61,4.37,7.29,-2.39,0.85,-3.04,-4.16,-2.63,4.57,-0.37,0.83,4.1,-4.26,-1.84,1.17,-1.75,2.21,3.9,-0.26,0.69,-1.14,2.62,2.74,4.56,-2.53,-1.64,-2.82,-1.2 +C134,4.34,0.32,-0.68,-2.15,-2.54,-1.15,-0.62,0.74,0.38,0.12,-0.81,-0.72,0.18,-1.61,-0.29,0.4,0.6,-1.56,-0.45,3.09,0.15,1.53,-3.11,-0.86,-0.88,-0.52,1.39,-0.58,-0.45,-0.54,1.37,-0.71,1.97,-3.27,0.5,-2.77,1.28,-0.81,1.96,0.12,-0.57,0.37,-0.97,0.06,-0.43,-0.44,1.01,-0.33,-0.8,0.6 +C135,5.24,2.04,-1.7,-2.32,-0.1,-1.43,1.65,1.28,0.52,0.02,2.88,-1.12,0.74,1.78,-1.83,-0.77,-0.62,1.11,1.46,-1.17,3.24,-1.33,2.93,0.17,-0.21,1.04,-2.97,1.71,0.17,-1.64,-0.65,-0.64,1.03,-1.27,-0.46,1.07,1.72,-0.53,0.91,1.82,1.87,-0.62,-0.12,1.4,-2.5,0.68,-0.5,-0.21,0.14,1.88 +C136,4.45,-0.12,-0.52,-0.67,-1.49,-0.09,0.66,1.4,0.72,0.16,-2.38,0.65,-0.08,0.98,-0.61,-0.43,-0.98,-1.34,4.09,-2.24,-1.16,0.18,-0.51,-0.46,3.35,1.16,-1.71,-0.06,0.4,-0.97,0.09,-2.39,1.82,2.45,0.24,0.57,-1.76,-2.86,0.62,-0.83,1.95,0.14,1.79,-0.76,-1.64,-0.18,-0.82,-1.15,-4.02,-0.43 +C137,5.35,0.46,-0.4,-2.36,-1.72,-0.46,-0.29,1.16,0.15,-0.02,-1.93,-1.62,-1.87,1.21,0.41,1.03,-0.55,-2.2,-2.22,-0.17,0.36,-1.62,3.35,-1.2,1.6,1.41,0.78,-0.03,-0.94,1.53,0.26,0.35,1.9,-0.92,-1.23,1.68,0.04,1.76,0.28,1.21,-0.53,-2.34,1.27,0.08,1.83,-0.85,-0.62,0.41,-1.18,0.84 +C138,3.96,-3.81,0.01,-0.26,2.93,0.32,-0.24,-2.73,3.3,-0.21,1.24,-2.16,1.16,-1.66,-2.58,0.58,0.21,-1.25,1.7,1.72,-0.25,1.48,-2.81,-0.4,0.06,0.86,0.57,-0.19,0.06,-0.44,-1.85,-0.07,2.09,-1.82,1.22,1.74,-1.93,2.85,-0.93,0.82,1.74,0.02,-0.3,-2.05,-0.43,-1.9,1.37,-0.14,-1.68,-0.96 +C139,2.42,7.81,4.34,3.82,1.54,-0.59,-1.25,0.24,-0.2,-0.08,-1.11,-1.94,2.82,0.67,1.65,-1.35,-0.01,0.31,-2.36,0.44,-1.18,-1.77,-0.36,2.06,2.73,0.05,-1,-0.52,0.39,0.32,-3.11,0.15,0.03,0.24,0.53,-1.21,-0.51,0.08,-1.84,0.7,0.01,-0.95,0.85,-0.41,-0.56,-2.35,-0.34,2.15,0,-1.58 +C140,-12.08,0.02,0.67,-0.75,0.22,-2.87,4.48,-0.99,0.03,1.82,-1.2,-0.35,-0.22,-0.37,1.99,1.33,-0.04,-1.05,1.04,0.27,-2.94,-1.04,2.26,-0.64,2.65,0.76,-1.66,-0.33,-1.03,2.14,-1.55,2.06,-0.05,0.94,0.3,0.11,-1.89,1.61,1.28,-0.87,-1.34,0.54,0.39,0.88,-0.58,1.53,0.61,-1.07,-1.32,2.29 +C141,4.13,-2.52,-0.76,-1.57,-1.09,-0.35,-1.81,0.3,0.2,1.63,-2.57,1.23,0.27,1.7,-1.41,-0.38,-2.02,1.31,0.4,-1.04,0.69,0.49,2.37,1.04,1.85,0.54,3.27,1.73,-3.89,0.05,0.19,-1.56,0.67,0.65,0.62,0.16,-2.4,0.9,-1.83,0.43,-0.21,0.38,-2.32,-0.47,-1.28,-0.02,-1.98,-0.11,-0.64,-1.07 +C142,4.18,0.32,-1.39,-2.35,-3.66,0.84,-1.97,-0.07,-1.31,2.81,0.82,0.13,-0.04,-0.37,0.25,-1.95,-3.29,1.89,0.66,-0.06,-1.33,1.42,2.36,0.17,1.05,-0.89,0.36,-0.9,3.14,-0.19,-0.43,1.88,-0.68,0.89,1.42,1.52,0.99,-2.59,-1.68,1.83,-0.5,-1.36,-0.69,1.28,-0.28,1.48,0.6,0.09,0.78,0.59 +C143,5.92,1.73,-1.22,-2.48,-0.74,-1.25,1.31,0.48,1.44,1.05,-1.45,-1.68,0.96,1.22,-1.6,-0.68,-0.1,-0.64,-1.15,0.43,0.58,0.15,-1.79,2.59,-2.01,0.65,0.61,0.48,0,-0.38,0.2,-0.32,0.84,0.51,-2.27,0.93,0.47,2.4,-1.89,0.38,1.16,1.39,0.24,0.18,-1.95,0.53,-2.19,-0.2,2.1,0.28 +C144,3.8,7.94,5.36,4.83,1.19,-1.53,-0.48,0.14,-3.12,-0.38,-1.04,-0.47,5.78,-0.45,1,-0.91,2.83,1.55,-0.25,0.24,0.03,1.56,-0.48,2.38,-2.07,-0.31,1.33,-1.91,-3.05,-1.31,1.19,-0.31,1.1,3.25,-2.34,1.36,0.83,1.8,-3.65,3.12,-0.24,-2.31,-1.03,2.22,-0.37,0.86,0.11,-2.74,-1.78,-1.83 +C145,4.95,-0.91,0.67,-0.53,-3.59,-0.42,-2.75,3.18,-1.67,-0.19,-0.48,-0.33,-1.96,4.18,-1.6,0.28,-1.82,2.43,-3.08,-2.51,-1.72,-1.31,-0.51,-0.01,-0.86,-0.31,-1.81,2.82,0.44,-0.97,0.76,-0.28,0.14,-1.41,0.08,0.48,-0.94,2.54,0.24,-1.94,4.61,-1.2,-1.61,-0.82,-2.58,2.08,-3.63,-2.37,-0.52,-0.68 +C146,3.71,-4.02,0.24,-0.26,4.63,-0.47,1.47,0.06,1.06,-0.35,-0.52,1.22,0.06,0.59,2.1,1.67,0.73,-1.44,2.81,0.64,1.44,-1.02,0.59,-0.46,-2.02,-0.64,-1,0.44,1.09,0.27,0.65,2.19,-0.48,-0.6,1.37,0.64,0.98,0.93,-0.58,0.34,0.86,-0.94,0.95,2.28,-0.1,-0.74,1.75,1.07,0.69,-2.48 +C147,3.82,-8.33,0.49,2.63,4.83,-1.19,1.81,2.61,2.09,1.19,1.82,-1.67,-1.4,-1.61,-1.37,0.6,-2.08,1.25,-1.73,0.71,0.38,-0.77,2.68,0.55,-1.08,4.45,2.63,-0.56,0.98,-1.71,4.04,1.29,0.68,-0.84,-4.31,-0.78,-1.11,-1.34,0.3,1.68,2.75,0.44,1.4,0.84,0.9,0.22,0.35,0.3,0.86,-1.37 +C148,2.02,6,4.93,4.44,0.1,0.15,-1,0.56,0.13,2.52,1.04,-0.63,-2.65,0.09,1.82,2.38,3.17,1.29,-1.31,1.65,-0.23,1.06,-1.1,0.6,-2.93,1.76,-1.05,-2.1,3.37,1.16,-1.63,0.27,-1.49,-0.11,1.22,1.3,2.52,-1.03,1.18,-0.46,1.65,-2.06,-0.39,-2.01,-1.63,-0.47,1.04,-1.61,2.4,2.72 +C149,3.43,-5.59,0.72,0.32,1.82,0.81,-1.02,-3.49,0.26,2.31,3.4,-1.01,-1.05,-0.45,-2.94,1.57,-1.4,-2.37,1.15,-1.57,-1.16,-0.47,-0.6,-2.61,-0.21,0.12,-0.27,-0.15,-0.94,-0.77,2.01,2.61,-3.64,-1.17,-0.59,-0.44,-4.41,3.36,-3.99,-1.05,-0.56,0.17,-1.01,0.54,-0.55,1.56,0.15,-3.29,1.9,-1.92 +C150,2.8,-2.33,-1.03,-1.44,3.23,0.62,1.29,-0.74,1.16,-1.21,-0.9,-1.09,-0.71,0.69,0.06,-0.06,0.72,0.8,-0.97,-1.05,-0.37,-0.64,1.83,-2.32,-0.18,-1,-3.09,2.3,-1.23,-0.19,1.65,-2.59,1.97,0.28,0.94,1.2,-0.92,1.15,1.08,-0.41,1.67,1.51,-1.26,-0.82,-1.72,0.89,1.37,1.24,-0.02,-0.54 +C151,-0.59,5.78,8.44,10.06,-1.48,1.71,-0.11,-1.98,-4.93,-0.73,9.13,4.59,-5.89,0.83,0.34,3.15,-0.67,1.04,-0.56,-0.93,-0.06,3.52,1.96,-0.87,-1.06,1.16,-3.9,0.1,-3.04,1.8,-1.45,-1.15,2.48,1.82,-0.62,-0.43,0.22,-3.33,3.85,3.73,0.13,2.1,-1.97,0.79,-3.14,0.29,2.21,-1.51,5.06,-0.29 +C152,5.18,2,-1.36,-2.6,-1.1,-0.46,-0.05,2.23,1.33,1,1.17,-0.21,-0.18,-2.46,3.17,-1.28,0.28,-0.03,1.32,0.67,0.03,-0.81,-0.06,-0.77,-2.17,1.61,-0.81,0.95,1.7,-0.04,-0.59,1.87,1.97,2.98,0.04,1.58,-0.07,-0.49,-1.04,-2.68,1.51,1.66,0.57,0.73,1.14,-0.45,-1.42,1.51,-0.74,-1.89 +C153,-11.83,2.52,-0.99,-1.96,0.61,0.27,-0.53,-0.4,2.69,-0.19,-0.49,0.49,0.75,0.17,-2.09,0.36,0.43,-1.57,3.02,1.45,-0.23,1.2,-0.33,-0.24,-0.33,1.54,-2.68,1.11,2.62,-2.04,-1.82,0.75,1.7,-0.73,2.89,1.16,2.12,-0.91,-1.56,-0.28,-2.32,3.7,0.66,1.27,1.74,-1.31,-2.71,-2.47,0.42,-1.59 +C154,2.98,-10.68,1.76,3.73,7.85,0.33,0.09,6.1,-0.15,0.4,3.25,0.31,-0.07,-6.06,-0.73,-4.83,8.06,-0.13,0.65,-1.84,3.19,-1.91,-1.48,0.14,2.56,0.07,2.65,1.75,3.04,-1.58,-1.78,0.86,-3.06,4.13,0.94,0.51,1.46,-3.5,-3.2,1.53,3.97,-3.52,0.61,1.66,-2.05,2.23,3.64,0.1,0.6,1.29 +C155,4.05,-7.89,1.05,1.15,2.85,1.47,1.46,-2.19,1.54,0.32,-1.6,2.35,1.93,0.66,1.41,-1.62,-3.54,-2.36,0.99,0.46,2.33,-1.18,-0.41,-1.76,0.32,-0.99,-3.21,1.97,2.58,-0.42,-0.7,0.77,2.09,-1.83,0.2,3.97,1.62,-0.95,2.29,1.66,-1.05,3.12,-0.98,-2.33,1.86,-2.56,-2.17,1.13,0.19,0.53 +C156,4.04,0.43,-2.45,-1.55,-2.47,0.84,1.89,2.71,1.38,-1.31,1.23,-0.58,0.95,1.8,3.58,1.68,-0.1,-1.74,-1.24,-0.95,-0.28,-2.16,1.56,-1.96,1.46,1.35,1.06,0.96,-0.55,-3.61,-3.41,1.67,-1.37,-0.61,-1.45,-4.86,-0.67,-1.36,-1.14,0.5,-0.09,-2.76,0.3,4.53,1.73,-0.84,0.04,1.78,0.32,0.5 +C157,3.13,-1.72,-0.43,-2.33,-2.95,0.83,-1.86,-1.11,-1.3,1.43,2.62,1.16,1.79,-2.78,1.58,2.1,0.93,1.29,-0.01,1.68,0.33,-1.64,1.52,0.91,0.11,-1.49,-2.14,0.47,2.08,1.93,-0.16,1.65,-3.29,0.61,0.93,0.7,-0.71,-0.15,-1.66,1.41,1.71,-2.02,-0.56,-0.4,0.22,-0.95,0.47,0.23,-1.87,-0.2 +C158,4.94,0.82,-1.36,-1.13,-1.61,-0.47,0.22,0.57,0.41,0.92,-0.98,-1.14,-0.69,1.26,2.15,-1.13,-0.09,0.23,-2.04,1.03,-0.76,1.95,-2.91,-0.36,0.85,1.15,-1.27,0.14,1.28,-1.41,0.27,0.11,-1.89,3.06,-0.66,-1.93,0.97,-0.48,-0.62,2.08,-0.07,1.37,0.42,-1.55,1.68,-0.67,1.13,-2.14,-0.64,-0.23 +C159,-16.66,-0.29,0.32,-0.98,-0.1,0.81,-2.83,-0.27,-0.53,-3.2,-0.3,0.49,-1.64,2.37,-0.69,1.7,0.49,2.46,0.33,1.11,-1.92,-0.87,-1.51,-3.03,0.36,0.82,-0.03,0.48,1.06,-1.05,1.42,-2.35,-2.24,1.23,1.92,0.18,-2.36,4.69,1.48,-1.92,-2.12,2.83,2.33,-1.11,-1.11,-2.63,-1.34,2.98,-1.6,-1.71 +C160,4.64,0.76,-1.11,-2.09,-2.64,-1.1,-0.27,1.6,0.16,1.07,2.45,1.07,1.98,-0.2,-0.68,1.72,4.25,1.32,-0.22,1.5,1.82,-0.19,2.26,0.81,-0.04,1.66,0.14,1.37,1.35,-2,0.22,0.58,2.15,0.17,-0.64,-0.14,1.84,1.24,-2.27,-0.22,0.37,2.76,0.48,2.28,1.48,0.08,0.93,-1.33,-0.48,-1.54 +C161,5,2.28,-1.81,-3,-0.3,-0.55,0.34,0.48,2.24,-0.9,-0.96,0.81,0.33,1.39,-2.03,-1.7,-2.08,1.39,0.96,-1.43,0.41,2.66,-1.33,0.56,1.15,-0.38,0.79,0.26,1.15,-0.32,-0.34,-0.79,1.45,-0.06,0.27,0.2,0.25,-1.86,-1.06,0.8,0.68,-0.64,1.43,-1.66,1.35,2.18,-0.35,0.5,-1.65,0.18 +C162,4.28,-9.02,1.77,2.75,8.16,-1.4,1.09,4.55,1.13,2.37,1.35,-1.28,0.31,-2.43,0.36,-0.63,1.25,-0.98,-0.58,0.02,-0.53,-0.96,-0.12,-3.35,-1.11,0.28,1.27,0.92,2.33,2.54,1.89,-1.55,0.79,2.62,-1.33,0.27,-0.68,0.97,-1.06,-0.19,0.97,-0.06,-0.19,-0.94,2.11,0.19,3.1,1.97,-0.43,1.45 +C163,3.55,-3.88,1.33,1.62,5.02,-0.85,1.1,-2.78,1.53,-1.89,1.11,-6.37,0.07,-0.59,-1.41,-0.59,1.98,1.23,-1.05,0.26,-1.52,-2.14,0.32,-2.7,1.28,0.81,-2.3,0.68,2.05,-3.72,-2,0.13,-0.67,-1.63,-2.08,0.09,1.94,1.65,4.34,-0.78,0.85,0.01,-0.3,1.07,2.13,-1.56,-1.52,-1.29,0.7,-1.22 +C164,-11.7,-5.1,1.83,1.35,2.86,4.42,-4.75,3.78,-0.48,3.45,-1.53,-1.45,3.83,-0.65,-2.91,-1.29,2.37,1.52,-0.07,-1.09,0.67,-1.69,-5.23,-3.15,-1.87,2.2,0.92,-3.69,0.59,-0.02,-1.61,1.48,1.52,-2.58,-0.15,3.53,2.41,2.8,0.06,0.9,-0.69,0.83,3.31,-2.19,1.85,-1.67,6.25,3.63,0.56,1.67 +C165,2.16,6,5.4,5.18,0.25,-1.01,-0.35,0.14,0.13,0.69,-0.16,1.25,-1.39,0.85,0.97,0.98,2.18,-0.39,0.04,-0.48,2.33,1.57,0.15,-2.4,-2.04,1.3,2.79,-1.4,-1.01,-2.82,1.94,-5.28,-0.37,2.7,-0.89,-2.55,-1.67,0.43,0.68,0.87,-1.86,0.29,-0.02,-0.19,1.48,-0.4,2.45,0.8,-0.25,1.45 +C166,-9.39,-0.05,2.46,-0.3,-0.25,3.05,-4.33,-0.4,5.04,-0.95,0.73,0.29,2.29,-1.49,-1.66,0.91,-1.02,-1.22,0.03,-2.1,-1.33,0.66,1.01,-1.05,2.57,-0.49,-0.24,-1.81,-1.83,-0.17,1.13,-0.02,0.93,-1.66,1.24,-0.65,1.95,1.95,-0.19,1.41,0.8,0.82,0.12,-2.03,-1.09,0.61,0.79,-2.19,1.22,0.58 +C167,3.34,8.1,7.15,7.71,-0.73,-0.58,-0.99,0.84,-2.19,1.68,-2.85,0.02,2.1,-1.26,0.15,-1.62,-0.05,-0.64,1.79,0.47,-0.37,1.64,-1.66,-0.11,2.24,-1.38,-3.79,-1.4,0.89,0.54,-2.05,2.1,-1.08,-3.99,1.41,-2.8,1.42,-1.68,-0.22,-3.73,0.23,1.38,0.68,1.88,0.29,-0.91,-1.08,-0.25,0.66,1.17 +C168,-12.48,1.46,-2.4,-4.63,2.33,5.38,-2.26,0.36,-2.77,1.94,-2.28,-2.5,0.01,0.78,-1.27,-1.43,0.41,-0.03,-1.29,1.4,1.06,-1.03,0.4,0.78,-0.42,0.84,-1.62,2.84,-4.93,-0.3,-1.91,1.86,-1.05,-1.89,3.67,-0.06,-2.17,2.52,2.39,0.44,2.66,-0.2,-2.68,-2.57,-0.23,-0.11,1.11,-0.6,-2.53,1.61 +C169,4.26,-2.41,-0.22,-0.33,1.1,0.64,-0.64,-5.76,0.84,-0.42,-2.48,1,-1.75,-2.86,-0.33,-2.14,0.82,1.82,0.97,0.86,-2.54,1.45,-1.82,-0.19,-0.21,2.4,-0.05,-1.85,-3.04,2.04,-1.79,-3.15,-0.72,-1.07,3.16,-1.24,-1.75,0.85,-2.5,0.12,1.32,1.72,-0.27,-2.55,1.48,-1.04,1.37,0.58,0.3,-1.78 +C170,1.76,5.43,5.39,5.46,0.22,0.93,-1.87,-0.65,1.57,-1.32,1.23,2.35,-2.21,0.9,3.09,1.19,-1.75,-0.66,-0.66,0.58,-1.62,0.92,5.08,0.39,1.02,-2.32,0.85,-1.86,0.45,0.75,-0.71,5.16,-1.65,-1.25,-1.76,0.19,-1.46,-2.5,3.55,-3.56,0.78,2.67,-1.6,-5.15,0.12,-0.46,-3.16,0.05,0.01,-0.4 +C171,4.52,-1.53,-0.44,-0.98,-3.71,0.06,-0.02,-0.04,-0.28,-0.12,1.3,1.49,-0.23,-1.43,-0.24,-1.26,1.16,-0.8,0.75,0.75,1.1,-2.82,-1.48,-0.08,-2.11,-0.36,1.78,-0.33,0.29,1.49,1.55,0.33,0.24,1.21,0.44,0.64,0.61,-1.37,-0.29,2.98,-0.85,0.33,0.48,0.85,-0.77,1.44,1.51,-2.38,-0.17,-0.76 +C172,5.5,-0.88,-0.83,-0.38,0.35,1.4,1.14,-4.56,1.31,2.17,0.43,1.81,-2.41,0.58,-0.92,1.3,1,-0.31,-0.08,2.34,-0.79,0.67,-0.48,-0.36,-2.31,-3.31,-2.31,0.73,-0.01,0.59,1.13,0.47,-0.74,0.26,-0.14,-1.13,-2.83,0.75,2.95,0.54,-2.48,-0.48,1.66,0.56,-1.29,1.37,0.34,-0.33,2.23,0.2 +C173,3.62,-3.25,0.57,-0.13,1.67,0.25,-1.06,-5.43,1.11,-0.09,1.8,-1.7,-1.59,-2.35,3.43,4.94,2.35,1.04,-1.39,1.02,1.67,-3.5,-3.22,5.52,-0.16,0.35,0.45,1.12,0.24,2.82,-0.61,0.67,-1.43,-1.64,1.06,0.72,-3.72,1.05,-1.52,0.72,-0.2,-2.13,-3.51,-2.51,-2.11,0.39,-1.72,0.39,2.87,-4.73 +C174,5.53,0.57,-0.93,-3,-1.2,0.31,-0.36,1.09,0.59,-0.68,0.15,-0.38,1.15,1.31,-0.51,1.37,0.08,0.01,1.93,-0.06,1.65,1.1,1.66,1.58,2.29,-0.19,-0.57,0.72,0.91,0.9,0.13,1.63,0.48,-1.12,-0.93,0.41,0.25,1.46,0.93,-0.67,-0.26,1.89,0.5,-1.39,0.34,-0.63,2.67,-0.63,0.3,-1.61 +C175,5.32,0.59,-1.04,-1.52,-3.21,-0.14,0.95,3.17,0.13,-0.41,2.17,-1.72,0.11,-0.01,-0.47,-0.39,-0.94,-1.32,0.4,-1.43,-0.81,1.64,0.72,-0.79,-2.31,-0.81,-0.69,1.43,0.21,-0.03,-0.86,0.19,1.35,1.54,-1.41,0.19,-0.67,-2.58,2.23,-0.83,0.07,-0.37,-0.84,1.65,0.68,1.61,-1.16,0.57,-0.1,0.1 +C176,5.48,-1.19,-1.61,-1.86,2.56,0.66,0.19,-3.37,0.23,0.54,-2.14,-1.07,-1.08,2.21,1.64,0.97,-0.81,1.13,-3.44,-2.21,-0.09,0.68,1.47,-1.55,1.02,0.09,0.42,-1.82,1.58,2.42,-2.09,0.92,-0.3,-0.43,-1.15,0.15,-0.65,-0.78,0.89,-3.14,2.34,0.66,-3.01,-1.07,0.53,2.29,-0.8,-1.03,-0.4,-2.58 +C177,2.62,0.05,-0.97,-2.36,-1.1,-0.67,-1.28,-2.22,0.49,0.33,1.3,0.71,-1.53,-0.37,0.2,-0.67,-0.2,0.59,0.18,-1.14,0.91,1.39,-1,0.31,0.44,-1.92,-2.04,-0.97,-0.3,-0.71,0.65,0.14,-1.01,1.69,-0.87,-0.1,0.08,1.16,0.26,0.87,-0.99,-0.24,-0.07,-0.88,-2.45,-1.32,1.47,-0.21,-0.93,1.15 +C178,3.93,-0.88,-0.82,-2.47,-3.84,-1.29,-1.59,-0.1,-2.38,1.84,-0.14,0.22,2.15,1.19,-2.52,2.21,-0.05,-0.85,3.48,-0.8,-0.76,-0.78,-0.75,-1.26,0.65,0.13,0.61,2.31,1.66,-0.18,-0.29,0.84,-0.04,1.36,0.16,0.65,0.91,0.93,-0.49,-0.75,-4.07,-0.79,0.64,-0.22,-1.59,-0.53,-0.26,0.69,-5.12,1.47 +C179,-11.11,0.25,-1.5,-2.03,2.04,3.58,-0.86,-0.51,-3.59,2.55,0.97,-0.08,0.02,-0.24,2.06,-1.37,1.3,1.15,1.7,3.3,0.21,0.1,1.29,-2.09,-0.32,2.12,-1.14,-0.39,0.07,-0.29,1.3,0.82,0.44,-0.45,1.56,0.39,-0.09,2.16,0.61,-2.2,-1.62,-1.27,0.26,0.26,-1.28,-0.5,-0.46,0.96,0.16,0.21 +C180,1.64,-1.46,-1.25,-0.52,-2.53,-1.05,-0.36,-1.11,-2.01,-2.95,1.87,3.12,-2.29,-2.04,-0.46,0.85,-1.42,-0.04,1.41,1.18,-4.06,0.06,-0.51,-1.82,2.65,0.96,-0.49,0.23,-0.66,-0.6,3.56,-1.41,-0.08,-2.08,-0.87,-0.82,-0.5,-0.94,0.41,-2.24,-2.66,-0.43,0.31,0.65,3.77,0.24,-1.53,1.02,0.82,2.66 +C181,-10.43,0.75,3.66,1.8,-0.84,2.13,-5.21,0.34,6.25,-1.89,1.82,2.81,2.89,-0.02,-1.42,-0.48,-2,2.72,0.3,-4.19,1.93,3.31,-0.95,0.08,-0.47,0.59,0.02,-0.05,1.35,0.5,2.5,3.94,-0.05,0.59,0.9,-0.27,0.84,-0.62,0.29,2.48,-0.59,-0.34,1.53,-1.66,-1.26,1.63,-0.07,2.59,-1.84,-2.18 +C182,5.99,1.46,-0.9,-0.76,-1.25,0,-0.37,2.95,1.08,1.94,-2.04,-0.99,1.45,1.11,-1.71,-0.85,0.3,0.98,0.22,-2.71,-1.6,-1.94,-0.45,0.58,1.06,-2.1,0.23,-1.75,1.7,-0.04,-0.07,-2.05,-1.97,1.34,0.95,-1.56,-0.83,0.93,-0.36,0.39,0.88,1.07,-2.55,2.71,0.92,1.61,2.71,1.14,0.95,-0.25 +C183,4.59,-6.59,-0.22,0.52,0.72,0.59,-1.5,-6.33,0.02,2.05,-1.8,2.87,1.8,-1.49,-1.85,0.51,-5.36,3.78,-0.21,3.93,2.23,2.89,-0.17,6.02,-4.99,-1.05,-0.82,-0.07,1.93,-2.52,1.99,0.21,1.75,1.51,-1.62,-2.66,2.03,2.92,-0.49,-0.39,-0.02,-1.33,-0.22,0.5,1.77,0.78,-0.1,-2.41,2,-0.86 +C184,4.21,-3.11,-0.89,-0.91,-5.4,0.46,-0.97,0.81,-2.55,0.82,0.17,1.22,-0.07,0.39,3.78,2.69,-1.31,-0.38,0,0.61,2.21,-2.82,-0.89,0.84,-1.66,0.29,1.17,-0.41,-1.54,-1.02,0.3,-0.39,0.07,-0.8,0.15,-1.87,-0.61,0.94,-2.45,2.13,-0.86,-0.12,-0.63,0.2,-0.52,0.24,0.55,-0.02,3.27,0.1 +C185,3.76,6.79,3.65,3.29,2.06,-0.23,0.42,-0.91,-0.81,0.63,-1.27,-1.31,0.79,0.81,2.28,-1.63,-1.14,0.04,-0.49,-0.01,-0.58,-4.61,-0.09,-0.65,3.21,-2.49,1.08,0.08,-1.46,0.2,0.72,-0.39,0.58,-1.06,3.84,-0.18,0.72,-0.2,-1.37,-2.7,-1.6,-1.69,-0.11,0.93,1.04,1.79,0.54,-1.5,-0.02,-0.48 +C186,3.04,7.63,7.23,7.8,2.1,0.06,-0.69,0.74,1.04,-0.87,2.95,1.46,2.25,-0.3,-1.62,-1.45,-0.54,-3.62,0.85,3.98,5.25,-0.57,4.06,-2.6,-2.54,-1.09,-2.28,-2.48,-3.71,-4.45,-2.32,-0.52,-0.38,1.86,2.24,1.54,-2.66,1.78,-2.07,0.13,1.16,-1.98,2.75,-0.04,-3.03,0.12,-0.74,3.5,-2.26,-1.64 +C187,-12.79,-3.52,0.04,3.36,-4.48,-8.15,6.61,-0.48,0.4,2.71,0.52,-1.25,0.47,1.17,-1.03,0.92,-1.29,1.44,-0.48,2.25,-1.32,3.14,-0.08,0.58,2.44,1.14,0.83,1.05,-2.92,2.57,-2.82,2.09,1.4,2.66,-1.06,1.6,-0.19,0.86,-0.58,-1.1,0.73,-2.23,1.17,0.98,4.53,-0.14,0.69,1.14,-1.28,2.09 +C188,2.79,6.77,3.56,2.18,1.69,-0.72,-0.99,0.42,0.65,-0.17,0.43,0.46,4.14,-1.08,-0.83,0.59,0.3,0.99,1.98,-0.59,1.02,-1.63,-3.1,0.7,0.68,-0.81,1.03,-0.64,0.14,0.11,-0.31,-0.93,1.06,-1.02,-0.48,-0.23,-0.52,1.85,-0.33,-3.32,0.41,-0.4,0.81,-0.64,0.17,0.15,0.99,-1.6,1.38,0.49 +C189,5.55,2.62,-2.08,-1.79,0.31,-0.69,0.72,0.85,0.94,0.45,-0.23,-0.8,-2.24,2.9,-0.26,-1.4,1.88,0.91,2.81,-1.28,1.86,-0.89,-2.5,-0.76,-0.39,0.32,2.18,1.89,1.38,0.48,1.49,1.64,0.28,1.77,1.88,-0.85,0.68,-1.28,1.03,0.81,-0.46,-0.41,0.69,-2.07,1.38,-0.46,0.94,0.42,-1.51,1.69 +C190,-12.85,-1.93,1.3,0.21,-3.21,-5.76,2.25,-2.32,-1.52,-1.84,-0.57,1.69,-0.21,-1.09,4.01,2.61,-0.91,-3.61,1.06,-1.17,-0.48,2.26,1.42,1.8,2.81,-2.69,1.1,-1.87,-4.09,-2.27,-2.15,2.01,0.28,0.62,0.88,-0.93,1.19,-2.53,0.39,3.56,0.26,0.62,1.7,0.01,-0.73,-1.42,1.5,0.59,0.03,2.92 +C191,-9.01,2.99,-4.41,-4.25,3.5,2.77,0.92,1.15,-5.46,-1.21,-0.52,0.92,0.09,-0.27,-0.59,-1.53,1.14,2.91,-2.4,2.92,1.37,2.01,0.8,-0.28,0.29,0.64,1.38,-1.43,0.77,-0.35,-0.97,-3,0.23,-1.23,-0.18,-0.16,-3.15,-0.93,-0.2,-3.43,0.63,-0.06,-0.9,-0.91,0.19,0.34,-0.39,2.31,1.12,-0.58 +C192,1.67,-10.19,1.39,3.92,5.41,0.11,-0.8,1.48,-2.42,2.03,0.79,5.29,2.93,2.96,-0.57,4.03,-2.3,-1.97,-2.69,-0.91,1.39,0.44,-1.67,2.9,-0.25,1.69,0.99,1.77,-3.34,-1.24,2.89,-3.3,1.15,-1.76,0.9,-0.84,-4.39,-1.49,-0.59,-2.37,0.31,1.2,-1.73,0.86,-1.47,-3.66,2.27,1.03,-1.43,0.15 +C193,2.2,-10.66,1.43,3.1,4.24,-0.96,-1.92,1.48,-3.37,-1.51,-2.13,9.42,0.89,1.7,1.89,1.59,0.58,-0.85,-0.66,2.98,-0.26,1.62,2.81,1.16,2.16,-5.02,-1.73,2.19,1.66,0.62,-1.16,-0.68,3.66,0.03,1.09,-0.79,-0.78,-0.15,-1.88,2.2,0.55,-1.75,2.05,-1.28,-1.81,2.06,-0.59,1.06,1.77,-1.61 +C194,3.7,-0.15,-2.16,-1.32,-3.33,-0.16,-1.4,-0.96,-1.17,2.25,-0.66,0.48,0.06,-3.08,0.48,0.04,-1.36,-0.35,1.94,-1.16,-2.48,0.45,1.94,-2.36,-1.97,3.9,0.21,-3.04,1.28,-1.46,0.86,-0.04,0.47,-0.1,1.55,-0.4,3.42,-0.52,-1.65,2.58,-0.24,-1.36,-0.32,1.02,-0.21,1.2,0.21,0.09,-1.36,0.14 +C195,-13.9,-0.51,1.49,-0.28,-0.77,1.7,-3.9,0.92,-4.07,-3.45,2.79,3.54,0.15,-1.28,-0.21,-2.14,-1.01,2.84,1.12,-1.18,-4.4,-1.79,-0.66,-0.36,-0.7,1.35,-3.99,-1.55,-1.1,-0.09,1.35,2.21,0.85,0.17,-0.05,0.33,-1.14,-1.03,1.52,-1.41,0.97,0.71,-0.25,-1.46,-0.32,-3.46,-3.14,0.59,5.2,2.08 +C196,6.48,2.01,-2.52,-2.61,1.73,-0.23,1.5,-1.28,1.32,0.86,0.59,-0.7,-0.15,-2.6,1.26,-0.74,0.36,0.12,0.84,-0.45,2.8,-0.41,-1.74,-0.46,0.36,0.97,-0.82,-1.7,-0.98,1.38,0.29,-0.13,-0.69,1.85,1.22,-0.18,0.43,1.67,-0.6,-1.28,0.36,-0.54,-0.87,-3.01,1.41,0.8,-2.3,0.28,-1.04,0.91 +C197,4.35,9.49,5.21,4.61,2.13,-0.78,0.15,0.05,-0.05,1.25,-0.64,0.51,1.33,-0.83,-1.06,0.41,0.49,-1.35,-1.92,1.1,-1.82,-2.16,2.86,-0.05,1.28,1.92,-0.12,0.92,-0.13,-1.64,1.98,0.72,0.63,-0.6,1.72,0.24,1.16,0.04,-0.69,0.89,-0.84,-1.36,-0.28,-1.72,1.5,3.83,1.53,0.74,-2.32,-0.12 +C198,3.45,-0.58,-0.6,-1.78,-1.25,-1.7,-0.68,0,-1.48,-2.32,1.35,1.06,0.42,0.24,1.22,-0.27,-0.18,-0.37,-1.09,-0.53,0.46,-2.19,1.05,0.1,-2.54,-2.15,1.08,2.4,-1.65,-0.48,1.35,0.69,-1.88,-2.19,0.33,0.48,1.51,1.21,-1.17,2.87,0.68,1.53,0.21,-1.07,-0.89,0.12,0.4,-1.15,-2.13,1.99 +C199,2.87,9.09,6.12,6.13,1.32,-0.53,-0.59,1.06,-0.36,-1.42,-1.6,-0.21,-1.91,0.94,1.79,-3.98,-3.09,1.06,1.16,-0.24,-3.82,-1.15,-2.49,1,-2.9,2.07,2.51,-0.79,-2.91,-1.18,-1.3,3.56,-2.13,2.27,2.83,2.16,2.5,-0.28,-1.44,-1.11,0.37,3.26,-0.15,-2.34,-0.51,1.22,-1.34,2.89,-1.42,1.34 +C200,4.36,-4.24,0.51,0.45,0.34,0.66,-0.3,-1.57,0.09,0.87,1.68,-1.57,-1.02,1.76,-0.68,-1.7,-0.22,0.25,1.31,-1.63,0.26,-2.41,0,-0.79,0.28,0.74,-0.58,0.79,0.28,0.88,0.97,0.42,-0.14,-1.1,0.8,-2,-1.22,-0.91,-2.2,1.24,1.09,-1.81,-2.29,1.28,-1.5,-1.79,2.56,0.65,1.45,0.74 +C201,3.09,-11.34,2.07,2.97,6.09,-1.23,0.54,0.35,-1.36,0.74,-1.73,2.78,0.6,3.33,2.26,-0.19,-3.4,1.03,0.73,1.94,4.69,-2.49,2.05,2.09,-1.36,-0.05,1.78,-2.53,0.06,-2.67,2.93,-0.9,1.28,0.42,0.91,-2.34,0.61,3.82,0.14,-2.27,2.77,-0.03,-2.28,0.21,-0.77,1.88,-2.28,-5.9,1.63,-1.93 +C202,-4.3,4.18,-3.29,-4.74,5.19,1.26,2.01,0.14,-0.59,0.18,-0.45,-0.51,-0.06,0.34,-2.08,0.8,-0.63,0.93,-0.11,0.08,0.63,-0.52,-0.89,1.09,0.1,2.93,-0.21,0.5,0.86,-0.32,1.14,-2.08,-1.85,-2.07,-2.69,-2.26,-0.3,1.48,-0.3,-2.13,1.59,-2.54,-1.37,-2.7,-1.21,3.3,-1.9,3.04,-1.09,-1.21 +C203,3.33,-3.77,0.7,0.98,1.14,-0.5,-1.72,-4.47,-0.01,-3.26,-1.11,-4.01,-3.45,0.54,1.45,0.02,-1.34,4.13,0.64,-0.27,-1.04,-1.84,-0.14,-0.38,1.94,-1.81,2.52,1.02,1.64,0.58,-1.93,1.95,0.42,0.62,0.5,-1.19,2.75,0.32,5.67,0.45,-0.21,1.22,3.43,2.56,1.78,-3.22,-0.55,5.05,0.09,-2.23 +C204,4.8,-1.13,0.84,0.3,0.1,-0.21,-0.18,-2.87,2,-2.14,-0.11,-1.45,0.04,1.3,0.27,-2.19,0.11,-1.24,1.29,2.83,-0.61,-0.57,-3.5,-1.95,0.55,1.57,0.14,4.24,0.87,-1.41,-1.95,2.57,0.65,-1.84,-0.41,1.06,-4.56,-3.35,1.41,2.9,-1.06,2.96,-1.33,-0.58,0.38,-1.95,1.44,2.81,1.19,-0.67 +C205,3.36,-11.02,3.01,3.75,7.99,-2.09,1.9,2.51,1.41,2.31,0.61,-2.08,-0.99,-0.45,0.42,1.01,-0.93,-0.87,-0.83,0.87,-1.1,-0.11,1.95,1.58,-2.67,-0.62,0.75,-2.35,1.16,-1.22,0.37,-1.77,-2.55,-2.55,2.58,-1.44,-1.57,1.11,2.56,3.8,-0.83,-0.29,-0.33,-0.02,-0.1,-0.87,2.34,-0.92,-0.74,3.33 +C206,5.22,-0.35,-1.37,-2.65,-0.02,-0.99,-1.08,-1.19,-0.9,-2.11,-1.29,3.41,1.13,-3.95,-1.02,1.55,1.78,2.65,0.95,2.81,2.38,0.72,-3.33,-0.66,0.54,0.28,-0.95,-0.78,3.26,-2.09,-0.05,-1.23,0.61,-0.08,-0.15,1.71,-0.97,1.06,-0.04,0.32,-3.38,-0.34,1,1.55,0.93,-2.33,0.85,-0.15,-1.77,-0.99 +C207,4.13,-6.13,0.85,0.48,-0.8,1.27,-2.24,-5.97,-1.94,0.3,-1.72,3.05,0.02,-1.98,3.09,-2.71,0.56,-0.22,-0.31,-1.73,-2.02,2.41,-1.75,-1.54,0.09,-0.46,-1.96,1.28,3.24,0.49,-0.67,1.45,-0.3,2.57,-1.29,0.39,-0.74,0.98,1.36,0.2,-3.77,2.45,-0.08,0.72,-0.37,1.61,-0.85,2.18,-1.3,-1.59 +C208,-12.23,2.16,-0.65,-2.12,1.2,0.27,0.77,-0.01,-1.06,2.3,0.06,0.59,-0.5,-1.69,1.23,-0.42,-1.62,4.3,1.88,-0.23,-0.03,0.13,2.05,-0.15,-2.01,-1,-1.97,-1.61,-0.82,-0.09,-0.23,-0.22,2,-0.45,1.88,0.32,2.24,-3.68,-0.54,-1.28,0.38,1.02,-1.87,0.18,-0.12,3.56,0.23,-1.47,-0.21,1.07 +C209,3.18,-5.29,0.42,1.62,-3.24,0.04,-2.16,-4.42,-0.72,1.3,-0.79,0.04,4.13,-0.26,0.72,-3.5,-4.47,1.31,0.87,-1.7,1.59,-1.15,1.36,-2.58,-1.41,-0.37,-2.22,-1.67,0.79,-0.13,-0.87,-0.12,0.44,-1.4,-1.65,0.04,2.97,-0.11,-0.47,-0.37,0.15,-1.05,-1.25,0.07,-1.35,1.44,0.94,1.41,0.14,0.92 +C210,4.22,-5.41,-0.29,0.25,-0.42,1.19,0.29,-3.97,1.17,-2.91,0.32,-3.37,-1.02,-0.91,-3.51,-2.07,-3.39,-2,3.03,3.11,2.19,1.6,1.65,-2.08,-1.54,1.93,1.08,2.96,1.9,0.91,-2.66,0.5,0.48,0.46,-0.79,2.76,-0.14,1.71,4.07,3.38,-0.01,-1.75,-3.05,-2.32,1.09,0.39,-3.35,-2.77,-1.49,0.13 +C211,4.72,-2.45,-0.56,-1.11,-1.01,-1.47,0.34,-2,1.6,0.69,-0.76,-2.08,-3.59,-0.17,-1.17,-2.23,-0.02,-2.51,-4.31,-1.75,1.32,-1.68,-1.52,-1.02,-0.62,-0.67,2.19,0.6,-2.18,3.92,-0.42,1.48,0.16,0.23,0.96,-0.64,0.19,-1.51,-2.56,0.6,2.3,1.29,-3.03,-3.16,-2.84,0.26,1.77,2.05,2.61,0.68 +C212,6.1,-0.5,-1.28,-1.39,-3.05,-0.64,-1.78,0.81,-2.67,-1.49,-0.74,-2.71,0.54,0.07,-1.89,1.68,2.72,2.27,-1.41,0.82,0.53,-0.02,-1.05,-2.07,-0.1,-2.76,-0.59,-1.5,-0.15,-2.64,0.52,-0.21,3.97,1.54,-0.39,0.04,-1.2,1.01,-1.06,1.61,-1.96,0.24,-0.17,2.62,-2.15,1.55,1.51,2.14,-0.39,0.15 +C213,-7.63,3.22,-1.33,-2.17,3.64,-0.67,2.5,-0.38,2.44,0.76,3.94,-0.38,0.7,-2,1.83,1.73,-1.17,0.04,-0.26,-0.88,-0.56,-1.73,0.04,-0.64,-0.82,0.44,0.33,0.76,3.13,-0.24,1.42,-1.19,2.21,-2.05,-0.82,0.85,-0.65,-0.34,-2.7,0.45,1.49,4.49,2.11,1.17,0.43,2.03,0.15,1.85,-2.04,-0.82 +C214,-11.62,-3.46,1.23,4.15,-5.27,-10.16,5.62,-1.07,0.97,4.78,-2.11,-1.02,-0.38,-0.52,0.48,-2.83,1.38,0.4,-0.04,1.81,-0.07,2.16,-2.45,-3.4,3.78,0.73,2.15,-0.2,-0.57,0.98,-0.39,-2.24,-3.93,1.03,3.79,0.52,-2.42,1.25,0.72,0.38,2.02,-1.64,-1.01,-1.38,0.38,-0.62,0.43,1.97,2.61,-0.29 +C215,4.29,0.97,-0.47,-2.06,-1.3,0.3,-0.67,1.45,0.96,0.4,-0.12,-2.59,0.75,2.22,-1.46,-0.22,1.27,1.98,-0.11,-0.65,-0.98,-1.26,-0.94,-0.19,2.08,-1.8,0.24,-3.18,0.98,0.97,-2.31,1.83,-1.12,1.79,-0.33,-1.2,-2.35,-0.57,1.74,-1.26,-1.05,-1.62,1.7,-0.57,-2.72,-0.62,-1.34,-0.25,-0.82,0.05 +C216,5.5,-3.53,-0.79,-1.01,-0.71,0.1,-0.1,-4.05,-2.23,-0.71,-2.14,0.37,1.17,0.61,2.9,-0.19,1.32,2.26,-3.68,-1.89,0.15,-1.27,2.13,-0.04,-0.52,-2.5,1.23,-0.77,-0.11,-3.58,-2.12,0.48,-2.21,2.67,1.66,-2.18,-0.57,0.02,2.14,0.66,-0.9,3.87,-0.75,0.84,3.05,-1.47,-0.6,0.57,-1.91,-2.04 +C217,2.01,-15.58,2.06,4.46,4.45,0.21,-2.95,4.12,-1.11,2.55,0.17,3.72,6.46,-1.76,-5.43,-1.58,-0.65,0.75,-2.74,-0.25,-1.02,-2.03,7.89,1.35,-0.8,7.36,-0.31,0.63,2.78,-3.06,2.94,0.05,0.6,1.54,3.43,-9.32,9.68,1.06,-1.18,-0.5,0.42,-0.3,4.99,-3.58,-4.66,-1.88,2.59,-0.74,-0.02,-2.54 +C218,5.09,0.36,-1.54,-1.33,0.94,-1.63,0.86,-2.06,-0.14,-2.73,-2.17,-2.03,-1.65,-0.69,-4.99,2.25,1.82,0.98,-0.14,3.94,-1.28,-2.69,-0.26,2.75,1.39,-0.76,3.27,-2.42,-0.09,1.63,4.84,-0.71,1.82,-0.65,3.25,-1,3.03,-2.57,-1.46,-3.28,-1.38,4.04,0.59,-3.01,-2.89,2.1,0.56,3.86,0.32,-0.73 +C219,3.7,-5.94,0.08,0.28,-0.18,0,-0.79,-5.57,-0.34,0.97,-0.26,0.29,2.15,3.23,0.58,-0.09,-0.3,3.36,3.87,-2.88,0.53,1.23,-4.55,1.47,1.87,1.4,-4.85,-0.26,-2.56,1.26,1.4,0.25,1.49,1.57,-1.07,0.43,-2.57,0.2,-2.32,-2.31,0.84,2.19,-1.16,-0.3,-0.78,2.45,-0.8,-1.54,1.23,-0.37 +C220,3.1,-2.02,0.14,-0.39,-0.79,0.46,-0.6,-4.49,-0.05,2.11,-0.21,-0.14,0.89,-0.56,2.12,0.85,-1.25,2.13,0.71,2.38,-2.28,-1.56,-1.62,-1.11,-0.01,-1.41,-1.07,-0.22,2.05,0.57,-3.29,-1.5,-0.36,0.48,-0.6,0.43,-3.06,-2.8,1.57,4.23,-0.41,0.85,-0.79,0.03,0.43,0.89,2.2,1.29,-0.91,-1.54 +C221,5.13,-2.81,-0.5,-1.2,-0.57,1.05,0.62,-4.78,1.51,2.29,-4.09,2.99,-1.96,-2.8,-1.08,-1.43,-0.69,-1.48,-2.52,1.5,-4.77,-1.33,0.11,0.49,-2.49,-0.33,-1.9,-0.61,-0.63,3.19,0.12,0.54,-2.57,1.34,-0.47,-1.2,2.52,-2.6,1.29,0.18,-1.36,0.47,2.91,2.09,-0.87,2.82,1.44,-3.01,0.84,-2.46 +C222,5.6,3.78,-2.07,-3.06,1.14,-0.3,1.55,0.5,1.1,-0.39,-0.26,-0.49,-0.33,-1.19,-1.29,1.26,-0.07,1.41,2.06,-1.28,0.47,1.34,0.35,-0.86,1.18,-1.37,0.4,-0.05,2.16,0.18,1.96,-1.13,1.33,-2.57,2.12,-0.45,0.26,0.52,1.03,0.83,-1.54,0.17,-1.61,0.18,0.19,-1.68,-0.67,-2.53,-1.23,0.68 +C223,-11.45,1.6,-2.04,-2.41,1.59,4.11,-0.52,-1.68,-2.8,2.69,-1.28,-2.27,-0.87,-0.36,0.95,-0.5,1.64,-0.04,2.85,4.04,-1.43,2.52,0.14,2.71,0.64,1.48,0.14,0.07,-2.08,-1.66,1.53,0.23,0.1,1.98,0.28,-2.05,-0.46,0.77,-0.51,0.94,-1.61,-0.12,0.54,-1.09,-0.23,-0.58,3.11,2.24,-0.97,2.38 +C224,-12.63,0.83,-1.21,-2.81,0.1,0.86,0.06,-1.38,-2.52,-0.8,0.03,-1.93,1.96,-0.53,-2.62,-0.59,-0.51,0.7,1.77,-0.21,1.07,0.33,0.57,2.75,-1.01,-1.12,0.73,-1.07,3.1,-1.46,1,-0.71,0.87,-0.48,-1.07,2.85,-2.61,0.81,-2.11,0.77,-0.68,2.75,1.6,0.03,1.36,1.34,-2.81,-0.26,-1.37,-1.37 +C225,3.65,-0.52,-0.57,-2.12,-2.22,-0.91,-0.67,1.52,-0.29,-0.84,-1.45,-1.56,1.04,0.44,0.95,-1.2,1.9,-1.69,-1.39,0.7,0.19,1.83,-2,-0.41,-0.08,-1.3,-0.31,-1.57,-1.92,0.15,-0.47,-1.33,-0.43,0.46,-0.54,1.39,2.13,1.53,-1.45,1.04,1.45,2.29,-2.27,-2.92,-1.11,-0.55,3.64,-2.61,1.56,-0.27 +C226,1.87,6.35,2.09,4.13,-0.91,0.52,0.88,0.74,-0.66,-0.13,-1.62,1.45,-1.77,-1.49,-0.91,0.12,-1.69,-3.66,2.04,-2.87,-0.52,-0.31,0.55,-0.05,0.71,1.28,3.72,-1.61,0.34,-2.66,-0.2,-0.04,2.19,-3.27,-3.83,1,-2.85,2.44,0.09,0.66,4.51,1.55,0.79,1.14,-0.95,-3.71,0.5,-2.24,-1.75,0.74 +C227,4.38,0.23,-2.07,0.23,-1.43,-0.04,0.05,1.19,0.7,1.45,0.2,-0.99,1.6,0.51,-0.23,3.18,-0.74,-0.69,0.87,-1.55,-0.07,1.17,-0.87,-1.34,1.38,1.67,-1.25,-2.4,-1.51,1.87,1.42,1.64,-0.37,-1.45,-0.2,2.4,-3.4,0.27,-0.49,-1.32,0.21,-0.2,-1.21,1.22,-0.73,-0.63,0.21,0.94,-0.42,-3.24 +C228,5.97,-2.99,-0.13,-0.86,3.15,-0.43,0.04,-5.75,0.74,-1.12,-1.75,1.26,-3.2,-0.18,-2.31,-2.3,-0.55,0.28,-0.4,0.31,0.63,0.07,-1.82,-1.9,-0.27,-1.21,-0.35,-1.07,2.49,0.8,-1.77,1.05,1.26,-0.16,-0.14,-1.66,-0.42,-2.54,-2.34,-0.44,-0.1,-2.32,0.12,-4.31,1.14,-0.78,-0.11,-3.35,1.91,1.71 +C229,3.87,0.57,0.03,-1.28,-3.76,-0.83,-0.69,1.3,0.94,1.04,-0.48,0.6,0.66,0.58,2.42,0.19,0.89,-0.82,-0.4,0.8,-0.85,-1.69,1.67,0.79,1.12,1.03,-1.22,-0.52,-0.59,-0.28,0.99,0.98,0.96,-1.89,-0.89,-1.56,-0.17,0.74,1.14,-1.38,1.74,-2.5,0.83,-0.05,1.5,-0.1,-0.15,0.36,-0.51,2.05 +C230,-7.54,0.74,-0.93,-2.49,-0.06,0.79,-1.62,1.33,-1.75,-0.82,1.12,-1.35,0.93,0.82,3.42,0.54,-1.11,1.34,-2.25,-1.07,-1.41,-1.03,-0.24,0.33,0.76,0,-0.61,-0.3,-1.98,0.78,2.55,-0.92,0.16,-0.73,2.01,1.03,1.54,-1.41,2.09,-0.4,0.06,0.61,1.5,0.83,0.04,-1.28,-0.53,2.16,-0.69,-0.18 +C231,5.02,0.46,-1.25,-1.58,1.13,0.2,0.49,-0.18,0.28,2.13,0.58,1.5,0.08,-1.32,1.88,-0.02,2.75,1.37,0.69,-1.36,-1.94,-0.32,1.89,0.27,-1.89,-1.48,-0.06,-0.61,0.49,0.93,2.55,0.25,-1.48,1.34,1.03,0.61,-1.45,-0.67,0.16,-0.58,-1.28,-1.11,-1.12,1.23,1.31,0.69,0.06,3.29,0.7,0.66 +C232,4.78,2.21,-2.3,-3.54,2.59,-0.97,1.09,0.13,1.96,0.88,1.09,0.1,0.35,-1.02,-0.26,-1.3,1.32,-1.33,-0.36,0.26,-0.68,-0.85,1.39,0.14,-0.96,0.62,0.24,0.52,-0.44,-0.71,-1.87,-2.49,-1.06,2.22,1.62,1.12,0.93,0.75,0.8,1.23,0.52,-0.05,-2,1.09,0.93,-2.1,-0.49,-1.22,0.16,1.39 +C233,4.27,0.82,-0.11,-1.91,-1.31,-0.14,-0.14,1.29,-0.14,-2.37,1.26,-0.7,-0.89,2.14,0,-0.53,0.5,-0.91,-1.23,0.25,-0.75,1.42,-1.42,-1.05,0.28,0.53,-0.34,-1.37,-1.51,-2.12,-0.7,-0.22,-0.61,1.3,1.18,-0.23,-1.85,-1.67,-0.19,0.26,-0.68,4.25,1.22,-0.68,1.91,-0.91,1,-0.38,2.69,-1.34 +C234,4.54,2.26,-1.5,-2.47,1.19,-0.07,2.07,0.79,-0.16,-0.86,-1,2.83,0.5,-1.56,0.29,-2.87,-1.24,-3.01,1.13,3.01,2.97,1.34,0.34,-0.95,-1.44,-0.22,1.99,-0.39,0.9,-0.05,-0.76,0.23,-1.63,0.17,0.38,-1.62,0.21,2.72,-1.65,-1.71,0.38,0.62,1.19,0.47,0.17,-1.37,-0.6,0.77,1.48,0.58 +C235,4.3,0.07,-0.27,-2,-2.7,1.3,0.32,1.52,0.48,-1.22,0.41,0.71,0.32,1.33,-1.39,1.86,-0.97,0.56,1.06,2.05,1.22,2.07,0.88,-0.69,0.16,-0.04,-2.26,0.42,-1,0.21,0.2,0.19,1.49,1.08,-0.42,1.28,2.07,-0.76,-0.15,-1.27,2.32,-0.86,2.11,1.38,0.65,-3.06,-0.2,-1.73,-0.13,1.3 +C236,2.23,-4.43,1.3,0.48,1.7,0.12,-1.63,-5.05,0.24,-1.99,-0.68,0.21,-0.94,-2.06,2.09,1,3.28,-0.51,-0.07,-1.8,1.98,0.77,0.69,2.07,1.75,-0.44,0.82,-1.48,-0.02,-0.41,-1.69,1.13,-1.66,-0.75,1.47,1.6,-3.69,2.86,0.67,-1.59,2.58,1.18,2.47,0.03,0.1,-5.85,-0.65,0.12,2.83,0.93 +C237,4.36,0.44,-2.89,-1.94,-0.54,-0.85,-0.87,0.33,-1.33,-1.07,1.28,-1.38,-0.07,0.09,0.7,0.5,0.86,-2.39,-0.56,0.16,0.92,0.09,-1.32,-0.03,0.57,2.13,3.4,1.94,-0.4,2.84,2.41,-0.91,0.63,-2.16,0.93,0.14,-2.44,0.16,0.85,-1.31,0.48,-4.54,-3.11,0.43,1.26,-3.03,-0.8,-1.42,-0.51,-0.09 +C238,4,0.01,-1.83,-1.16,0.36,-1.17,0.96,-1.52,1.19,-0.43,-0.58,-1.7,1.35,-0.21,-0.91,-0.92,1.16,-0.55,2.65,-3.26,3.04,-0.44,-1.87,-0.37,-3.56,0.02,-0.78,1.05,-0.49,1.85,1.06,2.35,0.88,-0.8,2.03,0.42,0.27,0.67,-2.04,-0.31,-3.39,-1.31,1.29,-0.46,0.37,1.61,-1.48,3.13,0.8,-1.25 +C239,3.86,-2.48,-0.81,-1.93,-3.55,-0.33,-0.54,2.21,-1.87,0.47,0.9,-2.34,-0.62,0.99,-0.95,-2.01,-0.28,-0.02,-0.6,-0.57,-0.65,0.81,-0.22,-2.53,-0.97,-0.27,1.34,-0.9,3.05,-1.77,1.76,0.8,1.96,-0.9,0.3,-0.93,1.24,1.36,-0.75,2.76,-3.35,0.71,-4.77,-2.24,0.25,0.24,1.15,-1.64,-0.14,0.58 +C240,3.11,8.15,4.67,4.28,2.94,-0.99,1.4,-0.06,0.07,-0.09,1.69,0.21,-4.08,0.85,2.42,0.08,-1.12,-3.54,-1.6,-0.27,-0.01,-0.44,-0.38,0.11,0.45,-1.52,0.13,-3.37,0.14,0.31,-2.79,1.46,-0.44,0.45,0.87,2.05,-0.66,-1.3,-0.92,-0.23,0.33,1.52,1.2,-1.24,-1.78,0.77,-2.95,1.72,-1.35,0.87 +C241,-13.75,-2.06,1.69,0.36,-2.22,-5.02,2.08,-0.34,-1.7,-0.58,-0.72,0.6,2.17,1.05,-0.09,-1.73,0.69,2.32,-1.47,2.15,2.85,-0.36,-0.71,-0.65,1.04,-1.47,0.38,-0.44,-1.82,-3.13,-0.06,1.75,-2.22,-1.86,-1.49,0.3,0.42,-1.28,0.83,0.86,-2.16,1.22,0.78,-0.42,-0.87,0.48,-3.19,0.03,2.26,-1.48 +C242,4.38,-0.51,-1.57,-2.8,-0.82,0.07,-0.05,3.69,1.87,-1.22,-0.44,0.49,-1.54,1.4,-1.62,-0.68,-0.93,-0.07,1.18,-0.38,-1.43,3.72,-2.42,-6.22,1.16,-0.48,0.87,2.98,0.02,0.41,-2.61,-3.18,-1.12,0.28,0.76,1.83,-1.61,-0.31,1.05,1.75,0.42,-1.61,-1.42,-1.33,2.83,0.06,-1.65,0.19,0.91,-0.33 +C243,-9.03,4.42,-2.14,-4.6,4.74,4.33,0.51,1.29,-3.11,0.74,-1.23,-0.85,-2.14,-2.08,-0.83,1.03,0.85,-0.58,-1.01,-1.77,1.66,3.08,-2.93,0.31,-2.7,-0.94,-1.87,-3.12,-0.58,-5.02,-1.76,-1.39,-0.79,1.63,0.06,-1.28,-1.62,2.66,0.51,2.41,-1.53,-3.01,-3.75,-1.11,-1.21,0.53,0.41,2.04,-2.35,3.95 +C244,3.67,0.46,-1.46,-1.96,-2.49,0.53,-1.71,1.34,-0.35,1.13,0.47,1.18,-0.38,-0.73,-2.23,0.43,-0.01,-0.9,1.29,-1.67,2.74,-0.46,1.36,2.19,2.22,-0.53,0.78,-0.49,-1.28,-1.35,1.37,1.82,-0.34,-1.18,-0.82,-0.56,-1.73,0.03,1.07,-1.89,-0.87,-1.01,-0.92,-0.86,0.5,1.21,1.93,1.57,-0.48,1.08 +C245,1.74,-4.26,1.26,0.46,-5.94,-2.57,-3.65,0.43,-2.7,-6.5,7.88,-2.29,-2.44,2.23,1.79,3.55,-1.08,-0.75,-6.12,2.22,2.71,-1.03,-1.95,-1.71,2.17,-0.54,0.35,3.31,-4.27,1.64,-0.04,2.89,-0.35,-4.26,1.1,-1.57,0.93,5.79,-1.71,-1.8,-2.03,4.83,-0.78,0.25,0.77,1.68,0.39,0.11,-1.57,-0.32 +C246,5.53,2.58,-1.62,-3.91,-0.77,-0.54,0.69,-0.25,-0.12,-0.72,-1.42,-0.3,-2.84,-1.52,0.08,-0.86,-0.24,-0.06,-1.68,0.81,-3,2.56,-1.53,0.64,1.15,0.92,0.53,0.46,1.91,-1.08,-1.21,-0.37,-0.97,0.47,0.39,0.12,-1.2,0.83,0.87,-0.25,2.2,-0.17,0.47,1.22,1.66,2.4,-1.98,0.59,-1.49,0.17 +C247,3.39,-6.79,0.79,0.53,1.45,0.6,-1.25,-2.44,1.33,0.36,1.02,-5.54,2.02,-0.12,-2.84,-1.62,-0.19,2.49,-0.1,1.22,4.48,2.31,1.68,-2.59,-1.99,0.07,-4.1,-1.68,-1.12,0.36,0.74,1.14,-0.41,-2.27,0.25,4.16,0.45,0.06,-2.22,-2.21,-1.68,1.28,0.97,3.77,1.31,-0.26,0.4,-1.03,-3.97,-1.64 +C248,-13.15,-2.83,-2.97,6.19,-5.14,-10.96,6.62,-0.47,1.61,1.89,0.74,-0.96,-2.49,-1.6,-0.13,-1.51,0.45,3.62,-4.02,0.27,-0.73,1.49,-1.21,0.88,6.25,-1.24,-0.77,-1.31,-2.13,-3.75,0.37,-0.03,-0.17,-1.97,0.35,1.1,0.25,2.09,-0.94,-0.21,-2.55,-0.1,2.3,-1.51,-2.81,-1.22,1.24,-0.42,-0.51,1.8 +C249,3.98,-0.73,-1.17,-1.68,-4.81,-0.21,-1.55,1.54,-1.21,-0.66,-0.29,-0.67,-0.74,-0.84,-2.33,-2.33,-0.14,3.47,-2.82,-2.16,-0.66,-3.5,-0.13,0.03,0.67,-1.19,-0.78,-2.85,-2.93,-0.67,1.34,-2.92,0.5,-0.92,-0.86,-1.16,-1.23,-1.51,0.1,0.49,1.55,1.33,-2.83,-1.25,1.71,-0.03,-1.51,-1.71,1.84,-0.16 +C250,3.36,7.97,5.25,4.34,0.67,-0.66,0.64,-0.61,-0.8,-0.82,-0.53,-0.54,-0.71,0.51,-1.62,1.24,-0.38,-0.17,-2.42,0.43,0.06,-1.5,0.02,0.58,-2.72,-0.86,-0.35,1.02,0.75,-1.6,0.06,-1.07,-0.25,-1.01,-0.07,-1.58,-2.12,1.34,-0.55,1.35,-1.55,-1.48,2.36,-0.32,-1.01,0.45,-0.74,-0.42,0.24,-1.07 +C251,-8.08,2.55,-2.2,-2.81,3.21,0.63,1.8,0.39,1.27,-0.39,1.71,0.07,-0.76,0.36,-0.54,-3.61,-2.22,-1.88,0.75,0.84,-3.19,-1.91,0.49,-0.99,-0.08,-1.51,-1.44,0.07,1.76,-1.53,1.81,-0.21,-2.6,-1.16,-1.63,-1.53,-0.34,1.16,-0.31,-2.26,1.01,-0.17,0.25,0.6,-2.05,0.06,0.41,-0.32,1.61,-1.66 +C252,6.46,4.76,-1.92,-2.8,2.39,-0.75,3.77,1.57,2.1,-0.69,1.13,0.7,-0.16,-0.39,1.01,0.77,0.07,-0.22,-0.12,-0.74,-1.02,0.08,1.28,-0.58,1.76,-2,-0.04,-0.84,-0.42,-1.53,0.8,-1.3,0.07,1.24,0.73,-0.27,-0.43,-1.91,0.82,1.68,1.27,0.1,1.45,0.27,-0.57,0.25,0.71,-1.09,-0.91,0.53 +C253,-0.81,5.59,-40.53,29.29,-1.39,-0.26,0.65,1.66,-1.55,-1.08,-0.97,-2.44,-0.55,-1.51,0.54,3.26,-1.96,-0.98,1.67,-2.61,4.33,-1.35,0.46,2.36,1.38,0.57,0.76,-1.71,5,3.21,0.37,-1.67,-0.82,0.1,1.1,-1.97,-1.62,-1.36,-1.6,-3.06,-0.36,1.94,1.14,-2.25,-1.31,-2.46,-0.34,0.8,-0.87,0.92 +C254,-13.84,-1.51,0.1,0.11,-0.25,2.45,-3.74,0.88,-2.14,0.86,-2.04,-2.61,0.39,-0.9,-1.8,-3.04,0.66,0.23,4.5,0.2,0.63,0.57,-2.93,1.79,-1.38,-2.24,-5.26,-1.39,2.38,-0.77,3.26,-0.65,6.04,-3.1,1.81,-2.98,0.33,-2.45,0.07,-0.37,-1.05,-0.79,-2.55,2.77,-2.47,1.21,0.17,1.18,3.67,1.55 +C255,2.73,0.56,-0.8,-2.69,-2.58,0.32,-0.74,0.43,-0.53,2.67,0.57,0.48,0.63,0.61,3.28,-0.97,1.36,-1.27,1.78,-0.93,1.77,0.78,0.37,2.53,-1.74,2.85,1.65,1.78,-2.99,0.43,1.01,-2.84,-0.33,1.1,-0.07,1.69,2.15,0.45,-1.12,-0.36,0.84,-0.15,0.18,-0.99,1.72,0.31,1.55,-1.76,-0.3,-1.79 +C256,-10.19,-1.59,0.16,-2.35,-1.15,1.31,-2.97,0.69,-3.37,-2.67,-0.24,0.84,-3.27,1.44,1.46,-3.22,-1.36,1.01,-3.61,0.25,-0.33,-1.94,0.22,-1.29,1.17,-1.44,1.57,-2.21,-0.5,-1.05,-2.63,-0.03,-4.03,-0.31,0.12,-0.98,1.26,0.36,-1.14,1.37,-1.28,1.35,0.06,1.4,0.69,0.07,2.13,3.16,-1.44,2.81 +C257,5.62,-0.08,-1.34,-2.86,-4.1,0.93,-0.14,1.11,0.34,-1.73,-1.35,-0.78,-0.1,0.65,3.53,2.34,-2.02,-1.17,0.92,2.13,-0.6,0.71,1.18,0.05,0.49,-2.39,1.21,1.96,-1.55,0.35,0.91,-2.41,-2.55,-4.43,-0.07,-2.98,1.02,-2.37,-0.24,3.82,-2.04,-1.38,0.2,-1.71,-1,0.44,-0.11,-0.37,-1.73,-0.74 +C258,4.42,8.7,4.18,3.95,2.52,0.23,1.31,-0.33,0.07,-0.85,0.99,0.96,2.67,-2.74,1.22,-0.36,1.73,-1.54,-0.4,-1.79,0.18,1.01,-0.48,-0.18,0.88,-0.83,0.98,-0.09,-0.34,0.03,-1.84,0.48,0.01,-1.42,0.58,-0.47,-1.16,2.73,-0.91,1.35,0.9,0.2,2.16,-1,0.44,0.99,1.2,0.45,1.46,0.04 +C259,2.78,-0.29,-1.12,-0.78,0.08,0.66,-1.19,2.82,0.14,-1.99,2.48,2.69,-1.3,-0.28,-0.33,-1.71,1.43,1.33,-0.42,2.85,-0.66,2.21,-0.53,-0.95,0.79,-0.73,-3.39,-3.44,-0.39,0.78,-0.27,-1.06,0.56,-0.98,0.43,-0.82,0.03,0.73,0.27,0.47,-1.86,-1.72,-0.53,2.6,-1.39,-0.15,0.72,-2.03,-0.27,0.68 +C260,-1.53,-2.88,4.34,7.28,-4.15,3.74,-7.03,3.25,4.06,1.54,0.3,3.06,-13.66,-1.17,-0.83,-4.69,-0.26,-1.43,2.38,3.86,-3.16,2,0.26,8.46,-0.04,-4.44,-2.01,-0.07,0.32,-2.41,-0.14,-6.3,0.72,-0.5,1.9,4.3,-0.22,1.57,-1.69,-4.53,1.7,-0.87,5.89,-1.66,-1.56,-1.03,-5.11,0.85,-6.03,-4.9 +C261,3.51,-2.42,-1.17,-2.2,-2.06,-1.87,-1.31,-1.36,-2.66,-5.88,3.66,2.45,0.31,-3.08,-1.29,-2.36,1.48,0.74,0.8,2.53,2.91,0.96,-0.1,0.37,-0.92,-0.81,1.02,1.27,-2.36,-0.76,0.61,-0.95,0.69,1.65,-0.11,-2.12,1.98,2.06,-0.7,0.07,-1.21,2.09,-3.17,-0.35,1.33,0.76,-0.24,2.75,-0.24,0.96 +C262,4.47,5.94,2.3,2.24,2.82,0.3,2.3,0.33,1.68,0.66,-0.37,-1.55,0.36,0.33,-1.03,0.72,-0.51,0.17,4.14,-0.6,-0.19,-0.51,-0.67,-1.83,2.74,-1.42,0.33,-1.22,0.14,-1.01,-0.4,-1.3,2.03,1.38,0.05,0.7,-2.1,0.83,1.81,-0.94,2,-1.45,1.07,0.36,-1.24,-0.75,-0.2,-2,-1.96,0.86 +C263,-10.13,-0.01,1.52,-0.53,0.2,0.22,-0.41,0.33,-0.42,-1.1,0.33,-0.09,0.56,-0.37,-2.67,1.73,-0.92,-0.6,3.1,-1.61,-0.92,-0.75,-0.76,-1.4,-0.15,-0.54,-0.65,-1.13,0.57,-0.68,0.02,2.62,-1.43,-0.17,-0.72,1.56,2.44,-3.78,0.77,-0.49,0.87,0.54,-1.6,-0.14,-0.24,2.47,-2.37,1.38,-2.71,0.06 +C264,-7.31,3.15,-0.7,-2.76,4,-2.87,4.78,-0.28,0.9,-0.86,1.06,0.77,-0.24,-1.17,1.4,1.15,0.92,-1.91,-0.21,-0.49,0.61,0.4,3.48,0.88,-0.81,1.23,0.6,2.03,-1.39,-0.83,-1.36,-0.84,-0.44,-0.55,-0.69,0.57,2.03,-0.17,-1.58,2.46,-1.51,-1.21,-0.65,-0.68,-0.14,-2.01,2.17,0.64,-2.5,-1.01 +C265,3.95,-1.39,-1.05,-1.62,-2.17,-0.31,0.54,2.11,-0.58,-0.05,1.28,-0.38,-1.07,1.77,-0.03,3.36,-3,-0.91,2.52,0.74,-0.17,0.4,-4.28,0.07,0.98,-0.18,-2.77,-0.16,-1.04,1.09,-0.41,-1.57,0.58,-2.59,0.52,2.43,-1.46,0.62,-2.28,4.01,-0.25,0.1,-4.49,-1.4,-0.56,2.68,1.29,-0.23,0.18,2.39 +C266,1.09,6.39,5.64,5.9,0.51,-0.32,-2.21,-2.17,-0.98,2.64,1.25,-0.29,0.76,-1.35,-1.34,-0.42,0.51,1.8,3.63,-0.16,-0.33,2.32,-0.66,-1.56,-1.11,1.61,0.72,2.37,0.42,1.18,0.83,0.12,-2.69,-2.47,-1.72,-2.97,1.26,2.32,0.45,0.12,-2.22,0.96,2.73,1.89,-0.34,-2.93,-2.31,2.76,4.06,-2.49 +C267,3.14,7.48,4.08,2.98,3.7,-0.75,2.84,0.99,-0.2,0.42,0.5,1.03,1.84,0.16,2.51,0.9,-0.79,-0.64,-0.61,2.97,-3.1,-1.95,0.13,2.6,-2.53,4.65,-0.49,2.44,1.48,-2.44,0.5,-3.27,1.66,1.35,-1.43,-0.16,1.48,-0.56,2.06,-2.48,1.06,-0.74,-0.96,0.55,0.45,-1.9,3.09,-0.53,2.91,-0.4 +C268,-11.39,-2.38,1.82,1.47,-3.43,-7.13,4.4,-1.52,1.45,-1.41,-0.26,-0.13,-2.82,-1.13,0.16,-1.45,-0.18,-0.59,-1.61,0.8,-2.03,-1.59,-2.03,-1.62,-0.08,-0.29,0.26,1.28,-1.18,-0.13,-0.59,-0.88,-1.47,-0.44,-0.89,0.82,0.99,0.48,-0.07,-2.82,0.42,-2.1,0.32,-0.39,-3.66,-0.39,-0.22,-1.33,0.4,0.45 +C269,3.56,0.09,-1.22,-1.88,-2.07,-0.67,-1.07,-0.86,-0.4,0.84,2.46,-0.24,-0.49,1.48,1.77,-1.13,-1.56,0.73,3.54,-2.09,2.15,-0.48,0.32,-2.43,-0.34,0.7,1.42,-1.31,0.25,1.16,-0.12,2.87,2.75,-2.12,-0.39,-0.35,-1.16,-1.95,1.92,0.24,1.39,0.94,1.18,-0.81,0.77,-1.81,1.74,-0.22,-1,2.24 +C270,4.67,1.43,-1.22,-0.26,-1.86,1.03,0.02,0.58,-0.18,1.52,-1.66,0.26,-1.17,-1.61,0.69,1.69,-0.96,-2.11,2.38,-1.15,0.71,0.23,2.71,-1.74,1.02,-4.21,-1.19,-2.73,-2.04,2.79,3.63,-0.46,0.67,0.82,1.3,-0.83,-1.93,0.06,1.69,-0.85,1.36,0.97,0.87,0.82,0.78,1.84,2.68,-1.15,-0.91,2.35 +C271,4.72,1.93,-1.57,-3.19,1.32,-0.38,0.21,-0.52,0.31,-0.54,0.36,2.64,0.47,-0.62,2.43,1.05,-1.45,2.77,1.94,-1.11,0.02,-0.51,-1.35,0.08,0.89,-0.04,1.91,0.35,-0.77,-1.18,0.37,2.1,-2.07,1.07,-0.31,-1.51,0.09,1.82,-0.24,1.34,0.69,-0.32,3.02,2.07,-0.36,0.7,-0.01,-0.47,0.39,0.14 +C272,6.13,-1.63,-1.79,-1.12,1.56,0.24,-1.43,-4.68,-0.91,-1.02,-4.74,-1.21,-2.09,-0.23,-0.92,1.95,-2.24,-1.98,-2.22,3.79,-1.92,2.47,-0.67,0.96,-1.17,2.52,-0.61,-1.37,1.51,0.3,0.25,-2.15,-2.42,3.11,-2.99,-1.82,0.78,-1.18,0.83,2.53,-0.75,0.15,-0.8,-0.76,1.67,-1.57,-0.05,2.68,0.94,-1.15 +C273,-9.32,2.49,-18.21,13.43,3.44,1.2,-0.2,-0.15,3.01,3.3,1.79,3.97,-1.1,1.9,-1.19,-1.1,-4.27,-2.57,-2.35,0.32,-3.72,1.02,0.09,0.43,-1.55,-0.31,3.12,1.1,-1.61,2.43,-0.2,3.08,3.96,1.24,2.74,3.66,-1.11,0.4,1.98,1.08,0.39,0.21,0.02,-0.45,1.58,-1.53,-1.33,-0.55,3.35,1.16 +C274,2.16,-13,0.88,3.98,9.5,-2.49,-0.02,4.99,0.83,2.37,-1.44,-2.75,-0.93,-1.15,-0.29,0.95,1.02,2.35,-3.11,-1.92,1.45,-1.95,-4.55,0.05,-3.01,-0.87,2.29,-1.96,0.54,-2.72,0.59,-2.39,0.69,-1.58,5.45,1.99,1.03,-0.91,-0.77,-0.96,-2.28,0.75,-2.34,0.7,-1.4,-0.39,-2.46,0.69,0.38,3.49 +C275,-4.48,2.45,-5.51,1.42,3.01,-2.31,5.83,0.78,1.8,0.72,3.29,2.08,1.2,-2.67,1.9,0.15,-2.48,-0.95,0.28,-1.45,0.89,0.41,-1.36,-2.15,-1.61,0.41,0.41,0.74,3.01,-0.21,-1.45,1.15,1.29,-1.69,-1.15,-2.5,-0.08,1.32,0.53,0.79,2.49,-0.2,-0.01,1.63,-1.07,0.65,-0.56,0.3,-0.08,-0.71 +C276,-14.42,-1.98,0.72,-1.08,0.72,1.5,-1.75,0.04,-1.15,-1.01,-1.01,0.58,-0.95,-0.07,1.21,-3.49,1.3,-0.35,0.8,1.28,-0.63,0.56,-3.63,-1.66,-2.19,2.05,-0.27,-1.67,-1.99,-2.11,1.54,-1.1,2.21,-1.46,1.58,-0.12,-1.5,-0.2,-3.46,-1.13,1.37,-0.26,-0.69,1.76,-1.18,0.65,-0.15,-3.08,0.38,-0.41 +C277,-14.37,-0.24,1.4,-0.35,-1.63,1.15,-1.45,0.41,1.81,-0.89,0.4,-1.72,1.48,0.87,0.21,-0.25,-0.05,0.88,0.36,0.69,2.79,-2.68,-0.19,0.96,-0.42,0.63,1.65,1.94,0.21,1.51,-0.8,1.32,0.95,0.97,-3.15,-0.64,1.36,-0.32,-1.71,-0.59,0.11,-1.48,-0.34,-2.06,0.44,2.45,0.64,0.32,1.39,2.63 +C278,-11.88,-0.67,1.83,1.45,-2.06,-0.39,0.24,1.82,3.37,1.55,1.78,1.42,2.77,0.99,0.05,2.13,1.33,-0.97,-2.66,-1.59,0.2,0.07,-0.12,0.63,-1.83,2.62,0.86,-1.12,-1.21,1.1,-0.84,-0.08,0.42,2.43,-2.01,1.17,0.77,-1.81,0.38,0.25,0.32,-0.53,0.56,0.63,-0.99,0.01,-1.23,0.31,-3.04,-0.34 +C279,2.89,-10.18,1.81,2.59,3.36,-0.95,-1.94,0.81,-0.72,0.41,1.12,-1.88,1.32,3.53,4.93,-0.37,-3.23,-0.27,1.13,-5.17,0.53,2.58,-1.38,1.1,-0.84,-2.23,-3.81,-3.91,2.04,-1.48,-2.08,3.41,-0.38,1,2.24,-0.62,-0.16,3.08,3.5,-1.1,1.6,2.57,1.34,3.85,-4.78,0.22,-2.21,-2.05,-0.32,4.49 +C280,-15.56,-1.12,-53.64,50.38,-11.65,-6.51,-3.91,8.34,-6.49,-18.55,-19.84,-13.02,-10,-21.07,1.68,6.79,-7.86,3.76,7.96,-4.5,5,1.9,2.41,0.2,-0.24,2.97,1.61,2.42,-2.24,-2.58,5.06,2.15,2.7,0.53,-6.41,3.59,-2.3,-1.19,2.57,-1.7,1.69,2.03,-0.96,0.81,-2.71,1.05,5.89,-5.82,4.73,0.75 +C281,5.49,3.53,-2.29,-3.49,3.34,-0.3,1.44,1.96,1.4,-1.53,1.24,1.13,-1.16,0.58,2.69,1.4,-0.18,0.57,-1.42,0.49,1.79,-0.82,0.45,-0.8,-1.01,-0.03,-2.62,-2.29,1.44,-1.03,-0.93,-0.62,1.02,-0.32,-0.65,0.55,-0.6,-0.81,-0.58,0.39,0.5,0.37,-0.79,0.95,-0.9,0.19,0.68,-0.33,0.34,0.28 +C282,-1.28,4.02,9.4,9.32,-4.47,1.17,-4.35,-1.42,-2.36,6.04,3.7,0.73,-4.59,0.26,-0.26,1.39,1.96,0.95,1.01,-3.14,1.88,3.83,1.35,-1.79,-0.7,-1.15,1.58,1.77,0.87,-0.12,0.27,0.11,-0.09,-0.38,0.68,-3.28,-1.82,-1.46,2.38,-2.48,0.05,2.78,0.42,1.95,1.06,-1.34,1.7,-0.39,1.83,0.49 +C283,-12.84,-1.31,3.8,2.13,-2.73,-2.27,0.07,-0.87,1.03,-0.75,-0.55,-1.51,0.75,3.59,-1.76,2.54,1.31,-2.36,-0.37,-2.28,-1.75,-0.26,1.99,-0.09,2.71,1.31,0.11,1.52,0.2,1.36,-0.31,-1.95,1.14,1.63,2.97,-1.03,-0.07,1.12,0.24,-1.58,-0.96,-0.42,1.81,-1.36,1.07,-0.32,-1.5,0.26,2.03,0.57 +C284,4.82,0.85,-1.63,-2.79,1.77,0.46,1.03,-1.91,1.01,-0.41,-2.19,0.86,-1.27,-0.66,0.93,0.19,0.48,0.42,-0.17,-0.88,-1.46,-0.86,-1.6,-1.42,0.6,0.89,0.76,-0.67,1.05,-1.12,-0.24,1.66,0.42,0.77,-0.11,0.8,1.17,-0.62,1.61,-0.91,-0.52,-0.91,-0.57,1.17,-2.03,-0.89,-0.26,-1.26,-1.73,0.4 +C285,1.36,6.04,3.92,4.15,0.8,0.05,-0.92,-1.17,-1.45,1.5,0.2,1.67,-1.14,-0.78,-0.97,-0.7,2.04,0.42,0.44,0.09,-0.31,-1.2,-0.86,-0.73,-0.32,-0.74,-0.12,-0.1,-0.68,1.77,2.53,-1.36,1.75,1.55,-2.13,0.65,0.6,1.03,-1.43,0.77,-0.65,-0.7,0.47,1.03,0.01,-3.03,0.86,-0.72,0.81,0.02 +C286,5.6,1.79,-1.97,-2.34,-0.21,0.41,0.83,2.1,0.47,-0.85,-0.6,1.02,0.69,-1.12,-1.85,-0.68,-0.09,-1.83,0.03,-2,-2.62,-0.84,1.65,-0.53,1.38,1.3,-1.51,-2.52,0.19,-3.09,0.17,-1.05,1.08,-0.98,-0.93,1.91,-0.54,0.02,1.41,-1.29,0.98,0.54,-1.53,0.1,-0.13,2.55,-0.1,0.66,-1.05,2.04 +C287,-10.46,-1.46,5.93,4.91,-5.22,2.68,-7.93,-1.09,9.19,-0.94,3.08,1.92,2.4,-0.54,1.81,-2.45,-1.38,2.65,-1.74,1.22,1.68,-0.78,-1.62,-0.07,2.57,0.69,-3.06,-1.09,0.58,1.34,-0.57,-3.83,0.78,-1.57,-0.54,-0.07,-0.51,-1.82,-0.94,1.04,-0.68,0.88,-1.74,-2.21,0.66,0.57,0.63,0.66,-1.42,0.09 +C288,5.29,0.68,-1.8,-2.49,-3.03,-0.21,-1.18,2.53,-1.09,-0.47,-2.61,1.63,0.25,-0.13,-1.67,-1.24,-1.97,1.1,0.65,-1.78,0.29,-0.21,2.09,-0.53,0.05,-1.82,0.62,0.45,-2.42,0.28,0.1,-1.98,-0.27,-0.84,1.19,1.4,0.18,-0.64,1.37,0.82,-0.22,-0.9,-1.87,-0.62,0.72,0.21,-2.04,-1.79,2.2,-3.69 +C289,3.75,-2.61,-0.3,-0.47,-2.64,-0.37,-1.8,-1.23,0.12,-1.98,-0.68,1.95,0.12,-3.38,1.9,0.14,0.18,-0.62,-0.58,1.54,0.54,2.26,0.87,-0.15,1.21,1.37,-0.29,1.97,2.16,0.58,-1.46,-1.27,1.38,1.91,0.04,-0.57,1.36,1.85,1.31,0.42,0.67,-0.43,0.47,0.29,-1.39,1.06,-0.28,1.31,-2.41,0.21 +C290,3.11,10.35,5.96,6.6,3.15,-0.09,0.58,-0.55,0.05,0.83,1.36,-0.58,-1.44,-2.43,1.68,-0.68,-2.93,-0.71,-0.15,0.39,2.44,-1.02,0.3,1.13,1.51,0.85,-2.41,-2.31,1.03,-2.98,-1.36,1.11,-0.05,-1.43,-0.34,-0.4,2.12,-1.86,0.67,0.3,0.27,0.77,-0.56,-3.96,-2.62,1.57,-0.18,0.19,0.79,-1.25 +C291,3.22,2.73,4.52,3.49,-2.33,-0.86,-3.15,0.17,-2.32,2.24,0.06,-0.83,1.15,-1.15,2.62,-1.96,2.95,-2.48,1.01,1.77,-2.97,0.65,-0.08,-2.05,-1.81,-0.98,1.13,-0.68,-0.12,-1.04,0.12,-2.16,1.55,2.29,-1.82,2.38,-0.69,1.42,-2.47,0.97,-2.76,-2.05,-0.33,-0.15,-1.89,-1.08,-1.34,-2.99,1.09,-3.23 +C292,6.5,-4.57,0.23,0.2,4.63,0.37,-1.62,2.05,-1.59,-0.4,-7.69,7.33,0.79,2.24,4.73,0.91,2.6,4.33,3.72,0.48,0.62,0.28,1.3,1.82,1.12,1.31,0.83,0.46,2.33,-0.18,-3.04,-0.54,2.72,-1.87,-2.07,1.97,-0.22,1.69,-0.75,0.98,3.52,0.22,-2.13,-0.62,-3.42,1.15,-3.77,-2.18,-0.73,1.47 +C293,-13.49,0.63,-1.37,-2.43,-0.5,2.61,-0.43,-0.77,-0.99,0.71,-2.96,-3.18,-1.22,0.47,0.4,-3.55,1.64,0.46,-2.14,1.07,0.99,0.44,2.66,2.18,-2.94,2.74,-2.14,-0.82,1.22,0.4,0.49,-0.91,-1.06,0.34,2.3,-0.85,-2.98,-0.11,-0.32,-0.28,-2.29,-1.86,0.59,2.62,-0.64,-0.84,1.17,-1.88,0.52,1.55 +C294,3.74,0.28,-1.73,-1.95,-2.37,-0.05,-0.71,-2.4,-1.75,2.2,1.21,0.04,-0.49,-0.08,2.08,-0.2,-0.14,-0.06,-1.07,-1.29,0.08,-1.27,-1.16,2.43,-1.06,-2.56,0.98,0.47,-0.47,-0.83,-0.52,-1.33,1.18,2.39,0.92,0.22,1.53,-0.23,2.19,-0.23,0.13,0.54,-2.14,0.28,0.02,3.58,0.98,0.17,-0.53,-0.19 +C295,2.06,-0.97,-0.98,-0.99,-2.54,-0.56,-0.39,0.35,-0.36,-3.47,3.92,2.03,-2.48,0.24,0.72,-0.89,-1.77,2.56,-2.4,2.06,2.62,-2.63,-1.61,0.97,-0.46,0.28,-2.95,1.02,3.25,2.33,0.43,0.46,0.71,-1.22,-2.37,0.61,0.47,-2.14,4.38,0.38,-2.26,-0.6,-3.91,-4,-0.01,-2.94,-2.54,-0.82,-0.93,-3.25 +C296,4.33,-0.29,-0.54,-1.69,2.63,-0.27,1.8,-3.21,2.83,-0.46,-1.2,-1.55,-0.79,-1.03,-1.05,3.22,1.16,1.16,1.26,0.29,0.56,-0.18,-2.09,2.18,-2.05,-0.14,1.01,1.89,1.17,-0.51,-2.56,0.03,0.66,-1.68,0.42,1.16,-1.24,-0.85,-3.86,3.52,0.84,-0.04,1.42,-0.08,-1.52,-2.62,1.58,1.1,1.13,-0.74 +C297,4.31,-7.16,-0.41,1.29,7.26,-0.84,0.25,0.45,0.99,2.81,-0.08,-0.85,1.1,2.86,1.49,1.22,-0.97,1.54,0.02,1.86,-0.72,0.73,1.08,-0.04,4.25,1.99,-3.48,2.1,-1.81,-3.75,-2.07,-0.38,3.29,-2.15,2.29,1.06,0.48,-1.3,0.1,2.59,-0.3,-1.76,-1.88,0.16,3.46,0.31,0.9,-3.03,1.54,3.52 +C298,3.02,8.22,4.86,4.16,2.12,-1.18,-0.15,-0.43,0.35,-1.71,-1.89,-0.16,0.61,0.01,2.94,-1.95,0.07,1.38,0.14,-0.41,-1.88,-0.27,-1.9,0.6,1.24,0.41,-0.26,-0.1,2.07,0.72,-1.3,-0.14,3.09,1.36,-0.06,-0.22,-2.87,0.16,0.19,0.7,-0.33,-1.63,1.67,-2.66,-1.55,-1.65,0.43,-2.06,0.45,-1.5 +C299,-5.14,3.58,-2.83,-4.35,4.06,0.02,4.09,-1.48,3.15,2.32,1.38,-0.1,0.04,-0.5,1.08,0.46,1.04,-0.71,1.73,0.69,-0.55,-0.2,0.3,-0.98,-0.14,-0.04,-0.09,-0.3,1.13,1.2,0.03,0.27,-0.79,-0.85,-1.82,-0.81,0.28,0.64,-0.92,-0.81,0.53,1.15,1.26,-1.24,-0.43,0.48,-0.01,0.4,0.19,-0.38 +C300,-11.51,1.49,-0.06,-3.2,1.69,2.7,-0.95,0.5,-1.54,-3.92,-0.09,3.99,0.05,0.3,-2.29,0.63,-1.58,-0.03,-1.06,1.57,-1.95,-3.46,1.96,0.77,-0.22,1.25,-2.6,-2.48,-2.76,-0.06,-1.73,-0.23,-1.15,-1.42,-0.72,-0.62,-0.78,1.04,-0.36,-0.44,0.08,0.76,-0.48,-0.59,1.31,-0.06,-1.02,-0.09,-1.72,0.68 +C301,5.1,1.21,-1.45,-3.18,0.72,-0.67,0.42,0.46,0.49,-1.01,-3.09,1.59,-0.99,0.02,-0.66,1.76,1.34,0,0.12,0.33,0.47,-1.39,-2.13,0.85,0.08,-2.55,1.61,0.98,0.03,0.83,-1.06,-1.18,-0.17,-2.45,-0.93,1.32,-0.53,-0.31,2.1,0.45,-1.67,-0.33,0.84,0.63,-0.02,-0.23,-2.56,1.61,-0.65,0.17 +C302,4.29,-0.9,-1.58,-2.05,0.13,-1.58,0.11,-1.3,1.52,-0.56,0.6,-0.5,2.94,-0.66,2.18,-0.3,-2.1,-1.45,1.37,2.74,3.76,-1,-3.23,3.27,-1.19,3.48,2.27,1.69,1.44,1.12,-2.58,1.76,-2.32,-1.57,4.36,-2.38,-3.75,-0.02,1.93,0.76,-2.15,0.53,2.27,3.81,-0.2,-3.51,-4.56,-1.7,2.33,2.66 +C303,-13.61,-1.65,2.18,1.11,-3.24,-7.5,5.47,2.28,0.67,-0.06,-1.99,-0.51,0.3,0.68,-2.62,0,-1.83,-0.25,-0.94,-0.28,-0.73,-2.46,2.68,-2.24,0.22,-1.79,-2.09,1.87,1.47,-0.48,-3.58,-0.99,3.04,1.14,0.86,-2.95,-2.31,0.92,0.61,-1.85,-2.32,-0.94,-2.09,-2.27,-2.12,-1.52,2.1,0.22,2.13,0.85 +C304,5.3,-0.97,-1.96,-2.1,-1.37,-0.43,-0.95,1.36,-0.91,-0.94,0.65,-0.82,0.76,-0.07,-0.83,2.5,-0.72,-0.54,-0.38,0.78,-1.46,2.02,0.72,3.9,-1.42,-0.48,3.04,-0.78,-0.79,2.88,-1.48,-0.6,0.35,1.31,2.09,1.58,-0.17,0.02,1.73,-0.44,-0.53,0.45,1.15,-1.28,-1.73,0.37,2.49,0.57,-0.26,0.06 +C305,2.46,5.38,5.04,5.76,-0.3,0.11,-0.65,0.76,-1.45,3.15,1.32,1.69,-5.38,2.17,-2.28,0.19,-1.42,-0.52,2.21,-3.12,0.35,2.11,1.12,-1.81,0.93,0.91,4.66,0.04,-0.86,1.03,0.24,-0.16,-4.27,0.26,2.16,0.54,1.63,-0.42,-0.76,2.36,2.05,0.7,3.02,-0.07,-0.73,1.01,-0.03,1.91,0,0.27 +C306,4.67,-6.98,0.3,0.17,2.98,0.7,-1.27,-1.76,0.48,1.23,3.58,-4.63,0.02,0.27,1.71,-3.88,1.04,1.32,1.81,1.02,0.29,1.45,-0.72,-0.82,-0.07,4.25,-0.98,-3.06,-1.85,-1.99,0.69,1.13,-0.91,-0.37,0.54,2.38,1.28,-1.95,1.07,0.54,1.97,0.87,-3.03,-0.45,-0.29,-1.4,0.44,-0.04,0.55,2 +C307,4.18,1.6,-0.82,-1.21,-1.5,0.48,-1.14,1.83,0.85,-1.19,0.07,-0.06,-0.41,0.23,0.9,-0.33,-1.72,-0.76,1,0.65,-1.55,0.5,-0.6,1.22,-0.11,-1.64,2.66,0.8,0.3,-1.14,-0.22,1.7,1.01,1.62,2.3,-1.86,3.07,0.31,-0.02,-2.8,0.04,-1.38,2.37,1.97,-2.43,-0.88,-1.54,2.21,1.67,-0.73 +C308,5.11,1.2,-2.16,-2.94,-1.2,-0.17,-1.69,2.17,0.74,-0.14,-2,0.22,-0.54,0.84,-1.99,-0.29,-0.87,-0.41,0.78,0.19,-0.92,-1.83,-0.73,-2.06,1.78,-0.91,-2.09,-0.27,-0.42,1.38,1.11,0.98,0.67,0.78,0.43,0.64,1.09,0.47,1.04,-0.55,-1.92,-0.04,-0.76,2.27,1.38,-0.94,1.27,0.2,-0.2,-0.7 +C309,1.48,-11.76,3.01,3.28,3.67,-0.1,-0.23,0.13,-0.97,-2.02,3.1,0.99,-1.14,-1.44,-0.32,-2.39,0.66,-4.18,0.89,-2.37,-1.86,-0.08,-2.06,-3.12,0.5,2.86,-0.12,-0.34,1.16,5.75,-1.15,0.29,-5.43,2.71,1.47,4.06,2.65,-0.18,0.8,-0.3,-0.31,-4.26,-3.23,0.58,3.64,-0.41,-2.25,-1.33,-2.44,-0.82 +C310,1.68,-10.84,3.35,4.55,4.69,1.41,0.53,4.88,-1.55,0.03,0.82,1.26,1.35,1.07,1.5,-0.45,2.11,-1.62,2.36,1.68,-0.08,5.32,0.91,-3.29,1.6,1.14,-2.63,3.54,1.18,-1.87,1.76,-1.92,2.51,-3.44,1.1,1.76,-0.45,6.03,0.72,3.71,-1.77,-0.4,2.06,-2.6,0.88,1.52,-0.32,-4.13,-0.13,1.15 +C311,-12.22,-1.19,-1.6,1.64,-1.09,-8.21,5.38,0.9,3.88,2.79,-4.58,0.45,-1.18,-0.36,2.22,2.58,-1.53,-4.33,0.05,-3.09,1.92,2.4,-4.01,-0.29,-1.54,1.42,-0.15,-3.61,-2.72,-3.63,-3.25,-3.85,-1.67,0.58,2.58,-0.31,0,1.06,-1.07,-0.06,-4.48,2.39,2.8,-0.43,1.06,-0.46,-3.58,-0.15,4.61,0.21 +C312,-13.49,-0.06,-2.07,-2.49,2.65,1.57,-0.74,0.67,-1.15,2.04,0.26,1.88,-0.99,-0.82,-1.56,0.17,0.72,1.16,1.32,1.39,0.68,-2.42,-1.64,0.37,1.61,-2.3,-0.92,3.95,0.66,-2.18,-1.81,-1.85,1.16,3.34,1.61,-1.07,-0.5,-1.31,1.38,-0.24,-1.08,0.53,-2.8,-2.28,-2.23,2.48,2.86,0.12,-0.69,-0.56 +C313,3.53,8.3,5.64,4.56,2.34,-0.13,-0.2,0.13,-1.27,0.37,-1.82,-0.54,3.88,-2.53,-2.78,-2.36,-0.34,-1.77,1.12,0.21,0.9,-1.06,0.03,1.08,-0.16,-0.2,-0.62,-0.94,1.5,-1.02,-1.99,-0.2,-1.87,-2.31,-0.25,-2.23,-3.23,-3.31,1.27,1.35,-1.74,0.78,0.33,0.41,-0.48,0.76,1.57,-3.27,-1.6,1.71 +C314,4.36,-1.53,0.15,-1.42,-2.79,-0.29,-1.36,-1.21,-1.56,0.62,1.42,1.45,-0.95,-0.36,-0.37,0.14,0.65,-0.51,-1.18,0.98,-1.51,3.91,1.35,-0.5,-1.06,-1.32,-0.74,-1.17,2.29,-0.44,-2.63,-0.03,0.87,1.22,-1.06,-1.7,0.85,2.34,-1.6,-0.23,3.56,-1.64,0.17,-0.62,-0.16,1.47,0.91,0.14,0.81,3.83 +C315,3.59,-2.7,-0.29,-2.13,-4.47,0.17,-2.72,-1.46,-1.18,2.48,1.11,2.99,-0.44,-3.07,0.88,2.66,-0.2,-0.27,-0.09,0.91,-0.31,-2.73,-1.19,-1.78,0.79,0.93,1.41,-1.68,-1.58,0.14,-0.01,0.17,-2.31,-1.85,-0.76,0.11,-0.51,-1.28,-1.43,0.07,-0.44,0.87,0.49,-1.4,0.53,-1.36,1.45,0.34,0.78,0.11 +C316,5.06,0.63,-1.72,-1.95,-0.45,-0.24,0.06,0.92,-0.28,-1.85,0.36,-0.13,0.03,0.7,0.62,0.56,1.09,-2.01,0.41,-0.87,1.23,0.64,0.36,-0.74,2.36,1.06,-0.62,-2.55,-1.22,-0.45,0.49,-0.03,1.66,-3.51,-0.15,-1.39,-0.13,0.5,0.82,-0.52,4.6,0.89,-0.04,0.88,1.61,-2.31,-2.4,-0.38,-1.85,0.33 +C317,4.9,-2.92,-0.82,-1.68,-1.28,-0.3,-2.22,-2.61,-1.3,0.82,0.02,-1.45,0.65,0.6,3.61,-0.28,0.39,0.59,1.35,-2.3,-0.22,-0.63,-0.45,2.4,-2.04,-0.61,0.37,-3.45,-3.4,-0.9,-0.91,-1.2,0.22,-1.39,-2.37,-1.27,-0.59,-3.32,2.31,-1.5,1.32,-0.55,0.57,-0.06,0.22,-1.97,-2.13,-0.1,-0.96,0.73 +C318,4.07,-4.77,1.25,1.26,1.62,-0.11,-0.99,-1.78,0.92,0.14,0.72,-4.77,-0.66,-0.47,2.96,2.08,1.11,-0.17,3.23,-2.75,1.94,2.08,-1.58,1.8,0.14,0.29,-1.89,1.07,3.99,1.05,0.21,0.43,-0.84,-3.95,0.21,-1.62,-2.93,1.97,-0.77,5.33,0.75,0.32,-1.26,-2.15,0.22,0.91,2.07,0.93,-0.45,-0.16 +C319,5.87,3.37,-2.42,-2.63,3.63,-1.34,2.25,1.94,2.37,-1.79,0.26,0.22,-0.25,-0.12,0,-0.32,0.98,1.54,1.54,-0.87,0.01,1.09,-0.53,1.7,1.82,-1.41,1.89,-1.83,-0.1,-1.26,2.01,-2.85,0.5,-0.7,2.5,0.13,0.48,-2,0.05,2.24,0.45,1.38,-0.28,0.1,2.09,-2.51,2.09,-0.03,0.72,2.82 +C320,6.16,0.5,0.44,-0.21,5.91,0.5,1.19,-4.03,0.06,-0.27,-3.85,3.16,2.59,-2.19,-1.88,-2.61,0.54,-0.41,-1.33,0.52,-1.15,0.35,-1.11,0.83,-2.54,0.1,-1.43,0.17,-0.89,-0.14,-0.39,-1.95,0.88,-1.01,-0.25,-0.14,1.36,-1.44,-0.24,1.24,-0.62,1.18,0.63,-1.76,-1.24,0.32,0.67,-0.99,0.32,-1.68 +C321,-10.47,2.52,-3.19,-2.34,2.84,3.95,-0.96,-1.12,-2.28,-0.49,2.03,-1.03,-1.36,0.44,2.38,-1.75,1.93,-1.41,-1.11,0.71,0.12,3.03,0.01,-0.6,3.41,-1.37,-1.43,-0.67,2.58,3,-0.21,2.2,-0.11,-1.79,-0.04,0.28,1.54,1.16,1.69,2.67,-1.68,-2.23,-0.1,3.76,-0.45,1.7,-0.15,-0.76,0.22,-0.22 +C322,2.14,7.35,5.02,5.93,0.62,0.27,-1.62,0.07,0.22,0.79,1.34,1.98,3.39,0.96,-1.55,1.65,-0.34,1.04,-0.37,0.66,-1.82,-1.84,-0.39,0.71,-1.66,-2.17,0.61,0.05,1.08,-1.5,-1.48,3.11,-3,1.95,2.6,2.26,-0.48,0.13,-0.42,-1.75,0.42,-1.59,-0.86,-0.91,-0.28,-1.21,-2.19,-0.25,2.82,1.63 +C323,2.31,7.76,4.7,4.55,2.29,-0.52,0.02,0.19,-2.61,-2.05,3.5,2.58,-0.71,0.71,1.13,-1.43,-2.03,0.55,-0.06,-3.74,2.33,-2.07,-2.18,0.34,2.21,1.76,0.32,0.21,0.07,-0.24,0.27,1.45,0.84,0.37,3.02,0.92,-1,-0.39,-0.84,3.13,-0.91,-0.85,-0.32,1.37,-0.41,-1.52,1.16,0.09,-1.61,0.28 +C324,3.58,-2.15,-0.84,-0.27,-4.87,0.13,-1.57,0.89,-3.48,0.16,-0.41,-3,3.81,0.55,4.15,3.88,-2.38,-3.04,0.57,0.34,1.3,2.12,2.58,-0.31,-0.44,-3.9,1.12,4.55,-0.1,-2.14,0.08,-1.01,1.97,1,-3.26,-1.37,-0.74,-0.99,-1.91,-1.08,-2.08,2.01,-2.73,-0.77,-2.44,-0.71,1.41,0.12,-0.1,-1.58 +C325,3.31,0.56,-1.5,-2.12,-0.15,0.31,-0.67,-0.89,-1.25,1.81,1,1.09,0.65,-1.18,0.46,0.39,-2.23,-0.59,0.59,-2.27,1.58,-1.7,0.16,-1.02,-0.94,0.2,-0.98,-1.57,-0.48,0.5,2.49,0.58,2.57,-1.67,1.22,-0.38,0.24,-0.55,1.23,-2.09,-1.66,-0.86,-1.51,0.14,-1.68,1.57,0.23,-0.77,0.01,0.18 +C326,3.17,-0.62,-1.66,-2.95,-1.37,0.01,-0.22,-0.84,-0.43,0.18,0.34,-0.96,0.33,-0.41,-1.22,1.53,-2.39,-1.49,1.77,-1.01,0.24,-1.22,1.02,-1.14,1.62,-1.24,-0.58,-2.24,-1.54,1.72,-0.36,-0.93,1.26,1.74,0.22,-2.74,-3.98,-1.2,-0.89,-1.32,0.64,0.65,-1.69,-1.44,-0.33,0.22,-0.34,-0.76,-0.96,0.03 +C327,2.96,8.22,6.5,6.72,2.36,-1.25,-0.17,1.56,-2.45,-2.83,1.06,2.61,2.99,-0.14,-0.53,-0.07,1.31,0.7,2.21,0.9,2.26,-0.66,0.97,1.87,0.4,0.17,-0.73,0.15,-1.57,-1.74,-0.76,-0.39,-1.22,2.58,-1.33,0.49,-0.1,-2.94,-1.74,-0.02,4.19,2.03,-0.19,-0.25,-0.5,2.38,-1.26,-0.29,0.89,-1.85 +C328,4.08,-0.54,-1.73,-3.77,-2.62,-1.54,-2.44,-0.91,-2.34,0.69,0.67,0.18,-1.02,-4.84,0.85,-0.92,1.31,1.07,-1.91,-0.21,1.91,-4.34,-2.88,-1.86,0.57,0.46,0.45,-1.53,2.5,-3.24,-0.14,-0.29,1.87,-2.66,-1.69,0.49,-0.51,-1.77,-0.26,-1.13,0.87,-0.92,-0.01,-0.68,-0.23,-1.29,-0.97,-2.09,-2.28,-1.89 +C329,-11.11,0.83,0.16,-1.15,2.77,-0.21,0.65,-0.73,0.37,-0.97,2.07,-0.9,2.89,-1.09,1.86,-0.99,2.15,-1.87,1.45,1.53,-1.59,-4.36,-0.04,-0.08,-3.5,1.33,-0.81,0.89,0.03,-1.42,0.03,-1.35,-2,1.63,-1.32,0.17,-1.75,1.13,-0.54,0.48,0.48,2.4,-1.63,-0.34,-0.67,1.15,2.67,-0.38,-1.48,-1.45 +C330,5.14,1.01,-1.22,-2.53,-1.64,-0.02,-1.25,-0.87,-1.44,1.07,1.65,-1.8,0.75,-1.66,0.45,2.37,0.66,0.41,1.4,2.18,0.18,-2.03,-0.26,0.76,0.49,-0.56,2.7,-1.19,0.8,-0.17,-0.34,0.44,-0.95,0.68,0.67,1.06,-1.6,2.25,-1.71,0.29,0.58,4.18,1.25,0.21,0.66,-0.46,-0.53,-1.9,0.66,1.18 +C331,-10.3,1.67,-1.9,-0.86,0.98,3.65,-1.63,0.05,-0.97,2.98,1.44,0.33,0,-0.78,-0.16,0.64,-0.99,1.89,-0.5,0.39,-0.44,-0.53,-0.72,-0.67,-0.66,2.8,2.09,0.06,-0.14,1.14,2.51,2.67,-3.18,1.65,1.73,-1.58,1.48,-0.62,1.09,3.12,3.12,1.71,1.54,-1.11,-1.18,0.7,0.67,-1.3,-0.38,-1.37 +C332,-15.24,-1.1,2.53,0.16,-1.46,-2.03,-0.99,-1.74,-1.82,-4.56,1.67,2.38,1.85,-0.67,3.02,-1.18,2.41,0.39,1.29,-1.77,1.42,-1.38,-1.85,-0.49,-3.06,2.93,0.13,-1.13,4.34,0.94,-1.9,0.68,-1.48,2.27,1.21,-0.04,4.3,0.47,-1.32,-1.44,2.63,1.83,1.15,3.33,3.66,-1.09,-1.51,-1.42,-1.3,-1.3 +C333,0.89,-16.02,7.93,11.21,-11.45,28.52,29.74,2.72,2.58,-3.82,-2.41,-1.26,5.54,-2.79,-1.46,-3.99,-0.3,2.13,-3.5,-4.78,-3.08,-4.87,-3.04,-0.42,-3.52,1,-2.42,0.41,0.32,1.86,1.33,-4.95,-1.48,0.64,1.39,-3.48,4.83,0.6,0.09,-2.85,1.57,2.28,-2.89,1.98,-2.14,-2.07,-3.82,-0.67,1.38,3.56 +C334,-5.56,2.4,0.47,-1.26,0.58,2.14,-1.97,-1.89,3.24,2.03,1.76,-1.49,-1.23,-0.97,-0.85,-0.6,-0.93,-0.03,3.65,-0.72,0.94,2.15,-0.9,2.52,-0.26,-0.46,-1.89,-1.08,1.48,-1.35,2.79,-3.79,-2.39,-0.34,1.88,0.86,1.3,-1.22,1.14,-1.44,1.16,0.73,-0.58,-2.96,0.19,3.6,-0.77,-0.17,-1.86,0.04 +C335,4.19,7.04,3.74,4.75,1.82,-0.52,-0.08,-0.15,1.14,-0.54,1.19,0.83,-0.02,0.4,0.97,-0.24,-1.28,0.46,-3.04,-0.74,2.88,-1.05,1.08,-0.59,1.74,1.01,0.22,-0.14,0.5,3.04,-1.09,1.05,2.3,3.43,2.81,-0.53,-0.93,-1.86,2.38,3.24,3.16,-2.59,0.12,-1.98,-0.75,0.45,0.23,0.06,-1.87,-0.18 +C336,-11,0.52,1.81,1.75,0.6,5.03,-6.64,-0.32,9.61,0.02,1.46,0.8,1.22,-0.46,0.31,1.36,-2.22,0.95,-2.81,-2.89,1.12,0.75,0.58,0.36,-0.69,0.42,0.2,0.48,-0.23,-1.03,2.08,-0.28,2.92,0.29,-1.58,1,2.82,0.53,-0.42,0.32,0.11,-2.15,-0.24,-0.11,-1.02,2.38,-0.97,0,-0.69,-0.74 +C337,5.13,2.59,-2.91,-2.73,-0.13,-0.1,0.77,1.23,1.71,0.43,0.96,0.06,1.13,-0.56,0.52,-1.76,0.56,-0.33,0.16,0.6,-0.4,0.42,-0.44,-1.42,0.43,0.74,-0.15,-0.5,0.19,1.15,-1.17,-0.61,-1.32,1.58,-0.89,-0.07,-0.05,-0.78,0.98,1.41,0.98,-1.17,-0.35,-0.45,1.39,-0.19,0.18,-1.52,0.85,-0.33 +C338,-14.39,-2,1.1,-0.79,-1.88,-5.47,3.86,-0.54,-0.87,4.56,-0.13,0.49,-0.21,-2.23,2.74,-1.48,0.2,0.93,3.26,-1.7,0.4,-1.65,1.66,0.88,-2.07,-0.16,-1.97,2.18,-0.38,-2.36,4.02,-1.84,1.13,0.99,0.6,-0.1,1,1.56,-1.9,-0.69,3.54,0.38,-0.18,2.48,-1.45,0.76,-1.92,-1.16,-1.6,2.42 +C339,1.73,-11.71,3.27,3.72,7.72,-0.91,-0.26,2.37,-1.93,-0.26,-2.2,4.53,-0.95,-0.6,-0.57,-0.84,1.03,-2.69,-0.74,-2.93,1.38,2.78,-2.32,-0.83,1.21,1.16,-1.26,3.14,1.3,-0.51,-1.35,-0.91,-3.74,1.51,0.34,-3.88,-1.19,-1.87,2.86,-1.96,0.51,-0.19,0.86,-0.76,-3.16,4.39,-0.24,1.63,-1.6,0.79 +C340,2.88,-1.81,0.36,-1,-4.03,-1.42,-0.28,-2.14,-1.44,1.96,3.51,-0.91,2.12,-0.65,3.05,-0.16,-1.52,-0.27,2.28,-3.1,1.84,2.16,-0.7,-1.99,-1.31,-1.95,0.62,0.43,1.38,-3.1,2.37,-0.58,2.89,-2.5,-0.26,1.09,0.1,-2.09,-0.68,-0.84,2.87,-0.21,0.75,1.87,-1.02,0.92,3.36,2.03,0.82,-0.01 +C341,5.7,-1.72,-0.04,-0.06,4.04,-0.55,2.08,-1.07,3.02,-1.04,1.18,-3.05,0.28,-0.09,-2.95,-0.52,0.8,-2.03,5.01,-0.88,1.13,2.15,-2.7,-1.5,2.23,2.5,1.38,2.65,0.58,-1.36,-1.25,-2.84,-0.9,-1.29,1.12,0.68,-1.86,2.42,2.97,0.69,-3.36,0.33,-1.24,0.35,3.08,-2.64,-2.94,-2.72,3.56,-1.86 +C342,3.73,1.53,0.21,-1.63,-0.32,-0.58,-0.45,2.33,0.05,-3.25,2.89,2.25,0.33,0.59,-0.17,0.18,-2.14,0.75,-1.51,-1.46,-1.45,-1.17,-0.38,-1.44,1.22,1.34,0.17,-0.73,-0.68,1.75,1.08,-0.17,-0.21,-1.05,-1.32,-1.32,0.07,1.01,-0.94,-1.85,-1.79,2.45,-2.07,1.56,-2.03,2.43,-2.76,-1.71,0.27,3.16 +C343,4.62,1.63,0.36,-2.18,-0.62,-1.29,-0.13,1.84,2.06,0.18,0.1,-1.61,-0.4,2.35,0.36,0.55,-0.98,-0.37,-0.62,1.57,3.27,0.91,0.95,-2.89,-1.57,0.63,0.89,1.07,-0.67,0.27,0.77,1.55,0.18,1.34,0.39,2.15,0.58,0.38,0.95,1.37,0.67,-0.84,1.71,0.68,1.48,0.75,1.79,-0.48,0.55,-0.19 +C344,2.97,-3.6,0.41,0.04,0.75,0.92,1.13,-3.53,1.28,0.4,-2.77,-2.15,-0.61,-1.33,-0.13,-2.6,2.69,0.35,1.61,-1.69,-0.23,-3.22,2.76,-2.39,2.47,-0.99,0.49,2.16,-2.1,0.88,-2.38,-0.17,-0.95,-0.71,-0.2,0.75,-2.05,1.54,-0.15,-1.7,-3.35,-0.91,-0.43,-0.37,2.08,-0.07,0.66,1.43,-2.34,1.75 +C345,-8.47,3.41,-1.54,-2.77,4.66,2.86,0.47,-0.6,1.83,2.41,1.33,-0.99,-2.51,-0.29,1.35,1.16,0.89,3.73,-1.74,0.07,1.28,0.71,-1.23,-2.09,2.6,0.19,1.4,-0.62,-0.64,2.52,-1.03,-0.24,1.14,0.61,0.55,-0.96,2.39,0.87,-0.94,2.28,-0.38,2.66,-2.32,-0.79,0.84,1.32,-1.28,-1.19,0.43,-0.69 +C346,2.19,-10.46,1.66,2.22,6.86,1.19,-0.2,1.17,0.23,1.76,-1.31,3.65,-2.31,-2.99,-2.95,-1.44,-1.48,-4.37,-1.76,0.92,1.23,-2.24,2.84,-0.92,0.16,0.88,-3.61,0.41,-2.08,-1.28,4.7,1.32,-1.73,-0.98,-0.53,-2.25,2.4,1.12,-1.52,0.3,2.62,0.04,0.99,1.01,-1.37,-2.73,-0.11,-1.48,-1.26,-0.28 +C347,4.14,6.53,2.64,2.9,1.47,-0.96,-0.32,-0.27,-1.1,-2.42,0.77,2.36,1.95,0.23,2.79,-0.18,-0.71,2.77,-2.39,-2.37,-1.7,0.27,-1.63,-2.26,0.03,-4.35,1.63,0.1,1.73,-2.89,-0.19,-2,-2.44,5.15,-2.24,-1.07,-1.44,4.18,0.65,3.48,-3.14,-1.67,0.29,-0.54,-3.38,-1.92,-0.07,-0.29,-0.93,-0.59 +C348,-14.45,-2.71,1.79,-0.05,-2.29,-1.38,-1.29,-0.42,0.72,-2.72,2.61,1.49,1.77,2.64,0.73,0.12,0.47,-1,2.24,1.24,2.11,-0.45,-1.9,2.64,-2.97,0.65,-0.37,0.72,-0.66,3.61,0.45,-1.15,-4.89,0.46,-0.46,0.44,-2.73,2.78,2.38,1.56,-0.78,1.8,0.43,-2.56,-1.79,3.88,0.53,-2.27,1.68,-0.22 +C349,5.83,0.88,-0.42,-1.71,-0.77,-0.93,0.72,1,1.06,-0.8,-0.79,1.88,-0.22,1.26,-0.31,-2.91,0.24,-0.36,-0.87,-0.53,0.81,-0.21,-0.15,0.56,0.12,2.77,0.24,3.85,-2.8,1.92,0.68,0.49,-1.22,-1.52,-0.79,2.38,-0.69,-0.31,1.88,1.01,3.72,1.4,0.62,0.92,-0.21,-0.89,-0.24,-1.14,0.86,2.08 +C350,5.64,-1.52,-0.92,-1.74,1.6,-0.6,0.18,-1.01,-0.42,0.25,0.57,0.01,-1.07,-0.85,2.02,2.63,1.2,3.07,-0.81,0.89,1.42,1.24,-1.44,-2.19,0.42,0.75,-0.7,1.14,-0.64,0.44,-2.12,-4.73,-0.34,2.15,0.59,1.11,0.18,0.98,-0.6,0.7,1.25,-2.38,-0.7,-1.67,1.72,1.65,0.96,0.32,-0.5,-1.09 +C351,-9.88,1.59,-1.66,-4.31,1.74,1.89,0.1,-0.26,-2.42,0.14,-0.08,0.42,-0.53,-0.26,1.67,0.07,-0.38,-0.05,1.1,-0.09,0.41,1.67,0.92,-0.73,1.05,-0.02,-1.54,-1.9,1.81,-1.35,0.64,1.61,0.48,-1.4,-0.89,-1.1,-0.31,-0.1,-1.77,-1.37,-0.54,-0.55,-1.75,0.58,-2.56,2.1,1.34,1.4,-1.85,-1.97 +C352,3.52,-0.39,-0.6,-2.31,-2.81,0.52,-0.94,0.1,-2.03,0.62,0.49,1.76,-0.19,-1.72,-2.19,2.77,0.24,2.58,-0.88,0.42,-0.25,-0.13,0.06,-0.02,2.02,-0.58,2.69,-0.3,1.49,-1,4.77,-1.11,-0.84,0.62,-1.95,1.6,0.93,-2.33,1.42,-1.8,0.04,4.46,-1.35,-0.84,1.23,0.61,-2.91,-3.05,0.74,-0.51 +C353,5.48,0.38,-1.5,-2.19,0.06,-1.38,1.38,0.73,0.6,1.48,-0.35,1,2.01,-1.69,0.03,-1.62,0.75,-1.07,-0.05,-0.17,-0.33,1.12,-1.37,0.56,-0.98,-1.31,1.12,1.28,-1.59,1.94,-1.06,-1.58,1.42,-0.59,-2.14,1.17,-0.72,0.03,-0.3,2.28,0.15,-0.58,-2.13,-0.11,-1,0.07,0.8,0.27,1.1,0.71 +C354,2.74,-1.08,0.01,-1.39,-3.7,-1.05,-0.98,3.79,0.1,-1.01,-1.9,-3.27,-1.58,1.05,-1.94,-2.91,1.23,-0.75,2.44,2.14,0.72,2.37,2.19,-2.19,0.28,-2.07,-1,-0.57,-3.87,1.04,-3.06,1.08,-4.49,1.35,-2.3,-1.24,0.48,-0.43,0.85,-1.74,1.66,0.8,-1.98,0.6,0.51,-0.9,-4.1,0.26,-0.8,0.46 +C355,5.59,1.36,-2.28,-2.14,-1.99,-0.36,0.79,1.37,2.69,0.59,-3.88,-0.75,-1.36,0.67,1.21,0.91,-0.77,-2.03,0.8,-1.01,-1.46,0.97,-0.44,-3.35,1.79,3.18,-2.62,-0.61,-2.06,-0.53,-1.26,-1.28,1.32,0.86,2.59,-2.31,0.52,-0.79,-1.83,1.05,-1.28,1.52,-0.34,-1.36,3.54,-0.29,-1.32,2.45,-0.01,-0.03 +C356,3.28,-3.84,1.34,0.75,0.28,0.31,-1.67,-1.18,-1.37,-0.67,-2.17,0.76,-3.15,2.33,2.75,-0.05,0.71,3.19,3.62,0.13,2.33,0.48,-0.31,5.14,1.66,0.24,-0.06,-2.65,1.63,-1.9,1.72,-2.05,-1.57,0.83,3.02,-5.15,-0.09,-1.93,0.03,1.66,0.47,-0.1,1.01,3.2,-2.67,1.32,-0.45,1.11,-1.02,-0.5 +C357,3.49,-1.04,-0.26,-1.4,-2.48,1.01,0.14,-0.38,0.09,-1.07,-0.38,1.16,-0.03,1.42,0.56,-0.79,-2.59,0.16,3.03,-2.01,-0.21,-1.95,-0.27,1.13,0.32,0.37,0.08,0.02,0.73,0.44,-1.86,-0.17,1.78,0.29,0.1,-2.21,-1.18,0.22,1.4,-2.33,-1.79,0.81,1.32,-0.62,1.8,-0.78,-0.29,-0.53,0.77,0.81 +C358,4.2,-5.76,0.39,0.02,1.96,0.04,0.2,-4.15,-1.29,-1.82,-1.01,-2.16,0.93,3.84,3.97,2.22,-0.69,1.31,-0.29,2.39,-2.67,2.97,1.22,2.19,-0.05,-1.94,2.28,-0.41,0.07,-0.12,-2.09,-0.19,1.73,-0.64,0.37,0.61,-2.29,1.77,-0.75,-0.93,-0.61,-0.94,-0.16,-0.59,0.4,1.1,0.16,-0.53,1.27,1.67 +C359,5.62,0.17,-1.14,-2.4,-1.62,-1.24,0.23,3.35,-1.24,-1.91,-0.63,0.34,2.47,-0.25,0.13,-1.46,1.4,3.35,0.04,-0.5,0.68,0.53,-1.79,0.9,-0.41,-2.1,-1.53,0.84,0.6,-2.91,-1.06,-0.59,-4.56,0.68,0.69,0.43,-0.74,-1.76,-0.22,2.95,0.87,2.96,-0.76,0.26,2.67,-0.17,0,2.64,1.31,-0.67 +C360,5.5,0.38,-0.55,-1.51,-2.81,-0.63,1.3,2.76,-0.58,-0.97,-0.27,1.48,0.76,0.29,-0.08,1.36,3.23,0.47,3.97,-0.84,-1.01,-2.59,1.75,-0.25,-0.24,-0.17,-1.31,0.01,0.55,-0.17,-0.87,-1.34,0.19,1.97,1.3,0.75,-0.67,1.05,1.53,-2.84,-1.06,-2.55,1.09,-0.81,1.65,1.82,2,0.04,1.53,-1.01 +C361,3.52,7.23,5.8,7.38,-0.5,3.36,0.07,0.2,0.67,2.86,-0.02,1.46,-1.74,-1.72,-2.83,-1.69,3.43,-1.5,2.87,4.38,-3.01,-2.09,2.75,1.35,2.63,1.92,2.27,-1.37,2.24,-0.85,0.74,2,0.92,-0.28,-0.32,2.14,-0.2,-4.86,-2.19,3.17,-1.88,2.56,-0.16,4.09,-0.72,0.64,-1.64,2.33,-1.76,2.15 +C362,-4.82,3.14,-1.89,-3.1,5.41,1.42,1,0.57,-1.99,-1.11,2.32,2.5,-2.48,-1.19,-0.49,-1.21,-0.47,-1.54,-1.55,1.95,-0.16,0.76,0.58,-2.36,0.69,1.58,-0.89,0.04,0.92,0.68,0.78,0.51,2.71,-3,1.93,-2.54,-1.14,0.6,-0.71,-0.81,0,-3.78,1.23,0.74,-1.84,-1.28,-0.17,-1.77,0.66,-0.97 +C363,1.75,-3.13,-0.64,-1.98,-5.52,-1.38,-1.66,0.5,-2.34,-0.45,3.66,0.82,2.95,-1.35,1.79,-0.37,-3.46,-0.06,1.65,-0.5,4.69,0.76,0.29,0,-1.55,-1.08,-4.03,1.5,-2.64,-1.14,1.96,-0.12,-1.02,-2.19,0.46,0.54,-1.05,-2.61,-1.78,-1.61,-1.35,-1.48,-3.26,-1.11,-1.21,2.48,-0.54,0.92,-0.2,-0.49 +C364,-12.24,2.15,-3.05,-0.22,2.29,1.56,1.14,0.02,1.07,0.7,-3.2,-1.22,-1.63,1.03,1.81,-2.39,2.83,-0.89,1.8,-1.48,0.74,0.55,0.28,-1.23,0.91,-0.8,0.24,-1.26,1.33,-2.6,1.11,0.53,-4.54,-2.24,-2.93,-0.09,-0.56,-1.48,-0.82,1,1.77,-2.37,2.44,-1.69,0.72,0.36,3.16,-0.25,3.45,-0.2 +C365,-9.94,0.47,0.76,-1.47,1.47,1.1,-0.47,-0.44,2.04,-0.4,-0.49,0.49,2.49,0.62,-0.24,4.21,-0.32,3.43,-1.68,-4.25,-1.73,-5.46,1.91,-2.75,-1.04,-0.42,-1.55,-0.66,1.07,-3.05,-1.69,2.2,-0.56,-0.78,-6.17,-1.17,-0.15,3.78,-1.1,0.77,-1.61,-1.81,1.71,0.26,0.13,1.98,1.79,0.95,-1,2.01 +C366,4.58,2.35,-1.78,-3.25,1.7,-1.4,2.87,0.35,1.14,0.55,2.3,-1.02,-0.14,-0.21,-0.1,1.22,-2.31,-0.88,1.17,0.53,2.42,-0.27,1.52,-1.21,-1.78,1.15,0.05,0.51,-0.55,-0.79,0.03,-0.6,0.12,1.83,-1.28,-0.31,-0.48,-3.18,-1.4,-0.4,1.7,-0.05,-0.63,1.17,0.66,0.04,0.71,-0.18,-0.65,-0.05 +C367,-0.49,-1.66,-0.56,5.76,-4.67,2.49,-3.8,8.38,2.91,0.11,-6.94,-3.26,0.22,0.5,4.45,3.51,-0.37,3.11,-7.49,-0.05,1.47,2.14,-0.79,2.91,-2.23,1.39,-2.68,6.37,1.57,-0.11,1.68,1.03,-0.9,3.99,-0.14,0.55,-1.78,-1.51,1.44,0.21,-2.75,1.45,-2.13,0.1,0.35,3.32,-1.35,0.69,3.47,2.27 +C368,4.82,0.58,0.03,-1.6,-0.38,-0.98,0.13,2.16,1.06,0.37,0.6,0.4,0.2,1.42,-2.38,-1.49,-2.09,3.02,0.43,-1.31,-2.02,-0.13,0.72,3.06,1.08,-0.83,-1.36,0.95,0.59,-0.31,0.54,1.78,-1.14,0.39,3.37,-0.32,-0.36,0.92,-0.38,0.32,0.35,1.45,1.39,0.3,-0.2,-2.54,-2.24,-0.05,2.9,-2.08 +C369,4.54,-4.74,0.53,0.17,1.2,0.3,0.03,-4.85,-0.16,-0.53,-1.86,0.51,-0.13,-1.82,-0.67,1.39,-0.87,0.29,0.09,0.32,-0.9,-0.11,3.98,-0.24,-2.31,1.12,-3.03,2.77,1.18,2.27,-0.4,0.59,-4.51,-0.15,1.92,-1.51,-1.61,3.01,-1.28,0.39,0.01,-1.14,0.74,0.13,-1.07,3.97,-1.39,-0.35,-0.55,3.82 +C370,-13.19,-2.53,2.42,0.93,-2.9,-4.64,3.95,-1.18,1.33,1.1,0.49,-0.21,1.64,1.46,0.96,1.58,-2.76,2.79,1.17,-0.01,-0.37,-0.31,0.75,1.22,1.64,-3.46,0.61,-2.06,0.02,-2.04,2.17,0.23,-1.61,-2.61,1.66,2.35,2.13,-2.41,2.28,1.11,0.69,-0.54,0.96,0.81,-0.72,1.97,0.23,-2.42,0.15,0.42 +C371,2.81,5.2,4.99,5.06,-1.04,2.21,-0.76,-0.36,-1.39,1.75,2,1.54,-0.29,-0.47,2.15,-1.19,2.28,1.57,2.45,-1.34,-0.35,-0.14,-0.48,-3.35,0.9,-3.03,-0.4,1.72,1.82,0.4,1.04,-0.15,-0.52,-0.85,2.81,-0.68,0.07,-1.27,2.27,-0.94,1.47,1.38,0.03,-0.17,1.99,0.98,1.63,2.58,0.9,1.1 +C372,3.41,-4.29,0.83,1.3,-0.76,0.76,-2.25,-5.03,-0.06,0.98,-2.38,-1.08,-1.27,1.08,-0.8,-0.33,3.48,2.34,-2.62,2.55,-0.46,-1.2,-1.15,-0.56,-0.19,-1.29,-1.36,2.54,-4.41,0.9,-1.37,1.05,2.09,-0.65,-5.53,-0.93,-2.12,2.36,1.42,1.12,0.61,3.12,-5.44,-0.69,1.69,2.47,3.77,-1.77,-1.93,0.12 +C373,2.94,-11.57,1.95,3.78,6.22,-0.34,-0.12,3.82,0.05,-1.32,-0.36,1.33,4.2,-0.42,-2.96,-3.03,-0.9,0.51,-1.33,-3.19,-0.42,2.73,-0.37,1.91,-0.68,-4.87,1.09,-1.07,-0.71,1.31,-0.83,-0.87,0.12,3.61,-1.38,-3.96,0.12,4.33,-1.07,-2.18,3.19,-1.97,2.96,-0.8,2.03,-7.31,4.86,-2.13,0.86,2.24 +C374,3.56,-13.29,1.69,3.19,9.98,-1.16,-0.24,3.45,0.46,-0.32,0.02,1.46,-0.31,-3,0.79,0.78,2.18,1.84,-1.45,-1.23,-0.38,3.42,1.86,0.75,-0.7,2.1,0.65,1.12,0.24,-1.02,-0.89,3.98,-2.39,0.69,1.17,-2.48,-1.89,-0.12,2.79,2.52,0.86,-0.25,2.08,-1.9,-2.88,0.8,-3.64,-0.13,1.98,-1.01 +C375,2.85,-4.52,4.66,5.56,1.44,-0.19,-2.53,-1.96,-1.06,-0.7,-1.44,-4.23,-0.13,-0.34,-2.23,-0.07,0.48,-1.85,2.1,-0.13,-3.39,0.05,-2.83,0.39,-0.5,-1.55,0.75,-2.02,0.21,1.72,-0.02,-2.96,0.95,1.09,1.99,2.4,4.64,3.72,1.89,-1.44,-1.44,-0.71,-2.08,-0.82,-2.45,-2.28,-1.09,2.02,3.48,-0.01 +C376,2.17,2.17,4.51,4.32,-2.17,-1.37,-0.93,0.36,-2.12,0.98,-2.66,-1.61,0.94,-1.23,0.15,-0.81,-0.46,-0.75,-1.3,0.31,0.87,-0.35,0.79,2.03,-0.68,-1.64,0.58,2.75,-0.69,-0.15,0.13,-0.7,0.2,3.2,-0.21,0.68,0.11,0.91,-0.71,-0.42,1.81,0.26,-0.99,0.83,-1.81,-1.63,0.09,0.77,0.23,-0.38 +C377,-10.52,3.09,-2.07,-5.07,4.47,1.23,1.06,0.71,-1.74,-1.17,-1.05,0.04,-1.12,0.89,0.83,-0.75,1.6,0.13,0.01,1.67,-1.23,-1.33,-0.26,0.17,-1.71,-1.42,-0.75,0.82,-2.16,2.5,-0.91,0.37,2.04,-1.1,-1.18,-0.22,-1.92,-0.42,-1.19,-1.68,0.74,0.86,0.07,-1.39,-1.61,-0.62,-0.42,-0.84,-0.05,2.14 +C378,5.73,1.78,-0.69,-1.98,-1,-0.81,1.21,2.56,1.66,0.7,-1.69,1.55,0.38,-0.85,-2.32,-1.89,1.26,0.25,0.75,0.47,2.93,-1.29,-0.26,-0.52,0.17,-0.29,0.4,1.81,-1.23,1.45,-0.16,-0.39,0.56,-1.17,1.45,-0.68,0.24,-0.08,0.31,-1.55,-2.26,1.03,0.81,-1.64,-1.04,-1.02,1.82,-1.81,1.69,-0.64 +C379,5.67,1.24,-2.07,-3.06,-0.49,-0.8,0.66,1.94,0.91,-1.03,0.4,-0.02,-2.08,3.13,-1.83,-0.51,-0.51,-1.09,-1.86,-1.33,2.06,1.57,1.15,-2.71,-0.08,0.62,-2.31,-1.2,-0.88,2.21,1.49,0.69,-1.51,0.35,0.04,-2.79,-0.98,-0.76,-2.26,1.12,0.81,-0.38,0.94,-2.93,-0.21,0.53,-0.54,0.19,-1.09,-0.6 +C380,5.53,1.34,-1.09,-2.5,0.86,-0.68,0.74,-2.35,-0.27,-1.44,-1.5,1.02,-0.09,0.72,-2,0.81,0.93,-0.05,-1.32,-1.7,-0.06,0.64,-0.25,1.28,0.57,2.69,4.18,0.72,-1.67,0.14,-0.19,1.61,-0.33,1.64,0.34,0.7,-2.58,-1.05,1.58,-3.85,-1.25,-1.92,1.94,0.44,0.22,0.44,-0.29,-2.98,-0.58,1.18 +C381,-7.15,1.5,1.66,1.33,-1.57,4.32,-6.47,-0.36,8.63,0.49,-1.67,-0.39,3.29,-2.53,1.26,1.32,-0.26,1.18,1.03,-4.74,-1.05,2.74,1.81,-0.28,1.63,3.74,-0.34,-0.53,0.33,-0.47,1.44,0.34,-0.06,-1.71,-0.93,1,2.32,1.42,0.96,1.82,-0.22,1.66,-0.61,0.93,-1.91,2.22,-1.6,-2.45,-1.54,-1.48 +C382,-13.28,-1.33,3.04,1.06,-2.68,-6.48,4.72,0.24,1.11,-0.43,3.56,-0.81,-2.02,0.58,1.52,-4.02,-1.14,1.1,0.01,1.78,3.25,0.93,2.65,-1.06,-2.45,-1.86,1.68,-3.37,1.56,-0.73,1.02,0.09,-2.19,-1.83,-1.85,-1.06,1.23,1.63,-0.22,-1.11,2.29,-4.15,-1.44,-2.34,-2.08,-2.15,1.06,-0.13,-0.39,-0.81 +C383,4.21,-0.01,-0.76,-1.17,-2.29,-0.93,-0.56,1.97,-3.13,-3.31,3.02,0.1,-0.14,1.05,0.65,-3.04,-0.75,-1.45,-1.99,-2.22,4.46,-0.34,2,0.45,1.34,0.7,-0.98,-0.34,0.39,-3.13,0.32,0.81,0.84,-0.7,-0.7,-0.4,-1.02,3.39,0.45,-0.04,-1.59,-1.23,-1.34,2.45,-1.33,-1.48,2.19,-0.29,-1.69,2.15 +C384,0.11,-8.64,4.31,5.67,-7.61,5.09,-2.16,-4.16,-1.45,-0.2,-1.08,1.3,-1.53,2.12,-2.48,2.75,3.02,2.6,-0.21,-2.13,-3.06,0.85,-3.04,1.65,3.91,2.07,-0.75,1.1,0.74,-1.26,0.14,2.46,-2.34,1.52,1.33,-1.29,-3.63,4.81,-0.07,-0.14,5.83,3.11,1.54,-1.58,1.01,-0.77,4.21,-3.17,-1.9,-1.19 +C385,4.26,-7.58,1.35,2.34,6.39,-1.69,2.01,3.55,2,0.95,-1.38,-0.21,0.25,-4.8,-1.89,0.71,3.01,0.12,-2.49,2.75,-1.63,-2.99,3.32,2.2,-1.51,1.73,-2.66,-0.35,3.29,0.26,-5.68,1.61,-2.81,-2.01,3.51,-0.56,1.71,-0.4,0.8,2.85,-0.41,1.39,-2.35,-0.93,4.15,1.06,2.71,3.03,-0.11,-1.39 +C386,5.05,2,-1.54,-1.57,-1.74,-0.15,1.15,2.57,1.99,-1.57,-0.33,0.78,1.6,1.93,-1.25,-1.33,1.16,-3.4,1.05,-0.46,-0.79,0.67,1.35,0.84,1.56,-1.42,-0.49,0.23,0.39,-2.92,-0.7,1.07,1.48,0.11,-0.74,-0.6,0.25,0.4,-1.78,2.23,1.63,0.85,-1.71,0.18,0.85,1.45,0.84,0.32,-0.03,-0.24 +C387,4.73,8.6,5.2,4.63,2.42,-2.01,0.63,0.67,-1.37,-1.53,-1.01,-0.65,3.31,1.48,0.53,-0.93,-1.84,1.69,0.04,0.37,1.03,1.43,-0.33,3.72,-1.05,2.91,-0.14,0.86,-1.94,0.59,1.45,1.04,2.34,-1.1,-0.12,-0.23,-0.5,-0.49,-0.94,3.14,-0.63,-1.07,1.18,-1.71,-2.53,-0.19,-0.75,-1.3,-2.23,0.13 +C388,2.37,6.63,6.68,7.36,0.17,-0.42,-0.52,-0.08,-2.62,-0.32,-0.07,1.55,-0.49,1.64,-0.81,-1.58,0.04,1.6,1.87,-2.57,-0.25,1.97,-0.62,-3.1,1.23,7.13,2.09,6.72,1.42,-3.93,-1.51,1.01,0.82,-4.28,3.86,4.37,-1.11,0.23,-0.13,2.76,2.67,0.18,1.88,2.76,-6.82,2.87,-4.9,-1.02,1.36,-0.99 +C389,-12.6,0.8,-0.58,-1.13,0.84,2.12,-1.34,0.94,-1.27,0.43,-0.89,0.03,-0.36,1.53,-0.45,-3.65,0.74,0.13,-0.42,0.65,-2.89,0.56,1.34,-1.17,-0.72,-0.38,0.1,2.59,0.2,1.17,0.12,1.05,0.16,0.26,0.94,0.67,-1.76,1.3,-0.14,-1.22,-0.73,-3.72,0.32,0.32,2.56,0.71,-1.91,-1.21,1.44,0.69 +C390,4.36,-1.98,-1.49,-2.32,-0.85,0.11,0.23,-2.82,0.23,0.53,0.6,-1.17,-0.09,1.57,2.83,3.16,-1.24,-1.66,1.34,0.14,2.38,1.05,-1.19,-0.32,-0.14,0.57,-0.21,0.01,1.94,-1.5,0.63,-1.06,-2.11,0.05,-2.8,2.97,1.19,1.17,3.37,1.04,-1.58,-1.34,-1.38,-1.59,0.2,1.42,1.29,0.07,1.18,-2.44 +C391,-4.25,1.83,-1.83,-0.67,2.36,-2.3,4.61,-0.19,3.49,3.1,0.32,-0.33,1.22,-0.79,0.95,0.13,-0.45,-1.27,0.8,-0.58,1.4,-1.04,4.13,1.52,0.87,-0.46,-1.38,-0.34,-4.34,3.51,0.99,-1.01,-2.35,-3.44,1.72,-1.03,-0.66,1.47,-1.14,-1.6,1.73,-0.36,-0.68,-2.76,1.5,-3.25,-0.73,0.23,1.32,-3.1 +C392,-13.65,-0.1,-0.33,-1.81,-0.25,1.9,-1.5,-0.74,-1.24,-2.47,-0.75,1.37,-0.63,-1.63,-1.24,-0.72,0.72,-1.6,-0.6,-0.33,-1.36,-0.72,-1.35,1.82,0.26,-1.68,0.89,-0.3,-1.24,-0.52,1.79,0.18,-1.25,-1.48,0.86,-1.37,-3.16,-0.33,-0.84,0.67,1.89,1.32,-3.27,-0.71,3.26,-1.2,-1.92,-1.04,0.63,-2.52 +C393,4.72,-0.18,-0.8,-2.59,-0.43,0.41,0.73,1.13,0.58,-2.87,-2.61,1.92,-0.85,1.2,-1.51,2.23,2.85,-0.14,1.48,-1.95,-1.26,-1,2.19,-0.32,-2.02,1.12,1.72,-4.2,0.03,-0.85,-0.32,-0.32,-1.17,-1.25,3.93,1.56,4.63,-3.37,0.88,0.6,-0.12,-2.52,0.75,-3.31,2.37,2.51,-0.37,2.82,-1.86,-1.03 +C394,6.55,3.18,-2.56,-2.6,1.55,0.98,3.42,3.24,2.93,-1.48,-1.81,-1,0.61,0.06,-0.34,0.43,1.36,1.29,-1.47,-1.87,1.72,-0.88,2.14,4.57,-3.12,2.12,-2.31,-1.1,-1.11,0.46,-1.61,1,0.75,-2.07,2.81,-0.29,0.85,-1.01,-2.17,-0.97,-0.15,-0.89,-0.26,-0.59,-1.18,0.66,1.29,1.56,-1.66,-0.55 +C395,7.43,4.5,-1.51,-2.95,4.85,-0.06,3.6,-0.49,2.53,-1.1,-0.92,0.92,-0.5,-1.28,-0.97,1.94,-0.31,1.26,-0.87,-0.92,1.64,0.77,-0.35,-0.14,-0.02,-1.79,-0.52,-1.51,-0.14,-1.45,-0.55,-0.29,0.97,1.99,0.39,-1.73,-0.58,0.33,0.07,-0.58,1.38,0.84,1.23,1.31,1.48,-2.96,0.47,-0.31,0.36,-0.24 +C396,4.28,1.74,-0.65,-1.41,-0.61,0.25,1.08,0.17,2.85,1.12,-0.72,-0.59,-1.88,1.41,-0.56,-1.01,2.37,-0.21,-0.05,0.06,0.86,-1.35,0.89,-0.74,0.63,-1.26,0.12,0.62,1.77,2.51,0.57,2.83,1.51,1.93,-1.08,-0.61,-1.17,-1.8,-1.91,1.6,-0.29,-0.81,-2.22,0.35,2.86,3.65,0.79,-0.04,1.92,-2.56 +C397,-12.1,-1.3,-0.19,-1.54,-0.73,1.34,0.49,-0.04,-0.68,-1.95,0.95,0.15,1.74,-0.83,-0.35,0.79,1.22,-0.15,1.79,-1.69,0.36,0.43,-2.02,2.42,0.86,-1.36,-0.91,1.51,0.71,1.13,0.01,-0.55,0.88,0.15,-0.97,1.36,0.95,-0.95,0.13,-3.59,-0.75,-0.28,-2.18,1.75,-2.02,1.57,-0.22,1.3,1.96,-0.24 +C398,3.89,7.53,4.68,4.52,1.63,0.76,1.68,0.21,-2.09,0.47,-3.09,-1.33,3.24,2.55,-0.02,0.5,2.09,2.81,0,0.65,3.41,0.11,-1.45,-0.49,0.32,-0.3,-0.16,1.46,-4.91,-1.57,-2.32,1.56,0.16,1.89,1.03,-0.45,-2.74,1.2,2.51,0.06,1.04,2.08,-0.68,-1.85,1.46,1.04,0.66,-2.03,-1.04,-0.04 +C399,4.03,0.86,-1.09,-1.88,-0.26,-1.79,0.06,-0.74,-0.86,0.43,-0.08,0.64,0.64,0.65,-0.79,-0.23,1.13,0.24,-3.68,-0.72,-1.05,-0.06,-0.39,0.03,-0.05,0.59,-1.15,0.6,0.22,-0.87,0.18,0.52,-0.46,0.5,-0.1,-1.09,-1.05,-0.29,-1.03,-0.62,-1.12,1.04,-1.75,-0.97,0.99,-1.23,1.36,0.31,-1.78,-0.27 +C400,-10.1,2.2,-1.6,-3.84,2.08,2.9,-0.65,1.39,-0.46,0.65,0.48,1.59,-0.37,2.01,0.87,1.79,-4.04,-1.49,-1.37,-1.56,1.93,-1.33,1.27,0.98,1.55,-0.78,-2.7,-0.03,-0.03,1.04,-0.05,-1.27,0.68,0.49,0.82,0.16,0.69,-0.1,0.19,-1.2,-1.03,-0.99,0.25,1.72,0.95,0.46,-2.62,-4.73,2.38,-0.44 +C401,2.56,-12.14,3.24,4.36,4.83,-0.38,-1.09,2.52,1.31,-3.96,1.29,2.5,-1.84,4.91,4.26,-6.54,2.02,2.93,-2.39,-6.49,3.06,6.43,0.14,-0.62,-0.68,0.15,2.91,6.88,-4.09,0.5,-2.35,-0.27,2.33,2.77,2.29,-0.55,6.78,-0.28,-5.82,-0.93,-2.58,-0.43,-1.15,-1.16,0.72,-6.78,0.72,6.53,3.75,4.77 +C402,5.09,7.78,4.11,3.67,2.88,-0.59,0.6,1.86,-2.44,0.26,1.48,-0.83,1.52,-0.85,-1.4,-0.88,1.89,-2.73,-0.05,2.07,1.4,-1.05,-0.69,0.38,0.18,-1.21,-5.36,0,1.08,-0.69,2.22,-2.48,-0.32,4.04,3.94,1.32,1.93,1.18,1.86,0.68,1.74,-2.01,-0.26,-7.01,-0.28,-1.46,1.49,-0.49,-1.27,2.27 +C403,2.47,-2.13,-0.45,-1.75,-2.62,0.07,-0.63,-2,0,1.92,1.23,-2.48,0.17,-2.25,-0.55,1.8,-0.61,-0.93,1.12,-1.79,-0.98,0.36,-0.17,2.09,0.45,-0.66,-1.16,-1.68,-2.33,2.62,-0.96,0.43,-0.2,-1.18,-1.53,-2.73,-2.57,0.25,0.22,-1.17,0.06,-0.36,-0.85,-1.64,-0.92,-0.43,-1.35,1.28,-1.1,2.22 +C404,6.54,1.58,-1.65,-3.19,-0.57,-1.1,0.85,0.35,0.08,-1.55,-1.65,1.19,-0.29,1.07,2.39,-1.09,2,1.55,-0.94,2.71,-1.62,3.18,-0.54,-1,0.05,-0.86,1.54,0.58,0.24,0.69,0.95,-1.67,0.56,2.81,3.28,0.24,-0.2,0.22,-0.01,0.63,-1.37,0.22,1.3,1.71,-1.34,2.66,0.53,-0.56,-1.46,-0.16 +C405,4.2,-2.83,-0.57,-1.58,-3.34,-0.86,-1.74,-0.51,0.03,0.3,0.69,-2.09,0.6,-0.98,3.16,-1.46,-0.36,0.89,-0.5,1.94,-0.41,-2.09,0.88,-1.08,-1.97,0.88,-1.73,1.27,1.49,1.21,-1.61,-0.01,-0.63,1.09,4.37,0.8,1,-1.33,-0.84,-1.5,-3.29,2.36,0.26,-2.11,0.02,1.04,-0.44,-0.81,-2.18,0.17 +C406,4.15,-3.99,0.36,0.2,2.1,-0.52,1.05,-4.21,1.88,-2.4,2.12,-2.94,-0.65,1.87,-1.4,-0.38,-0.96,-2.32,1,1.14,-5.17,-2.45,-1.34,1.14,4.31,1.07,-3.73,-0.88,0.23,-1.64,-0.96,2.46,0.52,1.94,1.17,0.44,-1.5,0.34,0.09,1.95,-0.31,-1.15,0.81,1.73,1.77,-0.89,0.84,-0.96,2.4,-2.23 +C407,4.91,-0.46,-1.46,-2.87,-3.88,0.15,-0.53,2.32,1,1.43,0.62,-0.02,1.12,-0.13,-0.13,-0.34,0.45,0.52,-0.02,-0.18,-0.6,-4.3,0.98,-0.3,-0.6,-1.64,1.52,0.37,0.43,0.28,-0.24,0.31,-0.95,-1.6,-3.4,-0.27,3.19,0.56,-0.02,-0.06,0.51,0.98,-0.87,-0.19,0.98,0.59,-0.7,-0.73,0.68,-2.27 +C408,5.86,3.56,-3.34,-3.34,1.51,-1.38,0.98,3.41,2.4,0.12,0.3,1.11,-0.82,0.53,-0.3,0.15,0.88,0.92,-2.03,1.28,-0.24,1.63,0.75,1.33,0.51,0.11,-0.69,1.01,2.84,-0.97,-1.31,1.65,-0.81,1.23,-0.46,-0.02,-1.29,1.5,0.17,1.18,-0.15,0.29,-1.02,1.32,1.25,-0.34,-1.31,1.17,1.73,-0.59 +C409,4.57,1,-2.16,-2.04,-2.51,0.77,0.63,3.55,-1.05,-2.82,-1.29,1.82,-1.29,2.64,0.29,-1.06,1.66,-1.04,-0.27,0.97,0.96,3.89,-0.24,-2.41,-1.87,1.9,-2.75,0.24,-0.4,-4.47,-0.33,3.01,0.17,2.51,0.97,1.78,1.1,1.03,1.45,0.86,2.02,-1.28,-0.38,-4.02,1.39,0.76,-1.42,-0.46,-1.25,1.34 +C410,-10.29,0.79,-3.62,-5.47,3.49,4.89,-0.47,0.36,-4.25,2.12,-0.6,-0.82,-0.02,0.43,0.44,-0.22,1.15,-0.55,2.21,1.63,0.28,1.39,1.33,-1.48,-1.57,0.31,-2.06,-2.61,-0.22,0.7,-0.51,-0.91,-0.7,-0.03,-0.74,-1.67,-0.49,-0.61,-1.18,-0.06,0.27,-2.14,-1.02,1.05,0,-2.66,0.87,2.03,-0.46,1.69 +C411,-12.49,0.59,-1.79,-0.95,2.18,2.63,-0.93,1.11,-0.78,0.84,-2.64,-0.3,0.45,0.43,-1.91,-0.55,0.72,-3.82,0.13,3.06,0.93,3.67,-3.37,1.15,-2.1,-0.02,2.1,1.54,-1.38,-0.82,-0.95,-0.3,5.48,1.16,-0.84,-0.82,-0.93,-0.85,1.24,-0.44,1.75,1.93,-0.51,1.22,1.42,0.74,-0.3,-1.31,3.18,-0.2 +C412,5.03,0.09,-0.85,-2.02,-4.59,0.85,0.56,2.44,-0.66,-0.6,0.89,0.27,0.82,0.62,-0.71,1.01,-1.19,-2.6,1.77,-1.73,-0.38,-0.68,-0.38,-0.01,1.81,-1.18,0.56,-2.1,2.84,-2.08,-0.06,0.9,-3.59,-1.62,-0.06,-0.14,-2.51,1.71,0.95,-1.18,-2.75,-0.16,0.16,-1.37,1.45,1.58,-2.18,2.84,-2.01,-0.68 +C413,3.53,-5.1,-0.15,0.37,-0.56,-0.45,-2.99,-5.73,-1.64,-2.75,-2,1.46,-2.93,-1.26,1.64,-1.77,0.56,1.8,-0.95,0.2,-2.42,0.13,0.54,1.08,0.82,0.99,-2.62,1.17,2.47,0.04,0.94,-1.8,-0.35,0.91,0.55,2.07,2.9,-0.83,-1.67,-3.58,-1.75,5.67,3.11,-1.76,1.46,-0.97,0.37,1.76,-0.76,0.27 +C414,2.35,-0.58,-0.09,-1.86,-1.61,0.37,0.83,-0.47,-0.18,-3.42,2.09,3.05,-0.3,-1.41,-1.17,-0.37,0.87,-0.93,-0.32,-1.74,-1.42,1.19,-0.83,0.68,0.53,4.05,-1.48,0.78,-2.67,0.43,-0.51,-1.97,0.05,-0.8,-0.19,-3.19,-0.14,0.31,0.29,0.47,0.66,-0.66,-1.97,2.03,-0.4,-0.07,-0.99,-1.49,-0.45,0.64 +C415,3.56,6.38,6.02,5.93,1.51,1.19,-1.19,-0.78,-0.31,2.95,-2.05,-0.65,5.06,-0.3,-1.51,-3.01,-4.01,0.41,-1.24,1.13,-0.88,2.57,0.34,-2.2,3.19,-0.9,2.95,-2.69,-0.24,1.04,0.18,-2.49,-1.39,-2.12,-0.76,-1.06,-4.47,-2.82,1.35,4.02,-1.45,0.04,-1.92,2.07,1.18,-0.23,-0.14,-4.41,-0.03,0.14 +C416,-11.4,1.41,0.96,-0.18,1.01,2.54,-2.54,0.58,3.25,1.47,0.35,-0.33,-0.11,-0.15,0.83,1.44,1.94,0.02,-0.03,0.24,0.63,3.31,0.55,-2.49,0.79,-1.05,1.14,1.26,-0.95,2.09,0.49,-2.22,-1.98,-0.38,0.18,0.78,0.82,-0.79,-0.09,0.96,-1.64,-0.05,1.28,-0.61,-0.1,1.22,1.04,-1,-0.86,-0.8 +C417,-11.73,-0.18,0.4,-2.02,0.17,-3.39,3.41,-1,1.45,3.08,1.45,-0.2,0.14,-1.6,0.64,2.38,1.16,-0.77,-2.11,0.53,1,1.06,1.12,0.57,-2.72,1.5,-1.58,1.26,0.96,1.31,-2.19,0.39,1.24,2.27,-0.18,-2.04,0.33,-0.23,-2,-0.35,2.08,-1.07,1.21,1.93,0.18,1.19,1.24,1.04,-0.67,-4.42 +C418,5.8,-4.29,0.21,-0.73,1.28,0.61,1.12,-5.85,1.33,-1.94,-1.59,-2.27,-1.2,0.52,-2.34,-0.18,0.17,-2.1,2.49,1.31,-0.36,0.43,0.03,0.28,2.46,-0.67,0.38,-0.22,2.54,1.63,-2.58,-1.31,2.59,1.17,-0.06,-0.14,-1.47,-2.6,-0.82,2.87,0.45,-1.4,0.2,-1.2,1.62,-1.55,0.33,-0.38,-0.38,-0.13 +C419,4.39,0.07,-0.91,-2.59,-0.72,-0.1,0.23,1.23,0.36,1.32,-2.01,0.63,0.53,1.16,-0.61,-1.43,-0.35,-1.1,0.38,-0.21,-2.13,-0.72,0.51,1.87,0.63,0.62,0.99,-1.53,0.69,1.56,-0.94,1.99,1.09,-0.04,2.89,0.52,0.55,-0.18,0.84,-0.45,1.17,-0.27,0.28,-1.15,-1.04,0.67,-0.31,0.89,0.56,-0.87 +C420,3.27,8.22,4.22,3.65,3.77,-0.85,0.8,-0.86,-1.31,-0.91,0.87,-1.35,3.34,-1.74,-1.9,-0.35,-0.44,-2.32,-1.11,0.86,-2.35,1.53,-2.2,0.19,-0.27,-2.59,-0.52,-0.08,-1.73,0.08,1.04,-1.8,-0.23,0.58,-1.22,-3.4,-0.76,1.33,-1.8,2.41,3.79,-2.4,-2,-2.74,-1.35,-1.98,-0.33,-1.54,2.47,-0.11 +C421,2.91,9.21,4.65,3.81,2.81,-0.31,-0.06,-1.21,-1.27,0.68,-2.06,-0.46,3.23,0.09,1,-0.93,-1.79,-2.02,-1.22,0.01,-3.11,0.61,-1.11,4,1.17,-0.32,0.42,-0.9,0.41,2.16,-2.74,0.84,0.15,-1.98,0.12,1.55,-1.05,1.86,0.86,1.28,2.24,-0.6,1.11,1.11,-1.74,1.74,-0.72,1.22,1.86,-2 +C422,5.62,2.45,-1.18,-1.88,-1.34,-0.54,0.31,0.67,0.23,1.32,-2.2,-1.48,0.08,-0.49,-0.85,-2.49,-1.25,2.71,0.44,-0.63,-1.1,0.08,-0.84,-0.89,0.9,-2.12,-1.83,-1.05,-1.01,-0.61,-2.25,-0.38,2.68,-0.94,-0.62,1.17,1,0.04,0.99,1.33,1,1.69,-1.5,2.62,0.4,2.75,-0.59,0.15,-1.36,-0.69 +C423,-11.86,2.2,-0.54,-2.12,1.32,0.96,0.48,-0.7,1.03,-1.31,0.16,0.64,0.64,0.22,-0.41,-2.14,-1.3,-3.82,0.71,-0.77,-0.61,-1.81,-0.2,-0.18,0.43,1.3,-0.43,1.26,-3.14,1.13,0.2,-0.01,0.15,0.75,-1.96,0.93,0.88,-2,-0.28,-0.85,0.21,2.82,0.94,-1.29,-0.45,-0.91,-1.42,0.36,-1.64,-0.17 +C424,1.59,4.39,4.97,5.04,-0.86,0.19,-1.45,-1.78,-4.18,0.28,1.8,-0.41,2.22,0.23,0.23,3.58,0.78,-3.34,1.01,-1.61,-0.7,2.65,-1.21,-1.63,1.07,1.08,2.61,-2.22,1.2,1.81,1.79,-1.37,0.43,-1.94,1.57,0.39,0.56,1.64,2.32,0.73,-0.39,0.26,-0.31,-1.13,0.72,-1.74,0.27,2.04,1.58,-2.99 +C425,4.66,-0.95,0.16,-0.91,-1.27,0.18,-0.19,0.94,0.48,0.73,-1.48,-2.6,1.85,0.82,1.28,-0.63,0.23,-2.13,0.08,0.53,1.86,0.11,0,2.78,-0.98,-2.19,-0.35,-3.17,-2.19,0.45,0.09,-1.23,-0.03,0.73,-0.12,1.21,-0.47,-1.9,0.91,0.04,0.65,0.16,2.07,0.97,-1.54,-1.42,0.11,0.15,0.11,-1.04 +C426,-15.43,-0.54,3.32,2.17,-1.92,0,-2.43,-0.73,2.62,0.18,-0.73,1.43,1.34,-1.14,0.57,-1.92,0.82,-0.62,1.61,-0.36,-0.13,-0.95,-2.19,-0.99,-1.93,1.2,2.97,-1.17,-1.04,0.51,-2.05,1.93,-0.12,-0.62,-1.35,1.01,-2.01,0.59,0.73,0.74,4.35,0.55,-1.34,-0.7,0.72,0.44,2.26,-1.27,0.18,-1.55 +C427,-0.84,-17.59,10.93,12.82,-21.69,31.51,27.11,2.4,3.02,-4.54,-3.24,-1.16,7.22,-2.34,0.43,1.67,0.58,2.7,-2.1,1.12,4.93,0.5,-4.21,-0.93,0.59,-2.92,5.26,-0.48,2.51,-2.32,0.35,-0.79,0.3,0.1,-0.02,0.01,-2.18,-1.8,-3.24,1,-1.68,-1.78,-1.54,-0.28,-0.44,0.55,-3.82,0.33,0.88,-2.49 +C428,-13.74,-2.09,3.81,2.19,-3.79,-7.64,2.39,0.73,2,1.29,-0.53,-0.34,1.77,2.05,-0.55,1.23,-1.65,0.5,-1.43,2.1,-2.04,0.63,0.98,-0.48,-1.74,0.67,2.3,-0.23,3.48,-1.84,-1.22,0.93,1.26,-1.34,-1.82,-2.54,-0.77,0.77,-0.73,1.03,2.48,-1.4,1.5,-0.3,1.85,1.47,2.48,-0.23,-1.69,1.97 +C429,4.08,1.75,-1.11,-2.49,0.16,0.03,2.46,-0.69,0.37,0.06,1.8,-0.06,-2.24,-1.21,1.44,-1.85,-0.4,-0.19,-0.2,0.41,0.48,0.49,1.4,-2.06,-1.36,-0.37,-1.08,-0.21,-0.19,0.98,-1.09,-2.12,0.27,-1.66,-0.61,-0.31,-0.95,1.91,1.26,-1.31,0.72,-1.01,-1.3,0.95,0.17,3.18,1.47,-1.46,1.47,1 +C430,3.72,0.63,-0.91,-1.89,-3.38,0.25,-1.34,2.37,1.15,2.51,-1.38,0.13,2.26,-0.46,0.02,0.71,3.02,2.42,1.31,2.5,1.1,-1.1,0.35,-0.82,1.48,3.4,-1.64,-0.2,-0.25,2.47,-1.36,-0.77,-2.62,-2.2,1.67,1.24,0.02,-0.04,1.38,-3.44,-1.2,-0.36,-0.82,0.93,0.08,0.59,0.08,-2.2,0.3,-1.47 +C431,4.58,-0.09,-2.03,-2.32,-1.49,-0.66,0.72,-0.68,-0.25,0.17,2.48,-0.1,-0.5,0.06,-1.61,-0.07,1.11,-0.49,0.93,-0.34,-0.42,1.16,-0.59,-1.08,-2.6,-0.64,-0.8,0.39,0.89,1.59,0.13,0.31,-0.64,1.81,1.27,0.11,0.4,-0.17,-1.97,-1.04,-2.73,-1.71,-1.07,0.72,0.09,-0.71,-1.94,0.35,-0.48,-1.2 +C432,4.22,-5.14,-0.7,0.05,1.25,0.55,-1.11,-5.07,-1.11,-0.03,-2.87,2.33,-0.47,-2.84,1.34,-0.52,-0.03,-0.14,-2.43,2.22,-2.83,2.88,1.05,-0.14,-0.23,-0.01,1.06,-2.76,-0.29,1.94,0.4,-2.51,-1.81,-5.14,-1.61,1.47,-0.44,2.04,2.36,-2.08,-1.85,-1.26,-1.39,-1.24,1.07,-3.56,-1.28,-0.59,0.16,-3.99 +C433,2.97,8.35,6.42,7.21,2.27,-0.29,-0.44,-1.29,-2.02,1.02,-0.37,-2.42,0.02,-1.74,2.06,-0.43,-2.04,-1.94,-0.84,0.12,-2.22,1.7,-1.4,2.36,-0.03,1.56,-0.23,-1.71,1.33,-4.07,-2.25,2.18,-0.18,-1.65,0.79,0.98,-1.15,-4.94,-0.09,-0.91,-0.13,0.2,-0.48,2.26,1.74,2.3,-1.36,0.73,-0.65,-0.11 +C434,2.53,-12.23,2.23,2.77,4.52,0.51,-1.78,1.59,0.92,1.8,1.3,-1.89,1.66,-0.57,1.43,0.07,1.83,4.94,3.29,-0.23,1.06,-1.05,-0.6,-0.58,1.37,-0.41,-2.07,-2.69,-2.84,-0.45,-4.66,-1.13,-1.1,-0.91,2.52,0.77,-1.45,0.64,0.56,-0.2,-0.77,-0.44,-1.41,-1.6,-3.67,-2.15,1.15,2.72,-0.25,0.02 +C435,4.55,0.05,-1.12,-1.37,-1.33,-0.86,-0.32,-0.58,0.64,1.54,0.64,-0.93,-1.24,-2.25,2.51,1.74,-0.48,-0.65,-1.28,0,-0.38,-0.15,-0.92,0.21,-1.34,-0.98,-1.94,-1.19,1.74,2.29,-1.3,0.69,-2.79,-0.07,-0.9,-1.7,-0.06,1.46,-2.78,1.46,-0.17,-0.81,2.45,-0.39,2.78,-1.03,-0.41,-2.5,-0.5,-0.41 +C436,2.23,4.65,5.47,4.33,-1.39,1.78,0.88,-2.42,-1.22,1.42,1.07,1.22,-4.47,-3.81,1.97,0.66,1.76,1.45,2.74,-1.78,0.76,0.17,1.46,-2.89,0.35,4.45,0.85,1.72,1.97,-1.62,2.31,-3.19,-4.12,0.49,0.71,-4.27,-0.43,0.04,2.31,3.25,-1.05,1.34,0.28,-2.53,-0.79,-0.04,-3.5,3.49,-0.27,-0.9 +C437,4.26,-4.85,-1.06,0.16,0.52,1.28,-0.77,-3.58,0.03,-2.01,0.8,-1.65,-0.75,1.95,-2.05,2.98,1.21,0.08,-0.89,0.25,0.61,-3.97,2.52,-1.21,2.69,0.58,1.33,1.33,-0.96,2.86,-1.86,0.07,1,0.36,-0.98,-2.32,-2.95,-1.47,-1.36,-0.2,-0.38,-1.38,-3.04,2.77,-2.28,-0.12,-0.29,1.91,1.03,-0.76 +C438,-15.74,-0.06,0.47,0.02,-0.37,2.42,-4.02,1.57,1.68,0.44,-0.44,-2.08,1.9,0.48,-0.35,-2.76,0.47,-1.38,0.85,0.34,1.29,-0.38,-0.58,-0.05,2.27,-2.41,-1.73,1.3,1.67,-0.46,2.02,0.5,-0.8,-1.01,1.8,-0.49,0.43,0.28,-1.92,-2.21,-1.45,1.09,0.27,-2.23,3.2,-1.07,-1.75,-0.89,-0.28,-0.31 +C439,-10.95,1.35,-0.12,-0.77,0.82,1.7,-1.47,0.36,0,-0.55,0.58,-0.63,0.73,-0.48,0.97,1.87,-1.58,1.54,2.2,-2.22,0.13,-0.91,3.05,-0.96,-1.86,-1.76,-0.15,-0.28,-0.63,2.82,1.68,0.55,-1.17,-0.17,0.09,-1.75,-0.76,0.75,-0.87,-0.13,2.93,1.86,1.4,0.37,0.85,1.96,2.82,0.21,0.28,-0.89 +C440,3.94,8.05,5.15,5.68,0.99,-1.26,-0.27,-0.75,-1.62,0.04,-2.83,-1.75,1.49,1.13,-1.59,-1.76,0.15,1.55,2.04,0.38,0.39,-2.54,1.67,-1.75,-0.15,1.33,1.46,-1.16,-1,3.37,-3.08,-2.11,3.99,0.34,2.01,2.46,0.53,2.87,3.78,2.38,-1.07,-1.79,-1.29,-0.53,0.41,0.59,4.16,0.38,-3.04,2.17 +C441,4.65,6.2,3.68,3.47,1.18,-1.34,-0.23,0.93,-1.05,0.03,0.62,-3.78,3.2,-4.51,1.44,1.17,-2.55,-0.04,0.39,2.33,0.15,2.08,-0.35,0.69,1.22,0.55,-1.57,-0.49,-1.39,2.35,2,0.12,2.4,-0.63,1.59,0.83,-0.9,0.76,-2.39,1.08,-0.61,0.69,-4.59,0.58,1.64,0.1,-0.19,-3.12,1.16,2.68 +C442,-12.2,-3.19,0.81,-0.1,-3.48,-4.89,3.94,-0.37,-1.94,3.91,-0.23,0.26,-0.2,-1.44,-1.84,1.38,-0.47,-2.23,0.81,-1.66,-1.72,2.14,0.97,-0.3,-0.13,-0.07,-0.15,1.48,0.3,-0.11,-1.36,-0.16,0.24,2.73,-2.92,-0.61,-1.79,-0.57,0.24,2.18,0,0.9,-0.44,-2.48,-3.21,1.18,-2.18,0.13,-0.16,1.42 +C443,2.95,0.51,-0.98,-1.82,-2.47,-1.59,-0.7,1.48,-1.79,-0.33,-0.55,-0.24,-1.61,-0.02,-0.4,2.12,-2,-0.45,-0.04,1.02,-0.44,0.68,-1.7,0.99,2.25,0.7,-3.22,1.19,1.3,1.26,1.18,-1.21,-0.71,0.84,1.59,-1.61,1.9,-0.47,0.04,0.08,0.63,0.14,0.53,0.11,1.31,-2.18,0.22,-3.23,-2.9,0.37 +C444,-11.21,3.27,-2.43,-3.26,4.26,2.44,0.43,0.55,0.5,-0.66,0.86,-0.8,0.85,-0.91,0.58,-0.4,-1.97,-1.12,0.15,0.24,0.68,-0.38,0.89,0.79,1.9,-0.48,-1.25,0.96,1.29,-0.86,-1.44,0.52,-0.07,-0.68,-0.58,-2.48,-0.8,0.58,1.5,-0.02,1.72,-0.72,0.71,0.28,-0.48,1.02,0.39,0.63,0.84,1.89 +C445,-12.91,0.29,0.16,-2.64,0.09,2.5,-2.27,-0.55,-1.54,4.23,-0.3,-0.4,-0.85,1.92,1.74,-1.21,-0.85,0.34,-0.53,-1.47,-2.66,1.97,1.63,0.32,2.05,0.98,0.96,0.12,1.96,1.07,-0.45,1.1,0.61,0.88,-0.09,0.07,1.86,0.02,-0.71,-0.14,-0.35,-1.23,0.47,-3.47,-0.35,-1.73,-1.06,-1.75,0.8,1.64 +C446,1.61,-13.26,1.32,3.68,7.38,-2.38,0.73,3.77,0.34,2.19,-1.95,0.95,-0.49,-2.73,-0.15,0.5,3.25,-1.03,2.35,-2.44,1.46,1.95,0.59,1.72,0.03,-0.73,4.11,-0.24,-2.79,3.32,-3.07,-0.16,0.34,-0.83,-2.07,2,1.68,3.16,-3.56,1.01,0.7,-2,-0.7,0.73,-0.74,-0.95,-3.61,-0.4,0.36,-3.1 +C447,4.47,0.97,-1.05,-2.18,-2.64,-1.28,-0.51,2.63,-0.84,0.19,-0.91,-0.66,-0.37,1.27,-1.05,-1.38,-0.04,-2.8,0.33,1.34,2.2,0.11,1.78,-1.97,-0.03,-0.39,-0.97,2.17,0.31,-1.44,3.05,-1.24,-0.09,-1.16,2.33,0.65,-1.33,1.5,-2.12,-0.49,-1.91,-1.52,2.37,2.53,-1.83,1.69,-0.42,-1.23,-2.05,1.1 +C448,5.79,1.1,-1.11,-1.74,1.04,0.71,0.58,1.04,0.21,0.12,-0.88,0.32,-1.45,0.89,-0.7,1,1.71,0.94,-0.83,-0.71,1.06,0.16,1.93,-2.52,-1.44,1.91,-1.7,-0.6,-0.38,2.76,-1.19,-1.53,-0.28,-3.44,-1.28,-0.73,0.75,0.76,-0.73,-1.29,0.64,0.05,1.01,0.36,1.35,0.38,0.37,0.17,-1.18,-2.34 +C449,4.32,-0.5,-0.41,-2.19,-4.45,-0.04,-0.45,2.43,1.01,0.05,1.64,-0.84,-2.51,1.15,-0.04,-1.52,0.31,0.6,-0.16,-2.9,-2.08,0.88,-0.65,-2.61,-0.14,-0.53,-1.11,0.72,-3.99,2.12,-1.98,-0.01,-0.44,-1.6,-2.15,1.55,-0.68,0.95,1.6,-0.71,-0.49,-1.07,0.46,1.24,0.16,0.51,1.37,-0.41,1.46,-0.69 +C450,3.44,-2.08,-0.53,0.84,-3.43,0.25,1.67,0.08,-0.4,0.92,-0.36,1.15,0.51,2.72,-3.58,-1.37,-5.59,-0.36,2.19,-2.03,-1.18,-0.3,0.27,-1.81,-0.42,0.48,0.23,0.95,2.69,-0.9,0.02,-1.69,-2.02,0.94,-5.07,-0.53,0.83,0.93,-0.93,0.32,-2.39,1.77,-0.31,-0.14,-4.06,-0.52,0.18,-4.01,-1.11,-1.65 +C451,-8.03,0.68,5.2,5.58,-3.35,3.58,-9.09,0.37,11.8,1.51,0.55,-0.16,1.66,-1.58,-0.95,-0.06,-1.13,2.45,0.44,-0.78,1.29,2.63,2.17,-0.17,2.73,-0.61,-0.51,-0.61,2.19,-0.83,0.86,0.07,0.09,0.02,-0.47,-0.47,-1.2,-0.75,0.22,-0.52,-0.95,-0.76,-1.69,0.46,-0.39,0.81,1.5,0.46,-0.43,4.13 +C452,5.26,1.77,-1.31,-1.76,-1.29,-0.51,0.03,-0.22,-0.43,1.25,2.3,-0.32,-0.07,0.03,0.09,1.36,1.05,0.46,0.71,-1.9,0.63,1.91,-1.66,0.07,-1.58,-0.31,-0.8,-0.39,-0.3,0.01,-1.11,-0.77,-0.09,-0.24,0.82,0.41,-3.22,-0.61,-1.83,0.91,2.81,0.65,1.69,-0.41,-0.72,-0.3,2.11,-1.33,-3.6,-0.54 +C453,3.44,-0.85,0.31,-2.18,-2.84,-0.92,-1.73,-0.56,-0.24,1.05,2.16,-3.04,-0.93,-1.29,0.34,1.8,-2.53,-0.73,1.93,3.42,0.08,1.86,0.77,-0.25,0.45,-0.27,0.76,-2.1,2.1,1.56,-2.53,-0.32,-0.12,0.12,2.46,0.33,0.54,1.22,0.93,0.22,-1.13,-1.37,2.35,3.36,-2.41,-3.58,-3.66,-1.75,-0.82,-1.1 +C454,3.71,7.47,3.78,3.1,2.06,0.28,0.04,-1.97,-1.33,1.57,2.65,1.73,-4.91,0.73,-0.68,2.72,2.01,2.12,0.16,-5.17,1.27,1.66,-0.93,-0.22,-1.68,1.97,3.9,0.45,2.16,0.67,-0.16,-2.05,-1.38,-3.1,1,-1,-0.31,1.04,-0.01,-0.59,0.75,4,-2.21,0.51,2.79,-1.03,1.17,1.2,-0.92,-1.73 +C455,-12.8,0.56,-3.02,-2.38,0.09,2.28,-2.06,1.56,-6.35,1.5,-0.85,-3.01,-0.66,2.96,-4.58,-4.99,-2.99,7.36,-1.8,-1.85,-2.06,2.17,3.08,-1.54,1.54,0.46,0.72,-3.21,3.43,-0.99,-0.49,-7.02,0.24,-2.31,1.57,-2.54,-1.91,3.08,-2.18,2.85,0.91,-3.1,-3.28,2.37,3.32,1.95,1.16,2.04,0.72,-0.81 +C456,3.21,-1.41,0.18,-1.22,-3.38,-0.61,-2.23,-0.16,-1.69,-0.14,3.47,-0.03,-0.6,-1.69,0.07,-0.31,-0.64,2.15,0.2,-0.77,-1.21,-0.26,0.51,0.58,-0.35,-0.4,0.9,0.25,-0.04,0.6,-1.6,0.26,0.84,-0.65,-1.15,-1.05,-0.42,-0.56,-0.76,-0.44,1.76,0.01,1.01,1.2,-1.19,-1.52,0.7,1.06,2.32,0.54 +C457,-14.74,0.33,-1.82,-1.3,0.97,1.15,-1.64,2.12,-0.45,0.01,-2.82,-1.29,0.82,1.74,2.8,0.47,-1,2.14,-0.27,1.6,-2.72,-0.25,-0.57,1.66,-0.38,-0.01,-1.83,1.18,-0.44,-0.25,2.71,-1.73,1.26,1.98,2.61,-1.4,1.26,-2.11,0.94,-0.35,1.02,-1.48,-1.64,1.9,1.34,0.66,0.04,1.44,0.79,-0.43 +C458,4.36,-1.89,-0.79,0.04,1.89,1.03,1.44,-3.33,-0.33,-1.28,0.11,0.53,-0.21,1.19,-0.5,0.6,1.23,-0.53,-0.18,-0.26,-0.83,0.78,1.04,-1.13,1.46,-0.38,-1.47,1.09,1.17,-0.28,0.6,-1.43,0.25,1.55,-0.43,0.59,2.6,0.86,-0.46,0.21,0.05,-1.67,0.34,-2.44,0.69,0.08,0.8,-1.43,-1.02,2.04 +C459,-9.98,0.75,1.37,0.31,-0.58,-7.7,4.51,-1.41,-0.8,0.46,0.21,0.28,-0.65,0.09,0.14,-1.97,2.42,2.15,-1.37,-0.18,1.57,1.75,0.59,1.5,-0.58,-2.18,2.54,-0.82,-1.48,0.46,-1.31,-4.26,0.85,-3.17,2.8,1.24,2.84,2.54,4.72,0.25,-0.12,-1.23,0.9,-0.09,0.55,4.27,-0.36,-1.27,3.11,-1.01 +C460,4.31,1.09,-1.49,-2.54,-1.33,0.57,-0.79,0.88,1.07,1.48,-0.61,-0.83,-0.25,-3.05,1.52,-1.49,-1.21,1.72,0.84,-2.11,-0.21,-0.87,-0.71,-0.13,-0.09,0.14,-1.67,0.14,-4.55,0.64,2.86,0.46,1.26,0.27,0.15,-0.01,0.38,0.88,0.5,-0.51,-0.43,-2.47,-0.47,-0.66,2.34,0.21,0.66,-2.43,-1.03,0.85 +C461,4.96,-3.89,0.59,-0.16,0.97,1.26,0.17,-4.95,-0.34,-0.64,0.17,-4.17,0.29,1.94,-5.13,-1.11,-2.82,-1.34,0.09,0.01,1.76,-0.26,-1.72,0.72,-0.73,1.58,-3.36,-0.77,0.61,-2.41,-1.72,-3.13,-1.04,-1.09,-1.25,2.06,-0.01,2.86,0.95,-0.23,-0.21,-0.16,-1.33,2.76,-0.8,-0.46,2.3,1.92,0.94,1.08 +C462,2.99,-2.31,-0.22,-1.45,-3.55,0.01,-1.32,-0.71,-1.06,2.36,1.14,-0.4,-1.87,-0.56,1.64,0.84,-2.45,-0.68,-0.35,0.45,0.91,0.6,-0.8,0.34,-0.99,1.28,0.25,-1.75,0.48,1.22,1.33,1.3,-0.12,1.61,1.77,2.25,2.15,0.42,-0.07,3.07,1.16,1.5,0.31,-1.45,1.45,3.51,-1.6,0.91,-0.61,-0.1 +C463,5,1.66,-2.11,-1.97,-2.31,0.44,0.59,2.39,2.64,1.38,1.53,-1.26,0.1,0.88,1.18,-1.4,-0.54,1.92,1.03,-2.02,1.17,0.46,2.68,2.13,0.84,-0.61,-0.86,-0.58,-0.1,-0.2,2.14,-1.83,1.5,1.72,-1.28,2.09,0.51,0.37,-0.09,1.38,-1.55,-0.04,-0.75,-1.2,1.11,0.39,-0.07,-0.42,0.78,-0.63 +C464,4.19,0.07,-1.67,0.05,-0.56,-0.73,0.62,1.18,0.53,-0.17,-0.42,-2.21,-1.27,1.75,0.94,-0.29,0.64,1.24,-1.3,-1.9,-0.54,1.39,-0.1,-0.76,-0.27,-2.48,-2.26,0.52,0.83,-2.07,-1.17,0.25,-0.83,0.97,-0.34,0.35,-1.16,1.35,0.93,-0.8,-0.38,-1.22,-0.57,-0.16,2.14,1.1,1.35,-2.57,-2.22,0.72 +C465,4.64,-0.32,-0.31,-0.97,-1.95,-0.4,-1.27,-0.53,1.35,1.25,-0.6,2.07,-1.22,-2.27,-0.1,1.02,2.52,0.6,0.43,-0.05,0.46,-1.39,-1.5,1.37,1.61,-2.81,-0.09,1.23,-1.15,2.26,-1.95,1.18,-2.03,1.38,-2.01,1.17,1.71,-0.72,2.43,2.87,-1.21,-2.73,0,1.66,0.39,0.77,1,1.15,0.03,-1.35 +C466,3.66,1.49,-1.08,-0.94,-0.46,0.86,0.87,1.3,1.85,1.89,-2.07,1.14,-0.41,0.73,0.66,0.32,-0.23,1.17,0.26,-0.01,1.56,-1.29,-1.03,1.63,0.97,-0.88,2.93,-0.76,-0.85,0.14,0.74,1.34,0.54,-0.28,0.13,-2,-0.17,-1.88,1.04,-0.79,-0.1,-0.8,3.41,-3.11,1.46,-0.62,0.82,-0.59,-1.56,-2.55 +C467,-14.86,-0.8,2.82,2.56,-2.61,-4.2,1.22,-0.57,1.71,-2.08,1.01,-0.13,1.41,0.77,-0.13,0.5,-1.81,1.02,0.32,-0.29,-0.99,-1.51,2.19,1.88,1.35,-0.03,-0.87,0.5,3.88,2.27,1.22,-2.05,-0.27,0.98,-1.27,-1.37,0.09,0.96,0.33,-0.35,-1.98,2.56,-0.79,-0.11,1.26,-1.19,-0.24,1.87,0.86,-2.86 +C468,3.66,6.89,3.5,3.51,2.59,-1.45,-0.05,0.22,-0.32,-0.9,0.31,0.59,1.56,1.5,2.52,-1.38,-0.6,3.96,-0.39,-1.18,-1.86,-1.44,-0.39,-0.96,-3.01,0.41,0.79,-0.45,-2.94,-2.42,0.57,1.42,2.07,-1.94,-0.05,-1.72,-0.73,4.45,-1.7,0.61,-0.47,0.26,-1.66,-0.47,-2.64,-0.04,-1.48,0.02,-1.75,1.64 +C469,3.44,-8.29,0.88,2.79,5.15,-1.36,-1.14,3.95,-0.09,-3.83,1.16,1.38,0.62,-0.81,1.67,-0.84,2.1,1.62,3.09,1.54,-0.11,3.72,-2.01,4.99,2.9,1.42,0.84,2.32,1.58,1.38,2.2,3.09,-0.2,2.1,-4.43,0.46,0.87,1.39,1.18,-0.76,-2.33,3.75,-2.95,-2.18,-4.04,1.26,-1.75,-2.48,1.46,0.37 +C470,3.67,0.28,0.03,-1.54,-1.07,-0.77,0.38,2.5,-1.82,-2.9,-0.31,0.72,-0.31,2.15,0.03,0.16,1.5,1.97,0.47,-0.54,-0.4,1.43,-1.79,1.46,-1.09,1.44,-1.39,0.47,-0.05,1.46,0.79,-1.54,0.26,0.39,0.24,-0.18,-2.91,1.84,1.5,-1.73,1.23,0.77,-0.33,-0.88,-0.14,1.27,2.56,-0.81,-0.2,0.68 +C471,3.17,0.04,-1.26,-3,-2.67,-0.44,-1.14,-1.43,-0.12,-1.25,1.98,0.08,0.61,-0.22,0.36,-0.3,-0.28,-0.1,-0.19,-1.54,-0.73,-2.49,1.78,0.26,-0.47,0.07,0.38,-2.46,0.44,1.86,-1.24,-0.07,0.9,1.04,-1.59,2.02,-1.79,-0.08,0.93,1.12,2.22,0.8,1.53,2.76,-1.33,0.57,-0.33,-0.36,-0.01,-0.79 +C472,5.81,2.61,-1.91,-3.67,0.48,-0.24,1.61,3.74,2.65,-0.16,-1.09,0.21,-1.08,0.18,1.01,-1.04,0.03,-0.18,1.61,-0.09,0.87,0.68,-2.07,0.26,-2.04,2,0.37,-0.55,-0.54,-0.43,0.15,-2.54,0.46,1.36,-0.42,-0.59,-0.72,1.36,-0.85,-2.48,1.58,1.95,1.3,-0.56,0.52,-0.36,-1.41,0.54,1.05,-0.61 +C473,2.44,-9.99,2.4,2.83,5.52,0.56,-0.53,0.78,2.2,2.53,1.39,-1.7,-1.38,-1.81,-0.1,1.31,-0.09,1.84,0.38,-1.4,-5.78,0.61,4.35,0.77,-3.17,2.76,-0.2,-1.31,1.03,0.29,-3.28,-1.9,-0.13,-2.02,1.48,-0.42,-0.75,-4.15,2.01,-0.4,-3.03,1.3,-1.83,-2.12,-2.94,-1.83,0.33,-1.25,-3.52,2.73 +C474,4.53,1.86,-2.8,-3.07,1.12,-1.06,1.39,-1.14,0.89,0.8,-1.49,0.64,-0.64,-2.37,-0.63,-0.7,-0.55,-0.5,-2.05,-0.87,-1.78,-3.66,-0.91,-0.22,0.87,0.42,-0.35,0.74,1.31,0.42,0.5,2.96,0.48,0.44,1.44,-1.78,0.33,-0.22,-0.1,-2.35,-0.32,0.32,-0.98,1.57,0.38,1.26,-2.09,0.61,0.17,-0.9 +C475,2.99,-3.35,-0.56,-0.98,-6.33,0.37,-2.55,1.15,-1.66,1.67,1,2.16,0.46,-0.48,1.7,-0.52,-6.17,-1.39,0.73,-1.51,-2.1,1.31,2.52,1.89,0.5,2.04,0,-0.96,-1.89,1.2,0.6,3.51,-1.77,-3.44,0.85,0.38,-0.63,-0.45,0.91,2.36,2.63,-0.58,-1.25,0.04,0.91,-0.29,-0.04,-1.28,-0.76,-1.32 +C476,4.03,1.05,-1.08,-1.67,-1.35,0.71,-0.84,2.35,0.94,-1.52,0.77,2.98,0.06,-0.66,0.67,2.5,0.59,2.94,-0.3,2.15,-0.51,-0.85,-0.95,-1.72,1.2,0.42,0.44,0.91,1.26,1.11,-1.48,-1.06,-0.13,1.4,1.06,-2.04,1.08,-2.63,-0.4,2.09,-0.6,2.84,0.6,-1.43,0.46,1.88,2.56,0.26,-0.14,-0.46 +C477,4.54,2.57,-1.31,-2.2,1.54,0.02,0.75,1.8,1.83,-1.88,-0.84,1.13,-1.74,2.42,0.03,-1.89,-0.58,0.11,-0.09,-0.2,-0.67,-0.85,1.73,-0.85,0.96,0,1,0.36,1.65,0.62,-0.14,-0.78,-2.61,-0.69,0.1,1.14,-1.1,2.55,0.87,1.61,0.76,-2.05,2.85,2.16,0.09,-1.07,1.19,0.18,0.2,2.09 +C478,4.64,-0.09,-2.18,-2.54,-2.8,0.53,1,1.77,0.17,0.04,0.15,1.81,0.47,0.52,1.44,-2.59,-2.25,2.17,-3.17,3.96,2.49,1.05,0.31,-0.95,0.45,-0.11,-0.28,0.6,-0.35,0.08,0.37,2.12,0.09,-0.41,1.2,-0.29,1.8,-0.47,-0.62,0.54,1.86,-0.44,1.67,0.09,2.62,0.14,-0.32,0,1.27,-2.78 +C479,4.18,0.46,-1.58,-2.28,-0.56,-0.41,-0.35,-0.5,0.39,0.9,-0.08,0.22,-0.82,-2.54,-1.05,0.34,3.01,-0.52,0.6,0.46,-0.97,1.83,0.86,2.25,-2.09,0.27,1.22,1.23,3.51,-0.99,-1.1,-1.24,-1.04,-1.73,-1.16,0.72,-1.45,-0.05,-0.11,0.08,-0.37,0.63,-0.86,0.38,-0.46,-1.69,0.39,0.32,-1.49,0.36 +C480,3.3,-1.97,-0.92,-1.56,-5.03,0.99,-1.21,-0.83,-3.91,0.97,-0.01,2.72,1.98,-2.24,-1.31,0.6,-1.08,-3.15,3.17,-0.81,-0.42,-3.89,0.1,-5.18,2.62,-0.84,-0.35,-0.03,1.19,-1.35,-1.79,-0.37,-1.44,-0.25,1.13,0.8,-5.41,0.53,-0.51,-1.5,-1.28,0.02,0.18,1.56,-0.16,0.18,0.31,-0.28,-1,1.27 +C481,-14.46,0.16,1.03,0.3,-0.36,0.22,-2.57,0.22,-0.05,-0.93,-1.12,-1.39,-0.65,1.24,-0.62,-2.6,1.99,-0.06,-0.81,-0.28,0.45,1.58,0.23,0.6,-1.3,1.49,0.86,0.04,0.35,2.15,0.73,-0.63,0.24,-0.22,-0.51,-2.88,0.88,1.21,-1.46,-0.81,0.85,1.43,0.71,-0.54,1.99,1.56,0.9,-2.35,0.63,1.52 +C482,5.24,1.42,-1.17,-2.65,-0.68,-0.28,0.31,3.14,-0.56,1.55,-0.38,0.36,-0.04,0.86,-1.58,-1.87,-2.12,-0.42,0.28,0,1.81,0.29,1.79,-0.58,0.5,-0.76,-2.53,-1.3,0.25,-2.07,0.17,0.64,0.35,0.92,0.12,0,-1.63,-0.59,-0.2,0.88,1.08,2.15,-1.34,-0.97,1.7,0.77,0.13,1.04,0.85,-0.68 +C483,4.13,0.12,-1.5,-2.21,-1.3,-0.53,-0.48,0.93,1.02,1.97,-2.59,-0.5,-0.35,1.65,-0.24,-2.2,-0.45,0.28,2.01,-0.56,-0.62,0.89,1.13,-0.07,-0.73,2.84,-0.49,-1.51,-0.49,-0.08,0.29,-0.18,0.43,-0.46,1.7,-0.1,-1.75,0.77,1.52,-0.45,2.76,-0.47,-1.57,-1.3,-0.62,0,2.92,0.43,-1.76,0.01 +C484,-11.98,-1.48,2.05,0.45,-2.84,-7.39,3.98,-0.21,-0.72,1.77,-0.75,-0.29,1.25,0.85,-1.97,-0.22,1.5,-0.14,-2.71,0.29,0.87,3.09,-1.82,-2.47,0.34,-1.04,-0.79,-1.13,-3.08,-0.65,0.64,2.36,0,0.25,-0.23,2.05,2.22,-0.5,0.6,-0.18,3.13,-1.29,-0.21,0.98,-1.19,0.89,-2.31,-0.93,0.06,-0.4 +C485,3.36,0.54,-1.16,-2.23,-1.83,-2.1,0.38,1.23,-0.25,-0.14,0.33,-0.2,-2.81,-0.53,0.67,0.88,0.78,-4.3,-0.58,-0.69,-0.57,-1.34,1.07,2.72,-1.9,1.04,-2.84,0.28,1.74,-1.4,-2.22,-0.19,-2.64,0.37,-1.54,-1.88,0.38,-0.92,0.06,0.73,1.77,0.6,1.05,0.82,0.36,0.64,0.33,-0.61,-1.81,1.23 +C486,-7.96,2.62,-2.11,-2.82,4.48,-0.31,3.28,-0.98,1.34,-3.18,2.55,2.01,0.16,-2.23,1.71,0.2,-1.63,0.15,1.11,-2.32,-2.34,0.53,0.99,0.72,-1.3,-0.51,-0.53,1.97,-0.92,1.74,0.67,0.62,0.74,0.39,-0.95,2.16,-1.1,1.61,0.76,-0.7,1.08,0.25,0.7,3.07,0.44,1.14,1.23,1.07,-3.88,-0.96 +C487,1.31,-3.92,1.38,1,-8.12,0.46,-3.8,0.33,-2.85,0.35,-1.01,-0.31,-1.33,0.16,-1,3.71,1.08,-1.79,-0.66,-0.66,-1.78,1.03,-2.11,-1.14,0.28,1.08,1.58,-1.29,-0.25,1.84,0.51,-1.26,-0.41,-3.06,-3.73,2.01,2.31,1.14,2.34,2.78,-1.76,0.54,-0.67,-1.64,-0.49,-0.63,-0.22,0.71,1.04,-0.05 +C488,3.92,-0.94,-1.12,-1.44,-2.04,-0.4,0.79,-0.24,-0.22,2.24,1.52,3.23,1.65,-1.31,1.77,0.07,-0.87,-0.07,2.79,-1.49,0.89,0,0.07,-1.26,1.06,2.66,-0.07,-1.09,1.29,2.46,2.37,0.72,1.42,-2,-0.35,-0.02,0.2,-0.37,0.83,-1.97,1.6,-0.94,1.27,2.03,1.11,-1.71,1.09,0.42,-0.72,1.25 +C489,5.72,-0.48,-1.32,-1.17,-0.46,1.64,1.85,2.21,1.02,-3.46,0.47,-1.93,-2.02,-0.57,0.13,1.42,-2.07,3.14,-0.59,-0.82,2.35,1.12,0.42,-6.52,3.49,-0.73,3.31,-2.29,0.53,-2.54,-1.28,0.24,-2.08,4.6,3.21,-1.86,-0.28,-0.62,-0.84,-1.44,0.65,-1.39,-1.6,-0.46,0.26,3.57,1.14,-4.69,0.49,0.54 +C490,5,1.34,-2.74,-2.14,-0.02,-0.66,0.43,0.73,0.89,-0.57,-0.05,1.77,-0.51,-0.13,-1.17,-0.62,0.72,-2.09,0.73,-2.22,-0.8,0.03,3.82,0.15,-1.44,-0.6,0.62,2.28,0.22,-2.82,-3,-0.04,0.12,-0.5,-2.52,-0.83,-1.24,0.16,0.74,-1.04,0.19,1.29,0.63,0.92,1.44,1.16,1.05,3.05,0.98,1.91 +C491,4.62,-4.5,-0.75,1.21,1.09,0.69,-0.84,-7.42,-0.8,0.61,-2.31,1.56,-0.9,1.66,0.14,-0.67,2.03,-0.84,0.9,0.61,-1.83,-0.1,-0.97,-1.6,-2.63,2.86,2.33,-2.36,-0.65,0.68,1.3,-4.39,0.7,1.45,1.7,4.2,0.35,-2.76,0.55,1.48,-1.17,-5.19,-1.57,1.06,-1.04,1.63,0.6,2.33,2.11,0.47 +C492,2.87,6,3.64,3.34,-0.31,1.75,1.44,-0.28,0.36,1.4,-0.67,-1.02,0.19,0.95,1.53,-0.05,0.42,-1.04,0.63,0.29,-0.16,-0.25,0.73,-1.45,-2.05,-2.84,1.48,2.07,0.09,-1.33,0.6,0.98,-0.25,0.08,0.03,0.65,0.71,2.02,-1.45,-2.91,-0.03,0.76,0.44,2.2,-1.69,0.6,-1.6,-0.1,-0.88,-0.87 +C493,3.09,-0.69,0.49,-0.62,-2.46,-0.95,0.13,-1.76,-1.67,-1.54,1.8,-0.83,2.07,0.58,1.77,2.91,1.48,0.68,1.01,2.26,1.1,1.66,0.17,-0.37,1.04,0.65,2.41,-0.33,-1.1,2.48,0.21,-0.86,1.67,-2.78,1.1,0.2,6.42,-0.32,-1.19,-2.66,0.32,-2.28,2.43,1.37,-0.58,0.17,2.44,-2.16,-2.46,-1 +C494,-12.31,-1.14,0.82,1.23,-3.16,-4.06,2.03,-0.14,1.1,1.62,0.39,-0.13,0.38,0.65,1.51,-1.06,-0.09,0.17,1.2,-1.16,0.49,0.23,2.25,-0.37,-0.36,1.84,1.56,-1.73,-0.86,-0.47,0.77,-0.65,-0.08,-1.37,-1.11,1.55,-0.76,0.83,0.99,-0.59,0.52,0.54,1.04,-1.2,-1.65,0.29,0.49,-0.79,1.49,-0.41 +C495,2.52,-4.09,-0.02,1.24,-0.36,0.89,0.17,-4.41,-0.31,-1.22,-1.61,-2.81,-1.86,2.12,-3.56,-1.41,-1.65,2.26,0.47,4,2.86,-3.1,1.25,0.56,0.79,-1.83,-1.11,2.68,-1.17,-0.28,-3.61,-0.33,-0.46,-1.55,2.19,4.74,3.61,-2.11,-0.87,-0.76,3.04,-1.49,-4.58,0.99,-0.56,0.11,1.77,-0.58,0.16,0.93 +C496,4.87,-1.8,-1.57,-1.88,-3.6,-0.7,-1.05,-1.05,0.73,-0.96,-1.51,2.64,-1.61,-1.31,-0.03,-3.33,-1.2,1.66,-3.74,-5.55,2.56,-3.18,0.05,-0.37,-1.28,-0.85,1.62,-0.71,1.5,2.74,1.27,1.85,-1.6,-0.81,0.85,2.74,2.04,-2.08,0.34,2.64,-1.45,-0.84,2.45,-0.31,0.22,-1.56,-1.41,-0.92,0.31,1.53 +C497,4.74,-1.31,-0.72,-1.7,-3.25,0.38,-1.25,-0.55,0.71,0.52,-0.87,-2.65,0.56,1.36,1.55,1.1,1.89,0.79,1.37,-0.27,-3.39,-2.24,-2.38,0.6,-0.8,-1.37,1.3,-1.11,-0.39,0.66,-3.16,-0.05,1.32,-0.33,3.69,0.99,1.56,-2.34,-0.38,0.24,-2.5,-1.64,2.29,0.96,-1.68,0.71,1.91,-0.55,0.81,-2.29 +C498,4.31,1.38,-1.43,-1.52,-1.81,-0.08,-0.41,0.06,1.04,-0.02,0.5,1.02,-0.84,0.76,-1.15,-0.99,-1.11,2.33,-0.81,-0.87,3.64,0.21,-1.41,0.75,-0.8,2.51,-2.22,-1.44,2.21,-1.26,0.73,-0.35,-1.12,-0.77,1.69,2.18,2.69,-2.78,-1.41,1.34,2.2,-1.75,-0.4,-0.13,-1.49,-0.11,2.39,-3.26,-0.18,3.14 +C499,4.99,1.78,-1.01,-2.25,-0.5,-1.34,0.15,2.69,0.69,1.49,-0.88,0.77,1.67,-0.15,-1.21,1.07,3.98,0.64,0.62,0.06,1.36,0.3,0.55,-1.47,-0.28,-2.22,-4.06,0.9,2.27,0,-1.46,0.42,-2.13,-0.61,1.17,-0.5,0.17,-1.22,-0.23,0.93,1.73,-1.25,-0.1,-2.4,2.18,-1.7,-1.23,1.82,-0.74,2.4 +C500,2.33,-1.39,-0.34,-2.22,-2.56,0.05,-0.73,-0.96,-0.76,0.23,-0.05,0.93,-0.13,-1.65,1.09,-1.85,-0.12,-0.3,-1.38,0.81,0.49,-0.58,0.84,0.44,1.01,0.2,0.15,0.2,0.06,-0.9,-2.49,-0.85,2.48,1.14,2.85,-1.43,2.02,1.87,-0.3,-0.21,0.23,0.4,-0.79,0.51,2.35,-1.35,0.53,0.83,-0.18,-1.92 +C501,4.55,-7.46,0.35,1.5,3.33,0.55,-0.76,-1.9,0.4,0.59,3.38,-3.72,0.91,1.38,2.39,-3.68,2.39,-2.3,-0.09,2.65,-1.82,0.45,1.98,-0.29,-0.92,-1.02,1.37,2.89,1.42,2.55,4.21,-1.36,5.67,-0.41,0.77,-0.49,-2.06,0.34,0.67,2.46,0.17,2.65,2,0.19,2.28,-0.6,-1.63,-0.68,-2.43,2.81 +C502,3.03,7.34,4.6,4.63,2.03,0.99,-0.66,-1,-0.36,-0.03,-1.71,2.3,-0.63,1.69,-0.27,-0.72,-4.3,-3.62,0.29,0.46,-2.26,-0.69,-0.07,-1.21,1.36,-1.78,1.85,-0.42,-1.06,-1.35,1.71,0.67,-0.36,-2.67,-0.69,1.27,0.09,1.15,0.04,-0.99,-1.79,-1.13,-1.15,-0.2,2.23,2.22,2.37,1.17,-2.07,0.2 +C503,4,-10.63,2.58,3.83,11.09,-0.54,0.66,3.72,0.48,0.49,0.98,-2.4,1.51,0.76,1.24,1.58,-2.38,-0.84,1.64,2.22,-1.99,0.32,-3.81,2.37,-2.43,-0.32,1.42,-0.93,-0.21,1.7,0.72,0.19,0.62,-0.67,0.03,0.81,-3.57,0.4,0.6,-0.49,-1.12,0.23,1.91,1.48,1.21,-0.52,0.74,2.5,-0.2,-0.22 +C504,4.85,0.28,-0.93,-2.29,-0.72,0.01,-1.31,-0.66,-0.86,0.13,-1.79,0.12,-1.59,-0.74,0.46,-0.56,-0.45,0.13,-2.14,2.63,0.23,-0.23,-0.03,-2.45,-0.49,-0.53,0.15,-1.78,-0.1,0.89,1.32,2.04,-0.55,0.6,0.13,2.06,-3.74,-0.27,0.62,0.48,-2.33,1.6,1.03,-1.56,-0.06,1.01,2.67,0.45,-0.74,0.95 +C505,6.2,-2.81,0.03,-0.9,0.77,0.02,0.42,-5.44,1.13,-1.37,-3.82,1.2,-3.85,0.48,0.16,-2.82,2.89,-2.61,-3.73,0.3,0.61,-0.76,-0.34,2.47,1.21,0.91,-1.52,0.73,-1.66,0.03,-0.39,0.47,3.53,1.8,-0.51,0.88,-1.69,-0.78,3.59,3.72,0.6,-0.59,-1.04,0.59,3.71,-3.68,-1.06,1.44,0.9,-4.14 +C506,4.54,1.27,-0.84,-1.92,-2.17,-1.18,-0.1,0.66,-0.6,-0.4,1.61,-1.2,-1.42,1.14,-0.54,-0.14,-0.01,-0.45,0.15,3,-0.23,-0.52,0.55,-2.76,-1.19,-1.4,0.51,0.05,-0.68,-2.45,1.36,0.54,1.74,1.55,-0.8,-1.03,1.1,2.32,-1.87,1.5,-2.83,-2.31,-1.95,0.31,1.12,2.21,-1.72,-2.24,0.52,1.38 +C507,5.01,-0.46,0.56,-0.77,-2.62,0.62,-0.82,0.95,-2.57,1.24,0.03,1.83,1.74,1.92,0.7,-0.42,-0.54,-2.13,-0.16,-2.65,2.24,-1.12,-0.46,-2.7,0.71,0.03,-1.64,-1.63,-0.1,-0.56,-0.78,0.62,-1.9,-0.78,1.01,-1.94,-2.68,0.39,1.12,-2.12,-0.87,1.24,-1.3,-1,-0.85,-1.89,0.57,1.67,0.36,-0.46 +C508,6.23,2.34,-1.91,-3.22,1.22,-0.67,2.61,0.21,2.74,0.31,0.37,-0.47,-0.54,0.1,-2.1,1.81,-1.65,-2.4,-0.34,0.38,-1.32,1.31,-0.46,1.44,0.48,1.31,2.55,-0.05,0.52,-1.52,1.56,-1.57,-0.79,-0.06,0.94,-1.53,-1.81,-0.69,2.59,-0.36,0.6,1.36,-0.24,0.76,-0.35,-1.72,-1.06,1.38,-0.42,1.29 +C509,4.72,1.36,-1.58,-3.41,-0.1,-2.16,0.31,1.39,-0.58,-1.03,0.62,-0.64,0.11,-1.46,-1.22,0.68,0.13,-0.92,-1.39,0.19,-0.31,-1.94,-0.24,0.31,-1.24,1.2,-0.01,-0.38,-0.28,1.15,2.09,-1.28,-0.65,-1.59,0.66,-0.98,0.27,2.44,-0.33,-1.29,0.7,0.26,1.01,-1.9,1.55,0.88,0.7,-2.71,0.35,1.26 +C510,1.96,-13.98,2.94,5.27,6.85,-1.4,-0.84,7.87,-2.62,1.51,0.96,0.23,-2.03,-2.71,-0.42,-1.06,-3.83,-2.87,-3.98,3.92,2.79,-4,-1.69,0.59,1.96,-5.49,2.98,-3.94,2.32,2.66,0.07,-0.02,0.82,-0.98,3.14,-1.66,-6.38,0.48,4.06,-0.91,0.86,-1.43,0.7,3.94,-0.13,2.11,2.68,-2.19,-0.11,-0.42 +C511,4.01,1.39,-1.23,-1.95,-2.02,-1.39,0.79,2.15,1.28,-1,-2.15,-1.43,0.05,1.25,0.83,-1.28,0.59,-1.88,-1.49,0.59,-0.81,0.58,1.37,-0.93,-0.08,-1.84,-0.73,0.68,-0.36,0.42,2.09,2.09,-1.53,-1.34,-1.6,-1.67,0.19,0.44,0.08,-0.21,-0.65,-0.08,2.47,1.37,-1.36,-1.02,1.28,-0.26,-2.96,0.79 +C512,3.73,-2.36,-0.75,-1.4,-0.11,0.96,0.97,-4.67,-1.43,-1.1,-2.69,-0.87,0,0.61,-1.51,0.29,1.69,0.32,-0.72,0.64,1.55,0.83,-0.88,1.25,-0.55,-2.09,-0.84,-0.99,-0.28,-1.68,1.09,-1.65,-1.69,-0.24,1.92,0.96,-1.63,-3.2,2.34,2.87,-1.45,0.74,-0.42,-1.47,1.71,1.98,2.42,-0.51,-2.22,0.13 +C513,4.13,-4.53,0.56,0.07,1.92,0.64,0.99,-5.16,0.3,-2.59,0.19,0.51,1.74,3.06,-0.41,0.14,3.01,-0.76,1.84,1.15,0.36,-0.01,-2.93,0.71,-2.23,1.22,0.37,1.89,-4.39,-1.69,1.1,-3.41,-1.95,0.66,-0.95,2.35,0.91,-2.35,1.03,-1.2,0.38,-0.05,1.6,-0.54,0.02,2.34,-0.51,-1.44,-1.13,-1.59 +C514,3.33,0.63,-1.58,-2.83,1.37,-0.18,0.41,-1.83,0.52,2.34,0.78,1.55,-1.12,-2.78,0.86,-1.42,-1.52,-0.94,-1.68,4.42,1.72,-1.03,1.03,-0.83,-0.2,-0.41,1.65,-2.17,0.76,-0.03,-0.95,0.7,-2.25,-1.44,-1.9,1.45,-0.93,3.76,-0.58,0.06,-0.99,1.11,-0.79,-1.35,-0.7,-0.03,0.8,1.4,-0.41,-1.83 +C515,5.5,-0.11,-0.77,-0.2,-3.77,0,-0.29,2.44,0.14,1.43,-2.44,0.86,1.23,1.87,0.69,-2,-1.4,2,-1.69,-4.02,0.45,-2.81,1.04,1.44,-0.44,1.53,-2.37,-0.64,-1.06,-0.04,-0.25,0.6,-1.37,1,1.93,-4.69,-3.56,3.58,-0.83,-1.65,3.16,-2.57,2.23,2.45,-4.25,-1.73,3.49,-2.22,0.64,-1.86 +C516,-7.64,0.33,-1.71,-3.98,0.19,1.31,-1.05,2.59,-0.99,0.54,-2.06,-2.23,0.95,1.71,0.72,-3.27,1.16,0.93,-3.53,-0.9,0.3,1.91,-0.15,2.58,-0.7,1.35,1.06,3.77,0.82,-0.69,1.04,-1.28,-2.26,-0.77,-0.55,2.48,0.04,-1.09,-0.58,1.51,-1.25,-0.02,0.66,1.99,-1.1,-0.37,-1.16,-1.1,-1.48,-1.37 +C517,4.14,-3.58,0.62,0.45,-0.85,-0.05,0.71,-1.04,-2.44,-0.99,2.76,-1.61,0.13,1.91,-2.2,4.16,-0.87,-0.54,3.6,2.32,1.49,2.25,-0.85,-0.23,0.53,-0.74,-1.58,-2.34,-2,-1.6,1.75,-4.11,-1.04,-1.47,0.25,0.8,0.41,-1.93,0.83,-1.74,1.32,1.84,0.92,-1.68,-6.29,0.47,1.62,0.39,-1.91,-1.29 +C518,2.38,6.76,6.58,7.02,-0.02,-0.32,-1.63,-0.74,-2.1,0.65,-0.92,2.81,-2.04,1.21,-2.95,0.24,3.16,3.35,0.64,-5.58,0.18,0.67,-0.15,2.18,-2.84,2.49,0.57,1.81,2.45,-0.17,-2.04,2.43,-2.3,0.06,-2.41,-0.45,-2.1,0.82,2.52,2.12,3.1,-2.28,0.14,-1.62,1.1,1.78,-1.71,-1.09,0.41,0.01 +C519,-11.96,2.42,0.33,-0.43,1.54,1,-0.67,-1.85,0.91,-1.12,0.61,-1.78,0.3,1.95,-0.62,0.41,0.28,-1.89,4.27,-5.72,0.42,0.15,-0.31,0.16,3.82,-0.19,0.52,-1.24,-1.81,-0.44,1.1,2.1,-2.82,1.08,-1.74,-0.18,1.27,1.05,-1.9,2.54,-2.3,0.83,1.62,0.93,-0.61,1.54,2.27,-1.02,2.2,-1.14 +C520,3.4,-6.41,0.08,0.72,0.52,0.26,-0.31,-4.23,-1.54,-0.39,-2.9,2.8,0.52,4.81,-1.19,1.74,-0.7,0.01,2.45,0.2,4.05,1.03,2.17,-0.52,-1.52,-2.19,-4.13,-0.54,0,-2.31,1.57,-1.15,-1.19,-0.4,2.05,0.44,-0.57,-2.3,0.62,0.92,0.05,1.13,3.74,-4.26,-4.22,-1.96,-3.06,-1.05,-0.72,1.76 +C521,-9.6,3.06,0.81,-1.22,3.21,1.03,0.76,-0.25,1.51,-0.09,0.73,0.73,0.18,1.48,0.15,0.97,-4.55,-0.16,-0.47,0.61,1.15,-1.31,0.76,2.6,2.28,-0.63,1.3,1.04,-0.25,1,0.32,1.11,0.13,-1.43,-0.84,-2.24,0.51,0.55,-0.9,0.99,1.98,0.63,0.07,-0.28,1.09,-0.16,-1.03,-1.22,0.97,-1.13 +C522,3.55,6.77,4.62,3.73,1.54,1.13,0.39,-1.47,0.21,-0.25,1.51,0.25,-0.55,-0.23,1.57,-0.78,-2.37,2.93,1.6,2.95,0.04,-0.14,-1.61,-0.46,-0.02,-0.8,2.41,-2.42,0.09,-1.2,-0.58,-1.36,-2.31,2.8,-3.55,-0.2,0.68,-1.55,-0.85,-4.54,1.74,-1.49,1.18,-2.24,1.46,-0.7,-1.1,2.78,0.89,5.1 +C523,4.96,-2.89,-1.53,-2.46,2.91,-0.08,1.42,-5.71,-0.72,-0.45,-2.36,1.28,-1.69,-1.33,2.9,0.82,-1.19,-0.47,-2.32,2.82,1.19,0.41,-3.01,-0.39,0.59,0.25,1.26,1.38,-1.23,-0.01,0.28,-0.35,1.95,0.26,-0.68,-2.16,0.42,-0.99,1.86,-0.25,-3.14,1.38,0.66,-0.51,0.64,-0.93,-0.6,2.73,-0.22,2.26 +C524,-12.75,-0.94,0.46,0,-0.91,-4.79,3.59,-2.23,1.2,-0.01,-1.99,-1.77,-1,-1.27,-0.2,2.72,1.42,-0.58,2.74,-1.63,-0.95,0.25,0.47,-2.19,-0.01,-2.93,-1.14,1.36,-1.09,1.88,3.68,0.54,-1.09,-0.24,5.25,-0.91,0.14,1.79,0.21,-0.78,-0.37,-0.59,-1.22,-0.08,0.46,2.16,-4.04,0.69,-0.19,-1.49 +C525,4.83,-0.45,-1.54,-1.84,-0.45,0.25,-0.15,-1.44,1.12,-0.81,-0.79,0.94,-0.87,-0.91,-0.12,-1.45,0.83,1.71,-1.12,1.15,0.01,2.11,-1.73,-1.2,-1.04,-0.21,-0.43,1.28,-0.11,2.81,-0.54,3.07,-2.25,0.18,2.19,0.8,-0.24,0.37,0.09,1.84,1.96,-2.16,1.73,-0.69,-1.97,2.19,1.03,0.2,1.14,2.6 +C526,4.82,1.07,-0.63,-2.86,-2.36,-0.99,0.29,1.78,1.88,-0.83,-0.04,-1.09,3.15,0.03,-3.39,-0.72,-0.76,1.19,2.18,1.37,1.82,1.83,-0.54,-1.53,0.28,-0.49,0.92,0.07,-0.6,1.37,-0.02,3.36,-4.26,-0.31,2.47,1.53,1.82,-0.44,-0.65,1.02,1.1,1.92,2.41,0.96,1.59,1.82,-1.55,-1.49,1.4,-0.72 +C527,3.8,5.36,4.55,4.45,1.14,0.68,-0.51,-0.84,-0.54,-1.81,0.09,-0.57,-1.69,1.42,0.67,-0.53,2.34,-0.67,-3.13,-4.36,-3.03,0.88,1.98,-2.5,-2.43,1.77,0.45,-1.82,0.06,1.4,-1.92,-0.69,-0.04,-1.21,-2.18,-0.27,-0.58,0.43,-0.74,-2.52,-1.48,0.68,-1.3,2.33,-0.77,-1.34,0.54,-0.52,-3.96,2.11 +C528,-7.46,1.33,-3.04,-4.56,3.79,1.5,2.07,0.34,2.03,-0.61,1.58,0.24,1.35,0.62,0.03,1.77,-3.51,-0.39,1.63,-0.71,-0.09,-2.23,2.57,2.31,-0.94,0.59,2.3,-1.96,-1.14,0.78,0.1,-3.41,-1.89,3.3,-0.83,3.08,-2.25,1.27,-0.83,-1.93,-3.4,-2.07,-0.94,0.17,1.47,-0.57,3.14,0.1,0.84,-0.8 +C529,-10.95,1.69,-1.59,-2.68,2.83,0.49,1.24,-0.19,1.77,-2.05,1.7,0.9,-0.35,-0.2,2.14,0.57,0.51,2.16,-0.35,0.48,-1.04,2.54,0.25,-1.74,-3.61,-1.44,1.34,-0.26,-0.7,-1.48,0.17,1.44,-1.76,-0.47,-2,3.05,0.66,0.48,-1.99,0.38,0.1,-0.36,-1.07,-0.81,1.75,-0.86,1.75,-2.13,0.98,0.54 +C530,5.99,3.46,-1.99,-3.12,1.15,-0.79,1.1,0.79,2.09,-0.55,-0.19,0.77,0.02,1.13,-0.09,0.74,1.17,0.26,-0.61,0.54,-0.58,-0.33,-0.03,-0.01,0.44,0.3,1,0.96,2.25,-0.23,-0.05,-1.09,-0.34,0.51,1.01,0.44,-1.46,1.22,0.01,-2.84,-1.47,-0.44,0.51,-1.24,0.99,1.09,0.88,0.5,1.73,-0.01 +C531,4.53,-1.03,-1.68,-1.71,-0.98,-0.03,-0.19,-0.23,0.67,0.72,1.92,-0.79,-0.61,-2.38,-2.26,0.62,1.07,-0.57,1.12,2.33,-0.42,-5.25,5.65,-1.5,0.53,-0.59,-0.96,1.3,-2.95,-1.78,-0.79,-0.17,0.16,-0.83,3.9,0.69,-0.02,0.42,0.77,-0.65,0.44,1.8,-0.09,1.22,-2.75,-1.01,1.52,1.59,-1.92,-2.15 +C532,1.77,-1.69,-1.35,-2.06,-2.32,-0.5,-0.6,-3.15,-0.64,4.51,-1.76,-0.27,-0.41,-3.08,5.55,-0.72,-0.53,-1.15,2.54,-1.65,0.9,-0.11,1.91,1.55,-0.39,1.31,1.41,-0.12,0.66,-0.89,0.92,-0.59,1.47,0.33,1.28,2.38,2.47,0.86,-1.57,-2.86,0.56,-0.82,-0.04,-0.57,1.41,-0.46,-1.57,2.89,0.48,3 +C533,2.69,-5.34,2.16,2.05,6.76,-1.02,0.47,4.26,-0.8,0.08,-0.25,3.74,0,0.92,1.78,3.89,-3.41,4.2,-0.32,0.25,-0.82,-0.78,0.42,0.21,-0.53,-1.39,-0.58,1.1,0.01,-1.26,1.2,0.05,0.64,-2.44,-3.09,-0.2,-0.32,4.09,-0.87,-2.44,1.95,0.28,1.93,0.49,-0.17,-2.23,-0.96,1.09,4.06,0.12 +C534,4.95,7.56,3.25,2.87,2.68,-0.15,0.24,-0.45,-1.21,-0.27,-2.85,2.72,2.84,-4.55,0.82,-3.16,0.79,3.85,0.28,-0.69,-1.9,0.02,2.59,0.43,1.71,-2.79,-1.54,0.21,1.61,-1.31,2.25,-2.23,1.18,0.08,3.97,-3.33,1.43,1.37,1.04,4.38,0.41,0.13,-1,1.71,3.6,-1.3,-1.21,2.16,0.53,2.14 +C535,4.24,-0.99,-1.61,-1.87,-1.84,-0.59,0.24,-0.57,-0.58,-1.23,2.13,-0.72,-1.26,0,0.16,0.13,-1.32,0.3,-0.37,1.5,0.11,-0.83,-1.81,1.39,1.3,1.03,-0.41,3.39,-0.08,0.84,0.12,-0.22,1.37,0.85,-1.78,0.9,-0.24,-1.12,0.67,-0.4,-0.35,1.2,1.71,2.24,1.74,0.25,-1.43,0.33,-1.1,0.14 +C536,4.29,1.21,-1.11,-2.32,-1.68,0.36,-0.46,0.8,-1.13,-0.94,-0.75,-0.08,0.86,0.41,-1.44,2.28,0.09,-2.71,0.48,-0.56,-1.7,0.03,-2.67,-0.74,2.55,-0.53,0.7,-0.01,-0.39,-1.7,-0.99,1.87,-0.21,0.14,0.21,-0.46,0.98,1.35,0.14,-2.16,-1.19,0.75,-0.93,-1.24,0.16,2.48,-0.27,1.39,-1.19,0.1 +C537,3.13,0.43,-1.01,-1.88,-2.44,-1.41,0.9,0.51,-0.55,1.27,-1.18,-1.69,0.08,0.11,-0.85,0.07,0.06,-3.38,-1.41,0.32,0.24,-0.47,1.09,0.74,2.59,-1.28,0.14,-2.24,-0.29,-1.63,2.01,-0.83,-0.39,-0.4,-1.26,-0.73,1.17,0.51,1.51,1.32,1.67,0.13,-1.83,1.36,2.27,-1.53,1.78,-0.64,-1.42,-0.42 +C538,3.87,-0.69,-0.62,-2.3,-3.39,-0.74,-2.05,-1.06,-1.75,2.04,2.27,0.2,0.1,0.09,1.34,-2.47,0.08,1.08,1.54,1.26,1.76,-1.57,-0.04,-0.62,-0.85,0.87,0.13,2.72,0.22,1.36,2.06,-4.51,-0.4,-2.19,1.51,0.86,-1.01,1.01,0.02,-0.14,-0.93,-1.01,2.06,-1.32,2.34,0.33,-1.47,-0.66,-0.45,3.93 +C539,4.01,7.11,3.5,4.58,1.15,-2.17,1.51,-0.19,-0.71,-0.87,-0.44,-2.65,0.62,-2.76,-0.55,-0.61,1.31,0.5,-5.36,3.05,-0.04,-1.05,2.97,-1.43,-0.77,1.28,-1.76,-1.44,-0.4,2.65,3.05,-0.63,-1.15,-2.35,0,1.16,3.56,2.12,0.76,1.71,-0.28,0.76,1.76,1.54,-2.51,0.01,-3.18,0.11,-3.13,0.05 +C540,4.78,-4.7,0.09,0.94,3.94,0.29,-0.2,-3.86,0.13,-1.21,-0.61,0.24,-1.61,1.51,-0.96,0.35,-1.5,-0.65,0.05,-0.8,1.22,-2.23,1.65,-0.48,-0.14,-0.7,0.71,-0.43,0.47,-1.46,0.35,-2.11,-0.14,0.02,-0.07,0.46,1.1,-1.55,0.12,-0.49,-2.01,0.89,-0.23,1.95,0.84,-0.12,1.71,3.3,3.04,1.68 +C541,2.69,-4.16,0.67,0.07,-3.66,-0.58,-3.4,-2.03,-0.92,0.28,2.84,-0.38,3.89,1.1,-0.53,1.72,3.97,0.92,0.6,1.67,-1.02,0.7,1.63,2.71,-1.72,2.14,-2.36,-1.51,-0.82,-3.27,0.95,1.61,2.02,0.68,-0.81,0.73,0.2,1.06,0.26,1.52,-3.92,2.51,-2.05,-0.28,0.92,-1.15,-0.27,-2.02,2.24,-2.79 +C542,-13.02,-3.19,0.85,0.99,-3.36,-4.92,0.23,-1.18,3.82,-1.52,-1.57,-0.71,1.23,0.67,1.47,1.36,2.93,-0.2,-0.04,-0.15,-1.52,-1.86,1.33,0.57,1.5,0.49,-2.4,-0.48,1.98,-0.42,1.53,1.23,2.68,-0.65,-5.15,3.01,-0.84,-0.74,-1.06,0.33,1.13,-1.82,-1.29,0.17,0.57,0.53,4.44,-0.57,-1.03,-1.92 +C543,-15.27,-3.85,3.94,3.4,-5.54,-7.44,2.37,-0.52,-0.67,3.49,-1.37,-0.53,-0.37,2.28,-1.34,-3.33,-0.23,5.11,2.58,-0.16,0.26,-0.16,-3.16,-0.99,0.58,0.36,0.52,-1.58,-2.46,1.53,0.06,0.45,1.42,-3.96,2,2.1,-1.5,0.15,2.72,-0.19,0.12,0.11,-0.84,-3.81,-0.45,1.76,2.62,-0.44,1.11,-1.92 +C544,5.76,2.1,-1.38,-2.16,1,-0.87,0.46,1.5,-0.93,0.56,0.91,0.91,0.66,0.53,0.18,-0.56,-0.16,0.75,0.4,-0.19,-1.73,1,0.56,0.33,-0.22,1.58,-0.85,-0.48,3.1,1.75,0.72,-1.06,1.48,1.04,-0.79,-0.33,0.65,2.22,-0.07,0.88,1.49,0.02,-0.57,-1.9,0.09,-0.54,-1.24,-1.44,-0.38,0.68 +C545,2.45,-8.24,4.35,6.44,4.26,1.26,-1.71,1.74,-0.86,2.29,-1.01,2.35,3.23,-0.25,2.18,0.24,2.76,-0.76,2.33,0.52,-2.42,0.43,0.36,-0.04,-0.04,-1.15,-1.43,4.2,-1.71,-2.1,-0.18,0.69,2.28,2.31,-0.86,1.82,-0.04,3.4,-1.87,-0.4,-0.05,0.1,-1.3,-3.36,-1.09,2.66,2.02,-1.43,0.56,2.6 +C546,4.06,-2.13,-0.56,-0.71,-3.68,0.22,-1.26,-0.73,-0.79,-0.38,1.33,0.5,0.47,-0.78,0.57,-1.27,-0.95,-1.24,-1.5,0.61,-1.11,-0.65,4.28,0.94,2.02,0.18,-1.86,-0.75,0.38,-0.28,2.11,0.67,-2.13,1.13,-1.13,0.94,-3.63,-1.93,2.24,-0.99,0.33,-1.04,-1.87,-1.78,0.77,0.31,0.02,-1.48,-1.02,-2.31 +C547,3.98,0.94,-1.62,-2.35,0.8,0.72,1.33,-2.96,0.9,0.98,1.24,-1.28,-0.2,-1.38,3.18,-1.9,-0.2,3.03,-0.98,0.63,1.8,-0.76,-0.04,2.21,-2.51,2.05,-0.83,-2.32,-1.83,-1.72,-0.45,2.79,-1.73,1.4,-1.68,-2.35,2.2,-0.97,1.88,1.06,-0.24,-0.84,0.17,2.35,2.52,-0.49,2.52,-2.82,0.37,-3.68 +C548,3.82,-4.55,0.67,-0.27,0.24,1.71,-1.36,-5.22,-0.53,1.53,-0.68,3.2,-0.1,0.4,-0.3,0.72,-0.9,1.99,-1.45,-2.42,-2.14,-2.41,2.59,0.11,-2.41,-1.68,0.77,0.34,0.76,-1.42,0.37,-2.09,-2.61,2.21,-0.52,-4.06,1.21,0.6,-1.39,-1.11,-0.53,-0.15,-2.03,1.85,-0.25,-1.58,1.37,2.13,0.15,2.49 +C549,3.21,-1.81,-0.46,-1.58,-2.52,-0.01,-2.34,-0.63,0.35,1.59,-0.25,-0.97,0.99,-0.7,-0.26,1.32,2.25,0.87,1.32,0.5,-0.2,-1.17,-1.44,0.33,-1.04,3.78,1.85,-1.39,-1.12,0.82,-0.21,-1.1,1.09,1.73,-1.4,-2.07,0.96,-0.49,-0.19,1.22,1.74,-0.16,-3.29,-0.91,0.47,1.08,1.76,1.74,-3.02,-0.67 +C550,4.92,2.14,-0.96,-2.39,0.68,0.5,1.63,-0.45,1.53,0.86,-0.43,0.11,-1.51,1.87,-3.05,-1.3,-1.73,0.19,0.37,0.42,1.73,2.82,0.57,-2.27,-0.43,0.14,1.22,0.82,-1.56,-1.14,0.91,0.93,0.34,-0.59,0.03,-0.61,-1.06,1.52,0.01,1.69,0.65,2.9,0.57,0.07,0.06,-0.38,-0.09,-1.62,-2.03,0.17 +C551,5.6,-0.93,-0.97,-1.06,-2.92,-0.19,-0.22,0.48,-2.75,-1.38,0.63,-1.44,0.15,2.28,-2.59,-2.24,2.43,0.37,-0.91,-0.49,1.48,1.92,-1.22,-1.75,0.61,1.22,1.34,-0.12,-2.97,1.67,-2.15,1.66,1.07,-1.64,-3.5,-4.04,-2.78,0.49,0.57,-1.64,0.54,3.65,0.99,-0.4,-0.96,0.41,-0.13,0.65,2.59,-0.54 +C552,6.13,4.14,-2.39,-3.17,1.04,-0.06,1.28,1.12,2.68,0.03,-0.8,0.29,0.07,-0.1,-1.94,0.6,0.05,2.81,-0.67,1.21,-0.72,1.77,-1.96,0.39,-1.27,-0.75,-1.32,0.24,0.38,0.93,-0.06,0.35,0.74,-1.12,-3.08,0.04,-0.46,2.13,0.35,-0.89,1.54,-2.34,-1.02,0.71,-2.65,-1.23,-0.23,1.1,0.91,-3.56 +C553,2.44,-0.59,-0.01,-1.4,-1.75,-0.79,-1.33,0.77,-2.23,-7.5,4.36,2.16,-4.11,0.33,1.96,0.66,-0.96,0.66,-2.8,-2.07,-0.04,0.44,-2.28,-0.48,0.47,0.37,-1.21,-3.88,-2.71,-0.09,0.11,0.04,-0.01,-0.85,-1.72,0.22,-0.35,-0.56,-1.38,-0.1,-2.66,-3,0.77,1.07,0.59,-1.08,-2.13,-3.97,1.62,2.26 +C554,-10.21,4.41,-1.45,-2.18,4.99,1.63,2.28,0.9,-0.27,0.05,0.89,0.84,0.33,0.01,-0.34,1,-0.81,0.96,1.73,-0.03,2.4,-0.61,-0.03,0.1,0.2,-1.39,-0.62,1.78,1.57,3.36,0.31,0.94,0.46,-0.19,0.21,1.81,0.57,-0.49,-2.32,-0.83,0.62,0.58,0.67,1.17,1.29,0.32,-0.13,-1.06,-1.32,0.37 +C555,-15.51,-2.82,3.19,1.38,-4.42,-4.58,-0.1,0.16,-0.67,-3.24,2.1,1.27,0.97,-1.32,-1.2,0.69,0.16,0.03,-2.04,1.31,2.41,0.94,-1.22,1.73,0.42,-1.83,-2.61,-1.48,2.23,-2.64,2.6,4.06,-1.44,1.1,0.16,-1.32,-1.92,-1.2,-0.13,-0.68,1,-0.35,-0.74,4.44,1.86,-0.67,0.39,-4.84,-0.06,0.25 +C556,5.39,1.68,-1.01,-2.41,0.06,0.12,3.56,2.65,1,-1.16,0.14,1.27,0.21,0.71,0.8,-2.46,-1.13,-0.2,-1.49,-2.54,-1.1,0.2,0.23,-1.42,0.96,-0.46,-1.25,0.76,-1.27,-1.15,0.36,-0.37,0.03,0.27,-1.13,-0.94,-0.22,-0.94,-2.04,0,1.04,0.89,-0.01,-0.4,0.49,-0.01,0.12,1.03,-1.72,-1.99 +C557,4.29,-4.49,-3.65,2.28,0.07,0.48,0.47,-5.82,1.68,0.02,-1.83,2,-1.54,3.23,-1.93,-0.71,-1.68,-2.56,-4.38,-1.98,-3.67,1.54,-0.79,-1.58,-4.24,-1.07,4.01,0.09,-1.11,1.07,-4.77,-1.22,1.55,2.76,0.66,-0.22,2.59,-3.16,-2.16,1.67,0.53,-2.38,2.83,0.45,-0.73,0.69,-0.78,3.2,-1.05,-1.08 +C558,0.94,5.11,-37.1,25.36,2.12,1.48,-0.01,-3.11,1.06,5.49,6.72,4.67,2.76,8.07,-1.26,-2.78,2.46,-3.42,-2.52,2.55,-1.55,-1.15,-0.35,0.61,-2.35,-2.28,-0.22,-1.36,-0.57,1.64,-1.7,-1.73,2.08,-0.09,0.1,-1.76,0.81,4.54,1.72,-0.49,2.81,-1.6,-0.17,-0.93,2.63,0.71,-4.11,-2.21,-2.98,-2 +C559,-11.5,-2.56,1.15,1.02,-3.2,-5.55,3.98,-0.02,0.23,-0.92,-0.63,-0.66,0.8,1.34,-0.37,-1.04,1.39,-0.85,0.69,-2.66,-1.12,-0.52,1.29,2.69,1.11,-0.79,-1.4,-0.25,0.11,-0.66,-0.48,-0.22,-1.29,-0.66,-1.89,0.3,0.42,-0.31,-1.49,0.67,0.27,0.07,-0.21,-0.68,-0.61,0.8,-0.13,0.04,-0.65,-1.16 +C560,3.06,-0.31,-0.44,-1.55,-2.38,-0.39,-0.71,0.35,0.42,2.09,2.78,0.43,1.61,-0.91,0.74,1.41,-1.57,2.08,-0.13,-1.98,-1.02,0.99,-0.77,-0.32,-0.74,-3.04,-0.03,-0.96,1.6,-0.6,-1.31,-0.14,0.42,-1.15,0.46,1.36,0.57,1.23,1.33,-1.23,-1.69,-0.97,-1.9,-0.43,0.53,-0.44,-0.43,-1.19,0.08,2.48 +C561,5.54,-0.16,-2.48,-1.81,1.23,0.38,-0.33,-1.46,1.3,-1.29,-3.06,-2.32,-0.03,-0.4,2.59,0.58,-0.08,-2.46,-2.75,1.1,-1.25,0.47,-0.43,0.63,-2.1,0.74,0.62,-0.91,3.62,1.28,-2.59,-2.45,0.24,-0.78,1.23,1.38,3.42,1.11,3.13,-0.46,-0.81,-0.75,1.29,-2.81,-0.02,-1.75,2.06,1.86,0.58,-0.99 +C562,-12.77,0.21,-0.12,-3.14,2.22,3.14,-1.55,-0.69,-3,0.86,-0.6,0.16,1.26,-0.42,-1.22,0.64,0.17,1.42,1.76,-0.49,-1.53,-0.29,-2.09,1.82,-1.96,-1.76,-0.41,0.37,1.98,-1.22,1.49,1.05,-0.73,0.61,-1.97,-0.69,1.97,0.04,-1.52,0.69,-1.92,3.75,0.73,-1.28,2.14,0.65,-1.42,1.79,-0.51,2.17 +C563,3.79,-0.24,-0.6,-2.11,-2.33,-0.48,0.66,-0.3,1.48,1.53,0.88,-0.9,-0.1,-0.01,0.61,-0.89,-2.08,0.03,0.91,0.11,-1.37,-0.86,-0.72,1.05,-1.77,-3.32,-0.29,4.8,-1.33,-1.12,0.3,1.06,-0.86,-1.12,0.73,-2.55,0.52,-1.81,-2.65,1.72,-0.41,-1.34,-3.67,-1.99,-0.55,0.91,0.66,1.18,2.09,0.45 +C564,-12.92,-0.84,-1.8,-3.01,2.2,4.64,-1.01,0.01,-3.15,1.27,-3.13,-2.37,0.11,-0.3,-1.55,-2.25,0.21,-1.38,4.05,1.34,2.68,-0.87,-1.59,0.21,-0.09,1.23,0.08,2.56,0.21,0.9,-1.18,-0.41,0.9,0.53,-0.68,-0.72,0.19,-0.49,3.64,-0.85,-5.19,2.38,3.5,-1.84,3.78,-1.8,-1.19,-1.21,2.06,1.33 +C565,2.98,-2.31,0.23,-0.64,-4.1,-0.9,-2.74,0.12,-1.05,-1.28,2.1,-2.38,-0.98,2.62,2.42,-1.94,-3.58,-0.67,-0.51,-3.63,-1.7,1.8,1.39,-0.5,-1.6,-0.69,-1.2,2.14,2.68,2.27,0.37,-2.87,-0.59,1.13,0.04,-0.06,1.58,-1.11,0.18,3.76,1.54,2.57,5.03,-1.96,-0.24,-0.15,1.01,0.39,-0.36,-0.34 +C566,4.53,-0.59,-0.02,-1.58,-2.06,-0.18,-1.63,1.18,-0.5,-0.21,1.6,-0.03,1.9,1.8,0.1,-1.17,-4.11,-0.82,-0.8,-1.08,1.17,1.78,0.22,3.16,3.18,-1.57,0.06,3.43,2.37,-0.23,0.82,-0.34,0.57,-0.81,0.69,0.89,-1.91,-1.12,-0.84,-0.13,-2.76,0.59,0.84,1.07,-1.75,-2.32,-1.37,-2,0.91,-0.86 +C567,-10,1.11,-2.32,-1.74,2.64,2.12,0.13,0.97,-4.88,4.79,-2.11,-2.77,-0.52,3.05,1.5,-1.27,0.1,-1.81,0.64,3.88,2.83,3.61,-4.17,-1,-1.51,3.56,1.26,-2.14,4.5,-4,0.79,-2.61,-0.97,-1.03,0.97,-1.61,-2.1,0.09,2.69,2.75,-2.38,3.46,-1.05,0.32,-1.1,-2.22,3.91,0.43,-1.9,3.01 +C568,3.92,-3.26,0.17,-0.35,3.59,-0.05,1.62,-3.03,-0.1,-0.5,0.34,-0.69,-1.88,0.7,-1.75,-0.39,1.76,-0.09,1,-2.02,-0.38,-2.71,0.5,1.46,0.7,0.23,2.22,0.03,-0.7,1.13,-1.09,-0.57,1.42,0.26,-2.22,2.08,-0.97,-0.96,4.35,-1.12,-1.87,0.38,3.52,-2.14,0.42,1.33,-0.31,1.26,1.82,-2.06 +C569,4.76,1.01,-0.83,-2.11,-1.47,-0.28,-0.27,2.39,0.03,-1.3,1.11,-0.81,-0.04,1.61,0.19,1.36,1.23,-0.39,-0.44,0.31,1.72,-1.09,-0.02,-0.24,-0.42,2.6,-1.01,-0.42,-1.35,0.08,-1.34,-1.62,1.22,-0.52,-2.4,1.61,-0.38,1.63,0.88,-0.78,1.99,0.23,0.4,0.15,1.25,0.15,2.44,0.57,1.92,0.56 +C570,4.47,0.56,-1.04,-2.64,-0.51,-0.48,-0.07,1.14,2.97,-1.52,0.68,2.07,-0.58,-0.64,-1.55,-0.61,0.49,0.12,-1.27,0.07,2.37,-0.35,-2.67,0.48,0.03,-3.41,-0.32,0.08,2.17,-2.84,-0.71,1.23,-0.19,-1.52,-0.78,1.47,0.89,3.34,-0.15,1.7,-0.76,0.71,-0.48,0.34,0.83,0.08,3.6,0.63,2.75,0.99 +C571,2.17,-8,1.24,1.27,-0.68,1.35,0.73,-5.45,0.94,-4.51,2.51,-1.65,-0.48,1.25,-2.7,-0.8,0.58,0.51,-0.87,-0.35,0.31,-0.93,-0.15,-0.37,1.76,1.4,1.13,2.52,1.42,0.88,-3.3,-0.56,-0.92,-0.01,-2.9,2.63,0.37,1.46,1,-0.42,1.14,0.38,-1,-0.94,-2.32,2.12,0.37,-1.81,1.36,1.07 +C572,5.42,2.24,-1.36,-2.23,-0.51,-1.76,0.24,-0.27,0.08,0.92,-0.79,-0.04,-1.89,-0.23,2.69,-0.88,-0.96,1.72,0.52,-1.28,-1.35,-0.14,-0.97,0.77,1.06,0.11,-0.2,0.33,2.31,0.59,2.43,1.25,0.45,1.32,3.3,0.82,0.24,-0.94,0.2,0.28,0.97,0.47,-0.54,-1.16,-0.72,-0.92,0.3,-0.98,-3.7,0.55 +C573,5.56,-5.51,0.91,1.45,4.61,-0.01,-2.14,-0.36,-2.23,-1.74,-3.5,5.87,0.51,1.17,3.95,0.82,-1.62,1.88,2.43,-0.44,1.8,2.15,1.63,1.08,2.01,-0.37,-1.91,-2.16,2.54,-1.19,-1.26,0.25,0.16,-2.22,1.74,-1.3,0.49,0.24,1.27,1.74,0.26,-0.6,-3.02,0.79,-1,2.43,-3.86,1.15,-0.37,0.84 +C574,3.41,0.7,-0.67,-1.84,-0.01,-0.18,-0.14,1.45,0.27,-0.46,0.43,-1.18,-0.38,1.43,3.26,-2.36,-1.41,-0.3,-0.4,-0.41,0.43,-0.61,-2.19,0.85,0.75,0.5,-3.23,2.18,4.4,-0.63,0,-0.42,1.8,-3.74,-0.39,-0.89,-1.8,1.25,-2.4,0.48,-0.96,0.2,0.56,-0.59,3.96,0.18,-0.38,-0.28,0.72,0.75 +C575,1.05,6.73,6.29,6.16,-0.69,-1.05,-0.17,-0.06,0.06,2.97,-1.37,-0.64,-3.84,2.33,-0.87,-0.16,0.54,-2.24,-1.58,-0.33,0.23,2.2,0.85,-0.13,-1.93,-1.44,-0.08,1.17,-2.37,-2.29,-1.19,0.13,-1.29,-0.03,-0.88,-2.17,0.69,-1.48,-1.04,-3.22,0.79,-0.86,0.61,1.22,1.34,0.89,-4.31,-0.43,-0.04,-0.05 +C576,5.24,-0.16,-0.97,-1.63,-2.6,0.4,-1.3,1.45,1.07,-0.18,0.21,0.18,-0.46,0.91,0.14,-0.23,1.23,1.08,-0.04,0.62,-1.66,-0.9,0.57,-1.72,0.23,-2.33,-0.85,-1.16,2.67,0.29,-1.57,1.97,1.03,1.31,-1.48,-0.94,1.63,0.24,1.03,-1.23,-1.19,-4.79,-0.94,-0.53,-0.51,-0.38,0.61,1.4,1.94,0.42 +C577,-12.5,-0.89,-1.71,-2.29,0,2.43,-3.42,-0.35,-1.22,2.27,-0.56,0.91,1.48,0.44,-0.78,0.98,5.88,-1.33,1.37,0.61,2.3,-1.35,-1.66,-2.91,4.21,-1.2,-4.69,0.12,-3.38,-1.49,-1.7,1.06,-0.79,0.41,0.02,-3.46,-2.01,-0.34,0.85,4.76,-0.54,1.93,3.46,0.85,-6.27,-1.69,-2.38,-2.74,-0.17,1.98 +C578,4.38,1.06,-1.88,-1.49,-0.68,-0.61,-0.5,-0.78,2.64,-0.02,2.53,2.19,1.12,-0.27,-2.3,-1.8,-0.05,1.87,-0.02,-0.27,1.91,-1.45,-0.57,2.24,-1.6,-1.6,-0.49,-1.96,-0.67,-0.01,0.41,1.64,-2.72,1.21,-2.15,-1.15,2.38,-0.64,-1.13,0.83,-1.55,0.01,-0.71,1.13,-2.67,-0.07,-3.11,-0.91,0.37,3.08 +C579,3.01,1.45,-1.51,-2.56,-2.59,-1.07,1.16,2.16,-0.64,-0.66,-1.02,-1.59,0.94,1.46,-1.76,1,1.48,0.41,0.33,2.2,2.23,0.28,-0.18,1.21,-2.32,1.5,-1.01,0.5,-1.2,0.78,-0.58,-0.26,0.32,-0.29,1.11,-0.29,-0.99,-0.35,-1.21,-0.21,-0.91,-0.46,-1.3,-0.1,0.57,-1.59,4,1.65,-0.16,-0.5 +C580,3.48,-1.97,-0.79,-1.43,-3.54,-0.39,-1.05,0.4,0.14,2.92,0.7,0.49,-0.32,0.04,0.62,2.28,-0.22,-1.25,1.7,-0.31,1.49,-2.72,-0.5,-1.44,-3.6,-2.83,1.15,0.95,1.25,0.36,-1.94,1.96,1.58,0.05,-1.94,-1.23,-0.21,-0.42,0.28,1.25,0.79,-3.91,-0.46,-0.62,-0.9,-1.2,-0.38,-0.03,-0.51,1.67 +C581,4.88,1.04,-2.63,-2.09,0.86,0.14,-0.26,-2.48,1.57,-2.32,0.15,-0.15,-2.38,1.62,-1.52,0.36,-2.28,0.38,1.32,-0.24,0.86,-1.45,-0.3,0.94,1.42,0.18,0.83,-1.25,1.1,0.01,1.1,1.18,-0.51,-0.29,-1.98,0.61,-1.77,0.93,1.37,1.88,-0.08,0.9,1.3,-0.69,-0.76,0.04,0.7,-3.52,-0.63,-1.01 +C582,3.64,-1.63,-0.09,-1.5,-5.52,-1.11,-2.29,0.49,-0.04,0.42,-0.5,-0.59,2.96,0.95,-1,-0.82,1.35,0.56,1.25,-1.31,-1.5,4.31,-0.65,2.6,-2.38,-0.21,3.07,-2.04,-1.51,2.64,0.05,-1.35,0.63,0.48,0.69,-0.43,-0.25,0.25,-0.21,-0.62,-2.39,1.17,5.18,-3.94,-2.73,-0.64,3.31,-0.87,-0.23,0.83 +C583,3.57,8.04,4.45,4.48,2.87,-0.36,0.33,0.35,-1.1,1.68,0.88,0.03,1.07,0.19,2.22,-1.23,-2.7,-0.7,1.04,0.95,0.81,0.9,1.43,0.23,1.42,-0.46,0.42,0.37,2.34,-2.62,-2.09,0.43,1.36,-0.62,-1.45,2.4,-0.19,-0.69,-0.79,-0.62,-0.34,1.37,0.15,1.1,-0.79,0.47,-0.63,-1.36,-0.5,1.06 +C584,-7.21,0.46,0.09,-1.69,2.19,-3.71,4.49,0.39,0.34,0.74,1.42,2.1,-0.04,-1.29,0.85,-1.26,-2.35,0.77,-1.89,0.75,1.06,1,1.1,1.51,-2.38,2.04,0.55,2.82,1.17,1.68,1.55,1.88,-0.31,2.35,0.28,-1.13,-1.99,1.15,-1.57,1.52,0.27,-1.93,0.29,0.9,1.07,-1.21,1.15,0.73,-0.94,-0.42 +C585,4.58,-0.68,-1.23,-2.94,-0.08,0.27,0.34,-2.99,-0.77,-2.02,1.11,2.14,-0.59,-1.75,-2.86,-1.31,-0.91,1.59,-1.59,0.56,2.72,0.76,-0.68,1.76,0.74,2.31,-0.28,0.67,1.13,3.07,-0.16,2.06,1.62,-0.27,0.47,1.92,0.47,1.59,1.03,-2.1,-0.84,-1.79,0.51,-0.14,-1.53,-2.1,-0.14,2.1,0.71,1.59 +C586,3.25,9.07,5.79,4.49,3.83,0.89,-0.22,0.5,0.82,-0.7,0.15,-0.91,1.35,-0.51,1.97,0.12,-0.66,0.53,0.39,0.84,-1.7,-1.15,-1.37,-2.77,-0.77,-1.96,-1.66,-0.1,-0.82,0.58,0.37,1.17,-1.23,-0.94,-0.56,-0.09,0.35,1.22,-1.93,-2.46,1.41,-1.03,1.13,-1.82,0.11,-1.79,-1.1,-1.49,2.1,-0.92 +C587,5.45,2.1,-1.83,-1.43,-0.73,-0.33,-0.07,1.39,1.54,1.86,1.06,-0.93,1.51,0.66,0.07,1.53,1.21,0.79,-1.3,2.64,-0.48,0.88,-2.17,0.82,0.82,1.92,-1.14,0.5,-0.53,-0.65,1.13,-0.24,0.9,0.14,-2.22,-2.81,0.13,-1.3,1.88,-1.67,-1.56,2.85,-0.76,1.36,1.03,-2.21,-0.65,-0.77,-1.62,-0.85 +C588,3.78,-2.19,-1.37,-0.81,-4.87,-0.6,-1.14,-0.9,-2.3,1.15,1.47,-1.12,2.53,-0.53,1.11,-1.21,1.19,0.55,1.89,0.77,-1.46,1.96,0.29,4.71,-0.97,-3.88,1.12,-1.06,5.97,0.66,-1.68,0.4,2.02,-2.08,2.22,2.97,0.77,1.88,3.23,-0.13,-1.48,-1.19,4.02,-3.74,0.79,-0.46,0.97,2.24,-0.29,-0.37 +C589,-11.42,2.99,-0.75,-2.21,2.53,-0.24,1.29,-1.79,-1.88,-1.54,1.3,-0.69,1.31,0.4,-0.6,-1.64,-0.42,-0.56,-0.11,-2.1,-1.38,-1.88,-1.17,1.54,1.17,1.19,2,-0.73,-0.06,-1.44,1.08,0.62,-4.61,1.65,0.05,-0.19,0.38,-1.12,3.24,0.08,-1.99,-2.21,-0.07,-2.41,2.09,1.26,-1.92,-1.83,1.31,0.49 +C590,5.99,0.41,-2.37,-4.13,-3.54,-0.41,-1.36,0.41,0.52,0.63,0.82,-1.89,0.73,-0.83,-0.06,-0.76,-0.39,-1.09,-0.15,0,0.09,-2.84,0.15,0.63,1.36,-0.69,-0.66,0.51,-3.67,-0.39,0.63,1.04,0.5,1.87,-0.05,-0.05,-0.96,0.41,0.28,1.42,0,1.64,-1.08,-2.54,-0.25,-1.89,0.25,1.2,0.41,-1.07 +C591,-12.81,0.99,-0.35,-2.52,1.12,2.42,-1.32,-0.23,0.16,-0.79,1.21,1.27,1.08,-0.31,0.31,1.74,0.27,0.26,1.24,1.31,0.24,-0.21,-2.84,-2.6,-2.41,-1.1,0.79,1.85,-0.76,1.03,1.22,-0.32,-2.51,2.63,0.76,-0.69,-0.71,-0.67,0.98,2.2,0.97,0.82,0.6,0.17,1.88,-0.05,-1.87,0.95,-0.85,0.29 +C592,-9.16,2.99,4.33,3.98,-0.84,0.8,-5.43,0.35,11.24,-2.05,1.09,2.32,0.7,-4.36,-2.04,2.31,-0.42,0.15,-2.83,-1.41,1.5,-2.85,0.8,1.19,2.84,-2.08,-1.49,0.46,0.42,-3.73,0.81,1.11,1.66,-0.28,-3.1,-1.9,1.61,3.04,-2.55,-0.84,-0.05,0.02,-2.34,0.63,-1.96,3.54,0.17,2.59,-1.27,-1.63 +C593,4.6,-4.79,1.56,3.06,1.93,-1.39,-0.2,0.42,-1.35,-0.36,-7.11,7.17,-1.86,1.08,2.72,3.69,3.94,1.26,-1.14,-1.49,2.65,2.14,-3.65,-2.62,3.26,-2.96,5.38,0.99,1.54,-0.11,0.04,-1.81,2.73,-1.93,1.16,0.62,0.11,1.13,-4.43,-3.19,5.02,-4.88,-2.79,3.89,3.31,-0.81,-2.52,-0.33,-4.57,-0.38 +C594,-10.76,-0.8,4.84,5.07,-4.47,3.88,-10.33,1.39,7.99,-2.42,-0.3,0.49,1.23,-1.58,1.22,4.26,-1.46,1.64,-0.24,-2.43,2.2,5.18,2.72,-0.17,-0.67,-1.49,-1.3,-1.5,-1.85,-0.53,0.8,-0.96,0.52,-1.89,1.25,-0.7,0.02,-1.19,1.61,-1.37,1.89,1.14,-2.45,-0.69,1.6,-0.47,-0.78,0.33,-0.77,5.38 +C595,-13.3,1.75,0.96,-1.79,2.07,-0.45,0.13,-0.57,-0.44,-0.9,0.07,0.53,1.94,1.07,1.8,0.65,0.92,-1.03,0.54,0.07,0.14,-0.4,0.74,-0.36,-4.26,0.67,0.1,-0.3,-1.21,1.2,-0.17,0.25,-2.25,0.54,0.1,-0.7,-0.3,0.21,1.48,-0.45,0.18,2.26,-1.82,1.64,0.78,0.09,-0.48,-0.35,-0.55,-0.31 +C596,2.44,-0.81,-0.84,-3.22,-4.02,-0.39,-2.88,0.98,-0.79,1.53,-0.63,-0.1,0.86,-0.65,-0.39,1.67,0.42,-1.39,0.35,1.6,-1.8,0.06,-2.15,0.41,2.62,0.68,0.76,2.28,-0.21,-2.63,0.01,3.76,-2.65,-1.05,-2.99,-1.27,0.94,-2.23,-0.1,-0.32,0.54,-0.2,0.67,-2.18,1.63,-0.62,2.18,0.78,0.68,0.09 +C597,-11.06,2.15,-2.88,-2.78,3.17,1.61,-0.01,0.15,1.39,-0.94,-0.16,0.75,-0.06,0.43,1.75,-1.68,-0.86,0.36,-1.29,1.97,2.23,0.01,-1.01,0.05,0.85,0.71,-0.42,-1.79,-0.65,1.1,-0.91,-3.11,0.14,-0.44,-2.37,-1.91,0.53,-3.06,0.79,1.9,-0.85,0.63,1.12,1.91,-2.95,-2.94,-0.37,1.3,1.04,-1.31 +C598,4.56,0.54,-2.56,-2.87,0.63,-0.48,0.6,-0.64,0.44,-0.25,1.74,0.97,-0.46,-0.22,0.19,0.95,-2.14,-2.11,0.9,-1.58,1.03,0.33,2.02,-0.82,0.24,0.78,-1.48,-1.3,-0.51,-0.81,1.45,-0.88,0.02,1.26,0.08,0.02,1.39,-0.02,0.5,0.27,2.92,0,-1,-1.41,0.37,0.81,1.3,0.19,-2.33,-1.06 +C599,3.48,-1.18,-0.74,-1.07,-2.88,-0.04,-0.15,-0.35,-0.68,0.45,-3.33,0.45,1.03,-0.35,1.02,0.5,0.48,-0.12,-1.09,-1.97,0.97,-2.02,1.06,0.27,-1.12,0.62,1.15,-0.68,-1.89,1.11,-2.37,-2.55,-3.12,-2.39,1.24,2.25,-1.04,-1.38,0.02,0.99,-1.22,-0.38,-3.3,-0.05,4.61,1.7,-0.12,1.74,1.07,2.8 +C600,4.07,0.87,-1.63,-1.92,-1.08,-0.76,0.79,1.16,1.11,-3.29,1.79,1.18,-1.4,3.36,0.73,-0.02,-0.43,-1.22,-1.43,-0.18,0.59,1.83,0.05,-0.27,-0.89,-1.16,-2.27,-0.98,-1.27,0.8,2.17,1.29,-0.76,2.68,1.72,0.09,3.13,-1.43,-1.87,0.54,-0.36,-0.45,0.05,0.67,2.51,2.86,-0.07,0.36,0.19,-1.15 +C601,-7.18,3.74,-2.71,-4.06,5.25,1.4,2.37,-0.87,-3.71,-0.36,-1.58,-3.7,-0.89,0.78,1.19,0.54,0.34,1.79,-3.38,-3.01,-4.03,2.24,-0.65,4.3,1.29,-2.03,0.41,-0.74,-0.32,1.18,0.35,2.55,-4.5,2.47,-0.29,0.97,0.64,1.44,0.54,-0.46,-0.94,-1.91,0.65,-1.11,2.83,-0.31,-1.21,0.62,2.24,2.21 +C602,-7.73,4.72,-2.65,-4.51,5.83,1.51,1.93,0.41,-0.05,0.47,1.79,-0.38,-0.62,-1.3,1.02,-0.38,-2.55,-0.46,0.69,0.93,-0.31,1.47,1.62,-1.4,1.64,1.1,-0.33,0.11,-0.16,0.44,-3.84,-1.11,-1.01,0.3,-0.89,0.07,0.6,1.27,-0.57,0.49,-1.2,1.06,0.47,0.51,-0.12,1.06,-0.02,0.78,0.83,-0.18 +C603,3.74,9.09,5.34,5.36,4.01,-0.09,-0.02,-0.02,-1.6,-0.05,-1.61,-0.77,3.53,-2.36,-2.25,2.9,-0.68,-1.45,-2.5,2.48,-1.71,-1.13,0.22,-1.4,0.7,1.41,1.56,2.72,-1.72,2.27,-1.78,-3.73,-2.97,-2.09,-3.88,1.42,3.01,2.63,-2.31,-0.47,-0.95,-1.24,0.93,1.16,0.91,-1.06,-2.9,1.5,2.13,-1.75 +C604,3.57,7.4,2.16,2.1,2.14,-0.47,0.53,0.27,1.24,-0.73,-0.56,-0.12,1.88,-0.01,2.78,0.65,0.24,-1.77,-0.28,-0.3,-0.65,-0.21,0.72,-1.65,-0.15,-0.66,-0.92,-2.31,0.19,0.79,-1.23,0.86,0.31,-0.1,-0.92,1.64,0.13,-0.27,-1.92,-1.29,-0.02,0.87,1.66,-0.74,-0.07,0.37,-0.17,-1.13,-0.75,2.19 +C605,-10.19,3.43,-1.2,-4.18,4.6,2.11,1.61,0.61,-1.29,1.33,-1.3,0.37,-0.23,1.11,1.65,0.44,1.33,0.16,-1.06,-3.06,0.53,-4.2,0.16,1.28,-0.62,-0.73,-0.51,1.89,-0.53,1.66,-1.31,0.4,-0.91,-1.15,-0.92,0.26,1.32,1.65,-2.62,2.15,0.65,3.63,0.86,0.92,-1.48,-0.39,-0.35,0.59,0.72,-1.1 +C606,-9.96,1.54,-1.97,-4.27,3.59,3.13,0.18,-0.41,-1.86,0.73,-0.77,-1.87,-0.28,-1.54,-1.78,1.37,-0.09,-0.46,-2.25,1.59,1.42,1.25,-1.33,-0.29,0.6,1.62,-1.9,-1.74,-2.96,-1.65,-2.06,1.84,0.46,1.52,0.16,-1.53,-0.41,0.3,-0.78,-0.72,-0.93,-0.54,-0.52,-1.08,0.6,-1.57,-0.47,-1.67,0.17,-0.21 +C607,-15.19,-1.05,1.94,1.19,-2.71,-0.39,-1.17,-0.59,0.96,-3.79,-0.5,1.96,-0.42,-0.53,0.32,-1.52,0.92,-2.69,1.56,-0.16,-2.2,0.66,-0.93,-1.08,1.82,-0.48,2.13,-1.46,-3.29,0.23,-0.14,1.81,-0.29,-0.37,-1.59,0.65,-0.65,-2.79,1.09,0.17,2.92,-1,-0.65,1.23,1.5,-0.05,0.9,0.31,0.58,-0.08 +C608,3.54,-9.92,2.41,2.63,6.46,-0.87,1.27,-0.59,-1.45,0.28,0.32,3.03,-0.45,-1.8,-0.46,0.57,-1.16,-5.31,1.35,-2.28,-4.4,1.12,-1.38,0.27,-0.81,-5.58,-0.1,-2.9,-2.44,-2.98,-1.01,-1.01,2.81,-1.58,3.17,-4.06,1.78,-0.56,-2.69,0.85,-1.15,2,-3.91,-3.26,-0.27,-2.48,1.23,-1.98,-2.71,0.43 +C609,3.05,-1.3,-1.5,-1.75,-2.6,0.4,-0.14,-0.82,-0.01,2.77,3.4,0.41,1.14,-0.61,0.22,-0.04,-1.89,-0.62,1.79,-2.6,-3.05,0.47,2.03,-0.78,-0.36,-1.58,-0.02,-0.59,2.74,0.52,-1.98,-1.12,-1.41,-1.8,-0.65,-0.8,-2.48,-1.15,2.15,2.28,-1.12,-1.51,1.69,1.43,0.86,0.64,2.41,-1.4,0.11,-0.68 +C610,5.04,1.85,0.02,-1.86,-0.63,-0.57,0.48,1.42,0.57,-0.35,-0.96,-0.31,-2.27,-0.2,0.74,-0.57,0.89,-0.11,-1.22,-0.34,-0.48,-1.21,0.93,-1.87,1.09,-0.64,1.27,-0.23,-1.36,-1.7,2.56,0.4,-2.45,-0.39,-0.18,-1.42,-1.79,1.42,0.19,2.34,0.21,-0.45,-1.19,-0.07,-0.12,-0.71,0.77,0.08,-1.59,-0.11 +C611,4.11,7.06,5.32,5.93,-1.03,-1.11,-0.64,-0.06,-3.36,3.13,-0.98,0.53,-5.98,2.05,-1.89,3.84,0.95,2.82,-0.9,-4.91,3.24,0.01,0.54,2.22,-3.31,3.4,-0.85,0.61,-1.97,2.17,0.84,0.12,-1.66,-0.9,1.39,-4.13,-3.46,1.16,6.94,3.03,0.35,-1.22,0.71,-0.3,-0.5,-4.45,-1.27,4.46,3.58,-2.03 +C612,4.58,2.54,-0.76,-2.54,-1.2,-0.55,0.42,1.71,0.12,-0.14,1.27,0.95,0.47,0.39,-1.22,-1.16,-1.55,1.04,-0.02,1.18,-1.75,2.38,-0.24,0.2,-0.13,-1.27,-0.69,0.33,-0.05,-0.73,-0.44,-0.98,-1.62,0.14,0.49,-3.74,-1.87,0.07,0.54,-1.25,-1.42,1.26,-0.92,0.66,1.91,0.56,2.93,-3.05,-1.25,-0.37 +C613,3.42,0.32,-1.22,-2.53,-1.22,1.16,-0.82,0.28,0.64,1.98,1.11,-0.51,1.12,2.2,2.52,-1.58,-0.88,-0.35,0.61,-0.6,-0.97,-0.99,0.51,0.42,-0.91,-0.02,1.61,0.59,1.55,-0.35,1.68,0.54,0.92,-1.37,-1.02,-1.52,-0.04,-0.78,2.27,0.72,-1.59,2.26,-0.81,-0.71,-0.25,-0.77,-0.62,0.66,1.53,0.06 +C614,-12.25,1.56,-0.85,-1.73,1.91,3.43,-1.45,-0.38,-0.57,0.01,0.01,-1.33,-0.24,-0.85,0.65,2.95,1.1,-0.39,2.19,3.44,-0.91,-0.21,-0.06,0.11,-0.53,0.44,-1.78,2.21,-1.75,1.2,-0.39,-0.74,2.26,3.08,1.81,-1.26,-0.44,0.89,-0.68,-2.4,2.77,-1.06,1.91,-0.1,0.77,0.73,-0.17,2.87,-0.67,0.17 +C615,-6.48,4.08,-2.15,-3.25,4.59,0.71,1.97,-0.36,-1.61,0.83,-0.64,-1.4,-0.93,-0.71,0.26,-1.69,-1.96,0.22,1.09,-1.4,2.55,0.01,-1.44,2.61,-0.59,1.71,-0.62,2.17,1.27,-3.14,-1.17,2,0.8,0.41,-1.67,-0.68,0.98,1.46,0.83,-1.47,3.08,-1.58,0.59,-1.75,-0.43,2.75,-0.36,1.19,-0.13,3.39 +C616,4.31,-1.07,-1.28,-2.38,-2.8,-1.34,-1.32,-0.93,-1,2.03,1.72,1.63,1.96,-1.97,0.35,1.3,-2.1,0.39,-2.38,-1.74,-2.47,-0.11,-0.1,0.58,-2.66,1.07,-1.77,0.06,0.39,-0.61,-2.45,-2.15,2.07,-2.35,0.17,-1.01,-1.88,2.55,1.37,-3.09,4.33,0.58,-3,-2.56,0.96,-1.53,-1.14,-0.35,1.61,1 +C617,5.77,2.83,-2.49,-4.04,0.94,-0.24,1.13,2.87,1.9,-0.62,0.15,0.23,-0.99,-1.78,0.12,-1.82,-1.61,-1.01,0.88,0.57,1.71,0.26,-0.22,-1.37,1.11,-0.72,-0.07,0.01,1.35,1.45,0.09,-1.39,-1.42,1.75,0.77,-1.53,-1.19,-2.03,-0.56,2.54,1.05,0.31,-0.24,-1.21,0,3.27,-1.73,0.77,0.53,0.43 +C618,5.34,0.81,-0.08,-2.71,-1.52,-0.36,-0.06,0.69,0.07,-2.73,1.38,-1.22,-2.44,-0.15,-1.1,-1.38,0.8,0.11,-0.92,-0.16,-1.33,-1.32,-0.46,-0.55,0.35,4,-0.17,0.11,2.47,-2.08,1.57,2.03,-2.26,-0.49,2.9,-0.55,0.15,3.31,2.17,-0.31,-2.4,-1.91,-2.54,-1.87,-2.12,3.2,2.37,-0.37,0.2,1.65 +C619,-13.43,2.01,0.86,-0.37,1.16,-0.88,-0.09,0.19,1.14,-0.79,1.29,-0.15,0.92,0.56,0.44,-0.01,-0.55,-1.3,0.45,0.37,-3.36,-1.43,1.96,-2.39,-3.86,-0.29,0.24,-1.87,-1.53,-1.19,-1.38,2.74,0.62,1.29,-0.35,0.1,1.49,0.6,-1.54,-0.34,3.41,1.54,-0.29,0.53,-0.38,0.09,-1.57,-0.78,-1.2,-0.72 +C620,4.65,1.2,-0.72,-2.24,-2.34,-0.33,-0.12,2.36,0.72,0.64,-1.23,-0.08,-0.65,2.87,-0.82,-0.05,0.37,-0.28,-1.06,-0.71,2.95,-0.34,-1.75,0.07,-1.88,2.48,-1.59,-0.75,-1.45,1.39,-1.38,-1.42,-0.16,1.72,1.06,1.55,1.37,0.84,2.62,0.8,0.94,0.32,0.32,-2.26,-1.19,-0.86,0.63,0,1.27,-0.2 +C621,-12.91,2.4,-0.67,-3.46,1.88,2.37,-1.3,0.6,-1.92,-2.58,0.51,-0.62,-0.83,0.94,-1.54,-0.84,-1.95,-1.49,3.23,-1.28,2.26,2.98,1.24,0.6,0.61,-0.48,4.08,-1.39,0.44,-1.98,-0.48,0.38,0.75,-1.29,1.81,0.66,-0.08,-0.91,-0.17,2.04,-3.06,-2.76,-2.88,0.9,2.23,0.09,-2.74,-3.25,1.99,-2.55 +C622,3.85,-3.14,1.16,1.08,-0.71,-0.61,-0.6,-3.03,-0.15,-2.15,-0.71,-0.28,-2.02,1.35,3.5,2.09,-2.42,1.76,-0.6,2.16,0.75,-3.35,-1.75,-1.29,3.52,1.87,-0.48,-0.07,0.05,1.93,3.13,0.88,-0.1,-2.47,-0.23,0.75,1.06,-1.97,-0.18,4.33,0.69,-0.3,0.64,-2.1,-1.25,-0.32,-1.43,-1.05,0.1,-1.18 +C623,6.36,1.14,-0.88,-1.8,-1.55,-0.59,0.96,3.41,-0.96,-0.25,-0.69,-0.27,0.47,0.98,-1.03,0.6,0.95,0.76,-1.5,-0.01,1.31,0.02,0.17,0.33,-0.65,-1.87,-1.6,0.64,-1.62,-3.91,1.4,-0.44,1.67,0.04,0.53,1.82,-1.16,0.34,-0.11,2.05,3,-1.08,-0.18,-1.2,-0.37,0.6,-2.15,0.14,0.02,-0.45 +C624,5.67,1.74,-1.37,-3.18,-2.81,-0.66,-1.3,1.55,-1.62,-0.88,1.8,-0.26,-0.69,1.01,-1.61,-0.95,-0.84,-2.15,-0.21,-1.44,1.93,-2.79,1.82,1.69,0.78,-0.66,-0.32,-1.28,0.6,1.1,1.67,2.61,1.63,-0.6,0.3,-2.25,-0.12,1.35,0.69,-0.38,-0.15,1.46,1.6,0.27,1.25,-0.63,0.75,-1.46,2.29,-1.25 +C625,-14.24,-2.97,1.41,2.01,-3.01,-4.71,3.04,-0.9,-0.11,2.14,0.34,-2.14,-0.2,-0.57,-0.62,-3.08,3.28,-2.22,1.92,3.14,-0.88,-0.26,0.21,2.55,1.69,2.15,-0.86,2.32,-0.26,-0.15,-2.31,-0.77,0.24,-0.87,2.68,3.33,1.05,1.42,-0.04,-4.92,0.78,-2.13,-0.25,2.03,2.44,0.36,-0.29,-1.34,2.24,1.56 +C626,5.88,2.49,-1.9,-3.85,1.67,0.23,1.66,-1.7,1.45,0.96,0.75,0.4,-0.84,-1.77,0.78,0.68,0.88,-0.24,0.37,-0.58,1.19,0.94,-0.14,-0.88,-0.55,-0.58,-0.31,-0.28,1.39,0.45,1.94,1.12,-0.36,0.65,0,-0.03,-0.54,-0.3,-0.72,-0.25,-1.61,-0.32,1.66,0.09,1.71,0.31,1.3,-1.44,0.15,1.17 +C627,4.54,1.74,-0.94,-1.73,-0.99,-0.55,-0.38,0.9,0.23,1.14,0.65,-1.92,1.8,0,1.46,0.94,1.92,-0.92,-2.49,-0.51,-2.94,2.41,0.42,-1.97,0.06,-1.53,-2.02,-1.55,-0.67,1.01,0.83,-2.29,-0.21,-1.63,-1.31,-0.08,0.97,-0.12,0.81,-2.26,-0.6,-0.17,-2.16,1.71,0.73,1.11,-2.3,-1.44,-0.19,-0.13 +C628,4.84,0.29,-0.81,-1.75,-1.85,0.64,-1.39,2.54,1.23,-0.17,-2.31,0.75,-0.49,2.19,1.35,-0.97,-0.27,0.17,1.55,1.18,-3.21,0.29,-0.76,-2.24,0.98,-1.91,-0.99,-1.9,2.27,-0.48,1.34,0.18,-0.61,-1.37,2.91,-0.81,1.39,-1.22,0.83,1.73,0.51,1.25,2.26,4,-1.08,0.73,0.69,0.53,1.07,-0.11 +C629,3.27,0.12,-0.23,-1.18,-5.57,-0.74,-1.39,1.06,-1.08,1.63,0.17,-0.07,1.18,-2.21,1.19,-1.34,1.51,-0.38,-0.78,0.03,-0.81,0.66,-0.47,1.5,2.18,-0.51,1.24,0.39,0.31,0.63,3.75,1.14,-0.87,-0.2,-1.16,-1.22,-0.39,2.1,-2.15,0.79,-0.74,-0.32,-1.2,1.76,1.7,0.37,0,-1.09,-3.3,-1.3 +C630,-7.93,2.29,-3,-5.09,6.37,2.92,1.58,0.75,-1.96,0.75,1.97,1.88,-0.9,-0.47,-0.09,2.65,0.89,-0.33,1.83,-0.34,-0.26,-0.28,-1.66,-0.83,-0.19,1.35,-0.37,-0.28,-0.79,0.3,0.42,1.11,0.58,1.22,-0.33,0.69,1.52,0.84,-0.15,-0.14,-0.83,-1.28,2.31,-1.9,-0.41,-0.53,-1.07,0.22,-0.4,-0.11 +C631,-10.47,1.5,-1.71,-4.44,2.22,0.32,1.21,1.37,-0.99,-0.86,-0.53,-0.32,-0.52,0.54,-0.68,1.38,0.91,-0.89,-0.03,0.44,-1.32,0.45,0.16,0.22,1.23,2.1,0.79,0.19,-3.07,0.81,2.18,-0.31,-3.56,-0.49,1.21,-1.48,0.47,-2.11,0.1,2.43,-0.62,-1.71,-1.27,-0.99,-0.5,1.2,-0.79,-0.31,0.42,0.05 +C632,4.51,-0.6,-0.44,-1.6,-1.42,0.08,-0.71,-0.77,0.58,0.5,-2.47,0.84,-0.91,0.17,-1.9,0.38,0.32,0.23,0.94,-0.19,-2.21,-1.49,-1.57,-0.16,1.41,2.01,2.44,1.69,-0.26,-0.57,-1.38,-0.58,1.32,2.43,0.44,-1.33,0.14,0.53,-0.86,-1.26,2.66,0.16,-0.15,0.56,0.63,0.93,-0.85,0.37,0.06,0.14 +C633,3.93,1.21,-2.33,-2.74,-0.3,1.51,0.61,-0.32,-0.78,1.4,2.78,1.07,-0.75,0.87,2.83,0.77,0.23,2.91,-0.23,0.13,0.71,-3.46,-3.11,-1.07,-2.07,-0.31,0.43,-2.34,1.44,-0.4,0.53,-1.89,0.94,-0.12,0.27,0.11,0.3,-1.75,0.07,-1.2,-2.36,-3.31,1.49,-0.21,2.4,-2.56,0.06,3.1,-1.09,-0.71 +C634,6.05,1.57,-1.44,-2.77,-2.07,-1.31,-0.44,2.34,0.11,-0.71,0.6,0.49,1.18,0.76,0.81,0.64,-0.09,1.16,0.08,0.59,-0.12,0.02,-1.85,-2.06,0.6,-0.87,-0.15,-1.19,-0.75,2.81,1.58,1.33,2.2,-0.14,-2.35,-0.28,-0.18,-0.22,2.29,-3.29,-0.78,-0.27,0.13,-0.31,-0.54,-0.86,-0.28,-2.39,-2.2,-3.38 +C635,-11.26,-0.22,0.67,-2.05,2.11,3.45,0.17,0.03,-1.03,1.14,2.74,1.08,-0.52,-2.61,-1.46,1.89,-1.22,-0.01,0.44,-0.28,1.1,-1.04,2.54,-0.45,-1.77,-0.74,-0.57,0,0.5,1.02,-2.14,-0.03,-0.25,2.6,-1.72,1.73,-0.43,0.1,-1.09,0.32,0.46,0.69,0.79,0.36,1.97,-0.9,-0.18,-2.46,-0.75,-1.2 +C636,-12.62,-1.58,-3.37,6.85,-3.95,-8.18,2.47,0.75,0.33,-1.99,0.08,-1.12,-1.1,-1.94,-1,3.02,-4.47,-0.5,-0.4,-0.39,1.63,0.6,-0.07,2.48,-1.56,0.54,-0.11,-0.32,1.46,2.55,0.19,1.77,0.6,0.05,-0.69,-1.12,0.16,1.73,-0.51,-0.08,-2.72,-1.69,0.11,1.01,-0.35,-5.56,0.32,-2.48,-2.11,1.71 +C637,3.2,-0.43,-0.51,-2.44,-2.77,-0.03,-0.83,0.01,-0.28,1.49,0.55,0.08,0.21,-0.95,-0.74,-0.31,-2,-0.13,-1.07,0.33,-1.45,1.23,-1.95,-0.4,0.49,0.16,0,0.9,1.34,-0.45,0.9,-2.71,0.7,0.16,0.38,0.59,1.65,0.5,-1.01,0.95,-0.79,-0.27,1.15,-0.93,0.25,-2.88,0.42,-1.96,0.53,0.02 +C638,5.77,0.53,-0.91,-2.9,-2.58,-0.69,0.27,1.15,0.08,-1.3,-0.62,-0.21,1.42,-0.89,-3.15,-2.42,0.39,-0.15,-1.32,-1.77,1.09,0.19,-1.73,1.42,-0.71,0.76,0.99,0.8,-0.08,0.21,-0.07,-1.16,0.39,0.56,-0.01,-3.47,0.22,-1.4,-1.49,0.54,2.19,-0.1,-0.02,-1.2,0.55,2.67,0.95,0.48,-0.2,-0.25 +C639,2.95,-5.06,0.08,0.41,-1.41,0.43,-2.35,-5.28,-1.2,-0.25,-2.41,2.41,-1.85,-0.19,-1.17,-0.11,-0.42,0.7,-1.29,1.88,0.99,-1.16,4.02,-0.54,-3.09,-1.05,-0.07,-0.34,-0.43,2.03,-1.72,-0.22,-2.49,-0.27,-0.41,-3.1,2.06,-3.18,-0.15,1.27,-2.64,-0.44,0.43,-0.12,1.37,-0.76,-1.43,-0.65,-1.46,1.47 +C640,4.75,-2.69,-0.08,-0.75,1.46,0.17,0.04,-2.42,0.87,-1,-3.37,2.28,-2.7,-0.43,1.18,1.21,3.24,0.34,-1.71,-0.07,-2.52,-1.19,1.33,-1.12,-2.75,1.87,-0.23,1.15,-2.07,0.5,-1.08,0.82,0.26,-0.59,-0.93,-1.37,2.33,0.07,1.49,-1.31,0.76,-3.11,0.8,-0.98,1.98,1.27,-1.58,-0.01,-2.34,0.73 +C641,4.21,0.5,-0.81,-0.76,-2.38,-0.58,-0.26,-0.12,-2.31,-1.25,1,-1.88,1.98,0.43,-3.36,1.26,2.01,1.73,0.74,3.15,-1.78,-0.58,-3.59,1.47,3.58,0.78,3.25,-0.75,-1.01,-0.59,1.07,-0.03,3.06,-3.11,0.42,3.08,2.81,-0.98,-2.18,0.56,0.75,-2.01,2.3,-1.44,1.65,-0.19,-0.79,-0.89,-4.93,-0.1 +C642,-5.39,3.4,-2.93,-5.17,4.46,1.96,0.94,0.95,-2.11,1.26,1.56,-0.11,-0.43,-0.28,0.18,0.96,1.05,1.07,-1.43,-1.22,-0.17,2.36,1.42,1.81,0.83,1.99,-1.03,-2.1,0.58,-1.54,-2.02,0.49,0.58,-0.35,0.14,-2.82,-0.5,-0.1,-0.72,0.95,-1.46,0.98,1.81,-1.95,-1.81,-1.78,-2.62,-0.27,-0.5,1.52 +C643,2.86,6.14,4.89,4.83,-0.02,-0.07,-1.28,0.17,-1.91,-0.04,-0.14,-2.01,2.91,0.99,-0.01,0.04,-1.31,-2.05,-0.45,-0.63,0.06,1.32,-0.84,-1.71,0.84,-2.13,-2.82,-1.26,0.05,3.11,-2.4,-3.69,-3.49,-3.02,-2.74,-2.61,-0.3,0.01,-1.5,0.04,0.41,1.25,-0.86,-0.5,0.86,-2.28,2.53,-0.46,-2.53,-0.56 +C644,-1.16,4.8,-46.58,33.14,-1.13,0.59,-1.13,0.97,0.43,-0.29,-0.83,-0.11,2.47,0.57,-0.73,1.99,-1.04,1.72,-2.73,-0.87,-0.76,-3.54,2.81,0.69,-3.99,-1.48,0.53,-0.05,1.94,3.77,0.56,1.42,-2.16,-2.33,-0.95,0.56,-0.73,0.82,0.25,-0.65,1.49,3.11,0.2,-0.23,0.15,-0.98,-0.69,0.18,-4.12,0.9 +C645,4.45,-2.2,-0.28,0.37,5.65,0.36,0.66,-3.48,1.82,1.27,2.9,-1.97,1.17,1.18,-0.09,1.73,-0.74,-1.17,1.54,-0.49,-0.13,-0.93,2.81,0.1,0.59,-2.01,-2.7,-0.48,0.79,-1.93,0.35,-1.22,0.67,-0.37,-1.63,-0.08,-0.48,-0.14,-1.07,-0.7,-0.23,0.67,2.44,-1.37,0.23,0.02,0.41,-0.38,1.3,-1.54 +C646,2.85,6,7.74,7.68,-2.51,2.16,-1.05,-0.87,0.36,2.46,1.06,0.51,-1.27,0.31,-1.2,2.14,0.61,-0.03,1.06,0.19,1.18,2.72,0.88,-0.11,-0.51,1.03,0.59,2.37,-2.5,-0.42,-0.22,-0.32,-1.3,2.23,-2.49,-0.64,-2.16,-1.85,-0.51,-0.33,1.74,0.4,-0.44,-1.08,2.06,0.52,-1.92,-0.77,1.06,0.37 +C647,-14.81,-2.83,1.79,3.24,-2.64,-11.13,5.82,0.27,2.63,0.07,-2.64,-0.12,-1.43,1.73,2.44,-1.98,-0.51,1.7,0.75,-0.76,3.47,-0.33,0.63,-1.46,3.13,0.46,1.36,-0.53,-1.67,-2.37,0.74,-0.3,-2.56,1.1,2.58,0.92,3.58,2.98,3.27,1.33,-5.12,-2.6,0.18,0.95,1.18,2.51,-3.71,-1.14,4,-1.1 +C648,3.29,-0.22,-0.55,-2.02,-1.47,0.18,1.08,-1.78,-1.22,-0.14,1.53,-0.93,1.31,0.64,1.12,0.66,-1.95,1.01,1.74,-0.51,-0.89,0.73,-1.46,0.56,0.23,0.52,-2.34,1.53,-0.25,1.86,-2.29,-2.17,2.26,0.06,-1.09,-0.12,0.22,-0.76,1.59,-0.2,-0.2,0.84,-1.49,0.85,-0.57,1.44,2.04,0.56,-0.17,1.81 +C649,-9.94,1.46,-1.37,-2.78,3.24,0.69,0.62,0.55,0.04,1.19,3.85,0.03,-0.23,-1.37,-2.76,-0.68,-0.16,2.66,-1.53,0.85,-0.56,2.57,1.19,-0.72,2.47,-0.5,0.15,-0.71,1,2.81,0.43,0.49,3.16,0.53,-1.59,0.01,0.64,-0.3,0.81,0.6,1.05,-2.9,-0.29,0.3,-0.73,0.47,0.77,-0.12,0.61,0.07 +C650,-13.27,-3.12,2.25,3.64,-4.57,-8.94,5.21,-1.58,-0.89,2.1,-2.23,-1.6,-0.53,-0.18,-0.89,-1.81,2.03,2.08,-2.73,-3.54,0.08,1.21,-0.35,0.75,2.81,-1.82,-1.84,-4.77,-0.93,-4.24,-0.23,-0.17,4.09,2.51,2.61,0.85,-1.68,2.02,0.59,-2.22,1.07,-1.29,4.02,1.23,-4.08,-3.08,1.8,-1.14,3.85,0.8 +C651,2.3,-12.36,4.55,5.39,5.76,-0.4,-1.45,6.26,-0.36,6.88,-0.2,-1.92,2.35,0.05,-0.71,2.74,-0.14,2.26,-6.34,-0.56,-2.13,-2.55,-1.49,1.61,-1.83,0.65,-0.93,5.62,1.36,1.8,-3.06,5.27,4.76,-2.59,-2.46,2.15,-3.43,-0.32,5.4,2.1,-0.99,3.18,-0.63,-1.45,-7.36,1.51,1.13,2.47,2.21,0.45 +C652,5.69,9.12,5.18,4.11,3.91,-0.9,1.46,1.39,1.8,-1.87,-0.68,-0.9,1.11,0.03,-1.25,-1.72,0.16,0.51,0.62,1.73,-0.38,-0.18,-0.27,1.06,-2.92,-2.15,-2.02,-0.77,-2.77,-2.24,1.73,1.21,-0.71,-2.44,-1.15,-2.76,-2.47,-1.34,-1.32,-0.37,-1.58,-1.59,0.39,-2.26,0.82,-1,-3.55,0.41,0.78,1.05 +C653,2.92,7.76,5.47,4.55,1.42,-0.66,0.22,-1.55,0.38,-0.36,0.67,0.24,-1.26,0.18,1.19,0.25,1.05,-1.17,-0.46,-0.29,-2.62,-0.16,1.07,1.3,-1.22,0.02,1.62,-0.02,-1.34,0.83,1.64,-1.46,1.25,0.33,0.33,1.38,-3.96,-0.17,-1.09,-2.3,-0.7,1.06,0.01,-2.39,-0.89,0.51,1.22,3.6,-1.72,0.64 +C654,2.5,6.17,5.89,5.39,0.83,0.05,-1.68,1,-1.84,-2.21,0.72,0.18,-0.6,-1.9,-0.37,-1.98,0.14,1.23,0.17,-2.35,0.33,-3.2,-0.3,-4.37,-2.32,-0.82,2.9,-0.42,-1.25,-0.3,0.36,-1.36,-1.54,-1.13,1.32,-1.78,-1.69,3.18,-1.57,2.09,0.41,-1.22,2.98,-0.29,-0.82,0.57,1.7,-0.04,-1.17,1.09 +C655,4.1,6.78,4.34,4.17,1.94,1.28,-0.94,-0.26,-2.69,0.47,0.23,-0.29,-0.67,-1.91,2.31,0.01,0.14,-0.57,-0.06,1.31,-0.96,-0.03,0.89,2.72,-0.95,-1.37,-0.76,-2.56,3.22,-0.43,-0.59,-1.18,-1.36,-0.81,0.01,0.22,-1.08,0.25,-1.41,-1.06,-0.97,-2.11,-0.62,-0.18,1.4,-0.23,-2.73,0.14,0.29,-0.98 +C656,2.73,-3.46,1.15,0.1,-1.6,1.33,1,-3.63,-0.85,-0.83,2.24,-1.58,0.02,0.71,-1.14,0.77,-0.72,0.85,2.07,-0.23,-0.38,-2.4,3.15,-0.87,2.25,-1.58,-0.86,-2.21,-0.68,1.82,-1.43,1.44,0.89,2.49,-0.32,0.47,1.44,0.96,4.27,1.35,1.36,-0.57,0.97,-3.16,1.27,-0.89,-0.73,-2.67,-0.61,-2.32 +C657,-13.84,0.87,1.67,-1.22,-0.69,1.71,-3.6,-1.31,-0.01,-3.93,-0.77,-1,2.48,2.61,-1.99,-2.63,2.29,-1.48,-2.34,0.76,-1.42,-1.19,-0.24,-1.28,0.28,0.78,-0.61,2.59,2.99,-3.12,0.44,0.16,3.79,-0.09,-1.37,-1.27,2.53,1.82,2.43,3.4,-3.54,-1.12,0.77,-2.99,-4.47,-2.66,-2.11,1.63,-1.38,-1.91 +C658,4.43,-0.12,-0.74,-1.14,-2.08,0.14,0.15,2.56,0.93,-1.16,0.56,0.4,0.71,0.53,-0.46,-1.23,1.74,0.51,-0.44,-0.98,-3.45,-2.45,-1.29,-1.21,0.05,1.06,0.55,0.12,0.59,0.44,2.31,-2.22,-0.85,0.45,-0.79,2.41,-0.59,-0.84,-0.18,-0.51,-0.05,-0.86,-2.28,0.37,0.42,-0.43,-0.41,-0.88,-1.02,-2.45 +C659,5.15,-6.42,0.13,1.94,4.07,0.36,2.19,-2.12,1.25,-2.85,2.34,-7.76,1.29,0.58,-1.38,-0.27,-1.39,2.44,1.03,-2.12,0.34,-2.4,-0.94,-0.09,-0.31,-1.09,2.56,2.89,-1.22,1.27,-2.7,1.15,-4.46,-1.62,-0.08,-1.24,0.89,3.24,-1.57,-2.88,-0.5,-1,-1.22,3.89,0.19,-0.16,-4.89,0.9,1.32,-0.14 +C660,-14.54,-3.75,3.66,4.72,-5.46,-14.31,5.55,-0.12,1.53,0.31,-1.44,2.78,0,-1.77,-2.69,2.51,1.11,0.26,-3.22,0.94,1.31,-1.45,-4.56,0.06,0.54,1.51,-1.44,-2.89,-0.9,0.09,-0.12,-0.76,-1.05,3.02,2.7,0.28,1.05,-0.81,1.28,1.22,-5.93,3.08,-0.54,0.15,-0.34,2.28,-5.52,-1.03,1.47,0.83 +C661,3.61,7.47,5.07,4.55,0.65,-0.34,-1.06,0.61,0.77,0.22,2.07,0.71,-2.5,-0.37,-1.29,0.35,-0.54,-0.99,0.1,0.74,-0.54,-0.75,2.37,2.05,0.17,0.68,-0.28,-0.18,1.67,-0.94,0.99,0.59,-1.32,0.69,-0.32,-1.08,-0.67,-0.75,-1.62,-2.59,0.57,0.24,-0.36,-1,0.25,4.2,1.36,2.93,0.9,0.26 +C662,4.04,-4.68,-0.68,-1,1.15,0.51,0.05,-1.94,0.67,-1.51,2.94,-1.35,0.94,0.13,-0.78,-1.35,0.46,-0.04,1.56,-1.27,1.22,-0.04,0.04,2.39,-0.38,1.99,0.98,-1.97,0.22,-1.19,-2.48,0.04,-0.85,-0.7,-1.12,-2.27,1.29,-1.14,-0.61,-2.16,0.92,-0.05,-0.19,-0.09,1.06,0.35,0.29,-1.46,0.5,1.25 +C663,4.46,0.11,-1.39,-2.29,-2.92,-0.58,-0.64,0.97,-2.2,0.01,-0.29,0.95,2.45,-0.94,1.16,-1.8,1.24,-1.82,1.63,-1.68,-0.66,0.3,-1.69,0.82,0.98,0.36,-0.47,-1.71,-0.12,-1.36,0.18,2.66,0.99,1.7,0.52,0.56,0.52,1.75,0.03,-0.5,-0.75,1.96,-0.58,-0.27,1.28,-0.25,1.2,-1.12,1.14,0.73 +C664,5.24,7.85,1.41,0.79,4.26,0.37,1.46,0.44,1.76,-1.36,-0.01,0.19,-0.97,0.25,-1.72,0.72,-1,-3.96,0.62,0.99,0.18,0.35,0.45,1.39,1.09,1.38,-1.03,-1.96,0.27,1,0.69,0.91,-1.13,-0.43,-0.4,-1.05,-1.05,0.68,1.43,2.45,3.03,0.63,0.63,-1.26,1.09,0.33,0.19,-0.69,-0.45,0.65 +C665,-11.06,2.92,-2.2,-5.09,2.67,3.85,-0.92,0.32,-1.11,0.53,-1.05,-0.5,0.59,-0.3,-2.07,-1.77,1.37,1.24,1.47,0.66,0.56,0.5,4.16,-1.49,-1.35,-0.15,0.04,1.19,2.61,0.57,-1.95,-0.34,-0.95,-0.85,-0.94,2.04,3.59,2.59,1.16,-0.41,0.44,1.1,-0.5,0.72,-3.86,-1.39,-1.36,-0.9,-1.56,-3.85 +C666,4.04,0.36,-1.32,-2.23,-0.63,-0.74,-0.31,-0.92,-0.23,0.18,-0.81,1.63,1.42,-1.31,0.22,0.73,-0.38,1.33,-0.63,0.19,-0.05,-2.97,3.55,0.16,-0.04,-0.36,-0.91,1.67,0.05,-1.37,-4.34,1.97,0.64,1.4,-0.95,2.15,2.79,0.98,0.63,-1.46,-1,2.28,0.12,1.99,0.2,1.67,0.25,-0.22,0.4,0.06 +C667,2.93,6.35,5.08,5.01,1.1,0.18,-0.52,0.88,-3.54,0.31,-2.5,-1.03,1.21,-0.22,1.45,-1.31,3.23,-3.56,0.81,-0.86,-1.4,-0.75,-1.71,-0.46,0.45,-0.92,-0.63,-0.96,-0.34,2.22,-0.17,-2.09,2.1,0.28,-1.62,0.43,0.44,5.33,1.49,-2.63,-1.85,-0.88,0.4,0.81,0.79,-1.89,1.17,0.12,-2.48,0.12 +C668,3.21,1.61,-0.07,-2.4,-0.06,-0.04,0.8,1.43,0.85,3.18,1.44,-0.19,0.27,-1.72,0.35,2.91,0.33,-0.67,-1.59,1.76,5.46,3.08,-0.4,-4.25,-2.82,-1.96,0.64,-2.29,1.72,1.01,-2.12,-4.04,-0.45,-0.34,1.32,3.96,-1.5,0.89,-1.92,3.15,0.38,0.35,0.2,2.1,1.7,-2.27,-1.12,-0.44,-0.75,-1.32 +C669,4.98,1.39,-1.4,-2.76,-1.41,-0.62,-0.39,2.93,1.28,0.25,-0.35,1.33,-1.34,0.21,-0.3,-2.6,-2.11,-0.48,-1.95,-1.68,1.25,0.66,-0.74,-1.57,0.3,-0.2,0.06,0.1,1.72,-0.63,-0.56,-0.96,-0.54,-2.49,-0.84,-2.14,-1.39,-0.05,3.14,-1.65,-0.59,2.84,3.69,0.94,1.84,-0.42,-2.36,-0.64,-1.13,-1.23 +C670,4.2,-0.07,-0.9,-2.05,-1.33,-0.98,-0.66,0.88,0.01,0.33,-0.87,-0.78,0.86,0.5,-0.31,0.19,0,-1.9,-0.72,0.5,0.5,1.74,2.8,0.9,1.48,1.11,-1.29,0.44,-1.31,-0.42,-0.25,1.96,0.57,0.33,1.16,0.05,0.59,0.37,1.8,-1.04,2.35,-2.36,0.76,0.13,-0.08,-2.07,-0.88,0.32,-0.89,-3.88 +C671,-13.64,-0.26,0.88,-0.13,-0.03,0.84,-1.4,-0.5,-2.54,-0.07,0.48,1.82,-0.33,0.46,-1.1,0.69,1.73,-0.37,-0.3,0.13,0.26,0.88,-0.5,-2.46,1.62,-2.44,0,-2.74,0.36,0.81,-0.66,-1.33,1.04,-1.74,-2.49,-1.97,-1.6,-0.5,2.5,-0.94,0.87,-2.15,0.11,-0.76,0.72,0.65,-0.67,-0.39,1.06,0.67 +C672,-10.05,2.04,-3.45,-3.31,2.93,1.95,-0.8,-1,0.06,-0.22,-0.26,-1.61,-0.74,-1.89,0.76,-2.71,1.29,0.12,2.83,0.66,1.13,-0.81,0.5,-0.84,-1.01,-2.57,1.72,0.47,-2.08,-0.84,0.13,1.14,1.79,1.63,-1.39,1.5,-0.66,-3.48,2.15,-0.54,4.64,0.66,0.62,0.56,-1.72,1.3,-1.09,1.37,-1.52,1.04 +C673,-6.01,2.83,-1.46,-3.78,3.02,1.33,2.37,0.34,-0.68,0.26,1.13,1.71,-4.15,0.64,-1.31,0.64,-2.56,-0.25,0.04,1.33,-0.14,-2.1,-2.81,2.31,-0.79,4.38,-1.59,-1.01,-2.61,1.66,2.17,-0.92,2.72,-0.67,1.06,-1.05,-1.34,-2.56,1.11,-0.1,-2.21,0.17,1.12,-1.38,1.08,-0.25,-0.7,0.81,-2.8,3.28 +C674,-6.75,2.89,-4.32,-4.98,4.89,3.8,2.43,0.95,-0.6,3.14,1.84,-1.03,-1.38,-0.17,2.16,-1.83,0.85,0.27,0.12,1.32,0.37,-1.72,-0.33,0.83,-1.54,2.28,-0.51,0.14,0.66,1.56,0.2,-1.89,-1.57,-0.66,-1.91,-0.7,2.3,2.42,3.3,-1.57,-0.52,-0.22,-0.64,1.5,-2.04,0.07,-0.79,0.12,1.13,0 +C675,3.58,-0.24,-0.69,-1.8,-1.99,0.18,0.17,0.83,-1.42,0.95,0.44,-1.22,0.7,-0.44,1.06,-0.9,0.52,-1.78,0.95,1.52,-1.05,-1.13,1.05,-0.28,0.18,-0.77,-2.31,0.47,2.06,1.22,0.19,0.93,0.59,-1.41,0.75,-0.89,1.34,1.21,1.27,-2.68,-2.52,1.82,-0.72,1.49,-0.44,-0.37,-1.27,-0.42,-2.61,0.63 +C676,2.55,8.06,5.27,4.51,1.24,0.33,-0.53,-0.92,-0.11,0.4,-1.24,-1.56,0.36,-2.47,-0.52,-1.57,-1.18,0.78,-3.55,2.24,1.5,-0.72,0.28,-0.83,2.76,-1.54,1.68,2.19,-0.29,0.75,-1.15,0.15,-2.21,-1.19,-0.68,0.93,0.5,-0.39,2.2,-2.03,-0.63,-0.76,-0.2,-0.84,0.63,1.95,-0.28,-0.41,-0.38,1.45 +C677,5.93,4.35,-2.73,-3.39,3.41,-0.53,2.68,0.61,2.71,-0.16,-0.01,-0.14,-0.22,0.83,2.11,0.63,1.31,1.11,1.04,-0.24,0.04,2.04,-0.03,-0.5,-1.16,0.18,0.92,-0.57,0.1,0.68,0.26,-1.72,1.42,1.18,-0.1,-0.92,0.23,0.44,-0.49,-0.73,-0.49,-0.04,1.42,0.04,0.18,-0.34,-0.74,-0.25,0.63,0.47 +C678,-11.41,1.93,-1.37,-4.98,3.07,4.36,0.39,-0.41,-3.47,1.15,1.75,-2.74,-4.61,-0.26,-0.1,4.42,1.73,0.76,-1.5,-0.86,1.01,3.3,-0.33,1.88,1.22,-0.37,1.56,-0.34,0.57,0.97,-0.87,-2.31,-2.49,-1.15,1.16,1.5,0.13,-1.07,1.39,0.47,-1.34,-3.36,1.28,-2.51,3.34,1.36,0.15,1.05,0.62,-2.62 +C679,-13.96,-0.39,-0.74,-1.33,2.57,2.51,-2.42,0.12,0.5,-2.42,-2.23,-1.76,0.33,-1.24,-0.61,-3.42,-0.18,3.15,0.68,1.61,1.9,-0.26,-2.23,-3.99,-1.36,-0.15,0.17,-1.27,-1.53,2.4,0.82,0.56,3.11,-0.16,-0.04,-0.57,-0.04,-0.92,4.99,2.3,3.84,-2.19,-0.12,4.92,-2.39,-0.23,-2.66,2.58,-0.74,-2.78 +C680,-14.1,0.66,2.41,1.71,-0.43,2.54,-3.76,1.49,2.83,-1.02,2.06,-0.21,3.12,1.11,1.14,4.28,-0.26,-1.54,0,1.15,2.66,-1.55,-1.86,-3.11,1.56,0.06,5.59,-2.01,-1.81,-0.79,-0.08,-2.99,-0.31,0.9,1.65,2.44,-0.41,0.49,-0.9,0.99,-1.81,-1.38,0.81,0.86,-1.24,1.23,1.77,-2.52,2.62,-1.72 +C681,3.98,-4.17,0.74,0.37,0.89,0.3,-1.59,-2.44,0.03,-2.27,-3.99,3,2.69,0.38,-0.03,-3.11,1.73,-1.17,1.27,-0.24,2.08,0.06,-1.15,0.6,2.13,-3.59,0.67,1.75,2.93,2.3,-1.88,-0.83,-0.38,2.79,-1.34,-0.74,1.04,-1.94,-3.49,-0.81,-2.28,0.26,3.01,-1.6,-2.05,2.33,2.36,0.36,2.66,-0.18 +C682,2.76,-0.83,-0.49,-1.86,-2.09,-1.2,-1,-0.84,-1.68,0.49,1.44,1.85,-0.32,-2.94,-0.64,0.09,0.13,2.72,-0.73,-1.34,-1.81,0.83,1.41,-0.89,0.48,-1.92,1.24,1.91,-1.2,-0.18,0.14,-1.58,-0.9,0.61,0.42,3.25,1.29,0.2,-1.34,-0.06,2.45,1.59,-1.35,-0.49,-0.39,-1.4,-0.76,-0.18,-1.08,-0.57 +C683,4.78,0.12,-0.93,-2.77,-3.14,-0.75,-1.42,0.5,-0.98,-0.38,0.15,-1.28,1.77,-0.42,-1.59,0.07,0.14,-1.06,0.62,-1.03,0.34,-2.2,-2.35,-1.32,-0.38,0.94,-0.41,-1.81,0.8,2.51,-1.24,1.33,0.19,-3.3,-0.29,0.81,0.55,-0.26,0.69,-2.78,-0.65,0.7,1.52,-0.53,0.31,1.48,-2.32,1.69,-2.42,0.2 +C684,-15.48,-2.03,4.12,3.04,-3.85,-4.03,1.06,-0.86,2.35,-4.07,0.75,2.87,0.3,2.25,0.14,0.92,-0.03,-0.56,1.06,2.06,-2.56,-5.89,-0.12,-2.73,-0.8,0.09,-1.52,-0.03,-1.89,-0.05,-1.8,-0.06,-2.18,-1.01,1.67,2.84,-0.73,0.85,-0.21,0.58,-0.49,-0.38,0.7,-0.83,1.15,-0.18,-3.06,1.03,-1.85,0.5 +C685,1.76,-0.69,-1,-1.73,-3.01,-0.8,-1.38,-1.06,-0.32,0.43,0.8,-0.59,-0.84,-0.39,2.93,-0.2,-2.04,0.28,0.49,-0.85,1.88,-0.42,-0.63,-0.69,-1.54,0.32,0.22,0.29,-1.28,-0.5,2.3,-2.49,-0.15,0.12,-1.31,0.76,-1.39,1.42,2.11,-3.28,-2.9,-0.76,-0.59,0.48,0.38,-0.28,0.47,0.48,-0.34,1.61 +C686,3.75,0.4,-1.74,-2.58,-1.83,-0.43,0.64,-0.72,-0.3,-0.71,0.84,2.09,1.04,0.78,1.32,-1.38,1.1,1.5,1,-0.94,0.29,1.08,1.69,0.68,-0.06,0.87,1.75,0,-0.76,-2.21,1.98,2.5,0.04,1.03,0.24,2.42,2.16,-0.38,-1.12,-0.18,-1.83,-1.88,-0.17,-1.19,-0.02,0.78,0.02,1.87,0.09,-1.05 +C687,-7.63,3.87,-0.25,-2.93,3.85,-1.43,1.6,1.03,2.06,-1.26,2.64,0.44,0.73,-0.42,-1.87,-0.23,-4.78,2.54,-2.5,0.51,-0.76,0.12,-1.08,2.1,0.02,-0.84,2.36,-0.03,-2.99,-1.64,0.98,-0.44,0.62,-1.39,-2.45,-0.36,-0.04,0.98,-0.23,1.31,-0.07,1.33,-0.66,0.08,-0.87,-2.11,2.65,-0.04,-0.22,2.03 +C688,4.9,-0.64,-1.75,-2.44,4,-0.42,1.83,-3.17,2.39,0,1.07,-0.3,1.48,0.04,0.47,-0.46,-1.46,1.54,-1.69,0.41,1,0.22,1.07,0.32,3.12,-1.08,-0.1,0.24,-0.15,-2.09,1.7,0.01,-0.9,0.03,-1.32,-1.12,0.04,-0.75,-0.1,0.42,-1.1,0.49,-2.24,1.38,1.05,-0.08,1.36,-1.58,-1.46,-0.02 +C689,4.22,-3.18,-0.98,1.45,0.64,-0.15,0.21,-2.59,0.02,-0.82,-1.83,-0.78,1.81,3.49,0.4,0.22,-0.83,-0.93,-0.19,1.73,-1.66,0.88,1.35,0.77,0.89,-3.06,-0.35,-4.02,2.36,-2.45,-0.29,0.2,0.04,-1.41,-1.66,-1.76,-1.32,-0.42,-0.66,3.5,0.37,0.36,-0.17,-1.44,-0.25,0.75,-2.11,0.35,0.83,-1.62 +C690,3.35,-13.9,2.78,3.82,7.71,-0.22,-1.75,6.45,-1.39,1.97,1,4.41,2.59,-4.3,-4.53,-1.21,-1.99,1.66,-1.44,1.39,0.49,-0.35,2.61,-3.17,1.84,-0.08,-0.42,1.04,-1.53,-1.1,-0.85,3.62,-2.71,-3.53,-2.35,2.24,-0.26,-1.36,-1.54,-3.01,-0.53,0.07,1.81,-1.42,3.01,-0.58,1.12,5.79,-2.2,1.04 +C691,3.91,-2.87,0.06,-1.92,-1.97,-0.34,-0.88,-1.65,0.84,2.05,-1.91,-1.06,-0.69,2.13,0.68,0.24,0.36,3.88,0.98,0.12,0.81,2.76,-0.06,1.58,-1.18,0.58,-1.78,-1.46,-2.13,1.89,1,0.23,-0.77,-0.84,-1.04,-3.67,-1.09,-0.13,1.77,-2.39,0.71,-1.95,1.86,0.7,0.16,-0.31,0.38,0.74,0.7,-1.5 +C692,4.68,2.61,-2,-2.69,-0.06,-1.11,0.82,1.72,-1.59,2.15,0.52,1.57,-0.5,0.68,-1.76,2.14,0.95,0.31,-1.69,-2.72,-0.41,0.77,0.09,0.32,-0.02,1.2,-0.05,-0.36,0.37,1.14,0.09,-0.15,0,-0.38,1.97,-1.16,-1.42,-0.39,1.55,-0.19,0.64,-1.17,-0.46,1,-0.35,-0.93,1.06,-0.74,-1.65,-0.38 +C693,4.6,-3.85,0.73,1.19,2.01,0.97,-0.77,-2.84,1.8,-3.85,-2.17,2.15,2.16,3.81,2.74,0.77,-2.42,-0.26,4.78,-0.3,4.52,0.88,2.13,0.87,-2.34,3.72,-0.9,-3.01,-0.36,-1.24,-1.65,-0.25,-0.82,1.56,-3.19,-3.95,4.19,0.65,4.79,0.15,2.01,-2.68,-1.23,3.4,0.19,3.22,-1.08,-0.74,-2.31,-5.43 +C694,2.71,6.76,4.12,4.39,1.07,0.73,0.74,-0.43,0.52,2.08,-0.36,0.08,1.7,-0.28,0.12,1.41,-1.61,-4.01,-2.14,-1.16,-2.48,0.99,-0.57,-1.06,0.94,-0.13,-0.92,-1.01,1.18,0.1,3.59,1.11,2.72,-0.39,-0.25,-0.62,0.14,-0.63,-0.53,-1.28,-1.13,0.38,-2.85,-0.62,-2.45,3.45,0.11,0.69,-0.78,-0.53 +C695,4.36,8.75,1.98,1.42,4.58,-0.38,1.66,-0.02,1.4,0.78,1.18,-1.36,-0.72,0.19,0.78,0.95,0.16,-0.62,0.28,0.59,0.01,0.49,-0.38,0.01,-0.56,-0.08,-0.25,-2.75,0.11,-0.56,0.37,0.42,-0.44,-1.2,0.42,0.88,-0.52,-0.63,-1.54,0.4,1.1,1.79,0.46,-1.09,-1.22,-0.15,-1.3,-0.49,0.28,1.24 +C696,4.37,7.52,1.55,0.83,5.04,-0.54,2.06,-0.85,1.26,0.92,-0.73,0.21,0.75,-1.06,2.12,0.13,0.41,0.14,-1.17,0.56,-2.41,-1.95,-1.47,-0.4,0.06,-0.7,-0.15,0.8,-0.29,0.07,1.68,-0.96,-0.44,0.13,0.92,-1.81,0.49,0.11,1.48,1.3,0.17,-0.17,0.11,-0.12,-0.1,-2.28,1.59,-1.11,-1.33,1.39 +C697,2.68,-13.12,2.63,4.83,6.46,-2.76,-0.89,3.21,0.04,5.92,-1.19,-3.06,-1.99,-3.81,-4.45,0.32,-0.89,1.96,-3.11,6.1,3.31,-6.19,-3.14,-4.86,5.06,-0.42,2.88,-1.48,-3.76,-0.6,-1.54,-0.27,-2.63,0.32,2.86,-1.13,-0.9,-1.07,-4.27,1.5,4.77,6.2,-2.73,8.32,0.73,-0.17,2.23,-1.49,-4.06,-4.76 +C698,3.55,7.99,4.6,5.34,3.48,-0.74,1.22,-0.75,-1.93,0.86,0.47,-0.54,-0.38,-2.67,-0.58,-1.68,-1.01,0.03,-0.56,2.68,-1.52,0.28,0.22,0.93,0.67,-0.83,-1.72,-1.58,1.31,-2.22,1.11,-0.97,1.65,-0.31,0.05,1.11,-0.77,0.14,-1.59,-1.4,1.29,1.07,-1.39,0.41,1.16,-0.77,-1.6,-1.2,-0.02,-1.44 +C699,-15.1,0.13,1.91,0.21,-0.25,-3.75,1.22,-1.59,2.99,-1.59,0.27,1.41,2.01,0.25,-0.22,0.55,-0.67,-1.33,3.62,-4.32,-1.41,-1.55,-0.82,0.63,-1.1,-1.55,0.73,2.5,-0.18,-0.44,2.01,0.72,-1.92,-0.75,-1.97,0.86,-0.61,-0.62,-0.2,1.52,0.69,-1.06,-0.07,2.98,-0.56,-0.73,-0.59,0.47,-2.61,-1.13 +C700,1.81,-0.42,-1.12,-2.5,-1.41,0.02,-0.34,-1.17,-0.59,0.25,0.8,-0.2,-1.39,-1.61,1.64,1.73,0.39,-0.27,1.58,-1.06,-0.62,-0.38,0.9,1.73,0.06,-1.09,-0.41,0.63,0.82,-1.44,-1,-1.1,-0.26,-1.02,0.23,-0.06,0.96,-1.51,0.03,-0.39,-0.85,1.63,0.61,0.43,0.53,0.11,1.86,0.25,-0.24,-1.69 +C701,4.6,2.02,-1.74,-2.7,-0.61,0.26,-0.13,0.3,-0.12,-0.68,0,-0.26,0.76,-0.17,0.31,-1.32,1.96,-1.54,0.1,-1.04,0.26,0.13,0.27,2.08,0.45,-1.17,0.26,-0.05,-3.02,-1.77,0.31,1.72,0.27,-1.14,0.07,-1.19,-1.48,-0.78,-0.37,0.55,0.01,-0.29,1.15,-1.17,-0.99,-2.29,1.34,0.49,1.13,2.19 +C702,2.85,8.56,5.59,5.21,2.29,0.19,0.63,-0.89,-0.28,2.51,-0.08,-1.09,-0.71,0.33,0.7,-0.21,-1.19,-2.27,-0.36,3.55,-2.39,-1.45,1.77,2.47,-1.16,-0.71,1.94,-2.2,-2.46,-1.01,-0.45,-0.47,0.06,-0.94,-1.33,-0.58,-0.42,0.28,2.15,-0.29,-2.83,-1.01,2.78,-0.07,-1.57,-0.18,-0.55,0.02,-1.98,0.67 +C703,4.23,-0.21,-1.19,-0.74,-2.24,-0.87,-1.23,2.18,0.23,-0.21,-1.52,0.08,0.42,2.17,-2.82,0.53,0.17,1.73,-1.13,-3.54,-1.63,1.62,2.88,-0.64,-1.75,-3.14,0.61,0.95,-1.28,-1.55,1.5,-0.2,1.02,0.68,-0.55,1.07,-0.51,-0.07,-0.49,-1.12,1.53,0.34,1.14,-0.41,-1.87,-0.57,2.46,1.35,0.66,0.17 +C704,3.81,-0.16,-0.63,-1.74,-3.11,-0.38,-0.23,1.25,0.78,-0.08,0.09,0.94,1,1.2,1.39,-0.52,0.45,0.19,-0.55,-0.33,-0.79,0.99,-2.01,-0.37,-2.57,2.5,2.32,-0.52,-0.58,0.13,-1.91,-0.57,0.22,0.1,1.76,1.14,-0.94,-1.59,0.27,-1.12,1.81,-1.05,1.14,1.51,-3.07,2.31,0.51,-0.83,1.7,-0.97 +C705,2.02,-9.47,2.43,2.75,5.65,-0.76,-0.65,2.65,-3.05,-4.99,4.37,3.76,2.58,-3.12,0,0.55,1.43,5.15,1.7,-0.96,-3.91,1.23,2.45,-1.81,1.41,-0.87,1.89,-2.47,-0.58,2.16,-3.63,-1.6,-0.44,-0.16,0.32,0.93,3.65,-1.42,7.99,-0.08,-4.11,-1.88,0.33,-0.01,2.57,-0.75,-4.14,2.66,-1.44,2.66 +C706,3.58,-0.91,-0.47,-1.41,-4.07,0.22,-2,1.59,-1.26,0.77,-0.03,0.21,1.4,2.04,-0.85,-0.12,1.63,0.22,1.58,-0.77,-1.7,1.01,-1.29,2.4,-0.45,2.12,2.84,0.13,1.51,0.62,-0.28,-0.28,-0.35,-0.97,0.23,0.36,-0.06,-1.14,-0.6,1.47,2.63,0.72,-0.94,0.85,0.34,3.71,-0.29,0.79,0.41,-1.74 +C707,4.86,1.12,-1.24,-2.12,-1.88,-0.64,0.39,1.87,0.03,-0.81,1.62,0.45,-1.76,1.99,-1.69,0.47,-0.7,0.26,0.46,0.92,0.21,-0.25,-0.88,2.12,2.08,0.88,-0.03,-0.32,0.86,-0.03,0.77,0.18,-0.74,0.26,-1.18,-0.52,-0.95,1.28,-2.36,0.55,1.49,1.43,-1.61,0.28,-1.99,0.33,-0.22,0.17,1.4,0.25 +C708,3.89,1.5,-0.34,-2.65,-1.18,-0.85,-0.9,1.86,-0.81,-1.88,0.5,2.9,-0.59,-0.58,1.56,-2.02,-0.88,1.25,0.46,2.22,1.15,0.92,1.1,0.24,-0.39,0.43,0.34,1.4,1.42,-1.25,-1.15,1.89,-0.08,-0.32,-0.16,-1.42,0.77,1.68,-0.42,0.37,-1.45,-0.18,-0.9,1.94,1.56,-1.99,-1.34,-0.26,-0.27,1.76 +C709,5.76,-0.08,-1.18,-1.54,-2.59,-0.57,0.71,1.12,-0.78,-0.11,2.4,-0.91,-0.65,3.07,-0.96,0.27,0.23,1.22,-1.72,1,2.27,-1.08,-1.5,-0.33,-0.2,-0.57,-2.6,-0.27,3.43,1.19,1.11,-2.82,0.57,1.82,-1.55,3.33,2.38,-1.5,1,0.39,3.07,-2.64,-0.03,1.25,0.64,0.61,1.25,-0.14,1.52,-1.22 +C710,2.39,-12.66,2.69,4.43,8.17,-0.72,-1.02,5.25,-0.03,1.16,-0.42,-1.37,0.17,1.68,1.09,3.24,-5.59,-0.79,3.9,2.63,3.4,-2.31,1.18,2.45,-1.96,-2.06,5.3,-4.3,4.46,3.82,1.1,4.95,-1.61,0.46,-1.15,0.88,-1.13,3.99,-1.34,5.17,-1.5,-0.96,3.4,2.41,1.74,-0.73,-1.26,0.59,-1.42,-2.42 +C711,-12.29,0.19,2.81,0.37,-0.94,0.89,-2.7,0.84,2.88,0.13,-1.17,0.31,2.24,0.9,-5.79,1.32,2.07,1.29,2.36,-0.35,-1.05,-2.75,0.85,1.31,0.89,0.22,0.41,1.17,2.39,1.25,2.37,1.72,-0.31,-0.24,-2.2,0.61,-4.24,0.38,0.83,1.22,1.32,-2.72,2.56,-1.25,2.09,1.92,0.92,2.2,0.13,-3.16 +C712,2.76,9,3.74,3.75,4.71,-0.38,1.35,0.8,0.26,-0.83,-1.11,0.05,1.15,-0.48,-1.58,-0.89,2.14,-0.69,0.18,0.91,-1,3.98,0.02,0.07,0.37,0.89,-0.37,-2.72,-0.9,-0.51,-1.93,1.67,-2.01,3.72,0.28,-1.05,-1.07,0.39,-1.17,-3.66,-1.43,2.3,0.34,0.35,-0.84,1.04,-1.46,0.35,2.27,0.38 +C713,3.41,2.11,-0.84,-1.78,-0.41,0.46,-0.86,-2.04,0.34,1.29,1.67,-2.55,-0.42,0.94,3.18,-0.97,-1.11,-0.38,-0.09,0.78,1.69,-0.46,0.3,1.02,-0.23,-2.1,0.89,-0.05,-1.59,1.34,1.31,-0.03,-1.33,-2.71,-2.45,-0.11,0.31,1.41,1.71,1.59,-1.03,-0.51,-1.56,-0.53,0.19,1.74,2.46,-0.36,0.86,-0.74 +C714,2.72,3.35,3.68,3.2,-1.07,-0.53,-1.01,-0.83,-2.95,0.71,1.02,2.3,0.91,-1.63,1.17,2.47,1.87,0.26,-3.03,-2.06,0.63,1.67,-1.82,-2.57,-0.78,1.56,0.57,-1.17,2.92,1.92,0.59,-3.73,0.36,1.27,0.21,-0.31,-0.26,0.97,-0.52,0.22,-0.01,0.45,1.31,-1.11,-0.68,-1.15,0.54,1.59,2.83,0.53 +C715,5.48,1.74,-1.14,-2.53,-1.42,-0.9,-0.26,1.64,-0.58,-0.06,-1.14,-0.44,-0.04,-0.61,-0.34,-0.3,-1.14,-1.19,-0.2,1.67,-1.88,-1.22,-3.63,-2.41,-0.29,0.14,-1.06,0.72,1.07,0.21,-0.4,-1.51,-1.64,2.16,-0.07,-0.4,-0.53,0.16,-0.47,0.93,-1.87,-1,0.64,2.33,0.27,-1.47,0.51,0.36,1.27,1.33 +C716,-15.82,-1.68,3.05,2.41,-2.93,-0.27,-2.95,0.65,0.89,-3.34,-0.27,1.99,-0.6,-0.38,-1.14,-2.46,-0.76,-1.61,1.12,-0.35,-2.68,0.5,0.28,4.62,-0.99,-1.24,0.71,2.57,-2.61,1.19,0.68,0.46,-1.68,-0.74,-1.77,-1.42,-1.86,-0.22,0.47,1.96,0.74,-1.73,-2.17,-3.06,-1.98,0.29,-2.7,-1.02,-4.63,-0.13 +C717,3.7,8.99,5,4.73,3.01,-0.06,1.41,-1.19,1.68,-0.64,-2.88,-1.35,-0.7,-1.12,0.24,-2.36,1.97,-1.23,-1.98,1.85,1.32,-3.44,0.46,-1.9,2.9,-2.16,2.05,0.48,-0.25,-2.75,-2.07,-0.46,0.7,-0.61,-3.27,2.52,0.25,0.14,0.64,1,-0.88,-3.47,-1.66,-2.35,-1,-0.04,1.86,-1.01,-0.43,0.22 +C718,3.83,-0.51,-1.72,-3.17,-1.06,-1.12,-0.77,-0.82,-1.23,0.17,-1.74,2.5,-1.07,-1.11,-0.1,-1.49,-1.55,-1.66,-2.14,2.98,2.03,-0.79,0.17,-0.75,0.25,0.46,-1.17,-1.77,0.5,0.69,2.79,1.46,1.13,-2.28,2.54,0.63,0.96,-1.32,-1.11,0.49,-1.24,0.1,-0.41,-1.65,2.51,-0.1,0.71,-0.6,1.81,2.83 +C719,4.62,1.33,-2.17,-1.99,-2.16,-0.78,-0.09,2.07,0.18,0.91,-0.82,-1.71,0.33,-1.53,1.22,-2.66,0.18,-3.31,0.68,1.51,0.67,-0.19,0.6,0.59,-0.07,0.45,0.8,0.75,-3.41,2.35,0.85,-1.19,0.54,-2.47,-0.71,0.01,0.63,0.66,-0.05,0.46,-2.73,1,0.88,-1.78,0.69,-0.51,-2.35,-3.78,-0.14,-0.22 +C720,-10.41,1.62,-0.67,-3.02,0.72,1.33,1.21,0.12,-3.57,-1.39,-3.24,0.4,0.92,-0.91,-0.44,-1.99,3.51,-1.6,-3.72,0.8,3.1,-0.72,-0.99,2.83,1.02,1.03,-1.7,0.55,0.9,1.51,0.01,-1.95,2.81,-3.97,-2.24,-4.51,-0.46,-1,-0.45,0.04,-0.93,0.99,3.34,1.36,-1.87,3.94,-0.04,2.75,-2.97,-0.08 +C721,-14.43,1.71,1.24,-1.81,0.58,0.47,1.94,-1.54,2.63,-0.61,1.72,1.83,0.04,-1.86,-0.18,-1.52,-2.64,1.73,1.71,-1.4,-1.31,1.06,2.77,-0.41,0.19,-2.44,3.67,-2.31,1.19,0.24,-1.72,-1.42,0.14,0.21,-3.05,0.86,1.28,-0.89,-0.46,2.07,2.6,2.07,-1.55,0.15,0.91,0.76,-1.43,0.11,2.23,-2.4 +C722,-12.37,2.05,1.63,-0.42,2.66,-0.05,-0.88,0.73,0.61,-4.3,0.13,3.03,0.87,1.35,-1.38,-1.37,-0.77,-0.88,1.22,-0.5,-0.39,-1.38,-0.96,-0.58,0.59,-1.47,-0.91,1.57,0.1,-0.95,1.62,-1.04,-0.87,1.21,0.36,-0.19,0.38,-0.28,0.92,0.47,-2.72,0.8,-2.8,0.79,0.05,-1.72,-1.19,-0.77,-1.89,0.72 +C723,4.61,0.82,-1.51,-2.17,-1.69,-0.36,0.52,0.46,0.91,0.76,-1.56,1.1,0.94,2.79,0.39,-1.97,0.16,0.13,0.06,-3.03,-2.05,-3.96,-0.38,-0.43,1.38,-0.45,-1.05,-2.95,0.02,2.09,-1.03,-1.04,-1.41,-0.16,-0.45,-2.02,-0.76,-0.73,1.55,1.14,5.17,-2.37,-0.43,-0.75,0.75,0.25,-0.12,1.54,-2.62,0.85 +C724,1.33,4.58,2.96,2.05,1.57,1.44,-0.58,-1.31,0.88,-1.25,2.33,-0.87,-1.24,1.96,0.91,-0.65,-1.2,0.85,-0.7,-0.96,1.9,-0.8,-1.09,-0.29,2.44,-2.08,1.97,2.66,-0.27,1.98,0.77,-2.53,-0.29,-0.44,-0.16,-2.56,0.94,0.28,1.26,1.34,2.8,-1,1.06,0.92,1.98,-0.26,1.33,0.68,3.12,-1.16 +C725,4.53,1.67,-1,-2.33,-1,-1.05,1.25,1.71,1.25,1.04,-1.98,-0.82,-1.15,1.64,-0.3,1.48,0.68,-0.36,0.71,-0.45,-2.14,0.53,-1.62,1.93,0.06,2.34,-1.23,1.91,-1.23,0.72,2.34,-2.53,-0.64,-1.4,-0.12,-2.39,2.4,-3.58,1.24,0.79,2.73,-0.53,0.96,1.38,-1.16,0.73,-1.87,-0.74,0.27,-0.45 +C726,4.34,-0.87,-1.15,-2.44,-4.16,-1.26,-1.85,0.01,-0.15,-0.38,0.84,-2.79,1.17,0.16,0.57,0.69,0.5,2.14,-0.03,1.18,0,-0.17,-0.45,-0.32,-0.84,-0.2,-1.05,1.72,-2.29,0.13,0.4,-0.63,-1.02,0.54,-0.41,1.48,-1.1,-1.49,-0.28,-2.41,-0.09,1.2,0.79,-1.12,0.66,0.22,0.01,-1.1,-1.37,-0.67 +C727,6.65,-1.79,-1.61,-1.59,3.39,-1.04,1.41,-3.13,0.45,-1.48,0.02,1.12,0.02,-1.74,2.43,-0.11,0.43,-1.09,-1.68,-0.71,-0.03,0.66,-0.4,-1.07,-0.6,0.13,-0.23,0.68,-0.47,-1.81,1.67,0.99,0.46,-0.54,2.28,-0.54,1.22,-0.1,0.58,-0.1,-0.19,-1.31,-0.24,-2.52,0.78,-0.15,-0.19,-1.27,0.44,1.04 +C728,2.53,7.84,5.09,5.6,1.91,-0.71,-0.81,-1.64,-1.02,0.18,-2.81,-0.85,1.03,1.51,1.16,-1.07,0.15,-0.5,-2.34,1.68,-1.82,2.59,1.54,0.76,-0.72,2.2,-0.03,-0.54,-0.81,2.48,2.33,-0.23,0.57,1.05,-0.08,-1.46,-2.92,2.88,2.99,1.29,0.12,0.45,-0.16,-1.34,2.17,1.14,0.12,1.18,-3.14,0.73 +C729,3.27,-1.72,-0.92,-1.7,-4.42,-1.79,-2.14,0.25,-3.09,-2.94,5.87,-0.75,-0.03,-3.79,0.12,-0.45,-1.33,-1.86,-0.66,1.52,0.67,0.62,1.1,0.81,0.69,-2.42,0.85,2.4,-0.75,1.53,-1.13,1.85,1.59,0.66,1.37,-3.3,1.2,-2.22,-0.11,0.81,-0.63,-0.81,-4.74,-1.45,2.14,1.03,-2.12,-3.42,0.43,-4.61 +C730,4.22,-8.32,1.64,2.05,5.42,-0.39,0.66,2.15,-0.24,1.7,-0.32,0.13,-0.63,-0.55,-0.06,5.04,0.16,-2.6,4.33,-3.86,-4.62,0.68,0.18,-0.59,1.69,-0.75,-0.84,-3.7,-1.15,2.37,2.8,1.35,0.32,-2.14,-0.73,2.87,3.47,-2.64,3.58,-0.24,0.28,1.18,-0.12,1.89,1.64,0.94,-0.62,-0.09,-2.95,2.4 +C731,3.42,7.71,5,6.39,0.19,1.52,2.9,0.79,-0.19,0.5,-0.77,-0.17,-1.26,-3.99,-1.74,-2.63,-4.19,2.95,-1.94,0.81,-2.62,-2.03,-0.54,1.77,5.56,0.41,-0.53,-1.7,-0.46,-2.23,-2.02,4.87,-4.4,-0.35,0.53,-2.56,1.46,-4.54,-0.85,1.48,-0.96,1.69,0.16,1.06,-2.45,-0.55,-0.88,-1.01,3.73,2.44 +C732,2.05,-9.19,2.08,2.74,7.9,-0.17,1.12,3.83,-1.12,-1.98,1.83,1.71,-0.4,-2.03,-0.11,0.99,2.08,1.44,-4.34,-0.97,0.94,-1.02,-3.67,-4.85,-0.64,0.54,2.03,0.41,-2.28,-0.65,-2.1,-0.22,0.14,4.59,-5.25,1,-1.73,-5.56,0.68,2.76,-3.38,-1.66,3.36,0.42,1.01,0.77,-0.98,4.43,3.37,-1.23 +C733,2.95,-0.48,-1.59,-2.41,-3.75,-0.1,-1.3,2.42,-3.23,-0.94,0.96,-1.87,0.93,-1.37,-0.52,3.44,1.89,0.22,-0.23,-0.84,-0.29,0.06,1.62,1.73,-0.83,0.48,-1.16,-0.48,0.31,-0.67,0.59,-1.2,1.94,1.2,2.23,-0.25,4.09,0.28,-1.37,1.89,3.05,-0.01,0.06,-1.86,0.08,-0.38,-2.68,-1.3,0.9,0.94 +C734,3.06,-0.83,-0.5,-1.4,-1.65,0.79,-2.24,-1.41,1.7,0.48,-0.57,0.56,1.78,0.76,1.69,1.18,-0.44,-1.1,0.2,-1.45,-0.29,-0.96,-0.25,1.17,1.42,-0.23,1.13,0.95,1.06,1.35,0.43,-1.76,-0.53,-0.81,0.73,-0.86,0.42,0.7,0.29,-0.72,-0.39,-1.3,0.68,1.16,-1.33,2.12,0.1,-1.16,0.3,2.08 +C735,4.71,0.17,-1.93,-1.25,-3.23,-1.56,0.47,1.25,-0.31,0.01,0.64,0.66,-1.88,2.68,1.84,2.85,1.18,-0.39,-3.13,2.19,1.85,-1.43,1.94,0,-0.57,1.74,0.17,1.34,-1.65,-4.25,5.44,-3.4,-1.46,1.79,-0.84,-1.41,1.31,-1.15,0.72,-0.7,2.51,-0.46,-1.08,-1.5,-1.68,-0.6,0.27,0.75,1.59,-1.99 +C736,3.44,-0.47,-0.9,-1.22,-3.94,-1.94,-0.07,1.24,-1.22,-1.23,0.44,0.36,0.58,-0.74,0.4,-1.7,1.22,0.9,-0.12,-1.08,0.65,0.21,0.91,-0.29,0.95,1.14,-0.05,-0.55,1.02,-1.33,0.44,0.99,1.25,0.99,-0.27,-2.59,-1.1,-0.38,-0.58,-1.3,-2.1,1.77,0.82,0.09,1.26,0.87,-0.34,0.06,-1.39,-2.38 +C737,-12.63,1.04,3.5,1.53,-1.61,4.31,-7.88,0.7,10.48,-2.65,1.37,3.39,4.81,-3.4,0.36,4.67,1.42,-2.57,-0.65,1.63,-0.34,2.1,0.5,-4.46,1.17,5.75,2.94,-3.44,-0.77,-0.72,-1.17,-1.14,-1.5,1.73,2.78,0.88,3.63,0.35,-1.98,6.88,-2.02,2.9,-3.36,-2.37,-1.32,-4.14,1.47,-2.17,-0.26,1.09 +C738,3.79,-3.83,0.66,-0.72,-3.21,1.37,-2.69,-3.19,-2.07,-0.94,-0.81,0.35,-1.78,1,0.73,0.67,-1.58,-0.46,1.62,-0.53,0.42,-0.92,1.35,2.29,0.05,0.24,1.31,0.79,2.67,3.23,-0.59,1.89,-1.21,-0.45,0.67,-1.47,0.93,-0.68,-0.42,0.8,1.3,-0.81,-0.33,-0.28,1.11,0.13,0.1,-1.68,0.42,-0.18 +C739,-12.05,0.94,-1.29,-0.34,1.17,1.68,-1.79,1.13,-0.2,-2.33,-0.96,-1.1,1.5,-0.3,1.75,-0.64,-1.33,0.29,-0.16,-0.2,1.79,-0.99,0.71,-1.05,-0.48,-2.27,-0.48,-0.02,1.05,2,1.3,0.61,1.16,-0.01,-0.11,0.77,1.34,-0.71,0.54,-1.43,-0.93,0.8,0.93,-1.3,-0.11,0.38,1.05,-2.08,2.92,-1.07 +C740,4.23,0.88,-0.51,-1.87,0.78,1.34,0.51,-1.12,0.82,0.55,1.12,-0.38,0.36,-1.29,-0.02,-0.82,-0.25,0.73,-0.85,0.73,-2.01,1.66,-1.6,-0.04,-3.9,-2.33,0.55,3.86,2.08,1.74,-0.99,1.99,-1.23,-1.83,0.42,0.42,0.9,0,-1.99,3.24,1.5,3.69,-0.43,0.31,-1.69,0.49,0.6,-0.21,1.03,2.02 +C741,2.3,-2.04,-1.25,-2.19,-4.27,-0.6,-1.86,-0.1,-0.4,2.17,4.28,-1.73,2,-1.44,2,-0.18,-0.02,-0.11,-0.3,-0.48,-0.44,0.62,-0.16,-4.33,2.1,1.01,4.56,-1.11,0.12,1.12,0.11,-0.72,2.98,-0.33,0.57,-0.76,-0.9,-1.27,-1.16,0.86,0.3,-3.01,1.23,0.37,1.3,-2.1,0.72,-0.22,0.57,0.59 +C742,-9.73,3.48,-1.19,-2.72,5.57,3.79,0.22,-1.02,-1.73,2.63,-0.05,1.35,-0.91,0.4,-3.12,-0.48,-4.21,-0.86,1.95,2.28,1.08,-0.67,0.1,0.32,1.04,-1.24,0.46,4.4,0.17,3.52,-0.15,-1.37,0.16,-0.59,0.51,0.73,-0.62,-3.09,-1.79,0.1,1.46,-2.21,-0.85,-0.07,-1.62,-1.85,-0.22,-1.22,1.02,2.05 +C743,2.38,-6.85,2.33,2.61,1.51,-0.21,-2.27,-3.22,-0.51,1.62,1.23,-2.23,-0.22,2.84,-2.54,-2.45,-3.01,3.72,0.41,-0.33,1.45,-0.08,4.28,-0.04,1.52,-1.04,0.1,2.31,-0.25,-0.09,1.23,4.87,1.66,-3.41,-2.39,-0.2,-0.05,-1,-2.3,1.26,1.33,0.69,3.71,-0.06,-1.39,2.81,-4.48,0.64,1.75,2.18 +C744,-12.36,-0.1,-0.71,-2.16,0.93,3.32,-2.67,0.98,-2.31,0.29,-2.73,-1.93,-1.01,2.47,1.36,0.57,1.51,-0.68,-0.08,-0.47,0.59,0.59,-1.22,0.7,0.63,-2.67,0.08,-0.13,-0.88,0.63,-0.76,1.37,1.83,-0.66,-2.12,-0.32,-0.96,-0.93,-0.66,3.21,-4.05,-1.18,-0.32,-2.63,1.43,1.06,-1.42,0.17,-0.88,0.19 +C745,4.93,2.46,-1.41,-3.08,1.14,-0.4,0.73,-0.82,0.9,1.99,1.08,0.27,-1.94,-1.15,0.54,1.29,0.48,-0.41,-1.48,-1.3,1.77,1.33,-1.93,-0.4,0,-0.31,0.4,-2.73,-0.08,1.35,1.74,-0.78,-0.53,-3.15,-0.23,-0.99,0.19,0.73,0.1,1.3,1.17,2.68,-1.87,-0.37,-0.15,0.72,-1.91,0.94,0.6,-2.69 +C746,3.92,-2.34,-0.36,-1.73,-5.64,0.21,-1.36,0.99,-1.35,1.4,-0.53,-0.25,0.25,-1.18,0.61,-0.22,-0.72,-2.85,0.26,5.16,2.14,-2.3,1.39,-3.8,1.57,-1.55,-2.05,1.47,-0.12,2.58,-2.13,1.93,0.5,-0.65,-2.15,-0.49,-2.15,1.64,-0.42,0.32,0.65,1.69,0.84,-1.12,-0.85,1.28,0.77,-0.89,-0.76,-1.3 +C747,-13.3,0.47,-0.56,-1.71,1.71,3.03,-1.51,1.21,-1.53,-0.69,-1.04,-0.34,-0.39,-0.97,-0.06,-3.58,2.19,2.06,-1.2,3.2,-3.71,2.42,-2.41,1.09,0.14,2.76,-1.23,-0.37,2.7,1.66,2.21,0.13,-1.18,1.55,-0.05,-2.33,-3.4,1.84,-1.76,-0.19,-0.66,2.07,1.1,0.37,0.59,3.08,-0.25,2.97,-1.58,-3.58 +C748,2.93,-0.54,-1.07,-2.41,-2.19,0.87,-0.31,-1.38,-0.74,1.03,2.96,-2.35,1.95,1.05,0.09,-0.75,-1.85,0.88,-0.39,1,-0.88,0.08,-0.6,-0.8,-0.2,-2.91,1.39,1.59,0.86,-1.14,0.84,-0.72,-2.39,0.72,-3.52,0.66,1.63,-1.7,-1.78,-1.19,0.11,0.13,1.4,-1.86,0.37,2.5,-0.73,0.47,1.38,1.11 +C749,4.77,-0.25,-2.06,-1.69,-0.81,-0.28,0.39,-2.29,-0.57,0.73,0.97,-0.09,2.19,-0.83,4.02,3.43,-1.56,1,-1.05,-0.48,-3.3,-0.15,0.88,0.89,2.25,0.62,-2.58,0.55,0.08,-1.96,3.02,-0.5,0.86,0.18,0.38,1.1,0.57,0.57,-2.34,0.05,1.73,-2.05,0.8,2.18,-1.52,-2.37,-0.14,0.31,1.28,-0.25 +C750,4.78,-6.28,0.2,1.36,9.27,-0.33,1.59,1.11,-0.43,-0.13,-3.93,1.49,0.51,-3.33,0.18,-1.84,-0.41,2.48,-0.14,-2.77,1.45,0.22,-2.3,1.79,2.44,0.21,-0.44,1.51,-2.17,0.04,0.97,-2.85,1.68,-0.03,-1.09,0.21,0.46,-0.48,-0.52,0.76,1,-0.28,0.48,-0.11,-0.74,-1.38,0.39,-1.37,0.95,1.4 +C751,3.66,-6.11,2.04,0.91,3.25,1.25,-0.45,-2.14,0.63,-1.06,3.55,-2.25,0.28,-0.37,0.9,0.17,1.84,0.11,1.59,0.03,0.38,-2.36,2.42,-1.68,-0.48,1.25,-1.7,-0.78,-0.96,-4.32,0.41,-1.67,1.75,1.37,-0.51,2.46,-0.81,-0.89,1.85,2.35,1.18,-2.62,-0.53,0.41,0.03,-1.15,-1.41,0.37,0.12,-0.45 +C752,2.9,-1.88,0.57,-1.76,-4.6,-0.17,-2.94,1.63,-3.72,1.32,1.77,0.83,2.02,-1.22,3.74,3.85,0.76,1.43,-1.6,-2.98,2.06,-1.38,-0.97,2.05,-1.4,2,-1.23,1,-0.34,0.52,-1.12,0.16,-1.14,-1.39,-0.81,1.27,-1.25,-2.29,-2.66,0.36,-1.25,-1.68,1.37,-0.49,-1.83,-0.84,-1.35,-1.44,0.86,2.84 +C753,-13.07,0.18,-2.18,-3.15,1.25,1.8,-1.33,1.4,-3.64,2.25,-1.17,-1.84,0.63,0.79,0.37,2.74,0.4,-1.71,-1.86,0.48,1.62,0.75,-1.98,-0.63,1.24,0.53,-1.52,2.12,2,-1.82,-0.57,1.36,-2.52,0.51,-0.39,-0.92,-0.42,-1.9,0.82,-1.57,0.09,-0.92,0.15,2.57,-0.32,-0.28,-0.43,1.12,-3.61,0.4 +C754,-14.85,-0.74,0.09,0.39,-1.29,-6.27,3.86,0.14,1.31,-2.06,2.02,3.05,0.77,0.1,-0.41,3.14,-2.86,-0.85,3.38,-2.08,-2.19,-0.23,0.84,1.99,-0.49,-2.58,-1.44,0.37,0.03,0.44,-3.31,-0.11,-2.35,2.99,1.71,-1.61,2.71,1.5,0.19,-0.7,-1.15,0.84,-0.58,-1.61,-1.27,-1.2,0.3,0.94,-1.87,-0.7 +C755,4.42,9.72,4.98,4.58,5.95,-0.57,1.26,-1.56,1.76,-0.58,1.02,0.48,-0.31,0.26,0.11,-0.34,-0.35,-1.22,-0.52,-1.12,-0.37,-2.25,0.51,0.45,1.69,0.25,-1.75,-1.12,-0.53,-1.74,0.52,0.35,1.54,1.09,-1.98,0.24,-0.11,-0.83,-0.02,0.38,-1.85,0.67,0.84,0.5,-1.78,1.78,0.78,-2.07,0.73,1.44 +C756,4.59,2.88,-1.86,-3.38,1.16,-0.01,0.52,0.72,1.61,-1.19,1.2,0.6,-0.91,1.39,0.7,0.4,-1.24,1.35,-0.59,-0.47,0.5,-1.23,0,0.73,-0.24,-1.48,-0.91,1.82,-1,-0.86,2.29,-1.07,0.2,0.32,0.4,0.81,-0.46,0.01,0.35,-0.57,-1.23,1.19,1.83,0.86,0.41,-1.85,1.15,-0.58,-1.18,0.53 +C757,3.36,-1.73,-0.56,-1.53,-4.21,-1.34,-2.14,2.15,-3.56,-1.11,0.89,-2.39,0.55,1.68,-0.77,-0.21,0.79,1.7,-0.41,-1.12,-0.51,-1.66,1.17,0.87,0.46,-0.96,-0.99,0.43,0.18,1.41,-2.21,-1.43,-0.68,1.43,0.88,-2.9,-1.13,0.37,-3.57,1.4,-0.83,0.72,-1.08,-0.89,1.67,2.96,-1.21,-1.62,-0.3,-2.49 +C758,5.33,0.91,-0.15,-1.91,-1.16,-0.46,-0.31,0.69,2.05,0.75,-3.22,-1.94,-0.29,0.72,1.6,0.9,1.4,-1.23,-0.39,-0.52,-2.84,-0.51,-0.42,1.02,-0.84,2.71,-1.11,3.97,-0.64,0.04,-1.07,-2.14,-0.59,0.63,0.38,-0.83,-0.05,-2.44,1.58,-0.95,0.7,-0.71,-0.34,-2.17,-0.78,-0.32,-0.69,2,1.25,1.3 +C759,3.57,-0.55,-0.39,-2.17,-1.74,0.16,-0.38,-1.46,0.4,0.25,-0.25,-0.88,0.25,1.72,3.34,1.44,-0.97,1.04,-1.33,1,-1.28,-2.29,-0.12,-1.07,-1.2,2.12,-0.22,-0.04,1.88,-1.22,-0.57,-0.91,-1.24,2.42,-3.5,-2.03,-1.68,-0.2,-2.8,0.79,-1.33,0.92,-0.51,-1.29,0.45,-1.48,1.53,-1.34,2.4,0.72 +C760,-1.61,6.13,-38.7,26.4,1.95,1.6,-0.12,-4.18,1.03,6.97,8.61,3.82,5.9,7.13,-0.23,-1.74,2.83,-1.61,-3.91,1.99,0.25,0.59,-3.14,0.77,-0.06,-1.17,0.78,0.46,1.05,-0.39,-1.57,0.12,-1.87,-0.55,3.11,0.08,-1.49,-2.17,-0.64,0.22,1.46,-2.11,-1.12,1.29,-0.99,1.11,-0.92,0.26,-1.33,-0.26 +C761,-13.59,-1.06,0.34,-2.39,0.03,1.32,-0.94,0.32,-3.59,2.37,-0.99,-1.24,-0.21,4.51,-1.25,-1.32,-3.96,1.02,-3.26,-0.44,1.45,-1.92,1.16,-1.84,0.9,2.51,1.99,0.85,1.37,-1.92,2.32,-0.43,-2.47,-0.56,3.29,-0.94,-0.2,0.12,-1.03,-3.18,-0.8,-0.98,-0.73,0.78,0.04,-0.79,1.61,1.75,-2.24,-0.78 +C762,3.13,-6.33,1.34,1.36,5.27,-0.14,-0.88,2.77,-0.04,-1.31,-0.63,1.58,2.09,-2.71,-6.36,-0.64,-2.47,-0.76,2.43,0.18,2.27,-1.93,-1.27,4.36,2.83,-1.2,0.07,-1.59,-0.93,2.02,-3.11,2.6,3.59,-3.74,2.58,4.21,1.89,1.41,2.28,2.12,-3.9,1.31,-0.08,4.44,3.48,0.09,1.68,2.87,-2.29,-4.08 +C763,4.61,-2.76,-0.16,-0.81,-2.05,-0.76,-0.89,-3.78,0.25,1.7,-1.35,-3.13,0.1,-1.28,-0.17,2.23,-0.13,-3.1,-2.31,-0.68,-0.61,1.68,-1,2.27,-0.55,-1.38,0.25,-2.66,0.89,-0.33,-3.3,-1.97,0.26,-1.77,0.49,3.87,0.31,1.31,-2.27,-1.15,-2.02,-0.63,-0.5,1.37,2.76,3.52,-1.08,2.74,0.71,0.34 +C764,-12.86,1.21,-1.88,-2.97,2.63,4.44,-0.77,0.24,-0.38,-1.01,1.79,-1.44,-0.96,0.24,1.96,1.1,0.61,-1.26,2.39,0.02,-1.25,0.49,2.32,-1.97,-0.67,-2.43,-1.14,-0.33,-3.12,0.24,-1.6,0.07,2.45,1.95,-0.08,0.32,-1,-1.14,-1.08,-0.18,-2.47,1.39,0.11,2,-2.41,1.3,-1.98,0.85,-3.11,2.07 +C765,-9.84,-0.55,2.82,1.36,-1.86,-5.89,4.51,-1.01,3.2,3.45,-1.48,-1.77,-0.17,0.27,-0.02,0.45,-2.9,-1.9,-2.86,-0.69,-0.5,2.16,1.13,-0.98,0.82,-0.85,0.26,-0.44,1.08,-2.63,-0.16,1.53,2.22,-1.05,-0.94,-0.65,-0.24,-0.76,0.64,-1.58,-0.24,0.29,-0.91,-3.55,-1.77,-1.64,1.94,2.92,-2.56,-1.85 +C766,-8.45,-2.15,0.01,-1.56,2.4,1.9,-2.1,0.11,-1.65,-0.93,1,-2.17,1.12,-0.47,1.31,-0.69,1.91,-2.81,-0.86,0.31,-3.35,2.43,1.46,-0.63,-1.24,1.33,1.06,-0.71,0.88,-0.01,-0.7,1.06,1.01,-3.47,2.58,2.25,6.49,1.85,-1.53,0.95,-0.28,5.78,1.07,-0.14,0.68,-1.04,0.82,-0.48,-0.25,-1.45 +C767,2.76,-1.08,-0.51,-1.15,-2.07,-0.31,-2.2,1.59,-0.77,-2.2,3.71,1.16,0.59,-0.64,0.76,-2.53,-1.43,2.06,-0.45,-0.58,-2.36,1.82,-0.05,1.1,2.5,-2.25,0.72,-0.94,-1.82,-0.26,0.2,2.32,-0.1,-0.91,-2.63,0.86,0.9,0.23,-1.89,1.09,-1.79,2.49,-2.04,3.46,-0.54,-3.7,-1.55,-0.21,-0.95,-0.51 +C768,5.01,-0.65,-1.08,-1.87,1.36,-2.09,0.03,-3.04,0.05,-3.19,-1.06,0.2,0.03,-1.9,-1.56,1.09,0.94,0.36,-1.06,1.35,-1.27,1.47,-1.37,1.4,2.28,0.5,-0.68,0.71,0.21,0.47,-0.17,1.76,2,0.59,-0.36,0.14,-1.55,-0.85,-0.49,-2.64,0.43,-1.26,0.4,2.16,-3.39,-3.31,2.47,0.99,-0.62,-0.83 +C769,3.6,2.18,-1.88,-2.14,0.52,0.31,0.59,-0.02,-0.18,2.08,-0.09,1.34,-1.37,-0.94,-1.32,-1.5,2.41,1,0.12,-1.02,0.2,0.9,0.05,-0.38,2.73,-2.55,-0.34,0.41,0.02,-0.31,0.89,0.85,1.32,0.01,-1.81,-0.52,-1.18,0.24,-1.22,0.08,-0.43,0.87,-2.08,-1.14,0.69,0.38,-1.82,-2.31,-0.62,-0.56 +C770,4.81,2.86,-2.09,-2.49,-0.4,-1.21,1.51,2.91,1.6,-0.62,0.52,0.33,0.6,-0.71,-1.93,-1.04,0.53,1.37,1.96,-0.14,0.81,1.07,-0.17,-0.12,0.85,0.23,0.56,0.01,0.17,1.25,1.43,0.15,2.12,-0.72,0.43,-0.99,1.57,-0.82,-1,1.34,1.21,-1.82,-0.24,-0.47,1.61,-0.55,1.81,0.79,-0.62,-0.1 +C771,2.58,1.17,-1.01,-1.98,-1.62,-0.22,-0.69,0.65,0.65,0.19,2.13,0.15,-0.67,-0.77,0.05,-0.77,2.36,0.05,0.5,-1.76,3.24,1.82,-0.31,-0.44,-0.24,1.02,1.03,-1.24,-0.99,-0.86,2.65,1.68,0.29,0.62,-0.35,-0.89,-0.45,0.66,1.55,-0.57,-0.95,1.05,-1.13,-0.36,3.31,-0.47,0.12,-1.13,0.4,-0.08 +C772,4.93,-1.41,-0.66,-2.09,-2.51,-0.47,-1.23,-1.12,-0.75,2.5,-1.28,0.08,0.41,-2.11,0.69,-1.92,0.52,-0.88,2.11,-2.57,0.11,-1.29,0.1,0.07,1.36,0.62,3.87,-0.02,0.18,1.56,2.43,2.22,-1,-4.13,0.59,-0.87,-2.7,0.44,-1.71,0.53,0.91,-0.41,0.39,0.74,-1.29,-1.63,1.06,2.4,0.52,-0.65 +C773,4.26,-0.12,-0.65,-1.7,-1.12,-0.32,-0.96,2.11,1.06,0.64,0.12,0.35,-0.6,2.14,-1.36,1.3,-1.13,0.24,1.08,-1.16,-0.3,1.63,0.38,-0.1,2.73,0.85,-0.99,-0.79,0.84,-0.76,0.4,1.98,0.78,0.88,3.51,-0.97,-2.03,-0.77,-0.8,1.04,2.45,2.31,-1.88,1.35,-1.57,0.18,-1.19,0.86,0.64,-0.7 +C774,4.55,1.24,-0.91,-2.66,-0.26,0.54,0.77,2,1.19,-0.81,-0.54,0.7,-0.9,0.86,-1.16,-1.93,-0.25,-2.29,-1.45,-0.09,-0.72,1.36,0.15,0.18,-0.63,-1.41,0.42,-0.11,-1.99,0.57,-0.61,0.02,-0.41,0.63,-0.22,0.01,-0.92,0.11,2.13,1.35,0.96,-0.61,-0.15,-1.93,0.55,-0.89,1.01,0.13,-1.84,0.03 +C775,-11.71,-1.58,1.62,0.98,-1.37,-3.91,3.64,-1.45,0.93,-1.82,1.55,-0.55,0.03,0.16,-0.85,-0.5,-1.17,1.42,-2.73,1.29,0.71,1.42,0.94,2.58,-2.62,-1.59,-1.5,-1.9,0.82,-0.44,-0.83,2.12,0.56,-0.92,1.13,0.77,-0.39,-2.92,-0.92,0.97,-0.96,0.13,0.06,0.69,2.18,0.34,-1.47,-0.84,-1.84,-1.56 +C776,-9.75,2.36,-1.46,-2.57,3.21,0.48,1.79,1.57,-0.11,-1.31,-3.58,0.97,-0.49,-1.29,0.84,0.84,0.51,-1.32,-2.01,-0.48,1.07,-1.16,5.19,-3.26,1,1.88,2.16,1.85,-0.45,-2.22,-1.65,1.19,-0.97,-2.09,-0.81,1.29,1.42,1.23,-2.5,0.94,1.18,-2.23,0.52,2.17,1.21,0.95,-2.03,-4.86,0.45,-1.41 +C777,3.04,-0.75,-1.41,-3.37,-3.39,0.46,-1.85,0.34,1.23,-0.88,2.21,-1.59,-0.89,-1.3,3.25,-5.56,0.89,-0.38,1,-0.76,1.69,-1.56,-0.21,-3.18,-1.51,2.13,0.55,1.79,-1.92,0.56,0.81,-1.31,1.7,1.57,-0.47,-3.02,-0.15,0.78,-0.62,-0.73,1.31,-0.41,0.65,-0.09,-1.55,1.88,1.3,0.43,-0.03,-0.92 +C778,-14.02,-3.71,3.18,2.82,-5.26,-9.51,4.92,-2.41,1.48,2.62,-1.41,-0.05,0.52,2.51,1.45,0.55,0.39,-2.6,1.83,-0.67,2.64,0.04,-2.02,2.24,3.67,0.44,0.78,0.22,0.57,-0.43,1.2,-2.83,-1.09,-1.73,3.13,-1.03,-0.73,-1.9,1.81,1.14,-2.21,-1.4,3.75,-0.41,0.99,0.65,-1.67,-3.12,-0.13,-2.3 +C779,3.15,6.53,4.59,4.56,0.12,0.6,-0.71,-0.69,0.04,0.55,0.62,1.77,-2.61,1.06,-1.97,-0.51,1.42,1.77,0.81,-0.8,-1.27,-1.7,2.89,-0.67,-0.3,2.57,3.74,-0.66,0.16,-0.73,-1.04,2.74,0.49,0.27,0.81,0.38,-0.05,-1.98,-0.65,-1.26,-4.17,-1.55,-2.35,0.41,0.21,0.98,1.7,0.89,-2.76,0.89 +C780,0.21,4.54,4.69,6.09,-0.31,-0.73,-0.82,-1.37,-0.25,-0.82,1.07,-2.75,1.86,2.53,2.47,0.88,-2.21,1.48,-0.63,-1.53,-2.16,0.07,0.63,-1.27,-2.06,0.03,-2.18,1.78,1.97,0.2,-0.24,0.66,1.79,-2.16,0.72,0,1.37,-1.76,-2.11,-0.26,-0.12,2.84,0.15,-0.81,-3.08,1.29,1.97,2.83,0.61,-3.27 +C781,3.86,7.87,2.25,1.1,4.32,-0.43,2.46,0.1,-1,0.38,-0.3,-3.3,1.33,-0.9,1.21,1.61,1.66,1.69,-3.75,0.63,2.23,-1.15,-2.35,0.83,-0.96,0.87,0.93,-1.2,1.43,-1.04,-2.34,-1.49,0.06,2.34,0.1,2.88,-1.06,2.36,-0.86,-0.2,1.15,-0.55,2.77,-0.71,-1.18,-1.46,1.65,1.61,-0.79,-0.7 +C782,-14.51,-0.6,3.5,2.77,-4.11,3.38,-8.9,0.25,11.72,0.28,-0.82,0.44,2.29,-2.78,1.58,0.83,1.11,0.64,-2.92,0.4,3.21,-0.71,-0.27,-1.1,0.31,3.5,-0.53,-1.83,1.51,-0.59,-2.07,-2.46,-1.47,2.45,0.56,-1.81,4.08,1.39,0.46,2.54,0.29,0.58,-2.95,-0.12,-1.72,1.1,-0.17,0.26,0.94,0.33 +C783,3.6,0.92,-2.23,-1.65,0.1,0.04,0.05,-0.44,1.29,1.7,-1.05,0.27,0.53,-2.16,0.03,1.83,2.88,0.63,0.93,-0.7,-0.21,0.53,-2.56,-2.12,-0.05,-1.46,-0.4,-0.83,2.89,-2.02,-1.35,-0.34,1.18,-1.71,-1.58,1.18,1.06,-0.34,2.78,-1.53,0.24,1.74,-0.65,0.16,-0.88,1.99,-2.53,-0.51,2.1,-2.33 +C784,2.93,-0.96,-1,-2.3,-1.71,0.62,-0.93,-0.11,-0.13,0.48,1.32,-0.49,-0.7,-0.91,-0.38,-1.9,-0.69,0.71,-0.74,-1.59,2.78,0.45,-0.9,1.19,1.61,-1.13,-0.82,-0.51,0.28,1.58,0.51,-0.61,-1.79,1.29,0.93,-3.16,1.58,-0.84,-0.81,-1.03,-1.04,0,-1.26,-0.51,-0.52,0.26,-1.04,1.85,-2.85,1.35 +C785,-16.4,-3.05,3.36,2.45,-5.19,-8.29,3.92,1.48,-1.51,-0.37,0.07,-0.5,-1.57,-2.13,1.01,-0.07,-0.9,0.07,-0.59,0.9,-1.5,-0.46,-0.9,1.79,-0.45,1.34,-0.43,0.16,-2.04,0.12,2.88,1.65,-2.8,1.89,1.21,-1.08,-0.17,3.36,-1.42,-0.32,-2.07,-0.53,1.23,-0.03,0.31,1.14,-0.17,1.98,2.24,1.24 +C786,3.29,-1.75,-0.18,-1.24,-5.54,0.28,-0.93,0.42,-0.24,0.62,2.28,-2.62,-0.1,1.45,2.01,-0.78,1.1,0.7,-0.12,-1,0.94,-0.4,-2.11,0.44,0.88,-1.55,1.89,1.11,-1.37,-1.34,0.68,-1.34,0.62,-2.09,0.62,1.15,0.79,1.83,-0.29,-0.14,-1.56,-2.54,2.52,-0.03,0.66,0.29,1.68,-2.07,-1.14,0.95 +C787,3.21,-0.59,-0.72,-1.36,-3.5,-0.89,-3.12,0.54,0.99,-0.81,1.74,0.13,-0.96,-0.89,2.42,-2.58,-3.9,1.77,0.95,0.71,-4.26,2.47,-3.01,-2.53,-1.88,3.18,0.54,-1.61,-1.02,-0.39,0.85,0.09,-2.2,-0.56,1.06,-0.11,-2.64,-4.37,0.09,0.26,1.4,0.56,-3.4,-2.31,-1.74,2.46,0.81,1.61,1.58,-5.47 +C788,3.99,-0.59,-1.1,-2.13,-1.7,-1.55,-0.06,-0.95,-1.31,-0.9,1.58,-0.73,-0.08,-2.99,1.5,-1.8,-1.77,0.65,-1.34,-0.36,-0.15,-1.52,2.59,0.43,-0.62,1.26,1.66,-2.43,1.37,-0.69,1.45,0.52,1.05,-0.48,0.06,-2.47,-1.02,1.72,-1.77,4.28,1.44,-1.54,2.15,0.1,1.88,2.33,0.95,-0.92,-1.39,1.7 +C789,4.84,-7.88,0.62,2.27,4.47,-0.23,-0.73,-3.18,0.2,2.27,-1.35,0.22,-0.83,-3.14,-1.52,-5.56,2.45,-1.03,3.09,-2.08,2.68,0.71,1.64,-0.19,2.12,0.46,0.84,-0.45,1.6,1.09,-1.17,1.81,1.2,0.26,0.83,-2.09,1.57,1.36,0.45,2.84,-0.6,0.03,-2.5,0.24,1.48,-1.64,0.89,1.12,-0.51,0.65 +C790,-13.06,-1.81,1.59,1.81,-2.38,-6.72,2.13,0.98,-0.68,-1.04,-0.42,1.03,1.01,-1.38,-1.58,1.49,1.05,4.65,-1.84,0.8,-0.74,-1.25,0.48,1.01,1.33,-0.17,-1.4,-1.47,0.32,-0.6,2.3,0.4,2.25,0.87,2.68,0.69,-0.97,-0.21,-0.38,0.38,-0.32,-0.72,0.85,-0.59,0.11,0.06,0.9,1.04,1.71,-1.52 +C791,3.05,-2.82,-0.1,-2.41,-3.54,1.09,-0.01,-2.43,-4.23,-0.66,0.29,1.71,1.21,-0.24,0.75,0.67,-0.16,1.36,0.18,2.66,1.4,1.24,-3.39,-0.36,1.05,-1.49,2.12,0.66,3.53,0.89,0.74,-0.32,3.17,-0.66,-1.64,0.95,1.23,2.85,1.66,-1.46,1.89,-2.28,-3.22,-3.71,-0.5,-1.72,-1.66,-1.48,-4.38,-0.63 +C792,-13.56,-0.45,1.3,0.8,-0.35,-3.14,1.73,-1.51,-0.26,1.06,1.14,-0.57,-0.42,-1.05,0.88,-2.27,2.09,0.88,0.62,-1.09,-1.12,-0.92,0.98,0.1,-0.16,0.43,-0.67,-0.25,2,0.22,-1.53,-0.64,1.27,-1.55,-1.61,1.25,-0.58,0.41,-1.97,-0.54,1.41,2.77,0.13,-1.39,2.52,1.54,3.57,0.65,1.93,1.62 +C793,5.62,1.32,-2.18,-2.95,-1.09,-0.31,-0.51,2.71,-0.02,0.08,-1.29,0.31,1,1.78,1.41,-0.29,-2.38,0.22,1.18,-0.45,-1.94,0.8,1.58,-1.96,-0.7,0.02,0.14,-0.26,0.88,-0.7,0.55,-0.29,1.05,0.72,0.36,1.55,1.44,0.95,0.27,0.54,0.22,1.52,1.32,-1.14,1.17,-1.31,0.78,1.23,-0.08,1.08 +C794,-8.82,4.44,-4.59,-3.96,4.57,2.38,1.37,1.6,-2.19,0.75,0.33,-0.05,-0.36,0.92,-1.5,1.53,-1.41,-1.11,-0.65,1.1,0.85,3.09,-1.04,-0.47,0.51,2.03,0.24,-1.6,-1.85,-2.08,-1.63,0.89,-1.65,-0.9,-0.76,2.38,1.8,1.1,-1.3,-1.19,0.22,-0.59,-0.99,-3.49,0.61,0.15,0.9,-1.51,-0.53,-0.09 +C795,3.37,-0.52,-1.62,-2.18,-3.22,-1.01,-1.55,2.46,-0.42,0.8,1.12,0.78,1.2,1.3,0.53,-1.52,-1.31,-0.59,1.06,0.32,1.08,-1.48,-0.48,0.55,-0.71,0.42,-1.07,-1.16,-2.12,-0.11,-0.38,3.83,-0.57,-3.07,1.88,-1.09,-0.27,-1.2,0.58,0.31,0.7,0.66,-0.58,2.89,0.22,-2.58,-1.05,2.15,0.97,1.48 +C796,3.15,6.9,5.81,5.3,0.09,-0.64,-0.79,-0.21,-1.33,1.71,-0.03,-1.77,-0.76,1.13,-1.11,2.02,0.14,1.42,2.02,-2.64,1.4,3.69,-0.19,-1.06,-3.88,-1.06,-0.2,4.22,3.9,0.1,0.69,3.09,-2.73,-1.33,2.19,-2.14,-3.69,1.18,1.24,0.77,-2.14,1.69,-2.61,3.88,0.88,1.33,-2.97,-0.5,0.2,1.34 +C797,2.45,-8.97,2.44,3.52,2.21,-0.6,-0.74,-1.14,-0.47,-0.61,0.12,-2.46,0.3,3.06,-1.18,-1.57,1.78,0.53,4.06,-2.93,-0.96,-3.43,3.28,1.01,-4.69,-0.14,-3.06,-2.03,-0.66,-1.3,-1.65,-0.43,0.56,1.2,-0.28,-1.06,1.64,3.53,-1.2,1.01,2.37,-0.17,2.19,0.56,1.48,-1.01,-1.27,-5.24,-0.17,0.46 +C798,5.55,0.56,-1.44,-2.24,0.19,-1.18,0.02,-1.62,0.46,-0.29,-0.99,0.72,1.27,0.59,-1.6,0.02,-3.8,2.83,2.46,-0.88,0.92,1.77,-0.77,-1.53,0.23,-3.05,-1.25,-0.45,0.03,-0.97,0.67,-2.12,-0.2,4.35,4.05,0.06,1.83,-0.51,-0.01,-0.86,2.21,1.19,-0.45,3.88,0.58,-2.48,0.92,2.38,0.24,-1.63 +C799,-10.15,2.13,-1.43,-1.48,1.83,3.78,-1.09,1.45,0.51,0.83,-0.97,0.03,0.2,1.68,0.37,-0.92,-2.99,-0.83,-1.43,-1.4,1.31,1.38,-2.22,1.17,1.93,0.6,0.67,1.5,0.37,2.49,-1.55,-1.68,-0.36,1.96,-1.33,-0.73,0.88,-2.3,1.23,3.14,0.81,-3.66,1.35,1.36,0.79,1.89,2.07,1.8,1.22,0.46 +C800,4.19,1.76,-1.95,-2.46,-1.46,0.01,-0.1,2.11,0.72,0.51,-1.8,0.16,-1.81,0.54,-0.02,-0.79,-0.65,0.62,2.88,0.72,-1.12,0.78,-1.42,-0.4,-2.17,0.43,1.17,-0.15,-2.19,3.39,-0.55,-1.32,0.68,1.98,-1.26,-1.07,-1.22,-2.02,2.74,-0.23,-0.37,-2.26,-0.57,-0.17,0.99,-1.64,1.01,1.74,-1.01,-0.09 +C801,3.3,0.47,-1.48,-2.49,1.43,-0.35,1.12,-1.84,-0.07,0.46,0.31,0.74,0.42,-1.11,-0.74,1.95,-2.78,-1.23,0.98,-1.06,-0.58,0.31,1.28,-0.5,-0.32,0.05,1.06,0.53,1.6,0.62,0.93,-0.37,0.17,-0.29,-1.83,-0.99,1.01,1.52,-0.04,-0.34,-2.04,1.02,-0.54,-0.19,0.09,-0.08,0.21,0.23,-1.05,-1.23 +C802,-6.44,3.33,-2.28,-4.75,4.72,1.39,1.51,-0.95,-1.11,-0.42,3.96,0.66,-0.9,-1.31,-2.47,-0.58,1.28,1.35,0.2,0.15,0.22,1.41,-1.45,0.12,0.32,-0.63,0.94,0.29,-0.85,0.26,2.01,0.59,1.42,-0.43,0.21,1.02,-1.12,2.43,-0.97,-1.5,-0.64,-1.24,2.04,0.42,0.48,1.27,0.19,0.43,-2.91,1.24 +C803,4.88,0.96,-1.99,-1.23,-1.2,-0.46,-0.33,1.5,1.04,-0.73,-2.31,1.31,-0.47,2.8,-1.08,1.35,-0.84,0.56,0.83,2.09,-1.31,3.94,-0.81,1.57,0.17,-1.27,0.67,-1.67,0.76,-0.39,0.88,-0.62,-1.1,1.16,-1.68,0.01,-1.54,-0.62,-1.25,0.82,-0.85,-0.59,-0.08,-0.8,-1.47,0.39,0.63,0.43,2.83,-1.63 +C804,4.06,-1.62,0.01,-0.95,-5.07,-0.53,-2.57,0.11,0.86,2.35,1.79,0.76,1.47,-0.94,-1.49,-1.31,-1.85,2.69,3.4,-1.48,0.65,-1.35,-0.85,2.62,-4.68,0.37,-0.22,1.93,-2.37,1.48,-0.81,0.55,2.67,-1.48,-0.76,1.32,2.78,-0.96,-1.53,-1.42,-0.25,-0.8,0.17,-1.78,-2.32,2.09,1.81,1.69,0.34,0.69 +C805,-11.57,0.64,0.84,-0.44,-0.56,2.44,-2.07,-2.51,0.15,0.84,-2.3,-0.03,0.82,0.72,2.74,-1.49,2.51,-0.03,1.18,0.29,-0.26,-0.43,1.03,-0.64,-1.42,0.08,-0.01,-0.07,-3.84,-0.24,-0.12,2.3,-0.32,0.47,-1.12,-1,-1.98,1.65,-2.14,1.23,-1.93,1.59,2.01,-0.03,2.11,3.04,0.18,1.07,-0.09,1.55 +C806,-5.26,4.69,-4.28,-4.84,5.14,2.01,0.94,0.33,-0.89,0.94,1.32,0.58,-0.51,-0.33,1.56,0.47,-1.49,-0.8,-0.72,-3.04,0.87,0.01,-0.27,0.15,2.56,0.47,-1.22,1.87,-0.42,-1.21,-1.07,-0.09,0.55,-0.31,-0.07,1.8,3.22,0.2,-1.09,-1.24,-1.14,0.38,-0.16,-1.77,0.69,1.39,0.89,-1.2,-1.68,-1.63 +C807,5.49,1.97,-1.51,-3.43,-0.26,-1.04,1.46,0.51,0.76,1.84,-0.38,1.46,0.43,-0.02,1.01,0.72,-0.78,0.19,-2.13,1.35,0.85,1.01,0.6,1.03,1.38,0.99,-1.22,0.9,-0.46,-1.81,0.81,2.71,1.61,-2.99,2.22,-0.45,0.2,-1.15,-1.14,1.83,-0.13,0.76,0.75,0.88,1.7,0.1,0.47,1.53,0.24,2.17 +C808,3.17,-0.44,-1.56,-2.04,-4.14,0.17,0.01,-0.44,-0.81,2.04,0.94,-3.16,-1.03,0.19,1.06,2.22,-0.26,-0.46,0.91,6.18,0.57,1.11,1.89,-3.74,-0.46,1.53,0.83,2.35,3.26,1.94,1.6,-1.2,1.88,1.39,-2.3,-0.02,-1.53,1.28,-0.04,3.74,-1.93,-1.95,1.77,-0.38,-0.14,-3.54,0.54,-1.45,-2.7,-5.38 +C809,-15.34,-1.37,2.91,1.93,-2.77,-2.36,-0.43,0.44,-0.37,-1.09,-1.8,0.65,-1.33,3.27,0.93,0.99,0.81,-0.02,1.09,3.05,0.93,-0.04,1.41,0.34,0.86,2.54,2.18,-2.76,1.36,2.48,2,0.66,1.54,2.7,3.1,-1.26,1.92,-2.05,-2.08,-0.29,-2.41,1.16,-0.33,-2.3,0.08,0.78,2.9,0.22,-0.69,-1.19 +C810,-13.94,0.32,0.81,-1.53,-0.56,0.51,-1.38,-0.7,0.19,-0.55,-0.46,0.4,1.86,2.28,0.36,1.78,-0.72,0.64,-1.57,2.18,0,1.52,0.59,0.19,-1.03,1.22,-1.24,1.2,-1.07,1.23,-0.36,1.7,1.77,0.54,2.06,-0.66,-0.74,-3.72,-1.62,0.33,1.6,-0.68,-1.99,0.66,-0.62,2.75,1.33,-0.46,-2.61,-2.33 +C811,3.32,-7.54,1.45,2.29,4.98,-0.11,0.8,-1.83,-0.01,-0.69,4.7,-4.05,-2.14,-0.01,-1.03,-1.19,0.69,0.25,3.15,1.07,0.49,-4.22,-1,-0.63,1.02,-1.94,-0.01,0.33,0.49,2.02,-3.05,-1.58,0.9,-0.41,2.57,-3.42,0.3,0.68,-2.98,0.63,-1.94,0.4,-3.27,-0.44,-0.37,-0.48,3.38,-1.58,-0.62,-0.54 +C812,-12.23,0.09,-0.37,-1.1,0.54,-1.81,2.18,1.07,-0.19,0.21,-1.18,0.24,-1.77,0.92,1.76,2.08,1.04,1.07,0.51,2.36,-2.61,-4.33,1.56,1.53,-0.39,-1.1,0.12,0.4,1.27,0.28,-4.52,0.6,-0.25,-3.1,0.38,0.47,-1.32,-2.3,-2.48,3.05,-1.34,1.7,-0.35,2.25,1.24,-1.74,3.41,-1.66,0.79,-0.1 +C813,3.47,-2.28,-1.04,-0.46,-0.39,0.25,-1.33,-4.47,-0.01,-0.39,-0.92,-1.14,0.04,-0.97,-1.19,-0.51,-3.68,-1,0.6,-2.73,-0.1,0.74,-1.69,0.92,-4.83,1.41,-0.62,-1.49,0.25,0.18,-5.96,-0.05,5.02,-1.27,0.1,1.74,1.5,-1.1,-4.69,-1.28,1.67,-1.74,-0.45,0.35,0.72,-3.33,-1.85,1.97,-0.57,3.89 +C814,-13.1,0.04,1.31,1.39,-0.94,0.31,-4.93,1.12,4.88,-2.59,-1.42,1.18,3.48,0.85,-0.65,1.66,0.62,-2.54,-5.14,0.12,2.03,-0.23,-3.49,-1.31,-1.72,0.54,-1.04,-1.28,-0.73,-1.21,1.47,-4.41,3.08,-0.96,-4.89,-3.52,-1.1,0.56,0.71,1.76,-1.66,1.77,2.87,0.14,0.78,-0.52,-2.86,0.06,0.48,-1.66 +C815,5.24,1.67,-1.24,-2.06,0.23,-1.16,1.08,1.88,0.89,0.27,-2.74,-1.6,-0.17,2.32,-2.79,2.93,-3.25,-0.58,-0.85,-0.07,-1.56,0.3,0.1,1.9,-0.78,1.15,-0.67,-1.43,-0.64,2.57,-0.23,2.2,-1.64,-0.73,-0.43,1.44,0.4,-0.09,0.15,-1.23,-1.15,0.85,1.29,-1.53,0.41,0.07,-0.68,0.49,2.49,-1.15 +C816,3.01,9.27,5.45,4.56,3.3,-1.56,-0.28,-0.94,-1.1,-3.57,0.85,1.11,-1.21,-1.09,-0.72,-0.69,0.21,-0.68,-3.13,-0.2,0.78,1.56,-0.59,-1.8,-1.54,-0.63,1.09,-0.83,-0.16,3.67,2.13,-0.39,0.98,-1.9,3.7,0.07,2.04,-1.23,-1.17,-1.9,0.47,0.71,2.74,-1.55,-1.12,0.77,-0.25,-1.36,-1.14,-0.13 +C817,2.2,6.81,5.87,5.13,-0.1,0.14,0.21,0.72,-1.47,-2.24,1.22,1.73,-1.77,0.82,0.11,1.68,-0.18,-0.97,2.23,0.65,3.22,1.25,0.15,1.01,0.13,2.04,0.46,-2.26,1.67,-1.91,0.18,-0.93,0.09,-2.05,1.06,0.77,0.18,0.89,-2.44,-0.54,0.54,-0.73,-0.66,0.31,1.29,1.06,2.07,0.88,0.72,-0.95 +C818,-11.85,-2.47,2.16,2.73,-4.21,-7.56,4.35,-1.66,1.92,1.28,-0.52,0.02,-1.89,0.67,-2.58,1.35,-0.52,-0.74,1.01,0.23,0.48,0.47,1.55,2.68,-3.19,-2.31,0.7,1.09,-1.65,-0.58,1.09,0.31,5.55,-0.37,-2.35,0.77,1.3,2.65,-0.41,2.98,-1.93,-1.8,0.4,-0.56,-2.47,1.15,0.75,0.57,-1.53,2.57 +C819,3.34,-7.03,0.59,1.73,3.26,0.28,-0.58,0.49,0.24,0.54,-0.66,-2.07,0.11,-0.89,-0.04,-2.46,-0.89,1.43,2.55,-0.76,0.19,-4.1,1.88,-3.61,3.07,-4.35,-0.9,-0.05,0.94,-0.15,0.39,-2.93,2.81,-2.81,0.3,-2.1,-0.96,-3.84,-2,-0.89,-0.01,0.74,0.6,-2.1,1.77,0.35,0.48,0.56,-1.43,2.25 +C820,3.72,-0.32,-0.87,-1.66,-1.99,0.28,-0.6,2.25,0.31,1.17,-0.11,0.68,-0.34,2.5,-0.34,-0.4,0.25,0.33,1.91,-3.15,-3.26,0.75,-0.77,-2.26,1.54,0.18,-0.35,-2.93,-1.56,-1.92,-0.07,-2.13,-1.2,1.33,-1.08,-1.18,1.78,-1.33,2.23,-0.27,-0.26,-0.76,0.37,0.3,0.13,-3.78,2.15,0.01,-2.5,-0.46 +C821,4.87,-1.6,-2.39,-1.92,0.75,0.38,-0.08,-4.68,0.22,-2.35,-1.14,0.11,-0.62,0.9,-1.34,2.46,0.36,2.85,-1.67,0.37,-0.22,-1.45,1,-1.06,-0.78,1.5,-2.23,-0.76,0.07,-3.5,0.27,0,1.22,0.5,0.99,-1.8,-1.86,-1.32,-0.27,0.66,-0.54,0.45,3.15,-3.02,-0.78,4.39,0.22,0.16,-1.41,-1.14 +C822,2.72,-0.06,-0.95,-0.69,-2.87,-0.28,-1.26,-0.81,-3.95,-1.92,3.36,0.52,0.65,1.69,-0.37,0.06,-3.04,-1.55,-0.97,1.57,2.76,2.41,2.68,0.17,2.4,-0.12,-1.06,-1.22,1.24,0.86,3.55,-2.55,-2.04,1.01,1.67,3.51,0.93,1.95,3.14,1.68,0.3,2.36,-0.6,-2.03,-1.91,-3.57,-0.81,-2.87,-0.87,-0.33 +C823,2.96,8.51,4.09,4.15,3.7,-0.3,0.78,-0.57,1.11,-1.16,-0.3,-0.73,2,1.31,1.81,-1.17,0.33,-1.35,0.58,-1.14,-0.06,-0.67,-1.43,-2.13,0.03,-0.77,-1.01,0.17,-0.63,-0.31,1.28,2.28,-1.23,1.53,2.62,1.16,-0.52,1.74,-0.9,-0.08,1.06,-2.77,0.2,0.87,1.83,1.63,0.82,2.34,2.74,-1.61 +C824,3.54,-13.82,1.97,4.45,5.44,-1.75,-1.72,4.42,-1.49,-1.16,0.6,4.25,1.7,1.1,-2.84,-4.9,-5.71,0.08,-0.95,2.02,2.11,0.85,-2.77,3.69,-4.02,-1.04,-3.98,-0.01,-2.97,0.88,0.22,-0.99,-0.96,-1.67,3.14,-2.43,0.24,0.68,-5.19,0.25,1.4,1.25,1.56,4.44,-2.19,-1.6,3.83,-4.88,2.5,-2.26 +C825,3.39,6.2,5.64,5.18,-0.19,-0.09,-1.87,-0.05,-3.31,-0.11,-3.77,0.68,4.09,0.46,-0.65,-2.16,3.72,-0.09,1.49,2.63,0.68,0.61,2.05,0.75,-0.77,-2.93,-2.46,0.92,-1.3,-3.47,-0.62,-0.25,0.67,3.47,0.01,-1.01,1.13,-2.42,2.52,-2.42,-0.12,0.19,-0.6,-1.88,-1.62,3.09,1.43,1.84,-2.5,-0.53 +C826,-12.18,0.97,-1.44,-4.11,2.32,3.74,-0.54,0.68,-3.76,-0.74,0.82,0.39,-1.14,-0.27,-1.92,1.51,1.04,-0.62,1.16,0.63,-0.58,-1.32,-1.59,-1.04,2.71,-2.32,2.61,0.27,-2.29,0.88,-2.58,4.94,0.15,1.74,-1.83,-2.49,1.78,-1.08,2.72,-0.73,0.02,-2.03,4.7,1.28,-1.71,0.61,0.6,2.48,-2.66,-0.32 +C827,-5.7,3.78,-3.11,-4.8,5.26,0.54,3.89,-0.79,0.03,0.21,0.96,0.71,-0.55,-0.11,2.15,-0.94,-0.02,-0.65,1.9,-0.23,0.8,-0.33,1.53,0.49,1.66,-0.66,-0.65,-0.67,1.17,-0.79,-0.81,-0.51,0.08,-0.48,1.08,0.11,0.13,-0.89,-0.42,0.75,-0.02,-0.69,1.04,1.15,0.62,0.17,-0.67,0.16,2.18,0.11 +C828,-10.26,1.05,-2.1,-3.06,2.55,3.75,-2.58,0.01,-0.27,1.53,-1.61,-0.51,-0.4,1.57,0.91,-0.33,-1.17,-0.77,-1.2,-0.43,0.37,-3.4,0.4,-1.54,-0.15,-2.34,1.81,-2.9,-2.26,-2.09,-0.69,2.73,0.1,-0.98,-1.65,0.85,-0.55,-1.51,-0.15,-0.06,-0.63,3.01,-0.92,0.49,-1.24,-0.61,0.66,-0.74,1.83,2.98 +C829,3.36,-0.61,0.08,-1.04,-3.58,0.07,0.81,0.54,-0.34,1.06,1.36,0.41,0.52,0.72,-0.49,0.8,0.73,-1.44,1.08,-0.72,0.88,-1.82,0.18,0.18,2.05,-0.88,0.55,-1.7,1.2,-2.78,0.33,-2.6,-2.08,-2.37,0.46,-1.75,-0.96,-1.14,2.46,-0.64,-0.38,0.92,1.2,-1.34,0.34,-0.48,0.15,-0.48,-0.44,-1.21 +C830,3.16,-8.51,1.26,1.74,5.44,-1.21,-0.13,-3.07,2.24,-0.35,1.72,-2.14,0.79,-2.12,0.3,0.48,2.37,0.36,1.3,-1.49,1.02,0.62,0.1,-0.47,-2.3,-1.85,0.47,1.1,0.58,-0.69,-0.23,-0.7,1.36,0.23,-1.79,1.34,-1.36,-0.17,-2.17,-0.25,-1.07,0.4,-0.19,-0.99,-0.55,-0.76,-1.2,0.11,-0.53,3.37 +C831,6.14,2.63,-1.84,-3.52,-0.1,-0.87,0.29,1.9,-0.88,-2.13,2.23,0.6,0.68,-0.2,-0.6,-0.04,0.63,0.59,-0.55,1.12,-2.34,0.82,-3.28,-1.39,-1.1,2.33,-0.61,-0.85,0.53,-0.8,-0.81,0.3,1.82,-1.16,-0.71,-2.8,-1.71,-2.2,1.11,0.53,1.5,2.39,-0.18,2.47,-0.73,1.37,-0.35,-0.37,0.75,-0.41 +C832,3.99,-1.04,-0.99,-1.48,-1.08,-0.37,-0.32,0.44,-0.6,3.63,-0.13,-1.33,0.47,-1.43,1.04,-0.54,-0.82,-0.18,-0.01,-3.85,-0.61,-0.18,-1.27,0.21,-0.34,-0.55,-2.24,-1.58,0.64,0.83,3.25,-0.47,0.75,0.27,0.95,1.82,-1.18,-0.94,0.29,-2.24,0.03,1.36,-1.74,1.21,-0.52,-3.05,1.23,-0.96,2.25,-2.16 +C833,4.29,-0.27,-2.28,-1.98,-0.85,-0.16,-2.03,0.56,-0.45,0.4,-2.39,1.62,-0.78,0.21,-0.33,-1.16,-1.03,-1.98,-0.7,1.14,1.17,-1.15,2.04,-0.89,-0.62,-0.71,-1,1.44,1.33,0.77,-1.29,1.06,-0.66,-0.18,-1.64,0.71,0.3,0.13,-2.28,-1.35,-1.64,1.25,2.24,0.44,-0.72,0.25,0.56,2.54,1.84,0.41 +C834,2.32,-12.39,2.66,3.12,3.21,1.62,0.89,-0.09,1.43,1.53,-1.56,0.83,0.27,1.62,0.17,2.16,2.05,2.85,1.64,4.25,2.63,-3.22,-0.45,2.97,1.56,-0.69,-5.3,3.74,-2.41,0.32,1.96,0.28,0.1,-0.04,2.23,-1.82,-2.5,-2.42,-3.34,-1.03,1.2,1.14,0.9,-0.44,2.38,-1.6,3.69,-1.6,-1.41,-0.24 +C835,3.77,-4.98,1.07,1.29,4.54,-1.26,0.75,-2.47,1.88,1.14,4.29,-3.6,-0.04,-0.95,1.47,0.93,-1.14,0.18,1.42,0.49,3.45,-0.82,-0.02,2.68,-2.12,1.89,2.07,-0.32,3.31,-1.14,0.96,1.66,0.93,-4.33,0.38,1.69,-4.9,1.47,0.78,2.13,0.52,-1.06,-0.82,-1.39,-0.6,0.41,-0.32,0.68,1.97,-0.02 +C836,2.54,0.72,-0.45,-2.24,-1.58,0.6,0.84,1.52,0.6,2.16,0.02,0.04,-0.55,-0.34,-0.13,-1.58,-1.22,-0.39,0.86,-1.04,-1.66,2.13,1.39,-2.21,-0.21,-0.01,-0.11,1.85,-3.38,-0.48,-1.69,-1.49,-0.81,0.61,-0.15,0.4,-1.84,-2.18,-0.45,-1.47,-0.7,0.23,2.78,0.57,-1.9,1.52,0.84,1.96,1.52,-0.24 +C837,6.62,4.28,-1.82,-2.56,2.62,-1.32,3.02,1.67,1.72,0.1,-0.09,-1.48,0.31,1.66,-0.75,-0.81,-0.75,2.76,0.05,0.3,-0.73,2.9,-0.16,0.53,-0.48,-1.18,-1.73,1.09,0.9,-0.49,0.31,-0.49,0.21,0.59,0.02,-1.37,0.53,-1.58,0.75,0.94,0.6,-0.47,0.83,-0.22,-0.26,0.94,-0.92,-1.13,-0.45,0.92 +C838,-12.41,0.6,0.36,-0.93,-0.46,0.97,-0.85,-0.05,1.25,-2.47,3.39,0.26,-0.23,-0.95,-1.02,0.84,-4.74,-0.94,1.32,-2.07,-1.96,1.77,-2.24,-0.98,-1.77,-0.86,1.76,0.99,-1.38,-2.72,-2.16,1.08,-0.59,1.13,-1.19,0.02,-0.6,2.28,-0.72,0.35,2.56,-0.4,-3.48,-0.19,2.27,0.91,0.63,0.29,1.02,-1.19 +C839,-10.88,1.52,-0.63,-0.11,1.23,-4.09,3.29,-0.4,-0.64,1.66,1.9,0.83,0.31,0.89,-1.15,-1.93,-1.63,-2.26,-0.4,-0.85,0.44,-0.24,-0.26,1.44,1.5,-1.28,-2.92,1.26,-0.59,-0.54,1.32,2.25,2.85,0.12,1.15,-0.1,0.23,-1.8,1.12,-0.56,0.89,-2.43,-0.18,0,-1.75,1.79,0,-0.45,-2.4,-1.77 +C840,4.84,1.43,-1.19,-1.95,0.15,-0.77,0.55,1.47,1.35,-0.99,0.67,0.53,-0.33,2.18,0.97,-0.33,1.1,1.91,-1.36,1.2,1.19,-1.92,1.49,0.55,0.8,0.49,0.86,0.26,-1.37,-0.19,1.64,-0.91,-1.05,-1.94,1.4,-0.91,0.96,-1.67,-2.32,-0.14,1.86,-3.9,-0.44,1.82,-2.02,-1.15,0.69,-1.99,-0.27,-0.91 +C841,3.43,-2.1,-1.46,-0.77,-0.62,-0.35,-0.11,-4.56,0.46,-0.07,0.05,1.57,2.79,0.93,0.5,-0.44,-1.04,0.45,-0.22,3.49,-0.54,1.3,-0.55,-0.92,-1.95,2.34,3.82,-1.67,0.96,1.59,2.3,-0.84,0.8,3.2,-3.9,-0.19,2.26,-3.23,1.25,-1.34,-0.78,2.34,1.17,2.55,1.22,-1.58,3.64,2.67,1.43,-0.08 +C842,4.53,-4.43,-0.04,-0.34,-1.95,0.78,-0.72,-1.95,0.14,-1.16,-2.53,0.08,-1.62,2.1,-0.45,-0.33,-2.44,0.41,0.75,0.86,-0.87,-0.15,-1.01,-0.85,0.17,0.38,-0.76,0.58,1.81,1.77,-0.58,1.65,-4.89,-1.42,1.67,-1.09,0.41,2.24,-0.15,-0.7,-1.04,0.91,0.37,-0.89,-0.75,0.95,2.17,0.48,0.11,1.68 +C843,4.56,1.47,-1.27,-3.1,-1.36,-0.78,1,1.82,0.76,-1.21,2.58,-0.14,1.2,-0.93,0.22,-2.23,-2.1,-0.06,1.39,-0.21,-4.79,-0.54,-0.18,-0.33,-1.05,1.48,-1.44,1.9,3.24,-2.92,-2.14,-1.7,1.48,-1.12,0.39,-4.28,-1.1,1.64,0.56,-3.26,1.64,1.96,-2.17,0.22,-1.57,-0.58,1.68,0.19,-0.52,-0.58 +C844,4.24,0.72,-1.35,-2.26,0.3,-2.51,1.1,-0.34,1.97,1.47,1.47,-0.32,0.25,0.54,-1.33,0.35,3.3,-0.9,1.44,2.84,-0.21,-1.05,0.27,-0.1,-1.86,0.57,-1.02,0.91,0.99,-1.73,2.26,0.62,0.53,-1.02,2.32,3.36,0.87,0.29,0.61,1.69,1.32,-3.26,0.86,-0.45,-1.04,1.29,-1.45,0.12,0.39,-0.89 +C845,3.65,1.69,2.64,3.38,0.83,0.57,-1.04,-3.84,-1.12,-3.68,2.02,-3.57,3.36,1.74,0.55,-1.58,-3.84,0.53,-3.94,0.12,-2.1,3.3,1.33,0.1,3.64,1.23,-1.73,0.21,0.73,-0.5,-0.64,-0.96,-0.4,0.73,-0.62,0.45,4.11,1.99,2.21,-0.55,-2.3,-1.54,-3.95,2.45,2.54,1.25,0.24,0.74,2.92,-2.61 +C846,3.25,-1.26,-0.69,-0.87,-3.87,0.36,-0.69,-1.4,-1.24,1.02,1.32,-1.17,1.33,-0.59,-1.74,-1.97,-0.72,-1.49,-1.21,-0.58,1.61,-2.74,0.15,-1.33,1.18,-1.65,2.2,-0.82,-0.13,-0.36,4.53,1.38,3.24,-0.01,-0.67,0.09,-3.71,-2.15,-1.4,2.48,0.65,-0.33,1.56,-1.61,-0.22,2.82,-1.99,-0.32,0.69,-0.89 +C847,3.92,-2.14,0.41,0.14,-1.14,-0.22,0.07,0.4,0.46,0.61,0.06,-0.73,0.19,-2.42,-0.25,1.36,2.55,-4.58,1.62,2.13,-0.82,2.21,-0.72,-1.07,-1.21,0.31,-1.58,1.01,-0.51,0.57,-2.46,2.36,1.23,0.14,-1.1,-2.33,-0.87,-1.48,0.3,1.03,-2.45,0.61,-0.04,0.3,0.69,1.43,-3.11,0.53,-0.12,-1.31 +C848,-13.72,1.06,-8.54,2.63,1.99,3.01,-0.5,-1.63,-1.03,4.23,1.32,2.69,4.31,3.58,-1.17,-0.8,0.57,0.07,-2.39,1.27,0.64,-1.71,0.25,-1.17,2.36,-1.34,0.83,-0.57,0.78,1.15,1.82,0.38,-0.94,-3.39,0.2,-1.35,-1.17,-1.23,1.87,1.16,0.15,2.73,-1.69,1.27,-3.24,-3.91,-0.05,0.36,0.71,-2.89 +C849,2.89,-3.92,0.04,-1.83,-3.36,0.5,-1.85,-3.35,-1.58,1.72,-2.13,3.9,0.02,-1.34,-0.32,-0.16,-4.2,-1.88,0.12,-0.54,1,-1.45,0.58,-3.13,-1.51,2.52,-0.96,2.12,-1.57,1.95,0.11,-4.71,1.83,2.98,0.31,0.76,-1.31,-0.58,-3.75,2.39,6.45,1.03,-2.4,0.98,-0.4,3.61,-0.34,0.63,2.58,2.27 +C850,-11.37,-2.26,-0.36,-1.56,-1.25,-3.46,3.62,-1.72,-0.49,2.29,0.66,-1.47,-1.09,-0.78,1.3,3.81,3.31,0.49,2.08,-1.79,-1.84,-0.05,-0.3,0.54,-2.88,0.03,0.7,0.73,1.3,-1.51,2.32,0.71,-0.72,2.21,-0.78,-1.39,-1.51,1.01,0.48,2.02,0.19,-0.75,2.03,1.75,0.43,1.29,3.23,-1.94,-2.3,0.24 +C851,3.93,0.18,-1.57,-1.59,-2.25,-0.49,-0.78,0.66,-0.23,1.17,-0.6,-0.65,1.4,-0.81,1.4,-2.61,-0.46,0.04,0.07,1.44,0.73,-0.72,-2.6,-0.49,-1.88,-1.08,0.67,-1.63,0.38,2.33,-0.22,2.51,-2.93,2.25,-0.15,1.71,-0.84,1.32,-1.01,-1.07,0.8,0.33,0.34,1.73,0.7,0.29,0.6,0.03,0.68,0.15 +C852,-12.84,0.03,-1.4,-1.72,0.31,0.86,-0.78,-1.15,-1.8,1.26,-0.78,0.31,0.34,-0.53,0.51,0.64,1.29,0.93,0.68,-0.09,2.8,-1.81,0.21,1.1,-3.59,0.23,0.26,-1.11,-0.43,2.29,-1.05,0.39,-0.78,1.01,2.21,-1.39,2.32,0.31,-0.1,-1.35,2.42,0.05,-2.99,-0.42,5.25,-0.33,-2.71,-2.32,-2.16,-2.43 +C853,4.46,-2.62,0.02,0.1,3.6,0.42,-0.38,-1.17,0.64,0.52,0.49,0.84,-0.39,-1.6,0.21,1.63,1.05,2.41,-0.82,0.07,-1.53,0.31,-2.42,-0.08,1.07,-2.48,-2.54,-1.28,-1.7,-0.09,2.43,0.44,-3.05,2.06,-0.51,-1.75,2.21,-0.45,0.4,-1.02,1.38,1.21,1,0.46,1.17,-0.23,0,0.33,3.55,-0.76 +C854,3.1,-1,1.13,-1.28,-3.85,-0.68,-1.25,2.41,-0.24,1.28,-0.73,1.31,0.11,0.38,-1.41,-1.74,-1.83,2.01,1.62,-0.93,-1.75,-0.98,0.8,0.42,-1.36,1.52,0.38,-0.14,-2.32,-0.12,-0.52,-0.88,0.91,0.26,-1.29,-1.45,-0.11,1.3,-0.7,0.28,-0.23,-0.5,4.95,-3.22,-1.79,-1.92,-0.9,-0.68,0.97,-1.3 +C855,6.5,2.23,-1.49,-2.53,-0.19,-0.9,0.74,3.65,0.79,-2.7,-0.66,-0.52,-0.21,2.53,-2.42,-0.55,-1.77,-0.4,0.06,-1.8,0.15,0.62,-0.73,0.39,-1.29,0.28,0.21,-0.54,-1.04,-1.26,-0.33,-1.27,0.85,1.6,0.52,0.67,-1.29,-0.83,-0.09,0.24,1.12,0.75,-0.1,0.3,1.22,-1.44,-1.49,0.79,1.87,1.52 +C856,4.35,1.51,-0.53,-2.26,-1.18,-1.54,0.66,1.57,-0.33,-0.32,1.57,-1.41,-0.75,1.32,-0.01,3.5,-0.15,-0.18,-1.73,2.22,-2.34,1.04,0.7,0.98,-1.94,2.85,-1.78,0.27,0.32,-1.05,-3.33,0.92,2.63,-0.44,-0.83,-1.09,-0.08,-2.6,0.64,0.25,-0.33,1.16,-0.22,-2.05,-1.08,-1.11,0.07,2.22,1.09,-1.85 +C857,4.34,-5.02,1.83,1.96,2.75,1.21,0.47,0.1,-2.29,-0.73,-8.17,6.16,0.7,4.14,2.76,4.32,0.96,-0.11,2.6,2.04,1.51,0.53,-0.52,-0.91,2.18,-2.44,-0.66,-1.77,4.56,0.82,2.68,-2.24,0.18,-0.27,-0.85,0.97,-1.04,-0.36,-2.23,-1.34,0.6,0.49,-3.96,0.59,0.32,-1.07,0.89,-1.41,1.95,0.88 +C858,6.19,1.03,-1.65,-2.32,6.97,-0.38,2.24,-0.2,3.3,-2.15,0.12,0.75,-1.33,-0.62,-1.75,-0.47,3.19,2.85,0.93,-0.48,0.39,1.6,0.74,-1.34,0.01,2.08,3.33,-0.12,0.8,0.33,0.08,-0.78,1.54,1.14,-0.89,1.73,1.43,-0.83,-2.71,0.86,1.13,1.45,-0.54,-1.86,1.45,0.12,-1.63,-1.8,-1.36,-0.04 +C859,3.3,-2.18,-0.19,-1.15,-4.21,-0.55,-1.11,-1.86,-2.61,1.32,0.42,0.98,0.15,-1.81,1.16,1.89,3.15,-0.11,-1.26,0.11,0.8,1.31,1.57,0.01,0.96,1.26,-0.52,0.93,0.67,1.4,-0.94,-1.13,1.37,0.93,-1.15,-0.55,-0.55,-0.54,-0.2,0.92,-2.18,1.27,-0.14,-0.75,0.01,1.99,-1.35,-1.82,0.24,0.61 +C860,4.42,-5.62,0.89,2.3,0.86,0.89,-0.28,-0.71,0.5,-7.34,-1.31,-3.82,-2.86,5.04,0.13,-1.65,-1.38,-0.43,2.51,-0.87,2.07,1.83,5.44,0.92,-0.1,0.19,-0.3,4.32,-0.41,0.98,0.34,-1,-0.06,-1.68,2.76,-3.86,0.84,0.03,-2.1,0.04,-2.16,-2.89,2.31,3.77,-2.72,1.42,1.96,1.15,2.8,2.32 +C861,4.62,1.26,-1.2,-2.94,-1.26,-0.27,-1.01,-0.55,1.48,0.74,0.12,0.57,-0.88,0.74,-0.54,0.68,-1.35,-0.03,1.23,1.15,-3.29,0.67,-1.61,-1.89,-0.42,-1.35,-1.5,0.58,1.16,2.06,-0.32,-1.06,2.06,0.1,-1.4,2.13,-1.52,0.91,1.76,0.06,-1.17,1.03,-0.14,0.49,0.22,0.87,-0.57,0.57,-0.04,-0.27 +C862,-0.68,-8.52,4.15,3.71,-8.45,3.49,-1.96,-6.3,-3.44,-2.41,3.9,-1.46,-0.69,4.56,-3.84,8.12,-2.8,0.45,-1.63,-5.55,-1.26,4.07,-0.69,1,1.58,1.44,0.48,-2.29,2.9,-4.63,-0.97,2.78,-2.44,-0.38,-1.57,1.47,-1.03,4.23,-4.56,-2.55,-0.6,-2.98,0.43,-2.66,0.49,4.56,-0.38,-0.52,2.71,-3.57 +C863,3.96,-5.26,0.69,0.97,4.84,-0.43,-0.32,-3.18,-0.04,-1.05,0.87,-2.83,-1.14,1.33,-0.04,0.86,0.02,-1.59,-0.11,1.42,0.62,0.47,-0.04,0.9,0.99,1.25,-1.49,-1.31,2.57,0.65,-0.59,0.15,-0.82,-1.69,-0.53,-1.11,2.98,-0.02,0.65,1.5,1.48,0.44,0.15,-0.69,-0.5,-0.93,-0.18,-0.24,2.84,-0.94 +C864,4.52,-8.06,1.17,1.64,2.57,0.06,-1.07,-0.68,0.08,2.56,1.45,-1.16,-1.02,1.45,-3.55,0.59,0.6,-1.11,0.09,-0.16,2.42,-1.61,-2.4,0.06,3.22,2.99,-2.01,-1.88,1.86,2.88,1.84,-0.74,2.09,5.45,-0.24,0.21,-3.44,-3.68,-1.7,-0.33,0.38,1.01,-0.57,-1.88,-0.17,-3.29,-0.33,-3.26,-3.53,-0.5 +C865,3.26,7.32,4.53,4.11,2.96,-0.7,0.27,-0.67,-1.23,-0.8,-2.3,0.79,2.47,1.81,-0.34,-1.95,-0.13,1.64,1.93,1.65,-0.56,-0.39,0.07,0.41,0.79,0.8,0.58,-1.29,-2.86,0.22,-1.25,-0.45,-1.71,-0.66,1.09,0.24,2.07,1.24,-2.11,1.13,0.77,-0.98,0.31,-3.05,0.3,-0.68,2.19,1.54,-0.94,0.64 +C866,5.12,0.17,-1.57,-2.39,-2.4,0.73,-0.39,2.78,0.3,0.26,1.94,0.56,-1.11,-0.28,-0.51,-2.1,-0.29,0.16,1.03,0.34,-0.15,0.7,3.27,1.47,-2.4,0.21,0.98,0.3,1.73,-1.11,0.28,0.16,0.75,3.01,0.57,-1.04,-2.06,-0.71,-2.78,1.03,0.97,-1.99,-1.95,-2.26,-0.46,0.5,0.25,-0.08,2.44,0.83 +C867,3.21,-6.08,0.3,1.06,1.67,0.53,-0.92,-2.25,1.57,-2.37,0.28,-2.41,-1.46,-0.07,-0.18,1.78,2.03,0.06,1.97,-0.23,0.72,-2.16,2.89,-2.41,1.19,-1.1,0.67,-1.64,-1.23,0.31,0.27,0.35,1.84,-3.72,4.98,2.38,0.6,1.67,-1.46,-0.13,1.93,1.32,-1.14,-3.92,-2.08,-0.84,-0.19,0.56,2.53,-3.68 +C868,4.37,-0.08,-1.75,-2.88,-1.17,-0.19,-0.23,-1.56,-0.33,1.81,1.54,1.23,-1.13,-1.24,-1.9,-1.89,0.17,0.64,1.13,0.82,-2.67,-1.45,-1.26,-1.51,-0.68,-0.87,0.42,1.94,1.46,0.11,2.83,1.07,0.88,-2.24,-1.86,-1.97,-0.55,0.68,0.73,1.34,1.26,0.37,-2.89,-2.16,0.84,0.48,-1.85,-0.2,-1.34,-0.58 +C869,3.29,-2.47,1.59,1.08,2.07,1.89,0.11,-3.94,3.66,-1.97,-0.26,-3.22,-0.46,1.16,2.58,0.35,-2.45,0.12,0.06,-3.34,-1.38,-2.98,-0.82,-0.72,-0.09,-1.29,0.47,1.8,0.36,-3.28,0.53,1.24,-0.46,2.07,0.78,-1.49,-1.86,0.87,1.86,-1.88,0.41,-1.49,-0.22,-0.83,0.25,-1.43,2.37,1.71,0.65,-3.39 +C870,2.82,6.14,5.05,3.88,1.36,-0.88,-0.25,0.77,-0.85,-1,0.2,-0.87,0.51,1.4,-0.79,-0.54,2.14,-0.3,0.21,0.94,3.98,-1.38,3.95,-1.46,0.36,3.56,1.71,-1.93,-2.35,-0.81,-1.76,2.28,-0.97,-1.64,-1.43,-2.46,-0.41,-0.64,-1.03,1.93,-0.18,-1.32,2.75,-0.11,-0.08,-1.64,2.7,-2.31,0.88,2.34 +C871,3.42,0.8,-1.03,-1.72,-1.68,-0.71,1.1,0.28,0.94,0.87,0.11,0.46,1.38,0.21,-1.8,-0.29,-1.71,-0.18,0.69,-1.13,-1.49,1.93,-0.85,-0.64,1.44,0.75,-0.73,-0.41,-1.2,0.28,-1.4,0.74,0.04,-2.71,-1.67,0.27,-0.18,-1.65,1.78,0.94,0.77,1.12,-0.21,-1.22,1.54,3.16,1.54,-0.68,-1.24,1.18 +C872,4.16,7.24,4.33,4.23,1,-0.1,-0.68,-0.66,-1.25,1.13,0.2,-0.37,-0.77,0.18,-0.22,1.62,3.01,0.01,0.82,-3.6,-0.85,1.23,-0.21,-0.67,-1.06,2.15,1.26,1.62,1.57,0.68,1.75,0.49,0.26,2.41,0.15,-1.55,0.6,1.89,1.44,0.44,-1.45,1.11,-1.78,-1.27,1.63,-1.36,-0.19,-0.83,1.25,0.13 +C873,2.3,7.41,5.3,3.21,1.41,-0.74,-1.01,0.99,1.01,-0.76,1.61,-1.38,-1.37,-0.33,-1.27,2.02,-1.13,1,-1.23,0.86,2.61,1.2,1.16,1.89,-0.87,-2.21,2.23,1.41,2.01,-4.09,-1.99,-2.79,-0.17,0.53,-1.08,-0.39,0.15,-2.97,-4.42,-0.89,-0.48,2.99,-0.17,-2.35,2.37,-0.27,2.52,0.17,-1.47,-0.05 +C874,5.15,3.62,-2.36,-4.86,1.97,-1.31,1.67,0.23,1.14,-1.25,0.7,0.72,0.32,-3.01,-0.34,0.05,1.07,-1.82,-0.73,2.63,2.6,-1.59,-1.6,1.9,-0.7,-0.03,1.1,1.88,1.58,-0.68,-0.18,0.76,0.57,-1.29,0.61,-0.03,-2.64,1.08,0.55,-0.72,-2.12,-0.33,-1.94,0.07,-0.78,0.05,0.47,0.1,-0.37,1.52 +C875,2.6,8.02,4.98,6.45,0.6,-0.42,-2.12,0.44,1.38,2.43,1.63,-1.84,-2.08,0.39,1.56,0.02,1.14,-3.44,2.45,1.81,0.6,0.86,2.43,-0.71,0.48,-3.7,-2.18,1.49,1.62,1.45,-2.66,1.54,0.18,-1.81,0.07,-1.08,-0.41,-1.65,-2.77,-4.79,-3.07,-0.02,-1.22,-0.33,-1.47,1.34,-0.03,0.45,-0.58,-3.62 +C876,-6.74,4.43,-1.48,-3.12,3.36,1.03,1.69,-1.32,0.31,2.29,0.36,0.71,1.51,-1.45,1.23,1.3,0.75,0.65,-0.03,-1.37,0.24,-0.08,-1,0.12,-0.74,0.76,-1.94,-0.09,-0.57,1.74,0.83,0.37,-0.92,0.14,0.98,0.54,-1.83,-1.79,-1.04,0.04,1.18,-0.46,-1.23,2.02,1.22,0.88,1.39,0.44,-0.71,1.2 +C877,4.49,0.13,-0.26,-1.3,-2.85,0.64,0.61,1.7,0.25,-0.21,-0.3,0.57,0.28,0.88,-0.52,-1.39,1.79,-2.41,-2.5,-1.13,-1.15,1.72,2.06,0.85,0.08,-0.53,1.1,1.4,1.85,-0.23,2.06,-2.87,0.53,-1.4,-2.06,-0.98,-0.06,-1.89,-0.28,-0.83,2.94,-1.28,1.37,1.32,0.61,0.41,-0.68,-1.03,0.7,1.44 +C878,5.06,1.64,-2.72,-1.67,-1.75,0.72,-0.96,1.26,1.89,-0.33,-0.01,-3.89,-0.16,2.72,1.63,-1.08,-1.89,-2.11,-1,1.68,1.25,0.76,-1.2,-1.67,-0.2,-1.75,-1.39,0.89,-0.62,0.36,0.35,2.25,-0.99,-1.54,0.54,-2.41,0.79,0.04,-0.38,1.45,-0.2,-2.9,1.91,2.04,0.1,1.16,2.12,1.46,2.01,-0.4 +C879,4.61,-0.88,-1.58,-2,-4.44,-1.61,-2.31,0.45,-1.91,1.74,1.56,-1.23,1.98,-3.43,1.44,0,2.07,-0.15,-0.12,-3.75,0.97,0.41,1.19,0.94,-1.21,0.07,1.06,0.74,0.53,-2.09,1.07,0.38,0.9,0.35,-0.85,-0.69,-0.96,-0.52,-0.49,-0.82,3.01,0.14,1.62,1.1,1.17,-2.39,0.51,-0.93,-0.43,1.5 +C880,3.59,-4.92,0.23,2.01,1.75,0.77,-1.36,-2.21,-0.97,0.85,2.14,-3.97,-1.13,0.15,-2.99,-1.15,3.73,3.63,-0.51,-2.02,0.03,-0.76,-1.73,-0.73,-0.44,-0.87,-1.16,3.71,-1.94,-0.43,2.12,-0.32,-2.67,-2.45,-3.32,0.27,0.33,-1.01,-1.36,-4.4,-2.38,-0.46,1.56,1.39,0.75,-0.58,0.92,-0.71,-2,-1.22 +C881,4.53,-8.64,1.22,1.16,4.26,-0.93,-1.2,-1,-0.1,2.62,-2.52,3.81,2.63,1.4,2.93,0.35,-1.62,0.12,0.84,1.51,-1.7,3.13,0.54,1.17,-1.44,-0.75,0.36,-4.24,0.07,1.38,2.39,2.92,0.53,1.71,-0.22,2.9,1.38,1.86,-2.13,-5.78,-1.22,0.82,-0.28,2.27,-1.11,-2.12,-1.21,-1.6,0.26,-0.92 +C882,5.96,3.28,-2.11,-3.38,1.54,0.39,2.42,1.53,1.54,0.01,0.73,2.74,-0.69,-0.93,0.12,4.12,-0.84,3.65,0.43,-0.7,1.07,-1.67,0.34,-2.79,0.51,-1.68,2.47,2.1,0.58,-0.75,2.34,-0.26,0.74,2.66,1.22,0.83,0.95,1.13,3.74,-2.57,0.89,-1.34,1.21,-2.89,2.13,-0.45,-0.33,1.51,1.4,-0.5 +C883,1.92,5.1,4.74,3.86,0.41,-0.55,-0.63,-0.32,0.08,0.5,-0.84,-0.71,-1.15,2.33,-0.35,-0.83,0.38,1.18,0.87,-1.53,4.58,2.91,2.06,1.36,-0.03,2.25,1.78,1.22,-3.59,-1.41,1.27,1.96,3.15,1.31,-0.91,0.96,1.02,0.54,0.33,1.18,0.47,0.98,0.99,1.39,3.04,-0.3,-0.8,-1.36,-2.67,0.96 +C884,4.13,1.07,-1.47,-1.38,-2.28,-0.13,-1.37,2.56,1.41,0.36,-0.11,-0.64,-0.52,0.84,2.97,-0.17,2.17,1.03,-2.39,0.76,-1.44,-2.59,1.21,-3.12,-0.05,0.39,-0.66,-2.16,-1.7,1.64,-0.75,1.18,-2.74,1.76,-2.25,0.66,-2.56,0.65,1.37,2.02,-0.57,0.36,-1.39,0.29,2.2,1.18,-1.51,1.57,0.71,1.09 +C885,4.98,7.68,3.35,2.83,2.01,-0.4,0.63,2.22,0.74,0.35,-3.21,0.28,2.03,-3.21,-2.3,-0.8,-0.66,0.12,3.77,1.89,-4.77,-2.11,-1.25,1.64,-1.19,-0.26,1.61,1.04,-1.08,0.79,-2.44,-2.42,1.61,-1.71,-0.49,1.25,-0.42,4.31,1.8,2.14,1.83,-2.1,2.21,0.48,2.02,1.34,1.18,2.12,0.7,-0.91 +C886,1.66,6.7,5.43,7.7,-1.56,-0.58,-0.55,-0.14,-6.12,-0.23,3.3,5.53,-2.1,0.48,-6.86,3,4.92,1.16,-2.38,-2.29,-1.38,0.38,-1.5,-4.88,-1.49,1.81,4.41,-2.71,-1.45,1.22,1.31,-1.37,0.53,-1.15,0.26,-1.86,3.81,-1.64,3.55,-1.99,0.05,1.29,-1.28,2.16,-0.22,0.58,-0.14,-2.78,-3.23,-0.56 +C887,3.98,-3.32,0.76,0.81,2.76,1.01,1.69,-1.59,0.24,-2.36,3.02,-1.26,-1.52,0.25,-4.19,-3.76,-2.66,2.55,1.95,-1.52,0.95,1.77,0.21,0.79,1.12,-2.68,0.07,1.43,-0.66,-0.83,-2.27,-0.4,-0.06,3.2,1.58,0.96,-1.28,0.19,2.17,-0.37,2.98,-1.55,-3.85,-3.41,0.4,0.35,3.2,-1.87,-1.49,1.58 +C888,-5.74,3.16,-3.34,-5.58,4.41,0.84,2.69,-0.33,0.08,0.59,1.92,-0.04,-1.08,-1.31,1.59,0.05,-0.19,1.41,-0.02,-2.95,0.55,-0.55,0.72,0.94,0.57,0.83,-0.63,1.46,1.53,0.53,-0.56,-0.21,-0.46,0.09,-0.56,1.4,0.27,0.55,-0.24,0.09,0.94,0.72,1.43,-0.31,-1.88,-2.19,-0.28,-0.36,-0.99,-0.84 +C889,3.43,0.48,-0.64,-2.74,-1.43,-1.21,1.21,-0.38,-0.05,1.6,0.28,1.05,-0.09,-0.25,1.72,-1.24,0.98,0.02,0.95,-0.02,2.75,0.04,-1.92,0.38,-2.51,0.03,0.32,-0.25,-0.98,-1.56,0.56,2.59,0.77,0.01,0.25,0.87,-3.1,-0.18,0.25,0.36,0.61,2.06,1.25,1.46,0.73,-1.31,1,0.6,0.94,1.63 +C890,-14.76,-1.45,1.29,1.07,-3.2,-7.28,3.21,0.43,-0.56,-0.29,-0.43,1.17,-0.7,-0.88,-1.73,-2.97,0.27,-1.38,-0.13,-2.01,-0.61,-2.35,-0.64,-3.3,4.98,-4.31,0.21,-2.07,0.42,-0.41,-1.19,-2.55,2.12,-0.64,-1.52,-0.08,0.03,0.34,1.63,-2.77,-0.17,-2.52,2.05,-1.13,1.44,-1.87,0.76,-2.42,1.38,-0.38 +C891,3.45,-0.9,-1.28,-2.15,-3.06,1.05,-1.1,-0.38,0.5,0.83,0.4,0.81,1.09,-1.02,0.04,-0.52,-1.33,1.7,0.55,-0.79,0.33,0.02,-0.77,0.51,-1.21,-1.81,0.27,-2.42,0.48,0.15,1.47,1.1,0.16,0.59,1.27,3.56,-1.18,-0.49,0.18,-0.43,-1.7,1.51,-1.72,-1.03,-1.03,-1.62,1.8,0.3,0.11,-0.16 +C892,3.44,-2.33,-2.05,-1.21,-4.74,-0.23,-0.43,-0.25,0.21,0.92,2.25,-2.05,-0.91,-0.51,1.19,-0.84,-0.22,1.4,0.2,-2.65,-0.39,-1.17,0.69,1.5,-0.32,1.15,0.68,-1.77,-0.42,1.59,-1.35,2.38,-3.88,0.51,0.24,3.48,-2.69,-0.67,1.66,-1.97,2.2,0.14,2.07,-0.1,-1.63,-0.36,-1.9,-0.73,-2.29,1.7 +C893,2.28,8.11,5.87,5.34,2.71,-1.19,-1.24,1.1,-2.58,-1.45,-1.69,0.94,1.58,2,-2.01,-0.59,-0.9,0.83,1.07,-1.73,-0.26,-0.32,0.19,2.46,-0.37,1.14,0.93,-1.26,1.51,-0.35,-1.94,-0.58,-0.27,1.42,0.62,-0.26,-0.04,1.93,1.31,-0.72,2.02,-0.53,4.09,-0.82,0.69,0.3,0.67,-3.69,0.64,0.03 +C894,4.66,-5.08,1.31,-0.33,1.12,0.22,1.72,-3.75,-0.13,-6.05,5.41,-0.32,-4.38,0,-0.2,0.93,-1.84,3.25,-1.47,0.36,-1.37,-0.89,-1.22,0.11,0.8,-1.82,-4.5,2.6,1.17,1.59,3.35,-2.68,0.33,-0.18,3.46,-0.37,-2.94,0.05,-0.77,1.52,-1.94,-2.95,-2.91,-1.05,1.55,0.71,1.17,1.05,1.89,1.42 +C895,5.67,0.52,-0.9,-1.12,3.49,-1.17,2.82,-4.55,2.37,-0.79,-0.29,-0.98,-1.98,1.06,-3.61,-0.31,-0.43,0.79,0.12,-0.25,0.77,-2.35,-0.1,2.19,0.72,-1.98,2.29,1.01,-0.78,-0.99,0.36,0.51,0.85,0.14,-0.07,-3.52,0.5,0.96,1.15,1.61,0.59,1.93,0.87,-1.48,0.58,0.49,1.61,0.09,0.62,0.14 +C896,5.19,0.04,-0.52,-2.04,-0.64,-0.84,0.63,1.69,0.09,-0.07,-1.2,2,-0.44,1.02,-0.71,-1.33,1.25,0.31,0.21,0.76,0.87,3.21,1.76,0.12,2.6,-0.94,1.69,1.42,0.39,0.13,-1,0.74,1.36,1.11,-0.24,0.48,0.11,-0.59,1.29,-0.23,1.14,1.96,-0.77,-2.6,-1.67,0.38,1.16,0.86,-1.69,0.65 +C897,4.93,1.32,-1.59,-2.74,-0.38,-0.65,-0.49,1.29,-0.68,-2.8,-0.09,1.55,0.39,0.73,-3.8,-0.41,-0.05,-0.44,1.55,-1.1,1.32,-0.11,1.47,0.04,0.66,-0.12,-0.68,-0.4,-2.16,-0.41,0.37,-1.05,-1.06,-0.99,0.02,0.08,-3.62,-1.92,1.45,-0.15,1.62,2.95,-1.89,0.38,0.82,-0.12,-0.65,2.32,0.01,0.63 +C898,4.15,-0.75,-1.1,-1.85,-2.89,-0.31,0.58,-0.87,-1.06,1.73,-1.22,0.86,2.4,-2.13,1.25,-2.3,-0.69,0.84,-1.07,0.52,-1.91,-1.82,0.01,0.21,-1.31,-0.74,2.41,2.91,-0.22,-0.38,-2.32,2.88,-1.71,-0.94,0.29,-0.62,-1.95,-0.98,-0.2,0.22,-2.71,1.25,1.16,0.97,-1.76,1.72,0.03,-1.04,-1.78,2.29 +C899,-12.24,-0.56,2.32,1.11,-0.71,-3.86,0.13,-0.07,1.24,1.05,-1.92,-3.51,1.85,3.43,0.58,1.68,-3.17,-0.42,-2.75,-0.88,-1.25,1.82,0.15,0.12,-0.49,-1.4,-0.69,1.13,1.44,2.88,-0.83,-1.39,2.1,1.75,-1.46,3.89,-0.83,-3.48,-2.18,-1.35,2.66,-0.58,1.25,0.59,-1.52,-1.73,1.68,-2.95,-2.06,-0.61 +C900,3.29,-0.52,-2.38,-2.73,-2.3,0.53,-1.72,1.56,-1.07,-0.7,-2.13,-0.07,0.71,-0.98,-2.62,0,0.21,5.57,2.3,-1.49,-1.17,0.51,1.24,-3.23,1.37,-0.82,-0.77,3.15,0.83,-1.97,-0.56,-0.34,1.33,-1.09,-0.91,1.05,1.58,2.68,0.98,-1.43,2.69,0.79,-0.86,-1.93,-3.35,1.84,0.03,1.41,-1.48,-0.85 +C901,4.54,-0.15,-1.36,-1.16,-2.51,-0.16,-0.16,1.79,-1.83,-2.18,0.48,0.89,1.36,1.77,-0.81,-0.48,-1.93,1.78,-1.34,0.31,-0.36,2.3,1.23,-0.19,-1,1.79,-0.57,0.44,2.87,0.41,0.89,1.36,-0.97,4.02,-0.77,0.53,1.27,-1.6,-0.17,-2.46,1.04,0.92,1.72,0.02,2.53,0.33,-1.32,-2.01,2.05,1.55 +C902,4.2,0.82,-1.57,-1.86,-1.45,-0.14,-0.1,1.68,-0.11,1.34,0.26,-1.15,-0.56,-0.83,0.58,0.22,-0.36,0.43,-1.13,-1.69,-0.07,0.31,-1.05,-0.61,0.08,-0.08,-0.76,-0.62,-0.25,0.42,-0.56,-3.76,1.22,0.48,-0.67,2.54,-0.83,0.11,0.41,0.97,2.14,-0.1,0.63,-0.24,-2.1,0.64,1.85,1.14,0.61,1.52 +C903,2.28,7.92,6.59,6.51,1.24,-0.6,-0.41,-0.38,-1.8,-1.56,1.62,0.42,-0.87,-0.09,-0.64,2.19,-1.11,-0.62,-0.42,0.74,0.2,-0.01,-0.6,-0.04,-1.45,-2.38,-1.6,0.72,1.05,0.39,1.83,-0.71,1.59,0.56,3.51,1.48,2.64,-0.22,-0.31,-3.51,0.16,-2,3.68,-2.93,0.49,-0.98,-0.05,1.77,-0.94,-0.82 +C904,5.92,-0.85,-1.6,-2.79,3.07,0.41,-0.09,-3.98,0.24,0.32,-2.95,2.21,-0.58,-0.11,2.19,-0.23,-2.63,3.45,-3.93,1.34,0.42,0.15,2.61,-0.9,-1.6,1.01,-1.9,1.12,0.48,1.3,-0.08,0.12,-3.46,-1.66,-0.21,2.58,-0.11,-0.16,-0.41,2.25,-2.85,1.16,2.95,-0.14,-1.3,-2.59,0.86,0.02,-1.95,-3.69 +C905,4.65,0.92,-1.38,-2.53,-1.59,-1.18,0.08,-0.73,-0.81,-0.14,2.29,-0.35,-0.73,1.45,3.08,-1.26,-1.07,-1.13,-0.2,-0.35,1.8,1.25,-0.9,0.98,0.8,-1.26,1.04,-0.3,-1.01,-0.84,-3.1,-0.69,-1.49,-3.09,3.19,-1.48,1.98,-1.09,-1.39,-0.95,0.99,-2.44,0.7,2.7,-2.08,2.9,-0.04,-0.65,-0.25,-1.42 +C906,1.8,-12.94,3.15,4.21,5.88,-0.24,-1.18,1.87,-1,0.74,2.61,-6.73,0.06,-0.21,-5.1,2.25,0.46,-4.24,-3.02,2.85,-4.73,5.21,-4.61,4.41,3.37,1.91,6.39,-4.3,-3.92,2.15,2.94,4.15,3.25,1.76,-0.88,0.3,-1.01,3.71,-4.73,-3.65,1.71,-0.94,-4.32,3.71,2.21,-3.02,-1.65,2.07,-4.83,-0.84 +C907,4.37,-0.18,-0.04,-1.84,-3.38,-0.74,0.07,1.58,-0.59,0.48,-0.28,-0.75,2.11,0.95,2.25,-0.85,1.35,0.54,0.24,1.68,2.11,-2.71,-1.27,-0.08,0.75,0.1,1.17,0.53,2.15,-2.12,2.3,0.37,-1.01,-0.83,-0.89,-2.29,-1.74,-1.14,2.62,3.36,3.9,2.19,1.34,-2.81,1.42,1.48,3.48,0.36,-2.44,-0.3 +C908,3.14,-10.8,2.18,3.52,5.94,-0.81,0.3,2.37,-0.72,2.03,-1.51,0.5,1.93,0.35,2.33,-2.99,1.11,-0.6,4.13,2.19,2.08,0.88,-1.03,-1.32,0.78,-0.02,-2.59,3.78,2.27,0.62,-3.58,-0.07,2.61,-2.07,-0.14,-3.74,-1.18,-0.69,-0.16,1.1,-1.25,0.96,-1.47,-0.34,1.19,1.8,0.72,3.62,-1.48,0.25 +C909,3.81,-0.65,-1.08,-1.62,-2.88,-1.65,-0.09,2.08,2.87,1.12,-0.26,1.18,-0.03,-0.28,-2.14,-0.61,-1.51,0.54,-2.24,0.81,0.84,0.39,0.25,-0.78,2.07,1.03,2.74,0.6,-3.49,0.91,-1.37,0.1,-0.66,-1.02,0,-1.11,1.36,1.95,-0.67,-3.72,0.58,1.28,1.76,1.32,0.42,-0.21,4.25,0.48,0.66,-1.24 +C910,-11.3,2.23,-1.66,-3.35,3.35,2.86,-0.08,1.14,-1.92,1.4,1.19,0.11,-0.8,-0.71,0.23,3.48,-1.19,-1.14,-0.82,0.11,-1.55,1.94,1.83,-0.6,-0.34,-0.43,0.87,0.58,0.29,-0.91,0.18,1.13,-2.58,1.89,-0.03,-0.92,-0.24,0.88,0.11,-0.65,1.07,0.27,0.43,-0.54,-0.11,1.08,0.4,0.07,-1.21,0.6 +C911,4.38,0.97,-1.11,-2.71,-1.85,-0.36,0.78,-1.91,1.3,2.12,1.41,-1.85,1.25,0.47,0.45,1.95,-2.15,-0.43,1.61,-0.36,1.17,-0.69,-0.42,-0.29,0.44,-0.54,-0.09,2.48,-0.68,-0.52,0.96,0.64,-0.54,-2.36,-1.27,1.38,-1.78,-0.52,0.43,-0.95,1.79,-0.93,0.46,1.49,-0.81,1.12,-2.3,1.18,0.76,1.36 +C912,-7.59,3.93,-1.86,-4.09,4.79,1.05,1.22,0.11,-0.47,0.53,-0.33,-0.63,0.7,-1.37,-0.33,-0.08,-0.4,-3.57,-0.04,-1.88,-2.19,3.16,-0.29,1.15,0.68,-2.08,1.55,1.35,-0.39,-0.01,-1.09,0.19,1.76,0.53,0.77,-1.01,0.22,-2.04,0.17,2.03,0.23,-1.05,0.58,1.58,-1.01,-1.14,-2.16,1.05,-1.1,1.01 +C913,4.22,-0.19,-1.61,-3.08,-1.97,-1.47,-1.06,1.31,-1.5,2.13,1.02,-0.49,-0.16,-1.86,4.22,-1.09,2.08,-0.62,-0.37,-0.31,1.2,-0.17,-3.95,1.42,-0.88,-0.21,-0.91,-2.77,-3.81,-0.82,2.11,0.27,-2.56,2.19,0.52,0.11,1.78,-1.13,-2.02,-2.47,-0.45,0.01,-2.74,-0.16,-1.53,-0.32,1.63,-1.56,-0.03,1.73 +C914,4.3,0.99,-3.36,-1.27,-0.47,0.48,1.32,0.7,1.82,-2.24,2.6,2.17,-0.01,1.32,1.26,-1.63,-0.53,-0.31,-1.19,1.06,-0.4,1.83,-1.4,-0.11,0.85,0.68,0.99,-0.37,-0.29,-0.91,2.48,-0.65,-0.51,-0.14,-1.15,0.6,-0.39,-1.19,-1.58,-1.84,-0.61,1.39,0.75,3.85,-2.43,-0.73,-1.19,1.43,-1.98,-2.67 +C915,-13.77,-0.39,-0.65,-0.17,-0.58,0.77,-2.52,-0.62,-2.2,-2.32,3.23,-0.21,0.08,0.69,-1.51,-2.06,-0.41,1.56,0.49,0.07,2.13,0.45,-2.33,-0.39,-1.12,-3.35,0.32,0.54,-0.12,-0.37,-2.24,1.55,1.02,0.21,-0.26,-1.16,-0.43,-1.31,2.16,0.89,-0.15,0.04,-1.31,-1.84,-1.57,2.39,-0.98,-1.26,-0.13,0.12 +C916,-14.5,-0.07,0.54,-2.32,1.16,4.46,-4.2,0.2,0.91,-0.7,-0.29,0.47,0.85,-1.75,0.83,1.02,1.83,2.93,1.94,2.57,0.42,-0.43,1.58,-3.36,0.76,-0.58,3.1,2.08,-0.95,-0.69,-0.45,1.48,1.03,3.03,1.17,0.04,0.6,0.02,-1.04,1.62,2.57,-1.96,2.21,-1.63,0.81,0.02,-0.26,1.88,0.56,-1.79 +C917,3.48,-3.24,-0.87,-0.72,-0.28,-0.89,-1.31,-5.02,-2.92,1.55,-0.4,2.03,1.48,-2.28,0.27,1.21,-0.91,0.6,-1.34,0.38,-2.68,0.94,-0.92,-2.19,-2.76,-0.61,-0.94,1.31,0.23,-0.64,0.66,-2.39,2.38,2.15,2.76,0.95,-0.02,-0.76,-0.32,1.88,-1.32,-2.13,0.15,-2.11,0.59,0.53,-0.87,0.09,-0.08,1.43 +C918,2.44,-2,-0.15,-2.5,-2.78,2.54,-1.59,-2.38,-1.16,1.78,0.79,1,0.68,-2.21,5.23,-0.72,-0.87,1.54,-1.29,0.5,-3.46,-1.39,0.19,-2.49,-2.21,-0.06,2.09,0.65,-3.31,0.85,-2.97,0.08,0.51,1.59,-2.21,-0.7,0.46,3.01,-3.05,0.1,-1.45,-0.07,2.59,-2.6,1.16,1.21,-0.39,0.34,-0.49,3.62 +C919,-10.27,1.75,-0.54,-2.13,2.7,2.43,-0.95,0.58,1.09,2.05,-0.79,1.06,-0.01,0.8,2.12,-0.05,-0.15,-2.24,-0.25,0.27,-0.82,1.65,-0.28,-3.43,-0.13,1.37,2.1,-1.25,-0.39,-0.8,-1.52,1.79,2.72,1.38,0.11,0.29,0.79,-0.22,0.77,-0.63,0.75,0.33,3.63,2.01,-1.07,3.68,1.24,-3.58,1.36,-0.43 +C920,4.59,-0.63,-0.43,-2.43,-3.16,-0.44,-0.82,0.29,-1.23,2.18,-0.56,-2.84,0.96,-0.57,0.65,0.64,-1.69,-2.57,-0.29,0.95,0.69,0.39,2.06,-1.54,0.49,-0.33,2.04,1.05,-0.72,0.46,0.41,2.29,0.96,0.37,1.01,-2.27,1.44,-0.34,1.09,0.51,-1.81,-3.02,-0.14,-0.17,0.08,-0.78,-2.19,-2.88,-3.75,0.88 +C921,4.91,1.29,-3.1,-1.99,0.1,-1.2,0.44,1.13,1.04,-0.44,-0.29,0.69,-0.98,0.99,1.03,-0.01,-1.34,1,-0.44,-0.53,-2.77,-0.62,-1.29,0.58,1.06,0.74,-0.15,0.43,2.14,-0.24,-1.6,-1.75,1.61,-0.93,1.13,-0.78,-0.99,-2.82,-0.88,-0.87,-0.12,0.15,-0.29,1.23,1.33,-0.81,0.95,-1.37,0.59,-0.37 +C922,2.53,-10.1,1.72,2.52,8.15,0.4,0.36,2.94,1.08,0.83,2.12,0.21,0.01,-4.42,0.96,-2.38,1.17,-1.1,-0.07,1.96,-0.68,-0.59,2.86,1.38,0.92,2.73,1.6,1.33,0.19,-0.13,0.02,-3.24,1.41,-1.36,2.43,0.14,-3.39,1.45,1.51,2.3,-1.16,3.3,-0.32,-1.36,1.92,0.67,2.94,-1.83,1.78,0.65 +C923,3.13,-0.76,-1.5,-1.99,-2.98,-0.27,-1.16,-0.74,-1.49,-3.04,1.21,2.82,-0.88,-0.45,1.51,1.21,0.45,1.61,0,-0.06,-3.07,-1.54,-0.64,-2.8,0.13,-2.42,-0.6,1.11,-3.05,0.09,0.33,0.12,-0.5,-0.93,2.16,0.27,2.89,1.37,-1.61,-2.75,-1.07,-0.21,-1.85,0.65,-1.01,-0.36,-1.07,-0.14,-0.63,1.22 +C924,3.67,-0.39,-1.03,-2.46,-4.02,0.2,-0.51,0.55,0.32,1.43,0.87,-2.04,1.89,-2.59,-2.85,-3.86,-0.15,1.32,1.19,1.07,-0.73,-0.72,1.46,1.17,-1.9,1.8,-0.13,-0.67,-0.27,1.46,-0.73,0.65,1.19,2.78,-1.01,-0.92,0.82,-1.59,1.55,3.77,-0.76,-0.98,0,-1.5,0.37,0.42,1.17,-1.59,-0.45,-2.71 +C925,-7.47,3.02,-2.31,-4.25,3.59,-0.93,2.99,1.26,0.89,-2.31,-0.92,0.65,1.42,1.3,0.06,2.34,-0.51,-0.09,0.34,-0.47,-2.36,-1.31,-2.95,2.54,-0.99,4.06,0.33,2.68,-1.69,-2.22,2.02,0.29,-1.68,0.98,-0.98,-0.73,2.02,2.74,0.25,2.41,-0.31,0.52,2.29,-0.15,2.08,2.73,1.3,-1.87,-1.95,0.41 +C926,2.52,-1,-0.86,-1.68,-3.91,0.43,-2.41,-0.47,1.83,0.1,1.72,3.4,3.46,-1.85,3.36,-2.54,2.98,-0.33,1.47,-1.16,0.14,1.3,0.99,0.06,0.13,1.09,0.3,2.01,0.48,1.34,0.57,0.96,-0.39,0.39,-3.64,3.33,-2.27,1.19,1.24,-2.51,1.21,-1.37,1.75,1.92,0.21,-1.27,1.59,0.94,-2.21,-1.03 +C927,4.98,-5.21,-0.18,1.2,1.53,0.32,0.18,-4.53,1.04,-1.6,1.46,-6.29,-0.86,0.52,3.41,0.55,-0.52,-1.37,-1.39,0.5,-0.36,2.41,1.81,-2.44,-0.88,1.42,-1.14,0.59,-1.89,-0.39,-2.99,-1.93,-1.46,1.16,1.16,-2.9,-0.96,-1.83,-0.72,1.49,2.91,-2.94,-1.54,-5.86,4.26,-1.24,1.03,0.97,-1.16,0.78 +C928,-13.76,0.14,0.86,-0.25,0.69,0.2,0.09,-0.89,-2.99,-2.04,2.03,0.51,-0.92,1.06,0.81,-1.87,1.55,1.63,-2.92,-0.36,-2.12,-1.02,-0.41,-0.85,1.71,2.6,-2.48,-0.77,-0.01,1.32,1.11,-2.4,-3.09,-0.96,2.35,1.69,-1.18,-0.1,-0.28,1.28,0.39,-0.66,-0.79,2.38,-0.52,-0.17,0.98,-2.72,-2.16,-2.12 +C929,0.96,-12.39,2.55,4.26,6.18,-0.55,0.12,5.98,-0.07,4.37,1.41,-3.41,1.44,-2.48,-0.18,1.93,4.29,-3.66,-0.61,1.46,-3,1.29,0.24,-0.82,-0.06,0.25,-4.46,0.6,2.01,0,4.11,-1.19,-1.88,-0.03,-0.02,-0.19,0.5,0.23,-0.13,0.47,2.1,-0.37,0.9,-1.32,3.94,-2.26,2.49,-2.46,0.7,1.11 +C930,4.83,-3.26,-0.43,-1.55,0.61,-0.4,-0.31,-5.04,0.97,-1.7,-1.77,0.66,2.07,2.99,2.28,4.16,0.98,0.87,-0.09,-0.82,-2.53,-1.59,2.61,1.61,-0.83,1.33,-0.18,-0.13,-0.88,0.56,-2.1,-1.87,0.93,-1.47,0.46,-0.89,-0.24,-2.1,0.15,-0.77,1.58,0.01,1.08,-0.82,-1.61,0.65,-1.65,-0.11,-2.09,3.45 +C931,-10.95,2.2,-3.57,-2.49,2.16,2.54,-0.21,0.32,-2.18,3.05,-1.43,-0.62,1.14,1.43,-1.17,1.05,-0.62,-2.28,0.29,0.8,-0.83,2.23,0.46,0.62,1.82,-0.39,-0.76,-0.27,-0.25,0.85,-0.33,0.71,1.74,-0.63,-0.77,-0.53,-3.84,0.57,1.54,1.64,-0.44,0.19,1.11,-0.62,0.15,0.66,-0.11,0.38,-2.35,-3.98 +C932,4.57,-0.68,1.15,-0.7,-4.22,0.47,-0.86,2.36,1.03,1.64,-0.41,0.34,1.4,-0.65,-0.33,-2.04,0.13,-1.28,-1.77,-1.59,-0.44,2.52,3.45,0.94,-1.3,-0.87,1.3,-2.23,-1.62,-0.23,2.05,0.45,2.04,1.83,-2.96,3.6,-0.37,-1.97,3.26,2.69,1.47,2.02,-2.98,-1.62,0.8,0.71,2.4,0.88,0.64,0.51 +C933,3.61,-2.38,-0.68,-1.01,-4.77,-0.89,-1.82,0.73,-0.76,1.55,-0.36,1.06,0.66,0.04,0.03,2.4,-1.42,-0.36,-1.78,6.15,1.03,3.97,-1.77,1.28,1.52,1.35,0.91,1.81,-1.05,0.38,-0.13,-0.36,-2.03,0.01,2.1,0.67,-1.4,-0.22,-0.82,-0.9,1.54,1.51,1.22,0.08,1.74,-1.22,1.75,-1.59,2.98,2.93 +C934,3.94,0.49,-1.42,-2.53,-0.49,-1.21,0.32,-1.05,2.06,0.04,1.89,-0.84,-0.74,-1.1,0.49,-0.23,2.52,-2.86,0.72,0.67,1.01,0.75,2.88,-0.44,-0.99,0.39,2.46,-0.48,0.15,1.31,0.92,-3.35,5.2,-3.29,0.06,-2.1,-1.51,0.55,1.9,-1.26,1.55,1.17,2.79,0.18,0.65,1.41,-2.42,-1.13,-1.13,3.5 +C935,-9.09,1.19,0.79,-0.97,0.67,-2.91,2.46,-1.59,1.61,-0.61,3.47,1.62,0.11,-1.02,1.96,1.24,-0.38,-1.36,0.46,0.47,-0.64,-0.86,0.66,-0.57,1.37,0.79,-0.58,2.95,0.47,-0.36,0.03,-1.86,1.45,-2.82,-1.39,1.67,2.17,2.12,1.19,-0.93,-1.95,2.63,-0.58,1.28,1.25,1.04,0.55,-2.16,0.46,0.93 +C936,1.72,6.45,6.69,6.26,1.06,0.01,-1.12,1.49,-3.26,0.01,0.78,1.35,-2.87,0.96,-0.08,4.28,-0.15,-0.75,1.38,4.84,0.04,-3.77,0.61,-1.09,2.96,2.49,-1.4,-3.22,0.03,1.69,-1.65,3.2,-2.8,3.56,-4.1,-1.2,-2.84,0.09,-1.17,-0.63,-1.07,0.15,-0.63,-0.8,0.09,-0.26,0.06,3.48,2.2,-0.18 +C937,3.67,8.11,5.23,4.34,3.39,-0.23,-0.29,0.36,0.88,-0.03,-1.15,-1,2.61,-1.45,1.91,-1.15,-0.73,-4.11,-1.72,-2.85,-0.25,-0.07,-2.25,-0.03,2.44,0.13,0.38,-2.87,2.19,-1.28,-0.16,2.6,0.81,1.42,-1.01,0.33,-0.61,0.65,-1.99,-1.08,-1.3,-0.54,1.63,1.01,0.1,-1.24,3.16,-1.67,0.71,-1.72 +C938,4.72,1.77,-0.85,-1.3,-0.86,-1.02,0.42,2.35,-0.23,1.03,-0.98,1.35,0.98,1.54,-0.87,1.2,-0.68,-1.37,-0.52,0.54,-2.35,0.12,-0.9,1.4,0.87,-0.39,-0.91,1.14,-0.65,-1.42,0.94,-0.52,0.97,-1.05,-1.95,-1.2,0.06,0.42,0.89,1.07,0.22,-0.19,0.31,0.86,-0.95,1.35,-0.36,-0.63,-0.13,-0.79 +C939,1.65,-0.38,-1.95,-1.24,-3.43,-0.02,-1.65,0.74,-1.22,-0.35,1.47,-2.82,-1.71,1.06,1.68,0.88,-4.19,-1.57,0.6,-3.4,-0.23,1.73,-0.4,0.03,-1.42,3.62,-2.44,0.17,-0.48,2.78,-0.36,0.96,-1.79,-1.27,1.31,1.91,1.8,1.36,-1.23,-0.81,-0.57,-0.69,2.38,-2.05,-0.16,2.8,-0.41,1.9,0.26,-2.52 +C940,-10.9,0.6,-0.33,0.14,0.58,-0.51,0.86,1.76,-0.18,-1.22,2.14,2.7,1.68,0.72,0.96,0.36,-3.87,-0.89,1.73,1.99,-0.76,0.02,-1.11,-0.53,-1.73,-1.52,1.98,-0.28,0.74,-1.37,-0.93,-1.81,-1.22,0.4,-0.27,0.26,-0.88,-0.54,0.74,-0.35,1.43,-0.34,0.42,-0.49,0.09,-1.2,1.93,-2.66,-1.35,-1.93 +C941,4.65,0.41,-1.15,-1.38,0.1,0.27,-0.58,0.94,-0.59,-0.64,-0.25,-0.07,0.54,-1.25,-0.7,1.02,-3.03,-1.09,-1.48,2.42,-2.35,1.59,0.34,-1.38,0.49,-2.46,1.72,3.75,1.52,-0.18,-0.39,1.31,-1.92,1.45,0.91,-0.3,-1.49,2.16,-0.34,1.12,-1.73,2.4,1.95,1.38,1.04,1.4,-2.65,-0.56,2.13,-1.02 +C942,1.82,-1.91,0.42,-0.8,-3.31,1.02,-1.42,-3.32,-1.35,-1.61,3.4,-2.01,2.24,0.7,2.8,1.52,1.96,0.9,0.25,-3.7,-2.96,1.68,1.92,-0.66,2.38,-1.32,2.59,-0.81,-3.02,1.51,3.87,-1.17,0.31,-2.15,0.51,2,0.93,-0.76,0.37,-0.21,0.06,-0.87,0.22,1.46,-0.36,1.58,0.19,1.68,-1.2,0.74 +C943,-0.01,3.46,8.38,8.65,-4.69,1.83,-3.81,-1.75,-2.2,1.04,2.21,1.25,-1.51,-1.12,-0.07,2.74,2.57,-0.27,0.44,-0.26,0.44,0.61,1.47,0.33,0.11,4.18,0.86,-1.22,0.66,-1.26,-0.6,-1.44,-0.65,-0.12,1.3,0.38,2.31,-1.25,2.42,1.18,-0.67,2.17,1.26,0.65,1.04,-1.34,0.75,0.35,0.12,0.36 +C944,3.57,8.54,6.29,6.95,1.87,-0.09,-0.49,0.97,-0.8,0.01,-1.21,-0.7,-0.09,0.63,-1.17,0.99,1.07,0.41,-1.13,5.83,-1.95,0.65,2.25,3.08,-0.41,-0.21,0.6,1.14,-3.1,1.57,-0.58,4.31,0.34,4.28,3.73,2.92,1.63,-1.78,1.77,-1.96,0,-0.38,-0.57,-3.24,-0.32,2.35,-0.56,-0.78,0.78,3.51 +C945,3.13,-6.27,0.43,0.24,4.72,-0.08,-0.07,-4.9,3.82,-1.15,-1.08,-4.5,-0.68,-0.2,-0.48,-3.03,1.37,-0.88,1.05,-2.34,-1.06,-1.16,-0.17,3.6,-1.52,-0.9,0.08,-0.53,-1.25,1.85,1.69,1.95,-1.41,0.25,1.31,-2.5,3.1,-0.37,2.61,3.92,0.61,2.14,-0.69,1.07,-2.49,-3.37,-0.65,-0.87,2.24,2.81 +C946,4.82,-0.59,-0.96,-1.7,-3.02,-0.4,-1,0.21,-0.68,-0.62,1.67,0.25,1.47,0.15,1.27,-1.58,0.64,-0.11,-1,-1.36,-0.17,0.47,-1.32,1.82,0.27,0.09,1.58,0.81,-0.08,0.23,1.73,0.84,-2.11,-0.54,-1.05,-0.81,0.16,1.02,-1.75,-2.08,2.36,-0.44,-0.11,-2.96,0.95,-0.95,1.41,2.76,0.13,-1.92 +C947,2.06,6.59,5.49,4.8,1.71,0.32,-0.95,-1.56,1.23,-2.58,1.62,1.19,0.33,-1.3,1.34,-1.12,1.13,-1.08,-0.04,-0.06,3.29,-1.67,-1.98,-0.54,0.44,-1.33,-1.39,0.67,-1.19,1.25,-0.24,1.89,-2.9,-0.61,1.94,-0.34,1.06,-0.21,1.55,-0.03,-0.19,0.54,-2.64,0.15,0.86,0.3,3,1.82,-0.7,1.46 +C948,5.93,7.74,0.51,-0.09,4.24,-0.94,1.81,-0.18,-0.08,-1.19,1.74,0.47,-1.69,-1.34,1.04,3.06,1.44,2.66,0.57,0.81,-1.13,1.75,-0.09,0.86,-0.3,-1.34,2.04,-0.08,1.55,1.1,0.41,-0.18,1.47,1.02,-0.54,0.92,-1.79,0.48,0.65,1.32,-0.64,1.54,1.27,0.3,-0.27,-1.78,-0.25,-0.76,1.98,0.13 +C949,6.75,-0.58,-0.85,-1.6,8.56,-1.23,2.97,1.15,2.15,-1.37,2.25,-0.22,-0.83,-0.99,0.8,0.16,2.39,-0.53,2.15,-2.9,1.75,1.67,-1.17,1.98,-0.92,-0.44,2.18,-1.11,1.51,-0.66,0.11,0.16,-1.49,0.03,-0.6,-0.47,2.93,-1.94,0.2,-1.02,-0.35,-0.23,-0.28,-1.11,1.62,0.97,3.96,-0.87,-1.05,2.05 +C950,6.65,2.62,-1.76,-2.13,0.04,-0.62,1.21,3.02,0.48,-1.39,-1.14,-0.57,-1.21,0.75,-0.45,0.38,0.55,0,-0.16,0.49,1.5,-0.08,1.43,0.86,-3.39,-2.78,-2.42,-3.81,-1.48,-0.66,1.84,-1.3,0.49,-0.15,0.89,-1.29,-1.25,1.86,1.4,-2.23,-0.73,-0.43,2.56,1.23,0.87,-1.47,-1.55,1.96,-1.11,1.18 +C951,1.61,5.2,5.22,4.92,-1.08,0.45,-2.37,0.57,-2.21,-0.72,-1.76,1.3,0.27,-1.23,-2.02,-0.27,0.85,-0.89,-1.35,-1.46,1.04,-0.47,-2.31,0.97,1.75,-0.29,0.5,0.1,1.43,0.24,-0.86,3.24,1.79,-2.22,0.59,-3.09,0.17,-2.73,-0.84,0.68,1.18,-0.77,-0.09,0.26,1.07,-2.75,1.52,2.33,-2,0.46 +C952,5.03,-0.68,-2.32,-2.62,-2.39,-0.25,-0.94,-2.04,-0.43,2.68,-1.99,-0.86,1.78,-1.42,-0.24,0.84,1.6,-1.65,0.67,-0.32,0.72,0.15,0.42,1.96,-4.15,1.52,3.28,-0.55,2.16,-1.42,0.34,0.24,0.4,-2.5,0.33,-0.53,0.77,0.45,-1.29,0.03,1.87,-0.7,-0.31,-1.31,-1.55,2.12,2.02,-0.43,2.09,1.27 +C953,-14.72,0.2,1.39,-0.87,-0.09,-0.04,-1.48,-0.21,2.47,-0.6,-2.23,-0.65,-0.28,2.56,-0.01,0.56,-0.28,-1.51,0.25,-0.08,0.04,0.92,1.4,2.15,-2.48,2.84,0.82,3.84,0.25,0.63,1.48,0.59,-1.31,-0.9,0.71,-0.57,0.82,0.05,0.99,-0.27,2.66,1.89,-2.31,1.7,-1.09,-1.09,0.8,-1.87,2.39,-1.85 +C954,4.04,0.64,-2.01,-2.34,-3.12,-0.82,-0.87,2.31,-1.67,-3.35,1.63,2.77,0.92,1.08,0.96,-1.01,0.17,2.98,1.4,-0.64,-1.51,-0.04,-0.14,-0.61,3.77,0.79,0.18,0.03,1.75,0.31,-2.99,2.66,2.12,1.81,0.38,0.42,0.7,0.66,-0.82,1.79,0.05,0.45,0.35,-0.45,1.43,-1.93,-1.01,2.63,-2.61,2.85 +C955,3,-13.58,3.71,4.02,-1.2,-0.54,-3.86,2.79,-1.87,0.68,-0.86,-0.7,0.1,0.07,-1.64,-1.32,-0.04,-2.5,0.55,-2.88,1.72,3.06,2.4,-4.6,-2.2,3.69,-3.38,0.64,-0.58,1.48,2.28,1.43,-0.75,-2.83,-2.19,1.28,2.61,-0.15,-0.58,2.49,0.02,0.89,1.57,-0.49,-0.85,3.85,0.26,1.84,1.77,0.41 +C956,6.53,2.15,-2.44,-1.84,0.21,-0.63,0.9,2.61,2.86,0.15,-3.52,-0.8,-0.39,0.52,-3.44,0,1.22,0.27,-1.36,1.76,0.28,1.1,-0.76,1.69,-1.85,1.62,-0.19,2.02,2.33,-1.27,-1.27,-0.51,2.12,-1.37,0.28,-3.59,1.62,0.33,-0.81,1.89,0.6,0.9,-1.03,0.07,2.41,-0.8,-0.83,-1.05,-1.35,0.09 +C957,-10.2,1.51,-2.06,-3.91,3.2,4.81,-0.65,1.23,-3.3,3.27,-2.99,-3.57,-2.81,0.66,0.03,0.63,-0.84,-1.28,-3.16,0.48,-1.55,1.96,-0.66,0.92,0.49,-0.66,-0.98,-1.42,-0.15,-2.02,0,-0.89,0.4,2,-0.21,-0.07,-0.31,1.14,-0.81,-1.73,0.38,3.41,-2.89,-2.25,-1.07,-1.12,-1.21,1.24,-0.25,2.22 +C958,4.72,3,-1.92,-3.09,-0.19,-0.2,0.99,3.12,1.04,-0.8,-1.17,0.1,-0.29,2.26,-0.91,1.48,1.14,0.84,-1.07,0.02,-0.04,-2.75,-1.79,-0.9,0.07,0.29,0.53,1.29,-1.32,-0.21,-0.6,-2.06,0.75,0.3,1.64,-0.51,-0.99,-0.79,0.58,0.13,-0.68,0.14,-1.04,-0.14,-1.69,1.47,1.18,0.85,0.44,-0.75 +C959,4.12,-1.23,-0.71,-2.29,-2.73,-0.42,-1.05,0.59,1.29,1.16,0.12,-1.56,1,0.37,0.6,-0.85,-0.87,-0.45,-0.54,-0.02,-0.85,-0.72,1.44,0.84,-1.09,2.42,-0.02,0.91,0.65,1.64,0.39,-1.31,0.16,-0.11,-2.88,-1.07,2.77,0.91,-0.94,0.13,-1.12,-1.52,-1.5,0.94,-0.96,0.92,-1.12,-0.67,-1.95,-0.18 +C960,5.15,2.57,-1.37,-3.22,0.66,-0.12,1.25,1.09,2.48,-0.46,0.31,-0.6,-1.52,1.21,0.61,-0.68,1.01,1.06,0.11,1.38,-0.07,-0.56,0.69,-1.94,-0.98,2.17,-0.89,-1.4,0.28,0.14,-1.93,0.35,1.13,-0.46,0.22,-0.58,-1.01,-0.59,-0.34,-0.29,0.2,-0.53,0.87,-0.44,0.3,-1.35,0.92,-0.01,0.98,-0.55 +C961,5.33,2.24,-1.64,-2.4,-0.72,-0.27,-0.35,0.94,0.93,-0.2,-1.61,1.23,0.77,0.86,2.02,-0.02,1.22,-1.9,1.32,-0.77,-1,0.58,1.48,-0.93,0.27,0.13,-0.01,0.43,0.45,-1.91,-2.24,-1.49,-2.09,-3.7,1.62,0.59,0.7,-0.71,1.38,-0.15,-1.45,-3.08,-1.1,0.23,-0.15,-2.68,1.07,1.06,0.18,0.73 +C962,-10.68,2.8,-0.57,-3.08,2.83,-1.28,2,0.36,0.34,-0.55,1.45,2.99,0.4,-0.48,-0.88,1.53,0.84,-1.47,2.09,-0.53,1.51,-2.58,-0.24,1.54,-1.57,1.46,-2.56,2.49,-0.64,0.37,-2.15,-0.42,1.5,2.01,-0.86,1.73,1.57,0.4,-1.66,-1.28,-1.13,2.59,1.7,0.18,-0.05,0.73,-1.27,-0.42,-1.9,0.8 +C963,-10.34,-4.87,2.8,2.26,-5.97,-8.04,2.66,-1.27,0.2,2.83,-2.91,-1.94,0.36,-0.58,-1.27,0.09,2.27,0.4,-1.9,0.7,-0.14,2.17,-0.89,-2.28,-0.83,-1.39,0.19,-1.5,0.56,-1.72,0.11,-3.17,-2.64,1.01,-1.12,-0.65,1.49,-0.45,2.63,0.38,0.18,-0.83,-1.02,0.52,1.26,3.06,-1.4,-0.11,0.43,-1.37 +C964,4.04,0.28,-1.13,-1.61,-1.15,-0.35,-0.54,1.59,1.93,-0.41,-2.76,0.48,-0.68,-0.22,-3.87,0.13,0.98,1.02,-2.24,-1.73,1.67,2.03,1.15,0.45,0.15,-1.89,0.23,0.34,-0.33,4.1,-0.74,0.46,-0.18,-1.55,1.51,0.07,-0.85,2.5,2.05,0.59,-0.36,1.25,-1.73,-0.16,0.28,-0.11,-2.43,-0.85,0.7,1.89 +C965,4.03,0.03,-1.33,-2.02,-2.13,-1.15,-2.37,0.34,-0.72,0.07,-0.14,-0.39,1.75,-1.08,-2.25,0.2,0.17,1.68,0.13,0.64,-1.31,-0.29,-1.64,1.82,0.75,-0.55,2.12,0.74,0.63,-1.66,1.54,0.63,-1.75,0.57,1.97,0.83,1.49,0.92,-0.52,-1.4,0.62,-0.26,-1.74,1.87,-2.27,0.81,-1.71,1.76,-0.62,0.22 +C966,-7.7,1.35,1.98,1.29,0.22,1.77,-5.79,-1.17,8.91,-0.38,-0.06,3.91,2.8,-0.55,0.84,2.09,-2.27,-0.53,0.03,-3.91,-0.02,-0.08,1.02,1.07,4.02,0.84,-2.44,0.09,0.44,-1.48,1.31,-1.91,-1.7,2.43,2.04,1.84,-2.45,-2.54,-0.23,1.88,-0.06,-1.54,-2.23,-0.78,0.5,-4.09,-0.39,0.03,-2.59,-1.31 +C967,1.67,8.14,7.23,6.47,0.61,0.88,0.06,1.55,-2.17,1.34,0.92,1.4,-4.51,-1.1,-1.74,-0.92,-1.86,-2.24,0.04,1.14,-0.28,-4.4,-2.58,3.08,-0.46,1,-1.96,-1.3,4.21,1.61,-0.97,1.12,0.06,0.92,-1.99,0.07,2.24,-0.45,1.17,-5.23,0.37,-3.4,-0.49,2.3,-2.12,-3.89,0.73,-1.06,-1.9,-0.47 +C968,4.29,0.28,-0.56,-0.98,-3.74,1.05,-0.67,-0.61,-1.01,0.27,-1.17,-0.64,0.93,0.08,1.76,-2.15,-0.92,-2.18,-1.05,1.52,-0.22,-0.95,0.35,-1.12,2.42,0.54,-0.11,0.75,2.37,-1.16,0.18,-0.76,0.31,0.78,1.81,0.67,-2.27,-0.16,0.7,0.55,-1.5,2.61,-0.35,2.06,1.78,-1.04,-1.55,0.23,0.5,2.67 +C969,4.03,1.03,-1.66,-2.46,-1.78,-0.57,-0.96,1.4,-0.72,0.72,-0.71,0.57,-0.04,-0.76,-0.3,-0.2,0.54,-1.45,0.19,-0.43,0.36,-2,0.23,-0.01,-1.42,0.1,-0.07,-0.1,1.16,1.16,-2.39,-0.26,1.15,0.34,0.53,-0.08,0.08,1.59,-0.01,-0.64,0.2,0.04,0.41,-1.12,-2.41,1.85,1.99,-0.42,-2.37,0.35 +C970,2.53,-12.91,3.05,3.8,7.93,-0.13,-1.44,5.53,-1.62,2.11,1.22,2.06,2.11,1.51,3.03,0.33,1.49,2.24,-0.88,-3.29,0.96,0.75,-3.2,-1.51,1.38,-1.82,-2.55,-1.85,0.53,0.73,0.71,3.64,0.16,-1.62,2.24,4.91,-4.12,-5.68,2.99,1.33,-1.23,-1.7,1.24,-1.25,1.46,-0.29,0.13,0.66,0.99,-0.92 +C971,3.62,-10.73,0.46,1.54,6.81,-0.57,1.16,2.52,1.78,0.06,2.15,-3.07,-1.34,-0.97,-3.93,0.88,0.82,1.66,-2.75,-0.53,-1.99,-1.79,-1.62,-1.01,-2.56,-1.5,1.19,-0.52,-2.9,3.48,-0.13,2.89,2.84,-0.24,2.8,-2.44,0.61,-4.03,-0.11,-3.33,-1.22,2.83,-3.04,-1.36,-0.36,1.87,-1.7,-3.44,-1.6,-0.86 +C972,-14.74,-4.38,2.56,3.04,-6.06,-7.98,4.87,-0.14,-0.19,2.77,0.13,-0.19,0.22,-2.69,1.14,-2.68,-0.56,1.86,-0.93,1,-0.64,0.9,-1.01,1.84,3.51,-0.45,-2.12,-2.52,0.74,0.66,-2.3,-1.03,-0.03,-2.12,1.06,-1.17,-1,0.37,1.7,-0.29,1.93,-0.89,1.72,0.81,-0.63,0.11,1.85,-0.12,-0.33,0.91 +C973,-12.99,0.2,-1.78,-0.74,0.18,0.3,-1.15,0.1,-1.3,-2.91,1.38,1.96,1.16,2.51,-0.41,0.41,0.6,-0.51,0.18,-0.83,2.1,-1.87,1.08,3.96,0.09,-0.9,0.69,0.78,1.05,1.2,0.73,1.15,1.55,2.57,0.31,1.58,-0.69,-2.32,1.12,-1.09,-0.94,-1.56,-1.05,0.77,0.57,-0.38,1.05,-0.65,0.54,-0.27 +C974,-8.57,1.67,-2.81,-5.14,4.3,3.73,1.93,0.47,-3.07,1.3,-0.1,0.46,-0.5,-0.46,1.14,1.22,-1.06,-1.08,-3.99,-0.53,-0.9,-0.05,-0.32,1.63,0.65,0.76,0.11,-1.98,-3.36,-0.36,1.26,1.58,-0.62,-4.79,-1.42,0.12,-1.87,1.7,0.7,2.61,3.56,-1.77,-1.82,-0.64,-1.22,-3.13,1.34,1.63,-1.11,-0.06 +C975,-15.03,-0.79,0.75,0.5,-1.42,0.66,0.25,-1.36,0.66,-0.86,-0.83,0.02,1.71,0.2,2.5,-1.11,1.49,-1.32,2.95,0.4,-2.08,-1.78,0.56,-2.64,-0.86,2.16,-0.09,-0.84,0.38,-1.81,0.57,0.58,1.71,1.12,0.06,0.15,0.13,-0.02,-0.41,-0.83,2.81,1.46,1.59,0.24,1.46,-2.2,1.88,0.75,0.74,0.89 +C976,3.29,5.49,4.28,4.15,1.54,-0.4,0.49,0.29,-4.74,-2.74,-0.3,-2.82,-0.16,-1.36,3.69,-1.49,-0.14,-4.78,-1.89,3.43,-0.93,1.33,-5.08,2.47,0.02,0.42,-2.7,-0.84,-3.92,1,0.44,-2.39,-0.6,-0.93,-3.33,3.9,-0.47,-0.78,2.06,-1.65,1.38,-0.91,-3.83,-1.71,0.47,-2.18,0.98,-1.55,-0.55,-0.5 +C977,4.19,-0.07,-1.5,-1.99,-3.08,-0.91,0.31,2.48,0.58,-1.68,-2.04,-0.49,-1.35,0.9,-2.35,2.18,3.07,0.21,0.37,-1.62,-2.64,-1.44,-2.72,2.97,0.82,1.09,-3.92,-1.92,1.27,-0.69,1.5,0.38,-0.91,-1.33,3.68,-2.85,-1.7,0.08,-3.82,0.05,1.74,-0.67,0.84,0.33,1.24,2.18,-0.01,-1.95,0.96,1.17 +C978,2.76,-0.55,-1.51,-1.82,-2.49,1.93,-0.11,-0.01,-0.21,0.71,2.54,1.71,0.67,-1.67,-2.02,0.08,0.26,1.39,0.93,0.94,-0.22,-0.13,-0.81,0.31,-0.96,0.6,0.76,-1.05,-1.54,1.84,0.87,2.18,-0.13,-0.5,0.29,2.17,-1.55,-0.52,-0.41,-0.92,-0.63,0.97,-1.06,-1.23,-1.51,-1.04,1.14,-1.35,-2.26,-0.2 +C979,3.18,6.53,4.24,4.45,0.61,-2.01,0.38,1.02,-0.77,-0.89,0.3,0.59,3.31,-0.36,-0.28,-3.23,0.08,0.68,1.35,2.05,-1.85,-0.49,2.44,1.55,0.38,1.35,0.61,-0.96,-1.53,0.72,-2.39,1.59,0.68,0.1,-0.06,-2.72,1.63,2.58,0.43,0.98,-0.58,1.88,1.02,1.26,-0.78,-0.32,1.34,2.3,0.86,-0.47 +C980,4.07,-0.18,-0.15,-1.01,-2.43,0.2,-1.03,1.26,-0.53,-0.52,1.66,-1.67,0.68,-0.14,1.56,0.97,-1.84,-2.32,-0.52,-0.87,-1.92,1.26,-0.72,0.07,1.96,-2.17,-0.24,-1.37,-2.69,-0.81,1.56,-0.43,0.13,1.08,2.24,0.22,1.03,1.01,0.66,0.65,0.34,-0.78,2.21,-1.26,-0.33,-1.56,2.06,0.41,2.32,1.28 +C981,4.52,-0.05,-0.42,-2.72,-0.33,0.3,-0.84,-1.15,0.08,2.42,-1.37,1.35,-0.49,-0.29,-0.36,1.64,0.09,-0.27,-1.35,-1.28,0.49,1.13,-1.01,-0.28,-0.55,-0.25,-1.49,-1.85,1.04,1.55,-0.53,2.43,0.05,1.9,-0.2,1.9,-1.34,1,-0.72,-2.01,2.56,0.82,-2.16,0.13,-0.14,-0.66,0.46,-1.62,2.33,1.42 +C982,4.11,8.24,6.39,6.2,1.79,0.39,-1.09,0.13,-1.14,-0.52,1.78,-0.03,1.97,-1.5,-1.39,-1.16,-0.9,2.04,-1.64,0.39,0.21,-0.63,0.3,-1.05,2.57,-4.74,-1.67,2.53,0.03,-1.65,-1.15,2.83,-2.42,-0.32,-1.1,-0.22,-0.33,-0.89,-1.64,2.28,5.35,1.02,-0.84,-0.35,-1,-1.68,2.72,-0.19,-1.45,3.38 +C983,-12.7,-0.43,0.81,-1.15,-0.86,-1.7,2.62,-0.27,-0.79,-1.66,0.13,1.57,-1.22,1.53,2.46,0.29,-1.78,-0.57,4.95,-0.57,-1.71,2.89,1.65,1.74,1.03,1.73,0.13,0.81,0.61,2.13,1.69,0.5,-2.38,-1.7,2.88,1.51,-0.41,-2.85,-0.3,0.64,-0.7,-2.64,1.83,4.68,-1.01,-2.37,3.54,-0.52,-1.6,-0.1 +C984,5.06,9.16,3.17,2.82,4.79,-0.37,1.78,-0.74,0.11,-1.58,-1.26,0.34,1.72,1.93,-1.11,1.43,-2.11,0.02,0.31,-0.4,1.43,-1.31,1.01,-3.1,0.97,1.94,-0.46,-0.05,0.47,1.82,0.52,2.02,-1.63,0.04,1.1,0.14,0.83,0.75,3.81,1.97,0.71,-2.33,-1.47,0.76,-0.76,1,-0.34,2.09,-0.66,1.82 +C985,3.58,-11.55,1.04,4.02,9.02,-1.39,0.3,2.01,1.28,2.78,0.43,3.55,0.84,0.59,2.73,-2.64,-3.3,-0.38,-0.49,1.46,0.27,1.11,2.85,-2.33,3,1.22,2.23,-1.15,-0.21,-1.08,-1.03,3.04,3.13,-2.29,-1.69,-0.7,-0.5,-0.07,2.56,0.5,-0.25,0.53,-1.11,-1.82,-0.37,3.02,0.05,4.06,-1.24,0.21 +C986,4.38,2.21,-3.57,-4.15,-0.37,0.19,1.21,0.81,1.14,0.05,1.24,-0.72,-0.37,-1.84,0.64,-0.72,-1.67,-0.08,1.26,-2.75,2.78,-1.68,0.08,0.91,0.94,0.06,0.49,-1.24,0.25,0.58,1.72,-2.24,-0.22,-0.02,-3.15,-0.44,-0.01,-2.71,-3.03,1.16,0.29,0.01,-1.43,-1.76,0.49,2.23,-0.26,-2,1.17,-0.09 +C987,5.54,0.74,-2.39,-1.9,0.59,-0.48,1.48,1.36,0.88,-1.03,1,-0.13,-0.73,1.2,-0.22,-1.78,0.88,-0.17,1.24,-0.69,-1.41,-1.15,-0.31,0.85,-1,0.63,0.07,1.27,-1.49,1.92,0.64,0.17,1.08,1.05,0.43,1.34,-1.19,-0.61,-0.75,1.21,0.92,-2.06,0.6,-1.24,0.21,-1.85,-2.42,-0.7,-2.16,1.18 +C988,3.4,-1.26,-1.12,-2.56,-3.87,-1.27,-1.87,-1.29,-2.14,2.13,1.18,1.31,-0.27,-2.63,-0.12,1.82,1.07,-1.46,1.22,-0.48,1.95,0.59,-0.28,1.57,-2.71,-0.47,0.06,-0.57,-0.42,3.39,-0.82,-2.02,-0.69,1.43,0.76,1.01,-5.09,0.71,0.09,-1.3,-0.16,0.29,-0.89,0.69,-2.18,-2.48,0.49,0.43,0.62,-0.43 +C989,-11.74,-5.49,1.9,1.69,-6.46,-7.25,2.85,0.91,0.81,1.6,-0.45,2.14,-0.85,0.36,0.73,0.57,0.84,1.99,-0.46,1.5,1.39,1.45,-1.54,-3.76,0.32,0.91,-0.43,-0.53,0.52,1.48,0.43,2.54,-2.84,-3.04,-0.35,1.47,-1.51,-0.43,-0.59,2.82,1.83,0.91,-3.03,-0.06,0.43,4.35,-1.95,1.96,2.46,-1.72 +C990,-11.45,2.18,-1.65,-3.95,1.93,1.82,1.32,1.32,-1.3,1.38,0.01,-0.9,-0.04,2.61,1.32,2.5,-2.36,-0.17,-1.84,-3.3,-0.76,3.27,2.2,1.32,-0.68,0.43,2.4,-1.02,1.5,3.31,-1.99,-0.11,-1.77,-2.69,-2.29,-0.28,1.2,-1.59,-0.55,-0.19,-2.57,-0.63,-1.06,-0.99,3.66,1.37,-0.11,-0.11,-0.1,-0.87 +C991,-13.17,-3.92,1.95,0.17,-3.69,-6.41,2.81,0.32,-1.08,2.9,-0.74,-0.05,-0.41,0.72,-1.55,0.43,0.05,-0.72,2.23,-3.51,-2.06,-0.55,1.88,0.43,-0.29,-1.1,1.26,-1.3,0.6,3.18,0.4,0.11,-0.58,-0.07,3.96,-0.73,1.01,-0.11,0.14,-0.26,0.74,-0.19,-1.35,0.4,0.26,-1.63,1.31,3.53,0.16,-0.11 +C992,-6.56,3.27,-2.49,-4.49,2.89,2.25,0.87,1.55,1.26,0.98,-0.31,-0.29,0.31,-0.14,0.5,0.09,1.8,-0.75,-0.55,2.15,-1.46,1.67,0.7,1.62,1.03,-1.11,1.24,1.47,0.46,0.7,-0.42,1.02,0.88,0.46,-0.6,0.33,0.66,0.17,1.16,0.78,-0.63,0.2,0.08,-2.77,1.67,-0.23,1.15,-0.16,0.18,-0.53 +C993,4.98,-0.18,-1.37,-1.26,-1.02,-0.7,-0.93,2.48,-0.31,0.17,-1.94,0.19,0.42,0.81,-3.59,-0.01,3.23,0.99,2.08,0.76,-1.28,0.99,-0.85,-0.35,-0.4,0.91,2.74,-2.19,1.89,-1.08,-0.31,2.76,-1.47,0.5,-1.33,1.72,-2.54,0.72,-1.57,-2.29,1.2,-0.53,-0.46,0.78,-0.18,-1.06,0.45,-1.61,-0.57,-0.89 +C994,3.49,-6,0.8,1.25,5.04,0.1,1.1,-1.15,0.59,-1.77,-0.48,-0.86,-0.39,3.29,2.55,1.41,-0.59,0.91,0.45,1.44,-3.72,0.54,-2.43,-2.24,-1.54,2.47,-3.86,-0.18,-1.52,-1.2,-1.16,1.29,-1.73,-1.76,0.51,-0.86,-0.09,0.2,2.01,0.22,-0.41,-2.52,0.61,1.72,0.55,0.53,1.94,-3.9,-0.8,0.56 +C995,5.06,-3.89,0.48,0.55,2.27,0.87,-1.27,-2.47,-0.75,-1.42,-1.93,1.3,1.41,1.51,-1.46,-0.67,1.77,0.62,1.02,0.47,0.74,0.18,-1.23,-0.75,2.88,1.02,-2.33,1.2,1.85,3.63,-0.06,1.3,1.06,-2.2,1.91,-5.23,-2.24,-2.43,-4.81,-1.46,-1.55,-1.78,1.28,0.92,1.83,-0.15,-0.38,-0.37,2.41,-1.78 +C996,5.85,0.89,-0.5,-2.78,-1.34,0.99,-1.47,-1.71,0.69,-0.35,-1.55,-0.66,2.2,-3.97,2.45,0.9,0.88,0.03,-1.23,-0.39,-1.01,1.62,-0.39,1.48,-1.16,0.75,2.01,0.84,1.05,0.31,0.57,-2.36,-1.71,0.42,-0.98,3.54,-1.65,0.08,0.62,2.37,-0.23,-0.71,-2.97,-0.22,1.21,1.23,-2.24,0.55,2.34,-0.08 +C997,-11.35,1.1,-1.48,-3.7,1.1,3.06,-1.86,0.64,-1.28,0.76,-0.9,-0.28,1.25,1.01,1.7,-0.74,-0.17,-1.51,1.33,-1.43,-2.53,-0.33,0.35,1.47,0.64,0.45,0.07,0.89,-0.99,-0.6,-0.68,-0.18,-1.06,1.95,1.82,-0.17,-0.87,1.25,-0.15,0.24,1.48,-1.82,0.07,-0.57,3.68,4.35,0.68,0.4,-0.22,0.55 +C998,3.17,7.37,3.74,4.03,2.58,-0.23,0.36,0.83,0.37,0.16,-0.88,-0.71,1.3,-2.23,1.82,-1.01,2.05,1.52,0.08,0.38,0.22,1.97,1.13,-1.22,1.34,0.17,-1.01,-0.48,-1.43,0.92,0.29,2.29,0.58,1.53,-0.48,-2.37,-1.66,-0.44,-1.15,1.02,0.02,0.17,1.46,-1.18,0.36,-2.98,-1.49,4.07,0.02,2.95 +C999,2.27,-15.96,2.14,4.77,6.34,-0.86,-2.06,2,-2.59,2.73,0.93,3.4,0.36,0.56,-1.51,0.75,2.56,4.68,1.62,-0.98,-3.95,1.64,-5.8,-2.22,5.51,4.15,-0.02,1.14,0.33,-5.63,3.11,4.08,-2.66,2.64,-1.83,-0.9,-2.34,-1.82,1.83,-4.94,-0.89,-2.67,2.48,0.28,-1.17,0.92,0.93,-1.14,-2.12,2.52 +C1000,4.5,-1.44,-0.07,0.02,-4.56,-0.6,-0.42,3.29,0.73,-0.29,-0.86,0.77,0.86,1.68,-1.85,-2.2,2.71,-1.72,2.36,1.1,-2.16,-1.54,-0.55,0.81,0.48,-0.57,-1.17,0.88,-0.34,0.53,-1.01,2,-0.98,0.18,-1.52,-0.03,0.59,-0.04,-0.52,2.08,0,0.39,1.59,2.88,-1.51,0.92,1.65,2.16,-0.06,-3.51 +C1001,5.05,-0.11,-1.46,-3.31,-1.55,-0.29,-1.88,1.2,2.29,0.83,0.06,-2.32,-0.59,-0.5,5.21,-1.55,1.55,0.71,0.85,0.87,0.25,0.62,-1.04,1.04,0.41,-1.16,-0.82,-1.84,-1.58,-0.11,-0.98,-0.34,-1.15,1.34,2.43,0.59,0.11,-4.12,-0.49,3.35,0.74,0.65,-3.07,-2.12,-1.18,-3.04,0.41,2.14,1.84,-0.82 +C1002,-13.33,1.02,0.52,-1.22,0.15,0.71,-2.1,0.18,-1.2,-3.29,0.36,2.54,0.28,-2.54,-1.45,-0.02,0.58,2.66,-0.65,-1.04,-1.31,1.12,0.34,0.06,1.41,-2.01,0.06,-0.73,0.85,1.51,-0.92,-1.45,2.24,0.28,0.13,-1.43,-1.27,-0.66,-1.79,-1.07,1.09,-1.7,-1.11,2.7,0.1,-1.58,-0.96,-2,0.7,-1.56 +C1003,-9.41,2.29,-1.71,-5.02,2.31,3.14,-1.58,-0.52,-0.48,-2.18,-1.02,0.1,-0.06,-0.16,-2.29,0.09,-1.77,1.35,-1.18,0.19,-0.89,-2.34,1.33,1.68,2.57,-0.64,0.16,1.49,-0.79,1.45,0.59,-0.97,0.67,0.21,-0.75,-1.78,-0.56,0.7,0.07,-1.85,3.93,-0.46,-2.77,0.31,-0.02,-1.14,0.11,-0.76,3.12,-1.5 +C1004,2.86,0.49,-0.47,-2.41,1.26,-1.25,1.52,-0.38,0.82,-0.07,1.84,-0.43,1.14,-2.49,-0.7,-0.39,0.73,0.83,-1.64,-2.06,-0.35,2.49,-2.54,2.33,0.43,3.39,0.63,4.52,-1.44,3.42,-0.11,-1.77,1.93,-0.43,-2.11,-1.71,-0.24,-0.65,-2.28,0.61,0.9,1.69,-0.43,0.87,1.28,1.55,-2.27,-0.65,1.37,0.09 +C1005,5.49,0.61,-1.06,-2.37,-0.42,0.52,-0.46,4.06,-0.96,-0.2,0.18,-0.47,-1.46,3.15,1.63,-1.42,-1.54,0.76,-1.06,0.39,-1.23,-1.06,0.3,-1.93,-2.37,2.38,1.45,1.66,1.49,-0.39,0.48,-0.3,1.32,-0.32,-0.14,0.93,-0.92,1.94,1.06,0.03,-0.29,-1.09,0.5,-2.09,1.11,-0.09,2.07,1.89,1.62,-1.44 +C1006,2.55,8.78,6.71,6.3,0.41,-0.05,-1.52,-0.67,-3.98,-2.48,1.12,1.84,0.28,1.36,0.07,0.48,-0.96,1.97,-1.82,-2.38,1.8,3.21,0.04,-4.62,-1.21,-1.8,-0.25,0.3,0.08,-1.04,-2.05,0.23,1.83,-0.26,1.23,-2.11,-2.17,-0.31,1.36,2.97,-0.67,-1.21,-0.09,-0.73,-0.53,1.11,1.49,0.71,-0.1,0.17 +C1007,5.02,1.62,-2.68,-3.31,-0.86,-0.02,0.43,1.91,1.1,0.74,2.33,-1.3,-0.14,-1.43,-1.4,-1.26,-3.72,0.26,0.57,1.69,1.64,2.4,1.48,-0.14,-0.58,0.69,0.3,-0.85,1.86,-0.83,1.42,1.19,2.76,-1.65,0.07,-1.78,-0.12,-1.58,2.23,-1,0.92,0.81,2.49,-0.58,2.02,0.81,-1.15,-1.73,-2.13,0.38 +C1008,-12.85,-1.58,1.31,1.69,-1.44,-4.91,2.75,-0.9,0.48,-1.69,0.06,1.61,-1.4,0.36,1.04,-0.03,0.83,-0.17,0.67,-0.47,-2.94,1.4,1.07,0.05,0.77,2.48,-0.56,-1.95,1.16,0.06,0.29,-0.55,0.61,0.25,-1.83,-0.49,-1.93,2.31,-1.35,-0.2,1.6,2.83,-2.63,-0.19,1.49,-0.32,1.19,-0.43,-2.41,0.36 +C1009,4.93,1.53,-1.19,-2.34,-1.79,-0.86,-0.2,2,0.94,-0.8,-0.21,0.42,-0.18,-0.31,1.3,-1.48,1.14,-0.7,0.35,0.05,-0.72,-0.18,-0.81,-1.34,-0.45,0.04,-1.07,0.7,0.76,0.51,-0.3,-0.28,1.7,3.61,1.38,-1.87,-1.97,1.62,-0.11,1.21,-0.13,2.02,-0.36,-0.54,1.21,2.68,-1.07,-1.17,-0.03,0.55 +C1010,4.57,-3.5,-1.04,-0.76,0.76,1.26,-0.18,-5.58,0.28,-0.02,-0.48,-0.8,1.25,-0.25,-0.32,-0.49,-1.43,-1.82,0.45,2.69,0.17,0.49,-0.06,1.73,-0.15,0.8,-2.08,0.38,-1.99,-0.26,-0.19,-3.27,-1.2,-0.53,2.56,1.8,-0.49,-0.48,1.59,1.86,2.28,0.71,1.23,1.21,-0.42,-2.45,-1.28,-0.45,1.36,-0.72 +C1011,1.37,-13.14,3.98,5.47,4.86,-0.68,-1.28,4.02,-0.82,0.66,2.64,-3.73,-0.11,0.62,-0.27,-0.69,3.24,1.75,1,0.17,-2.14,-3.67,-1.18,0.56,-1.18,1.13,-2.25,1.26,-2.75,2.43,0.48,-2.07,1.91,0.54,-6.71,3.43,4.2,-4.73,1.23,-1.33,-4.11,0.46,0.38,0.91,4.45,2.17,0.02,-1.29,5.69,2.38 +C1012,3.39,-3.3,-0.74,0.67,2.79,0.93,0.12,-4.72,4.01,-0.72,1.18,-1.89,1.14,1.4,2.95,0.15,-1.63,-2.57,2.05,1.31,1.16,1.25,-1.71,-2.31,1.83,-1.54,0.07,0.69,0.55,-2.89,0.9,-2.1,1.07,4.87,0.75,4.84,-0.92,1.65,-0.4,0.05,-0.57,0.1,-0.15,0.47,2.39,-0.05,3.32,0.48,1.56,-1.24 +C1013,3.64,-4.08,-0.1,0.23,2.17,-0.05,-0.87,-2.39,-0.11,-3.02,-3.67,1.78,-2.33,2.99,1.87,-0.46,1.87,-0.98,3.73,1.85,3.52,-2.53,-0.94,-0.7,1.47,-0.33,0.35,2.63,-0.92,1.84,-2.01,1.94,3.6,-0.71,-2.03,-2.45,1.57,0.81,-1.28,-1.36,1.24,0.9,1.07,-0.8,0.9,1.82,2.22,-0.55,-0.28,-1.01 +C1014,1.96,6.94,4.28,4.81,2.08,0.59,-0.21,0.67,-0.91,-2.01,0.23,-1.17,0.47,-1.11,-2.4,2.25,2.12,1.16,0.06,-0.44,0.33,0.16,1.03,-2.78,-1.76,-1.25,0.67,-1,1.65,0.5,2.43,1.52,0.38,-3.13,0.97,1.39,-1.74,-0.58,-2.27,-0.88,-0.45,-1,2.36,-0.77,2.45,0.99,-1.19,0.3,1.67,-0.17 +C1015,3.56,0.6,-0.46,-0.76,-1.7,1.05,-2.1,1.94,1.02,1.02,-1.02,-0.72,-0.25,2.42,-0.63,4.05,0.57,2.05,-2.82,-0.95,-3.42,0.45,0.86,-0.47,-0.51,-1.84,3.48,-0.37,1.87,1.01,1.89,-0.27,0.98,-2.78,3.46,-2.61,2.15,1.34,-2.23,2.86,-1.69,-0.2,-0.62,0.02,-0.9,-1.53,-0.83,0.68,0.45,-1.47 +C1016,4.52,1.21,-0.91,-2.44,-1.74,-1.12,-0.72,1.2,0.02,-0.72,-2.18,1.79,-2.06,1.16,-1.63,0.31,0.82,-0.13,2.05,-1.84,0.69,0.53,-0.18,0.33,-0.54,1.44,-1.31,0.34,-1.26,-2.3,1.25,-0.17,-1.16,1.84,0.35,-0.2,0.4,0.44,-1.93,2.07,-2.38,-1.05,0.9,-0.46,1.24,0.18,0.51,1.13,0.01,2 +C1017,2.48,7.09,6.34,5.35,-1.21,0.83,-1.37,-0.21,1.81,2.26,0.06,1.18,-2.22,0.39,0.84,-1.9,1.28,-1.04,0.83,-1.76,0.21,-2.24,-1.25,-1,-0.3,0.75,-3.38,0.5,0.57,-1.72,-0.43,1.33,1.59,-3.42,-1.23,1.4,0.18,-0.73,0.06,-2.24,0.23,-0.57,-1.19,-1.34,0.79,-1.26,0.15,-0.95,-2.76,0.72 +C1018,-15.06,-2.16,1.08,-0.23,-0.29,2.02,-4.03,-0.02,-1.3,-2.77,0.28,0.82,-0.54,2.65,-2.68,0.33,2.01,0.25,-0.86,1.43,-0.28,-1.74,-0.87,-0.56,-2.38,-0.88,-2.54,-0.88,-1.42,1.7,-1.69,-0.52,0.1,1.61,3.35,1.18,0.26,-0.2,0.84,-1.85,1.68,0.44,-2.87,0.95,0.77,1.14,0.5,-0.86,-1.29,1.86 +C1019,-10.21,3.38,-1.62,-3.97,4.27,0.02,3,0.17,0.56,0.47,0.68,2.81,-2.1,-3.04,1.55,0.9,-1.29,-0.05,-0.66,0.3,-1.55,-2.08,-1.39,-0.69,0.97,0.23,0.15,1.54,0.94,1.63,0.17,1.06,-0.09,2.77,0.79,0.07,0.41,-1.37,-3.56,1.4,-2.28,1.4,0.07,-0.5,2.29,-0.06,0.3,-0.9,0.22,-0.01 +C1020,3.91,-7.76,1.24,3.47,3.16,-0.37,0.77,-1.8,0.4,0.53,0.95,-5.31,0.1,3.38,-0.81,2.21,-2.85,2.07,1.79,-0.65,1.15,-3.88,1.12,-2.41,0.37,0.43,2.28,-2.52,-0.41,0.21,1.59,-0.55,2.99,0.61,-3.16,3.57,-0.94,2.84,-2.28,-2.31,1.57,0.74,0.98,-2.3,-1.71,0.2,-1.19,-2.94,0.18,2.72 +C1021,-12.03,1.08,-1.58,-4.67,3.54,3.64,-0.71,0.41,0.62,3.25,-0.64,-0.82,0.51,1.27,0.88,0.68,0.17,-1.41,-0.16,0.82,1.28,0.01,-0.79,-0.4,-0.32,4.44,-0.04,1.79,-0.41,-1.94,-0.53,-2.35,0.32,-0.15,0.48,1.51,1.57,-1.06,-0.66,-2.14,-2.97,1.47,1.25,-1.17,-1.65,0.06,2.15,-0.21,0.06,-0.67 +C1022,-6.94,1.32,-0.52,-2.14,1.32,3.6,-3.59,1.09,-0.58,-0.21,0.55,-0.06,0.16,-1.81,-1.62,0.41,-0.53,1.8,0.55,0.75,-1.24,1.57,1.09,-0.57,2.14,2.21,-0.84,-1.39,1.08,1.17,-0.71,-1.72,-1.43,-1,0.97,-0.2,0.49,1.2,-0.4,-0.28,-0.92,0.69,1.96,0.18,-1.37,-1.57,1.38,-0.87,1.52,0.5 +C1023,4.16,-0.6,-1.95,-2.17,-0.37,0.67,-0.24,-1,-0.85,1.27,-0.62,4.48,-0.78,-1.63,-0.27,-0.99,-1.37,0.87,0.06,1.4,0.2,-2.83,-0.45,-2.25,0.27,-1.88,-2.5,-0.71,-2.37,0.43,1.22,0.65,0.55,0.44,-0.67,0.82,0.34,2.3,-1.68,-0.88,-2.13,0.56,2.97,2.17,0.34,-0.07,0.64,-0.43,0.51,-0.98 +C1024,4.46,0.01,-1.55,-2.18,-1.9,-0.44,0.48,0.82,-0.26,0.12,-0.75,1.41,-0.95,1.03,2.99,-0.14,-0.55,-1.75,-1.86,0.15,-2.21,-1.53,1.18,-0.89,1.15,2.3,1.59,1.18,-0.4,1.21,1.25,2.59,0.18,1.29,1.28,-0.65,1.77,-0.58,-0.51,-0.88,-0.84,-1.65,1.25,-0.03,0.95,2.06,-1.53,-0.72,-1.17,-0.98 +C1025,4.56,0.43,-0.84,-2.87,-2.42,-0.26,0.73,0.49,-0.03,-0.45,-0.69,0.88,-0.89,0.49,-0.96,1.8,-0.62,-0.15,1.34,-0.06,-0.63,-2.46,-0.47,1.43,0.24,0.59,-0.94,-0.85,-1.24,0.86,3.99,-0.84,0.25,1.53,0.39,3.32,-1.41,2.56,0.31,-0.6,1.39,3.48,1.03,-0.79,1.83,0.06,0.75,0.71,-1.56,2.26 +C1026,4.56,-7.43,1.59,1.89,3.65,-0.84,-0.86,-0.81,-0.47,0.16,0.9,-3.27,1.56,-1.67,-8.19,-1,0.74,-1.1,2.85,0.32,2.93,0.92,0.91,0.64,-1.73,3.64,-0.8,-3.47,2.31,-1.74,-1.6,5.42,-2.26,0.49,-0.21,0.42,2.32,2.94,-4.38,-2.14,-1.09,3.76,-1.7,0.22,0.44,-3.63,-0.97,0.45,0.88,-3.03 +C1027,2.92,7.4,1.36,2.38,5.11,0.64,0.19,-0.77,-0.75,0.98,-0.41,0.12,-1.6,0.35,2.33,1.52,-0.98,0.23,2.59,-1.2,-1.63,2.07,-0.9,-2.04,-0.57,1.9,1.25,2.58,2.54,1.17,-0.86,-1.56,-2.89,-1.33,2.11,-0.56,1.01,1.03,0.72,-2.59,0.36,2.89,-1.13,-0.28,-0.54,-0.73,-0.73,-0.99,2.36,-3.37 +C1028,3.5,-0.49,-0.73,-2.99,-1.74,0.01,0.43,2.04,0.16,-0.67,-2.19,-0.7,0.81,-0.22,1.5,-0.07,1.46,-0.59,-0.65,1.75,-2.98,0.82,0.06,0.87,3.81,-2.29,1.57,2.12,-0.97,-1.26,-0.59,1.65,-1.97,1,0.17,-3.03,-1.05,0.51,1.32,-1.88,4.16,1.95,2.9,-0.11,1.11,1.8,1.37,-1.74,-1.21,-0.58 +C1029,4.8,0.37,-0.3,-2.15,-1.73,0.52,0.05,-1.18,1.84,-2.46,1.54,0.94,1.05,-1.18,-0.83,-3.57,0.24,3.91,-1.54,-2.16,0.35,0.87,0.98,0.18,1.51,3.4,-2.57,6.04,0.31,-0.92,-2.58,-2.64,0.01,-0.77,-1.43,1.12,1.69,0.54,-2.87,1.99,-0.97,-0.87,1.8,3.28,1.38,-0.08,1.77,-0.79,0.22,-0.76 +C1030,4.39,1.48,-0.89,-2.11,-1.92,-1.63,-0.43,1.69,1.22,0.76,-2.78,0.24,-0.91,2.01,-3.79,-2.34,-0.09,-2.46,-0.15,0.8,0.33,1.5,0.77,1.76,-2.06,1.06,-1.64,2.14,-0.35,-0.52,1.46,-2.11,2.01,1.97,-3.06,1.06,-1.2,-1.82,-3.09,0.28,2.8,-0.27,0.45,2.26,1.26,1,-0.08,1.43,1.68,3.12 +C1031,5.22,-0.81,-0.55,-2.59,-2.98,-0.29,-1.7,2.07,-1.65,-1.54,0.39,1.61,1.49,2.93,-0.71,-0.55,1.37,0.41,2.12,-0.83,-1.68,1.21,-1.59,1.96,2.16,2.93,0.45,0.02,-4.13,1.41,0.89,-1.49,-1.13,0.38,-0.19,1.86,-0.42,-0.35,2.86,0.53,0.89,-1.97,-0.14,0.46,-2.82,-0.48,0.65,-2.26,0.55,-0.73 +C1032,-7.21,1.79,-2.42,-3.62,3.87,1.39,0.94,0.65,-3.4,-0.85,-2.33,0.15,-0.68,-3.66,-3.52,-2.63,-0.46,-0.44,0.29,-1.02,0.09,3.41,3.67,1.68,4.99,-0.95,-2.25,-1.14,0.59,-1.08,0.05,1.02,2.64,-0.17,-0.15,1.74,-1.26,-2.9,-1.47,-0.3,1.22,0.68,2.9,1.53,1.65,0.85,-1.13,-0.02,1.27,-0.43 +C1033,-10.8,0.73,-0.25,-0.82,1.06,1.08,-0.18,-0.43,-1.72,-1.1,2.84,0.92,-2.64,0.57,0.94,-2.8,0.54,-1.2,-1.38,1.26,-1.49,1.03,-2.92,1.17,-0.55,3.05,1.44,-0.86,1.21,0.92,1.18,-0.83,1.09,-1.28,-3.29,0.23,0.54,0.34,-2.05,-2.47,0.92,-0.87,0.01,-1.58,-1.37,-0.09,0.07,3.03,-0.13,-2.36 +C1034,5.47,0.89,-1.28,-2.96,-0.44,-0.59,1.24,2.66,1.46,-0.18,0.35,1.76,-2.28,2.67,-0.72,-2.57,1.98,-0.87,-0.14,0.83,-1.21,2.21,0.27,-2.6,0.71,0.4,-0.25,-0.5,0.19,-1.5,1.07,1.03,-0.88,0.33,-2.05,0.28,-2.25,-1.94,-1.31,-1.09,-1.18,-1.26,1.63,0.41,1.02,-0.49,1.53,-2.77,1.11,2.07 +C1035,4.35,2.12,-1.51,-2.31,-0.28,0.32,2.39,1.8,0.24,0.92,-0.29,-0.87,1.25,1.51,0.18,0.51,-1.49,1.66,-0.45,-0.33,0.14,1.31,0.45,0.48,0.85,1.95,-1.62,-0.83,1.15,-0.78,2.54,0.31,0.42,-1.04,0.01,0.29,0.68,-0.49,-0.12,0.57,0.71,0.63,-0.19,-0.36,1.51,-0.69,-0.93,-0.36,0.01,-0.97 +C1036,-15.04,-1.85,3.8,2.68,-2.36,-5.46,2.12,-0.7,-0.81,-1.48,-0.81,2.48,-0.14,-0.42,0.85,-1.12,-0.29,0.95,-0.57,0.84,1.88,-1.96,-1.25,1.44,-1.79,1.08,1.37,-0.99,-3.24,-0.65,-1.47,0.46,1.64,1.66,1.76,-1.03,0.51,0.47,0.06,0.76,-0.29,-1.81,-0.47,-0.98,-0.6,-1.2,0.22,-1.51,1.24,0.51 +C1037,4.63,0.99,-1.73,-2.48,-1.01,-1.15,0.35,1.86,0.11,-0.07,-0.86,-1.26,-1.33,-0.07,1.48,-0.91,-0.75,0.01,0.48,0.95,0.16,0.51,0.54,0.69,-0.28,0,0.51,2.39,1.47,1.28,1.09,0.13,2.03,-1.08,2.29,0.12,2.84,0.72,-1.23,-0.27,0.33,-1.15,-0.54,-2.91,0.76,0.81,-0.7,-1.5,1.28,-1.32 +C1038,3.29,-7.11,2.71,3.51,1.63,-0.44,-0.86,-4.88,2.03,-3.06,1.05,-5.29,2.22,1.54,-2.53,1.02,0.89,-2.73,4.53,-2.23,0.79,-2.01,1.19,-1.69,-0.9,1.11,-2.08,1.35,3.76,-2.73,1.33,-0.21,4.21,-0.26,3.97,-0.2,-0.39,-0.42,-1.72,-1.04,1.88,-3.76,-1.28,4.38,0.26,0.21,0.1,1.73,0.03,2.91 +C1039,-8.37,0.77,-1.82,-2.93,2.69,2.7,0.77,1.3,-1.91,1.8,-0.01,-0.16,1.3,-0.77,-1.12,0.85,0.11,-0.68,1.27,-1.14,-0.74,1.11,0.21,-2.41,0.6,0.47,-0.37,-0.04,-0.32,0,-0.79,-0.29,0.55,0.85,-0.26,-1.3,2.68,0.51,1.04,-0.03,0.65,1.52,1.03,0.18,-0.89,0.47,-2.89,0.67,-0.47,1.56 +C1040,-6.45,2.41,-2.9,-5.53,4.35,2.17,1.29,-0.92,-2.07,4.45,0.3,-2.09,-1.04,-0.35,-0.82,0.58,-1.32,1.61,-4.3,0.15,1.39,1.68,0.62,1.13,-0.41,2.53,-0.18,0.57,-1.93,3.35,-1.21,0.72,0.15,0.28,1,-1.82,-0.88,-0.03,0.73,-1.61,-1.08,-0.93,-0.08,0.75,-1.92,1.71,-0.12,1.54,0.34,-1.59 +C1041,4.01,0.84,-2.16,-2.2,-1.28,-0.7,-0.01,0.41,0.96,1.37,0.27,1.18,0.48,-1.31,-0.37,-0.99,1.6,-0.9,0.3,0.98,-0.6,-1.06,0.27,1.74,-1.02,0.28,-0.5,-0.76,0.38,1.15,0.32,0.07,0.15,-0.44,-0.29,-0.74,0.98,0.2,-0.2,1.15,1.01,0.59,0.21,-1.41,1.3,-0.51,0.92,-0.01,-0.11,2 +C1042,-14.11,0.37,-0.33,-1.94,0.42,2.61,-0.13,-0.5,2.16,-0.12,-0.78,2.06,-1.33,0.12,-1.16,1.96,-0.53,1.04,1.65,-2.31,-1.89,-1.6,0.94,1.6,1.36,2.44,-1.1,1.23,-0.17,0.33,-4.43,1.22,-0.06,1.25,1.2,1.59,0.57,1.54,-1.6,-2.06,0.69,-0.15,-2.71,-0.2,0.38,-0.13,-0.38,2.42,0.08,1.18 +C1043,3.81,9.02,5.53,3.8,4.16,-0.48,-0.58,1.26,-1.75,-2.65,0.9,-0.41,0.91,-0.42,-0.27,-1.54,-2.65,0.37,1.49,3.72,-1.28,-3.49,-2.18,-1.97,3.04,-0.56,-0.7,-1.04,3.14,1.25,-2.8,-1.08,0.66,-0.35,-1.85,1.87,0.6,-0.18,-2.37,0.4,-2.5,-0.09,-2.6,-3.27,-1.14,-1.21,-1.31,0.47,0.72,3.43 +C1044,4.11,-0.92,-1.62,-2,-3.25,-0.22,-1.35,1.14,-1.85,2.78,0.69,-1.37,2.46,0.86,-0.31,-0.92,0.13,0.27,0.77,0.97,-0.4,-3.64,0.14,3.68,1.79,-0.82,1.51,1.91,-0.29,-1.81,-0.39,-1.57,-1.12,-0.42,-2.38,1.14,-1.48,0.04,1.58,0.49,0.08,-1,-0.34,0.32,-0.99,1.61,-0.8,-0.04,-1.01,0.33 +C1045,4.71,1.31,-1.34,-1.85,-0.71,-0.11,0.5,2.31,0.82,0.44,0.03,0.22,0.92,-0.34,0.68,-0.83,1.16,1.25,-0.27,1.05,-2.46,1.49,-1.01,0.45,-0.35,0.46,-1.28,0.15,0.03,2.99,-1.02,0.28,1.03,0.55,0.99,1.47,-1.97,1.02,1.9,1.22,2.07,1.96,-0.24,-0.29,-0.57,0.11,-0.12,2.38,-0.9,-1.18 +C1046,-2.87,6.44,-1.3,-2.86,5.05,1.29,1.64,-0.7,-0.45,0.11,1.45,0.5,-0.8,-0.91,1.35,-1.42,-1.36,0.49,-0.68,-1.19,-0.16,-1.81,-0.33,0.38,1.54,-0.49,1.94,2.2,-0.66,-1.18,1.21,1.21,-0.09,-0.53,-0.04,1.66,1.24,2.02,-0.43,-0.01,-1.13,-0.76,-1.67,0.65,-1.96,-0.03,-0.95,1.41,0.71,-0.23 +C1047,3.93,1.26,-2.48,-3.53,0.9,-0.08,0.7,-2.44,-0.27,1.07,0.01,1.83,0.04,-3.63,1.48,-0.57,-2.64,-1.61,-0.91,0.4,-1.07,-2.22,0.2,0.25,0.36,-0.17,1.49,0.11,0.32,1.39,0.92,2.16,-1.94,0.69,1.35,1.66,-0.91,-1.27,-2.92,-0.56,-1.31,2.64,-0.72,1.99,0.76,0.68,-2.68,0.79,0.73,0.99 +C1048,-12.11,-1.72,2.21,0.64,-2.82,-4.46,1.09,-0.37,0.42,-0.04,1.32,0.82,1.33,-0.2,-1.76,-0.74,0.33,0.9,0.05,0.64,0.17,-1.61,-1.58,2.23,0.85,-0.12,-1.77,3.31,0.84,-0.85,2.52,0.57,1.37,-0.23,-1.4,-1.38,-1.67,0.49,1.02,1.57,1.05,-0.3,0.12,0.96,-0.57,-1.99,-0.62,1.95,0.38,0.33 +C1049,-7.33,3.32,-1.61,-4.33,3.31,2.39,0.35,-0.6,-1.08,0.29,0.7,-0.48,-0.11,-0.36,0.89,1.53,0.13,-0.14,-0.51,-0.02,0.8,0.46,0.12,0.79,0.14,0.13,0.99,0.68,-0.66,-2.17,-0.71,-0.88,-0.44,-0.79,1.52,0.71,-1.16,0.26,-0.68,0,-1.32,0.52,-0.78,-0.43,2.6,1.03,-0.1,-0.06,1.4,-0.22 +C1050,-11.35,2.06,-0.71,-3.39,3.08,5.13,-2.56,-0.34,-0.58,1.88,-2.87,0.33,-1,-1.45,-0.7,-0.31,0.44,1.08,1.3,1.98,-0.24,-1.32,0.94,-0.48,-2.12,4.41,-0.06,-2.04,0.51,-2.1,0.1,0.62,2.85,0.06,-0.33,-3.51,0.78,-1.54,-0.26,1.57,0.17,-2.72,-0.33,0.96,-2.09,3.81,-3.37,1,3.16,-1.57 +C1051,4.53,-0.85,-1.58,-2.49,-3.67,-0.67,-2.03,1.09,-1.85,-0.12,-1.28,1.5,1.1,-0.46,-0.27,-0.42,-0.42,-1.36,-0.65,-1.32,2.21,-1.45,2.76,2.07,1.63,1.52,-1.09,-1.43,-0.66,1.57,2.51,-1.13,2.71,-0.06,0.01,1.78,-0.39,-1.49,-0.97,-0.28,2.25,0.01,-0.54,-2.06,0.74,-1.87,-1.25,0.66,-0.77,0.54 +C1052,4.43,1.06,-1.32,-2.76,-0.74,0.45,-0.21,1.95,-1.74,-1.81,-0.07,-0.23,0.9,0.49,-0.93,-0.86,-1.71,2.24,2.02,1.77,2.14,0.15,1.28,1.06,0.22,1.65,-0.93,2.21,0.98,-1.02,1.33,-2.17,-2.27,2.06,0.69,2.12,-0.21,2.49,0.27,-4.51,0.89,-0.6,-2.04,-0.63,-0.06,1.34,2.47,0.71,-1.81,-0.71 +C1053,3.5,7.96,3.18,4.37,2.84,-1.67,0.46,-0.23,0.74,-1.06,1.18,-0.65,-1.36,-1.5,2.09,1.41,-0.74,-0.42,-0.85,1.55,0,-1.26,2.14,-0.38,2.31,-1.28,-0.64,-1.38,1.1,-0.94,1.41,-0.39,-0.58,1.21,0.59,-1.03,0.33,-2.7,-0.35,-0.71,-0.73,2.02,-2.56,-1.37,-0.57,0.12,1.64,2.59,0.23,-0.01 +C1054,2.74,8.5,4.6,5.43,3.34,-0.24,-0.36,0.43,-2.54,0.7,-2.93,1.43,0.84,-3.15,3.22,1.15,1.37,-3.24,-4.08,1.27,-2.57,-0.61,-3.37,-0.89,1.21,1.03,-2.3,-1.01,0.06,4.06,0.96,-1.62,1.88,0.51,0.59,0.77,2.51,1.38,1.83,-1.58,1.74,0.28,-0.08,0.22,-1.22,-0.99,0.32,-0.04,1.41,-1.99 +C1055,-12.2,0.47,-1.75,-2.84,1.87,1.98,-0.98,0.66,-1.89,-0.42,1.84,1.89,2.53,-0.64,-2.22,-1.13,0.52,-2.79,1.17,0.96,2.13,1.35,-0.68,0.84,2.15,0.18,1.01,2.75,1.29,0.06,0.02,-2.08,-0.33,-3.12,0.61,1.55,-0.72,3.68,-0.31,2.91,1.06,0.39,0.32,0.96,1.6,-0.04,-3.37,1.23,-0.19,-1.37 +C1056,4.3,0.69,0.26,-1.25,-1.88,0.01,-0.69,0.71,-1.62,0.34,1.68,-1.59,0.49,-0.72,0.28,1.41,3.42,-0.53,1.82,0.41,-0.49,0.62,-0.37,0.07,-0.95,-0.44,-2.08,-1.37,0.59,1.26,0.71,1.21,1.55,1.14,-2.81,0.04,0.77,0.39,-0.87,-0.19,-1.21,0.51,-1.96,2.18,-2.74,0.69,-0.86,1.02,-1.74,-1.15 +C1057,-10.48,0.6,-0.76,-2.13,2.32,3.48,-0.02,-0.24,-0.86,1.69,-0.25,0.15,0.44,-0.92,-2.3,0.49,-1.17,2.13,-0.3,1.37,0.5,-0.57,-0.76,-0.18,1.48,-0.42,2.54,0.4,0.06,-0.97,2.05,-0.24,1.72,-0.53,1.51,1,-1.98,-2.07,-0.88,-0.97,1.01,-0.16,-0.51,-1.61,0.53,-0.32,1.76,-3.07,1.53,-1.09 +C1058,2.54,7.24,6.22,7.12,1,0.02,-1.75,0.26,1.53,-2.86,-1.57,-0.81,4.33,-1.24,1.42,-2.99,-0.37,-0.65,0.12,4.3,-0.03,2.11,3.02,-0.32,-2.7,0.98,0.8,3.75,-2.55,0.45,2.67,-1.33,0.31,3.04,2.9,-1.94,0.11,2.44,0.66,0.91,0.53,0.89,1.91,2.63,0.1,0.31,0.18,2.74,1.17,-0.71 +C1059,5.32,1.11,-0.43,-2.13,-1.18,0.1,-0.05,-0.41,1.35,-0.15,-0.36,-0.32,-1.71,-1.23,-2.27,-0.07,4.89,-0.57,0.16,-0.51,-0.81,-0.48,2.86,0.18,2.2,-0.75,-1.59,1.1,-0.09,0.47,-1.21,-1.15,0.32,-1.17,0.01,3.07,-1.97,2.6,1.28,-1.55,0.92,-1.52,0.34,2.07,-0.8,2.55,0.36,0.93,0.24,0.83 +C1060,-3.34,-8.28,13.47,15.25,-24.23,31.91,26.29,2.7,1.87,-0.41,-1.66,1.56,1.44,-2.34,1.59,1.92,-0.82,2.76,-3,-0.6,2.98,-2.36,-1.71,-1.52,1.82,2.26,-0.37,-0.08,1.97,1.03,0.77,1.15,-0.58,1.34,2.2,1.21,1.18,0.3,0.03,1.04,-0.88,2.07,-1.16,-1.75,1.72,-1.34,-1.41,-3.12,-0.82,-1.82 +C1061,3.25,-1.51,0.19,-1.4,-4.43,-0.56,-2.21,0.64,-0.78,0.97,0.21,-1.46,1.13,1.99,-0.65,-0.02,-0.94,0.05,0.95,0.16,-0.19,2.46,-1.51,0.59,0.82,3.01,2.43,1.42,-0.55,0.45,0.38,0.27,0,-1.02,-1.06,-0.52,-1.42,-1.39,0.22,-0.71,-1.75,-2.74,2.11,-0.31,0.15,-1.18,-0.36,1.39,-1.07,-1.35 +C1062,3.04,-0.39,-1.19,-2.6,-1.25,0.84,0.01,-0.97,0.47,0.85,1.54,1.4,-1.6,-1.63,0.52,-0.91,-2.22,-0.38,2.35,-0.07,-1.26,1.03,-1.5,-2.06,-0.04,1.15,1.25,1.44,0.02,0.53,-1.67,1.95,0.78,1.32,0.6,-1.01,-0.29,1.38,-0.96,2.04,1.71,-0.3,2.28,0.35,-0.45,-0.25,-0.33,-0.49,-2.43,2.09 +C1063,3.95,0.22,-2.67,-1.46,-0.29,-1.34,0.9,-1.21,1,2.46,-1.02,0.98,0.78,-0.16,-2.11,-0.65,0.75,1.65,0.63,0.21,1.53,-0.9,-0.8,-0.88,0.06,-1.56,0.53,0,-1.03,0.43,0.92,0.28,0.92,1.17,2.14,-0.56,1.93,-0.82,0.88,-0.82,0.11,1.13,-1.07,1.31,-2.1,-0.54,-0.89,0.1,-0.66,0.96 +C1064,5.9,0.97,-1.98,-2.56,4.23,-0.01,1.62,-0.36,1.54,-1.49,0.37,-0.16,-0.61,2.68,-2.67,0.52,2.49,0.89,1.02,0.7,1.84,-0.01,-0.56,-0.61,-0.8,-1.4,-1.4,1.89,0.89,-0.58,-1.03,-0.34,0.04,-0.27,0.2,1.01,-0.46,-1.77,0.79,-0.87,0.25,-1.74,0.26,-1.14,-2.16,0.7,1.07,-0.31,-1.96,-0.13 +C1065,2.93,7.13,4.22,4.1,1.22,-0.19,0.12,0.46,-0.68,1.15,-2.77,-0.49,0.66,0.51,1.03,0.12,-1.35,-0.44,-1.04,-0.77,0.98,0.72,-0.01,-2.64,2.34,-0.18,2.66,1.48,-0.83,-0.96,-1.62,-2.12,2.07,0.8,0.81,0.4,-2.07,0.79,2.18,-1.19,0.13,1.79,-0.81,-2.5,-0.47,-0.61,1,-3.2,-2.82,2.37 +C1066,-10.42,2.83,-2.2,-4.46,3.97,1.67,1.67,-0.61,-4.24,-1.41,1.95,1.09,0.93,-2.4,1.49,-3,0.3,-0.94,0.77,-1.44,-1.05,0.73,1.51,3.92,1.81,0.54,-1.35,2.06,-2.61,1.29,-0.45,-1.83,0.12,1.58,0.77,-1.58,0.56,1.65,1.74,1.89,0.54,-0.56,-0.08,0.86,-1.57,-1.64,-0.48,-0.64,-0.68,0.28 +C1067,2.19,-0.95,-0.48,-1.45,-2.77,0.91,-2.71,-1.04,-0.95,2.99,0.36,1.01,-0.59,-3.69,0.16,1.17,-3.44,2.09,-0.15,-0.56,-1.64,-1.1,-1.85,0.81,2.7,-1.59,0.48,-0.5,-2.48,-2.8,-2.21,1.36,-2.27,-1.16,0.43,-0.52,-2.81,0.95,-1.97,-2.31,0.64,-1.48,0.69,0.33,0.29,4.26,1.55,-2.87,1.76,-4.39 +C1068,-11.44,0.33,1.43,-0.43,0.1,-3.74,2.53,0.35,-0.99,-2.02,3.17,1.12,1.79,-1.48,0.2,1.1,0.73,-1.58,-0.49,0.09,-0.54,1.45,2.19,2.52,-4.97,2.03,-0.18,1.16,-0.85,1.35,0.26,1.57,0.35,1.37,2.55,0.64,0.59,0.49,1.25,2.11,-2.56,0.99,-0.96,0.74,-2.62,1.87,-1.63,0.51,-1.63,-2.14 +C1069,2.1,6.22,5.81,4.92,0.13,0.15,-1.7,-1.02,-2.43,0.81,0.4,1.5,-2.46,-1.29,0.09,1.09,1.81,-0.65,-1.78,-1.36,-2.65,0.93,1.63,-1.26,-0.64,0.22,2.39,-1.91,1.3,-0.69,0.64,3.63,-0.79,1.11,-0.38,2.97,0.93,0.15,-2.76,3.83,-0.77,-2.69,1.7,4.13,1.24,1.59,0.92,0.98,-0.31,-1.37 +C1070,4.87,1.14,-0.72,-1.46,-2.01,-0.31,0.24,2.85,-0.85,-0.26,-1.57,0.79,0.73,-0.45,-3.29,0.57,4.61,1.55,2.48,0.25,-0.27,-3.12,-0.34,0.96,-1.78,2.29,0.47,-0.51,-0.69,0.35,-1.3,-1.67,-0.92,-0.84,-2.34,2.47,1.43,-0.64,2.98,-0.14,-1.33,1.41,1.89,0.72,1.7,-0.21,2.09,-0.5,1.31,1.89 +C1071,-13.35,-0.84,1.68,0.5,-0.31,1.95,-3.96,-0.35,0.95,1.1,-1.48,-3.48,1.71,0.53,0.34,0.48,1.71,2.82,-1.44,-1.15,-0.98,-3.16,-1.81,2.46,-2.14,0.93,-1.67,-2.8,0.28,-1.04,1.67,0.12,-2.41,-3.59,-0.45,-0.11,1.86,1.86,0.08,-1.17,-1.53,2.14,3.32,-0.91,-3.42,-0.87,-0.44,1.32,-1.11,1.45 +C1072,-8.05,2.95,-1.91,-4.05,4.56,1.69,2.06,-0.7,0.41,1.86,0.22,1.02,-0.67,0.41,2.13,-0.32,0.03,-0.78,0.38,-1.49,2.14,0.37,0.53,-0.39,-1.49,-0.57,0.07,-0.65,-0.58,2.59,0.36,1.63,0.36,-0.99,1.47,0.76,-0.48,-0.72,0.71,-0.95,1.05,-0.52,-0.86,-1.14,1.05,0.05,-0.21,0.26,0.54,0.99 +C1073,-16.7,-1.78,2.85,-0.27,-1.25,-0.28,-0.91,-0.84,1.76,-5.46,1.01,2.46,1.23,1.76,-0.56,-2.18,-0.94,1.02,0.3,-1.68,-2.5,-2.2,-2.22,-1.69,-2.17,-1.75,0.92,-0.46,-1.59,-1.87,2.06,1.59,-2,0.45,0.27,-1.77,-0.77,-1,0.83,-0.3,2.65,0.59,-1.85,0.38,-2.25,-2.19,0.48,-0.81,-2.23,-0.79 +C1074,1.67,7.1,6,5.08,-0.03,0.87,-2.12,-0.27,0.84,-1.71,1.63,2.51,-4.98,3.06,-1.7,-0.6,2.86,-1.55,-2.94,-2.63,3.78,-0.29,0.82,-3.31,0.06,-5.04,1.06,-0.12,1.58,1.74,0.51,-0.21,-2.6,-1.4,-3.62,-2.55,2.2,-3.08,3.7,1.41,-0.37,1.62,-3.12,1.19,-0.16,1.28,0.68,1.42,1.54,1.14 +C1075,-12.23,-1.36,2.03,2.6,-2.79,-4.81,3.1,-1.88,2.17,-0.16,0.28,0.81,0.26,-0.38,2,0.27,0.35,0.41,-1.02,-1.68,0.42,-0.41,-1.4,0.9,-0.41,0.91,1.92,-0.01,0.47,1.17,3.41,2.67,-1.13,-2.24,0.31,0.87,1.53,-1.09,2.58,-0.59,1.75,-0.79,1.5,-0.64,0.32,-1.6,0.12,0.13,-0.58,-1.46 +C1076,-14.44,-0.56,0.6,-1.55,0.57,0.55,-0.1,-0.36,-2.77,-3.35,-1.51,-0.5,1.71,1.14,0.15,-1.07,1.45,2.12,-1.04,1.44,-0.01,0.6,1.06,1.38,-0.47,-1.29,-0.75,-0.7,-1.56,0.35,0.58,-0.31,-0.61,0.16,-1.57,0.19,-2.89,-1.88,1.35,-0.54,0.36,-1.24,-1.64,0.39,1.68,-0.41,1.18,1.01,-2.43,2.21 +C1077,3.35,-1.95,-0.57,-1.71,1.03,-0.04,-0.64,-2.93,-1.85,0.59,1.67,0.33,-0.08,-0.88,1.15,0.11,-2.44,-2.36,-2.83,-3.84,0.15,-1.22,-0.37,-0.15,-1.7,-3.12,0.77,-2.06,-0.81,-0.21,-1.1,-2.41,1.41,2.3,1.94,-5.15,-1.32,-1.8,-1.27,-1.03,1.26,-0.39,-2.25,0.64,0.24,-0.43,1.03,-0.73,0.57,-2.02 +C1078,2.08,8.25,5.7,7.66,-1.08,-0.89,0.35,0.82,-0.29,-1.99,2.54,0.73,2.25,-3.46,-1.19,-3.15,-3.03,2.64,-1.07,0.23,3.87,-0.73,-4.62,1.2,-1.71,1.14,-1.67,0.46,-1.13,-0.74,-4.79,-0.63,1.27,-1.51,-0.82,-1.31,-0.64,4.6,1.76,-1,-2.85,-3.28,0.29,-0.14,0.56,3.47,0.84,-0.82,1.69,3.36 +C1079,4.77,-0.49,-1.03,-1.83,-0.91,-0.52,0.26,-0.61,0.41,-1.33,-0.46,0.38,0.97,0.53,-1.14,-0.53,0.55,-0.16,-0.72,-1.52,0.06,0.41,-0.33,1.19,-0.59,-0.93,2.75,-0.67,0.54,-1.81,0.05,-0.27,-1.09,0.81,0.82,-2.02,0.59,-0.86,0.88,0.78,-1.79,-0.31,-0.91,-0.39,-0.71,1.02,-2.23,-0.97,-1.48,0.28 +C1080,-7.08,3.03,-2.09,-4.92,4.15,2.14,0.93,-1.34,0.1,0.33,1.48,-1.08,-0.93,1.61,0.66,0.39,-1.36,-0.01,-0.3,1.11,1.44,0.32,0.31,-1.98,0.58,-0.34,2.41,-0.35,1.3,0.61,1.09,0.27,0.34,0.8,-0.14,-0.41,1.56,0.07,0.58,-1.57,0.56,1.88,0.34,-1.41,-0.84,-0.4,2.61,1.11,0.28,-2.28 +C1081,-11.26,1.22,-1.23,-2.72,2.4,0.99,0.97,-1.02,-1.01,3.02,-1.23,-1.07,1.15,1.82,-3.22,-0.01,-1.51,0.64,-0.24,2.31,0.8,-0.37,-0.47,1.63,2.03,-0.59,2.02,-0.46,1.49,-1.61,1.9,1.82,-0.98,-1.43,-2.71,-1.1,0.76,-1.53,3.69,-0.32,1.91,1.25,0.35,3.77,-2.19,-0.23,-0.01,0.56,3.34,0.36 +C1082,3.82,-3.08,0.28,-1.65,-3.11,-0.21,-2.04,-0.06,-1.82,1.78,2.07,-0.88,0.95,1.3,4.4,1.4,-2.57,1.59,1.2,-0.08,1.63,2.66,1.57,-2.02,0.82,4.08,0,-1.31,0.77,0.36,-0.07,3.78,-7.36,-1.28,-4.82,0.22,-2.29,-0.64,0.22,-0.07,1.53,-4.92,-0.74,-3.66,-0.73,-0.81,-1.36,1,-0.51,-0.56 +C1083,1.23,5.7,5.42,6.41,-0.44,-0.5,-1.32,-1.2,-3.39,2.67,-0.18,-2.13,-0.31,0,-1.33,4.96,1.32,-2.48,2.88,0.62,0.88,-1.6,1.5,2.54,1.77,2.85,-4.53,-2.3,-1.08,-2.72,-0.48,-5.07,-2.95,-0.09,1.01,0.88,1.7,-1.37,-0.17,-2.12,0.98,-1.54,2.02,-1.41,-0.07,1.09,0.02,2.67,4.11,0.36 +C1084,5.78,0.82,-0.89,-1.92,-1.98,-0.8,0.21,1.31,0.5,0.34,-1.57,-1.02,-0.45,0.32,1.35,-1.56,-0.08,-0.57,-1.77,-0.65,0.44,1.23,-1.42,1.09,0.71,0.98,3.43,0.45,-0.09,1.04,1,1.03,1.28,3.06,1.51,1.84,-1.82,0.29,-2.02,-0.39,-0.92,1.44,-1.9,0.06,2.02,-1.21,-1.04,-1.77,-0.05,-0.58 +C1085,5.39,2.71,-2.19,-1.91,0.78,-1.45,0.88,1.72,1.63,-0.34,-1.46,-0.37,-1.93,-0.8,-0.54,1.49,-1.01,0.39,1.68,1.6,-2.45,-0.59,-0.26,1.11,-0.76,0.42,0.07,-0.06,-0.02,0.08,-0.26,-0.58,-0.24,-2.42,-0.68,-0.25,2.67,-2.34,-0.28,2.07,0.16,0.09,-0.06,2.9,0.7,-0.98,0.19,-1.23,0.98,1.57 +C1086,3.48,8.1,4.84,3.61,1.78,-0.13,1.24,0.29,1.7,0.4,-0.96,-1.41,-0.67,-0.2,-2.06,-2.26,0.59,-0.37,2.54,0.29,-0.55,-1.69,2.42,-1.11,0.59,-4.37,0.1,-1.19,1.01,3.14,2.14,4.66,-0.7,-3.88,0.43,1.15,0.1,1.01,0.53,1.75,1.01,-1.96,-0.17,1.38,-2.1,1.12,1.2,1.16,-1.54,1.41 +C1087,3.74,0.28,-0.98,-2.52,-1.26,0.2,-0.36,1.12,0.35,1.66,-0.86,-1.17,-0.4,0.2,0.35,-1.96,0.91,-2.31,-0.8,0.49,-0.21,0.21,0.49,1.08,1.8,-0.06,-0.15,-3.05,-2.07,-0.32,0.7,0.78,-0.4,-0.01,-1.68,1.1,0.65,0.11,3,1.48,1.58,-1.23,0.66,-0.47,0.24,-0.9,0.15,-0.79,0.7,0.26 +C1088,3.02,6.14,5.58,4.43,-0.45,-1.01,0.41,-0.73,-0.96,-0.28,0.28,-2.77,3.96,-0.23,-0.39,1.03,-0.02,-1.05,-1.32,-0.87,-2.86,-0.81,-3.18,-2.58,4.23,1.59,0.24,-1.38,-1.78,-3.91,-1.81,1.38,1.7,2.13,0.29,0.92,3.7,2.7,-2.56,-0.54,-3.24,-1.66,0.92,-0.81,1.18,0.73,0.99,1.68,-1.84,-0.41 +C1089,-12.03,1.6,0.57,1.58,-0.94,2.31,-3.64,1.45,-0.8,-1.39,-2.79,-1.02,0.28,0.49,2.61,-1.44,3.3,1.41,-1.21,3.79,3.81,-0.8,1.55,0.54,-2.56,-1.12,-0.17,-3.08,0.8,0.78,0.51,-2.53,-2.19,-1.48,2.33,-1.84,-1.79,0.51,-0.58,1.56,-0.38,-1.87,1.94,1.56,-1.74,-2.18,1.55,-2.8,1.03,0.29 +C1090,6.17,-1.44,-1.08,-1.6,2.64,0.54,0.57,-2.81,3.39,0.99,-0.39,0.29,-1.29,-2.34,-2.33,0.05,-1.32,2.21,0.61,-1.33,-2.48,0.42,2.89,0.03,-2.11,-1.45,0.17,2.06,-0.84,-1.3,1.91,0.92,-2.38,0.63,-1.26,-1.46,-0.19,1.01,1.49,1.84,-0.98,-2.75,-2.47,-2.41,-1.88,2.52,-0.4,-2.9,0.78,-0.18 +C1091,-16.19,-1.8,3.42,1.48,-3.46,-2.92,0.67,0.57,-0.54,-1.55,1.71,0.58,-0.14,1.09,-0.67,0.39,1.06,-3.4,-0.06,1.51,-1.25,0.18,0.75,-1.35,0.92,-0.77,-0.83,-0.2,-0.62,-0.09,0.32,0.78,-2.61,2.63,-0.4,-0.03,1.6,1.07,-1.38,1.8,1.84,2.59,0.19,-1.08,-0.09,0.04,1.05,-0.94,-1.86,-0.98 +C1092,3.77,-3,0.12,-1.74,-6.05,-1,-0.82,-0.34,-1.17,0.83,1.68,-2.02,-2.17,-0.1,2.09,1.91,2.5,-1.59,-0.17,0.46,1.38,-4.77,3.05,-1.47,1.77,-1.08,1.5,-2.97,1.33,-1.51,2.18,-1.2,-1.8,-2,1.42,1.45,0.51,-0.73,0.76,-0.56,1.65,-4.19,0.07,-0.74,0.01,0.75,0.45,2.44,2.61,1.31 +C1093,-13.53,-0.74,-0.08,-0.54,-0.43,1.61,-2.53,2.02,-3.85,1.3,-3.22,-0.1,-0.06,3.12,-0.17,-3.73,-0.48,2.54,-2.39,1.35,-2.72,3.5,2.71,-0.79,-2.22,-3.4,-0.61,-1.7,-2.83,0.76,1.41,0.17,-1.93,-2.07,0.25,0.51,-0.16,-0.86,-1.53,1.29,3.26,-1.01,0.78,-1.53,-1.49,-0.11,-2.2,-1.97,1.07,-2.37 +C1094,5.16,2.73,-2.55,-4.22,1.37,-0.16,1.53,1.25,1.5,-1.28,1.01,1.03,-0.83,-1.05,-0.87,0.24,-0.6,-0.73,1.09,0.02,-0.08,-0.23,0.36,1.01,0,-0.73,-0.32,0.52,-0.9,-1.17,-0.08,-1.19,-1.47,-0.54,1.67,0.8,0.1,0.21,1.2,-0.23,0.15,0.59,0.52,0.49,1.32,1.2,0.14,-1.01,-0.44,0.97 +C1095,3.45,-2.07,0.87,-0.03,-2.44,0.54,0.3,-2.55,-1.28,2.18,1.73,-1.2,-3.06,0.04,2.09,0.37,1.45,-0.62,2.58,-0.51,-0.37,-0.93,0.83,-0.13,-0.61,-0.68,-1.61,-2.13,1.01,2.94,1.95,-0.48,-0.25,-0.14,-0.43,0.95,0.19,1.62,-0.86,-1.15,0.36,-0.86,-4.89,-0.5,1.08,3.49,2.44,0.39,0.41,0.85 +C1096,6.67,3.86,-3.34,-2.46,0.61,-0.05,1.78,3.24,2.82,-0.32,-0.55,2.51,-1.31,1.87,-0.89,0.5,0.88,-1.25,-0.14,-2.41,1.23,-1.15,-1.2,1.08,-1.12,-2.25,-0.4,0.76,0.85,-0.19,0,1.01,-0.04,-2.24,0.26,0.65,-0.4,-0.05,0.49,2.51,-0.79,1.23,-1.87,-3.07,1.91,-0.22,-0.97,2.09,0.54,0.89 +C1097,-12.6,-0.88,1.01,-1.55,-0.42,-0.27,-1.28,-1.35,2.17,0.3,1.31,1.54,1.74,-0.01,-0.99,-0.92,2.74,3.15,1.19,-1.13,-0.74,-0.16,-2.78,2.51,-0.28,-1.79,0.72,-0.97,3.88,-1.82,0.47,-0.89,0.61,0.17,-1.06,1.33,1.4,0.36,1.68,1.2,1.67,1.47,-0.09,0.48,-0.12,-0.47,-2.6,2.32,-2.6,-0.38 +C1098,-11.38,0.24,-2.4,-2.58,2.77,2.52,-1.32,1.11,-2.21,-0.29,-2.38,0.06,1.24,-0.82,-0.18,0.17,0.95,0.41,0.75,2.63,-1.05,1.48,-0.56,0.46,2.82,-1.81,-1.48,1.33,0.29,-1.83,-0.49,0.84,-0.39,1.39,0.48,0.78,0.15,-0.9,1.16,0.73,3.4,0.12,-1.18,2.77,-1.59,2.33,0.15,-0.28,3.07,-0.16 +C1099,5.09,-4.39,0,0.43,2.61,0.19,-0.79,-5.36,-1.57,-3.91,-3.05,4.42,0.17,0.95,2.25,-0.05,-0.22,-4.29,-2.04,-0.21,1.22,1.77,3.04,-1.43,-4.43,1,2.01,0.96,-1.31,0.55,-2.71,0.59,0.08,1.39,1.43,2.13,2.42,2.14,0.67,-0.82,-0.27,-0.72,1.41,2.41,0.72,1.5,1.93,-5.01,2.79,3.19 +C1100,3.37,7.62,6.9,7.11,0.2,-0.1,-1.24,0.96,-1.63,0.24,-1.71,-2.49,5.98,0.56,-0.48,1.94,-0.37,3.06,-1.19,1.61,1.51,-0.25,-1.16,1.17,-1.85,-2.43,-1.8,5.94,-1.64,-0.88,0.62,-0.44,-3.35,-0.42,0.7,-1.13,-3.83,1.89,-2.16,4.08,-2.17,2.22,-1.33,-0.37,-3.83,-1.59,0.89,1.01,0.41,-0.61 +C1101,-13.59,0.41,0.75,0.08,-1.18,0.55,-2.43,0.11,-0.61,0.14,0.7,0.46,0.86,-0.56,2.58,-1.58,2.59,-0.76,-0.87,-0.46,3.49,-1.23,-1.67,-1.9,-0.75,-1.7,2.52,-0.57,1.22,-1.03,-3.17,-0.83,-2.15,0.33,0.58,0.64,-0.55,0.2,-0.94,-1.05,-1.82,-0.12,1.55,0.13,0.58,2,2.4,-2.32,3.67,-1.08 +C1102,-12.77,1,-1.68,-3.7,1.78,2.17,-0.89,-0.63,-2.09,0.44,-1.61,-0.14,1.59,-1.91,0.88,-2.96,2.01,-1.06,-0.23,1.53,1.89,1.55,-0.27,-0.8,1.72,-0.09,-0.24,1.8,1.26,-0.57,0.48,0.92,-0.8,-0.21,0.84,0.88,-1.54,-0.72,1.07,0.87,0.88,-1.4,0.57,2.58,1,-0.39,-1.16,-0.47,0.67,-0.99 +C1103,3.52,-0.27,-0.95,-1.41,-1.38,-0.24,-1.07,0.55,0.18,-0.76,-0.7,-1.07,1.84,0.97,-0.76,-1.8,-3.14,1.54,1.72,3.55,0.08,0.95,-0.48,-1.61,1.14,0.84,1.68,0.05,-0.23,-2.26,-0.17,-1.8,1.37,-1.19,1.61,2.58,1.59,0.21,2.15,-2.28,3.09,0.54,-1.42,-0.08,2.28,-1.29,0.09,-1.19,1.38,-0.79 +C1104,4.42,1.82,-1.95,-3.88,-1.77,-0.63,1.12,0.3,0.83,0.09,-1.48,-2.17,-0.24,-0.28,1.34,-0.27,1.4,0.12,2.75,0.02,-0.02,2.04,0.58,1.48,1.41,1.84,-2.55,0.53,-0.12,0.46,-0.06,0.56,0.62,1.34,2.32,0.57,-0.72,-0.1,0.61,-2.27,0.83,2.79,0.25,0.47,-1.21,-0.09,-0.48,-0.14,-3.63,-0.9 +C1105,2.34,6.31,4.34,3.9,-0.05,0.76,-2.01,0.7,0.07,0.32,0.92,0.25,1.18,1.4,-1.85,-2.11,2.64,-1.64,1.09,-1.74,1.8,1.17,-0.75,-2.42,-0.44,2.42,-1.19,-1.19,-0.9,4.09,3.21,1.71,2.1,-1.43,-0.74,2.5,0.55,-2.79,0.9,-2.73,-1.56,-2.11,-0.95,4.12,0.84,5.46,1.84,-4.04,0.41,-4.18 +C1106,3.77,-6.43,1,0.27,3.39,1.67,1.53,-3.96,0.52,-0.84,2.21,-3.36,0.26,1.37,-2.12,-0.75,-2.62,0.08,3.84,-2.06,-1.74,3.07,-1.37,2.79,-1.77,-2.24,-0.15,-1.65,0.29,-1.81,-1.1,0.03,-0.6,-0.18,2.14,-0.07,3.68,-3.96,-0.11,-0.26,0.61,1.03,0.49,-1.99,-1.22,-0.9,-0.78,-0.81,2.59,-0.21 +C1107,-12.92,0.28,0.37,-0.12,0.65,1.96,-3.4,-0.69,-1,1.18,-1.72,-1.19,-0.69,1.44,-1.3,-3.47,3.47,2.56,-1.49,2.6,-0.85,-1.08,-2.5,-2.15,-0.19,-1.44,-0.35,0.65,3.44,0.01,5.76,-2.9,1.47,0.41,0.29,-3.31,-0.25,0.84,0.19,-0.65,0.06,0.11,-2.98,2.19,-1.33,2.68,-1.72,1.58,0.52,1.51 +C1108,3.9,-3.41,0.13,-1.07,-0.35,0.45,-0.63,-4.92,-1.51,0.32,0.1,1.43,0.69,-2.67,1.46,-0.26,-1.57,-0.49,-3,1.14,-0.03,0.95,-4.01,2.04,-0.52,2.96,-0.85,-0.02,0.11,-1.45,-1.19,2.67,-1.45,-0.97,1.86,-1.62,-2.24,2.16,2,-0.22,-2.88,-0.43,1.98,2.64,2.08,-1.07,2.47,-2.31,1.24,0.71 +C1109,5.11,0.79,-1.17,-2.6,-1.64,-0.58,1.2,1.16,0.62,0.35,0.78,0.79,-0.49,-1.56,0.29,1.35,1.71,-1.42,-0.94,1.12,-1.44,1.4,-0.19,-1.36,0.67,0.18,2.76,-1.15,-0.89,0.95,-0.01,-2.97,-0.7,-1.2,0.27,-0.71,-1.05,0.04,-0.88,0.55,-0.87,2.42,-0.65,-2.36,-0.65,-1.5,0.92,1.34,0.31,0.02 +C1110,5.4,2.12,-1.19,-3.11,-0.37,-0.44,0.96,2.8,1,1.2,0.48,0.29,-0.11,-0.23,-1.28,0.96,0.69,-1.86,0.11,1.22,-1.09,-1.07,-1.77,-0.81,-0.45,-0.39,-0.54,-1.2,0.02,0.93,-0.58,2.39,1.07,-1.15,-0.38,0.21,-0.81,-0.81,-0.21,-0.44,0.13,-0.31,-0.82,-0.69,-1.44,-0.72,0.3,0.34,1.79,0.95 +C1111,-10.73,2.61,-1.82,-2.49,4.39,3.58,-0.16,0.88,-1.34,-1.04,0.41,-2.98,-1.87,1.42,-1.28,-1.06,4.11,1.61,-0.41,1.94,0.97,-0.18,1.18,1.46,-0.83,1.98,0.77,-0.75,0.42,-0.74,1.43,1.25,0.11,0.88,-0.78,0.52,-0.94,-0.44,-3.48,-0.35,-1.59,0.52,0.3,2.21,1.09,0.7,1.07,2.62,0.05,-0.93 +C1112,4.94,-0.48,-1.74,-2.67,4.03,0.91,1.15,-4.07,1.47,-1.12,-2.33,0.86,-1.41,0.07,-0.88,-2.4,0.47,-0.95,1.31,-1.8,0.7,0.67,2.46,-0.1,0.93,-0.57,-1.66,-0.14,-0.88,2.16,1.15,0.9,0.49,-0.45,0.36,-2.74,-1.46,0.41,2.77,-0.2,0.12,0.87,0.56,-0.15,0.89,-0.23,-2.52,-1.2,-2.74,2.94 +C1113,4.39,-0.03,-1.33,-1.44,-2.73,-0.56,-1.13,0.72,1.54,0.13,-1.66,-1.03,1.91,-1.73,1.87,1.61,3.63,-1.13,1.26,0.8,-0.02,0.21,0.34,0.39,-1.09,-2.71,-1.19,2.09,-2.31,-1.18,-2.05,0.05,-1.82,0.92,-0.27,0.06,0.74,-3.02,0.62,-1.22,0.76,-0.63,-1.3,-0.03,0.07,-0.74,1.36,-1.72,-0.79,-2.84 +C1114,4.44,0.67,-1.51,-1.56,-1.83,0.33,0.02,2.62,0.99,-0.52,0.14,1.2,-0.62,-0.12,-1.51,-0.92,-2.21,2.16,-0.31,-0.96,-0.85,-2.74,2.82,-0.37,0.9,-0.29,-1.55,-0.61,-1.56,3.32,-1.82,0.31,-0.93,-1.09,2.67,-1.01,-1.47,1.56,-2.33,0.8,1.82,0.45,0.2,-1.34,-0.87,0.92,-0.37,-0.6,-0.47,0.16 +C1115,4.11,2.32,-0.43,-0.49,-0.79,-0.35,0.34,-0.17,1.22,0,-0.84,-1.22,0.9,1.09,-0.24,1.05,-0.85,-1.25,0.14,0.73,2.03,-1.82,-1.53,0.11,-1.04,0.39,-0.13,-1.22,-1.78,-0.55,-2.82,1.52,-0.37,-1.62,0.81,1.18,-4.49,-0.85,0.6,2.67,-0.45,0.53,2.04,-0.28,1.72,-0.99,0.49,0.96,0.15,-0.31 +C1116,3.31,5.1,5.33,6.02,0.43,0.65,-0.43,0.5,-1.07,2.41,-2.31,1.82,-4.43,1.94,4.47,-1.43,0.48,0.33,2.72,2.73,0.63,-0.57,0.25,2.57,0.31,0.86,0.9,2.02,0.09,-2.12,-0.7,1.07,0.54,-0.37,-0.54,0.24,-0.32,-1.19,0.15,0.29,2.17,-0.65,0.18,-0.49,2.07,-0.28,-1.39,-5.08,-4.77,-1.55 +C1117,4.57,9.27,4.43,3.19,3.78,-0.5,1.36,0.77,-2,0.46,0.53,-1.45,0.54,-0.2,-1.4,-0.33,-1.82,-2.12,-2.47,1.95,-1.34,2.03,1.45,-3.35,1.2,-2.28,0.21,0.08,1.53,1.02,-0.7,-2.64,-1.7,2.21,-0.38,1.84,-0.38,-3.5,0.81,-1.05,2.5,0.11,0.74,-0.11,0.42,-0.96,-1.43,-0.09,-0.13,2.2 +C1118,5.48,2.06,-1.19,-2.17,-0.56,-1.69,0.5,1.44,-1.03,-0.84,-0.38,0.35,0.9,1.77,-1.9,-0.6,0.34,-0.59,-0.58,-0.03,-0.48,-0.28,2.13,-0.72,0.25,0.78,0.68,-0.94,-0.63,1.2,-0.58,-0.21,-0.95,1.8,1.98,1.59,0.67,0.28,2.1,1.34,2.17,-0.63,2.51,-0.61,-1.38,-0.14,1.5,0.34,-1.73,0.49 +C1119,-9.39,1.77,-0.82,-2.85,2.61,-3.59,4.63,-2.55,1.44,-0.78,3.47,2.46,-0.17,-1.93,1.33,2.07,-1.51,0.1,1.7,-1.89,-1.25,-2.69,-1.39,-2.39,-1.16,2.08,0.51,0.95,0.87,-1.38,-1.66,1.2,-1.39,0.81,-1.98,1.35,-1.75,-2.04,0.91,0.38,4.79,1.32,-3.27,3.21,0.63,-1.66,-0.99,2.57,-0.16,-1.23 +C1120,4.42,1.4,-1.64,-2.72,-0.82,-0.27,-0.44,0.5,-0.1,-0.58,-1.03,-0.03,-0.33,0.31,-0.23,-0.6,-0.84,0,1.46,-1.62,-1.52,0.91,-0.42,-1.24,-0.13,-1.85,1.54,-0.81,-1.93,0.19,-1.06,1.21,1.09,0.74,-1.31,-0.91,0.45,2.5,1.27,0.03,-1.08,0.53,-0.23,-0.33,-3.21,-0.77,1.51,0.55,0.43,0.19 +C1121,-8.36,0.95,-0.26,0.59,0.51,-7.4,5.58,-0.96,2.9,1.34,-0.33,0.54,-1.09,-1.19,0.83,0.91,-3.22,-0.82,-0.59,-1.96,0.12,-1.74,-2.45,1.03,2.57,-0.29,1,1.7,-2.61,-1.61,-0.98,-0.5,-0.9,-0.03,0.22,0.23,0.76,-0.8,1.61,-2.38,-1.68,2.23,1.64,0.28,-0.85,-1,-1.1,2.45,0.1,-0.77 +C1122,2.16,-11.15,1.37,3.11,6.93,-0.19,-0.84,4.43,-1.1,-0.47,3.64,-3.26,-1.9,-3.67,1.14,-0.39,0.46,-0.88,-6.25,-2.82,-1.15,2.97,-1.9,-1.98,0.91,-0.56,0.67,-2.23,-1.09,0.11,1.23,3.63,-0.59,-0.15,-1.08,-2.02,-3.65,0.91,-3.92,0.57,-1.49,-4.2,1.25,2.96,-0.8,-2.75,2.49,2.2,1.82,-0.97 +C1123,-10.6,1.06,0.56,-1.49,2.16,-2.06,2.45,0.48,0.7,-0.51,-0.62,-0.08,0.4,-1.12,-3.33,-0.09,-2.93,1.54,0.68,-1.79,-0.27,-3.35,3.15,2.89,-3.02,1.24,1.24,2.22,-0.65,2.45,-0.36,1.19,-0.15,-1.6,-0.79,-0.01,2.22,-0.74,0.54,0.08,-3.23,1.82,-0.82,-2.05,-2.43,-0.84,0.11,1.26,-0.37,0.77 +C1124,4.51,0.23,-1.13,-1.96,-2.04,-1.16,0.3,2.21,-1.51,-0.82,0.57,-0.69,2.68,2.21,-1,0.49,0.4,-2.24,2.16,2.09,1.86,0.07,-0.68,0.12,-1.38,-0.76,0.24,0.06,-2.6,-3.08,-1.52,1.81,0.89,0.19,2.12,-1.14,0.59,1.02,1.2,-1.47,-1.87,-0.11,-0.79,-0.62,-1.82,-0.65,3.6,-0.15,-1.97,-2.45 +C1125,2.74,-1.41,-1.5,-1.76,-1.91,-0.35,-0.35,0.13,-1.65,-1.22,-1.34,2.93,2.17,-1.35,-3.08,-0.58,1.65,-2.56,2.23,0.61,1.21,1.49,0.77,0.53,-0.51,-0.67,0.96,-0.82,-1.33,-0.07,2.45,-1.65,-1.06,0.46,3.11,-2.29,3.6,-0.9,-3.5,-1.03,-1.7,0.82,-0.07,-0.64,-0.86,0.04,-0.63,2.05,0.87,1.48 +C1126,-11.29,-1.02,-0.3,-0.66,-1.38,1.84,-3.6,-0.46,-1.43,3.06,-3.07,-1.17,0.65,1.2,1.77,1.8,-1.08,1.15,-0.56,0.1,-4.36,-0.19,-3.22,-0.84,-3.31,-0.15,0.78,-0.8,1.43,-1.67,0.25,0.45,0.77,1.69,-2.88,0.4,0.65,2.63,-0.77,-0.56,1.64,-2.27,-0.36,0.42,-0.12,-0.02,1.28,-1.83,1.07,2.84 +C1127,5.44,2.46,-1.31,-2.18,0.47,-0.68,0.85,2.26,0.84,-2.28,-1.45,1.47,-1.15,-1.16,-0.91,-1.59,1.08,-0.58,-0.41,-0.09,-0.37,1.29,0.72,1.12,2.06,-4.47,-2.87,1.93,0.05,-1.08,-2.5,-0.59,0.01,-0.24,1.89,-0.25,-1.92,0.09,1.68,3.19,-1.61,1.09,-0.24,-1.85,0.18,0.11,3.14,1.24,0.03,1.81 +C1128,5.38,-3.41,-1.24,-0.92,1.15,2.27,-0.4,-5.06,1.51,0.56,-2.83,2.39,-2.32,0.85,-0.6,-0.55,-0.85,2.98,-0.41,-0.71,-0.38,-0.59,-1.64,-0.17,2.27,-1.51,-0.58,-1.51,-1.01,3.54,-0.25,0.69,-2.39,0.57,-1.28,-0.67,1.03,0.6,1.59,-0.02,1.37,0.4,1.14,-2.99,-1.29,-2.9,1.32,-3.32,-1.49,-0.25 +C1129,4.86,1.41,-1.55,-1.56,-0.16,0.22,0.62,1.55,1.82,-0.25,-1.22,-0.35,1.57,2.6,0.17,-0.24,-0.31,-1.03,-0.37,0.12,-0.33,0.89,-0.36,0.97,-0.27,0.46,-1.03,1.41,-0.45,-1.11,-0.46,0.85,-0.52,-0.07,-0.63,-1.26,-0.78,-1.39,1.65,0.53,-0.12,-3.12,0.07,0.01,0.29,1.47,0.39,0.02,1.83,-0.78 +C1130,2.75,8.85,4.92,5.48,3.23,-0.73,-1.48,-0.63,-0.66,0.59,-0.69,0.39,2.27,-0.58,-1.44,-1.52,0.37,1.53,0.8,0.1,-1.19,-0.9,-0.48,-0.35,-2.31,-1.46,0.26,3.83,-2.29,-0.61,1.82,-0.34,2.7,2.32,1.57,-0.57,0.21,-1.8,0.74,1.6,-3.25,-3.17,-0.84,0.75,-3.15,1.5,-3.39,-1.08,-1.63,-1.86 +C1131,-9.93,2.37,1.25,-1.43,1.82,4.47,-4.05,0.22,-0.72,0.78,-0.47,1.61,-0.29,-0.28,-1.63,-0.11,-0.34,-0.67,-1.37,0.45,3.8,3.95,1.15,-2.08,-0.08,-1.06,0.72,2.08,-0.55,-0.93,1.37,0.27,0.42,0.08,-1.51,-2.53,0.81,-0.08,-0.72,-0.17,-0.91,2.09,-2.76,-2.47,2.23,-3.9,-4.24,4.45,-0.62,0.12 +C1132,4.34,0.76,-1.55,-3.22,-2.15,0.22,-0.73,0.46,0.19,-0.08,1,-0.03,1.17,-0.18,0.44,4.42,-1.4,0.11,1.43,2.66,1.48,0.93,1.82,-3.08,3.72,-1.56,0.16,-2.09,-0.82,1.28,1.18,-0.01,-0.37,0.13,0.9,-1.58,1.22,0.05,0.06,-2.56,0.09,0.73,-0.87,0.8,-2.86,-1.04,2.5,1.61,-1.12,-0.8 +C1133,3.48,7.1,4.49,3.45,1.16,0.61,-0.56,0.51,-0.91,-0.48,-1.71,-1.83,4.1,0.13,1.91,0.23,1.68,-0.19,1.08,1.45,-2.56,0.29,-0.07,-1.34,-1.1,-0.17,-0.6,1.66,-0.58,-1.95,-0.86,0.8,-1.77,-1.83,-0.62,-1.9,1.88,-1.45,1.77,-0.54,0.86,0.37,-3.64,0.5,-1.42,1.71,-0.95,-0.66,1.67,-0.87 +C1134,-12.13,-0.78,2.39,0.77,-1.82,-3.29,0.02,-0.67,0.23,-0.76,-0.84,0.86,1.68,-0.16,-1.62,0.78,3.13,2.11,-0.68,-1.12,-0.71,-1.2,-2.17,0.05,1.82,-1.5,-0.95,2.22,1.35,0.45,1.3,-1.98,1.19,3.32,-0.36,-0.93,-0.09,1.7,-2.59,3.4,0.55,-0.73,1.44,0.18,-1.58,-0.36,1.41,-0.37,0.12,-1.8 +C1135,5.31,0.14,-0.99,-1.6,-3.15,-0.2,0.5,2.39,1.17,1.23,-3.26,1.43,1.58,-1.49,-4.71,2,-0.2,-1.52,-1.02,2.63,-0.82,-0.96,-3.33,-1.74,1.99,-0.67,0.52,0.94,-1.41,0.49,-1.62,-0.6,0.57,-2.66,-3.02,2.56,0.87,-0.15,-1.18,0.98,0.31,0,1.6,-0.45,2,1.1,-2.53,-1.31,-0.51,-1.93 +C1136,2.84,5.51,4.77,5.71,-0.91,1.57,-3,-0.62,-4.17,4.83,0.59,0.32,-1.81,-1.66,0.17,0.16,0.01,-0.5,0.67,-7.27,2.62,-2.66,1.89,4.59,0.1,4.99,-1.68,-0.03,-2.66,-2.14,2.35,-0.02,0.78,-2.73,0.87,-1.03,-3,-3.1,-2.66,-2.58,0.75,0.85,4.46,-3.41,1.81,-3.43,-0.45,-2.48,-0.08,-0.66 +C1137,-7.06,2.73,-2.97,-5.05,3.39,4.7,-0.56,-1.13,-3.2,2.99,-1.33,-1.83,-2.84,0.11,0.84,1.01,0.16,-2.15,-0.34,0.27,0.73,2.73,-1.58,1.29,2,1.64,-0.87,-0.6,-2.1,-2.18,-1.66,-0.37,-0.48,1.41,-0.99,-0.25,-0.08,1.35,-0.05,0.98,1.05,-0.61,-0.91,0.24,-2.38,-1.78,-0.08,-0.41,-0.9,1.57 +C1138,-12.95,0.39,-0.87,-0.68,0.45,3.88,-2.77,0.58,-1.44,1.31,-0.4,-0.8,1.57,2.13,-0.96,0.26,-0.78,-1.36,-2.45,0.24,3.76,0.26,-0.71,-1.66,-2.27,3.06,0.4,-4.82,1.09,-2,-1.67,0.23,1.48,1.9,1.04,-0.85,-2.72,0.5,0.43,0,0.6,1.74,-0.87,-2.51,-0.62,0.41,0.65,-0.02,-0.02,2.54 +C1139,-12.49,-0.52,0.58,-0.47,0.52,-1.69,-0.58,1.3,1.68,0.04,0.36,-0.61,-0.2,1.72,1.57,3.1,-0.92,2.49,-0.8,0.77,-2.46,-1.32,-0.02,3.37,-0.87,-2.66,-1.2,0.86,-0.03,4.4,0.03,-0.24,-1.29,0.5,0.84,-1.27,-3.02,-1.52,-1.19,2.13,0.88,-2.55,1.54,3.1,2.07,0.33,4.74,0.19,-1.58,2.92 +C1140,1.94,0.87,-1.65,-2.54,-1.43,-1.16,0.06,-1.88,0.22,0.72,1.24,0.49,1.22,-0.54,1.19,1.08,-2.37,-0.67,2.09,-1.21,-0.14,-2.58,-1.83,2.21,-2.68,-2.02,-0.73,1.86,-0.37,0.59,0.27,-0.53,-0.1,-2.11,-0.93,0.55,-1.75,-1.77,1.58,-0.91,-3.38,-0.02,0.88,1.6,-0.12,-3.65,-0.9,-0.65,-0.42,-2.19 +C1141,4.67,-4.51,-1.06,-1,-0.65,0.48,-3.22,-7.25,0.61,-1.19,-4.64,-1.92,-2.36,0.59,0.48,1.16,-0.22,-2.53,-2.08,-1.28,2.98,-1.68,2.08,2.13,1.75,4.94,1.38,-2.56,1.32,-1.75,1.07,-2.88,0.13,-1.81,1.67,1.03,0.52,-0.41,-1.83,1.88,-3.71,-0.47,0.29,-1.82,-2.05,-2.06,0.68,0.83,0.92,0.02 +C1142,3.22,0.48,-1.48,-2.11,-0.78,0.86,-0.1,1.02,0.46,0.57,2.87,-0.9,-1.23,0.36,-1.3,-0.77,-1.03,-2.71,1.82,-1.76,1.13,0.65,-1.31,3.98,0.14,-1.83,1.17,-0.41,-0.6,1.71,-0.3,-0.53,-0.46,-0.45,-0.07,0.43,0.48,0.45,0.99,1.66,-0.12,-0.46,2.16,-1.52,0.63,0.29,-1.3,-1.47,1.61,1.03 +C1143,3.84,-5.47,1.7,1.13,-1.03,0.54,-0.87,-4.38,-1.08,-0.51,2.09,-1.96,-0.34,1.27,-0.03,-2.98,1.41,0.23,-0.94,1.12,-1.35,0.49,-1.82,-4.36,3.47,-1.25,-1.71,-0.89,-1.74,0.73,0.02,0.41,-0.17,1.5,-0.38,2.01,-1.74,0.18,-0.14,-0.75,1.46,2.02,-1.42,-1.04,0.02,0.46,1.93,1.57,-2.02,-0.07 +C1144,3.08,6.75,4.49,3.59,0.06,-0.05,-0.41,-1.2,-3.53,0.86,-0.92,2.08,-4.48,-0.34,-1.31,2.89,3.51,2.31,-0.1,-7.45,-1.28,-0.06,-3.35,-2.61,-1.28,-0.29,2.13,3.72,-0.6,2.24,1.52,-1.15,-1.1,-0.21,2.14,-1.79,2.97,-0.77,3.45,-0.66,-2.29,-0.68,0.6,-2.16,0.59,-0.94,-1.81,1,-1.35,-2 +C1145,1.57,5.45,2.98,2.92,2.74,-0.3,-0.44,1.23,0.99,-1.65,2.34,-1.97,-0.67,-0.84,0.74,-0.69,-0.09,2.72,-1.01,0.98,2.37,0.69,-1.91,0.2,-2.25,-0.94,-1.1,-1.32,-1.08,0.85,1.28,1.71,0.52,-0.44,0.85,-0.71,-0.22,2.21,-1.3,-0.67,-0.14,-0.55,1.16,-3.1,-0.13,1.71,-1.82,-1.59,-0.42,-0.14 +C1146,-6.04,3.41,-2.31,-4.43,3.86,-0.06,3.81,0.18,0.25,1.73,2.52,0.88,0.14,-2.86,1.77,1.41,0.06,1.01,-0.51,-0.32,-1,0.29,0.37,0.68,1.06,-0.1,-0.69,-0.89,0.24,0.2,-2.12,0.07,1.99,0.89,1.01,-0.62,3.14,-1.62,1.35,-0.87,1.84,-1.68,-1.94,-0.31,-2.67,2.1,-1.48,-0.59,0.52,-2.26 +C1147,3.88,-0.11,-1.13,-3.07,-4.12,-0.13,0.26,2.53,0.3,-0.62,-1.96,-2.39,-0.31,-0.38,1.73,-0.64,1.8,1.38,-0.48,0.88,0.04,-0.41,-0.48,2.55,2.33,1.22,0.23,2.32,-1.04,0.61,2.07,-3.9,1.08,-0.88,4.49,-2.3,0.22,0.46,1.01,1.18,0.97,0.56,2.13,-1.21,1.8,1.34,-0.85,0.92,0.94,-2.83 +C1148,2.95,1.25,-1.88,-1.91,-0.2,-0.56,0.6,-0.58,-0.45,1.7,0.37,1.35,-0.51,0.07,-0.67,2.19,-1.29,-0.17,-1.99,-0.15,-0.42,0.43,-0.52,-0.2,-0.6,-1.02,-0.43,1.19,0.63,2.95,2.6,0.25,1.53,-0.11,0.62,-2.23,0.73,0.41,-1.11,-1.08,-1.84,-0.51,0.4,0.53,-0.72,-0.14,0.49,-0.08,-1.27,-0.43 +C1149,3.33,6.59,4.73,5.95,-0.83,-1.08,-0.15,0.5,-3.13,3.14,-0.09,-1.57,1.7,-2.63,3.6,-2.27,2.94,4.78,1.65,-0.36,1.42,3.16,-1.02,-1.63,-0.32,2.27,0.22,1.29,4.2,3.12,-0.76,-2.04,0.35,3.59,1.83,-1.66,-2.46,0.7,2.3,-1.22,1.6,-1.86,-1.17,0.55,-0.8,-0.37,1.7,0.99,-3.46,-2.12 +C1150,2.1,-12.11,3.43,3.56,4.94,-0.09,-0.5,1.52,1.51,-0.11,1.11,0.63,0.42,-1.31,-2.94,1.01,2.54,-1.94,3.89,0.47,4.48,4.11,3.63,-4.57,0.67,2.11,-3.96,-0.96,-0.71,2.8,2.47,0.07,2.69,-4.66,0.21,-0.9,-1.18,-2.41,-3.89,1.79,-1.37,-1.34,4.34,-4.72,-2.4,4.89,-2.39,0.58,1.04,-0.87 +C1151,1.29,-12.3,2.95,4.56,4.31,-0.58,-2.07,5.08,-0.8,-3.03,0.26,-2.29,0.87,-5.54,-0.03,-0.57,0.1,-4.72,-2.96,-5.34,4.73,1.89,-3.37,2.25,-3.86,-0.5,-0.42,3.5,1.43,1.15,-1.35,4.39,-1.47,-0.24,8.18,4.33,-0.14,-0.65,-1.82,1.75,-3.23,-1.98,3.84,0.24,0.75,0.57,2.25,-2.07,-0.22,0.6 +C1152,4.07,0.94,-0.74,-2.38,-0.95,-0.8,0.02,2.51,-0.22,0.24,-0.76,0.06,0.15,0.58,0.02,1.2,-0.78,-0.5,1.6,3.15,-0.2,-0.22,-1.18,-0.26,0.7,-0.33,-1.7,1.24,-0.46,0.85,-0.86,-1.27,0.31,-0.24,-0.05,-0.69,-0.94,1.03,1.18,-1.24,-1.54,0.69,1.22,0.28,0.4,-0.56,-0.06,0.35,-2.17,0.76 +C1153,3.03,-3.19,-0.11,-0.76,-3.57,-0.35,-1.07,-0.22,-0.88,1.04,1.2,-0.75,-1.71,0.02,-1.57,1.19,-1.1,-3.86,1.32,1.34,0.94,1.61,-3.42,1.04,4.22,-3.82,3.19,-2.29,-0.56,2.67,-0.22,-1.79,1.24,-3.1,2.32,1.18,-2.3,-2.15,0.79,-1.24,-1.19,0.4,1.51,1.52,-0.78,0.84,-1.15,-0.66,0.99,1.52 +C1154,3.64,-0.47,-0.94,-1.49,-2.55,0.97,0.82,-0.19,0.05,1.66,3.11,2.05,3.22,-1.67,-0.93,-2.33,0.45,0.87,2.93,0.02,-0.72,-0.17,0.48,-0.73,3.39,-0.48,1.49,-0.23,-2.07,1.03,1.24,1.6,-0.04,1.23,1.47,2.6,-1.74,-1.61,3.71,1.46,2.5,0.39,-0.37,0.7,-0.33,0.15,-2.49,-1.33,-1.52,0.56 +C1155,6.41,3.51,-2.64,-2.37,2.84,-0.61,1.42,-0.8,1.13,1.48,0.16,-0.87,1.54,-2.14,-0.79,0.93,0.86,1.19,-0.93,-2.88,0.05,1.11,-0.61,-0.2,-1.12,-3.71,-2.74,1.04,-0.43,-0.17,0.6,-1.1,2.56,-2.07,0.26,1.93,-1.28,-1.33,-0.71,-1.07,0.41,-1.79,-1.62,0.18,-1.6,-2.73,-2.09,0.39,-1.26,2.02 +C1156,3.91,-1.29,-0.56,-0.21,2.56,-0.31,0.21,-2.71,0.54,2.33,-0.86,1.07,-3.36,0.97,1.59,0.81,-0.35,-0.48,-0.75,0.75,0.74,0.1,0.07,-1.92,-2.36,-1.05,2.07,-0.81,-1.24,-2.62,-1.1,-1.98,1.73,0.94,-0.06,3.2,2.11,-1.51,-1.46,0.65,-3.24,-1.36,-0.72,1.06,3.43,1.38,1.11,-1.16,-1.73,-1.96 +C1157,3.59,-0.24,-1.06,-3.11,-0.58,-0.25,0.53,-0.9,-0.33,-1.18,2.12,1.92,1.68,-2.45,0.74,0.85,0.11,1.93,0.73,0.92,0.21,3.06,-0.42,-0.91,0.55,0.17,1.51,0.88,-1.43,-2.01,1.35,-0.83,1.23,-1.62,0.52,1.42,-1.26,-1.69,0.49,-1.95,-4.05,-2.55,-0.95,-0.47,0.41,-2.67,-0.78,2.86,-1.49,-0.44 +C1158,5.72,1.58,-1.4,-3.29,2.4,0.04,1.06,0.91,2.6,0.21,1.39,0.53,0.46,-2.25,-2.4,-0.58,-0.63,-0.45,2.86,0.26,0,3.57,1.41,0.26,-0.41,-1.67,-1.24,-1.36,2.13,-0.78,1.25,1.46,-0.13,-1.15,-0.46,1.15,-0.15,1.92,1.09,0.95,-0.86,1.6,-2.5,0.22,0.5,1.46,-1.71,-2.3,-0.63,-1.11 +C1159,4.98,1.1,-1.04,-2.66,-0.96,0.18,0.38,0.4,-1.52,0.6,0.63,-0.69,1.55,1.05,0.02,3.52,0.04,-2.72,0.15,0.05,-0.21,-0.01,-1.84,-0.61,0.98,0.69,-1.9,0.3,-2.81,1.36,-1.48,-2.06,-0.66,-3.37,-0.83,-0.27,0.41,-0.87,-0.22,0.83,1.35,-1.38,-1.47,-1.46,0.31,0.78,0.53,-0.8,0.68,-1.28 +C1160,6.18,0.81,-2.46,-2.19,2.26,-0.39,0.12,-0.01,1.52,-0.45,-0.15,0.74,0.07,-1.86,0.32,-0.25,1.44,0.23,0.14,1.21,2.11,-0.25,1.37,-1.92,-0.08,0.42,-0.85,1.56,-2.23,1.29,-0.3,-0.09,-1.67,2.91,-1.31,-0.1,1.41,0.82,0.98,-0.5,0.83,0.72,-0.48,2.11,0.09,-0.93,-1.1,1.78,0.97,1.97 +C1161,3.22,-3.25,0.2,-0.96,-3.85,-0.87,-1.44,-2.1,-0.6,3,-0.55,0.76,1.13,-2.16,0.62,0.6,-1.05,0.54,0.59,0.61,-3.55,0.01,1.77,-1.06,1.29,-0.29,-0.84,2.85,2.83,-0.88,-1.26,0.46,-1.67,-0.16,1.5,-0.82,-1.34,1.3,0.16,-0.37,1.15,-0.21,1.68,0.29,-0.63,2.69,2.72,0.77,-1.88,1.31 +C1162,-9.92,1.34,-0.91,-3.48,1.81,2.89,0.7,-0.27,-0.03,1.13,-1.27,0.43,0.08,0.16,0.03,0.63,0.26,-0.67,-1.3,1.59,0.11,-0.27,1.22,-1.18,0.7,2.49,4.49,-0.29,-1.8,1.43,0.22,0.2,-2.35,1.33,-1.7,2.73,-1.43,-1.68,-2.98,-1.23,2.58,0.21,-0.76,1.01,0.14,1.48,0.53,-1.73,0.56,0.96 +C1163,3.77,-4.93,0.52,1.27,4.08,0.38,0.82,-3.51,1.36,3.37,-0.33,-1.06,2.37,-2.37,-4.71,-2.87,-0.23,1.93,-1.02,-1.02,-0.25,0.26,-1.2,2.74,-0.1,-0.43,1.12,-0.33,-1.67,3.1,0.53,-0.2,2.48,1.19,-0.29,-0.44,-0.69,-0.11,-0.65,-0.96,0.1,-1.27,-4.31,0.47,-1.69,-3.22,0.18,0.12,-2.29,3.72 +C1164,5.57,2.2,-1.57,-2.89,-0.33,-0.86,1,1.17,1.54,1.52,-0.44,-1.3,-0.78,-1.33,1.29,0.37,1.94,2.15,1.82,0.14,-0.18,0.67,-0.44,0.05,0.95,0.21,1.17,3.42,0.41,-1.43,-0.88,-0.25,-0.55,-1.03,-1.79,-1.48,0.33,0.97,1.25,0.34,-0.08,-1.85,-0.96,-1.46,-0.21,-0.64,-2.25,1.18,-0.81,1.8 +C1165,-13.36,-0.07,-0.94,-3.15,0.33,4.11,-2,1.27,-1.62,-0.56,-3.74,0.43,-1.61,1.58,1.27,0.83,0.46,0.39,-1.16,3.5,1,3.08,1.3,-4.01,-1.73,4.11,0.54,-2.88,-2.89,4.37,-0.98,1.63,1.84,0.82,4.44,1.96,2.28,2.08,-1.27,-2.8,-0.84,3.76,3.3,-0.21,-2.46,-4.05,-0.28,-0.01,4.2,-0.11 +C1166,2.2,-6.47,1.78,1.56,4.05,-0.44,-0.6,-3.62,-0.51,-1.67,1.03,-1.51,-1.44,-1.23,-1.97,-2.1,2.79,0.1,-3.66,-1.73,-2.03,0.54,0.64,1.25,0.73,-2.67,0.55,-0.31,1.73,-0.76,1.13,0.03,3.89,-1.31,1.62,3.03,1.33,0.43,1.09,0.85,-0.82,-0.29,-2.86,-1.52,1.06,0.68,-1.34,-0.27,-1.42,1.83 +C1167,4.59,-1.92,-1.74,-1.89,6.35,0.3,2.55,-0.88,1.78,0.03,0.93,-1.65,-0.24,-0.51,-1.41,-0.14,1.24,1.81,-0.63,-0.31,1.71,-2.17,-0.87,-0.64,-0.68,-3.06,-0.36,0.8,-2.76,-1.83,2.7,-1.41,-1.12,-0.97,0.13,-0.42,-0.47,0.39,0.86,-2.11,-0.17,1.26,0.06,-0.73,0.99,-1.66,0.8,1.12,0.29,-0.23 +C1168,3.36,-0.79,-1.4,-2.66,-0.9,0.56,-1.19,-0.16,-1.7,0.21,0.42,0.78,-0.32,2.38,0.09,0.2,-0.51,-0.44,0.88,-0.12,-1.68,-0.9,-0.14,-1.27,0.15,0.41,-0.83,-2.62,1.35,0.16,1.22,-1.53,0.71,2.36,-1.26,0.25,1.86,-0.12,1.55,0.15,-0.34,-0.03,-0.32,-0.38,-0.3,1.93,-0.82,0.56,-0.78,-1.6 +C1169,4.37,-3.21,-1.9,-1.36,4.24,-0.39,0.68,-3.64,0.79,1.04,-0.7,2.35,-1.61,-0.07,-1.69,1.62,-1.02,-0.75,-2.79,0.59,-1.82,-0.32,0.32,0.16,-1.89,-1.25,1.02,-0.73,0.83,-0.85,-2.26,-0.84,-1.09,-2.59,1.01,0.37,0.01,-3.17,-0.02,-0.45,1.22,-1.44,-0.64,-1.77,0.87,1.7,1.48,-0.42,2.6,2.66 +C1170,4.23,-1.16,-0.78,-2.15,-0.38,-0.1,-0.55,-2.63,0.12,1.35,1.24,-0.25,-0.91,-1.08,2.56,-0.92,-0.93,-0.49,-2.32,-1.5,2.49,-1.43,-2.13,0.92,1.08,-2.31,1.4,-2.12,0.12,-0.22,1.18,0.5,-0.16,0.3,1.09,0,0.42,0.93,-1.8,-0.9,-2.91,1.07,-3.68,-1.6,0.17,-0.98,0.57,0.32,0.63,0.97 +C1171,3.53,-2.7,0.17,-0.67,-2.69,-0.37,-0.04,-0.69,0.84,0.03,-2.04,-0.38,0.32,1.66,-0.06,-2.78,-3.32,-3.19,0.09,1.35,-2.68,1.52,-1.1,-2.88,-0.57,0.68,-0.29,0.21,0.54,-1.78,-1.2,1.37,0.94,-0.03,-2.5,1.27,-2.16,-3.64,0.67,3.3,-0.89,3.23,-2.34,2.26,-0.62,-0.85,0.46,-1.7,-1.49,1.67 +C1172,3.53,-1.16,-1.56,-2.38,-1.22,0.19,-1.18,-0.33,-0.69,2.47,0.76,0.55,-0.07,0.76,0.79,-1.01,-0.57,0.3,-0.39,-0.72,0.31,0.33,-0.28,0.45,1.24,0.67,-0.49,0.67,-0.52,1.22,-0.53,0.9,0.74,-0.23,0.93,0.95,0.6,-0.85,1.66,0.47,2.29,0.6,0.34,-1.17,-0.34,-0.04,0.26,-2.01,0.78,0.64 +C1173,-10.4,3.31,-2.76,-4.62,4.21,3.25,0.86,-0.25,-2.85,0.47,-2.44,0.2,-1.75,0.04,-1.23,-1.47,-3.34,-1.7,-0.66,-0.72,-3.75,2.51,0.64,2.88,1.3,0.14,0.92,0.6,0.04,-1.45,1.36,-0.2,-1.5,-0.11,0.07,1.15,-0.89,-1.83,-4.43,-2.1,0.55,-0.57,1.72,-1.48,0.05,0.01,-2.37,0.42,0.87,1.19 +C1174,3.26,9.86,9.13,8.73,2.21,0.58,-0.15,-0.55,-1.58,0.05,-1.87,-3.11,-1.06,0.39,1.32,-1.09,-5.3,-2.57,1.22,6.33,-2.17,0.51,0.54,0.97,0.75,-1.27,0.88,-0.36,1.1,0.08,-3.29,2.02,2.35,0.27,1.25,-0.42,3.43,0.14,-2.27,-1.43,-1.38,-4.96,-0.11,-2.9,-0.17,-1.27,1.03,-1.33,-5.44,3.57 +C1175,5.59,3.57,-1.9,-3.15,2.25,-0.53,3.01,1.28,2.1,-0.56,0.18,0.06,-2.13,-0.65,-0.5,-0.09,-1,1.08,-1.58,0.91,0.19,1.01,-0.76,0.74,0.76,-0.72,0.27,-1.7,0.15,-1.53,-1.04,1.33,-1.12,-0.47,-1.85,0.14,-0.55,0.88,0.58,0.21,-0.45,3.04,0.07,0.45,-1.47,0.87,-0.18,0.63,0.15,-1.64 +C1176,2.39,-5.67,0.37,0.22,4.02,-0.01,1.96,-4.43,0.93,0.69,3.17,-2.79,-0.22,-0.37,1.37,-2.02,0.14,2.02,0.44,-1.47,-2.68,-1.92,-0.2,1.63,1.46,-0.52,-0.53,0.02,0.97,0.89,-0.63,-0.9,2.09,0.06,-1.01,-0.01,0.57,0.57,1.57,0.05,1.4,-0.03,1.56,-0.33,-0.92,0.47,1.32,1.79,0.64,-0.7 +C1177,-15.25,0.04,1.61,1.19,-1.84,2.15,-5.1,0.34,2.26,1.87,0.86,-1.88,1.29,0.47,-2.33,0.74,-0.97,1.69,-0.6,-1.92,-0.24,0.12,-1.87,-3.44,1.21,-1.98,1.69,-0.65,3.43,4.99,0.22,0.17,1.04,0.86,0.02,-2.88,2.23,-2.58,2.05,-0.11,-1.69,-0.57,1.73,-2.13,-0.02,-1.43,-0.68,3.29,0.31,-1.44 +C1178,4.61,-2.64,-0.01,-0.78,-0.12,0.6,-1.25,-3.44,3.7,0.74,-3.07,-1.53,1,-1.21,-0.31,1.46,0.46,1.64,-1.5,1.53,-1.14,0.37,0.73,-5.16,-3,-0.28,-0.35,-1.97,0.77,4.82,1.42,-0.7,0.91,3.33,1.95,2.16,-1.93,-1.28,0.61,-1.85,0.19,2.25,-5.29,0.23,2.63,-3.06,-1.96,-0.19,-1.63,1.52 +C1179,3.73,-7.87,0.83,2.48,10,-2.3,1.47,2.05,-0.99,1.22,0.03,1.23,1.3,-1.7,-0.24,0.58,1.03,1.46,-1.78,-0.36,0.11,2.4,0.41,-0.63,-0.07,-1.6,-0.48,0.28,-0.47,-3.57,-0.05,1.76,1.62,-0.25,0.51,-2.06,0.31,2.52,-3.48,3.01,1.38,2.11,1.26,-1.27,-0.42,1.6,-1.29,0.98,-2.23,0.79 +C1180,-10.35,2.05,-1.14,0.21,2.06,1.82,-0.03,-1.29,-0.29,0.21,2.41,0.71,0.83,1.32,-0.55,1.98,-0.61,1.42,0.67,-1.41,-2.32,-0.67,-1.55,1.52,0.53,3.33,0.57,-0.84,-0.53,0.31,-1.22,1.35,-1.25,0.18,-0.85,2.77,-0.19,0.49,-1.57,-0.79,2.1,1.67,-2.18,2.37,3.35,1.43,1.73,-0.61,1.47,-2.18 +C1181,3.66,7.47,4.49,3.55,1.91,-1.42,1.13,-0.59,0.64,-1.2,-2.42,-1.51,2.05,0.27,-1.32,2.24,2.54,0.59,0.09,-1.37,-0.42,-0.09,-1.31,1.09,-0.93,-0.92,-1.24,1.99,-0.6,0.09,-0.83,-0.27,1.08,0.85,-0.23,2.3,-0.31,-1,0.89,1.44,-0.5,-0.64,1.53,1.05,-1.73,-1.34,0.02,0.74,0.51,1.69 +C1182,5,1.71,-3.15,-2.49,3.49,-0.09,2.52,-0.99,2.19,1.67,-0.33,2.02,-0.58,-0.54,-1.54,1.37,1.22,1.61,2.23,0.34,1.71,-0.61,-1.15,-0.79,0.23,0.26,-1.35,-1.93,-1.42,0,-0.75,-0.31,0.33,0.82,1.04,0.14,-1.97,-0.74,1.59,-0.41,-0.29,-0.37,0.42,-0.46,2.03,-2.01,-0.5,0.13,0.18,0.68 +C1183,-12.41,-2,-0.09,-0.89,-1.82,-6.33,4.68,-0.11,1.2,-3.07,0.48,-0.06,-2.97,1.04,2.81,-1.29,-1.61,-1.01,-0.32,-1.35,0.7,-0.97,0.62,-0.7,0.74,-0.74,1.14,-0.97,-4.43,-0.31,0.59,-0.55,0.16,1.2,1.21,-0.63,0.76,-2,-1.25,2.5,-2.74,0.48,-1.88,-1.8,0.64,0.04,0.65,1.28,-0.41,0.67 +C1184,-11.52,0.36,1.06,-0.38,0,3.17,-2.65,-0.59,0.38,-2.21,1.02,1.68,-0.82,-1.46,0.52,-1.39,0.15,-1.52,-1.97,0.97,0.18,-2.44,-1.73,1.91,1.8,-1.24,-2.75,1.12,0.74,2.11,0.9,0.19,-1.59,1.88,-0.32,1.29,-1.31,1.46,1.64,1.31,-2.18,-2.5,-0.79,4.96,1.2,-0.68,-0.22,0.92,2.06,0.48 +C1185,-0.81,-12.23,6.69,9.97,-18.06,25.38,21.57,-1.33,-1.53,-5.83,2.97,-6.85,8.63,-0.26,0.7,5.44,0.7,0.28,-8.21,-0.76,0.29,8.77,0.85,0.28,4.27,-5.63,-0.55,-5.47,-1.47,1.64,0.68,-4.33,5.65,-2.09,0.58,-4.13,4.94,-4.76,-1.09,-1.03,1.68,-5.75,1.98,3.55,0.07,2.51,-6.35,0.69,-3.68,0.77 +C1186,1.72,9.21,7.94,8.89,0.65,0.21,-0.62,-0.67,-3.96,0.83,0.4,0.22,-0.1,1.31,0.96,1.47,-1.6,-4.1,-3.03,-3.55,1.73,0.56,2.41,-4.55,-1.26,-2.38,-0.66,-3.98,2.09,0.36,3.44,-5.17,-5.23,1.38,0.47,1.53,3.55,1.77,-0.88,-2.66,0.14,-1.67,1.66,2.61,-1.32,-1.16,0.97,-1.91,-2.45,-0.01 +C1187,-11.65,2.58,-1.79,-1.63,3.25,-0.73,1.46,-0.6,0.54,-1.1,-0.29,1.76,-0.24,-1.85,-0.47,2.98,-2.41,1.27,3.47,-3.14,-0.58,-1.3,-3.9,2.27,-6.82,-3.1,-1.26,2.32,0.5,0.86,2.16,-0.85,-3.2,-0.89,0.54,-0.52,-0.58,-0.39,-1.95,0.81,0.67,-0.08,-0.68,2.8,2.72,-1.17,1.54,0.92,-2.24,-1.78 +C1188,1.84,-3.59,0.46,-0.89,-4.43,-0.29,-1.93,-0.46,-2.27,0.48,-0.83,0.06,-0.5,3.32,1.47,-0.52,-1.42,-0.45,0.01,-4.16,0.83,-0.67,-2.88,-3.13,-1.44,-6.29,3.66,-0.91,0.54,-0.38,0.2,-0.5,1.57,-4.56,-0.07,1.26,3.55,-0.09,2.53,0.73,2.09,2.67,-3.97,2.12,-1.06,0.11,0.97,1.82,-0.53,-1.13 +C1189,-10.46,0.11,-0.83,-2.17,1.96,1.81,1.17,1.67,-1.22,-0.1,1.34,-1.17,-1.67,0.78,-1.71,2.48,0.43,-1.86,-0.85,0.4,0.01,0.11,1.8,0.56,1.92,-1.61,-1.74,2.13,-1.62,3.19,2.15,-0.16,0.84,1.33,0.32,-0.88,-1.22,-1.29,-0.25,-1.3,0.82,-2.43,3.33,-1.7,-0.37,-0.68,-0.36,0.29,-1.96,-0.62 +C1190,5.01,-0.26,-2,-3.19,-1.11,-1.55,-0.43,-0.98,0.12,2.01,-0.04,1.54,1.61,-2.69,1.28,-0.93,0.92,-0.79,3.24,0.68,0.76,-1.76,1.71,-0.74,-1.34,-0.3,1.19,-0.97,1.6,1.13,0.19,0.14,2.06,-0.32,1.22,-0.61,0.01,2.22,-3.67,0.33,0.23,-0.21,-0.99,0.76,-1.26,0.86,-2.29,1.12,0.33,1.58 +C1191,3.83,-5.32,-0.33,0.02,0.18,1.2,0.58,-1.86,1.12,0.58,-0.68,-1.08,-1.61,-4.03,0.53,-2.09,0.98,1.55,-0.06,-0.47,0.46,-2.15,1.74,-0.56,1.43,0.31,-1.27,2.78,1.64,-0.54,-2.94,-4.12,-0.3,0.1,-0.39,0.1,-0.43,-0.99,1.68,-1.13,-2.59,-0.65,-2.7,0.52,-0.61,-0.9,0.11,-1.27,-1.53,-0.87 +C1192,2.92,0.21,-1.38,-2.22,-1,-0.05,0.12,0.23,-0.43,1.12,-0.33,-0.27,-0.64,-1.67,2.85,-0.99,-0.23,-0.23,-2.38,0.69,0.76,-1.09,0.47,0.09,1.99,1.61,-0.22,-2.6,1.61,0.28,2.99,0.32,-0.12,-1.06,1.59,0.89,0.46,-1.3,0.3,-0.67,-0.5,-1.22,4.3,2.65,0.86,-0.22,-1.7,0.17,0.51,-0.43 +C1193,2.5,-0.67,0.04,-1.36,-2.66,-0.37,-1.32,0.43,-1.11,-0.4,-0.02,0.4,0.53,-0.37,-0.18,-0.78,0.59,1.43,0.27,-0.47,-1.04,-0.8,-0.58,0.37,0.23,-1.46,1.12,2.9,-1.17,2,0.2,-0.19,0.41,0.7,-0.9,-0.04,-0.28,-0.49,-0.96,-1.11,-1.64,-0.84,0.76,-0.33,0.29,-0.94,0.99,0.78,-0.62,0.04 +C1194,-7.06,-1.81,7.17,7.09,-6.33,3.89,-11.81,3.21,11.7,3.84,-0.46,-1.02,-10.24,-0.21,4.99,-0.32,-1.79,-2.28,-1.89,3.66,-0.69,3.59,-3.14,6.02,-0.5,-1.27,-0.45,1.17,0.87,-3.6,-4.16,-3.96,-1.3,-0.94,0.26,-0.26,-1.23,0.8,-3.1,-2.19,0.76,-0.33,2.73,-2.33,-0.77,3.03,-4.57,2.76,-7.05,-2.79 +C1195,4.86,-7.3,0.65,1.7,-0.59,0.96,-1.27,-5.28,-2.69,0.62,-3.65,1.09,2.9,0.88,0.33,-3.44,-0.41,0.96,-0.68,1.56,-1.57,-0.35,-2.64,2.03,-0.17,-2.45,1.87,2.62,0.03,-2.27,0.39,-0.5,-0.84,0.7,-1.75,3.17,-0.99,-0.2,-0.4,0.28,2.06,-1.57,-0.88,0.46,-2.35,-1,-0.15,-0.64,-0.08,0.38 +C1196,3.66,7.83,0.87,2.47,4.03,0.17,2.77,1.18,2.26,-1.83,0.49,0.78,-0.05,0.09,1.15,0.47,-1.28,-0.89,-0.34,-0.49,0.39,-0.32,0.72,-1.64,-1.32,-1.57,1.33,-0.76,1.16,-0.65,0.61,1.06,1.41,-1.78,0.04,-1,-0.41,2.27,1.24,1.76,-0.02,-1.27,2.26,0.11,0.92,0.73,0.1,-0.85,1.68,-1.69 +C1197,6.27,2.45,-1.6,-2.93,3.23,-0.2,1.68,1.22,1.68,-1.02,0.09,1.41,-0.47,-0.56,-0.59,-0.09,1.04,0.36,-0.72,-0.35,1.19,0.43,0.82,1.17,-0.05,0.49,-1.46,-0.01,0.96,-0.26,-0.09,0.3,0.23,0.08,0.05,0.16,-1.29,-1.34,0.64,-0.16,0.55,0.24,-0.76,-0.09,-0.01,-0.27,-1.02,-0.06,0.77,-0.72 +C1198,4.41,0.02,-0.69,-2.48,-2.58,-1.02,-0.28,1.87,0.96,0.6,-0.87,-1.98,0.58,-1.17,0.87,-0.06,0.18,-1.43,-0.21,1.54,-0.75,1.29,-2.24,-0.78,-0.4,-1.56,2.14,-0.97,-2.15,-2.59,2.1,2.94,-2.07,-1.32,-1.19,-0.89,2.49,0.49,-0.79,0.15,1.2,-1.02,1.24,3.56,-2.58,0.45,-0.6,-3.64,-2.03,0.85 +C1199,3.79,-1.35,0.02,-0.88,-3.57,-0.09,-0.01,2.11,0.65,1.23,-1.34,-0.12,-0.46,2.41,3.89,2.38,2.08,0.95,-1.94,0.69,-0.31,-1.28,-0.15,-0.81,2.1,-0.04,2.02,-2.35,0.76,-1.14,0.23,2.13,-0.51,0.71,1.27,2.09,-0.78,3.36,-0.71,1.74,-1.05,1.71,0.99,-2.61,-2.19,-2.35,0.42,1.21,-0.29,0.76 +C1200,2.77,7.93,5.92,5.62,2.36,-1.42,0.24,-1.58,-0.4,0.15,2.08,-1.01,3.83,-1.51,1.8,1.6,-3.89,1.81,-0.2,-0.53,-2.27,2.16,1.63,-0.48,0.04,-1.46,1.46,-0.63,-0.64,-2.26,-2.07,-0.69,0.45,1.79,-0.14,0.29,-0.36,2.13,0.54,-1.92,0.29,0.42,0.05,2.02,-0.33,-1.01,-0.66,0.62,-0.21,0.07 +C1201,6.32,3.02,-1.89,-2.97,1.57,-0.85,1.02,2.63,1.33,-1.7,-2.41,-1.41,-0.41,3.15,-1.5,0.13,-0.46,0.29,-1.35,0.26,-1.94,2.57,-3.69,-2.55,0.03,-0.46,-1.2,0.55,-2.08,-1.17,-0.28,0.4,1.2,-0.36,-0.05,-1.05,3.16,-0.29,-0.5,1.7,2.85,1.36,0.7,1.1,0.56,-1.09,0.32,-1.46,-0.11,1.24 +C1202,4.31,1.43,-1.15,-3.35,-1.98,-0.86,-0.82,0.63,-0.92,-0.18,1.44,0.95,0.24,0.34,1.72,-3.13,-0.25,1.66,-1.58,-3.65,0.77,-1.66,2.16,-2.38,0.93,0.82,1.21,1.82,0.75,-0.65,2.06,0.24,4.25,4.01,-1.68,-0.87,1.72,0.73,2.67,1.96,-0.71,-1.4,-1.26,1.25,2.2,0.35,-1.2,-1.33,-1.57,0.24 +C1203,2.56,-1.06,-1.7,-2.97,-2.54,-0.63,-0.73,-1.06,-1.03,0.87,-0.11,-0.38,-0.06,0.96,-0.46,-0.9,-0.6,-2.04,-0.61,-0.64,-0.06,-1.06,-2.48,0.72,-1.73,-1.18,-0.26,-0.83,1.12,-2.5,1.66,0.16,-1.61,-1.19,-0.4,-1.03,0.66,1.25,-0.31,-0.99,-0.92,0.96,0.53,-2.04,1.06,2.42,-1.49,-0.08,-0.02,0.9 +C1204,2.87,0.65,-0.47,-1.82,-1.34,-1.22,0.27,-1.61,-1.14,1.74,2.23,-1.18,-0.13,-1.65,-0.26,2,-1.12,1.1,1.04,-0.56,-1.46,0.32,1.1,-1.26,-0.63,-0.45,1.75,-0.41,0.93,0.22,-0.19,-1.93,-2.8,-1.32,-1.75,0.46,-0.11,1.08,-1.56,-0.93,-0.64,2.39,-0.93,-0.44,1.96,2.67,-1.38,-0.37,0.11,0.2 +C1205,3.9,8.15,2.98,3.89,1.37,-1.13,-0.13,-0.3,-0.38,-0.8,-0.67,0.5,1.39,2.51,-1.81,2.19,-1.49,-0.51,-1.38,2.8,2.78,-4.12,0.03,-2.08,-1.69,-1.3,0.22,-0.04,-0.71,2.53,-1.44,0.03,-1.61,1.6,-1.47,-1.85,0.2,2.51,1.23,-0.07,1.14,1.43,0.26,1.46,0.2,3.56,0.76,1.16,0.32,0.08 +C1206,4.56,-3.13,0.21,-0.89,-1.22,-0.04,-2.57,-4.39,-1.92,1.39,-0.29,-1.92,-0.43,0.38,-4.72,1.16,-0.49,0.55,2.55,-0.9,1.42,0.76,1.03,-0.31,1.31,0.17,-0.32,-0.34,-1.37,-1.7,-1.95,3.15,-2.67,-2.89,1.92,-2.3,1.98,-0.24,0.82,-0.98,2.18,3.29,1.6,-2.3,2.68,1.08,-0.76,-3.66,-0.46,-0.03 +C1207,-12.36,0.34,-0.55,-1.66,-0.65,2.32,-2.02,0.34,0.08,0.76,-3.24,-0.74,-2.46,0.33,0.08,-0.68,1.77,-1.97,-0.72,3.47,-2.8,0.49,-0.65,-0.34,1.63,2.26,3.58,2.14,1.35,-1.43,2.92,0.11,0.91,0.22,1.87,0.52,1.55,-0.44,-3.24,-1.75,0.94,-0.77,0.96,2.5,0.37,0.06,0.08,0.38,1.63,1.12 +C1208,3.95,-4.95,0.13,-1.39,-0.12,0.56,0.37,-4.36,-0.86,-1.22,-0.82,1.4,1.31,0.74,3.33,0.42,2.32,-3.44,0.16,0.4,1.22,0.11,-0.85,1.77,1.63,-1.75,-2.6,0.09,-3.02,-0.6,2.08,1.69,-1.1,1.56,0.89,0.21,-0.05,0.43,-1.45,1.06,2.68,-3.78,-0.23,0.51,0.65,-1.74,2.51,3.24,-0.44,-1.77 +C1209,6.33,3.29,-2.09,-2.5,1.81,-0.51,1.05,1.16,0.21,1.38,0.01,-1.79,0.34,-0.4,0.28,0.64,-0.3,-0.24,0.09,-0.79,-0.56,-0.64,-0.66,-1.21,-1.27,0.54,0.09,-2.47,2.1,-0.15,-1.34,0.39,2.28,1.08,-1.82,-2.09,0.92,0.74,0.77,-1.44,-1.03,0.82,-0.67,-0.27,-1.54,1.03,-0.93,0.38,-2.11,-0.22 +C1210,-16.05,-4.06,3.72,2.34,-5.26,-5.94,0.05,-1.27,2.82,1.51,-2.43,-0.32,2.59,1.33,1.15,-2.56,2.62,-2.65,0.67,-2.39,-1.13,1.88,-1.3,0.7,-2.32,0.76,1.05,1.07,2.35,-1.24,1.71,2.09,-2.88,0.19,1.38,1.3,0.38,-0.97,-2.02,-0.61,1.8,1.33,1.21,-1.13,1.86,-2.05,2.51,0.39,-2.04,-1.23 +C1211,3.06,-0.52,-1.46,-2.64,-2.67,-1.79,-0.97,0.26,-0.97,0.98,1.02,1.31,1.95,-0.66,2.04,-0.4,-0.69,0.95,0.3,-0.21,0.96,-2.5,0.05,1.45,-0.37,2.2,1.46,-1.27,0.83,-0.27,2.61,-0.3,2.49,2.45,-0.11,-1.9,1.31,-0.59,-0.7,-2.35,-0.38,-0.91,1.29,-0.41,-1.54,-1.2,0.49,-1.13,-0.96,-1.91 +C1212,-11.47,-1.62,-1.87,2.14,-1.19,-5.1,1.97,-1.73,1.14,1.26,0.42,2.46,1.74,0.93,-1.15,1.49,-0.73,-2.47,-1.2,-1.58,1.59,0.54,0.48,0.44,-2.39,0.98,-1.42,-0.42,0.28,1.15,0.06,2.43,-0.03,2.28,0.76,1.26,0.36,-2.48,-0.8,0.96,-0.39,2.21,-0.22,-0.43,1.41,0.72,0.48,-0.73,-0.78,-1.01 +C1213,0.94,-2.05,0.6,1.28,-4.69,1.12,-2.33,-1.45,-1.72,1.23,4.6,-2.75,-0.91,-5.47,5.37,2.28,0.07,-1.25,2.99,-5.37,2.61,-2.35,0.36,0.24,-1.49,1.12,1.3,-0.06,2.73,0.33,-2.92,-0.65,1.61,-0.49,-1.59,-1.1,1.64,-0.31,1.71,-1.25,-2.22,1.23,0.03,-3.01,1.47,0.54,2.56,-1.47,1.05,-2.18 +C1214,-6.69,4.05,-4.44,-3.15,4.28,4.1,1.44,-0.02,-2.95,0.63,-0.13,-2.62,-0.43,1.3,2.09,-0.62,2.58,2.24,-1.87,-1.4,-0.64,1.84,-1.31,1.69,-0.21,2.85,1.18,-2.69,0.48,0.36,-1.15,-2.3,-2.85,-0.01,0.24,-2.07,1.31,2.15,0.06,0.99,-2.52,0.45,-0.01,0.17,1.13,1.09,3.46,0.6,-0.85,0.52 +C1215,3.47,-2.19,-0.31,-1.43,-4.33,-0.83,-1.07,0.93,-1.04,-1.8,0.3,1.04,0.45,3.22,0.64,-0.02,1.36,0.07,1.86,-1.29,-0.51,-0.61,-0.41,-1.33,-0.76,1.1,0.25,1.48,0,3.31,-1.18,-0.09,0.15,0.02,-0.11,-2.03,-2.05,0.18,-0.5,0.46,-0.13,-1.44,-1.66,0.69,-2.86,-1.67,-1.4,-1.58,0.62,2.73 +C1216,4.62,0.67,-1.32,-1.59,-1.65,-0.37,0.29,1.75,-0.95,-1.05,0.94,1.28,-1.29,1.05,-0.86,0.7,-1.25,0.88,0.17,1.19,-0.89,3.07,-1.35,-0.88,-0.35,-0.93,-0.99,0.45,0.77,-1.39,-0.05,-0.22,-4.69,0.9,-1,-0.88,-0.71,1.59,0.88,-1.27,-0.08,-2.86,0.13,1.57,0.98,0.6,-0.59,-0.89,-2.23,1.52 +C1217,3.74,-0.71,-0.45,-0.93,-1.68,-1.92,0.29,-0.2,0.6,0.8,0.93,0.59,0.93,-0.09,-0.1,1.73,1.53,-1.44,-1.13,0.38,1.18,0.09,0.15,1.22,1.91,-1.38,0.37,0.29,-1.05,-0.91,-3.19,-0.25,1.1,-1.05,2.54,-2.45,1.66,1.04,1.29,4.31,1.88,2.49,0.67,-0.09,1.83,0.01,-0.34,0.32,-0.51,0.11 +C1218,3.8,0.78,-1.67,-3.25,-2.95,0.8,-0.74,0.04,0.07,1.67,0.84,-0.3,1.47,-0.97,-0.27,-0.23,0.38,-0.51,-0.34,1.31,-1.76,0.41,0.87,2.34,-1.02,0.29,-0.79,-2.44,-2.33,0.05,-0.06,-0.36,-1.95,-1.52,-1.34,-0.32,-0.41,-1.54,0.35,-0.53,1.94,0.77,0.47,-0.43,-0.57,1.73,-0.11,-1,2.04,-1.3 +C1219,3.67,6.79,4.61,3.35,0.46,-0.83,-1.13,-0.71,-0.64,0.03,0.28,-1.76,0.49,0.03,0.12,0.38,2.48,1.4,-1.35,-0.22,-1.86,0.21,1.02,0.46,-1.46,2.36,-0.17,-1.88,-2.04,0.87,-0.63,-1.26,-1.53,-1.02,-1.57,1.36,-0.35,2.17,-0.32,-0.49,-1.47,0.54,-1.45,-0.25,0.15,0.14,-0.72,1.12,-0.91,-1.54 +C1220,3.56,7.55,4.12,4.37,1.57,0.24,0.07,0.6,1.06,1.1,-1.66,-2.06,-2.44,1.21,2.01,0.88,-2.6,-3.11,-1.07,0.08,-3.28,0.24,2.24,0.97,-0.19,-0.33,1.83,-1.08,-2.41,-1.44,-2.37,1.72,-0.03,-0.22,1.21,0.36,0.65,-1.39,-0.89,-1.32,0.64,1.92,0.56,-2.02,-1.03,-0.71,-0.58,-1.71,-0.75,-0.48 +C1221,3.36,-10.57,2.82,3.86,4.11,-0.25,-1.05,4.28,-2.34,1.67,0.12,1.79,0.64,-0.27,0.46,-5.22,4,2.31,-1.77,0.56,-1.13,-3.11,8.6,1.88,-0.24,4.06,1.68,2.97,6.56,3.5,-3.33,-6.47,-10.13,0.59,-0.75,5.29,-2.02,-0.72,0.03,-2.4,-3.8,-3.54,-4.83,2.96,-0.18,-6.45,-0.63,-4.05,-2.12,-0.45 +C1222,-13.78,-0.36,2.32,1.11,-2.68,1.73,-6.87,-0.87,3.98,0.3,0.75,0.58,-0.17,-1.52,-0.01,0.72,0.78,2.36,-4.12,-1.27,-0.57,0.27,1.31,1.06,1.26,-1.41,-1.82,-0.87,-0.61,0.98,2.26,-1.78,0.46,-1.01,1.7,-0.97,-1.41,0.32,2.14,-0.16,-0.39,0.44,0.06,0.98,-0.89,-0.3,1.26,-0.66,-0.97,-0.35 +C1223,3.95,-1.15,-0.86,-2.17,-2.35,0.45,-1.26,-0.72,-0.42,1.03,-1.62,1.17,0.01,-2.02,-0.09,-0.45,-0.13,-0.22,-0.16,1.13,-2.48,-0.37,2.62,0.85,-1.25,-1.07,-0.23,2.23,1.25,0.49,-2.48,-0.38,0.81,0.62,2.29,-0.97,-0.38,-0.1,0.44,1.69,-0.09,-1.53,-1.37,0.92,-0.37,0.25,0.44,1.79,2.04,-1.96 +C1224,4.51,-1.97,-0.15,-1.48,-0.62,0.95,-0.03,-2.1,-0.22,-0.16,-1.63,-1.28,-0.42,1.39,-0.21,2.98,1.05,-1.06,1.47,-0.66,-3.31,-2.02,-1.78,-2.59,3.06,0.98,0.4,0.42,-1.93,-3.12,1.26,-1.01,-0.53,-1.2,0.11,1.02,1.8,0.83,1.03,2.36,-0.4,-2.33,-0.91,-0.82,0.28,-2.29,-0.08,-2.11,-1.75,2.28 +C1225,0.93,5.53,6.15,6.91,-2.43,2.01,-3.2,-1.49,-0.33,1.98,0.94,0.05,-3.9,1.15,-0.72,0.15,2,1.11,2.2,-2.79,1.05,0.87,0.54,0.77,-1.88,-0.32,-0.83,3.25,1.51,2.13,2.31,-0.05,0.03,-0.59,-0.12,-1.75,4.93,-3.75,1.44,-2.14,-0.78,1.57,-0.72,1.65,-0.73,-0.44,0.93,-0.93,-2.9,-0.46 +C1226,3.03,-1.44,-0.79,-0.88,-1.04,0.09,-1.87,-2.11,-0.51,-0.16,-0.22,-2.91,-0.26,0.89,2.56,1.27,1.73,0.57,-0.48,-1.29,-1.63,0.6,0.58,1.04,-1.69,-1.35,-0.64,-1.76,3.01,-2.86,-3.16,-0.08,-1.45,0.58,-3.94,-2.44,-0.91,1.42,-1.24,-0.18,-4.17,0.74,0.15,1.51,-0.91,-1.37,-0.53,1.07,-2.12,-0.81 +C1227,-12.12,1.09,-0.08,-0.31,0.47,2.38,-2.23,-1.41,1.18,-0.21,-0.82,-0.69,-1.29,0.8,0.48,1.4,1.21,1.05,0.83,1.13,0.39,-1.4,-1.67,-1.35,-0.26,-0.23,1.55,-0.31,0.88,0.67,0.44,2.22,0.43,1.47,0.68,3.37,2.74,0.19,-2.12,1.36,1.19,1.5,0.84,-1.93,-1.04,1.98,0,-0.48,-0.83,1.51 +C1228,-8.87,1.41,-2.3,-3.51,2.84,2.17,1.96,-1.77,-2.15,4.21,-0.62,0.4,-0.25,-1.88,-0.72,-1.7,-2.96,-1.46,-0.13,-0.54,-0.11,-0.83,2.77,2.95,3.52,-1.37,-1.42,1.25,-2.92,1.93,-1.11,0.78,1.47,0.55,0.1,0.02,-2.29,-0.8,0.12,0.72,-0.64,-3.35,-2.28,1.81,-0.01,-0.43,0.05,0.43,1.21,0 +C1229,3.21,6.44,3.28,3.16,1.12,-0.3,-0.19,-0.95,-0.34,3.5,1.41,0.12,-1.76,-0.4,-0.04,1.45,2.45,1.66,-0.67,0.19,-1.03,0.99,1.92,1.09,-0.85,0.81,1.34,4.13,0.97,0.03,1.46,0.04,1.95,-1.49,1.05,-1.71,-2.99,-0.5,2.01,-1.29,-2.26,1.9,-0.92,-1.29,2.17,-3.3,-2.5,0.68,2.22,-1.38 +C1230,3.91,-1.51,-1.36,-1.95,-3.05,-0.92,-1.34,-1.08,-1.19,1.87,-0.1,-0.79,0.59,-0.35,-0.32,1.9,1.7,-1.75,-0.02,0.24,0.61,-0.61,2.93,2.07,0.57,-1.35,0.94,-0.55,-0.15,-0.43,2.13,-1.88,-2.64,2.46,-1.36,0.07,-2.82,-1.71,-0.46,-1.22,-1.62,1.26,-2.65,2.26,0.47,1.48,0.65,0.86,1.87,0.87 +C1231,2.63,-1.55,-0.51,-1.54,-5.13,-2.62,-3.38,1.54,1.12,-3.49,1.88,2.27,2.05,-2.43,3.01,-2.9,0.79,-1.15,0,0,1.2,-2.56,0.84,0.52,-0.98,4.42,-1.24,-0.61,-0.61,-2.22,-1.06,-5.28,-3.11,-4.92,1.93,-0.4,2.58,0.21,-1.05,-1.75,0.88,1.29,-1.57,1.33,-1.73,-1.69,-2.81,1.58,0.04,-1.13 +C1232,4.18,1.4,-0.5,-0.66,-1.38,0.04,3.05,0.62,0.83,-0.46,-0.99,0.28,-0.03,1.02,-1.57,1.2,-0.95,-0.16,1.18,-1.15,1.48,0.64,0.95,2.04,-0.25,-0.9,1.43,-0.17,1.02,-1.04,0.06,-1.9,-0.41,-1.76,-0.87,0.1,0.58,-2.5,-0.42,0.06,-0.98,1.85,-0.5,0.81,0.07,1.2,-1.22,1.47,-1.36,0.56 +C1233,5.09,0.67,-0.8,-1.62,-2.1,0.28,-1.12,0.41,-0.61,-1.11,-1.11,-2.21,1,0.98,-0.61,0.48,1.74,0.18,0.33,2.13,0.31,1.97,-1.44,0.47,-1.52,-3.77,-1.4,1.18,-0.67,1.03,0.44,-1.68,-1.91,-2.29,-1.92,0.65,0.89,-0.71,-3.58,0.26,-0.16,-1.6,-0.98,-0.7,1.4,2.21,0.1,2.74,-0.3,-1.92 +C1234,-13.1,1.65,-0.89,1.34,0.1,1.58,-2.43,-1.83,-1.79,-1.38,-0.71,-0.93,1.86,0.63,-0.1,-0.05,0.08,3.61,0.79,0.38,0.53,0.8,-0.23,-3.14,0.96,0.72,0.84,-1.84,1.23,-0.6,-1.61,-0.22,-1.28,-2.46,0.62,-0.34,0.61,-1.19,-0.74,1.1,2.67,0.46,-0.49,1.57,2.86,0.96,1.61,-0.3,0.83,0.53 +C1235,4.91,0.03,-1.13,-2.32,-2.13,-1.65,0.24,0.39,-0.03,-0.7,1.28,0.66,1.94,0.46,1.61,0.98,0.38,1.75,-0.91,1.08,-0.6,0.13,-1.36,1.3,0.99,-1.44,1.21,-0.66,-0.22,-0.69,1.47,2.1,1.43,1.29,-1.09,1.58,1.93,-1.34,0.11,0.71,1.16,1.87,-1.27,-0.34,1.78,-2.91,-0.16,1.21,1.93,1.84 +C1236,3.92,0.87,-1.22,-2.75,-0.23,0.64,0.4,0.52,0.06,1.5,-1.87,1.69,-1.19,-0.02,0.19,1.9,-0.4,-1.8,1.01,1.37,0.49,-0.94,0.85,1.96,0.89,-1.7,-0.52,-0.81,1.09,0.62,-0.74,1.4,0.21,-0.6,3.52,0.78,1.54,-0.2,0.78,1.02,1.44,-4.26,-2.87,-2.39,0.97,0.85,0.05,0.14,-0.02,1.39 +C1237,2.64,-5.12,-0.63,-0.39,3.97,-1.7,1.59,-1.07,0.46,-2.18,0.01,-2.4,0.34,2.95,-2.06,-3.33,3.09,1.01,-1.49,-3.63,3.42,-0.77,-0.77,0.28,0.33,1.14,-0.05,1.17,3.92,1.49,2.66,-1.9,3.97,1.13,-1.58,0.72,-0.01,4.17,0.14,0.58,-2.11,2.51,1.23,-0.23,-1.28,1.76,1.44,-0.85,2.39,0.58 +C1238,-9.4,1.86,-1.54,-3.19,2.48,1.26,1.4,-0.45,-0.47,2.54,-0.23,0.06,0.12,-0.09,1.62,1.61,2.51,-1.02,-0.28,0.4,1.89,1.36,2.13,0.04,1.67,0.45,0.49,-1.69,1.07,-0.31,-0.68,0.67,1.45,0.83,-1.02,-1.28,2.49,1.93,1.41,-1.09,-0.93,0.92,-1.16,0.02,0.45,0.27,-1.91,0.08,2.7,-0.74 +C1239,6.04,2.74,-2.46,-3.65,1.8,-1.19,0.77,0.25,1.22,-0.91,1.51,2.07,-0.77,-0.4,-0.68,2.79,-0.23,1.77,-1.51,0.34,-0.26,1.62,-1.18,2,-0.32,0.47,0.4,0.74,0.54,0.09,0.17,-0.07,0.76,-1.2,-1.5,-1.35,0.84,-0.07,-1.97,0.14,-0.13,1.95,-0.16,0.77,-2.09,-0.68,2.21,-1.49,0.43,1.49 +C1240,2.97,-1.09,-0.62,-1.36,-0.93,-0.18,0.44,-0.59,0.07,1.5,-1.21,-0.34,-2.33,0.24,-1.08,-1.07,-0.08,0.45,-0.86,-1.17,0.38,0.38,-0.63,-1.63,2.58,0.82,1.22,1.01,-1.65,0.56,0.9,-1.14,0.68,0.54,1.12,-0.49,-1.29,-0.08,0.54,-0.35,2.21,0.67,1.06,0.57,0.7,0.42,-0.23,1.74,-1.03,-0.96 +C1241,3.34,0.88,-0.65,-2.14,-1.22,-1.52,0.96,0.9,-2.33,-10.96,5.63,0.6,-0.41,2.01,3.01,-2.58,2.76,1.18,-3.21,0.31,-2.09,-3.06,-0.7,-0.37,-1.73,-1.69,-0.54,-0.45,-4.21,0.39,1.33,0.89,0.16,-1.52,0.63,-1.2,-0.99,-2.61,-2.09,2.62,-3.76,1.91,-1.23,0.28,-0.14,0.15,-0.28,-1.66,-0.94,0.16 +C1242,4.19,-6.71,0.38,1.08,4.21,-0.47,-0.17,-3.41,1.5,-0.15,0.28,-3.61,-2,3.86,-0.09,-3.25,-1.35,-2.18,0.2,-3.14,2.27,4.85,1.83,-0.82,-0.1,3.62,-2.56,1.38,0.14,0.1,-0.68,-0.76,-3.31,-1.22,-2.37,3.69,-0.02,-2.1,0.43,-0.3,-2.1,3.55,-4.8,3.51,0.9,-1.76,-2.5,1.17,2.39,-2.06 +C1243,4.95,2,-2.72,-3.88,0.47,-0.56,1.38,0.53,3.02,-0.43,0.2,-1.21,0.29,0.26,0.58,0.44,0.86,-0.31,0.77,0.31,0.97,-0.11,3.17,-0.19,0.96,-2.42,-0.19,-1.16,0.42,2.48,0.11,-0.86,-4.58,1.51,0.97,1.77,-1.21,1.3,1.31,1.12,-1.46,0.5,-0.53,0.13,0.18,2,1.2,0.74,-0.24,-0.21 +C1244,2.78,8.28,4.01,4.92,3.18,0.57,-0.4,-2.25,0.62,-1.65,0.34,-0.81,0.88,-2.93,2.96,-1.5,-2.38,-0.32,2.01,-0.19,-1.58,-2.49,-1.93,2.14,2.57,0.22,-2,1.73,0.49,2.58,1.84,-2.14,-0.79,1.12,1.43,-2.76,0.29,0.7,-0.43,-1.28,-1.34,1.93,-1.01,-0.19,-1.27,1.76,-3.44,-1.39,0.89,-0.28 +C1245,2.92,-2.55,-1.28,-2.03,-3.91,-0.58,-0.16,-0.19,0.09,-1.12,3.44,-0.14,-2.09,-1.08,6.52,0.07,-2.16,0.8,-2.03,1.16,0.86,-0.54,-1.34,0.55,-2.32,0.17,-2.67,-0.77,0.29,5.57,0.33,1.36,-1.1,-0.6,-0.36,2.01,0.27,0.97,-0.62,1.41,0.38,-3.5,1.62,0.67,-0.83,0.76,-1.86,1.36,0.99,-0.81 +C1246,4.37,-7.81,1.3,1.55,3.11,0.8,-0.54,1.23,0.94,0.84,1.74,-3.95,-1.34,-0.67,0.96,-4.03,2.84,-2.49,1.34,-3.15,0.44,-1.54,-1.14,2.54,1.16,1.66,-0.35,0.24,-1.87,-2.58,-2.56,2.29,0.42,-0.25,-0.34,-1.9,-0.38,-3.4,0.94,-2.13,-1.3,-0.75,-0.08,-0.88,-0.42,0.64,1.53,3.75,-0.92,0.84 +C1247,3.01,2.98,-3.67,-3.13,1.81,-0.37,2.09,-0.52,1.3,2.25,2.8,-0.15,0.46,0.08,-1.27,0.38,-1.04,-0.1,3.11,-0.29,1.22,1.07,-1.79,-1.45,0.12,-2.19,-1.78,-0.49,-0.76,-0.55,0.83,0.7,-0.8,-0.1,0,1.1,0.17,-3.55,2.8,-1.62,1.83,-0.27,-3.86,1.24,-0.13,-0.13,-0.61,0.55,-1.2,-0.75 +C1248,5.01,0.7,-0.73,-1.65,1.25,-0.09,0.64,1.79,1.83,-0.5,-1.02,0.27,0.75,1.51,-1.17,-0.93,1.7,3.65,1.21,-0.1,-2.76,1.67,-1.01,-0.3,-2.3,-1.9,-1.33,-0.78,0.65,-0.96,1.52,-0.1,-2.04,-1.06,0,0.33,-0.33,-2.14,1.03,0.53,-0.79,0.35,1.98,-0.28,-0.58,0.46,0.67,0.06,-0.79,-1.21 +C1249,-11.66,1.23,-1.39,-3.17,1.69,2.04,-0.87,-0.22,-0.39,-1.36,1.24,0.55,-0.94,-0.41,0.42,0.23,-0.1,1.78,1.78,-0.17,0.63,-2.5,0.03,-0.19,2.23,-0.5,0.66,2.54,-1.2,2.05,-1.45,-2.7,0.79,0.33,1.1,3.08,3.12,0.67,-0.02,-0.83,1.63,0.11,-1.38,-0.96,0.47,-1.58,0.05,-2.06,1.15,0.18 +C1250,3.68,-1.9,-0.28,-2.09,-2.81,-0.03,-0.81,-2.24,-2.66,2.01,2.05,0.74,1.93,-3.21,0.99,-0.2,-0.88,-1.21,0.2,2.08,-1.26,0.49,3.44,0.35,0.69,-2.64,-0.77,3.24,1.91,-1.51,-2.96,-0.12,2.06,0.07,2.02,1.44,-0.23,0.63,0.17,-2.53,1.52,2.91,-0.01,-1.46,-1.33,0.57,-2.24,-2.06,-0.67,0.92 +C1251,-9.17,2.86,-2.06,-5.32,5.82,3.2,1.04,0.3,-0.62,-0.46,1.56,0.82,-1.68,-2.08,0.97,-1.09,0.12,-2.9,0.47,-0.93,3.02,2.67,-2.54,-0.01,-0.85,1.19,-0.18,-2.11,-1.22,0.81,3.1,2.61,1.15,1.11,-1.71,2.32,0.81,2.87,1.61,0.77,-0.36,-0.21,1.03,-1.09,0.83,-1.86,0.41,1.96,-0.05,1.33 +C1252,4.86,-3.75,0.42,-0.35,0.97,1.28,0.01,-6.35,-0.78,-1.29,-3.7,2.63,-2.93,0.49,1.51,1.25,-1.07,-1.73,-2.12,2.68,-0.17,-0.8,0.82,-1.91,-4.68,1.22,-2.04,0.13,2.12,1.63,2.18,5.75,-1.92,-0.31,1.87,0.56,0.09,1.8,-0.21,1.01,-2.94,-0.36,1.31,0.66,-0.08,4.14,0.88,-1,-0.69,-0.8 +C1253,4.92,0.67,-2.95,-0.71,-2.66,-0.44,-1.03,1.45,0.21,-0.19,-1.45,-0.83,-0.72,0.76,-1.42,-0.05,2.84,0.95,0.49,-1.72,-0.48,-0.89,0.44,0.19,0.8,-1.38,-2.38,-3.74,3.7,-1.63,0.13,2.15,-0.96,1.73,-1.63,-0.55,-1.33,0.4,-0.69,-1.45,-1.51,0.4,1.92,0.55,-0.5,1.73,0.83,2.48,-1.38,-0.86 +C1254,-11.56,-1.89,0.88,-0.39,-1.29,-5.19,4.34,-1.21,0.32,-1.42,3.12,-0.21,-2.41,0.45,1.59,3.28,-1.77,1.55,-0.87,-1.98,-0.86,-0.92,0.27,1.65,1.91,1.38,0.07,0.98,2.45,-1.47,0.41,0.48,1.8,-1.37,0.44,0.84,-0.46,-1.14,0.73,0.58,-0.71,-0.91,0.39,-1.62,1,-0.71,1.33,1.24,-0.27,2.68 +C1255,4.06,-3.16,0.25,-1.21,-2.13,-1.08,-0.82,-4.78,0.33,-0.23,0.11,1.9,0.68,0.13,-2.49,0.37,0.06,-2.83,2.95,1.67,-0.46,-0.43,1.44,0.88,-3.64,-0.6,1.53,-2.44,2.89,-1.81,-1.55,0.54,0.88,0.47,-1.24,1.5,-5.61,0.2,1.74,1.76,-0.17,-0.42,0.43,1.77,-3.54,0.52,0.45,-2.12,-1.76,-0.28 +C1256,-12.85,-0.07,-1.01,-2.48,1.37,1.31,-1.77,0.74,-3.02,2.79,-3.51,-1.69,1.89,0.59,-1.29,1.93,0.68,0.04,-2.67,-1.17,2.42,1.57,-1.19,0.83,-0.26,3.91,2.9,-2.05,-1.98,-2.97,0.08,-2.86,-1.68,0.84,1.91,1.33,-0.55,4.62,-2.15,0.56,-2.46,0.31,-2.29,-3.07,1.82,2.12,3.94,1.3,-1.24,-2.55 +C1257,3.8,1.4,-1.28,-2.51,0.64,0.73,-0.03,-0.47,-0.5,0.29,-0.47,-0.24,-1.24,0.06,0.78,0.43,-0.53,-1.24,-1.36,-0.31,-0.01,-0.4,-2,2.58,1.58,0.13,0.21,1.17,2.22,1.04,-0.55,2.65,0.07,0.91,0.05,0.54,-0.06,-0.42,-0.46,0.5,1.4,0.91,-1.49,1.43,-0.12,-0.06,-0.32,-1.85,0.53,0.02 +C1258,3.2,-7.34,1.95,2.48,1.62,0.04,-0.31,-2.72,0.37,-1.76,0.44,-0.86,0.17,2.63,0.63,0.06,1.74,0.36,1.77,-0.68,-1.34,0.14,0.93,0.12,-2.06,1.18,-5.24,2.06,-1.55,-0.51,-1.99,-1.43,-0.48,-2.86,-2.99,-1.73,1.12,0.72,-1.4,0.46,2.1,0.11,4.88,-2.54,0.97,-1.66,-2.23,0.44,1.05,-0.53 +C1259,-12.79,-0.09,0.54,0.66,-1.29,-2.23,-1.49,-0.37,1.43,-3.49,1.98,-2,1.29,-4.04,1.03,-3.27,-2.33,-1.38,2.17,2.35,0.19,1.44,-0.87,2.24,0.09,1.68,0.81,-0.56,1.76,0.82,0.66,1.94,1.1,-1.53,1.09,0.31,2.79,-0.14,-1.24,-0.24,-0.9,0.24,0.29,2.06,0.86,0.99,0.04,0.53,-0.23,-0.57 +C1260,3.23,-11.63,2.02,2.48,6.19,-1.61,-1.26,1.96,0.86,2.22,-2.67,-0.67,0.76,0.09,1.3,-1.02,2.8,-0.45,6.67,0.54,1.91,1.36,0.05,-1.11,-0.45,-0.19,-0.82,-1.2,-4.67,2.64,1.21,-0.26,-3.59,-0.32,-0.09,-2.8,2.22,0.3,-0.83,-2.76,-1.47,0.9,2.96,1.43,-0.07,-2.75,2.83,-5.19,0.48,-2.13 +C1261,4.16,-0.22,-1.53,-3.4,-2.07,0.11,-1.67,0.53,-0.07,0.48,0.23,1.39,0.53,0.05,-2.13,-1.74,-2.82,2.51,-0.44,-0.91,-1.85,-0.6,-0.05,0.37,-0.36,2.31,-0.34,-1.38,-0.7,1.94,1.07,1.5,1.08,-0.89,-1.87,-2.91,0.54,-0.15,-1.84,-1.59,0.26,-1.89,0.4,-1.49,-2.95,-0.31,0.28,-1.63,0.01,-0.81 +C1262,1.64,-9.67,0.72,2.98,7.24,-1.68,-0.61,4.49,-0.1,-1.22,-0.17,-2.63,0.09,-3.7,-1.06,1.08,1.25,-0.17,-1.46,-3.75,-0.93,-2.14,-1.39,0.06,-3.34,-1.83,-0.51,-2.42,0.6,-2.34,2.43,2.19,0.14,-2.1,-3.54,5.54,1.24,-3.59,1.73,-2.94,-2.17,0.94,0.83,2.98,1.02,-1.14,1.09,-0.73,0.01,-2.35 +C1263,4.42,0.69,-0.27,-1.99,-1.23,0.12,0.41,0.7,0.06,0.96,-0.64,0.93,-0.06,-0.28,-1.47,-0.21,-1.43,-1.08,0.93,0.97,0.48,-0.7,0.1,-0.19,2.12,0.94,-0.08,0.75,0.79,-0.4,-1.02,0.69,-0.47,0.81,0.49,-1.73,0.55,0.49,-0.1,0.38,-1.49,0.71,1.16,-0.27,1.76,-0.27,-0.69,-0.13,1.57,-0.59 +C1264,4.5,-4.66,0.38,0.31,3.06,0.44,-1.07,-3.49,0.44,-0.16,-0.22,-3.4,-0.06,0.56,-1.56,-0.22,-0.52,0.08,2.25,1.73,1.64,-0.67,0.6,-0.4,2.63,-0.74,1.08,-1.53,2.74,-3.08,2.29,0.72,-0.57,1.24,0.1,3.22,0.38,-0.07,1.29,1.38,0.6,0.8,-2.29,2.12,-0.68,2.55,-3,-0.91,0.87,-0.97 +C1265,2.82,-0.49,-7.07,4.5,5.93,0.65,2,-2.77,2.39,0.43,3.21,-1.61,-0.19,3.48,-1.72,0.74,1.68,-0.9,-5.45,0.8,-0.41,1.23,-0.12,1.8,1.06,-0.96,-0.55,2.29,0.05,0.45,2.14,3.83,0.72,-2.23,-0.4,2.19,0.02,0.57,1.23,3.22,0.17,0.9,2.38,-1.35,0.57,-2.49,-0.22,0.26,2.05,1.65 +C1266,3.77,-7.35,2.51,3.07,2.77,2.07,-0.37,1.94,-1.79,1.1,-5.61,7.76,1.06,-0.6,0.84,2.72,2.12,1.78,1.33,1.43,-3.34,1.51,-3.03,4.01,2.01,-4.9,1.33,0.31,2.98,1.61,-3.79,-1.43,-0.28,-1.99,-6.01,1.72,1.48,4.47,0.84,0.56,0.93,-0.36,-2.18,0.26,-4.24,0.45,1.55,-0.87,3.69,-2.05 +C1267,5.26,1.23,-1.63,-2.12,-2.13,-1.35,1.4,4.27,-2.26,-0.21,-1.79,0.38,-0.27,0.48,-2.18,1.97,0.33,0.68,5.07,2.16,0.4,-2,-0.42,-0.91,-2.25,-2.45,0.95,-1.73,-0.07,-0.8,-0.3,-2.83,2.12,1.31,-1.06,1.2,-1.27,-1.42,-1.5,0.09,-0.13,2.48,0.52,0.99,3.18,-2.41,0.26,1.26,-0.71,0.88 +C1268,2.83,-3.99,0.84,0.41,-3.98,0.6,-0.68,-0.32,-0.99,0.24,-3.36,2.27,0.46,1.33,0.19,0.55,-0.62,1.21,3.1,-1.36,2.26,1.32,1.68,0.94,-1.96,0.15,0.5,1.98,-0.46,-2.27,-2.38,-2.28,1.59,-1.34,2.7,0.67,1.73,-0.03,-0.78,-0.64,0.94,2.13,0.47,0.89,2.85,-3.66,2.28,-3,-1.42,-1.31 +C1269,3.66,-2.73,-1.03,-2.37,-2.55,-0.21,-0.95,-0.05,-1.69,1.09,-2.14,-2.38,3.12,0.71,-0.51,3.59,-1.83,-2.71,-1.55,-1.12,-0.66,0.68,-1.73,-1.2,1.69,-2.42,1.27,1.32,-0.73,-0.6,-1.38,1.76,0.51,-0.1,0.03,1,-0.41,0.64,-1.97,1.99,1.5,-3.71,0.86,-2.97,-0.01,-0.55,-0.7,3.24,0.9,-2.17 +C1270,3.27,-3.11,-1.45,-1.52,-4.6,0.48,-2.78,0.29,-0.66,2.58,1.88,-1.31,-0.43,-1.61,3.23,-2.98,-0.67,2.16,2.37,-0.44,-0.26,1.03,-0.11,-1.46,-0.27,0.28,-1.2,-0.95,2.24,-2.63,0.95,1.69,-0.24,-0.05,-0.38,1.73,-0.24,-2.24,0.36,0.29,0.83,-1.3,1.62,0.2,0.67,0.78,-0.16,0.89,-1.42,0.71 +C1271,4.85,3.6,-0.88,-3.22,1.34,-0.97,1.86,0,1.12,-2.34,0.69,1.9,0.39,-0.73,0.55,0.35,-0.32,-1.25,0.69,0.17,-0.58,-1.56,-1.1,0.6,1.47,1.49,1.74,-0.3,-1.48,-1.05,-0.43,1.72,2.57,0.96,1.53,-0.72,0.67,2.16,0.9,2.06,-0.08,-0.12,0.44,-0.14,0.57,-1.05,-1.24,-2.04,0.83,0.41 +C1272,4.01,-1.07,-0.13,-2.09,-3.56,-0.08,-0.25,0,-0.14,0.62,0.92,-1.15,0.08,-0.18,-1.34,0.2,-1,-0.94,-0.8,-1.12,-1.74,-1.18,-0.21,0.44,-0.79,-1.64,0.99,1.06,-2.3,0.1,0.9,1.47,-1.94,0.78,-1.23,-1.93,0.98,1.06,1.42,1.06,2.12,1.82,0.1,-0.98,2.03,2.58,0.38,2.77,-1.69,1.46 +C1273,4.9,-0.45,-2.48,-3.32,-2.88,-1.24,-0.24,0.14,0.74,-1.51,0.38,0.01,0.7,0.02,0.09,-0.98,1.48,0.26,1.61,1.41,-1.1,0.22,0,0.08,-0.77,0.95,-2.13,1.58,-1.8,-0.69,-0.45,0.75,-1.3,-0.28,0.98,1.15,0.3,-2.3,0.4,-0.05,-0.67,-1.38,-0.94,0.44,-1.14,-0.06,-0.63,1.35,0.95,-2.79 +C1274,5.47,1.39,-1.36,-1.99,-0.63,-1.01,0.1,2.65,0.24,-0.48,-0.97,2.01,-0.44,0.64,0.24,0.15,-0.41,0.12,0.92,-1.08,1.01,-0.12,0.83,-0.78,2.76,1.69,-1.86,-1.11,0.96,0.04,-0.43,-0.02,0.53,0.52,-3.45,-1.43,0.4,2.19,-1.07,2.21,1.49,0.45,-0.25,3.65,-0.5,1.63,-0.1,-0.66,0.73,0.33 +C1275,4.69,-0.05,-0.83,-0.99,-1.19,0.94,-0.95,3.24,0.55,0.59,0.87,0.47,-1.74,1.85,-2.24,-0.3,2.48,0.8,0.58,0.73,-1.83,0.32,-2.5,1.25,0.44,-0.6,-0.47,-2.62,3.22,0.87,2.46,-1.42,-0.97,1.76,1.46,-1.24,-4.11,0.56,2.12,0.35,0.48,-1.39,-0.61,-0.98,-1.95,2.51,2.33,1,1.57,0.19 +C1276,6.94,0.5,-2.38,-3.12,4.26,-0.24,2.86,-4.21,1.5,-1.01,-1.71,0.55,-1.43,0.05,1.02,-0.71,-1.65,-0.19,-0.1,0.89,0.97,0.49,0.19,-2.6,1.86,-1.97,-2.2,1.23,3.63,-1.76,0.53,-0.57,1.02,0.98,0.97,-0.52,-1.83,-0.6,-1.12,-0.01,1.64,-0.03,1.47,-2.99,-0.93,0.33,-1.52,0.67,2.25,1.16 +C1277,4.23,-0.14,-1.64,-0.79,-2.09,1.27,2.52,0.87,0.28,0.92,-1.01,-3.4,0.78,-2.67,-1.01,-0.46,0.41,1.05,-3.01,-2.94,1.08,-0.16,-1.17,-0.59,-0.27,0.41,-2.76,0.34,-0.13,-0.86,-1.63,2.34,-2.55,-1.62,2.64,-0.02,1.11,0.84,2.61,0.86,1.65,3.48,-0.12,1.28,-0.37,1.69,-1.27,-0.67,1.31,-0.29 +C1278,-2.86,1,-0.59,-1.61,2.41,-6.47,4.85,-0.09,1.86,2.47,1.49,0.12,0.21,0.49,-1.33,-1.63,-0.54,0.78,-0.62,-1.52,1.86,1.09,-2.26,0.42,-2.11,-4.33,1.84,2.33,-0.15,-0.51,1.48,2.94,0.98,0.39,-1.15,1.98,-0.94,-0.62,3.05,-0.12,0.7,0.67,-1.23,-0.47,1.26,-2.47,0.74,0.95,1.54,2.27 +C1279,2.84,-9.89,2.48,3.82,4.93,-0.63,-1.51,3.05,-0.73,0.9,-0.73,1.98,0.87,0.7,3.36,3.69,0.57,-1.22,3.29,-0.97,-0.48,2.04,-2.75,-0.07,-1.37,-3.53,0.3,0.68,-3.1,-0.05,-0.84,-0.49,-2.46,-2.69,0.99,0.48,0.3,-1.12,-0.62,-1.78,-0.93,-2.41,-4.61,-1.79,-0.62,-0.76,0.03,-0.72,-0.66,-1.16 +C1280,-9.13,1.71,0.66,-1.84,1.6,4.22,-1.44,0.67,2.02,-1.24,0.04,-1.04,0.63,0.81,-1.9,-0.32,-1.31,1.15,-4.52,-0.31,-2.87,0.56,1.06,-3.58,1.05,-3.08,2.5,-2.29,1.5,-0.16,-0.26,-2.33,0.46,-1.39,-3.43,-0.1,0.11,2.54,1.53,-2.2,0.56,-2.53,2.97,0.02,1.04,-0.57,1.08,-1.84,1.15,0.93 +C1281,4.85,-1.06,-0.25,-2.71,-5.27,-0.7,-1.4,2.01,-2.61,2.32,0.05,-0.54,2.03,-0.93,-1.8,-1.69,3.39,-3.83,0.72,-0.29,0.97,-1.97,1.81,0.44,-0.69,-2.53,0.93,-2.33,-1.2,-1.09,0.92,-1.2,3.35,-1.74,0.41,0.72,0,-2.47,0.46,-0.17,-0.61,0.74,-0.17,0.18,2.07,0.7,-1.75,-0.28,-1.23,-0.48 +C1282,-14.41,-0.45,0.49,0.88,-0.86,-2.26,0.01,-0.38,-1.61,2.05,-1.66,-1.39,1.35,-3.22,1.01,-2.13,0.07,-0.27,0.08,0.04,-2.53,-0.01,-2.78,0.68,0.97,1.68,-0.41,0.15,0.62,-0.47,1.31,0.76,-0.71,2.02,0.08,-2.29,-1.3,2.45,1.6,-0.4,1.1,-0.13,0.15,0.37,0.87,0.44,0.08,1.43,-3.82,-0.87 +C1283,-7.85,3.16,-2.64,-5.59,4.16,1.33,1.73,0.48,-1.39,-0.06,0.72,-1.4,-0.77,-0.9,-0.91,-0.14,1.93,-1.68,-1.87,-0.56,0.87,-2.06,-0.39,1.35,1.89,-0.12,-1.33,3.36,-2.11,-0.45,-0.59,-1.01,-1.36,1.31,0.53,-0.43,1.31,0.87,-2.07,1.12,-1.15,2.76,0.67,-2.86,0.15,0.9,1.43,1.97,-0.33,1.76 +C1284,4.92,0.59,-1.34,-1.35,-3.93,0.14,-2.1,0.5,0.22,1,-1.57,0.59,-0.75,1.62,-0.39,-0.67,-0.37,1.22,-0.58,-0.73,-0.39,-1.04,-0.92,-1.93,1.14,-0.15,2.1,-1.14,-0.53,-0.24,-2.22,1.31,-2.79,-0.42,0.02,-2.21,0.82,-2.32,2.62,0.19,3.23,-0.11,2.02,1.19,-1.67,-0.49,-1.89,2.69,-0.85,-1.49 +C1285,3.38,-1.53,-2.1,-1.88,-3.8,-1.09,-1.5,-0.52,-1.43,-1.16,1.51,0.99,1.4,-0.66,0.48,-1.78,-0.58,0.84,0.15,-1.84,0.47,0.43,-0.84,0.44,0.84,0.24,-0.47,-0.42,2.61,-1.65,-0.89,1.25,0.92,0.64,-0.74,1.61,1.67,-1.25,-1.31,-3.07,-1.64,0.12,0.89,0.15,0.14,0.04,0.27,-1.81,0.09,-0.68 +C1286,4.11,-8.51,1.11,1.48,2.3,-0.02,-0.07,-5.04,-2.78,-3.78,1.89,0.25,-2.19,3.85,2.6,-6.72,-0.06,0.65,0.79,1.46,1.35,0.46,-2.33,-0.97,2.82,1.6,-0.48,-1.19,-0.11,-2.53,3.71,0.49,-1.44,0.99,-1.94,-4.69,2.58,-1.27,-1.23,-2.63,-0.03,-0.35,0.32,2.05,2.44,3.84,0.53,3.61,0.82,-0.15 +C1287,4.35,0.57,-1.5,-2.81,-2.49,-0.38,-0.34,2.01,-0.35,-0.31,-0.34,-1.08,1.44,-0.86,-1.3,-0.08,0.31,-1.12,-0.57,0.45,-0.89,-0.58,-0.58,-0.55,-0.54,-0.42,2.52,1.27,0.04,2.18,0.61,0.46,-0.79,-0.65,0.52,-0.26,0.22,0.52,0.58,-0.59,-1.05,-0.51,1.12,-0.99,1.66,-0.65,-0.57,-2.86,0.43,-0.98 +C1288,5.06,-5.24,1.49,-0.17,-0.5,-0.55,-1.95,-6.6,-1.06,0.12,-5.11,3.82,-0.17,-0.63,-3.14,-3.07,-1.6,-5.22,-6.18,0.71,1.77,0.69,3.95,-2.74,-1.23,0.76,0.06,4.56,3.84,-6.03,2.06,2.78,-3.72,-4.08,-4.29,-0.05,-1,-1.76,-0.31,-4.14,-2.48,0.09,1.41,-1.18,7.3,-4.18,2.18,-1.28,-0.99,1.91 +C1289,5.16,2.37,-1.42,-2.43,-1.71,-1.33,0.41,2.5,1.01,-0.57,1.05,-1.44,0.5,0.7,0.58,-0.17,1.58,0.66,-0.9,1.41,1.6,0.82,0.64,-2.15,-1.81,-1.18,0.91,-0.88,0.76,-0.4,0.83,-0.87,0.25,1.79,1.18,1.08,-2.66,3.1,-1.2,0.95,-1.43,2.09,-0.33,-2.18,-0.22,3.22,2.02,1.05,-0.56,-0.95 +C1290,5.18,-1.57,-1.69,-1.86,-0.38,0.05,-1.61,-2.43,1.1,1.51,-1.61,-0.57,-1.26,-1.35,-2.1,-0.32,0.49,1.33,2.71,-0.59,1.55,-2.24,-2.76,-2.28,2.35,0.2,-0.74,-3.23,1.4,0.7,0.13,0.33,-1.84,-0.18,3.7,2.08,0.96,0.17,-1.24,0.16,-0.46,0.6,0.43,-1.85,-1.13,2.14,0.18,0.47,0.56,0.43 +C1291,-13.3,0.78,1.41,1.02,-0.71,0.67,0.6,-0.09,2.67,-3.56,-0.48,-1.93,0.49,0.97,-1.74,-4.69,0.85,-0.03,-1.01,2.05,-1.12,-2.91,0.62,1.24,1.28,-2.01,0.63,1.29,2.23,0.54,0.4,-0.31,3.45,-2.55,0.76,-1.65,1.36,0.52,-0.9,2.52,-0.83,0.19,0.74,-0.93,2.75,-0.11,0.99,-1.24,-0.22,-3.35 +C1292,4.08,-1.03,-1.18,-2.55,-1.46,-2.34,-0.54,-0.19,-0.66,-0.55,1.25,0.05,0.58,-1.28,2.66,-1.16,0.41,-0.09,-0.34,0.28,-0.71,-0.36,1.51,-2.2,-0.91,0.59,2.97,4.35,0.81,1.16,1.32,-0.76,2.86,1.28,1.34,-3.12,2.06,-1.24,-1.42,0.53,1.29,0.42,-0.32,2.55,-2,2.8,-1.22,-2.07,0.74,1.51 +C1293,3.25,-5.72,1.33,0.83,4.5,-1.6,-0.27,-1.16,-1.65,-2.08,-4.78,6.3,-0.19,1.19,-0.58,0.64,2.87,0.02,0.79,0.62,0.38,0.89,-1.97,2.65,1.1,-2.13,2,-1.36,4,-2.53,0.16,1.17,2.52,-2.28,-2.17,1.69,1.47,2.59,0.84,0.33,1.86,-0.36,-1.14,1.3,-0.39,3.93,-2.83,2.3,0.77,-1.4 +C1294,2.08,-12.17,2.73,3.66,7.67,0.92,-0.89,3.61,-0.67,2.19,0.63,-1.43,-1.4,-1.19,-2.44,0.46,-1.41,0.23,-2.44,-3.23,-5.06,1,-1.86,-2.18,1.64,2.12,3.41,-0.02,-0.9,-0.49,-3.63,3.14,0.52,1.2,3.7,-0.21,0.03,0.9,-2.85,-1.65,-1.03,-3.13,-2.47,0.41,-1.9,0.95,-0.87,-5.08,0.17,-2.09 +C1295,-12.39,2.62,-1.44,-4.71,2.93,3.41,-0.2,0.14,-1.42,0.93,-0.72,-1.51,-0.3,-1.72,-0.89,-1.38,1.71,-0.39,-1.81,0.8,0.54,-0.26,0.51,0.39,2.72,-0.87,0.39,-0.82,-0.49,0.84,-2.35,1.8,-0.41,0.14,2.13,-0.38,1.33,0.66,2.36,-0.43,-0.59,-1.67,-0.82,-1.57,-1.5,-2.99,0.47,-0.57,-0.41,2.04 +C1296,2.98,-12.78,1.11,2.64,7.79,-0.44,-0.14,0.13,-0.04,-0.52,-2.78,2.3,2.72,1.22,2.51,0.18,0.16,-1.58,-0.56,2.17,-1.85,-1.72,-1.01,-0.56,-1.49,-0.62,2.85,-0.79,-0.88,-4.77,-0.03,5.07,2.93,-2.94,-1.23,-0.75,1.89,-0.15,4.9,0.58,-1.67,0.54,-2.58,-0.84,-2.27,3.33,-1.75,-0.34,-0.21,-2.46 +C1297,3.76,-0.27,-0.6,-1.3,-2.88,0.87,0.22,1.41,-0.89,-0.47,0.34,-2.21,-0.68,-1.25,0.19,0.48,-0.72,1.7,1.81,-0.18,-2.5,3.53,-1.76,1.15,1.59,0.43,1.15,2.17,1.29,-0.96,-1.31,-1.03,-0.31,-0.39,-0.18,-0.33,-1.2,-0.85,0.12,0.16,-0.63,-2.92,-0.05,2.37,-3,-0.65,-1.62,0.15,1.06,1.08 +C1298,-15,-0.95,2.37,1.2,-1.09,2.74,-5.83,1.54,4.33,-1.29,-0.23,0.75,1.14,0.33,1.73,-0.88,2.44,-4.47,4.47,1.57,0.77,-1.58,0.46,-1.54,-1.68,-1.4,-1.58,1.77,0.16,2.12,3.16,-0.5,-1.67,1.26,0.25,-1.11,0.14,-1.46,1.03,2.52,2,0.1,0.45,-2.15,0.28,1.31,-2.57,-0.73,-1.02,0.03 +C1299,2.69,-7.66,1.26,2.35,3.08,-0.79,0.83,-3.18,0.24,-2.64,3.72,-4.11,0.19,2.01,0.78,0.74,-1.3,1.57,0.35,1.34,-1.63,3.02,1.07,0.92,-0.3,3.28,2.96,-4.54,-1.3,-0.49,-1.18,-0.8,0.59,2.73,-3.47,-3.26,-0.04,1.37,1.26,3.38,1.28,1.9,1.24,1.95,2.31,-2.18,-2.67,0.6,-4,0.59 +C1300,3.72,-0.38,-0.23,-1.83,-0.91,0.5,-0.57,-0.25,-0.75,-0.16,-0.7,2.64,1.58,-1.89,-2.15,-1.48,0.32,-0.11,0.37,-1.37,-3.18,2.38,0.88,-2.15,-0.19,-0.9,0.17,-2.48,0.32,2.37,-0.42,1.02,0.46,-0.58,-0.56,0.4,-0.74,0.58,1.47,-1.89,3.1,1.23,2.21,-0.15,-0.12,0.02,-0.94,-1.37,2.38,0.84 +C1301,1.06,-14.68,2.82,5.16,4.81,-1.24,-2.32,6.9,0.28,2.45,-0.16,-1.64,0.85,-2.1,0.96,-1.92,0.18,0.69,-3.31,-4.08,-0.01,-0.49,-1.41,-0.82,-1.88,-3.15,-0.7,-0.96,-0.63,-0.11,0.85,-1.94,1.51,1.83,-1.79,-3.23,-2.5,-0.58,-1.53,0.29,2.2,-0.05,1.07,-1.32,-0.72,-0.93,-1.46,-2,3.71,-1.05 +C1302,0.11,7.39,6.43,7.06,-0.51,0.25,-0.59,-1.31,-0.62,0.59,0.5,-2.3,-2.6,0.78,3.07,-1.49,1.12,-0.12,1.42,-2.34,-0.08,0.36,1.35,-3.01,3.79,0.41,1.64,2.95,1.38,-0.45,-0.18,4.39,1.76,-1.74,-4.01,-0.78,1.32,-2.16,-1.44,2.15,-0.16,-0.19,2.1,1.9,-0.57,-0.03,1,-1.03,1.4,-0.58 +C1303,3.59,0.06,-0.12,-1.45,-1.2,-1.42,-1.25,-0.85,0.09,-1.15,2.01,0.82,0.35,-2.16,-0.83,0.1,0.09,0.3,0.56,1.49,-0.1,-0.03,1.67,-0.36,0.51,-0.58,-0.75,2.29,-1.47,1.06,0.5,-0.27,1.6,-0.32,-0.48,0.36,-0.22,2.57,-0.12,-1.18,-0.34,-1,0.3,0.21,-0.6,-1.29,-0.71,-0.19,1.49,-0.8 +C1304,-11.89,0.1,-0.32,-0.56,-0.09,0.57,1.17,0.01,-1.7,-0.55,-0.29,-0.51,2.32,0.49,1.82,1.01,0.3,0.91,2.94,1.6,-1.34,-1.14,1.1,0.1,-0.75,-2.31,0.9,4.13,0.72,0.15,0.44,-1.54,-3.48,-3.48,0.04,-1.62,-2.12,-0.88,-0.83,-1.44,0.64,-2.43,0.32,-0.11,-1.12,1.64,0.06,-1.07,-1.39,-0.64 +C1305,3.08,-15.04,3.8,5.31,3.6,-3.42,-0.72,5.68,-2.38,1.87,-2.36,-0.41,-0.28,2.72,8.6,0.58,5,2.48,-5.73,-4.81,1.36,-0.24,4.25,1.01,0.45,-4.41,1.54,1.61,3.03,-2.42,-3,1.01,2.01,-0.53,2.66,-0.03,-1.72,-1.03,4.32,2.39,4.09,4.56,2.24,-3.41,1.02,3.44,-3.75,-4.9,-0.04,-4.18 +C1306,4.99,0.44,-1.36,-2.98,-1.13,0.61,-0.42,1.53,1.8,-1.2,-0.85,-0.12,-0.4,-0.13,0.38,-0.21,-0.32,-1.41,1.74,-0.61,-1.39,0.09,-1.04,-1.57,2.17,-0.13,1.86,-0.27,0.44,-0.05,1.01,1.39,-1.06,0.47,1,0.15,0.69,2.02,0.58,1.34,-0.8,-1.76,0.06,-1.64,0.67,0.63,-0.79,-0.38,0.78,-0.99 +C1307,4.85,0.22,-2.46,-1.05,1.52,-0.36,1.07,-2.94,0.99,-2.18,1.16,1.33,-1.17,0.28,0.63,-1.96,0.78,2.62,-1.21,-0.48,3.6,-0.81,-0.54,-1.03,0.39,1.83,1.81,0.65,-0.65,-1.96,1.66,1,1.6,2.03,-1.19,0.05,-1.77,-2.13,-1.06,-1.09,0.62,0.5,-0.66,-1.31,2.21,3.58,1.25,-2.06,-1.15,-0.09 +C1308,4.99,2.4,-0.78,-1.49,-0.85,0.18,0.89,2.96,0.35,0.81,-1.3,0.74,0.66,1.71,-0.89,1.68,1.73,0.18,-0.29,0.32,0.39,-2.9,1.98,-0.19,0.93,0.75,0.04,1.61,2.2,0.07,1.67,0.48,-0.45,1.35,-3.85,-0.03,0.51,-0.59,0.4,-0.76,-0.51,-0.06,-1.47,-1.58,-1.7,0.08,0.08,-0.74,2.3,2.24 +C1309,4.6,-1.72,-0.04,-0.71,-2.59,-0.07,-0.98,1.38,-0.51,0.07,-2.57,-0.66,1.32,1.55,0.53,0.22,0.34,0.85,0.43,1.27,-1.66,-0.03,-2.3,-0.15,0.57,-0.6,-1.27,1.19,-0.51,-0.49,-2.67,0.26,0.38,0.16,-1.47,0.99,1,0.77,-0.37,0.23,1.38,-0.01,-0.38,-0.39,0.07,2.5,2.64,-1.26,0.05,0.75 +C1310,-13.77,-0.25,-0.11,-3.08,0.96,4.17,-2.71,0.69,-3.42,1.56,-1.77,-2.64,-1.09,1.38,-0.52,-2.37,-1.27,2.62,0.73,1.9,0.02,-0.43,0.9,-1.05,-1.21,-4.69,-1.14,0.75,-0.3,0.36,-1.05,-0.97,0.19,-0.57,2.28,-1.56,-0.77,-0.27,1.76,0.46,-0.16,0.91,0.45,2.5,-0.06,0.6,0.14,-3.07,0.51,-0.79 +C1311,3.54,8.25,3.16,3.11,4.76,-0.87,1.13,-0.31,0.82,-0.88,0.23,0.15,1.32,-1.15,3.84,-0.71,-1.45,-1.23,-1.08,0.1,-1.48,-0.45,-2.24,2.09,0.26,0.51,-1.81,-2,1.45,1.1,1.8,-1.35,-0.6,1.11,-0.17,1.96,-0.6,2.65,0.08,0.5,-2.08,-0.88,3.37,1.65,2.52,-1.12,-0.34,0.34,1.04,-1.28 +C1312,4.4,-0.38,-0.95,-1.96,-1.07,-0.94,0.15,-1.09,0.02,-0.17,-0.5,0.83,-0.89,-1.13,1.15,-3.22,1.54,-1.21,-3.11,0.75,2.12,-2.44,-2.03,-0.1,-0.2,-0.31,0.82,0.09,1.13,-1.32,1.57,-1.12,0.42,-0.13,-0.27,-1.26,-0.13,0.54,0.1,-0.56,1.61,-0.83,-1.28,-0.82,-1.39,0.37,-1.35,-2.11,-0.43,-0.41 +C1313,5.34,1.54,-1.68,-2.66,0.77,-0.59,0.43,-0.6,2.91,-0.13,1.19,-0.81,-1.62,0.6,-1.93,0.67,2.46,-0.36,0.12,0.51,-2.28,1.16,-0.93,-1.44,-0.11,-1.23,-0.63,1.42,-1.27,-0.27,-0.85,-1.63,2,-3.18,2.91,-0.92,-1.12,0.55,-1.64,-2.66,1.63,-0.86,-0.95,-0.01,-1.49,-0.48,-0.96,0.18,-1.64,-1.04 +C1314,6.07,5.32,-2.37,-3.86,4.4,0.92,3.03,2.03,2.96,0.26,-0.7,0.29,-0.12,1.34,0.19,0.12,-0.69,0.6,0.21,0.13,-0.35,2.01,0.37,-0.76,-1.18,1.1,2.11,0.7,0.01,1.75,0.13,-1.12,1.83,-0.78,-0.48,0.75,0.12,-0.81,0.76,-0.83,-0.23,-0.29,0.12,-0.25,-0.5,-1.15,1.37,0.04,0.45,0.66 +C1315,-11.68,1.79,-2.77,-2.8,2.95,1.1,0.42,1.47,-4.37,-4.49,0.73,2.56,-2.42,-1.5,0.09,-1.17,-2.53,4.77,1.04,0.59,-1.06,0.29,0.3,-1.39,-3.18,0.92,0.51,-3.15,1.58,-0.53,-0.4,-2.09,2.06,-3.9,1.19,-0.03,1.55,-0.05,2.98,-1.7,3.16,-1.51,0.01,-0.21,2.01,2.46,-2.54,3.56,3.76,-3.8 +C1316,3.55,-8.13,2.48,2.98,3.07,-0.27,-0.06,-2.95,0.28,-2.29,2.03,-6.12,1.73,5.1,1.03,-0.18,-0.33,2.53,2.8,4.22,-4.71,5.87,-3.34,0.26,-0.54,0.3,5.46,-1.54,0.48,0.55,-0.71,0.23,-3.86,-1.05,0.06,-0.46,3.27,-4.03,0.06,2.22,1.19,0.95,-0.09,1.72,-5.77,0.01,0.36,-2.2,2.07,3.3 +C1317,2.35,-0.46,-0.81,-0.49,-0.52,-0.37,0.41,-2.3,-0.42,-3.71,1.26,-1.38,0.02,-1.57,2.16,0.13,2,-0.79,-0.97,3.38,1.19,1.07,-0.34,1.21,1.43,-0.48,-0.87,0.93,0.49,2.4,0.78,-0.39,-2.63,1.33,-0.12,1.41,0.26,0.09,-0.15,1.4,-0.67,-0.83,2.49,-0.65,0.21,2.53,1.99,-1.75,1.23,-2.16 +C1318,-11.59,-0.22,1.15,0.26,-1.75,-3.61,3.46,-0.02,1.85,1.82,-0.18,1.58,0.39,-2.35,0.46,-0.37,0.89,-1.61,-0.47,-0.6,-2.4,-0.54,1.1,-0.2,-0.81,-1.1,-1.6,1.02,1.61,-0.17,0.26,2.55,1.84,-2.01,1.21,1.53,-0.65,0.83,-1.05,0.9,2.36,-1.25,-0.93,0.01,1.17,3.51,1.69,1.64,-1.1,1.35 +C1319,3.01,-1.89,0.55,-2.21,-2.88,-1.79,-1.1,0.25,-1.57,-6.13,4.99,3.56,-0.14,-0.51,1.75,-2.39,-1.99,-0.08,-2.12,0.79,-1.76,1.75,0.71,-1.6,-0.37,0.65,-2.02,0.17,-1.8,-2.23,-0.91,0.48,2.7,-0.86,-0.61,2.89,-3.56,-0.04,-2.26,-0.09,-3.05,0.3,-4.95,1.32,-1.55,-0.68,-0.17,2.75,1.75,0.56 +C1320,3.97,-11.01,2.31,2.98,4.98,1.26,-2.12,1.21,-0.86,-0.96,-0.83,-3.39,-0.53,3.23,-0.56,1.54,0.99,-1.48,1.18,1.5,-1.43,-3.17,1.87,2.89,-1.45,-1.34,1.08,-2.16,1.31,2.63,1.61,1.08,-1.15,-3.49,0.71,-0.52,1.14,-1.08,0.98,3.61,1.08,4.12,1.21,3.36,-2.23,-0.32,1.04,-4.18,0.12,-0.27 +C1321,-13.64,-3.84,2.37,0.92,-2.33,0.23,-2.69,1.02,0.14,0.21,0.31,-1.3,2.3,0.68,0.64,-2.17,0.62,-1.51,-1.87,-1.64,0.4,0.54,-2.81,0.04,-2.94,2.5,-2.44,0.06,1.61,-0.51,0.91,0.66,1.39,-0.72,1.13,1.23,-1.89,-0.32,-1.67,-0.39,0.95,-0.46,-2.17,-0.81,0.03,-1.78,4.27,3.7,-1.03,1.08 +C1322,-12.37,-0.26,0.88,-1.42,-1.44,1.81,-2.43,-0.75,0,-1.56,1.15,-0.59,-1.59,-0.16,0.53,3.62,-0.23,2.9,0.95,-1.13,-3,0.19,-2.13,2.44,1.56,-2.41,-2.02,1.32,-2.15,1.32,-1.14,0.66,0.32,0.88,0.58,-0.92,-0.09,0.93,-0.08,-0.22,-2.95,2.07,3.12,-0.76,0.61,1.11,0.58,-1.34,0.16,3.51 +C1323,-10.49,2.93,-1.65,-3.98,2.25,3.02,1.21,0.91,-1.02,0.91,0.94,1.34,-0.46,-0.05,-0.17,-0.9,-3.44,0.74,-0.22,1.8,-0.09,-1.66,0.47,-0.56,-0.27,2.55,-1.07,-2.32,0.57,0.87,1.11,-1.56,-1.71,1.11,-0.55,-1.1,-2.49,2.4,2.41,2.12,0.68,1.27,1.51,1.94,-3.41,0.44,3.04,-0.27,1.05,-0.03 +C1324,4.88,-3.37,-0.76,-1.34,0.69,-0.92,-0.74,0,-1.9,-2.41,0.48,3.65,0.08,1.57,0.68,0.27,0.94,1.65,-0.14,0.97,-0.96,1.18,-1.14,1.01,1.71,0.24,0.01,-1.32,0.66,1.34,-0.73,0.33,-1.05,-0.82,-0.35,0.13,3.33,0.01,-1.47,-1.85,-0.23,0.88,-2.21,0.09,-0.2,0.71,-0.91,-1.71,-0.22,0.59 +C1325,4.47,6.92,2.35,3.18,2.14,-0.51,0.31,1.31,-0.52,-2.25,-1.87,1.49,0.11,1.01,1.81,-2.19,-0.58,0.93,-2.05,1.42,-0.63,0.76,-2.73,-0.54,0.78,3.2,-2.24,-2.12,-1.79,1.66,1.25,-1.49,-0.59,-2.14,0.49,1.64,-0.43,0.08,-0.62,-1.66,-0.31,-1.88,-0.17,-1.09,3.97,-2.02,0.96,-3.32,0.76,-2.07 +C1326,0.72,-12.79,3.76,5.2,5.86,-0.21,0.18,2.78,-2.65,-0.09,1.57,-0.24,-2.31,1.01,-2.78,2.96,-0.09,-1.66,4.63,2.11,1.34,-0.35,3.1,-1.25,2.25,1.38,-1.49,1.2,1.72,0.61,-1.58,1.32,0.07,0.22,3.33,-0.42,-0.05,-2.57,-1.24,-1.39,-1.68,-3.16,-0.12,-2.39,-0.1,0.86,0.13,2.09,-0.96,-0.3 +C1327,-4.65,2.41,-3.67,-5.13,4.85,2.59,4.95,-0.97,-1.39,0.54,0.98,1.69,-0.05,-0.97,-3.7,1.51,-1.46,-2,0.95,-2.9,-1.2,-1.29,-0.55,0.27,0.15,0.6,-2.07,-0.53,2.19,-1.43,-0.37,0.27,1.2,1.21,-1.41,-2.25,-0.94,2.55,0.08,0.42,-1.44,-1.43,-1.49,-0.08,-2.41,1.36,-0.27,0.67,-2.85,2.35 +C1328,3.13,-2.34,-0.01,-1.09,-3.81,-1.08,-1.19,0.46,-0.71,-2.35,0.81,-2.52,1.29,-0.34,-0.46,0.92,-0.03,2.11,-2.81,2.55,0.62,-0.09,1.45,-0.51,-1.51,1.24,1.73,-1.12,1.72,-1.24,0.28,3.26,1.32,-1.22,0.74,-2.13,-1,-1.37,-0.66,-0.36,-1.01,1.21,-1.06,1.42,-0.11,-2.05,-2.92,0.6,0.07,-2.13 +C1329,4.58,-5.92,1.65,2.05,1.93,0.07,0.9,-1.78,0.89,-0.25,2.69,-3.39,-0.56,5.14,-0.41,3.39,-4.59,0.84,4.33,3.83,3.7,0.67,2.02,-3.37,0.82,2.71,0.46,2.79,0.51,0.07,-3.71,-0.03,-1.91,0.86,0.66,2.86,2.82,3.75,-0.94,0.35,0.46,-0.49,-3.66,4.34,-1.02,-2.33,1.33,2,-3.05,0.87 +C1330,-16.38,-2.86,2.16,0.75,-3.16,-4.6,0.56,-0.54,-1.69,-2.1,0.74,2.31,-1.41,0.71,4.54,-0.61,0.28,-1.11,-1.35,-1.61,-1.09,2.67,-3.69,-2.31,-0.96,1.87,1.55,0.05,-1.85,0.11,-0.13,2.14,-1.96,-1.03,0.4,-1.25,-0.47,0.9,0.95,0.85,1.19,-0.72,-1.63,1.22,0.5,-2.22,-0.19,-0.04,-1.22,-2.54 +C1331,4.55,-0.51,-0.69,-1.53,-2.23,-1.38,-0.23,0.99,-1.29,-1.75,3,-0.02,0.41,-1.25,-3.65,-2.75,3.45,-0.82,1.64,-3.32,0.68,-0.74,-2.08,2.09,-0.39,0.05,-4.79,2.69,2.53,1.01,1.8,2,-0.68,2.79,0.88,1.5,0.9,2.3,0.96,1.65,0.57,0.28,-0.3,-3.02,-1.15,1.43,-1.59,0.47,0.61,-0.22 +C1332,3.93,-0.8,-1.31,-0.93,-3.09,0.82,-0.9,2.92,-1.97,0.28,0.52,-1.16,-0.43,-0.15,-1.35,2.41,0.79,-1.22,-0.81,-1.98,0.4,-0.23,-3.34,-0.37,1.28,0.53,-0.95,0.01,-0.85,0.06,-1.35,-0.72,1.04,-1.78,-1.02,1.5,0.85,2.26,-1.46,3.26,1.74,-3.98,1.12,1.05,2.18,1.22,-2.01,0.35,0.06,0.58 +C1333,-1.35,0.55,7.97,8.1,-8.04,6.86,1.14,-3.07,-5.17,5.31,3.6,3.78,-13.32,4.1,-1.33,4.37,-1.66,1.38,1.04,0.84,-3.96,-3.22,-0.8,-0.21,-1.66,0.96,-2.75,3.36,-1.22,-4.52,0.59,-2.57,2.35,0.14,-0.94,1.38,4.42,3.71,4.47,6.13,-3.01,0.93,0.43,3.9,2.74,0.96,-1.43,-1.23,1.56,-2.06 +C1334,1.89,4.9,2.23,2.74,0.96,-1.24,0.06,-0.16,2.31,-0.61,0.32,-0.31,0.97,0.38,-0.53,0.29,-0.27,0.01,-0.64,1,-0.81,-0.35,-0.58,-0.54,0.21,-2.77,1.73,2.49,-0.3,-0.37,1.63,-1.19,1.34,-0.32,0.48,0.53,1.03,0.3,-0.37,-1.43,0.92,1.07,0.18,-1.2,0.53,-1.6,-0.29,-0.42,2.15,0.52 +C1335,3.86,-0.96,-1.57,-2.84,-1.95,0.35,-0.75,-0.84,-1.64,1.57,1.1,-0.38,0.65,-0.11,2.98,-0.32,0.27,1.16,0.01,0.98,1.31,-2.31,1.95,-0.27,1.13,-2.62,-0.33,0.05,0.28,2.41,0.55,1.3,-2.59,-0.03,-0.16,-1.05,-0.71,1.73,2.26,-3,1.1,-1.38,0.77,1.73,-0.15,-0.29,-1.76,-0.78,0.94,0.81 +C1336,-13.33,-0.44,3.65,2.73,-3.77,-5.65,3.61,-2.43,0.98,1.61,0.55,0.97,-1.93,-0.86,-0.13,-5.45,1.07,4.68,2.15,-0.13,-1.01,0.88,-1.25,1.58,3.25,1.24,-1.65,-0.21,-0.45,1.6,0.23,-2.63,-1.5,1.13,-1.33,0.39,-0.94,2.38,1.57,-2.22,-0.48,-0.66,-0.98,-0.68,0.56,-0.8,-1.16,0.4,-1.54,-2.43 +C1337,5.21,-0.01,-0.81,-1.86,-2.2,0.67,1.47,0.43,0.06,-2.68,1.27,0.17,1.31,-0.39,-0.87,-2.93,0.18,0.53,-1.34,0.25,-0.16,0.9,0.29,-1.78,-0.61,0.36,0.89,-0.68,-1.57,-0.42,-1.26,-0.67,2.71,0.08,0.15,-0.29,-1.28,-0.79,-1.74,1.74,1.32,0.82,-1.33,-0.92,1.68,-0.42,-0.88,2.48,-0.74,-0.73 +C1338,4.07,-0.03,-0.07,-1.05,-4.46,0.76,-0.04,1.73,-0.09,-1.78,1.46,-0.72,-1.04,1.22,-0.95,-2.33,-0.89,1.45,-0.68,-0.39,-2.55,-1,-0.96,-0.01,1.31,-0.14,-1.36,0.25,-0.21,3.15,-0.42,-1.3,1.13,-2.17,0,1.69,-1.6,0.05,2.36,1.35,0.36,-0.95,1.34,2.08,-1.77,2.61,-1.05,0.07,-1.57,2.8 +C1339,2.82,-12.99,3.33,4.52,5.99,-0.73,-0.43,4.12,1.83,-0.35,1.98,-2.83,-0.43,-1.71,-1.69,2.97,3.26,-1.75,-0.33,1.78,-3.85,0.4,1.19,1.24,-2.3,-2.63,0.78,-2.98,-1.73,-1.49,-3.1,0.42,-1.53,1.99,0.63,-2.3,-0.71,1.89,-3.61,-0.24,1.59,-0.71,2.24,0.25,-2.06,-0.95,-0.58,0.41,0.01,0.72 +C1340,4.96,-6.26,0.27,-0.47,4.72,0.04,0.73,-1.21,2.98,-0.78,0.73,-3.39,-0.25,0.7,-2.87,-0.8,-0.09,1.54,1.43,1.08,-0.95,0.5,-1.21,-0.17,3.61,1.3,1.69,2.31,0.29,1.18,-2.47,-0.3,0.62,0.69,-2.13,-1.43,-1.2,-0.8,-1.2,-0.38,-2.66,-1.68,1.21,-1.27,0.29,-1.05,2.39,-0.86,1.43,-1.38 +C1341,1.95,6.02,4.57,3.9,-1.11,-0.7,0.37,1.05,1.02,1.54,0.41,-1.33,-0.16,1.35,1.11,-1.43,1.59,-0.13,0.61,-0.49,-1.66,-0.07,2.88,-1.21,1.62,1.67,-1.48,1.07,1.03,-1.89,-2.3,-1.16,-3.25,-1.49,1.66,0.32,-2.53,1.58,1.81,-2.67,0.09,-1.44,-0.82,1.48,0.19,-0.14,-3.24,0.19,1.4,-0.78 +C1342,-6.16,4.33,-3.58,-3.59,5.48,3.39,3.11,-0.8,0.84,1.28,1.02,-0.62,0.45,1.68,-0.85,-0.18,-1.76,1.85,-2.52,0.84,1.52,-1.44,0.66,-0.38,1.66,0.7,2.51,1.47,0.44,0.12,0.27,-0.39,-0.53,0.36,-1.58,2.22,0.99,0.04,-0.47,-1.83,1.46,-0.2,-0.99,-2.69,0.66,-0.48,0.38,0.77,0.25,-0.15 +C1343,3.85,0.88,-1.28,-2.46,-0.64,-0.62,0.43,1.36,0.75,-0.18,0.27,-1.38,-0.48,1,-1.63,0.62,-2.42,0.63,0.45,1.43,1.83,-0.34,0.04,-0.53,-1.73,-3,-0.72,0.3,1.09,0.35,0.97,-0.04,-0.71,0.69,2.3,-1.9,0.06,0.68,-0.45,0.49,-0.23,-0.15,2.56,0.36,0.42,1.44,-0.19,-0.54,-0.48,2.07 +C1344,-12.15,2.05,-2.97,-4.26,5.07,4.6,-1.11,-0.69,-4.04,1.01,-1.35,1.33,0.32,0.06,-0.95,-1.64,-0.85,-0.46,2.11,0.09,1.94,-1.3,-1.06,2.25,-0.04,0.57,0.42,-2.03,1.04,2.22,-1.16,2.9,1.78,1.16,0.51,3.32,-0.33,-1.21,-0.55,1.54,0.29,0.83,1.85,0.4,1.16,-0.4,0.56,0.33,-0.73,0.73 +C1345,2.19,-12.01,3.03,5.72,6.98,-0.19,-0.05,3.02,-1.64,2.64,-1.4,0.14,-2,-2.57,0.96,-2.78,-0.87,1.61,2.68,-2.37,1.45,-0.1,0.62,2.7,1.21,-1,-3.1,1.29,-2.48,2.51,1.97,3.72,3.79,1.63,1.4,4.91,2.06,-0.48,-3.46,4.34,0.7,-1.02,-1.08,3.51,1.66,-0.9,-1.56,-0.04,-3,0.85 +C1346,3.1,-10.65,1.93,3.38,7.43,-1.15,0.31,4.4,-1.49,0.61,0.09,0.17,-1.03,-0.97,1.56,1.57,0.41,-2.32,1.03,-3.2,-1.31,1.4,-0.62,-1.73,-0.94,-0.38,-6.14,-1.88,1.44,0.11,-2.4,-2,-2.09,1.73,-1.12,-1.88,3.53,0.85,-4.56,-2.68,-2.25,0.36,-2.09,-0.42,2.6,-0.26,1.43,-1.78,-2.41,-0.7 +C1347,-0.44,-1.2,1.95,4.08,-4.04,2.01,-4.26,5.19,1.22,-2.25,-5.18,1.85,2.67,4.11,2.25,4.14,0.13,0.51,0.19,2.38,1.67,-1.36,1.14,1.02,-2.67,-1.54,1.98,3.06,1.6,-3.1,-0.02,-1.12,0.77,-0.24,1.01,-1.03,0.28,-1.19,0.59,-2.93,-0.89,-1.64,0.98,0.48,1.42,-3.94,0.38,1.13,1.71,2.15 +C1348,5.27,1.55,-1.41,-2.85,1.32,-1.16,1.15,0.45,0.42,0.12,-0.6,0.34,0.12,-0.28,-0.87,1.68,0.37,-0.62,1.39,-0.87,1.16,-0.38,0.23,-0.49,-1.53,1.78,-0.3,0.07,-0.64,0.35,0.16,-0.56,1.88,-1.32,-0.93,-0.19,-1.04,0.28,0.91,-1.77,0.05,-0.54,0.47,-0.07,1.11,0.4,-0.4,-0.96,-2.08,1.5 +C1349,-12.96,-1.33,-0.47,-3.03,0.47,0.26,-1.15,1.81,-4.13,0.53,0.13,-2.18,0.61,2.22,1.64,-2.12,-0.92,0.26,-0.31,1.03,4.86,7.43,0.55,0.5,-5.71,-3.15,-2.07,-2.41,1.3,0.77,-1.56,3.17,-2.27,-1.54,-2.37,-0.23,1.09,-0.21,2.66,1.96,-0.72,-1.77,0.85,4.46,1.25,1.14,-0.8,-1.91,0.98,3.26 +C1350,-11.16,1.51,-0.74,-3.33,1.17,2.58,-2.44,1.24,1.6,1.48,-3.14,-0.46,2.19,1.25,-2.82,1.15,-2.99,0.75,-2.54,-6.37,-0.87,1.31,1.35,2.01,-4.12,-2.15,0.46,0.61,2.12,-1.46,1.24,3.44,-1.07,0.96,2.51,6.7,2.5,0.36,0.14,0.64,-0.08,2.72,-2.39,0.42,1.7,-1.09,-1.2,5.6,0.04,-3.32 +C1351,4.46,-0.45,-1.57,-0.79,-2.34,-0.66,-1.3,1.53,0.38,0.62,-0.99,-0.94,-0.32,1.94,0.71,0.42,-2.3,-1.37,-1.57,-1.08,-0.23,-0.64,0.05,-0.58,0.6,-0.52,0.34,-0.46,-1.05,1.7,0.63,0.24,-1.56,-3.09,-3.31,-0.9,0.46,1.63,0.61,0.74,-3.09,0,0.66,0.25,-2.45,0.72,-1.35,-0.42,1.59,1.08 +C1352,4.22,-2,-1.06,-1.83,-4.51,-0.26,-1.66,0.16,-0.71,1.52,0.79,-1.18,-0.71,-0.46,-1.3,-0.04,-2.46,-2.53,-0.88,0.81,1.62,1.58,0.18,-0.35,-1.96,-1.78,0.97,1.49,1.03,1.32,0,0.28,-3.79,2.2,-1.62,0.32,-0.89,1.31,0.15,-1.34,0.62,-0.72,1.49,-0.57,0.07,-0.08,-0.27,-2.04,-0.93,1.38 +C1353,3.68,1.01,-1.67,-0.84,-0.88,-0.67,0.06,1.75,0.69,1.97,-3.22,0.54,-1.14,0.51,-0.53,1.56,-1.31,2.88,0.21,-2.7,-0.75,1,-0.2,1.18,-0.11,0.06,-1.36,-3.78,0.89,0.43,1.62,-0.1,-2.38,-1.08,1.85,-0.42,-1.8,1.53,1.09,0.08,2.64,-0.64,-0.15,-0.1,-0.07,-1.34,1.18,2.65,-1.19,2.23 +C1354,-11.08,1.33,-0.99,-2.22,1.84,2.66,0.45,0.62,-1.3,1.04,-0.86,-2.34,-2.54,0.78,-0.32,-1.9,-1.89,-0.42,-3.4,-0.66,-0.56,1.1,2.51,0.42,4.61,-2,0.15,1.44,3.16,1.42,2.16,-0.93,-0.72,-0.75,1.77,1.47,0.49,0.97,-1.37,1.7,0.51,0,-0.66,0.65,0.17,-0.94,-0.82,-1.23,1.51,-1.75 +C1355,3.15,-0.73,-1.91,-2.5,-2.98,0.41,-0.25,1.56,0.28,-0.6,0.72,0.24,-1.13,0.48,0.82,-1.35,-1.85,-1.66,2.05,-1.88,0.14,0.66,-1.13,-1.25,-1.16,-0.79,-0.6,0.98,2,2.25,-2.25,-0.77,-0.12,0.44,1.29,-0.33,0.78,-1.17,0.39,1.33,3.1,-0.35,-1.13,-2.78,0,1.52,-1.26,0.49,0.84,2.82 +C1356,4.93,0.98,-1.7,-3.48,-0.12,1,-0.67,-1,1.19,2.32,1.22,1.79,-0.44,-1.86,-0.92,-2.15,-1.15,3.01,0.63,0.03,4.54,-0.36,-0.04,2.21,-1.15,0.95,-0.9,-1.83,-1.33,-0.04,1.22,-2.48,-0.99,2.46,-1.75,1.39,-0.32,0.22,0.7,-0.64,-0.59,0.64,0.67,0.29,1.06,0.62,0.91,-0.19,-1.29,-3.04 +C1357,2.22,0.86,3.13,2.29,-3.77,-0.08,-2.12,-0.21,-1.43,1.88,0.87,0.29,3.45,0.53,0.38,0.82,-1.27,1.81,-0.92,-0.65,2.38,-1.7,-1.37,0.84,1.39,0.82,-0.76,-0.33,-0.28,-0.2,0.82,1.27,-0.79,-1.19,1.26,-1.36,-1.2,-0.82,-0.64,2.46,1.47,-1.64,-1.25,0.64,-0.87,-1.26,-0.63,0.23,3.3,-0.94 +C1358,3.5,0.08,-1.06,-1.89,-1.75,-0.34,-0.66,-1.85,-0.44,2.1,0.46,0.96,-0.25,-1.48,0.14,-0.09,-1.01,0.22,1.19,-0.39,-1.04,1.14,0.87,0.81,0.05,-1.38,1.1,-0.62,1.26,0.08,1.11,0.65,-0.77,2.26,1.88,0.76,-0.79,0.12,0.58,2.77,-1.93,0.79,-0.19,-1.29,1.45,-0.06,-1.16,-1.81,0.54,0.2 +C1359,6.11,2.09,-2.31,-2.41,-0.15,-0.15,1.46,0.02,0.36,-0.61,-0.7,-2.41,-1.28,-1.4,0.05,-0.42,0.52,-0.28,-1.49,0.17,0.77,-2.25,1.23,1.83,0.23,-1.21,0.05,-0.83,-0.37,0.16,1.62,1.24,0.82,-0.57,-3.26,0.64,-1.26,1.91,-2.3,2.53,-1.94,-0.73,2.43,-0.87,0.23,0.34,-2.7,2,-0.99,2.48 +C1360,3.7,-1.41,-0.2,-1.89,-4.85,-0.03,-2.42,0.08,-1.38,0.69,-0.76,1.12,1.16,0.02,0.89,2.27,0.55,-4.4,0.72,2.6,1.7,-1.85,-3.62,-1.51,1.13,-1.72,-0.58,-0.01,-2.56,1.64,-0.06,-0.25,-1.67,1.12,1.47,-0.28,-1.28,-2.62,1.42,1.51,0.3,3.05,0.71,1.17,-1.53,0.72,1.61,2.08,0.23,2.23 +C1361,-8.01,2.84,-1.71,-4.18,3.7,1.86,0.95,-0.85,0.71,0.24,0.09,0.9,-1.36,-2.77,-0.85,0.2,1.33,-0.43,0.36,-0.79,5.44,1.61,-1.24,1,-1.51,0.9,1.3,1,2.62,1.48,1.58,0.71,1.03,0.42,-1.55,0.52,-0.28,-1.24,-0.39,0.01,1.23,-1.14,0.37,0.74,0.18,-2.69,1.99,-0.96,0.65,0.64 +C1362,-12.76,-0.29,-0.18,-1.35,-0.94,-0.46,1.21,0.42,0.91,-2.92,0.77,0.17,-0.12,-1.89,-1.11,-1.55,0.74,-1.53,1.88,-1.6,0.98,-2.46,-4.29,-2.54,0.59,-0.75,-1.23,0.16,0.9,-1.68,2.4,4.06,1.72,-3.01,0.38,-0.98,1.24,-3.23,0.49,-1.12,3.56,-0.26,-2.24,1.96,2.48,-2.43,-2.27,-0.49,1.59,-2.89 +C1363,-13.14,-1.29,1.87,0.65,-0.55,-1.9,0.63,-0.17,0.9,-0.93,1.58,0.5,-0.25,1.03,0.76,1.82,0.65,0.63,-0.22,2.81,2.15,-1.84,0.05,-0.7,0.17,-1.22,3.5,-0.94,-4.01,2.08,1.94,0.57,-1.43,1.1,-0.21,0.72,1.27,-2.04,-1.2,-1.08,0.85,-0.64,0.69,-0.7,1.13,-1.19,1,-1.74,-1.59,-0.6 +C1364,5.17,-0.26,-1.29,-2.54,1.28,-1.15,0.52,-3.16,0.89,-0.03,-2.46,1.99,0.81,0.82,0.38,2.21,-0.91,-0.08,-0.78,-1.6,-1.45,-0.09,-2.48,0.55,0.58,0.42,-0.36,-0.7,1.52,0.3,2.09,1.28,-2.07,-0.82,-1.84,-0.12,-2.25,-0.01,-0.16,0.73,0.58,-0.26,1.43,0.32,-1.7,-2.15,-0.33,-0.64,-0.26,0.62 +C1365,4.46,-0.57,-1.4,-3.09,-2.33,0.98,-0.12,-1.17,0.02,0.88,-0.56,-0.71,1.29,-1.32,1.69,-0.01,-1.93,-0.93,-0.4,-0.37,-2.63,-1.66,-2.12,-1.11,-2.22,1.33,0.62,1.15,1.2,0.22,1.67,-0.17,-1.3,-0.41,0.48,-0.21,-1.18,0.06,-0.98,1.18,0.45,1.28,-0.15,1.27,0,0.17,-2.33,-0.74,-0.1,1.24 +C1366,-12.85,2.97,-1.49,-4.78,3.35,3.23,-0.43,-0.85,-1.69,-0.91,0.31,-1.75,-0.4,0.76,0.86,-1.08,-0.75,-0.64,0,-1.32,2.48,-0.04,-2.3,2.53,0.33,3.31,0.12,2.36,-1.57,0.9,-0.28,-1.96,0.37,-1.19,-1.58,2.35,2,-0.26,-0.58,-0.58,1.24,-0.12,1.24,-0.36,0.09,-1.38,-1.38,1.19,0.7,-0.51 +C1367,3.71,1.17,-0.81,-2.14,-2.02,0.19,0.62,1.1,0.72,-1.49,-0.62,0.96,1.36,-0.09,-1.26,-1.09,-0.11,-2.05,-0.84,-0.27,-0.61,-0.16,0.71,0.51,-0.42,-1.11,0.69,-0.98,-1.25,-0.17,-1.49,1.87,-1.1,0.01,-0.23,0.19,1.2,-1.74,0.3,1.32,-0.74,-0.97,1.01,2.73,-2.43,1.25,0.82,-0.21,-0.4,0 +C1368,3.6,-0.21,0.75,-0.54,-1.78,-0.02,-1.23,-1.25,-0.29,1.08,-0.23,-0.75,1.76,1.32,-0.35,-0.51,0.59,-2.02,2.03,-1.37,0.15,-0.37,-2.06,-0.74,3.46,1.75,0.32,-0.99,0,-1.19,-1.78,0.2,0.23,-0.83,0.11,-1.18,-0.5,-0.21,-0.54,1.06,2.61,1.66,-0.92,-0.26,-1,-1.3,-1.3,-0.7,1.6,-2.56 +C1369,-8.18,3.97,-3.05,-2.81,3.69,0.06,2.16,1.13,3.23,-1.96,2.47,3.39,-0.11,-1.86,-0.72,3.74,-3.53,-0.56,0.95,-1.4,-1.69,-0.91,0.42,1.4,0.17,0.56,0.19,-0.3,1.21,0.75,-1.04,0.42,-0.84,0.02,-3.38,-1.53,1.55,0.21,-3.87,-0.18,1.76,0.13,-0.62,-1.94,1.62,1.29,1.07,-0.91,-1.81,-2.12 +C1370,4.18,0.55,-0.93,-1.29,-0.11,-1.7,0.26,1.34,0.27,-1.98,-0.17,0.85,-0.4,-0.46,0.56,-0.7,0.06,0.35,-0.65,0.45,2.91,-1.99,-0.23,0.49,1.51,2.01,-0.33,1.65,0.99,0.93,0.1,2.81,0.98,1.2,-0.05,-0.1,3.34,-0.05,2.08,-1.5,2.33,-1.26,2.44,-1.79,-2.33,-2.28,1.2,0.91,0.63,-1.06 +C1371,-8.44,1.5,-1.77,-3.86,2.06,4.54,-1.74,1.93,-2.87,-0.54,0.24,-1.11,0.66,0.81,-1.79,-1.23,-1.57,1.15,0.27,-1.43,-0.19,-0.03,2.21,-0.68,0.32,-0.76,0.88,0.5,-0.78,-0.38,-1.3,0.02,-1.62,0.94,1.31,-1.27,0.46,-0.58,-1.37,1.1,-1.8,-1.88,0.94,-1.22,0.72,2.94,-2.37,-0.86,-0.1,-0.68 +C1372,3.87,-0.64,-1.83,-1.81,0.62,1.05,-0.45,0.42,1.67,0.24,-0.51,1.45,-1.11,2.33,1.34,-0.48,0.27,-0.05,-0.48,2.19,1.21,-0.84,3.81,1.81,0.62,-0.22,-0.49,1.61,0,1.76,1.03,-0.27,1.09,0.84,1.09,-2.61,-0.54,0.02,-0.74,-0.39,3.05,-1.17,-0.84,-0.37,-1.08,-1.2,1.36,0.73,-0.4,0.06 +C1373,4.8,0.34,-4.66,0.8,2.51,0.13,0.74,-4.3,0.94,-1.22,0.86,-0.2,0.61,-0.04,0.08,0.8,1.85,-0.58,0.8,-0.26,-1.09,-0.57,1.29,-0.36,1.89,0.06,-0.09,-0.22,2.67,-1.19,-0.95,0.21,-1.57,1.14,2.16,0.84,-1.8,0.28,1.14,-2.01,0.01,-0.1,-0.68,0.11,-0.23,0.37,0.51,-1.79,-0.98,-0.43 +C1374,-15.23,-2.33,2.32,2.2,-3.35,-5.25,0.75,-1.57,-0.54,1.22,-0.35,-2.5,0.23,-2.11,-0.13,1.2,0.68,-2.38,0.72,0.36,-2.01,2.31,-1.48,2.6,-3.94,-1.96,0.66,-0.81,1.44,0.54,-2.88,0.68,-2.15,1.37,0.8,-1.44,0.07,1.51,0.86,3.95,2.32,0.38,0.04,-0.05,2.62,-0.25,1.28,-1.17,-4.28,4 +C1375,4.22,0.11,-2.23,-2.26,-0.64,-1.11,0.61,-2.15,1.67,-0.22,1.65,0.42,0.65,-1.66,-0.51,0.93,1.22,3.14,1.66,-2.44,-0.73,-3.27,1.58,0.11,1.37,-1.09,1.39,0.79,0.28,-0.1,0.48,-2.04,-1.11,0.42,-0.77,1.18,-0.32,1.6,0.16,0.23,2.25,0.8,-0.59,2.03,0.94,0.15,1.28,2.29,-1.14,0.91 +C1376,3.52,-0.82,-0.36,-1.45,-4.39,0.1,-0.97,1.12,-1.43,-0.63,-0.26,0.06,1.45,-1.49,2.4,-2.85,0.4,-1.32,-0.38,-1.2,1.24,-2.95,4.76,-0.81,2.29,-0.45,-2.06,-0.89,2.37,0.27,0.37,0.31,1.69,0.93,1.43,-1.58,-0.99,-0.74,-1.31,-1.73,-0.05,0.59,-0.26,-1.27,0.49,-0.5,1.27,-0.55,-1.33,2.07 +C1377,-12.09,0.69,-0.14,-0.64,0.67,-2.36,1.04,0.02,-0.31,-1.36,-2.35,-0.07,0.71,0.29,-0.5,-0.23,0.69,-2.9,1.9,0.05,2.17,3.1,1.9,1.7,0.03,1.78,-0.6,0.62,0.59,-1.9,2.12,0.81,-2.49,3.33,-1.61,-0.2,1.39,-0.38,2.71,-0.88,1.62,-0.75,-0.52,1.53,-0.68,1.63,-2.74,0.58,0.07,-0.68 +C1378,-1.39,5.25,-1.98,-5.05,6.47,0.83,3.24,0.83,2.02,-2.65,0.9,0.41,-2.09,-1.69,-0.75,1.64,1.22,-1.49,-2.13,-0.7,1.61,3,-0.68,1.73,-1.31,-0.42,2.18,-0.93,-2.24,-1.43,3.9,0.41,2.19,-1.29,-0.68,-2.02,-0.87,0.42,-1.26,-0.26,0.01,-0.11,-2.32,0.89,-0.91,0.74,0.74,-0.32,1.75,2.2 +C1379,-10.6,-1.54,3.64,3.2,-3.81,3.36,-7.55,0.02,11.8,-2.86,3.12,4.63,3.61,-5.83,2.99,-0.39,0.26,2.05,-0.66,-0.65,-0.9,1.92,-1.59,-1.6,-0.94,1.63,1.52,-2.21,-2.5,-1.77,1.61,-0.99,1.51,-1.93,-1.12,-1.39,1.71,0.64,0.3,-0.8,-0.65,-1.16,-1.79,0.89,-3.44,-0.3,-1.04,0.87,-5.21,3.13 +C1380,4.97,1.71,-0.97,-1.89,-0.81,-0.7,0.21,0.22,-0.25,-0.67,0.4,0.81,0.1,-1.72,-0.55,0.49,1.65,-0.02,-0.15,-0.77,-2.34,-1.89,0.73,0.36,-1.14,-1.89,1.74,-0.16,0.82,0.68,-1.75,-0.67,0.71,0.85,-0.53,1.86,0.81,-0.84,-2.35,1.49,0.88,-0.18,-1.14,1.2,-0.42,-0.57,-0.12,-2.71,0.64,1.82 +C1381,3.42,-0.13,-0.69,-1.79,-3.14,-0.54,-0.65,2.63,-0.03,1.23,-1.06,-1.11,0.31,0.53,-2.36,-0.2,-2.02,-1.91,-0.55,-0.49,-0.27,-1.45,-1.77,2.26,0.49,1.88,-1.93,-0.44,-1.36,-2.08,1.14,0.14,1.85,0.66,0.03,-2.76,3.26,2.34,-2.53,1.2,-2.01,0.63,0.99,0.86,-0.81,-0.29,-0.2,-2.07,1.17,1.65 +C1382,-11.72,-0.6,1.03,0.31,-1.67,-8.22,3.77,-1.99,0,-1.19,-0.64,-1.96,0.56,-1.4,-0.11,3.27,3.73,-2.74,0.51,-0.07,1.01,0.08,-0.09,-3.31,-0.21,-1.44,-0.49,0.29,1.58,-1.97,2.23,-0.96,-0.69,0.21,-0.53,-1.06,2.1,-1.25,0.25,2.06,-2.85,0.19,-0.51,3.73,0.37,2.04,-0.82,1.79,-0.19,2.35 +C1383,-10.63,1.93,-1.18,-3.33,3.12,2.43,1.89,0.66,0.04,-0.5,-0.05,-0.44,2.25,0.75,-0.04,0.73,-0.75,-2.92,1.32,-0.08,2.21,-2.74,1.05,-1.5,-1.31,3.33,-0.37,-0.23,-0.41,-3.66,1.48,-0.06,-1.12,3.3,-3.16,0.39,-2.43,1.43,0.08,-0.68,-0.12,0.52,-1.88,2.72,0.23,-0.48,1.66,2.46,-2.46,-1.64 +C1384,3.08,1.43,-1.62,-2.29,-1.06,-0.21,-0.57,1.42,0.51,-0.36,-0.03,0.86,-1.19,1.2,0.65,-0.62,0.66,-0.23,1.68,0.74,-2.37,2.59,1.01,-1.74,-0.93,-0.6,0.89,2.33,-0.54,-2.5,-0.05,-0.3,1.22,-1.52,0.32,-0.91,0.92,-1.64,0.66,0.87,0.58,1.56,-1.19,-2.5,1.05,1.44,0.32,0.4,-0.96,-2.22 +C1385,-13.33,1.19,-0.39,-2.41,1.2,2.86,-2.28,-0.43,-1.72,0.48,-0.45,-1.73,-1.07,2.91,-0.69,-1.08,-2.38,1.68,-1.35,1.68,0.45,-0.8,2.13,-0.57,-0.65,1.35,1.35,1.6,-1,-0.63,-2.39,0.32,2,-1.02,-1.01,-0.55,0.98,0.38,1.15,-1.35,-1.09,-3.07,0.89,-1.2,0.69,0.86,-1.01,1.01,1.59,-0.15 +C1386,4.72,1.15,-2.01,-2.93,0.95,-0.64,1.4,-0.07,0.99,-1.01,2.68,0.46,0.79,-0.44,-1.2,-1.18,-0.98,-0.7,-0.69,0.53,-0.6,0.49,-1.81,0.6,0.72,-0.01,-2.48,-1.94,-0.68,-0.76,-2.47,-0.26,1.91,0.4,-1.03,-2.13,0.17,0.56,-0.64,-0.37,-1.36,3.32,0.62,-0.35,1.06,0.09,0.13,-1.61,2.33,0.19 +C1387,6.01,1.23,-1.38,-3.95,-0.84,-0.14,1.34,2.13,-0.56,-2.78,-0.36,-1.53,-0.11,2.19,0.68,-0.67,-0.81,-0.43,0.63,1.86,3.43,2.27,-2.39,-2.93,-1.77,2.18,0.37,-0.68,-0.33,0.11,-0.47,0.18,0.54,-1.34,4.06,2.42,-0.43,-0.14,-0.46,0.9,-0.59,1.05,-1.7,0.64,1.03,1.1,0.72,3.45,-0.35,-1.01 +C1388,2.1,-11.02,1.84,3.11,6.45,-0.76,-0.12,5.95,-1.25,1.27,-0.93,-0.03,-0.96,1.23,-0.6,-4.11,-1.24,-1.37,-0.21,-1.52,2.26,-2.07,-4.49,-1.29,0.61,-1.04,4.03,0.09,-1.68,-1.12,-2.02,-5.1,-3.94,-0.2,-2.81,1.06,1,-1.43,-0.85,1.4,-0.45,0.58,-0.98,-0.07,0.63,2.04,1.3,-2.93,-2.49,-1.94 +C1389,4.58,-6.56,0.96,1.79,4.5,0.05,2.43,-0.69,3.27,-1.32,3.2,-4.04,-0.05,-1.53,0.8,-1.43,2.31,0.74,4.54,-1.35,-4.13,1.27,3.56,-0.01,-3.82,-0.14,3.42,-2.07,-2.89,1.95,0.95,-3.81,-2.68,0.87,-0.22,0.69,-2.01,1.26,-2.93,-0.5,-1.58,0.7,1.58,2.8,2.45,1.64,2.04,0.17,1.33,-2.12 +C1390,3.97,-1.34,-1.3,-1.09,0.77,-1.15,0.14,-1.94,-2.05,-2.25,-1.06,1.44,0.64,1.04,0.79,3.13,2.73,0.37,-0.31,-0.7,4.25,-1.09,-3.51,-0.86,-0.91,-0.85,-3.73,0.07,-0.84,0.63,-0.38,-1.48,0.83,-0.99,-1.62,0.66,2.28,-0.71,-0.02,0.14,-3.08,1.95,-2.24,0.71,1.26,-0.18,-0.1,-0.2,-0.62,0.96 +C1391,3.98,0.77,-0.93,-2.56,-2.47,-1.35,0.11,0.7,-0.29,1.17,0.28,0.9,1.79,-0.26,-2.44,1.5,0.38,0.52,0.26,1.33,2.44,-0.91,-0.5,-1.26,-0.27,0.24,1.53,-0.29,-0.66,-3.46,-0.05,-1.28,-0.28,0.86,-0.42,0.03,0.39,1.77,-1.68,-0.9,-0.27,0.14,1.1,-1.06,1,-1.5,-0.81,-0.72,-1.83,-0.48 +C1392,4.45,-0.11,-2.27,-2.43,-2.63,0.51,-1.02,1.31,-1.04,0.37,0.46,-1.03,0.22,1.76,2.07,-1.41,-2.64,-1.97,4.67,-1.69,0.8,2.94,2.25,0.27,-0.83,-1.02,2.43,-3.17,0.65,-3.58,-1.64,-0.81,0.18,-3.42,0.6,-1.86,-0.56,-1.82,-1.37,1.63,-2.71,-0.3,-0.97,-1.08,-1.52,-0.76,-1.97,-0.13,1.25,0.5 +C1393,5.47,2.03,-0.68,-1.66,0.84,0.32,0.61,0.67,1.73,0.75,0.2,-0.36,-0.52,0.12,2.69,0.12,1.39,2.24,2.4,-0.19,-2.5,-0.98,-0.37,1.28,0.65,0.62,-0.46,-2.7,0.58,1.29,-1.32,-0.95,-0.9,-0.77,2.05,-1.3,0.04,-1.2,1.11,-0.85,-0.69,-1.33,0.86,-0.63,1.78,0.72,0.85,0.15,0.45,0.95 +C1394,-13.28,1.79,-0.55,-3.94,3.15,2.55,-1.4,1.31,-3.98,1.5,0.24,0.67,0.56,1.25,-1.52,-1.88,-0.47,2.39,0.67,-1.01,3.61,-3.09,1.51,1.82,0.16,-1.74,-2.32,2.33,-1.2,0.8,-1.89,-1.65,-0.23,-0.12,1.34,-0.68,1.67,-3.87,-0.87,-2.38,-2.76,1.72,-2.49,0.61,0.24,0.14,0.97,-2.41,1.84,-2.29 +C1395,5.07,-0.26,-1.03,-2.21,-3.47,-0.46,-1.83,0.7,-1.77,0.16,2.32,-1.45,-1.43,-2.37,2.58,0.42,-2,0.61,-0.89,1.92,-1.45,1.16,-0.78,-2.57,0.49,0.6,-0.77,-2.22,2.43,-0.69,-0.06,-0.33,-0.7,0.02,2.32,-1.4,0.12,-1.56,-1.13,1.05,-0.79,1.16,-1.64,1.84,-0.23,0.93,1.92,-2.32,-1.38,-0.7 +C1396,3.61,-0.09,-1.08,-2.66,-3.68,-0.87,-0.75,-0.16,-1.26,-0.43,0.13,-0.73,1.91,-1.7,-0.55,2.49,-0.84,0.06,-0.87,2.21,-4.11,-2.69,1.78,2.48,-0.08,2.09,0.73,-3.62,2.12,-0.69,2.74,1.55,1.46,1.08,-2.12,-1.04,1.11,-5,0.99,-1.16,-1.44,-0.79,-3.65,1.03,1.35,1.4,-1.52,-1.06,-3.2,0.9 +C1397,4.04,-1.53,0.23,-1.33,-2.7,0.69,-0.82,-0.65,-0.17,1.09,-0.77,1.26,1.06,-1.23,0.51,0.37,-0.47,1.08,-1.04,-0.46,-0.75,0.91,1.42,-0.59,0.91,-2.55,0.11,1.82,-0.22,2.49,0.8,-0.84,2.29,-0.58,3.02,1.4,-1.34,0.92,0.26,-0.3,-1.96,1.17,-0.47,0.2,1.84,-0.88,0.71,0.46,0.27,1.29 +C1398,0.8,7.22,7.91,9.23,-0.81,0.2,-1.98,0.38,-1.32,-2.3,4.6,1.63,-4.2,-1.4,-2.48,0.77,0.11,-0.47,-1.08,1.21,-3.46,-0.19,1.17,3.32,0.32,1.1,-0.67,-1.84,-2.63,0.07,2.94,3.32,0.55,0.53,0.55,0.59,-0.96,1.18,-1.54,-1.89,0.66,0.98,-1.13,-0.57,-0.23,-0.28,0.3,0.84,2.99,-0.05 +C1399,-16.67,-4.06,3.08,1.14,-4.51,-6,1.62,-0.21,-0.37,-5.17,0.14,1.05,-2.97,1.33,-1.67,-0.48,1.66,2.4,0.51,1.71,-2.64,1.41,-1.77,-1.37,-4.34,0.96,0.34,-4.33,-1.24,-4.54,-0.19,1.17,0.67,-2.2,1.51,0.13,-1.91,-1.19,0.73,2.98,1.98,-0.76,-4.37,0.68,2,3.54,-1.63,-0.41,-0.69,-0.63 +C1400,2.82,7.43,5.5,5.2,2.33,0.4,1,-0.84,-0.08,0.95,-2.17,0.24,1.61,-0.56,-0.72,-0.83,-3.4,0.07,2.04,1.5,1.2,-2.62,3.6,0.19,-0.36,-0.91,5.58,-1.37,0.79,-2.74,0.32,0.71,-4.69,1.58,-1.05,1.37,-1.79,2.25,1.64,-0.65,0.07,1.23,-2.48,0.6,-0.91,0.02,-0.52,-0.73,-2.21,3.53 +C1401,6.16,1.25,-2.4,-2.51,-1.2,-0.56,-0.4,2.35,2.16,-1.24,-2.24,-3.05,1.69,-0.41,1.21,-0.2,-0.56,0.01,1.53,-0.63,-1.23,0.84,1.4,0.47,-1.3,-0.7,-2.84,-0.61,1.56,-1.21,-0.63,-1.43,0.06,-0.41,-3.94,0.34,-2.06,-1.1,-0.17,0.11,-0.95,0.29,0.63,2.6,-0.62,-3.34,1.15,-0.18,0.32,0.21 +C1402,4.77,0.39,-0.79,-1.62,-2.91,-0.98,-0.23,1.46,-0.57,-0.77,2.43,0.27,-0.03,-0.8,-0.48,0.3,1.83,-1.02,-0.27,2.12,1.34,-0.5,1.6,-0.67,-0.37,-0.54,0.82,-0.73,-0.6,-1.31,-1.13,-2.14,-1.08,-0.96,-0.26,1.98,0.22,-0.56,-1.56,1.71,2.51,-0.49,1.75,-1.28,1.62,0.11,-1.6,0.5,-1.18,-0.25 +C1403,2.54,0.18,0.56,-0.11,-3.06,0.59,-0.66,-0.99,-0.27,2.32,1.62,-0.18,-0.09,-2,-0.98,1.3,4.8,-2.58,-0.2,-3.04,-0.33,-2.68,-0.47,-4.54,-3.63,0.56,3.03,-4.6,2.2,-2.42,0.22,1.17,3.49,-0.68,1.99,2.24,0.22,2.3,2.2,-3.95,0.01,-1.06,-2.49,0.62,-3.52,0.11,0.19,-1.42,1.42,1.38 +C1404,3.31,-7.39,1.55,1.29,2.53,-0.64,-1.62,-3.27,2.16,-0.58,2.59,-5.7,-0.34,0.38,-0.94,-2.18,-0.02,-0.6,0.01,0.57,1.47,-1.04,2.85,4.22,1.45,1.55,0.45,-0.82,-0.15,1.32,-0.07,-0.54,4.9,-1.43,-0.64,-0.87,-1.13,-0.1,-0.12,0.78,0.84,-0.53,2.58,2.39,0.12,0.21,-2.39,-0.22,-0.08,0.91 +C1405,4.99,0.18,-1.04,-2.33,-3.23,-0.22,-0.94,2.95,-0.76,0.63,-2.51,-0.59,-1.6,4.42,-2.23,1.41,0.18,-2.82,-1.83,-0.46,-2.03,0.44,4.31,1.5,-0.79,-0.95,1.71,0.63,-1.14,-0.97,-1.51,0.38,-1.74,-0.59,-0.31,-2.46,-2.58,-0.77,0.52,-1.7,-0.54,1.45,-0.55,-0.94,-1.14,2.11,-2.03,0.36,0.97,-2.24 +C1406,3.96,-0.03,-0.88,-2.24,-4.18,-0.1,-1.1,-0.27,-1.09,0.73,0.78,-0.76,0.6,-0.25,0.91,0.55,-0.71,-1.75,-0.93,-1.19,0.7,0.42,0.67,1.44,-0.8,-1.59,0.08,0.75,-1.33,0.2,-0.36,-0.8,0.41,-2.16,-1.21,1.31,0.09,-0.14,-1.21,-0.39,-1.52,-1.3,0.7,0.33,-0.28,-1.11,0.23,-0.02,-2.37,-0.75 +C1407,3.12,-9.6,1.28,2.32,6.63,-1.13,1.42,1.88,1.84,0.33,-1.64,-0.48,-1.16,0.57,-1.33,-2.12,2.82,-2.8,-1.58,0.55,1.12,0.56,-4.29,-4.78,-2.27,-4.99,-4.38,3.6,-0.69,-2.35,-2.98,-0.73,-2.11,-2.66,0.08,1.2,-1.71,-6.19,-2.17,0.7,-1.03,-0.38,-1.24,0.87,0.16,-0.4,0,-0.34,1.18,-0.13 +C1408,5.11,1.63,-1.9,-0.82,0.39,-0.34,1.25,-0.23,1.43,0.06,0.87,0.4,-0.95,0.95,0.17,1.37,1.12,-2.26,0.22,-0.6,2.14,-0.4,-0.85,-0.45,-0.79,1.49,-1.69,2.39,-0.26,0.11,-0.15,0.57,1.5,-1.1,1.12,-0.72,-0.25,-0.17,0.27,0.16,2.52,-0.06,1.68,-0.17,1.14,-1.26,0.76,1.01,0.49,-1.04 +C1409,-14.53,0.27,1.04,-0.86,-0.03,1.54,-2.28,-0.25,-1.31,-1.76,1.01,2.17,-1.75,0.17,-0.3,-1.39,1.32,0.61,2.52,2.05,-1.61,-1.08,-0.14,1.11,-0.69,-3.38,-1.37,-0.21,1.47,2.32,1.18,-0.1,1.71,-1.58,-0.81,-0.94,-2.24,1.17,0.17,0.29,-1.42,0.43,2.39,0.12,-0.5,-1.4,-0.55,-1.78,2.38,-1.4 +C1410,5.23,2.19,-0.96,-2.22,-1.58,0.47,0.92,2.55,0.78,-1.28,-0.36,-0.51,0.26,0.56,-2.53,-0.73,-1.04,-2.72,0.03,1.23,1.88,0.71,0.61,0.29,-1.45,-1.52,-0.33,1.76,1.98,-0.25,-0.18,0.64,-2.01,1.29,1.68,-0.35,-1.07,1.24,-0.08,1.21,-0.72,1.24,-0.81,1.54,-0.67,1.46,1.55,-0.53,1.24,2.17 +C1411,5.2,2.18,-2.1,-2.53,-0.19,-1.57,0.72,0.7,0.08,-0.77,1.15,0.99,1.21,-0.27,1.74,-0.5,-0.02,2.67,1.74,-0.2,0.05,-0.41,-0.65,-0.68,-1.08,0.81,-0.24,-1.52,-1.91,-1.19,-1.56,-0.23,3.2,0.2,-0.88,0.32,-1.35,0.08,0.58,-0.46,0.5,-0.38,0.08,-0.28,0.75,-0.49,0.13,0.07,0.35,0.15 +C1412,-16.03,-1.76,3.93,1.37,-5.3,-3,-1.54,-0.24,-0.67,-2.51,1.65,1.08,-1.24,2.02,1.47,-2.39,0.81,-0.65,2.74,0.17,-5.61,1.3,2.1,-3.61,-2.5,0.56,-1.77,-3.12,1.64,0.86,2.3,2.2,-0.98,-0.63,-0.67,1.23,-1.93,0.68,-0.6,-4.12,0.74,-0.73,-1.06,-0.89,-1.12,-2.37,-3.4,1.78,0.43,-1.46 +C1413,2.82,-5.62,0.72,0.02,-3.46,-1.18,-2.56,-3.43,-1.8,-1.95,0.85,3.38,-1.34,-0.74,0.08,-0.61,-0.68,-0.63,-3.56,0.41,0.97,0.68,1.62,1.29,-1.59,-0.98,-1.27,-0.32,0.33,1.46,0.18,0.02,-0.95,1.46,0.37,-2.75,1.09,1.62,-3.81,-0.7,1.63,1.2,-1.44,1.81,0.8,-0.63,2.31,-0.41,-1.75,0.83 +C1414,3.8,-0.92,-0.16,-1.4,-0.42,-0.3,-0.96,-2.28,1.18,-2.19,-3.96,0.27,-1.75,2.6,-1.64,1.95,1.36,0.58,0.33,0.71,-1,-0.57,-2,0.17,-0.59,0.68,-1.03,0.13,-0.23,-0.03,-0.61,0.18,0.13,-0.08,-0.07,0.36,-0.3,-2.29,2.52,-4.02,-0.37,-1.71,0.15,-4.59,-0.09,0.75,1.6,1.81,-1.17,0.47 +C1415,4.32,2.17,-1.65,-2.7,-1.74,-1.19,-0.15,0.87,-0.64,0.53,-1.42,-1.21,0.39,-0.98,-0.71,-1.2,-0.82,-0.5,1.05,2.42,0.6,0.18,1.11,1.78,0.51,-0.27,-2,-0.62,-0.2,-0.79,2.47,0.22,-0.94,-0.63,1,-0.45,2.25,-0.41,-0.86,-0.51,-1.95,-1.83,-0.57,0.6,2.7,-2.26,-0.8,1.39,1.85,0.69 +C1416,-12.49,1.21,0.49,-1.54,2.69,-1.82,1.66,-1.03,1,-1.18,1.04,0.98,1.01,-0.94,-1.2,2.47,-0.77,-1.95,3.39,-0.69,1.54,0.06,-2.85,-0.06,-0.32,1.4,2.25,1.54,-0.08,0.5,0.09,0.77,-0.23,0.78,-0.97,-0.2,-1.8,0.69,1.07,0.5,-1.14,2.04,-0.71,-0.47,-0.98,-0.33,-1.24,-0.51,-1.9,0.9 +C1417,3.79,-2.29,1,-0.43,0.89,0.53,-0.58,-3.37,2.29,-0.68,0.06,-1.11,-1.01,0.61,0.86,0.25,-1.32,-0.42,0.26,-2.26,0.7,1.9,0.84,-1.88,-0.06,0.69,-0.16,-0.23,1.24,-0.24,-1.73,-0.08,2.61,1.76,0.21,0.56,0.81,3.95,0.47,-1.67,-0.04,2.57,-1.22,0.95,0.33,-2.64,0.84,0.88,2.12,-2.21 +C1418,5.81,1.12,-0.69,-2.36,-1.1,0.56,-0.76,2.52,1.39,0.67,-2.77,0.92,-0.57,1.03,0.39,1.27,0.51,2.75,1.62,-1.37,-3.98,-1.44,1.52,1.83,0.29,1.67,1,0.4,0.53,0.1,0.68,0.19,1.6,0.34,2.19,-1.01,-2.15,-2.47,3.36,-1.67,1.29,-0.09,-0.74,-1.62,-0.23,-0.97,-0.13,1.23,-0.53,-0.31 +C1419,3.68,-3.1,0.34,0.06,-1.07,0.03,-0.19,-3.69,-2.06,-1.52,-0.15,0.47,0.32,-0.65,-2,-1.53,-1.35,1.84,0.24,-0.06,0.04,1.81,-1.07,-0.1,-0.34,0.91,-2.17,-0.24,-0.88,2.66,-1.86,-1.95,1.31,3.65,2.25,0.38,2.54,2.28,2.17,-0.13,-2.23,-1.05,-1.31,1.77,0.24,-1.67,-0.34,2.3,-3.61,1.01 +C1420,6.47,1.36,-2.77,-3.97,4.37,-0.13,2.09,-3.25,1.69,-1.41,-2.25,0.28,-0.86,-1.32,-0.85,2.68,1.33,-1.11,-1.53,2.14,-1.44,1.18,-0.57,0.1,-1.28,1.46,-1.34,1.23,-1.1,0.62,1.37,0.82,-1.23,1.24,-1.49,-1.29,-0.98,-1.8,0.32,0.37,-0.94,0.79,-0.32,1.37,-1.12,0.98,0.52,-0.19,-1.84,-0.12 +C1421,2.95,-7.18,1.31,2.41,2.2,1.11,0.04,-3.58,-0.33,0.56,4.95,-3.24,0.86,0.78,-0.5,1.71,-0.73,1.94,0.97,-0.22,-1.77,-0.07,-0.27,-2.33,-0.37,-0.69,-0.09,1.35,-2.44,-3.36,0.54,-0.58,1.71,-2.02,1.37,-2.55,2.3,2.76,1.3,-0.38,1.21,-0.85,-0.59,-0.8,1.63,0,-1.63,3.71,-1.49,-1.76 +C1422,3.82,-0.55,-0.81,-1.2,-3.77,-1.01,-2.15,2.65,0.57,-0.15,-0.12,-1.16,0.72,2.13,-1.03,3.76,1.66,0.06,-1.38,2.85,-1.19,-1.4,0.13,-0.45,0.99,1.97,-2.83,-0.28,-1.28,-0.86,-1.97,-0.14,1.81,-1.33,-0.39,-2.54,-0.23,-2.52,3.9,1.72,0.55,3.82,-0.88,0.19,1.74,-2.17,1.4,0.64,-2.2,-1.54 +C1423,3.33,-5.47,0.6,2.68,3.26,-0.64,-1.47,-4.68,1.63,-2.6,0.02,-1.28,0.07,-1.13,-0.38,-0.31,-0.05,1.74,-0.91,0.54,-1.22,-0.67,1.12,-3.55,-0.45,2.83,2.09,-0.24,-1.16,0.17,-1.89,-1.69,0.22,1.83,1.31,-1.69,-3.29,1.86,1.36,0.25,3.08,1.79,1.12,-0.32,-0.32,0.14,-0.17,0.75,-0.02,-0.81 +C1424,3.48,-0.27,-1.77,-2.36,-1.04,-1.85,0.71,-0.37,-0.06,-0.47,4.6,1.86,0.31,-2.32,-3.15,-1.2,-0.8,3.24,-0.33,-2.36,1.22,-1.16,-3.11,1.26,1.18,0.02,-2.53,-0.18,-2.06,-1.93,-0.55,-0.15,-1.01,-0.59,1.38,1.42,-2.4,-1.31,-0.23,0.17,-0.52,0.01,-0.17,-0.36,-0.37,-0.67,0.92,0.15,-1.56,1.27 +C1425,4.7,7.37,1.6,0.42,3.24,0.53,1.46,-0.17,3.39,-1.9,1.42,1.26,1.59,-1.32,-2.87,-1.51,-1.31,-0.19,0.06,-1.21,0.4,-0.21,-3.13,1.81,0.56,0.76,1.11,4.02,2.81,-0.87,0.89,-1.02,0.72,-0.18,0,0.99,0.47,0.99,-0.66,1.65,-0.78,-2.02,-0.49,2.56,1.02,-0.32,-1.94,2.65,-1.63,1.44 +C1426,-10.39,0.31,-1.42,-2.87,0.24,5.38,-1.66,-0.65,-2.26,-0.38,-0.8,1.29,0.03,3.25,-2.49,-0.33,2.43,3.8,0.2,-0.62,-0.97,2.44,3.7,-0.56,0.42,1.15,1.18,1.22,0.12,-1.84,-1.57,0.9,-1.03,1.71,-0.32,0.79,-0.89,0.07,-1.7,-0.52,-0.94,-0.38,-0.84,-1.83,-3.24,1.34,3.37,1.38,-2.05,3.17 +C1427,5.91,-2.44,-1.08,-0.9,2.86,0.22,-0.18,-7.29,0.1,-1.03,-3.34,0.45,-3.41,-1.04,-2.48,-0.15,0.21,0.24,-1.29,1.98,0.17,-1.45,-1.59,-0.6,0.11,-1.34,-0.18,-0.88,-0.19,2.05,1.9,-1.06,-1.55,-0.78,1.65,-0.29,3.24,-1.25,1,-0.66,-0.27,-1.35,-0.33,-1.04,-2.36,1.85,1.16,2.74,1.12,0.15 +C1428,4.45,-1.39,-1.93,-2.76,-2.87,-0.46,-1.06,0.47,-1.18,-0.72,-1.62,-0.55,0.28,-1.23,1.33,1.29,0.12,-2.81,-0.54,-0.26,0.19,-3.33,-0.72,0.19,0.46,-0.64,1.91,-0.76,2.33,-0.37,1.64,1.54,-1.28,0.19,-1.15,1.3,-0.21,1.1,0.82,0.91,-1.01,0.38,-0.01,3.68,0.71,-2.05,1.45,2.14,1.21,0.81 +C1429,4.08,2.1,-2.45,-2.81,-0.59,-0.55,0.39,1.34,0.03,-0.81,1.07,0.9,0.68,0.7,-0.13,1.59,-0.57,1.04,1.41,-0.14,2.28,-0.23,0.28,0.47,0.73,-0.06,1.28,-0.39,-0.25,0.78,-2.91,2.28,-1.42,0.04,3.01,-0.51,-2.07,-1.43,1.53,-0.52,-0.65,-1.89,-1.2,-1.06,-1.69,1.63,2.44,-0.69,-1.15,0.74 +C1430,5.51,2,-1.76,-3.02,0.55,0.35,1.73,-2.19,2.34,0.05,-0.74,0.73,-0.57,-2.01,-0.11,1.18,-1.55,1.73,0.9,2.07,0.84,0.79,1.98,-2.73,0.14,-0.08,-0.56,-0.81,0.98,0.57,-1.09,-0.59,1.14,-0.12,-1.2,-0.16,-0.32,-0.99,0.23,-0.31,-1.5,0.69,0.47,2.38,-2.27,-0.55,-0.5,1.83,0.64,-0.91 +C1431,-12.52,-0.53,1.31,0.82,-2.55,2.48,-0.02,1.05,0.23,-1.68,-1.5,-2.16,-0.08,4.43,-2.75,0.86,-0.82,1.36,-2.37,-1.05,-1.83,-2.17,-1.75,-1.82,-2.41,0.05,1.95,2.03,1.49,1.42,-1.64,1.18,0.07,-5.18,0.79,-0.26,0.07,4.22,-2.15,-4,-3.73,3.76,1.59,1.58,-1.51,0.75,2.05,-1.44,0.87,-2.11 +C1432,4.18,0.37,-1.4,-2.36,-1.11,-1.86,-0.38,-1.22,-0.99,-0.02,-1.73,-0.07,0.24,0.04,0.1,0.64,2.01,0.28,-2.21,-0.8,-1.01,0.09,2.09,0.19,1.08,0.78,0.92,1.39,-1.17,-1.34,-2.62,-1.35,-4,-3.04,3.49,-1.24,0.72,-0.79,0.85,-1.61,1.56,-2.52,-0.85,-0.54,2.47,0.39,1.46,-2.07,-0.73,0.05 +C1433,-12.77,-2.01,3.42,1.39,-4.36,-8.73,2.08,-1.19,0.86,0.8,0.34,-1.96,-0.21,-1.1,0.88,-0.59,1.68,-1.45,-2.44,0,1.49,1.61,-0.96,0.92,1.51,-0.52,2.29,-0.69,1.93,-1.32,1.03,1.6,-0.45,-1.27,1.93,-1.27,-0.94,-0.37,-0.25,-0.36,-0.81,1.23,-0.36,-1.69,-1.36,0.38,-2.89,-0.84,-2.15,0.96 +C1434,4.25,-4.02,0.18,0.51,5.14,-1.29,1.05,-4.02,0.17,-2.04,-1.66,-0.97,-0.26,3.19,2.74,1.4,1.15,-0.78,0.79,4.32,-0.25,-0.08,1.07,-1,1.72,0.54,-1.51,-2.54,-1,-1.88,0.5,3,2.5,-4.19,-1.84,-0.42,-0.46,1.51,-1.71,0.83,1.97,0.08,-2.56,1.51,-0.28,1.69,0.84,0.69,-1.12,2.16 +C1435,-10.61,0.97,-2.76,-2.18,2.01,3.21,-0.54,1.49,0.39,1.49,0.31,-0.56,2.67,-0.05,0.39,-0.41,2.18,-0.96,0.67,-0.86,1.07,-0.3,-0.4,1.58,-1.16,0.1,-0.1,0.58,-1.39,0.18,-0.5,0.21,0.2,-0.79,1.18,-0.1,1.85,1.6,-0.12,-1.26,-1.61,-0.21,-0.28,-2,1.38,0.17,1.87,-1.43,1.77,-0.65 +C1436,-11.45,0.25,-1.15,-3.08,1.79,3.96,-1.05,-0.8,-2,0.04,-1.91,-0.78,1.89,-1.72,-2.06,2.3,3.46,2.52,-1.02,-1.02,-0.95,-0.59,-0.05,0.8,0.97,-1.67,-0.27,-0.48,1.73,-0.89,-1.72,-0.05,0.44,2.65,0.69,-1.19,1.98,1.46,2.36,-0.18,-4.21,-1.96,-1.78,1.34,-0.57,0.13,0.95,-0.73,0.61,-1.37 +C1437,5.84,2.03,-1.06,-2.88,-0.25,-0.5,1.05,1.88,0.26,0,0.16,0.51,0.99,-0.86,0.35,-0.36,-0.65,0.08,0.27,1.68,0.47,-1.34,-1.68,-2.07,-0.28,1.88,0.77,0.29,-0.04,1.07,1.59,1.51,-0.28,1.28,-0.06,-1.52,0.09,-2.15,-1.96,-0.26,1.6,0.3,1.49,-1.59,-0.28,-0.76,-0.77,0.7,-1.32,0.88 +C1438,3.9,-0.26,-1.51,-1.56,-2.9,-0.61,-1.52,1.05,-1.45,-0.55,-1.23,-1.78,0.25,-0.58,1.72,0.64,-3.59,-3.73,-1,-1.94,-1.55,0.49,0.74,-1.14,-0.94,-0.26,-1.56,-2.36,-1.33,-1.42,2.24,-1.23,0.63,-0.34,-1.9,-1.02,-0.62,2.02,-0.41,1.82,-2.28,-1.68,-0.36,-0.24,-0.94,-0.2,-0.93,-0.17,-0.38,0.25 +C1439,3.96,-2.48,0.01,-1.12,-5.93,-0.65,-2.3,-0.27,-1.82,0.76,3.15,1.4,3.3,-1.21,-0.42,0.86,0.69,-1.25,-0.58,-2.4,-0.43,-1.86,0.15,4.14,1.45,0.05,1.02,-0.34,-0.45,-3.52,2.6,0.27,1.56,2.56,1.83,1.45,-0.03,-1.81,1.89,0.81,1.62,-1.07,1.39,0.18,-0.92,-0.41,2.71,0.33,1.38,0.31 +C1440,3.37,6.3,3.99,3.21,2.66,-0.48,-0.54,1.34,-1.29,0.04,-1.13,2.04,2.32,-0.08,-1.54,-1.59,1.02,-0.34,0.87,1.25,-0.21,-0.45,-1.52,-1.04,-2.19,0.69,-2.75,0.23,0.71,-1.37,-1.19,-0.17,-0.28,2.07,-2.44,0.06,2.48,-0.23,-3.18,-0.91,-0.04,-1.43,4.86,1.4,-2.72,-0.82,0.3,-0.12,-0.93,-0.29 +C1441,4.56,0.95,-1.14,-2.96,-1.51,0.42,-1.21,1.53,-0.99,0.43,-2.75,-1.84,-0.69,0.24,0.68,1.99,-1.65,-0.02,-1.52,1.05,-1.99,1.32,-0.72,0.87,-1.67,-1.15,1,0.71,3.98,0.01,-1.99,-0.1,-1.01,0.03,0.64,0.56,0.56,-1.33,1.6,1.47,2.41,-0.18,0.82,-0.8,0.78,-2.09,1.16,0.01,-0.72,1.01 +C1442,5.5,2.05,-1.18,-2.4,-0.07,0.74,2.84,1.52,2.45,-1.89,-0.62,0.32,1.8,0.32,-1.59,0.39,-0.98,1.36,0.09,-0.53,-3.25,-1.99,-2.76,0.21,0.95,1.59,-2.65,1.51,-1.34,1.11,-2.05,-1.82,-0.43,-2.47,0.29,-2.08,2.79,-0.54,2.36,-0.56,0.15,-0.35,-2.9,2.83,-4.7,1.72,1.18,-0.88,-3.22,-0.78 +C1443,6.36,1.31,-1.18,-2.8,-2.27,0.24,-0.82,2.75,0.3,-1.38,-2.22,-0.07,-1.67,1.87,-0.67,0.85,-0.88,-0.14,0.86,3.71,1.87,-1.37,0.31,0.05,-2.85,-3.79,-1.88,-2.63,1.34,-2.26,-2.23,0.58,1.38,-1.77,-0.14,1.58,-4.97,2.04,0.27,-0.78,4.61,0.29,0.71,5.84,1.04,-2.56,-0.87,2.44,-1.7,-1.42 +C1444,0.77,5.68,3.82,2.91,0.85,-0.2,-0.44,-1.12,0.22,1.61,2.33,0.42,0.21,-1.27,-1.79,2.28,-0.38,2.85,2.18,-1.45,3.71,-0.63,-1.8,-0.76,-0.53,-2.75,-2.02,-0.05,0.99,-1.56,1.01,-1.88,-1.15,-0.34,1.61,-0.96,1.92,0.15,1.02,-1.52,2.13,0.84,0.47,0.59,-1.44,-0.63,0.32,2.73,1.01,-0.77 +C1445,4.39,-3.74,-0.21,-1.2,0.44,0.06,-0.55,-3.39,1.05,1.09,-0.79,0.95,-0.23,0.3,1.13,0.49,0.2,4.17,-1.79,-2.8,0.78,0.68,3.83,0.22,0.59,-2.09,-1.26,0.36,-1.18,-0.19,1.13,1.74,-3.37,1.95,1.23,0.97,0.46,1.56,-1.04,1.21,-0.68,-0.05,-0.49,-1.92,-1.97,0.31,0.8,-1.02,-1.88,0.1 +C1446,3.73,-0.63,-0.97,-2.1,-2.71,-0.84,-0.02,0.01,0.25,-0.58,1.2,2.27,-1.25,-1.9,-1.71,-0.86,0.11,-2.78,-1.67,0.38,0.74,-0.22,-1.11,-0.51,1.37,-0.83,1.01,-2.37,-0.33,0.15,-0.96,-0.79,1.33,2.18,-0.48,0.27,-0.27,0,-1.52,1.97,1.33,-1.31,-1.34,1,-2.92,-1.44,1.63,0.22,0.34,-0.55 +C1447,-8.75,2.87,-2.5,-4.64,4.11,1.86,1.86,-0.01,-2.1,2.56,-0.57,-1.12,-0.91,1.26,0.52,-1.49,2.4,-0.31,-0.03,-3.01,1.04,2.32,2.12,-1.95,-1.95,0.83,2.06,-0.8,1.04,-0.49,0.42,0.53,-2.31,0.03,0.15,0.05,-0.87,1.25,0.84,0.14,-0.42,0.1,0.3,3.16,-1.22,-1.14,1.77,0.67,-0.13,-1.26 +C1448,4.65,2.23,-1.78,-2.54,-0.91,-1.3,0.91,2.39,0.81,-0.91,1.41,-1.28,1.09,0.78,0.39,1.41,-0.9,-0.03,-0.93,-0.23,-1.29,0.32,2.03,1.93,-0.32,-0.49,-3.31,0.37,0.16,-2.69,0.79,0.2,-0.37,1.5,1.71,-0.18,0.57,-0.62,0.81,0.13,-0.34,0.96,0.41,-0.07,-1.6,-0.37,0.54,0.88,-1.09,-2.62 +C1449,2.15,-1.57,-0.77,-2.52,-2.16,0.24,-0.89,0.41,0.45,-0.54,-0.35,-0.95,0.34,-1.67,-2.64,-0.82,2.94,-1.86,0.58,1.63,-2.11,-1.25,0.16,0.43,1.43,-1.07,1.9,0.74,-1.49,2.21,0.02,0.92,0.88,-3.07,-2.47,-0.69,2.9,-0.97,-0.11,0.91,-1.85,0.97,-0.39,-1.03,1.84,0.6,1.58,-1.18,1.92,0.9 +C1450,1.35,-3.55,-0.86,-0.73,-4.4,0,-2.07,0.34,-2.19,0.93,0.44,1.19,3.31,-0.29,-1.02,-3.53,-0.59,-1,0.8,2.37,0.48,0.62,2.31,1.12,-3.44,-1.95,1.29,-0.78,-1.05,-2.31,1.06,-2.64,-2.7,-0.76,-4.31,0.26,3.17,1.98,1.04,2.67,1.94,0.75,-3.47,-1.13,-0.46,-0.76,3.12,2.43,1.87,1.17 +C1451,5.8,2.75,-2.28,-2.31,0.47,-0.4,0.78,1.25,0.69,-0.7,1.2,-0.48,-0.94,2.31,2,0.42,-0.64,0.42,1.19,2.08,-0.03,-0.47,-1.46,0.69,-0.8,0.78,0.63,0.25,-0.42,-3.09,0.03,0,0.4,0.33,1.91,0.62,2.73,0.64,-1.44,-0.53,-0.32,-1.69,-0.52,3.04,0.61,-0.54,1.84,-0.05,1.84,-0.36 +C1452,4.49,-1.42,-0.72,-2.08,-2.39,-1.22,-0.75,0.38,0.83,2.1,2.98,0.45,0.15,1.02,-0.59,1.54,-1.1,0.24,0.05,-1.32,0.35,0.16,-2.24,1.65,0.52,-2.93,2.36,-1.83,-0.68,1.69,-0.72,1.12,-1.98,2.97,3.92,2.84,1.36,-0.59,-0.83,0.62,-1.42,-0.67,2.38,-1.18,-2.93,0.64,2.31,-0.79,0.52,1.23 +C1453,-15.14,-2.66,-0.29,1.79,-3.32,-5.28,1.61,-0.36,-1.63,-0.4,-0.87,0.63,-1.15,0.17,3.31,-2.99,0.37,-0.36,1.34,-1.98,-1.07,-0.47,-0.67,1.42,1.15,1.35,0.13,1.3,0.81,2.77,0.07,1.78,-0.48,0.43,0.35,0.06,-1.41,2.17,-0.05,-1.03,1.4,0.35,1.73,-0.38,1.09,-0.75,1.82,0.91,-4.43,0.83 +C1454,3.94,8.06,3.57,4.37,1.45,-0.3,0.66,-1.16,-1.53,0.33,-1,-2.4,2.25,-2.13,-2.21,-0.11,-1.22,-0.35,-0.72,-0.54,-0.94,-0.56,-3.27,-0.36,0.47,2.04,0.72,2.13,2.09,2.08,1.36,0.82,-0.02,-0.7,0.41,-0.71,0,0.22,-0.16,3.31,-1.12,-0.5,-1.56,0.48,0.47,1.11,1.06,-0.99,-2.12,1.57 +C1455,4.45,2.49,-1.2,-2.78,1.03,-1.53,1.34,-0.95,0.89,-1.74,2.87,-0.53,-0.08,-1.67,0.01,1.47,0.1,0.72,-1.04,1.31,0.52,-0.8,-1.49,0.36,-1.92,-1.01,-0.84,-0.9,-1.74,1.5,1.72,-1.21,-1.1,0.13,0.18,-1,-0.1,0.41,0.2,0.31,0.01,2.27,0.46,2.66,-0.2,-0.3,0.26,-1.75,0.93,0.23 +C1456,6.07,-0.13,-2.24,-1.77,4.15,0.63,2.33,-3.09,1.5,0.87,-1.21,0.27,0.48,-0.44,-0.21,-0.26,0.58,-0.43,-0.79,1.82,-0.15,1.74,1.33,-0.48,1.12,0.11,-0.91,-0.57,-0.06,-0.57,-1.09,1.71,1.34,1.45,-0.33,0.21,-0.95,0.04,0.39,-0.25,-0.73,1.05,0.55,-0.17,2.74,1.07,0.91,-1.47,0.62,0.4 +C1457,4.69,0.31,-1.57,-2.55,-2.16,0.81,-0.82,-0.12,1.26,0.95,1.1,-0.69,-0.71,-1.25,-1.25,0.23,1.16,2.84,-0.73,-0.15,-1.41,0.58,2.15,1.58,1.5,1.31,1.06,0.47,-0.35,-0.1,1.14,1.14,-2.73,-0.86,-0.96,-0.31,-0.23,-1.16,-2.4,2.15,-2.09,-1.29,-0.62,-2.26,0.15,-0.12,0.36,-2.35,3.04,2.11 +C1458,2.93,-6.73,1.11,1.12,2.51,-0.46,0.21,-2.77,0.27,-1.41,0.99,-1.91,-1.76,-0.52,2.3,-0.04,2.43,3.15,-0.54,-1.22,-1.02,-1.45,-0.08,-1.94,0.38,-2.77,0.93,0.1,-1.4,0.48,-0.65,1.64,0.42,-2.48,-2.46,-0.89,-0.47,-1.18,1.4,2.2,2.31,1.22,2.62,-0.01,-0.19,-1.63,0.29,0.71,-1.54,-1.92 +C1459,-10.74,2.4,-13.49,8.15,1.67,2.79,-1.63,-0.8,4.36,3.79,3.33,-0.01,0.62,1.56,-0.08,0.52,2.68,1.39,-2.26,1.76,-0.5,0.94,1.36,-1.19,-0.86,2.39,-0.46,0.31,-2.97,2.17,-0.32,0.91,-0.54,1.33,-1.52,0.45,1.99,-0.35,-1.51,0.31,2.5,-1.7,-3.82,2.1,-0.9,-1.65,-0.11,-1.96,5.16,-0.14 +C1460,3.32,-1.9,-0.91,-1.46,-2.89,-0.62,-1.65,-0.5,-1.59,2.93,2.33,-0.38,-1.19,-0.63,-0.19,-1.23,-2.34,0.74,1.49,1.01,0.87,-4.87,0.44,0.46,2.65,0.84,0.8,-2.42,1.46,-0.51,-0.95,-0.86,1.18,1.55,1.01,-1.18,1.55,-0.88,-1.58,-1.66,-0.43,0.62,1.04,0.56,0.32,-1.39,-0.07,0.61,2.04,1.5 +C1461,3.39,-1.04,-0.68,-1.47,-2.17,-0.35,0.31,-1.5,0.34,1.22,0.39,-1.6,0.63,1.55,1.76,0.89,0.45,-0.17,-2.03,1.56,-0.16,2.05,-0.02,-0.23,2.14,-1.22,-1.42,0.57,-0.31,0.71,0.57,1.4,0.51,-2.58,-1.38,-1.07,2.18,0.73,1.15,-0.67,-0.98,-1.34,-3.36,1.06,-1.6,1,2.04,-1.57,1.49,-0.25 +C1462,2.23,7.35,5,5.92,1.7,-0.31,-0.35,-0.96,-0.44,-0.89,0.18,-1.27,1.11,1.71,-0.06,0.71,3.03,-2.76,-0.04,1.11,-1.12,2.18,0.78,-0.39,0.77,2.61,1.43,-1.19,-2.76,0.98,-0.36,2.07,-0.03,0.46,1.41,0.05,-1.79,-1.36,-1.15,1.42,-2.63,-1.01,-0.04,1.89,2.01,1.09,0.39,0.02,-0.98,1.27 +C1463,4.13,8.68,2.92,2.34,3.47,-1.18,0.42,-0.01,2.28,-1.05,-0.1,0.12,1.86,0.31,0.37,-1.9,-0.16,2.63,-0.31,-1.12,-0.14,0.96,0.68,0.14,-0.16,-0.55,-0.36,-1.13,0.67,-0.68,1.33,1.62,-0.72,2.52,1.58,-0.14,0.28,-0.04,-0.85,-0.47,-1.92,-0.7,-0.44,0.9,-1.76,-2.16,-1.01,1.17,0.21,-2.43 +C1464,5.57,2.51,-1.39,-2.17,0.01,0.78,0.89,2.3,1.65,0.45,0.53,-1.28,1.2,-0.59,0.96,2.37,-0.36,-0.59,-0.26,0.86,1.55,1.11,1.55,-1.74,-3.2,0.53,-1.89,1.11,-1.86,-2.14,-1.3,0.22,0.41,1.54,3.16,-2.84,-2.06,0.92,-0.26,-1.17,-0.91,1.06,-0.48,1.05,-1.42,-0.22,0.58,0.32,0.82,-0.52 +C1465,4.84,3.58,-2.13,-4.01,2.51,-0.07,1.7,0.91,1.08,-0.56,-0.45,-1.78,-0.9,1.59,0.39,1.43,0.09,2.7,-0.81,1.55,-1.66,0.73,-0.64,-0.38,-0.85,1.71,-1.05,1.45,1.36,-1.49,1.22,-1.52,0.22,0.51,-1.01,-0.36,-0.72,-0.72,-0.84,-0.4,1.23,-0.27,-0.8,0.03,-1.39,0.36,-0.44,0.43,0.2,-0.32 +C1466,3.83,2.08,-1.98,-2.82,-0.1,-0.9,-0.26,-0.23,-0.72,0.52,0.97,0.71,0.39,-0.27,1.38,-0.22,0.31,-0.72,-0.83,-0.79,-1.73,-0.96,1.01,0.6,-1.3,0.16,0.87,0.67,-0.64,0.74,0.1,-1.29,1.68,0.69,0.93,-1.71,0.8,0.89,-0.22,-1.82,-0.69,-0.53,-2.65,0.76,-1.6,-1.21,-1.03,-0.78,1.9,-0.96 +C1467,4.75,0.46,-1.4,-1.48,-1.34,-0.57,0.26,-0.94,1.13,-0.29,-0.4,-2.05,-1.1,0.63,1.36,0.12,0.6,1.36,-1.21,2.05,0.24,-1.48,1.01,0.85,-1.08,0.08,-0.08,0.82,0.59,-1.36,-0.59,0.87,1.23,0.53,-2.2,-1.46,-0.61,0.68,-1.74,0.44,-0.75,-0.34,0.18,-1.11,0.47,1.73,-1.35,-0.12,2.19,1.07 +C1468,4.26,-3.57,-1.07,-1.22,-0.47,0.24,-1.24,-2.4,0.58,2.14,0.52,-1.51,0.06,0.78,0.13,-3.93,-2.38,1.18,0.83,-1.82,1.08,1.18,0.05,-0.92,-0.19,-1.32,0.62,1.73,-0.8,-0.33,3.71,0.64,-0.44,1.81,-1.79,-1.37,1.49,1.46,-0.93,-0.09,-2.14,-0.86,-2.35,-0.32,-0.53,0.03,-0.35,3.3,0.31,-1.32 +C1469,3.85,-2.41,0.76,1.47,-0.2,1.36,-1.47,-4.55,1.16,-3.24,-1.84,-2.79,-3.29,1.2,-2.95,-0.71,2.23,-2.74,0.18,-1.19,-0.13,-2.47,1.05,1.35,3.18,1.19,-2.07,1.57,-0.75,-0.5,1.49,-0.4,-2.96,1.97,2.85,-2.78,1.24,2.6,2.73,0.86,2.16,-1.34,0.74,2.14,1.11,0.45,-1.46,0.22,0.78,0.51 +C1470,2.55,-11.27,2.02,1.79,5.21,-0.35,-1.38,2.1,-2.47,-1.07,2.46,-0.3,-2.12,-2.98,0.23,0.93,0.1,-1.23,0.58,-1.18,-2.71,-0.53,2.62,-0.21,-2.18,0.98,0.63,-0.55,-1.5,0.29,-0.59,0.96,0.76,0.32,1.08,0.06,4.38,-0.84,-1.43,-0.1,-3.18,-1.89,1.42,-1.46,1.28,-1,0.68,1.75,1.74,4.09 +C1471,5.53,3.71,-1.71,-2.45,1.69,-1.12,1.59,1.8,0.36,-0.75,-0.76,0.72,-1.09,-0.38,-0.54,1.87,1.55,0.32,0.05,-0.19,0.29,1.26,-1.32,0.02,-1.78,1.95,-1.66,-1.4,0.36,-0.46,-1.93,0.88,-1.49,0.36,-2.7,-0.91,1,-0.02,-1.11,0.27,-0.46,-3.7,0.49,-0.44,0.41,-2.54,0.46,-2.28,0.37,-0.57 +C1472,3.89,0.31,-0.9,-2.21,-1.48,-0.74,0.55,1.19,-0.65,2.33,-0.08,-0.67,0.66,0.19,1.37,-0.37,-1.63,-1.45,0.09,-0.37,-0.01,2.05,1.7,1.1,0.54,-0.4,-0.79,0.04,0.77,1.1,0.59,0.15,2.34,-0.83,0.38,0.68,1.16,-0.39,-2.24,1.51,0.8,-0.24,-0.01,-1.24,-0.92,0.59,-1,-1.92,-0.73,-0.67 +C1473,3.58,0.05,-1.21,-2.41,-1.06,-0.77,0.46,0.18,0.81,-0.38,1.86,0.1,1.14,0,1.33,-1.08,0.96,0.72,2.84,1.26,0.3,-1.88,1.36,-0.29,1.01,1.04,1.89,0.07,0.28,-0.99,-0.14,-0.3,0.54,2.61,0.14,0.02,1.78,-1.12,-2.26,2.23,-0.67,-0.35,0.43,-1.01,-1.58,-0.26,-1.27,-1.15,-0.17,-2.4 +C1474,4.73,-3.41,-1.15,0.39,-1.6,1.37,-2.64,-5.8,-2.99,2.07,-0.19,1.67,0.65,-2.72,2.18,-1.87,-2.75,-2.33,-1.8,0.94,-0.4,0,-4,-0.58,-1.69,1.55,0.87,2.02,-0.07,2.45,-2.76,-2.12,3.06,0.74,0.44,0.36,0.92,0.31,-1.4,-1.2,1.74,-1.86,-1.63,0.84,1.51,-1.09,0.59,1.67,0.38,-2.36 +C1475,3.94,-0.18,-0.76,-2.02,-3.14,0.8,0.2,-1.21,-0.19,0.5,-1.34,0.05,-1.44,0.66,-0.18,-1.3,1.12,-0.14,-1.12,-0.44,-0.23,-0.74,1.24,-1.62,1.07,-0.55,0.53,1.7,1.33,0.48,0.68,1.46,-0.87,2.61,0.66,-0.28,1.71,0.3,-0.53,2.6,-1.79,0.15,0.41,0.4,0.59,0.71,0.27,-1.36,0.57,0.65 +C1476,5.59,1.35,-1.87,-2.42,-0.63,-1.03,0.57,1.35,0.12,-0.78,-0.91,0.27,-0.37,0.59,-1.12,-1.51,-0.41,0.87,0.27,1.72,1.62,0.24,-3.5,-0.03,-1.53,1.06,0.39,0.46,-0.79,-1.29,0.81,-0.03,-0.08,1.2,0.43,-1.37,-0.48,0.48,2,2.16,-0.49,1.38,2.44,0.03,0.78,-0.54,0.2,2.74,-0.55,0.72 +C1477,3.25,0.58,-1.22,-1.98,-0.99,-0.17,1.05,0.16,1.26,2.4,-0.83,-1.32,0.91,-2.66,2.04,-1.57,0.44,-1.16,2.03,-0.13,0.19,0.4,2.16,1.81,-0.42,1.92,-1.19,-1.29,0.63,0.69,0.86,-0.4,-0.53,0.44,1.43,3.16,-1.67,-0.58,2.21,-0.65,0.75,1.36,0.35,-0.72,0.49,1.19,0.16,-1.27,-2.63,-0.42 +C1478,4.85,0.5,-0.37,-1.62,-2.8,-0.42,0.53,1.84,-0.63,0.71,0.1,-0.94,1.17,0.39,-1.47,0.01,1.92,-0.51,2.2,-2.08,2.01,-1.72,3.24,1.07,-1.96,-0.98,-2.6,-1.72,-0.54,1.19,-1.39,0.59,-1.05,-0.2,-0.14,0.43,-1.29,1.9,-0.24,1.45,-1.5,-0.49,1.46,-0.9,0.86,-0.87,1.75,0.8,-0.5,1.23 +C1479,5.94,-0.2,-1.62,-2.77,-3.6,-0.81,-1.35,1.3,0.52,0.55,0.04,1.12,-0.88,-0.98,1.89,-0.06,1.15,-1.82,0.5,0.47,-0.23,-0.93,-0.39,0.7,-0.76,-2.01,-0.08,0.47,-1.53,1.63,-2.83,-0.4,0.3,-0.11,-1.52,-1.06,-0.46,0.87,0.08,-0.06,3.49,0.53,0.52,0.82,-0.27,-0.4,-1.08,0.91,0.9,-3.95 +C1480,4.99,1.09,-1.43,-2.96,-0.93,-0.34,-0.85,2.09,-0.9,-0.92,-2.83,0.79,1.93,2.25,0.35,0.4,-0.06,-1.07,0.16,-0.49,1.92,-0.19,0.42,-2.39,-0.1,2.29,-1.2,0.85,-0.88,1.31,-1.79,3.58,2.09,0.13,0.72,-0.01,1.06,0.02,2.81,-1.61,-1.07,-1.71,-0.5,-0.86,-0.62,1.73,-2.42,-0.34,-0.66,-1.24 +C1481,4.07,-1.46,-1.98,-1.73,-2.8,-0.58,-1.26,-0.87,-1.35,2.4,1.32,-2.2,0.88,-1.08,0.8,-0.52,-0.95,-0.55,-2.06,-1.85,1.44,1.52,0.05,-0.91,2.53,0.55,2.89,2.47,1.48,-1.25,-2.48,-0.27,0.19,-0.04,-0.04,-0.64,-0.28,-1.42,-1.41,0.75,1.2,-1.55,0.51,-0.49,-0.78,-0.6,-2.2,-1.93,1.31,0.89 +C1482,4.09,-0.93,-2.44,0,-1.97,-0.67,-0.99,0.72,-0.42,0.39,0.58,-0.4,0.5,-0.04,-0.26,3.11,-0.6,0.37,1.97,0.57,0.25,-0.55,0.3,1.49,-0.89,-0.92,0.58,-0.03,-1.01,1.45,0.52,-0.11,-0.62,0.83,2.27,0.96,0.56,-0.28,-1.18,-0.05,-0.96,-0.13,0.9,-0.92,0.43,-1.85,2.09,1.21,0.4,-0.51 +C1483,-14.22,-4.4,-4.19,11.2,-6.32,-10.17,2.74,-1.27,0.87,3.7,2.32,2.32,3.04,4.11,-2.33,-2.31,1.27,-0.62,-1.05,-1.06,0.38,-0.5,-3.3,0.48,1.71,3.91,-0.66,-1.98,0.27,-1.97,-1.85,-0.55,0.85,3.47,3.29,1.64,-1.43,-2.25,-1.05,2.51,-4.59,4.57,4.44,0.51,1.74,2.08,-3.5,-1.84,1.01,-0.27 +C1484,3.87,-0.54,-0.79,-2.48,-3.96,0.66,-1.32,1.07,0.75,1.71,0.94,-2.44,1.76,-0.36,-0.99,1.8,0.68,0.25,-0.5,2,1.66,-0.21,3.8,1.99,-2.76,1.99,1.6,0.32,-4.12,-1.15,0.6,-1.98,-0.8,-0.5,0.29,-0.23,1.75,0.98,-0.31,0.73,0.62,-2.28,0.35,-1.34,-1.32,2.49,2.28,1.94,-0.18,2.84 +C1485,3.44,-1.5,-0.72,-1.08,-4.16,1.31,-1.11,-1.57,-0.7,0.65,0.37,-6.23,-0.25,-1.61,0.36,-0.47,-3.65,-1.63,0.08,2.46,-1.77,1.49,0.96,-4.07,1.91,-1.73,0.15,-0.23,-2.52,-1.22,-0.14,0.07,1.72,-1.08,1.27,-3.24,1.37,1.61,2.46,1.32,0.05,2.55,3.1,3.32,2.47,-1.51,0.01,-1.42,-0.43,0.23 +C1486,-12.64,-3.83,1.56,0.78,-3.65,-7.78,4.12,-0.17,0.13,0.01,-0.15,0.47,0.11,-0.37,1.77,-2.47,-1.25,0.27,1.09,0.69,-1.44,0.3,-1.05,1.56,-1.26,0.99,-0.81,0.07,0.68,1.16,0.33,-2.73,-1.68,0.87,-1.84,-0.52,-0.95,-0.21,1.05,-2.32,2.12,-1.79,-1.57,0.05,-0.98,1.74,-1.02,-2.73,0.2,0 +C1487,-8.72,1.06,-0.2,-2.14,2.42,1.45,-1.17,1.28,2.2,1.53,2.17,-0.91,-1.07,-1.52,-1.2,1.08,-2.08,0.34,0.2,-0.9,2.32,-0.48,-1.24,-0.75,-0.11,-2,-1.47,-1.14,-1.04,2.32,-2.93,-0.59,-0.76,-0.99,-3.18,0.28,1.12,0.33,-3.12,-1.29,-1.57,-0.56,2.87,-1.77,-3.11,-1.87,-1.89,0.55,-0.82,-0.84 +C1488,6.06,2.97,-2.74,-3.75,3.51,-1.35,2.11,1.49,1.52,0.03,1.79,-1.82,-0.63,-1.74,-1.93,-0.51,1.9,-0.81,1.53,-1.33,1.23,-0.41,-0.9,-1.88,-0.39,-2.01,-0.98,-0.69,0.05,-3.35,2.74,-1.05,-0.01,-1.93,2.14,2.17,0.53,0.11,-0.07,1.64,0.18,0.57,-0.23,-1.31,-0.39,0.23,-0.72,-1.43,-0.22,1.71 +C1489,5.86,-2.62,-1.73,0.12,2.84,-0.06,0.36,-6.51,0.21,-2.24,-3.31,-0.46,-1.34,1.03,-2.39,-1.54,-0.91,2.85,-2.6,0.09,-1.15,1.61,0.83,3.72,0.3,-0.55,1.52,-0.58,0.83,-0.43,1.59,1.51,2.26,-2.12,1.79,1.44,0.41,-0.63,1.6,-0.45,0.02,-0.14,1.03,-0.32,0.71,-0.61,2.19,-0.14,1.15,1.41 +C1490,2.81,7.38,4.95,4.76,1.14,-0.24,0.68,-1.06,-0.7,-0.66,0.94,-0.71,1.75,0.69,3.23,-3.8,-0.02,-2.22,0.89,0.28,1.34,-0.64,-1.95,-1.19,-0.13,0.5,2.52,1.77,-3.1,0.35,2.15,-1.03,0.74,-1.12,-0.43,-1.45,1.22,-0.15,0.14,-2,-0.55,0.83,0.59,-0.38,-0.24,1.93,1.08,-0.01,-2.88,0.36 +C1491,-9.15,0.3,3.99,4.01,-2.26,3.35,-7.21,0.09,10.12,0.84,-0.34,-0.25,1.29,-1.59,0.23,1.34,-3.03,-1.93,0.36,-0.36,2.02,0.67,0.89,-0.57,2.72,0.15,0.06,-0.23,-2.76,-0.98,0.85,0.63,-2.4,0.26,-0.13,1.92,-0.06,1.04,1.56,-0.43,-2.09,-0.68,-1.04,-0.03,2.11,2.1,0.66,2.11,-1.65,-0.01 +C1492,-15.14,1.71,-0.22,1.28,-0.81,3.99,-6.54,-0.39,6.6,-1.07,-0.63,0.15,-2.21,0.46,2.18,-0.5,-1.08,1.38,-1.81,1.08,1.74,1.93,1.23,0.55,1.38,0.7,-0.84,-0.93,-3.63,1.81,-2.4,-2.83,2.87,1.98,-0.85,2.25,0.11,-0.16,-0.89,-1.2,2.98,0.47,3.33,-3.15,-0.39,1.03,1.18,-0.95,1.51,1.27 +C1493,3.52,1.05,-2.33,-2.06,-1.37,0.18,-0.66,-1.91,-1.27,2.56,1.35,0,-0.58,-0.93,0.16,-0.95,-1.96,0.57,0.47,-1.45,0.86,0.25,0.42,0.74,0.73,-0.96,0.84,-1.2,-0.94,2.42,0.73,1.13,-0.21,2.61,0.8,0.21,0.07,-0.58,1.79,-0.52,2.48,-0.01,-1.1,1.11,-0.29,-0.34,2.25,-1.42,-1.6,-0.06 +C1494,-3.2,4.2,-3.54,-5.55,4.7,1.9,2.54,0.8,0.47,0.36,-0.33,0.62,-1.08,-0.99,-1.77,0.8,1.47,0.73,-2.02,1.53,-1,1.31,-0.29,0.49,1.79,0.69,-0.84,-1.16,-0.41,-0.22,-0.77,-0.02,0.2,0.99,0.21,-0.25,1.41,0.3,-1.13,1.52,-0.57,1.37,-0.06,-0.19,0.32,-1.14,1.11,-0.58,0.47,0.89 +C1495,2.17,8.56,5.31,5.28,2.46,-0.41,-0.54,0.55,-0.24,0.95,-0.24,-2.05,0.06,-0.09,1.08,1.06,-1.36,-0.15,0.85,0.62,-0.49,-1.03,0.32,-1.5,-0.48,-0.02,-0.56,-2.24,2.48,-2.23,-0.85,1.46,0.09,-1.05,-0.29,0.11,1.57,-1.02,1.04,-1.74,-0.09,-1.04,0.67,-0.95,0.61,1.76,0.34,0.95,0.28,-0.25 +C1496,1.77,-1.1,0.89,-0.74,-2.72,-0.03,0.26,-2.36,-1.27,0.43,3.63,-1.73,1.67,-2.23,1.89,0.01,1.32,0.13,0.43,0.85,0.67,-2.41,3.3,-0.21,1,-1.32,2.74,-0.7,5.23,-5.08,2.75,0.87,0.55,-0.32,1.1,-1.85,-0.36,-3.45,4.42,-5.19,-2.47,1.31,-3.53,-3.31,0.46,1.43,5.99,1.48,1.65,-2.9 +C1497,-15.72,-0.17,1.3,-0.15,-0.86,0.69,-1.7,-1.11,-1.66,-1.03,2.35,3.91,-0.81,2.79,2.28,-5.03,0.88,1.34,1.56,0.6,-2.95,0.3,-2.06,-1.48,-2.04,-0.39,-0.65,2.51,0.76,-0.55,0.77,0.59,2.86,-2.93,-0.4,3.55,-2.68,1.77,-3.22,0.09,-0.45,2.17,-0.32,0.64,1.56,-1.1,0.14,1.05,-0.55,0.82 +C1498,4.31,1.86,-1.94,-1.97,0.66,-0.25,0.96,2.98,-0.58,1.2,-1.26,-0.66,0.83,1.98,1.49,1.2,-1.51,1.79,-0.3,-0.06,-2.44,3.57,1.89,-0.95,-1.51,-0.62,-2.27,-1.55,0.85,-1.66,-1.08,0.6,-0.42,0.76,-0.11,-1.35,3.06,0.51,-1.32,-1.98,-0.69,1.06,-2.19,1.5,-0.01,0.95,0.54,-0.08,1.12,-0.89 +C1499,-17.4,-2.48,3.89,2.71,-3.2,-2.77,0.2,-0.79,2.44,0,-0.98,1.03,1.29,2.27,-1.83,1.68,-3.9,-1.33,3.97,-3.6,-1.13,-0.85,-2.37,-0.84,-2.65,-1.84,-0.62,2.57,-0.46,-1.25,0.49,0.73,-1.27,4.38,-1.62,-3.19,-0.13,0.18,0,1.6,1.22,-0.12,-0.46,1.88,3.1,0.86,-1.39,-3.36,-2.47,1.46 +C1500,-12.96,-1.46,1.21,3.29,-3.03,-5.96,3.95,-0.83,0.84,1.36,1.35,0.05,-0.12,0.55,0.24,0.3,-0.27,0.47,-0.9,2.99,1.24,1.12,-1.07,-1.48,0.49,-1.84,1.7,-0.37,1.21,0.19,0.08,0.63,0.81,1.5,1.54,2.11,-1.13,-0.86,0.83,0.54,-0.27,2.23,1.69,-0.25,-0.4,0.76,0.18,0.45,-1.09,2.92 +C1501,5.89,2.26,-2.55,-2.83,4.33,-0.75,3.49,-2.1,2.98,-1.16,0.44,-0.13,-0.89,-0.18,0.25,1.74,0.82,-0.89,0.46,2.35,0.75,-0.74,0.94,-0.4,-0.08,0.22,-1.65,0.07,0.69,-1.99,-0.22,-0.94,-1.1,1.72,0.06,0.13,1.38,-0.14,0.4,-0.34,-0.99,-1.46,-0.6,0.55,1.16,-1.45,-2.02,-0.97,0.06,1.5 +C1502,3.59,-11.63,1.6,3.56,8.27,-0.93,-0.8,4.34,0.07,0.26,2.11,1.16,1.48,-5.77,1.23,-1.97,1.62,-3.3,1.69,0.9,-2.97,0.43,-0.92,-2.25,0.47,-1.25,1.41,2.23,1.83,-1.11,-3.13,-1.27,-0.62,-2.99,3.84,-4.68,2.73,-0.6,5.04,-2.92,-2.55,0.18,1.39,0.9,0.69,1.04,-0.24,1.43,2.04,-4.63 +C1503,3.64,-5.47,0.53,-0.29,-3.6,0.54,-3.51,-2.41,-4.06,0.05,0.34,2.79,-1.11,-2.04,0.23,0.31,-2.48,-0.74,-1.06,-0.96,-0.23,-0.38,-0.11,0.3,-1.73,-0.16,-0.41,-1.37,-2.8,3.78,1.16,0.98,-1.18,-0.67,3.66,-1.47,-0.23,-0.91,2.25,1.86,-0.6,0.36,1.8,0.47,-2.44,0.17,-0.37,0.99,2.38,2.27 +C1504,3.43,-0.22,-0.78,-2.08,-1.87,-1.37,-0.37,2.74,-0.36,-6.15,2.93,3.78,-1.38,0.64,1.98,-1.08,0.6,0.07,1.01,0.3,-0.98,1.32,1.14,0.19,4.75,0.97,-0.81,0.13,-3.03,0.51,-0.08,0.34,0.38,-0.89,-0.49,0.57,-1.31,0.43,1.24,1.36,0.48,0.95,-1.42,-0.06,-1.2,-3.05,1.07,0.23,-1.61,0.29 +C1505,4.3,-1.52,-0.48,-0.25,-2.5,-0.53,-0.73,0.95,-2.13,-1.89,1.59,-1.61,0.83,1.27,-3.15,1.63,0.98,1.16,-0.56,-1.12,1.67,-1.47,-2.35,3.55,-2.08,-1.64,1.52,-0.56,-1.06,0.93,2.1,-0.11,1.15,2.67,-0.36,-0.46,0.19,2.7,-1.47,-1.3,-0.54,2.16,-0.01,0.39,-2.49,0.51,-1.27,1.1,-0.41,-1.71 +C1506,4.91,0.61,-1.43,-2.61,-2.65,-0.22,0.21,1.81,1.15,-1.66,1.43,-0.22,-1.39,1.84,0.27,-2.97,-1.81,-0.87,-3.63,-3.65,-0.57,1.32,2.37,0.22,2.11,1.12,2.22,3.73,0.48,0.18,1.84,0.28,0.06,0.71,0.19,0.27,1.45,-1.11,-0.99,-1.98,2.21,-1.75,-1,0.2,-0.05,-0.01,1.6,3.4,1.8,-3.69 +C1507,3.21,-3.78,1.16,0.27,4.82,-0.52,2.14,-3.95,2.5,-0.31,1.7,-1.07,-1.19,-0.45,-1.09,2.77,2.81,1.96,-0.03,-3,-0.7,-0.59,1.24,-2.29,0.33,-0.39,-2.4,0.19,-0.21,-2.79,-0.56,-1.13,0.13,1.27,1.66,0.49,-0.45,0.03,-0.45,-1.49,-0.87,0.47,1,-0.44,-1.31,-0.79,0.2,-0.84,2.55,1.59 +C1508,-14.45,-2.64,2.56,1.6,-3.06,-5.5,2.09,-0.15,0.19,2.31,0.45,-0.21,-0.29,0.1,3.45,-2.89,1.28,-0.17,-2.63,1.64,5.02,-0.27,0.49,-0.99,-0.58,1.04,-1.72,-0.02,-0.29,1.69,2.14,-1.72,-1.62,1.33,-1.43,-1.6,-2.12,0.53,0.83,0.86,0.01,2.03,1.27,3.63,-1.02,0.58,0.76,-0.72,1.74,2.37 +C1509,-13.92,0.78,-1.99,-2.59,2.11,3.3,-2.29,2.37,-1.53,-0.8,-2.32,-1.19,-0.7,2.98,0.89,-1.47,4.55,-1.07,1.22,-1.51,0.68,1.55,-0.02,-0.41,-2.8,0.77,1.51,-0.11,1.28,3.38,0.64,1.83,2.02,-3.65,-0.33,-4.55,-1.81,2.46,0.64,-1.32,0.3,1.05,0.34,2.06,1.01,5.11,-3.43,1.29,5.43,0.07 +C1510,4.85,1.66,-1.59,-2.72,-0.34,-0.01,0.69,-0.05,2.08,-0.64,-0.47,-1.58,-0.04,0.23,-0.77,0.61,0.02,-1.36,0.19,1.24,-1.57,1.22,0.93,-0.63,-1.05,1.14,0.79,-1.24,1.74,2.74,-1.3,1.71,0.55,-0.05,0,-0.21,2.4,-2.33,2.59,1.14,0.5,-1.65,-0.95,-1.86,0.54,-0.55,0.25,0.44,-1.37,-0.35 +C1511,-14.81,-1.53,2.29,0.69,-0.8,1.21,-3.11,1.43,-1.34,1.42,0.93,-0.39,4.3,-0.77,-0.16,-0.2,0.09,2.05,-0.66,-0.33,-0.08,-1.78,-1.82,1.33,-1.39,0.14,1.74,-1.77,1.71,-0.39,1.19,3.19,-0.69,-1.41,0.94,0.65,-2.96,-3.32,-0.74,0.08,-1.24,2.26,0.43,2.68,2.26,-1.82,0.25,1.5,-3.28,3.38 +C1512,-13.01,0.66,-0.1,-1.97,-0.3,-0.67,0.79,-0.24,0.45,-2.41,1.6,1.58,0.61,1.04,0.53,-2.34,1.78,0.17,0.95,0.69,-0.69,-0.28,0.44,-1.53,1.08,0.15,-2.06,-1.42,-0.86,0.98,2.31,0.52,-1,1.4,-1.38,0.85,-1.68,-1.91,0.51,-0.67,0.18,-1.01,-1.02,0.88,-0.41,-0.63,-0.56,-2.9,-1.14,-0.46 +C1513,2.05,-1.6,0.33,-0.27,-4.03,-1.36,-0.78,-0.95,-2.23,0.41,1.82,-2.36,1.47,-1.35,-1.63,0.43,2.23,2.84,-2.56,3.94,3.38,-0.81,-2.33,0.7,1.91,-1.07,4.91,-0.85,-0.69,1.09,-2.16,-2.44,-0.94,-2.77,-2.06,3.19,1.69,1.1,3.25,-0.96,0.66,1.17,-0.83,1.53,0.07,-0.86,2.63,-3.85,-0.28,3.09 +C1514,4.28,0.31,-1.23,-2.2,-3.04,0.3,0.37,0.27,-1.1,0.72,0.77,0.22,0.25,-0.16,0.77,0.22,1.5,-2.02,-0.77,2,0.58,0.45,0.16,1.93,1,0.41,-1.3,0.81,1.32,0.46,1.78,-0.17,0.34,-1.71,0.69,-3.11,0.17,-2.03,0.81,-0.83,0.4,-0.81,-1.14,-0.99,-0.91,2.37,-0.09,-1.23,-1.43,-1.98 +C1515,-13.8,0.41,-1.57,-3.5,1.94,1.84,-1.48,1.6,-2.11,-1.91,-1.07,0.48,0.52,1.16,-0.94,0.28,0.31,-0.93,1.61,-0.79,1.12,0.51,-0.14,-1.16,0.44,0.65,1.27,-1.3,0.14,1.38,-0.79,0.41,-0.55,0.11,0.11,-2.14,-0.5,-2.23,-1.59,-0.5,-0.53,-1.84,1.09,-1.52,1.8,0.6,-1.37,1.26,0.12,2.27 +C1516,3.14,-3.45,0.52,0.36,-6.66,0.51,-2.18,-0.96,-2.77,-1.05,1.32,-2.24,3.09,-4.6,4.55,-2.34,4.54,-2.23,1.13,2.08,0.23,-4.68,3.92,3.66,-2.5,0.05,3.33,2.68,5.17,-2.97,1.72,0.94,-3.23,0.13,-1.54,3.27,5.8,-4.58,4.53,-1.81,1.53,-3.43,0.03,0.43,-0.86,3.45,3.69,0.27,3.28,1.42 +C1517,6.14,0.43,-1.03,-1.91,-2.6,-0.41,-0.88,2.33,-0.19,-1.43,-1.64,2.85,-1.7,1.53,-1.87,-1.33,-1.27,-2.99,0.45,-0.46,1.28,-0.35,-0.47,-2.69,2.6,-0.29,-1.91,-2.52,2.71,1.45,-0.2,-1.71,-1.82,0.89,-1.07,-0.83,-0.72,0.16,-2.75,1.58,0.52,-1.47,-1.61,2.06,1.37,-1.18,-1.06,3.87,1.71,0.64 +C1518,-10.26,-0.56,4.79,5.45,-3.93,3.71,-8.04,-0.85,12.33,-0.42,-1.07,-0.49,0.98,-1.67,-0.61,-0.89,-1.5,-2.12,-3.09,1.54,3.37,2.79,-0.08,-0.93,3.28,0.97,-2.96,1.35,1.53,1.44,2.43,-0.82,3.31,0.8,2.24,-1.76,0.24,-1.58,2.45,-2.03,0.3,2.17,-3.6,2.26,-0.18,0.7,0.33,0.36,-1.46,3.07 +C1519,5.04,-5.52,-0.07,0.28,2.99,-0.06,-1.1,-5.93,-1.96,0.73,-1.87,-0.46,-0.28,0.02,-1.22,0.56,-0.63,0.32,1.11,3.03,0.39,-3.81,0.65,-2.18,-1.83,0.86,-3.18,-1.44,-0.37,3.26,-0.46,2.9,6.46,1.5,-0.05,-1.04,1.89,2.41,1.55,0.81,-4.49,-0.61,2.67,1.8,1.47,1.82,2.93,-2.23,-2.23,1.08 +C1520,-13.24,-3.69,1.53,3.23,-4.51,-7.82,1.57,0.76,-0.36,0.54,-2.56,-1.06,-0.26,-0.26,0.1,-2.24,-0.71,2.1,0.26,1.8,2.97,0.51,-3.55,-3.03,0.17,-1.34,2.14,-0.14,1.05,-3.01,-1.03,1.78,1.26,0.19,-0.63,-2.48,1.7,1.07,-0.79,-1.98,1.58,0.59,-1.77,-1.08,-1.84,-2.23,-0.8,2.53,-0.5,-0.55 +C1521,-11.09,0.69,-1.89,-2.74,2.87,0.11,1.11,1.04,-0.11,-2.65,1.1,0.3,-1.32,-2.83,0.46,-1.14,-2.75,-1.01,-0.24,-0.99,0.77,1.46,-1.18,1.15,-3.3,-1.66,3.35,2.01,0.02,-1.93,-1.02,-1.62,-0.43,1.18,1.01,1,1.24,-2.7,-1.02,-1.08,0.53,0.47,-0.2,0.05,-7.18,0.55,-1.8,1.88,-0.07,0.28 +C1522,4.73,8.75,3.51,3.02,3.38,-0.05,0.26,-0.01,-0.66,-1.07,-0.8,1.18,0.88,0.46,0.85,0.08,-1.85,-0.57,1.18,-0.62,0.63,-1.44,0.2,1.16,-1.25,1.15,0.8,0.63,-0.5,-0.07,-0.63,0.52,0.38,-0.19,0.95,-0.23,1.12,-1.09,-0.37,-2.14,-0.34,-1.11,-0.75,-0.1,-0.33,1.07,0.3,-0.69,-1.56,-0.08 +C1523,4.01,7.88,6.47,5.74,0.54,0.01,-0.14,0.06,-2.85,0.57,0.44,-0.31,0.15,-0.14,-3.77,0.15,4.04,-0.27,2.19,-0.48,2.11,0.76,1.41,2.49,-1.82,-3.15,-0.66,2.39,-1.32,0.4,1.3,1.2,0.57,2.45,-1.08,-0.79,0.3,0.28,-0.67,-0.2,-2.53,0.27,-1.11,0.64,1.45,-0.05,1.34,-0.79,-0.27,-0.59 +C1524,4.17,3.36,-1.32,-2.97,1.74,0.22,1.19,-0.05,1.04,-0.25,-2.12,0.41,0.93,0.3,-0.01,-0.54,2.39,0.83,0.75,-1.15,0.19,0.3,-1.1,2.11,-0.06,0.97,-0.33,1.95,0.68,0.37,0.91,1.54,-0.38,-0.05,-0.61,-0.11,-0.55,0.3,0.81,-0.72,-0.06,0.2,1.13,-0.4,0.24,0.85,0.07,0,1.65,-0.2 +C1525,3.71,-11.19,2.29,2.86,8.27,1.58,0.72,5.94,-0.13,1.12,0.21,2.19,-0.84,1.84,3.53,3.12,0.16,1.66,-5.22,3.89,-0.21,-4.63,1.67,0.86,-0.77,-0.51,-1.49,-2.44,-1.75,1.85,2.26,-2.04,-0.37,1.2,0.04,-1.42,-1.54,-6.32,-3.4,-1.4,1.12,0.74,0.04,-2.41,4.02,3.44,-2.27,-0.24,2.46,1.82 +C1526,-15.35,0.64,0.53,0.22,-1.43,1.75,0.37,-0.05,-0.6,-4.31,2.23,0.92,0.4,0.25,-1.13,0.1,-0.31,-0.67,0.5,-1.85,0.63,-2.94,-0.79,-0.06,-2.09,-0.46,-1.6,1.15,-1.52,-1.05,-0.6,0.74,-0.49,0.12,-0.97,-2.67,2.04,0.04,-2.32,1.2,-0.52,1.74,-1.43,-0.13,0.62,2.31,0.34,2.43,-0.15,0.79 +C1527,3.24,-0.04,-0.63,-2.03,-2.79,-1.07,-0.32,0.15,-1.34,-1.45,0.5,0.55,0.62,2.16,-0.2,1.99,2.69,-3.33,0.87,-0.76,-0.77,-1.54,0.03,-0.35,-1.97,-0.72,1.9,1.56,-1.88,-3.23,3.05,-1.04,1.33,2.14,0.51,0.76,-2.88,1.83,1.65,-0.13,-0.01,-3.37,0.64,1.38,-1.83,0.33,0.16,-1.17,2.74,1.7 +C1528,3.97,-0.93,-0.61,-0.96,-3.82,0.46,-0.58,1.48,-0.25,1.02,1.96,-1.16,0.17,0.9,1.17,-2.61,1.51,-2.59,-1.33,1.41,-0.77,0.45,-0.37,2.82,0.28,0.4,0.29,0.26,-0.02,0.22,-1.53,2.1,1.14,1.99,-1.15,-0.12,-1.69,0.61,-0.67,-2.83,-0.91,-0.78,1,0.17,-1.57,0.69,-0.91,1.29,0.07,2.46 +C1529,2.45,-11.84,1.01,4.05,8.29,-0.38,0.12,3.98,0.42,3.04,0.86,1.35,2.35,-3.94,-4.61,-1.63,-0.22,-3.7,1.04,-1.23,1.04,-2.47,-0.71,-2.82,0.16,-5,-2.9,4.04,5.22,-0.77,-2.69,1.44,3.06,1.73,-1.86,0.61,0.24,-0.14,-0.39,0.88,1.3,-3.4,1.37,-3.77,0.66,-2.53,2.15,0.25,0.05,-3.96 +C1530,4.8,2.18,-1.89,-2.68,-0.05,-0.59,1.43,1.72,1.27,0.72,-0.17,-1.39,-2.13,-0.48,-2.02,0.53,0.3,0.7,-2.19,-0.34,-0.21,1.29,0.84,-2,1.11,1.18,-0.6,-1.58,0.44,0.21,1.37,2.13,0.83,0.06,-1.51,1.31,0.08,1.67,-2.19,-1.27,0.63,-3.05,0.2,-1.86,0.84,1.46,0.07,-1.47,-0.55,0.86 +C1531,6.28,4.2,-3.21,-3.68,1.9,-0.91,1.77,2.15,1.93,-1.31,-0.23,-1.66,-0.8,-1.11,-0.78,0.28,1.23,-1.15,0.67,-0.55,0.1,1.99,-0.45,-1.17,-0.72,-0.68,1.31,-0.16,-1.74,-1.88,-1.51,0.1,-0.32,-1.49,0.45,-0.16,-1.03,-1.59,-2.25,0.43,0.08,-1.86,-1.06,2.06,-0.27,-0.39,-0.28,1.92,0.44,-0.37 +C1532,4.24,0.44,-1.48,-0.14,-3.2,0.27,0.55,2.47,0.73,2.16,2.31,-0.49,1.92,0.57,0.62,1.54,-3.21,-0.08,2.53,2.51,-0.14,0.95,0.47,-1.23,-0.12,2.91,-0.62,-2.92,-2.78,-1.16,0.14,-0.96,-3.39,3.66,0.15,-2.17,2.25,4.03,-1.29,0.17,-0.74,-1.37,0.62,-1.19,2.49,-1.96,2.83,-1.07,1.6,-1.36 +C1533,5.28,0.94,-1.51,-3.15,-2.36,-1.86,-0.22,0.95,-0.74,0.97,1.83,0.11,0.94,0.18,-1.72,-0.49,-0.1,0.61,1.29,0.86,1.63,-0.3,-2.39,-0.78,0.71,-0.68,1.38,-0.67,0.52,0.46,1.19,-0.87,0.06,-0.77,-0.52,2.13,-1.3,-0.71,-1.79,-0.27,1.59,0.71,-0.19,-0.68,-1.11,1.12,-0.29,-0.56,0.51,0.47 +C1534,4.62,-7.12,0.6,1.46,7.28,0.38,0.12,3.05,1.67,1.73,-0.58,-1.73,0.24,0.16,-1.6,3.63,1.54,2,3.7,1.57,1.31,-1.95,0.26,2.13,4.03,-0.4,3.48,0.7,1.49,-1.27,1.8,-0.53,-0.35,-1.91,-0.57,0.49,0.95,0.81,-1.44,0.3,-0.98,1.12,0.81,2.02,0.74,0.62,-1.57,0.7,0.64,0 +C1535,0.5,5.09,5.29,5.8,-0.59,0.38,-1.39,-2.94,-0.76,3.6,1.08,0.57,-2.23,1.92,0.56,-1.13,0.06,0.92,2.21,-4.13,-1.23,5.87,1.98,-0.6,-1.27,-0.45,2.3,3.14,-1.82,1.99,0.93,-0.36,2.44,-1.68,0.83,0.76,-6.39,0.4,-0.04,-0.52,-2.39,0.53,0.98,2.07,1.01,-2.15,2.44,0.3,0.5,-1.82 +C1536,4.27,1.88,-0.9,-2.18,0.52,0.22,-0.64,1.86,1.97,-1.97,-0.47,0.92,0.07,1.4,1.3,1.9,1.18,3.7,0.17,4.31,-0.74,0.04,0.17,0.24,-0.07,0.83,-0.56,0.49,-1.81,-0.28,-0.15,2.72,0.33,-0.39,-0.31,-0.87,1.15,0.64,1.1,-0.44,0.77,-1.5,0.65,-0.67,3.03,-0.57,0,0.55,-0.34,0.86 +C1537,4.49,-0.1,-1.29,-1.81,-1.18,0.28,0.46,1.25,-0.97,-1.77,0.89,0.08,0.69,-0.56,-1.14,1.6,0.75,0.38,0.32,-3.1,0.64,-1.16,0.92,-0.1,-0.17,1.22,0.76,1.68,0.08,-1.18,-0.44,-0.77,-1.71,0.66,-1.31,-0.42,0.28,0.83,2.91,-0.24,-0.03,0.33,1.8,0.67,-1.4,1.02,-0.96,-1.65,-0.62,0.62 +C1538,4.33,0.49,-1.95,-0.34,-0.14,0.72,0.24,-2.06,3.06,0.18,-2.7,-0.55,-0.29,1.83,-0.3,0.46,-0.83,-1.77,0.25,-2.07,1.3,1.58,2.07,0.5,-1.48,-1.86,-0.83,-1.16,-2.23,-0.17,-0.67,-2.03,-0.05,0.85,-0.31,1.84,3.5,-1.71,-0.98,-0.14,-1.05,3.27,1.04,-0.43,0.45,2.36,1.61,0.86,-1.45,0.81 +C1539,4.27,-0.3,-1.03,-1.74,-0.44,0.02,-0.32,-1.29,0.89,2.51,0.08,-1.16,-1.64,-1.93,1.07,-0.12,-1.28,-0.16,0.31,0.35,-0.03,-2.53,-1.86,-0.52,2.52,1.19,1.49,-3,-0.06,-1.06,0.04,0.37,0.34,-2.06,1.94,-0.1,1.18,-1.01,-0.26,0.67,1.93,0.94,-0.33,-0.75,-0.07,0.94,-0.02,1.24,1.03,-2.74 +C1540,3.13,8.06,7.12,6,1.94,-0.07,-1.83,0.42,0.49,-0.77,-1.74,2.1,-1.33,0.71,-0.12,1.15,0.32,-2.05,-0.42,-0.73,0.08,2.6,-1.56,-0.37,2.59,-2.88,2.01,-3.65,-2.19,-0.78,-1.44,-0.76,-3.95,0.78,-1.31,-0.98,-0.95,-0.7,-2.73,-2.49,2.75,0.58,3.25,-1.98,-1.34,4.84,-1.4,4.67,-2.75,2.59 +C1541,4.23,-2.13,-0.75,-1.69,-3.98,-0.95,-1.88,-0.13,-1.23,-0.1,1.38,0.81,1.14,-0.35,-2.32,-0.24,-0.24,-1.46,1.95,3.52,-1.91,1.07,1.56,-0.82,2.92,6.33,-0.23,0.59,2.51,1.93,2.84,-2.03,0.96,-0.75,-0.4,0.54,-0.15,-0.28,0.14,-1.28,-1.23,2.17,2.13,0.92,-0.78,-1.43,-1.16,2.61,-0.6,-0.62 +C1542,-13.17,-2.57,2.36,2.78,-3.36,-6.34,2.85,1.05,-2.8,-1.28,0.25,1.04,0.4,0.74,0.88,1.2,-1.86,0.5,-0.02,-2.09,0.68,0.11,-0.76,-1.19,-0.66,-0.67,0.51,-0.74,-0.15,4,-1.3,-0.33,-1.28,1.67,0.42,-0.09,0.53,-2.25,0.29,0.41,-2.66,1.47,-1.97,-0.82,0.88,-1.07,1.64,0.49,-1.59,1.28 +C1543,-14.26,-4.21,1.47,2.91,-4.19,-7.18,3.38,-1.44,1.32,0.23,0.29,-0.16,-0.67,0.59,-0.25,0.36,0.79,-0.8,0.36,0.2,-1.71,-0.11,-0.13,-1.77,-1.35,0.41,0.43,0.88,2.83,2.73,-1.88,1.43,-1.26,0.12,1.32,0.51,-0.76,0.7,0.1,-1.32,3.07,0.55,-1.33,-0.11,-2.4,-1.78,1.04,-0.08,0.58,-3.09 +C1544,2.62,7.62,6.91,8.88,0.74,-0.03,-0.31,-0.07,-2.23,2.55,0.49,-0.66,0.21,-0.99,-1.27,-3.24,1.79,2.31,1.25,2.76,-0.52,-1.07,1.69,-1.14,-1.73,0.33,-0.02,0.99,0.19,-1.4,-1.45,0.15,-1.75,0.99,1.32,1.04,0.47,-0.61,-1.76,0.31,-1.18,-0.31,0.14,0.48,-1.51,1.22,-3.07,2.19,1.02,-1.24 +C1545,-12.62,-2.27,5.67,5.13,-3.6,4.38,-11.37,0.47,10.69,-1.2,0.11,3.54,3.55,-2.72,2.87,1.39,0.39,1.08,-2.27,1.32,-3.73,1.23,-0.56,2.17,-3.2,2.58,-0.58,-2.83,-0.26,3.1,-0.79,-1.53,0.86,-1.86,0.66,2.95,-3.53,-1.12,1.18,-3,-0.2,-2.88,1.86,2.64,0.72,1.45,1.02,-0.36,1.17,2.08 +C1546,-12.3,1.58,-0.09,-3.33,1.72,1.88,0.58,0.9,2.57,-3.15,4.04,1.92,-0.4,-0.15,0.67,-0.19,0.12,-1.06,-1.93,-0.25,-0.45,-3.24,-0.87,0.89,-1.44,1,0.23,2.34,-1.89,0.35,-0.58,-0.47,-2.05,0.63,-0.35,-0.41,-0.15,-2.67,0.81,-0.03,0.36,0.16,-3.45,0.76,-0.96,1.52,-0.7,-1.94,0.27,0.59 +C1547,-12.08,0.43,1.39,-0.85,1.76,3.31,-1.1,-0.5,-1.91,0.13,-3.12,-2.33,-2.52,2.34,0.34,-1.07,-0.47,0.05,0.72,-2.14,-0.61,1.55,0.22,1.55,-4.27,2.18,0.17,-4.3,3.26,-0.23,-0.53,4.79,0.4,-2.8,-1.11,-0.47,-0.44,3.01,0.91,1.4,3.23,0.12,-2.03,-1.41,-1.98,-1.21,-0.7,0.26,2.39,-0.77 +C1548,-9.11,3.93,-5.99,-1.21,4.91,-0.9,3.81,0.12,-0.43,-1.72,1.87,2.2,-1.52,0.1,-1.65,0.06,-0.41,-1.48,-0.44,-0.67,-0.55,-1.25,-1.61,3,-2.53,-0.57,0.09,-1.59,0.15,-0.13,-1.06,1.25,-1.47,-0.52,-1.05,0.5,-0.23,-2.38,-1.52,1.18,-0.18,-1.63,-2.3,-0.66,1.56,2.01,0.31,1.04,0.24,-1 +C1549,5.08,7.23,4.63,6.83,0.85,0.07,-2.19,-0.48,-1.37,-1.07,-0.62,-1.22,3.51,-1.31,-0.51,-2.48,-0.38,1.74,0.85,3.15,-0.89,0.94,1.87,0.22,0,3.27,0.19,-0.02,-3.62,1.08,0.93,-1.63,-2.05,0.48,-2.89,3.53,0.86,-0.49,-0.53,0.77,-0.39,-1.23,1.26,-2.42,-1,0.37,0.92,1.05,-0.88,-0.15 +C1550,4.87,0.5,-1.94,-2.33,2.14,-0.28,1.06,-1.65,0.57,1.69,-0.03,0.32,2.34,0.74,5.36,1.25,0.3,0.07,2.23,-2.49,1.43,1.34,-1.32,1.09,0.57,0.95,-0.24,0.42,-2.37,-1.37,3.1,-1.91,1.67,1.99,2.19,-1.44,-1.89,1.11,0.91,0.34,-0.59,-0.95,0.16,-0.85,1.97,-0.85,1.18,1.52,0.48,-0.4 +C1551,2.96,-0.14,-0.1,-1.45,-0.24,1.36,1.59,-1.09,-1.58,-1.07,0.93,0.41,-0.29,-0.43,-0.27,0.53,-1.44,0.12,0.64,0.29,1.41,-0.81,1.1,-1.81,-1.62,0.68,0.34,-0.71,-1.3,2.25,1.7,-0.95,-0.73,0.52,-0.6,0.31,-2.6,1.18,0.11,0.71,1.01,-2.43,3.16,2.05,0.65,0.58,-0.21,0.64,1.53,-0.63 +C1552,5.22,2.61,-2.26,-2.68,0.94,-1.69,1.63,2.42,2.34,0.01,-1.62,-0.38,-0.18,2.14,0.67,0.79,0.17,0.18,-2.44,-0.6,-3.19,0.38,0.62,-1.26,0.04,0.58,2.02,-0.36,-1.24,-0.14,-0.23,-2.17,1.91,-1.62,0.55,1.53,-0.91,-0.26,0.79,1.37,-0.16,1.45,1.28,2.02,0.29,-1.7,-0.03,-0.52,1.17,-0.94 +C1553,-13.46,-0.14,0.77,-1.43,-0.26,0.31,-0.91,0.08,0.33,-0.18,-1.23,-2.31,-0.59,-0.7,0.68,0.62,-1.57,-0.65,-1.24,-1.11,1.26,-1.02,0,1.71,-0.75,0.91,2.71,-0.36,0.11,2.89,-2.28,-2.04,0.9,-2.14,3.04,1.13,0.02,0.17,-2,-0.46,1.24,-0.14,-1.91,0.33,2,0.32,0.85,-0.43,2.88,0.01 +C1554,3.66,-1.21,-1.29,-0.22,-2.77,0.19,-0.03,1.55,-0.58,0.66,-1.05,0.47,-0.22,1.16,-2.2,3.24,-1.2,-1.38,0.91,0.32,0.33,1.15,2.22,-0.41,0.36,-3,-1.39,-1.67,-2.49,0.54,-2.09,0.06,-1.32,1.11,-0.77,-0.9,0.08,-1.09,0.83,0.29,1.53,-1.85,0,-1.34,1.73,0.62,-0.2,1.58,0.78,1.86 +C1555,5.51,2.47,-1.56,-3.62,-1.83,-1.82,1.24,3.91,0.23,-0.23,-0.27,0.66,1.95,-0.77,-2.42,-1.51,-0.12,-2.19,0.84,2.35,1.87,-0.41,0.07,-0.97,0.37,0.24,-2.65,0.62,1.24,-2.02,-1.87,1.39,0.14,-1.98,1.32,0.87,-1.73,0.48,1.57,-0.62,-2.59,2.94,-0.66,-1.63,0.74,-0.55,0.65,-0.61,0.73,-0.82 +C1556,3.47,6.26,3.39,4.13,2.32,1.07,0.75,2.03,-1.33,-2.78,-0.88,0.06,-0.98,-0.2,-0.55,-3.69,1.2,-3.7,-0.63,-0.84,2.78,0.84,-0.08,2.98,1.26,-0.49,-0.76,-2.2,1.96,5.07,1.98,1.23,1.4,1.08,-5.59,3.67,1.74,0.73,1.2,3.42,1.76,-1.04,-0.27,0.71,-3.47,2.72,3.13,5.07,-1.19,-1 +C1557,3.24,-5.14,1.62,0.88,-7.34,0.14,-3.6,1.09,-4.61,-3.68,3.23,-1.91,-2.14,-1.86,2.83,3,0.05,0.46,-2.13,1.29,2.86,2.2,-0.44,0.49,0.09,-0.99,5.31,5.88,6.2,4.65,-1.2,5.67,-4.72,2.77,1.64,-1.06,-0.21,2.34,-1.06,-4.61,-0.95,4.03,-2.42,0.19,-2.6,-0.82,4.11,1.31,3.02,4.53 +C1558,-1.21,5.84,-37.62,24.94,1.91,3.16,0.21,-3.97,1.78,6.96,8.56,2,6.39,9.15,-0.49,-4.71,4.58,0.02,-3.25,-1.13,-1.95,-0.81,-0.66,1.27,0.71,1.87,0.27,-0.96,0.82,0.03,-0.15,1.62,-3.41,0.58,2.32,-1.43,-2.84,0.16,-0.85,0.61,-1.24,0.95,2.11,0.95,0.94,0.92,-3.04,2.65,0.82,2.47 +C1559,2.39,-14.79,3.07,4.83,8.87,-2.35,-0.22,0.91,-0.88,-3.84,-0.73,0.96,2.74,1.78,-0.48,2.54,1.33,-1.73,3.17,1.09,3.21,2.08,-0.25,3.08,2.99,0.38,1.96,-1.77,3.16,1.03,-1.3,1.91,1.01,-5.21,-2.06,-2.43,-1.52,-0.29,0.55,0.21,-1.97,2.28,-0.94,-2.6,1.38,1.51,1.04,-2.97,-3.71,-3.21 +C1560,-15.67,-1.11,-0.34,-1.7,0.27,1.27,-1.66,1.46,-2.24,-4.16,0.78,2.68,-0.54,1.12,1.24,-0.16,1.25,-0.53,-0.69,0.53,-0.86,-0.49,-0.78,0.85,-1.43,0.54,1.33,1.88,-1.8,-1.01,1.26,-0.25,-0.41,1.13,-0.54,0.72,-2.2,0.61,-0.73,-1.6,-2.64,0.22,0.41,1.47,-0.09,0.5,-1.04,-0.84,0.22,1.56 +C1561,3.83,-0.33,-0.89,-1.59,-3.98,-0.33,1.15,2.24,1.49,0.38,1.67,-0.59,-0.76,2.59,0.01,1.13,0.45,1.81,2.09,-0.79,2.59,1.6,1.27,0.17,-1.74,-0.48,-0.4,3.86,-2.88,2.6,1.75,0.99,-2,0.05,-0.32,-2.27,-1.21,-0.62,-2.07,2.12,-5.43,-0.96,-0.43,-1.74,-2.26,-0.28,0.05,-1.04,1.74,-0.67 +C1562,3.77,-2.59,0.28,-0.36,-2.74,1.16,-0.3,-0.33,-1.64,2.04,-0.68,1.11,-1.71,1.11,-2.08,1.11,-1.05,0.56,-1.09,-1.49,-0.77,-0.19,-0.76,1.18,1.86,-2.69,0.87,1.68,2.15,3.13,3.2,1.94,1.36,0.3,1.09,0.16,0.74,2.25,-0.62,0.25,2.39,-2.38,-0.4,-2.06,-0.33,-0.61,1.44,4.42,-0.82,2.53 +C1563,2.38,-1.44,0.34,-1.32,-4.17,1.36,-0.79,-0.8,-0.49,-1.17,1.82,0.07,3.08,0.08,1.12,-0.98,0.68,-3.39,4.97,-1.34,-1.76,1.08,0.46,2.12,1.38,2.5,0.55,1.55,0.22,0.8,0.02,-2.14,0.29,0.66,-1.56,-0.09,0.78,0.42,2.44,1.07,-0.98,-0.04,0.73,0.71,0.13,1.64,-0.13,2.05,2.69,-0.94 +C1564,3.82,0.42,-0.2,-1.78,-2.64,-1.43,-0.8,2.4,-1.07,-1.62,-1.75,0.46,1.91,1.21,1.28,-2.95,-0.27,0.95,-0.68,-0.68,-2.54,-0.6,-0.92,1.15,-0.39,0.43,-2.05,-2.24,1.48,-1.45,-1.98,-0.27,0.84,1.12,0.28,1.12,0.97,1.29,-0.1,-0.43,3.16,1.98,0.29,-1.86,0.07,-0.54,0.81,0.55,-0.43,-1.42 +C1565,4.94,-0.42,-0.97,-1.82,-1.96,0.17,-1.44,3.53,-0.63,-2.12,-1.07,-2.42,0.05,3.03,-1.41,-1.25,-1.54,0.68,-1.43,-0.87,-2.87,1.5,-1.33,-2.16,-0.01,-1.92,0.17,1.1,2.67,-0.98,2.34,-4.43,-1.57,1.66,2.54,1.69,-1.61,-1.27,-2.66,0.95,1.51,-1.37,-2.24,0.25,0.11,-0.24,1.01,-1.57,-1.75,-0.26 +C1566,3.46,0.03,-1.26,-2.85,-2.19,-0.06,-0.91,-1.21,-1.21,-1.41,0.52,1.69,0.69,0.45,1.29,-2.49,-0.15,1.88,1.98,-0.78,-0.06,-0.88,-0.44,-0.26,-0.6,-0.96,0.93,-1.09,-2.44,0.62,-0.5,0.01,-3.08,1.62,0.32,0.4,0.45,0.93,0.61,-0.43,0.49,0.32,1.34,-0.54,0.04,0.04,-0.23,0.44,-0.52,1.01 +C1567,-11.15,0.02,-1.26,-2.09,0.15,2.2,0.56,-0.9,-2.6,-2.2,0.83,0.6,-1.12,0.98,4,-0.89,-1.72,-2.67,0.75,1.07,-1.28,-0.27,0.9,-0.09,-0.08,-1.14,-0.17,0.94,0.88,1.78,-1.48,-0.11,-0.59,0.13,-0.5,-0.97,-1.3,-1.59,-0.85,-2.44,1.29,-0.76,-3.15,-1.17,-1.04,-1.71,-0.53,-0.63,-1.06,-3.36 +C1568,2.22,6.44,4.28,3.55,-0.37,0.29,-1.51,-1.2,-1.13,1.05,2.37,1.39,-3.6,1.58,-3.96,2.47,6.92,3.93,0.44,-3.34,0.76,-0.89,4.07,-1.16,-1.93,0.08,2.51,1.74,2.58,-0.97,-0.45,-1.36,-1.51,-1.54,-0.07,-0.7,-0.65,3.52,1.78,0.92,0.78,2.18,-1.19,0.21,2.61,-2.39,-0.23,-1.26,1.46,-0.61 +C1569,2.64,6.15,5.96,5.35,0.03,-0.31,-0.3,0.39,-1.48,-0.31,-5.2,-1.91,0.87,2.77,1.66,-4.45,-2.22,-0.23,-0.93,-3.18,-0.35,3.72,1.37,0.31,2.56,0.01,1.02,0.54,-0.16,2.74,-0.33,-5.49,0.61,1.42,-1.72,0.86,0.08,-3.4,-1.34,5.04,0.01,2.12,-2.46,0.75,-0.98,-5.92,-2.73,-0.16,0.24,3.2 +C1570,5.26,2.35,-1.55,-2.49,-0.11,-0.02,-0.5,0.39,0.68,-0.49,-1.88,0.78,1.13,0.25,-0.1,0,3.41,0.89,-0.74,-0.6,1.93,-4.03,-1.1,2.28,2.02,0.71,-0.47,-1.15,0.73,-0.38,-0.37,0.18,1.99,-1.37,-2.13,-1.84,0.55,-0.68,-1.39,-0.49,0.7,-1.1,-0.7,0.84,1.6,1.38,-0.79,0.03,-0.35,-2.22 +C1571,5.22,-0.33,-0.4,-1.28,-1.13,0.55,-1.35,1.01,0.93,-0.66,-1.24,0.01,0.73,-0.11,0.11,-1.16,1.86,-1.49,0.16,-1.82,-1.81,-0.14,-1.89,-0.64,2.6,0.12,-1.01,-0.57,-0.05,1.19,2.33,-2.38,1.03,-1.14,-1.27,-0.72,1.62,-0.18,-1.28,-0.25,-1.02,-0.04,4.3,4.6,-0.19,0.07,-0.98,-0.17,-0.77,0.71 +C1572,4.51,-2.66,-1.57,-1.31,-3.7,0.44,-1.62,-1.57,-0.04,1.55,1.67,1.47,2.25,-3.71,1.91,-3.52,-3.17,2.38,-0.22,1.85,0.11,4.04,-0.68,-0.72,2.06,1.5,2.9,3.35,-2.87,-0.55,-1.02,1.73,1.26,1.6,1.87,1.52,0.34,0.57,1.67,-0.06,1,2.88,0.91,-0.79,2.21,-0.78,-0.99,-0.18,0.29,-3.64 +C1573,-11.98,0.45,-2.18,-2.64,3.12,3.16,-1.43,0.73,-0.48,-0.78,-0.02,-1.85,-0.26,-0.1,-0.81,-0.39,0.31,0.06,0.56,-0.11,0.64,-1.03,-1.8,-1.73,-2.26,-2.22,-0.05,-1.44,1.61,2.38,-0.46,-0.11,0.84,-1.85,-0.22,0.66,1.19,-2.1,-0.8,2.04,1.63,1.49,2.27,-1.9,-1.15,-0.61,0.46,0.48,0.11,-2.06 +C1574,4.08,10.47,4.39,3.61,5.27,-0.52,2.6,-0.2,0.44,0.93,1.16,0.78,-2.62,-0.62,-0.51,-0.6,0.05,-0.63,1.23,-0.31,0.48,-0.81,-0.82,1.19,-1.35,0.09,-0.92,-0.23,0.53,-1.74,-0.09,-0.71,-0.91,2.03,0.49,-0.42,0.7,-0.69,-0.99,-1.05,-0.3,1.01,-0.42,-1.17,-1.27,0.66,0.21,0.28,-0.06,0.86 +C1575,-9.99,2.64,-0.96,-3.88,2.78,3.31,-0.83,0.4,-1.35,-0.39,-0.51,-0.24,0.04,1.17,-0.31,-1.19,0.31,-1.13,-1.19,-2.19,0.94,1.74,0.75,0.49,2.69,-1.35,-2.09,-1.66,-0.62,-2.42,-1.67,2.51,2.09,-1.91,-2.39,2.31,1.65,0.36,-1.29,-0.17,-0.83,-1.37,1.33,-2,-0.23,-0.84,-0.85,0.05,-1.29,-0.88 +C1576,4.61,0.52,-0.88,-2.17,-1.17,-0.31,0.51,2.41,2.01,0.31,-3,1.28,-0.2,1.82,2.04,0.34,-0.41,-1.69,-1.25,-1.19,-2.66,0.93,0.26,-1.3,0.59,-0.29,-0.28,0.06,0.55,-0.87,1.97,-2.09,-1.26,1.71,2.55,-0.8,0.06,-2.08,-0.14,0.45,0.91,0.29,-0.24,2.04,-0.59,0.02,-0.28,2.68,1.72,1.67 +C1577,4.98,1.4,-1.31,-1.81,-2.58,0.02,-0.11,2.56,0.45,-0.55,-0.49,-0.48,-0.43,2.64,-0.73,-0.85,-2.97,-0.45,-2.03,-0.41,-0.92,-1.79,0.15,-1.59,1.35,1.1,1.04,-1.04,0.48,0.59,0.14,-0.91,0.75,2.2,-0.09,2.73,-0.89,-0.26,-2.13,0.29,-1.01,0.21,1.82,0.23,2.55,-1.3,-0.02,-0.02,-0.13,-0.24 +C1578,2.44,6.05,2.43,2.38,2.17,0.71,0.43,-2.12,0.75,1.77,0.3,0.09,-0.6,-0.72,2.75,2.13,1.39,-0.29,0.43,-2.29,1.65,0.69,-0.7,-1.45,0.81,-0.04,-0.73,3.23,-1.68,-2.48,2.5,-1.99,-1.48,-0.37,0.21,-0.7,-0.02,0.32,0.13,-0.88,-0.3,0.27,-0.79,0.3,-0.33,0.78,-3.64,-0.58,3.1,-0.39 +C1579,3.87,6.59,3.04,2.54,2.35,-0.26,0.33,0.12,1.22,-0.39,2.54,-0.06,-2.28,-0.1,0.38,0.06,1.18,-0.01,0.15,-0.18,4.23,1.11,-2.26,-1.42,-1.16,-2.05,-0.74,0.88,2.04,-0.6,0.25,-0.36,0.25,-0.48,1.69,0.51,0.59,1.32,1.05,0.05,-1.52,1.28,0.88,-0.68,1.18,-0.67,-0.53,-1.43,-0.19,0.49 +C1580,-13.93,0.62,1.84,-1.19,-0.89,2.53,-2.07,-0.09,2.03,0.32,2.26,0.25,-0.93,-1.83,1.45,-0.12,-0.66,-1.17,0.1,0.25,0.39,0.57,0.72,0.47,0.27,-3.44,-0.52,0.93,1.6,0.75,-2.19,1.4,0.1,-1.39,-0.85,0.67,-0.54,-0.75,-1.21,-3.02,1.64,-0.39,-0.38,-0.94,-0.3,1.41,-0.01,-2.55,0.93,-1.1 +C1581,-12.24,-1.83,2.69,1.83,-2.29,-6.35,2.65,0.22,0.01,-2.1,-0.58,-0.71,0.14,2.56,-1.95,-0.66,1.3,0.42,1.02,0.32,1.03,2.26,0.4,0.49,-2.06,1.46,-0.49,-1.46,3.37,-2.29,-0.48,2.71,-1.57,-0.04,-1.27,-0.96,-1.46,-0.9,-0.17,-2.8,-1.99,0,-3.33,1.51,1.17,0.81,-0.77,2.03,-1.41,-1.77 +C1582,3.6,-4.52,0.36,-0.7,-0.59,0.75,-3.2,-4.52,-0.45,-1.92,0.95,0.44,-0.55,-2.12,-0.07,-0.22,1.65,-1.2,-3.25,-0.6,-0.45,2.33,1.63,3.26,-2.3,1.91,1.84,2.14,-1.18,3.41,-1.88,0.59,-2.08,1.02,-1.65,-2.49,-1.59,-2.09,-0.41,0.94,-2.28,-3.12,-1.68,-1.05,0.35,-3.21,0.88,2.14,-0.33,-2.23 +C1583,2.69,-1.17,-2.2,-2.83,-3.35,-0.93,-0.27,2.79,-2.01,1.51,0.38,2.15,-0.79,-0.47,-0.49,-1.08,-4.08,0.46,0.76,-3.69,0.49,-1.55,-1.27,-0.78,-0.6,1.52,1.06,-0.22,-0.3,0.69,-1.45,-1.49,-0.22,1.3,-2.96,-5.23,0.05,2.35,-0.65,2.12,-0.63,-0.33,1.14,-2.61,-2.59,0.31,0.11,0.83,1.42,0.59 +C1584,5.09,-5.26,0.14,0.23,0.07,-0.27,-0.71,-4.82,0.78,0.81,-0.27,0.83,-3.92,1.12,-2.09,-2.54,-1.84,-0.19,-1.91,2.22,1.95,-0.52,-2.45,-2.05,-2.29,1.62,-0.6,4.66,1.65,-0.41,-2.77,-2.29,0.26,2.57,-0.34,-1.28,2.38,-1.23,0.31,-1.13,-1.03,-0.33,0.87,-2.04,4.36,-0.95,0.69,-1.09,0.07,0.21 +C1585,-7.42,-2.38,1.79,1.4,-4.55,-5.48,2.5,-0.76,0.35,1.68,-0.12,-0.76,-2.57,0.31,-0.41,-0.86,-0.86,-0.39,0.25,1.17,2.11,0.13,-1.55,-0.68,-0.69,0.03,-1.46,1.31,0.33,2.11,0.04,-1.2,-0.8,2.15,-0.98,0.75,-0.4,-0.93,0.53,0.14,-1.34,-1.39,0.59,1.45,-1.23,1.31,-0.84,1.08,0.18,1.43 +C1586,-11.57,1.14,-3.71,-3.16,4.03,3.46,0.68,-0.6,-1.37,0.13,-0.47,-1.92,-0.84,0.69,-0.2,0.41,0.12,-1.65,1.37,1.3,-0.39,0.94,-0.71,-1.22,-0.81,1.51,-1.39,0.49,0.68,0.4,3.38,-0.99,-0.51,-0.53,-0.66,0.4,1.32,-2.34,1.04,-0.4,-1.17,0.16,-1.67,-1.6,-0.02,-1.02,1.12,1.63,1.19,1.97 +C1587,6.19,-0.47,-2.27,-1.46,3.95,1.13,0.97,-3.35,-1.37,-0.14,-0.56,3.42,-3.36,-3.86,-0.48,-1.58,0.78,-0.03,-3.37,-1.83,-3.74,2.09,-0.83,0.2,0.42,2.51,2.67,0.92,-0.41,-0.38,-0.68,1.21,-2.06,1.6,-1.08,0.55,0.22,0.41,-3.24,-0.65,-1.02,0.4,0.71,-0.09,-1.79,0.63,-0.27,0.13,0.23,-0.94 +C1588,5.5,-11.54,2.69,4.5,8.82,-0.36,-0.75,3.4,-0.21,0.2,-2.35,5.32,-1.23,2.02,-0.6,1.85,-1.34,-4.77,4.31,0.55,-5.12,-4.92,-4.86,-0.29,-5.14,2.4,5.28,-3.15,-0.03,-3.09,1.52,-0.04,-1.82,-6.26,1.9,1.83,3.35,-4.09,3.23,4.6,-0.25,0.18,-2.63,1.41,3.58,2.57,1.67,1.87,1.49,-0.51 +C1589,-11.22,2.28,-1.85,-2.94,2.64,2.6,-1.19,-0.37,-0.28,1.36,-0.42,-1.44,0.68,-0.46,-1.57,2.94,0.58,-0.3,-2.78,0.57,2.37,1.51,-1.4,1.41,0.47,0.04,1.87,-1.5,0.16,-0.36,1.44,-3.07,0.87,0.31,0.65,1.37,-0.29,1.41,-1.29,0.59,0.81,0.63,-2.01,1.35,-1.05,-2.58,-1.48,-2.47,0.67,2.61 +C1590,3.31,7.46,5.02,4.99,1.96,-0.32,1.36,-1.94,-0.87,0,0.68,-0.97,2.96,-0.01,-0.94,1.78,-2.42,-0.55,-1.02,1.5,2.13,1.05,-2.58,0.24,2.65,-0.03,0.97,0.37,0.1,2.51,-0.32,-0.42,-1.34,1.97,-0.94,1.99,-1.91,-2.03,0.19,1.76,-0.92,-0.63,-0.57,0.18,0.35,-0.05,3.74,-3.46,1.28,-1.39 +C1591,5.36,0.51,-1.81,-1.27,1.47,0.56,0.23,-1.8,1.08,-0.02,-1.99,1.52,-1.27,-0.73,-2.11,1.61,0.42,-0.89,-0.11,0.52,-1.29,-1.34,-2.55,0.88,-0.59,1.63,0.8,-1.1,0.66,-1.06,2.23,-2.33,-2.7,-1.58,-0.11,1.49,-0.56,-1.4,-0.97,-0.95,1.63,0.8,2,2.31,-1.47,-1.34,0.07,-4.4,-2.28,0 +C1592,4.23,8.1,2.8,1.3,3.76,-0.68,1.6,0.83,0.3,-1.5,0.65,0.77,0.31,1.08,2.99,0.63,-0.46,0.41,-0.24,1.74,0.93,-0.74,0.65,-0.22,-0.59,0.11,-3.24,-1.94,0.28,0.62,-1.32,-0.93,0.43,-1.6,1.05,1.46,0.87,1.06,0.36,0.59,2.04,2.04,-0.38,2.14,-2.11,-0.46,-0.39,-1.59,0.2,1.72 +C1593,4.15,-9.34,1.31,2.98,3.1,-0.1,-0.13,-4.88,-0.74,-1.19,3.83,-4.39,-0.6,1.39,-1.28,1.24,2.5,3.49,0.17,-0.21,-1.97,-1.78,4.85,0.62,-2.05,3.03,0.47,-0.75,0.93,0.37,-1.27,-3.26,1.27,0.91,0.91,-0.83,-1.5,0.43,-0.91,0.41,-1.24,0.33,-2.93,-1.55,-2.08,-1.04,-5.45,-2.71,-3.65,3.14 +C1594,3.8,-1.46,-1.51,-0.77,-2.68,-0.29,-1.51,-2.47,-2.25,-0.99,3.3,0.85,1.33,-0.3,1.56,0.37,-0.53,1.3,1.06,2.2,-0.97,1.9,-0.31,0.48,0.88,1.53,1.61,-0.97,-1.07,1.14,-2.81,-0.82,-0.54,-1.2,-2.68,2.49,0.36,-0.45,-3.88,-0.62,0.55,-1.61,-1.64,3.1,-1.61,-0.83,1.75,2.15,0,-2.25 +C1595,2.4,-2.83,-0.42,-0.27,-4.04,0.27,-2.22,-2.89,-0.93,0.46,2.18,-1.03,-0.15,-1.96,-3.06,1.13,-2.38,1.85,3.52,3.88,-0.23,3.81,-1.36,3.53,1.82,-3.68,-1.07,-0.17,-3.8,1.91,4.61,-1.49,-4.12,-0.56,1.5,-0.68,0.96,-2.78,-0.55,2.64,3.4,1.46,2.04,-1.28,-2.15,0.28,2.26,3.07,-4.9,-2.06 +C1596,2.99,1.08,-2.53,-0.63,-1.51,0.64,1.23,-0.45,0.23,1.28,0.64,0.11,-1.27,-2.24,2.78,1.49,0.96,0.03,0.25,-2.01,2.94,-0.86,0.65,-1.05,0.52,0.22,1.13,1.03,0.62,-1.32,0.86,0.46,-0.96,-0.74,0.69,2.36,3.76,-1.54,-3.75,0.41,-0.64,-2.46,0.21,2.23,2.32,-0.61,1.24,0.22,0.71,-1.12 +C1597,2.43,-2.15,-1.54,-1.52,-3.81,-0.5,-1.85,-1.51,-1.78,2.73,-1.44,1.01,1.09,-3.3,-2.37,-4.01,-0.93,3.41,-1.2,-0.13,1.16,-2.12,0.08,-1.82,0.68,-0.28,1.46,-3.28,-3.76,1.98,-0.51,0.55,-0.43,-1.37,-2.56,-2.22,0.12,-2.36,1.25,-2.34,-0.66,-2.48,0.77,2.61,1.12,5.63,3,-3.34,-0.37,-1.04 +C1598,5.14,0.08,-1.01,-2.73,-2.27,-1.06,0.05,0.8,-0.13,1.14,1.45,-0.42,1.26,-1.18,1.16,-0.65,-0.89,0.12,1.22,1.74,0.17,0.2,-0.96,1.26,-0.96,-0.33,0.16,-1.46,4.19,-1.55,0.83,-1.46,-1.24,0.51,-0.42,-2.59,1.5,-3.05,-1.44,2.58,-1.61,1.82,-0.43,-1.03,-0.55,-1.11,-0.64,-0.8,0.3,-1.45 +C1599,5.38,0.75,-1.24,-2.39,0.3,1.32,-0.28,0.87,0.63,0.3,-0.68,-0.27,-2.73,-1.52,-0.12,-0.66,1.2,-0.23,-0.76,0.9,-2.57,0.1,0.08,0.58,-1.92,0.43,-0.47,-0.2,0.74,0.02,-0.08,0.58,1.41,0.62,1.12,-0.83,0.37,1.07,-0.85,1.36,-1.79,-1.23,-0.34,0.63,-0.98,1,2.44,-1.34,-1.39,-0.39 +C1600,-10.31,1.97,-3.03,-4.42,3.05,2.69,0.81,0.58,-2.72,0.29,0.93,-1.33,-1.18,-0.53,1.09,-0.67,0.18,-0.27,-0.3,1.19,-2.16,2.63,1.12,0.41,0.18,-0.52,-2.5,-0.71,0.67,-0.34,-1.61,-0.26,-1.47,0.54,0.48,-1.68,-0.4,0.13,1.39,-0.88,-1.6,0.63,0.72,-0.67,-0.95,-0.88,1.86,-0.07,0.63,-0.7 +C1601,3.25,-8.15,0.93,1.53,3.8,-1.88,-1.57,2.19,-1.68,0.04,1.92,-0.53,3.2,-0.83,-2.12,2.84,-2.17,2.03,-1.04,1.74,0.6,1.7,-0.73,0.52,-2.87,-0.23,-2.35,-0.91,0.76,1.3,-5.02,-1.1,-1.12,-2.15,-0.75,1.84,2.26,-1.97,0.46,0.97,-0.32,4.02,-1.46,3.43,-2.44,1.86,1.95,-0.29,-2.5,2.82 +C1602,3.32,1.19,-0.43,-2.21,-0.18,-0.91,1.29,2.1,-0.17,-0.25,-0.04,2.04,-0.82,0.06,2.25,-0.92,-0.42,-0.35,1.19,0.41,-0.15,1.78,-2.01,-1.09,0.12,2.33,-0.65,2.64,-2.88,0.54,-0.32,-1.28,-1.49,-0.07,-1.53,1.76,2.7,2.8,0.4,-0.7,-0.46,-0.5,2.18,-0.09,-1.51,1.71,1.55,0.77,1.05,-0.35 +C1603,-13.69,-1.57,0.08,-2.05,0.53,1.05,-0.59,0.67,-0.52,-0.77,-0.27,-0.3,-0.2,-1.15,-1.13,-1.1,1.31,1.24,-0.2,-0.03,-1.44,-1.97,-0.17,0.49,0.55,1.45,-0.05,-0.6,0.13,0.74,0.39,-1.67,-0.61,4.41,2.22,-1.92,-0.96,1.98,-1.24,-0.71,0.85,1.37,-3.71,1.78,1.06,1.35,-0.58,2.17,-0.06,-2.23 +C1604,5.6,0.8,-1.63,-2.33,1.09,-1.48,1.83,3.18,0.87,1.15,-1.01,-0.24,-2.22,0.56,-1.56,1.84,1.15,2.68,0.14,0.52,1.45,-0.31,-0.7,-3.95,-1.54,-2.18,0.51,-2.41,-0.1,-0.76,1.51,-0.77,-0.66,1.96,2.02,0.24,2.25,-1.95,0.36,0.27,2.5,0.18,-0.5,-0.44,0.45,1.29,2.52,-0.04,1.93,-0.39 +C1605,2.55,-14.24,3.55,5.19,6.03,-1.94,0.15,6.15,1.05,-0.21,1.37,-2.33,-4.15,3.31,-3.95,-2.45,-3.31,-3.77,-2.18,-0.06,3.14,-9.38,-0.34,-0.82,-1.85,-6.33,3.79,1.71,-2.24,1.83,-2.68,-1.65,-2.55,-2.14,3.83,0.02,3.6,-0.64,2.16,-2.77,0.41,2.38,2.21,1.66,-3.73,0.45,1.18,1.66,-0.65,1.91 +C1606,-12.61,0.81,0.15,-1.18,-0.77,1.98,-2.84,0.83,1.6,0.05,-2.14,-0.06,1.6,0.41,-0.52,-0.16,0.02,1.66,0.16,1.47,-2.36,-1.17,3.31,1.91,0.23,1.84,0.27,-1.86,4.7,0.03,-2.32,1.15,-0.13,1.11,-0.63,3.84,-2.59,0.29,-0.91,-0.56,0.25,0.1,2.25,-0.97,1.95,-0.95,0.02,-1.36,1.12,0.56 +C1607,-7.03,3.62,-2.84,-5.61,5.89,0.56,1.95,0.84,0.86,-0.48,-0.26,-0.06,1.21,-0.58,1.34,2.16,0.34,1.18,-0.38,0.25,-2.45,-1.17,1.63,-0.2,0.41,-0.54,-0.96,1.04,-0.43,-0.13,-1.14,0.39,0.6,0.19,2.08,-0.94,-0.59,-1.12,-1.12,-2.08,-0.97,-1.44,-1.34,0.99,1.38,1.01,-0.43,-1.33,0.79,-0.24 +C1608,4.81,2.72,-2.28,-2.72,0.58,-0.46,1.29,-0.26,0.6,-1.34,3.04,0.1,-0.11,-1.58,-0.63,-1.82,-1.71,0.16,-0.92,4.06,-2.43,0.29,0.03,-1.56,0.8,0.32,-1.18,0.1,-0.36,0.17,4.11,-1.53,1.62,-0.11,0.05,1.91,1.43,-0.11,3.47,1.07,0.06,1.37,-2.05,-0.1,-2.77,1.54,1.13,1.3,2.65,-0.88 +C1609,6.24,2.23,-0.97,-1.4,-0.05,-0.65,1.4,2.13,1.27,1.98,-0.24,-0.6,-0.89,-0.01,-2.4,1.13,-0.65,0.71,0.84,-0.87,-0.85,0.43,-0.05,-0.25,-0.17,-1.17,0.48,-0.38,0.13,-0.84,-1.73,-0.34,0.27,0.87,-1.13,-2.98,-1.27,0.53,-3.05,0.32,0.42,2.34,0.4,-0.62,1.8,0.66,-0.62,0.39,0.98,-1.08 +C1610,5.14,0.1,-0.9,-2.06,-0.76,-0.43,-1.14,-1.06,-0.61,0.28,-1.91,2.23,0.82,0.44,-1.16,-2.78,0.51,1.51,1.3,0.02,-0.58,2.24,-0.8,-4.32,-0.24,-1.57,-0.64,1.08,1.68,0.13,1.84,-1.33,-0.09,-1.48,0.18,0.18,-1.13,-1.27,-0.83,-0.18,-0.52,-0.39,2.34,0.06,-0.32,0.76,2.35,-0.45,-1.66,-0.92 +C1611,3.35,10.41,5.89,5.6,3.96,0.22,-0.33,0.43,-1.22,0.3,-1.6,1.12,0.45,-0.41,1.12,-2.55,-1.69,-1.1,1.7,-3.89,-0.54,0.04,2.01,1.58,-0.64,-0.6,-0.12,-1.28,0.19,0.16,-0.5,-1.37,0.26,0.02,-0.78,-2.92,-1.07,-1.58,-0.08,1.49,0.83,0.56,-0.08,0.74,3.86,0.23,-2.48,-0.8,0.8,-1.09 +C1612,2.37,-2.99,0.14,-0.52,-4.65,-0.97,-2.76,2.62,-3.57,-6.64,7.86,4.77,-2.28,-1.08,-2.04,0.39,2.61,2.83,-4.73,-1.5,-0.81,1.84,-0.28,-0.98,3.37,2.7,-0.59,-1.27,-2.28,0.05,-0.39,0.84,-3.8,0.36,-4.38,-2.17,1.81,-0.11,-3.56,3.66,-2.37,3.01,0.58,-0.5,-2.48,-1.08,2.26,1.28,0.58,-0.72 +C1613,3.7,-5.17,1.13,1.14,0.67,2.66,1.73,-6.66,-0.43,-6.37,-0.11,-4.06,-1.27,2.98,-0.34,6.32,0.84,-1.09,-2.39,0.28,-1.5,4.58,0.47,-0.4,2.13,-0.59,-2,0.93,1.61,-1.27,0.62,-1.01,-5.88,-3.92,0.32,4.28,-0.36,-4.31,-0.38,4.58,3.85,0.22,4.01,-1.56,1.64,1.22,-2.16,-1.03,-1.98,3.93 +C1614,3.66,8.21,4.2,6.6,2.12,-1.31,-1.3,1.04,-0.99,-1.07,0.44,-0.83,1.1,-1.33,0.49,-1.34,-0.64,0.94,1.39,1.2,1.27,-2.13,0.23,-3.33,0.13,-1.72,-2.81,-0.09,2.04,2.07,-0.38,-0.9,0.29,-0.02,1.09,2.74,-0.26,-0.34,-0.22,-2.81,1.68,-0.06,0.53,1.08,0.07,1.45,-0.77,2.59,0.72,-2.4 +C1615,3.67,8.66,4.17,3.38,3.78,-0.61,1.94,0.46,-1.12,1,1.39,0.31,-2.27,-0.08,1.81,-0.26,1.69,-0.63,-0.45,-2.2,1.49,2.35,-1.07,-2.4,-1.74,1.48,-0.91,0.59,2.05,3.18,1.08,0.85,1.4,0.66,0.21,1.05,-0.38,-0.81,3.11,-0.74,-0.82,0.43,0.77,2.19,1.93,-1.18,2.62,0.01,0.87,-1.2 +C1616,5.09,-0.06,-0.51,-2.74,-2.92,0.64,-0.9,3.88,-0.2,1.78,-0.88,-2.36,-1.01,-0.61,0.29,-0.26,1.41,-2.72,2.4,1.01,-1.7,-1.13,0.75,0.46,0.35,1.69,1.48,-0.1,3.73,-1.13,-3.91,0.66,-1.18,2.19,-0.58,-0.68,0.11,-1.58,2.35,-1.78,-0.24,0.11,1.7,1.1,0.07,-0.36,-1.72,-2.52,-0.11,-0.57 +C1617,3.22,6.29,3.92,3.43,1.05,1.24,-0.03,0.81,-0.35,0.79,0.29,-0.52,-2.42,-0.61,2.23,-2.2,-1.02,-0.37,1.64,0.38,-0.42,0.95,-1.72,0.01,-2.53,-0.35,-1.2,-1.16,0.81,-0.45,-2.23,0.66,1.54,1.08,0.58,-2.15,0.21,-2.42,1.47,0.93,0.35,0.55,1.67,-1.17,-0.82,-1.13,2.03,-0.48,-2.79,3.13 +C1618,5.94,2.36,-0.52,-1.79,-0.14,0.16,1.26,2.02,1.78,-0.78,-0.48,1.51,-1.58,1.1,0.23,-1.13,2.49,0.52,-0.32,-1.49,0.46,2.78,-2.27,2.04,-1.54,-2.22,0.7,-1.08,2.57,0.46,-0.23,-0.74,-1.31,-0.96,2.1,0.87,-2.32,-2.14,-0.51,2.05,-0.25,0.34,-0.65,0.52,-1.84,0.98,-0.88,1.01,1.88,1.8 +C1619,3.48,7.15,4.18,4.87,2.53,-0.71,0.18,0.17,0.34,1.12,-0.77,-2.23,0.69,0.31,3.09,2.41,-0.47,0.02,-1.98,3.14,-1.12,3.65,-0.12,-2.35,0.31,-0.54,-2.23,2.08,-3.13,-0.18,3.85,-0.24,-1.85,1.94,-1.37,1.33,-1.14,-1.33,0.38,0.91,-0.02,-0.75,-0.36,-0.27,-0.48,4.46,-0.38,1.49,-1.41,-1.73 +C1620,3.52,-1.88,-1.13,-2.13,-3.44,0.8,-0.1,-0.74,0.27,1.31,0.15,2.18,1.83,-2.39,1.04,0.57,0.38,2.37,0.36,-1.65,1.76,1.92,0.44,-0.69,-1,1.69,-1.4,-1.6,0.75,2.22,0.8,-1.78,-1.89,1.26,0.26,-0.01,-0.29,0.15,1.18,1.88,2.15,2.13,1.02,-1.12,2.41,0.93,-0.66,-0.7,1.94,-0.06 +C1621,5.61,1.45,0.29,-0.9,-1.67,-0.44,-0.52,3.23,0.81,0.69,-1.18,-0.89,-1.08,2.47,-1.13,2.51,1.13,-2.41,-1.09,0.26,0.5,2.01,3.24,-0.79,1.4,-2.08,0.88,1.72,0.43,1.93,2.43,-1.37,1.19,1.19,0.96,-0.3,-1.01,-0.96,1.12,-1.53,-0.47,-0.82,-1.39,0.32,-0.43,1.71,-2.66,3.1,0.53,3.46 +C1622,-4.68,3.86,-3.92,-4.88,5.29,2.56,3.23,1.02,-0.47,2.28,0.64,0.73,-0.6,-0.46,-1.32,0.81,0.17,-0.27,-0.66,-1.32,-0.13,1.78,1.17,0.89,1.25,1.8,-0.43,0.06,1.02,1.29,-0.59,-0.01,0.01,0.07,1.43,0.7,0.89,0.15,-0.21,-0.49,1.94,-1.11,-2.36,0.05,-1.88,0.19,1.51,1.73,-1.44,-1.38 +C1623,2.78,-5.94,0.55,0.02,0.89,-0.16,-1.5,-3,-1.18,-1.11,0.44,-2.69,0.58,-0.09,-2.62,0.42,0.6,-1.74,3.1,1.42,-2.13,2.49,-3.12,-0.89,-0.72,-2.18,-0.25,-1.04,1.51,1.64,0.27,0.75,-3.07,1.95,0.21,-0.81,-2.79,2.9,0.52,3.2,0.99,-1.58,-0.46,-1.88,0.24,-3.09,1.18,2.29,-0.34,1.12 +C1624,-6.29,2.87,-3.07,-4.57,3.89,3.13,0.39,0.47,-0.5,-0.68,-0.06,0.89,0.99,0.57,-2.16,1.43,0.44,-1.06,0.59,0.52,0.31,0.1,0.33,-0.41,1.38,-0.2,2.19,0.83,-2.16,-1.01,-0.2,0.35,1.56,-0.65,-0.79,0.05,0.08,-1.31,0.32,-0.69,1.29,1.75,0.28,-2.17,1.03,-0.69,-0.88,0.95,-0.95,0.66 +C1625,-3.59,4.96,-58.84,47.23,-6.13,-2.04,-4.4,5.49,-4.62,-13.07,-13.62,-7.34,-9.29,-15.87,5.65,4.53,-5.38,3.58,6.96,-0.87,1.55,2.29,2.13,-4.54,4.35,0.93,0.7,1.87,-0.74,-1.62,-1.22,-0.02,1.88,0.21,-2.11,0.31,-0.16,-1.92,0.6,-1.06,-3.45,-0.97,-1.67,-1.5,-1.96,-0.19,3.33,-1.02,-0.22,-1.9 +C1626,-13.26,-3.21,2.68,2.6,-3.78,-8.39,2.92,0.07,-1.01,0.25,0.33,0.43,0.58,2.71,-0.36,1.04,0.06,4.29,-1.56,0.7,-0.46,1.97,4.68,1.88,0.37,-2.29,2.14,-0.45,1.54,-0.83,-0.55,-4.58,1.35,-2.7,0.24,0.5,-0.4,-1.02,0.94,2.99,-2.55,2.31,-2.66,-2.76,0.22,0.14,-0.59,0.65,1.36,-2.26 +C1627,-6.86,2.9,-2.58,-4.22,4.87,3.13,0.81,0.21,-2.46,0.81,1.47,1.71,0.69,2.26,1.06,-1.34,3.79,2.29,-0.88,-2.41,-0.23,1.21,1.18,3.02,1.22,-0.35,-0.35,-2.14,-2.1,-0.56,2.48,1.58,-1.52,0.7,0.75,1.1,-1.87,-1.59,-0.02,-1.76,-1.8,-1.15,-0.59,-0.44,0.97,0.7,0.84,3.21,-3.72,-0.3 +C1628,-11.04,1.2,-1.47,-2.83,2.1,0.88,1.15,-0.03,-1.06,-0.68,0.44,2.42,-1.81,-1.24,0.01,1.04,-1,1.06,-0.5,1.3,1.21,-1.62,0.11,-1.64,-2.2,-0.67,-0.57,-1.1,-0.46,0.86,0,0.69,-0.45,-1.89,-1.03,1.31,-0.94,-0.45,0.21,-0.45,1.42,1.85,0.8,-0.5,1.11,-0.07,-1.81,-0.83,0.08,0.89 +C1629,4.44,0.91,-1.18,-2.57,-1.09,0.29,-0.46,1.4,0.93,-0.51,0.84,-0.53,0,-0.51,-1,0.29,0.67,3.03,1.09,-0.01,-1.55,-2.55,-0.15,-0.33,1.53,-0.46,1.75,-2.37,2.06,0.82,-0.29,2.32,-0.05,-1.18,-0.09,-1.31,0.94,1.73,-0.7,-1.23,-0.3,-0.39,1.16,-0.67,-3.23,1.59,-0.82,-1.15,-0.55,-2.16 +C1630,2.86,-0.47,-0.04,-0.98,-2.25,-0.92,-0.52,1.34,0.5,0.59,-1.86,0.77,-0.1,2.8,0.49,-1.09,1.16,0.69,-0.09,0.41,-1.7,-0.04,1.91,0.08,1.17,-0.15,1.31,-1.55,-0.1,0.7,-0.25,0.87,0.56,1.68,-1.16,-2.32,-0.76,0.13,0.71,-1.66,-1.46,-0.75,0.92,2.24,-0.35,0.29,-0.6,-1.77,0.78,0.77 +C1631,-11.25,1.64,-0.32,-3.28,2.54,2.07,-0.96,-0.32,-1.63,-0.42,0.28,-0.92,-0.06,0.49,1.34,-0.94,-0.35,2.95,-0.42,0.39,-0.74,0.87,-1.07,-0.82,-2.04,-1.25,-0.26,2.38,-1.02,-0.37,0.87,0.33,1,-1.4,-0.23,2.66,0.55,0.26,1.48,-1.24,-0.67,1.79,0.2,-0.7,0.18,0.59,-0.23,-1.21,-1.57,0.01 +C1632,2.78,-8.81,1.42,2.26,4.3,-0.5,-0.36,0.16,-0.3,-1,-0.73,-0.76,-0.75,3.54,1.96,-0.16,-0.7,1.05,1.16,-0.03,1.22,-4.83,2.36,-0.41,1.6,1.73,0.36,2.93,-1.42,-1.5,0.29,1.33,3.23,2.35,-0.96,-3.75,0.03,-0.43,-0.97,-2.46,4.61,-3.16,-0.88,-6.53,-1.29,-2.95,-1.64,-2.72,0.92,-3.13 +C1633,4.13,-1.43,-0.38,-2.25,-3.44,-0.45,-1.97,2.03,-0.44,0.32,-2.38,-1.18,1.37,0.79,1.38,-0.14,1.39,-0.2,0.76,1.42,-0.53,-0.03,-1.94,1.65,-0.05,-1.28,-0.05,1.72,0.66,3.84,-1.24,-0.16,-1.07,0.97,-0.45,-0.55,-0.44,0.36,0.55,0,-1.38,1.29,0.12,0.47,0.14,-1.59,0.81,1.11,0.24,1.57 +C1634,-12.37,1.85,1.05,0.21,1.6,3.29,-5.42,-1.62,7.59,1.88,-1.93,-0.74,1.15,-0.73,-0.64,2.23,-1.29,-2.55,-0.09,-3.05,1.46,-0.92,1.39,-0.41,2.57,0.6,-2.16,-1.24,-0.56,-3.35,-0.58,-2.06,-2.4,3.19,-1.95,-0.89,0.23,-0.86,1.27,-0.81,-2.28,-1.59,-0.97,-0.32,-0.6,1.14,0.89,-1.83,2.31,0.77 +C1635,3.51,-0.14,-1.68,-2.79,-1.58,0.68,-0.41,0.32,-0.99,-0.44,-0.8,0.51,0.17,1.93,1.3,-0.92,-0.29,-1.35,-0.21,0.3,2.94,-0.52,0.18,0.29,-1.07,-0.81,1.83,-0.97,-0.08,1.41,-0.14,1.85,-0.4,0.44,-1.62,-0.7,0.25,-1.02,-0.69,1.54,-0.96,-2.53,3.34,1.76,-0.95,1.2,-0.45,-0.71,-0.76,0.75 +C1636,-14.15,-0.47,2.42,1.49,-0.77,-0.16,-2.56,0.55,1.25,-1.87,-0.58,-0.42,3,0.82,-2.39,1.56,1.74,1.41,0.81,0.08,-0.72,-1.55,-0.34,0.44,-0.51,-0.23,3.72,-2.18,3.42,3.58,6.18,-3.24,-0.46,-1.89,0,-3.49,1.37,-0.3,-2.29,3.76,-3.5,-3.14,-0.36,0.48,-1.05,0.67,-2.62,2.41,-3.4,0.55 +C1637,3.86,0.46,-1.05,-2.08,-2.7,-0.14,0.45,0.86,-0.18,0.78,-0.49,-2.64,0.93,1.24,-1.01,0.75,-2.91,0.94,-2.56,0.06,-1.27,1.51,0,-0.2,-2.82,0.28,0.65,1.36,4.69,-1.08,-1.7,0.65,2.86,2.01,-2.39,1.95,3.34,-1.93,1.15,-0.63,-0.05,-3.02,-0.82,-0.95,-0.97,-2.62,-0.91,-0.28,-0.2,-0.99 +C1638,2.36,-1.76,0.08,-2.6,-4.87,0.08,-1.43,-1.01,-0.13,1.74,-0.53,0.68,-0.83,-1.31,0.19,-3.5,-1.71,-3,0.11,2.88,-2.23,-3.19,-0.9,-3.38,-0.67,-0.4,2.73,1.41,-0.71,0.19,-2.02,0.29,-0.12,-2.99,0.99,-1.9,0.04,-2.22,-0.44,-0.54,0.28,0.39,0.22,-0.4,-2.62,0.92,1.4,0.14,0.14,-0.6 +C1639,4.53,2,-1.91,-3.42,-0.5,-0.87,-0.06,0.34,0.83,-1.62,0.07,-0.14,-0.8,1.21,0.3,-0.44,1.63,-1.45,0.32,0.51,0.06,-0.06,-0.4,-0.31,0.23,-0.89,-0.45,-0.46,-0.98,0.84,0.89,0.96,0.54,-0.75,0.29,1.31,0.33,-0.58,-0.87,0.89,0.78,-0.12,-0.98,0.04,0.16,-0.82,-0.08,0.68,-2.61,0.37 +C1640,4.47,1.79,-2.02,-2.28,-0.06,-0.6,0.7,1.64,0.82,-0.82,-0.63,-1.2,0.78,2.18,-0.22,0.95,1.87,0.06,-0.41,1.25,-0.25,0,3.23,1.67,-0.5,-0.29,-1.25,1.05,2.42,1.32,0.61,0.23,-0.12,-0.73,1.68,-0.94,-0.19,0.06,-1.73,-1.01,-1.46,-0.18,-0.12,1.59,-0.79,1.5,1.4,-1.91,-0.68,-0.49 +C1641,5.05,-4.97,1.02,1.51,3.8,0.52,0.42,-0.73,-0.52,-2.08,1.91,-3.64,1.73,1.46,-3.03,1.58,0.89,0.78,0.34,-0.9,-0.24,-1.56,-0.48,-2.6,-1.09,-1.37,1.15,-1.16,-1.49,0.16,-2.52,2.01,1.6,0.13,-2.18,0.57,-2.08,0.43,0.41,1.69,-0.4,-2.37,0.03,0.38,0.75,0.32,-0.44,-1.46,1.18,-0.72 +C1642,-6.62,-1.28,-0.81,-2.83,-2.64,1.47,-2.96,-0.78,-3.62,0.95,-0.07,-1.8,0.55,-0.87,0.42,3.54,1.87,-2.68,1.44,0.39,0.73,0.47,0.46,-0.15,-1.68,-1.02,3.32,1.84,-0.31,-1.57,-1.24,-0.88,0.08,2.59,-1.61,-0.96,-1.38,-0.81,1.14,5.82,3.06,-0.78,-2.47,0.92,-1.01,-0.98,-0.68,-0.42,0.29,1.4 +C1643,4.9,-0.5,-0.62,-1.08,-2.96,-0.47,-0.76,2.05,1.13,2.37,-2.03,-0.65,2.97,0.31,0.32,-1.16,-0.13,1.91,-0.78,-1.56,-2.1,-2.04,1.01,-2.47,-3.74,2.29,-0.43,2.42,-0.21,-1.69,-0.63,1.83,-2.68,-2.15,-3.04,1.46,-1.15,4.25,-0.87,-1.63,-1.75,-2.57,0.54,0.15,-0.33,0.04,-0.44,1.19,-1.49,-0.46 +C1644,-7.33,3.03,-2.48,-2.26,3.31,2.27,-0.9,-0.11,0.93,1.64,1.4,-1.45,2.01,-1.04,1.84,0.63,1.81,1.25,-2.31,2.18,1.29,-0.87,-2.26,0.84,-1.71,1.63,1.25,-0.41,-0.3,-1.28,2.18,-0.03,1.5,-1.05,0.96,1.32,1.89,0.65,0.02,-1.22,-1.37,0.59,0.32,-1.35,-1.14,-0.68,4.01,0.85,-1.9,-0.1 +C1645,5.61,-1.93,-1.99,-0.93,-0.79,-0.02,0.01,-3.69,0.34,0.14,-1.68,3.1,0.47,-1.77,-0.91,-3.35,0.03,-1.46,-6.63,-0.49,1.79,-0.62,0.62,1.36,0.08,0.07,0.45,1.11,2.05,-0.1,-1.88,0.08,0.59,1.76,-0.72,-0.26,-0.51,-1.12,1.15,1.8,0.15,0.15,3.4,1.33,1.43,1.34,-0.27,2.05,0.88,-2.12 +C1646,-12.73,-3.38,1.98,2.2,-5.53,-8.26,5.42,-0.11,1.46,0.2,-2.26,-0.93,0.13,1.31,-0.52,-1.48,-0.85,-0.72,0.45,1.87,-0.42,-0.48,2,-0.66,3.66,2.76,-1.11,-0.08,1.69,1.39,0.48,-0.38,3.06,-1.51,-1.83,-1.3,1.65,-0.13,0.16,1.85,-3.68,1.03,1.72,-0.8,0.31,2.47,0.55,0.42,-1.5,0.93 +C1647,5.36,0.75,-0.58,-1.63,-2.45,-0.14,0.21,2.6,0.7,-0.81,0.3,0.94,-0.4,-1.57,1.54,0.11,0.38,1.13,1.08,2.21,-0.79,1.36,-0.53,-0.39,-0.76,1.46,0.85,0.32,-2.18,-0.39,-1.13,-2.93,0.04,-1.81,1.34,-0.08,-1.48,-2.73,-0.59,0.83,-0.04,1.39,3.28,-0.87,-0.37,0.24,1.09,1.64,0.42,-1.48 +C1648,2.7,-11.87,2.98,4.23,5.44,-0.07,-1.17,6.21,-0.72,1.22,-1.64,-2.08,-0.12,-0.06,-1.88,-1.18,2.23,-3.93,-3.51,-3.85,3.16,-0.12,-1.39,-3.62,2.03,3.08,2.62,1.73,0.09,1.72,-4.19,0.19,-0.7,0.93,-1.2,4.22,-2.5,-3.39,1.1,-1.95,-2.31,2.49,-2.25,1.7,-1.48,1.77,-0.79,2.01,-0.16,0.86 +C1649,4.3,-4.86,0.79,1.06,-0.59,-0.69,-0.64,-3.21,-1.45,1.62,-0.87,-5.88,-0.68,4.26,2.07,-1.53,-1.06,1.49,-2.81,-1.56,-2.5,-2.23,-2.58,0.23,-2.59,0.38,-3.36,-0.76,1.77,-0.96,0.7,0.58,2.54,1.57,-2.55,2.34,0.19,3.15,2.1,-0.36,1.12,-3.51,-2.18,-0.95,2.89,-1.62,-3.87,2.14,1.15,-0.69 +C1650,-14.48,-0.91,-0.36,0.02,0.48,3.54,-2.13,-1.32,-2.26,-0.06,-2.82,-1.31,-0.82,-0.91,-0.79,-0.92,-2.34,0.35,1.83,3.45,1.14,-5.3,-2.46,-2.64,1.97,-0.64,2.4,-0.59,1.07,0.4,2.76,1.76,-2.24,0.15,1.16,1.84,0.29,-2.81,-1.63,-0.77,-3.11,-4.85,-0.25,1.2,2.28,-0.22,-1.88,-0.95,1.26,3.8 +C1651,3.24,-4.59,0.64,-0.92,-5.55,-0.62,-2.87,-1.6,-2.8,1.17,-2.16,2.61,1.97,-0.5,-4.63,-0.72,-2.26,-0.96,-0.85,1.51,1.92,-0.08,3.2,1.08,-1.86,-0.13,-0.99,0.13,2.57,0.14,1.95,-1.45,0.23,-0.13,0.2,1.63,-0.33,-2.28,1.62,1.9,-1.71,-0.83,-0.37,0.62,-0.72,-2.09,0.26,1.04,0.76,-1.78 +C1652,3.22,6.92,2.78,3.29,1.23,-1.79,1.89,-1.77,-1.05,1.62,-0.7,-0.85,-1.91,1.17,3.82,1.4,2.51,-4.26,-0.41,-0.78,-1.8,2.49,0.48,-0.39,-0.73,-0.09,1.85,-1.65,0.69,-0.57,3.17,-0.13,0.26,1.16,-2.73,-1.04,-1.15,2.16,0.2,3.35,-0.8,0.25,-2.9,1.83,0.88,-0.38,0.95,2.16,-2.49,-1.94 +C1653,3.96,6.94,4.04,3.87,1.65,-0.44,0.1,-0.4,1.06,0.72,-0.86,-0.99,-1.92,-1.03,0.77,-1.62,3.7,-0.73,-0.27,-2.41,0.39,0.77,-1.98,3.66,1.22,-0.29,0.25,1.43,1.61,0.78,-0.6,-0.91,1.8,-0.15,-0.45,0.94,2.83,-0.93,0.88,0.05,3.18,-2.02,-0.67,1.62,-0.23,0.72,1.34,0.38,0.46,1.42 +C1654,-12.59,0.64,-0.18,-2.52,1.11,3.21,-0.93,-0.39,0.75,0.76,0.11,-0.82,-0.79,0.07,1.36,2.9,-1.2,-0.75,1.13,0.81,-2.75,0.38,2.04,2.23,-0.34,2.48,0.1,0.29,-0.56,0.29,-1.83,2.46,1.18,2.33,1.76,-0.28,-2.19,0.5,0.46,-0.87,-0.42,1.03,2.73,-0.09,-2.94,0.98,3.14,0.13,-1.28,-1.27 +C1655,5.36,0.23,-1.77,-0.95,-3.19,0.48,-1,4.04,-0.81,2.27,-0.01,-0.47,-1.35,2.25,-1.49,-2.36,2.22,-0.08,0.88,-0.02,-0.76,-1.58,-0.77,1.59,2.22,-3.08,1.53,1.14,1.26,0.89,-2.93,0.34,0.52,0.51,-1.66,-0.97,1.31,1.8,0.7,-2.46,-0.7,-0.42,-0.31,0.84,-0.41,3.22,-0.37,1.22,0.51,-1.58 +C1656,4.72,-0.43,-0.38,-2.1,-2.88,-0.06,-0.67,0.55,-0.82,0.71,-0.06,-0.81,-0.42,1.41,0.98,-2.52,1,0.24,-0.36,-0.12,2.52,-1.49,-0.04,-0.6,1.56,-0.73,0.04,-2.51,-0.96,1.02,-1.31,0.69,-2,0.04,-0.01,0.97,0.15,-1.34,-0.71,1.9,-0.39,1.55,-0.58,0.58,1.77,-1.38,-1.08,1.69,-1.23,-0.25 +C1657,4.49,-1.48,-1.4,-2.69,0.4,0.45,0.46,-3.04,0.11,1.14,-1.84,0.2,0.26,-0.63,-1.25,0.51,-0.88,-0.97,-0.08,-1.4,-0.15,-0.69,-1.65,-1.36,-0.67,0.16,2.06,-3.13,0.25,1.55,-1.91,-0.98,-0.19,0.26,0.5,-0.56,0.59,1.32,0.07,0.33,1.42,-3.15,1.37,-0.6,-1.09,-1.23,-0.94,-0.75,2.37,-1.21 +C1658,3.28,7.85,6.75,5.65,2,0.2,1.1,-0.33,-1.76,-2.3,1.11,-0.32,3.2,1.35,-0.26,-2.49,-2.29,0.72,0.9,1.06,-1.23,0.73,-0.48,2.09,-0.04,0.65,2.76,-0.21,2.72,-0.76,1.8,-1.34,-1.78,-2.61,-1.19,-3.16,0.79,1.62,-0.8,1.06,3.04,2.71,1.65,-2.39,-1.86,-2.01,1.26,0.57,0.29,-2.23 +C1659,-14.14,-3.74,0.98,-0.2,-3.24,-5.51,1.22,0.2,-2.62,1.22,-0.6,0.41,-0.32,-1.83,-0.36,-0.37,-1.49,3.19,-2.27,-0.06,-0.48,0.6,-0.95,0.83,1.28,-2.59,-1.27,2.08,1.25,2.47,1.89,-1.5,2.24,0.15,-2.29,-1.65,2.55,-3.03,0.47,1.56,1.89,1.23,1.09,-0.08,-2.72,-0.64,0.62,1.54,-0.85,2.95 +C1660,3.7,-1.16,-1.47,-2.72,-3.6,-0.06,-1.82,0.6,-0.3,1.26,0.9,0.76,4.09,0.05,-0.99,-1.81,-1.5,2.76,1.93,2.6,-2.23,3.68,1.32,-1.56,-2.84,1.03,-3.17,3.27,0.01,0.17,1.89,-0.72,-2.55,1.02,-3.09,2.38,4.15,0.79,-1.8,1.14,0.12,0.9,-1.6,0.05,-0.79,-2.99,-0.63,-1.59,1.38,-2.11 +C1661,-10.82,2.94,-0.28,-3.15,3.48,0.9,1.26,0.71,2.41,1.51,-1.26,4,-0.65,-1.6,0.1,2.14,-0.43,-1.21,1.66,-2.8,-0.68,1.24,-1.24,0.3,3.51,-0.96,0.5,0.85,-1.03,-1.43,-4.2,0.98,0,1.77,0.01,1.57,-1.25,0.38,3.3,3.15,-1.26,-2.56,3.81,0.62,-1.53,-0.67,-5.54,-1.05,1.18,-1.72 +C1662,-9.81,0.97,-2.71,-1.45,1.09,3.71,-0.98,-1.16,-3.1,0.88,-2.25,-0.65,0.59,-2.07,0.13,4.95,-4.77,-1.88,0.79,-0.37,0.85,4.45,0.09,-0.08,0.61,-0.32,1.61,1.99,-0.61,-0.87,-2.05,-2.57,1.06,3.59,-1.12,-2.7,1.56,0.63,4.63,0.36,1.27,0.5,1.91,-3.41,1.26,-0.34,1.9,4.37,1.26,1.48 +C1663,3.98,0.11,-1.87,-0.77,-1.78,0,0.27,0.74,-0.46,0.42,0.7,-0.31,-1,1.76,3.13,2.3,-0.13,0.84,0.58,-0.6,-1.18,-0.42,1.14,-1.39,0.93,-1.14,0.91,1.91,-0.6,1.7,2.57,1.44,-0.65,2.33,-0.09,-0.79,-1.75,-3.29,0.43,0.88,-1.57,-1.44,-0.16,-0.48,1.18,0.04,0.06,-0.79,0.46,-2.52 +C1664,3.57,-2.79,-0.88,-0.77,-2.35,0.08,-2.44,-1.78,-2.29,-0.33,0.85,-0.35,0.35,-3.53,-0.12,-0.58,-0.35,-1.17,-0.95,2.4,-0.34,0.07,1.18,-0.9,1.22,-1.35,3.3,0.31,1.34,-0.76,-1.44,-0.18,0.71,-0.09,3.5,-0.8,-1.7,-0.88,-2.51,-0.52,-0.48,-1.93,-1.43,-2.38,-1.03,0.96,-0.87,-0.1,1.81,0.37 +C1665,3.96,0.55,-0.46,-1.91,-1.18,-1.43,0.82,1.63,-0.99,-0.59,1.13,0.65,1.17,1.85,2.19,0.1,-1.17,-1.74,-0.54,-0.09,1.33,0.46,0.83,-0.47,0.05,1.22,0.14,-1.55,1.54,-1.43,-2.73,-0.26,0.37,0.06,-2.18,-1.83,2.03,-0.52,1.68,1.27,-1.36,-0.99,-0.54,-0.79,0.68,-0.92,2.62,-0.9,-0.06,0.4 +C1666,-9.55,0.6,-0.77,-3.01,1.14,2.41,-2.35,0.89,-2.12,-1.09,1.2,1.3,-1.29,-2.74,1.82,0.23,-0.93,1.2,-1.77,-1.78,0.8,-0.6,0.72,-1.76,1.48,-0.68,1.63,1.32,0.24,2.97,-2.97,-0.79,-0.18,-0.71,-0.11,1.59,2.53,-0.45,2.6,1.22,2.15,0.17,0.55,-1.99,0.2,0.7,-2.9,-2.04,0.11,-0.7 +C1667,5.06,2.04,-1.84,-2.93,0.01,-0.14,-0.29,-0.31,2.94,2.12,1.03,1.56,1.65,-2.01,0.63,-0.49,0.49,-0.24,1.14,-3.36,-0.72,1.42,0.83,0.58,-0.74,-1.74,-0.26,1.01,-0.53,-1.01,0.39,-1.02,0.75,1.54,-0.16,-0.71,-1.26,0.45,-0.66,0.17,0.43,1.95,0.86,1.22,0.9,-0.14,-0.31,-1.08,0.23,-0.39 +C1668,5.6,0.53,-1.46,-1.23,0.05,-0.75,0.46,0.42,0.77,-1.29,-0.24,0.34,-1.01,-0.48,0.37,-0.95,0.89,3.83,0.32,-0.15,-0.7,3.28,1.9,0.2,-0.22,-0.45,-2.22,3,1.56,0.21,-0.55,-0.46,-1.92,0.06,0.26,1.11,0.18,0.99,-2.08,0.69,-0.73,-0.62,-2.5,-0.24,-1.32,0.2,2.01,-0.88,-0.06,2.09 +C1669,5.17,1.11,-1.15,-2.26,0.19,0.55,0.31,0.11,0.97,1.03,-1.09,0.19,0.39,0.13,-0.75,1.82,-1.22,2.11,0.69,0.76,-2.08,0.22,1.73,1.89,-1.13,1.87,-0.19,1.38,1.57,0.54,-0.53,-0.33,-0.42,-1.46,-0.49,0.55,1.16,-0.06,0.92,-1.16,-1.47,1.22,-0.05,-1.92,-1.73,-1.66,-0.24,-1.13,1.62,-1.53 +C1670,-13.96,0.06,-0.14,-1.19,0.5,1.35,-1.42,-1.04,-1.88,0.5,1.33,0.64,0.78,-1.43,0.22,-0.85,1.94,-0.82,0.1,-0.44,-0.42,-1.44,1.64,0.3,-1.61,0.96,0.19,-2.62,2.8,0.54,-0.1,1.55,-0.77,-0.43,-3.13,1.03,0.75,-1.31,0.66,1.58,-1.24,0.82,-1.3,-0.25,-0.86,-0.76,0.78,-1.45,1.85,-1.77 +C1671,-11.44,-3.29,2.72,0.7,-3.78,-5.78,3.67,0.13,-0.05,-0.97,2.74,2.08,0.52,-0.91,0.47,-2.34,0.01,-1.74,4.37,0.86,-1.36,0.88,-0.74,-0.28,-2.58,0.15,-0.97,1.75,0.64,-1.66,-2.55,1.04,0.5,2.8,-2.08,-0.09,0.32,-0.55,-0.93,-1.07,2.3,-0.33,-1.64,-2.16,0.22,-0.88,-0.44,0.52,0.45,1.04 +C1672,-15.48,-1.27,1.11,0.19,-1.52,4.69,-3.2,0.63,-0.64,-3.12,0.08,-0.09,0.05,2.11,-1.73,-0.81,0.5,-2.79,1.92,-0.28,0.45,-1.58,1.44,1.09,-1.66,-2.14,-0.18,1.31,-3.76,-0.46,2.6,0.43,0.92,0.95,-0.23,0.3,-3.64,0.38,1.81,-0.69,-1.6,1.09,0.97,-1.42,0.46,0.12,1.34,-2.96,2.84,3.12 +C1673,4.66,-1.1,0.07,-0.44,-2.68,1.02,-0.83,0.54,5.96,1.08,-1.12,0.4,-1.01,0.91,1.07,-0.9,0.89,-0.18,2.8,0.32,-0.5,-0.28,-0.49,-1.08,0.87,-2.03,-1.5,0.39,-1.03,-0.04,-0.79,1.9,0.37,0.74,1.8,2.06,1.91,1.06,2.17,0.37,-2.79,0.31,0.91,-1.24,-2.1,1.7,1.37,0.77,2.75,2.38 +C1674,3.81,7.95,3.04,5.7,1.89,-0.33,1.51,-0.41,-0.73,1,0.2,0.26,-1.74,-1.6,0.59,-2.49,-2.95,1.29,-1.6,-0.12,4.11,-2.56,0.31,4.26,-2.72,3.89,-1.45,-1.64,-1.82,-2.4,2.72,-1.37,1.65,4.07,1.09,-0.85,2.25,0.25,2.68,2.46,2.32,0.06,0.03,-1.45,-0.05,0.9,-0.1,0.84,-1.56,-3.67 +C1675,2.58,3.39,4.52,3.92,-2.2,0.55,-2.55,0.21,-3.65,-0.95,0.05,1.2,-2.45,-0.75,-1.89,-0.08,1,-0.66,-4.41,-0.79,0.09,0.85,0.1,-0.1,0.3,0.31,3.11,-0.15,2.76,2.52,-0.27,-0.63,-0.06,-1.86,-1.16,-1.69,2.25,1.53,2.08,-0.59,1.97,-0.16,0.17,2.34,0.4,-1.35,1.4,2.26,-3.21,-1.21 +C1676,3.82,6.46,4.36,4.71,1.32,-1.99,0.77,-0.52,-0.38,0.21,-1.53,-0.66,1.6,1.36,-1.15,-0.58,-1.67,-0.19,0.26,-0.18,-0.92,0.16,0,-0.43,-0.04,-0.77,-0.23,0.44,-0.56,2.63,-0.35,-1.94,-1.77,-0.85,-0.77,-0.7,0.1,-0.45,-1.31,0.8,-0.6,2.98,-0.23,-0.93,-1,-0.79,-1.4,-2.59,-2.61,-1.26 +C1677,4.58,8.44,5.15,4.33,1.87,0.35,0.64,-1.36,-0.03,-0.31,-2.71,1.35,0.94,-0.64,-1.01,-1.6,-0.88,0.66,0.39,-1.3,0.68,-0.85,-2.33,-2.62,-0.97,-0.16,0.68,-0.84,1.82,1.99,-0.57,-0.49,0.91,0.25,-1.54,1.26,0.55,-1.76,-1.09,0.06,1.48,-1.61,0.25,-0.06,-0.14,-0.06,1.87,-0.5,2.73,-1.58 +C1678,2.41,-2.43,-0.7,-2.01,-5.6,-0.42,-1.5,0.48,-2.82,1.8,-3.36,0.98,2.9,2.41,-0.29,-1.73,-2.53,-5.25,1.92,-0.78,2.24,0.04,0.02,-0.16,0.75,2.31,1.25,-2.08,0.59,0.68,1.67,1.48,-2.03,-0.37,-0.4,-3.45,1.32,-1.69,-1.67,-1.81,0.3,2.4,0.3,-2.25,-1.12,-0.53,-1.08,1.58,-0.7,-1.44 +C1679,-12.68,-3.42,2.42,2.22,-4.2,-10.27,4.64,-0.67,3.03,3.63,-1.78,-1.13,0.8,1.31,0.98,2.01,0.16,1.2,-3.36,-1.12,-1.08,0.84,-0.77,-0.52,1.8,0.14,-3.42,-1.91,-1.32,-0.41,-4.43,-2.13,0.28,-1.06,2.95,1.67,-1.6,2.06,-0.52,1.68,-0.77,2.25,2.05,-1.37,0.14,0.16,0.79,0.72,-0.64,3.64 +C1680,-0.55,5.67,7.06,8.81,-1.43,-0.39,-3.58,-0.23,-7.43,-1.51,2.97,0.16,1.53,2.07,-2.38,1.37,-0.27,-0.86,0.87,1.51,0.47,1.72,2.57,-0.91,2.49,-0.17,-4.37,-1.25,0.64,1.17,-2.5,-3.44,-1.45,0.43,-6.31,1.46,2.22,-5.88,-3.07,1.3,1.3,0.93,2.62,0.03,2.35,-0.14,0.7,-1.97,3.5,1.46 +C1681,-2.59,4.28,-3.63,-5.35,5.17,1.37,3.1,0.45,0.22,0.12,1.48,1.49,-1.3,-1.83,0.93,0.2,-1.23,0.15,1.52,1.5,0.93,-0.37,-0.43,0.46,-0.99,0.43,0.7,-0.77,-0.03,-0.44,0.19,-0.1,-0.54,0.98,0.58,0.58,-0.01,-0.69,-1.95,-1.12,-0.66,-0.86,1.32,0.62,0.15,1.63,0.59,0.63,-0.25,-0.05 +C1682,4.75,0.39,0.21,-1.48,-2.1,0.7,0.04,3.21,-0.14,-0.21,-2.7,0.64,2.06,-1.12,-3.91,-2.04,1.5,-0.79,-0.06,-2.93,0.3,1.34,0.51,-1.31,2.89,2.72,-1.5,1.74,3.25,-3.02,0.21,-3.95,-0.72,0.38,0.6,7.41,-1.99,0.78,0.86,2.95,-0.46,1.82,0.67,0.5,0.43,1.9,-0.75,-3.6,-4.4,-1.46 +C1683,-7.84,3.3,-2.11,-4.86,5.39,3.11,0.74,0.14,0.11,4.36,-0.17,0.81,0.66,-1.22,-1.96,1.94,-1.85,2.99,2.19,-2.03,-1.24,1.74,0.8,-0.5,-0.97,-1.94,0.82,0.83,-3.68,0.19,0,1.87,0.43,2.46,0.92,-0.72,0.49,0.42,3.32,0.73,-2.22,-0.12,-1.89,0.51,1.42,0.07,0.68,-2.06,-1.64,1.17 +C1684,-5.47,3.3,-3.85,-4.66,5.01,1.21,2.46,1.2,-1.8,2.67,-1.15,-1.21,-1.32,0,0.84,2.91,2.09,-0.25,-1.7,-1.64,0.15,2.71,-2.52,1.88,3.27,-0.53,0.83,1.52,0.14,2.11,-0.87,-0.41,0.87,-0.8,-0.1,-1.18,-0.74,-0.65,-1.97,-0.57,0.82,-1.83,-1.63,0.82,-1.33,1.21,2.43,1.77,1.01,-1.67 +C1685,4.2,-0.4,-1.79,-1.76,-1.09,0.25,-0.51,1.15,1.72,-0.95,-1.62,-0.53,-2.2,-0.5,0.51,0.07,0.02,-0.88,1.05,-2.95,0.88,-2.4,-1.03,0.54,-0.44,-0.2,-1,1.59,0.41,1.57,-1.27,-1.54,1.73,-0.32,-0.02,-1.25,-0.15,-1.25,-0.86,0.78,2.08,1.14,0.44,-1.95,0.28,0.81,1.68,-1.21,-0.14,0.99 +C1686,4.38,-3.03,-1.58,-0.95,-5.42,-1.3,-3.39,-0.86,-2.67,-0.47,-2.1,0.85,0.79,-0.95,1.83,0,-2.26,-0.31,-0.49,-1.52,2.43,-0.39,-4.1,0.74,-1.48,-1.06,-0.97,2.27,-2.18,2.34,-0.22,-1.12,3.45,3.16,-0.67,1.62,-0.08,-2.68,-1.72,-0.86,-0.06,-1.96,0.39,3.35,-3.61,-0.01,-2.27,-0.81,-1.19,-1.92 +C1687,3.01,-1.52,-1.75,-2.3,-4.66,-1.69,-1.25,0.8,-1.55,2.44,0.13,-1.45,2.3,0.19,-2.47,2.88,-1.05,1.78,-1.38,2.43,2.85,1.32,-0.76,3.68,0.26,-0.87,-0.61,0.19,-2.82,1.02,-0.96,-0.2,0.11,-1.42,-1.64,0.94,-0.5,2.61,-1.13,-2.15,1.7,-0.17,-0.53,-0.86,2.82,0.18,0.89,-0.39,-3.2,-0.91 +C1688,4.13,-0.72,-0.43,-2.39,-3.42,0.44,-0.77,1.62,0.04,0.28,0.33,-2.33,-2.98,0.98,1.34,-1.92,1.02,-0.64,-2.6,-3.2,-4.07,-1.78,1.31,-0.74,0,0.3,-0.36,2.32,-0.17,0.52,-1.16,1.32,1.03,-1.22,1.22,-0.68,-1.22,-3,-1.31,1.93,0.11,-0.99,2.11,1.84,-1.73,0.22,-1.98,-1.62,-1.98,1.91 +C1689,5.08,-1.56,-1.58,-1.74,-1.71,-0.35,-1.56,-3.34,0.33,-1.76,-0.75,1.55,0.21,-0.13,-0.07,2.25,1.3,-0.82,-2.83,-0.75,0.53,-0.48,0.39,-0.9,1.51,-0.19,-1.08,0.37,1.42,-2.48,-2.34,-0.09,2.48,-2.23,2.11,-2.25,2.15,-0.33,2.39,0.15,1.74,-0.5,-0.3,-1,-0.14,-3.29,-2.32,1.02,-0.38,2.12 +C1690,-14.84,-0.7,1.69,1.09,-1.26,-1.03,-0.36,0.01,-0.35,-4.46,-1.14,1.46,-2.95,0.6,0.46,0.01,3.32,-4.9,1.99,-0.92,-3.47,-0.1,-0.9,-1.35,-0.15,1.37,1.14,1.54,2.3,-0.07,1.35,0.67,-0.21,2.73,-3.21,2.02,-0.46,1.04,-0.2,1.71,0.12,0.39,1.01,-3.97,0.15,-3.33,0.09,-1.28,-0.12,-1.36 +C1691,-12.2,0.33,-0.15,1.29,0.14,0.46,-0.59,-1.1,1.23,-0.3,1.36,4.06,1.55,0.8,0.23,-0.2,-0.73,-0.8,1.91,-1.89,1.69,-0.58,-0.29,1.06,-0.91,-0.57,-1.27,-1.77,-1.02,-0.44,-1.43,-0.75,-0.17,-2.6,-2.31,-3.12,-0.4,-2.36,0.03,2.48,-0.78,-0.09,5.24,-1.15,-1.09,-0.01,1.22,-1.31,-1.41,1.94 +C1692,3.69,-0.37,-0.77,-2.14,-1.99,-0.14,-1.73,-0.82,-1.21,1.07,1.82,-0.12,0.45,-4.56,2.84,-1.63,-0.21,0.15,2.28,-0.25,0.58,1.31,-1.61,-2.77,-0.69,1.06,-1.27,1.4,-0.24,-0.66,1.06,-0.68,-0.3,2.49,-2.44,0.21,-1.84,0.71,-0.55,-0.9,-1.12,-0.93,1.86,0.76,-0.6,2.23,-0.72,0.94,0.25,0.69 +C1693,2.55,-0.01,-0.43,-2.28,-2.59,-0.87,-0.53,-0.14,0.02,1.11,-0.32,0.88,-1.26,-0.77,1.67,1.42,-0.99,2.17,0.12,0.92,-1.77,0.36,-0.22,-0.54,-0.86,1.17,2.75,-2.2,0.85,-0.08,-0.22,1.34,0.23,0.39,0.55,2.19,1.18,0.69,0.01,1.46,-0.07,-0.04,-1.67,-0.24,1.69,0.7,0.48,-0.38,-1.33,0.5 +C1694,5.59,-0.82,-1.56,-1.73,2.46,-0.33,1.89,-2.41,0.91,-1.59,-0.81,-0.8,-0.26,-0.91,-2.4,-1.23,1.28,1.04,-3.93,0.47,-0.4,-1.38,0.04,0.38,-2.36,-1.54,-2.06,3.32,-0.17,-3.14,2.67,-2.02,1.76,-2.43,0.88,2.56,1.34,2.16,-1.09,1.35,-2.48,-1.04,-0.38,-0.18,-1.34,-2.74,-2.35,0.77,-1.29,-0.35 +C1695,3.92,-1.1,-0.16,-1.24,-2.46,0.82,-2.16,-0.64,-0.45,1.66,1.13,-2.14,-0.49,-0.17,-0.15,2.2,-0.18,-0.41,0.64,0.94,2,-1.83,-1.13,0.23,0.46,0.72,-2.07,0.22,-3.11,-2.29,2.33,-1.11,-0.25,-0.49,1.43,-1.18,0.76,1.56,-0.56,0.55,0.74,-0.47,-0.56,-0.63,-0.18,-1.49,-1.26,1.72,0.4,-0.48 +C1696,-10.37,1.92,-0.17,-1.38,2.32,3.87,-4.25,1.08,6.81,1.27,-1.58,-1.7,2.46,-1.66,3.32,0.15,-1.09,0.62,-1.05,-1.18,-0.58,0.16,-0.63,-1.73,-2.61,0.2,-1.31,-2.81,0.86,-0.92,-0.8,-2.09,0.04,0.31,0.8,-0.1,-0.01,0.31,0.74,-0.88,0.07,1.62,-2.05,-0.7,-1.74,-0.56,0.5,0.23,0.79,0.38 +C1697,3.3,-8.67,1.99,1.84,6.83,-1.05,0.17,2.43,0.94,2.12,2.07,-1.4,0.69,-0.92,-0.59,0.33,0.86,0.9,-0.37,1.13,-6.64,0.34,-0.79,2.55,1.16,3.52,-2.05,0.84,0.61,-0.34,1.71,1.6,-2.97,-0.88,0.32,-1.6,2.55,0.46,0.83,-1.46,1.37,-4.22,0.03,-3.25,0.09,-2.97,1.04,-2.84,1.46,0.06 +C1698,-7.4,-1.09,-0.16,-2.14,-1.2,2.76,-1.61,0.1,-1.62,1.11,-0.22,-0.29,-0.63,0.2,0.73,-1.02,0.7,-0.4,0.88,1.77,-3.47,2.36,1.97,-4.23,2.02,0.83,-1.09,2.56,2.28,-1.6,2.27,2.27,0.28,0.32,0.4,-1.1,1.25,1.09,0.63,0.45,0.97,-1.84,-2.33,-0.22,-1.09,1.18,1.07,-2.2,-0.52,-1.61 +C1699,-4.04,3.28,-2.24,-4.36,4.59,1.49,2.85,0.18,-0.27,2.31,0.75,0.01,-3.79,-0.56,1.11,-0.13,-1.28,-0.66,0.5,0.35,2.32,-0.61,0.87,-0.61,1.02,1.31,-0.86,1.12,-2.62,1.11,-0.91,-0.09,-1.11,-1.27,-1.11,1.18,0.87,2.17,2.31,0.18,0.32,-2.13,2.28,-2.16,-2.23,-1.16,-0.89,1.57,-1.54,1.1 +C1700,2.83,-11.93,3.69,5.24,6.61,-0.17,-1.05,4.69,-2.69,1.38,1.86,-1,0.63,0.9,-1.97,-0.27,-0.3,1.3,-3.29,2.31,1.96,0.62,-2.96,0.47,1.84,2.88,-2.73,3.79,2.64,-1.97,2.66,-1.98,0.86,0.71,-0.63,1.82,2.13,-1.2,2.4,-2.58,1.24,4.28,-0.69,1.71,3.11,3.93,1.67,2.14,0.59,-0.72 +C1701,-12.34,-1.21,-1.17,-1.2,-0.01,2.49,-2.01,-0.4,-1.41,2.6,-2.98,-3.08,0.75,2.32,-1.14,-2.28,0.74,-2.18,-0.25,-0.62,1.87,-1.15,-4.28,-1.83,1.33,-0.52,0.31,-1.3,-2.89,-1.93,1.8,0.83,-2.55,-2.05,-1.53,-0.62,1.56,-0.08,0.23,1.23,-1.73,0.57,1.58,0.93,0.98,0.75,-0.87,0.73,-2.99,1.28 +C1702,4.45,-0.45,-0.11,-1.43,-4.71,0.8,0.35,0.47,-1.28,1.11,0.96,0.28,1.39,-0.5,1.2,-0.73,-0.21,0.96,-1.06,0.72,1.25,-1.67,1.32,0.14,-0.54,0.59,-1.55,2.19,0.55,-1.82,0.42,2.38,1.15,1.1,0.32,0.61,-1.1,1.37,-0.68,-1.54,0.02,-0.69,-2.61,0.72,-0.18,-0.68,-0.25,0.14,-1.18,1.5 +C1703,4.76,1.77,-1.79,-3.57,-0.18,-0.23,1.01,0.95,1.13,0.96,0.43,-0.15,-0.47,-0.73,0.74,0.69,-0.25,0.36,1.85,-0.19,-0.58,1.22,-0.86,-0.02,-0.37,-1.83,1.62,0.74,1,1.68,-2.86,-1.79,-0.24,-3.59,-1.7,-2.63,-0.68,1.97,-2.02,-0.79,-0.48,-0.62,0.11,0.55,0.59,0.05,0.78,0.65,2.48,0.09 +C1704,-14.27,0.18,1.11,0.41,-1.17,-0.32,0.31,-0.28,3.01,-4.77,0.42,2.09,-1.29,2.76,0.14,1.75,0.13,-1.23,0.42,2.14,-6.12,-3.48,2.94,1.53,-3.13,0.02,0.8,0.42,-2.16,1.24,1.83,2.47,-0.5,1.15,-0.89,3.36,-4.51,-0.29,-2.94,1.57,2.69,0.57,0.87,-0.6,2.18,-0.34,1.98,0.66,2.42,-0.18 +C1705,3.85,-0.9,-1.18,-1.8,-2.96,-0.4,-0.34,-1.51,0.68,-0.37,1.02,1.24,0.59,-1.16,1.49,-0.43,-1.28,0.4,0.57,-0.96,-0.53,-1.13,-0.54,0.94,-1.58,0.61,1.06,2.74,-1.24,2.07,-0.65,2.72,0.53,-2.06,-0.01,-0.01,0.96,1.04,1.12,0.72,1.4,-0.27,0.34,-0.16,1.71,2.56,-1.77,1.75,1.16,-0.44 +C1706,4.73,-0.76,-1.84,-2.2,-2.99,0.02,-0.32,0.61,-0.58,-0.98,-0.72,-0.56,0.13,0.23,-1.99,0.32,-1.44,1.49,0.7,1.04,-0.89,1.37,-1.08,-1.17,1.79,1.78,-0.98,-0.61,-0.48,-2.31,-3.06,2.7,0.1,-0.04,1.22,0.87,-1.96,-1.38,-1.93,-0.19,0.91,1.52,-0.32,-0.73,1.1,0.81,-3.73,0.6,0.52,1.62 +C1707,-14.18,-0.54,1.88,-0.5,0.24,0.82,-2.64,1.68,-4.28,1.78,-1.31,-2.05,-0.81,3.23,-1.39,-2.92,1.63,4.41,-1.77,0.72,0.54,1.53,-1.16,-1.09,-0.89,1.4,-2.52,-1.32,-1.43,-0.52,1.05,-0.35,-1.84,-2.64,1.18,-2.11,-4.16,0.09,-0.52,-0.92,-1.38,-3.16,2.19,0.75,-0.64,-2.18,-4.71,-2.86,-0.41,0.3 +C1708,4.28,-1.62,0.19,-0.97,-3.17,0.59,-1.63,-0.81,-2.4,-0.36,-1.2,-1.01,-1.94,-1.25,-4.6,0.51,0.3,1.35,2.3,1.74,1.93,1.79,0.68,0.15,5.3,3.07,2.41,0.18,0.5,-2.82,-1.38,1.56,-4.48,1.15,1.86,0.84,0.22,-0.94,0.07,-1.01,1.49,1.59,1.52,0.89,-0.59,0.88,0.21,0.23,-1.46,4.03 +C1709,3.57,7.81,5.53,4.64,1.48,-1.88,0.83,0.14,-0.94,-0.02,-0.41,-1.26,0.88,1.51,1.87,-0.27,-1.97,0.87,0.78,-0.3,-1.97,-0.96,-0.29,4.01,0.29,-0.57,-3.71,0.8,-1.8,0.35,0.35,-0.03,0.31,0.44,-3.39,0.43,-0.32,0.94,0.28,0.59,0.37,-1.23,0.47,-4.8,1.55,0.24,-1.63,-3.09,-1.66,0.08 +C1710,-12.55,-0.97,0.51,1.31,-1.24,-3.74,1.84,0.64,2.13,1.49,-0.49,1.31,-1.02,-1.48,-0.01,1.52,-0.04,2.48,1.73,0.9,2.3,1.22,0.92,1.3,-1.74,-0.28,-0.51,0.47,1.26,0.84,-0.23,0.51,-0.93,-2.72,-1.11,0.58,-0.25,-0.91,-0.87,-1.25,1.76,0.76,-0.81,-1.75,-0.88,-0.16,0.5,0.44,3.48,-0.86 +C1711,4.31,8.51,2.09,4.15,5.01,-0.3,4.13,-0.24,1.55,1.36,0.29,2.07,-1.91,0.32,1.09,-0.24,-0.33,-0.7,-0.43,1.86,-1.84,-0.27,1.53,0.77,0.02,-1.89,-0.11,-0.76,0.26,-2.16,1.75,-1.24,-0.68,-0.59,-0.21,-0.02,1.19,-0.43,0.32,0.1,0.61,0.44,1.1,0.38,0.16,-0.25,0.46,2.31,0.16,-0.45 +C1712,2.64,-7.46,2.4,3.59,4.23,0.71,-1.38,-2.14,-0.99,-2.36,-3.43,9.31,-0.29,4.27,5.77,2.93,-0.6,2.3,-0.49,0.14,3.58,1.34,-1.07,1.83,3.1,0.15,0.95,-0.83,-0.19,4.57,-0.91,-1.01,2.49,0.88,0.24,-0.43,-0.42,3.28,-2.31,-0.88,1.5,-0.92,-3.22,2.79,-0.73,-0.21,-0.44,-0.91,-0.14,2.01 +C1713,3.63,-0.15,-1.4,-2.52,-2.14,-0.24,-0.27,1.03,-0.93,1.99,0.31,-1.39,0.94,0.67,0.86,-1.04,-4.06,-1.72,-0.75,0.83,-0.87,1.58,3.24,0.99,1.74,-0.42,1.74,1.42,-0.64,-3.65,2.49,-2.17,-1.46,-0.22,-0.14,0.97,0.27,1.01,-0.35,-0.08,1.5,-1.19,1.13,0.01,-0.08,0.72,-1.99,0,-0.52,-0.27 +C1714,3.73,-3.55,-0.41,0.21,-1.39,1.01,-1.37,-1.37,0.17,1.88,-0.53,2.87,0.92,1.46,1.83,-0.2,-0.13,-0.03,0.73,-2.33,1.67,0.03,-0.2,1.47,2.46,2.01,0,1.04,-3.78,0.3,-1.67,-1.25,-0.78,3.13,0.61,1.83,0.37,1.01,-0.84,0.3,-0.97,-0.43,-1.94,0.11,-0.44,0.22,-1.69,-4.95,-0.89,-3.8 +C1715,4.65,-4.46,-1.54,-0.95,1.65,0.17,-2.06,-6.44,-0.83,1.76,-3.82,1.28,-1.24,-2.47,-3.13,-0.88,-1.81,3.37,-2.98,1.59,-1.29,1.91,-3.01,-0.71,-1.78,0.22,-1.47,-4.34,-1.33,1.82,2.64,0.11,-1.95,-0.27,-0.99,-1.65,-0.98,0.52,0.63,-0.88,0.34,-1.28,0.6,-2.68,-0.86,-1.78,0.67,-0.99,-0.57,0.28 +C1716,5.22,2.32,-1.45,-3.72,-0.85,-1.11,-0.17,-0.56,0.35,-1.67,0.51,0.82,-0.05,0.04,-1.4,1.25,1.28,1.43,0.41,0.05,0.76,-2.23,-0.13,1.61,0.12,-0.46,1.48,2.35,-2.19,0.75,0.2,-0.73,1.24,-0.87,0.69,0.96,0.83,0.03,-0.6,-1.21,-1.27,0.36,0.5,0.94,-0.19,0.3,1.53,-0.87,-1.01,-0.25 +C1717,4.78,0.45,-0.93,-3.13,-1.43,-1.27,-0.56,0.91,0.11,-0.92,-1.05,0.62,0.16,-1.38,-2.01,0.34,0.89,-1.65,0.8,-1.36,2.34,1.81,1.22,-0.57,0.46,0.16,1.41,1.36,-2.37,0.54,-6.01,-0.15,0.75,-2.05,0.6,1.1,0.26,1.51,-1.83,0.44,1.74,-1.49,2,-1.36,1.63,0.87,-1.98,-0.45,1.45,-1.21 +C1718,4.06,0.17,-1,-2.94,-1.2,-1.04,0.14,0.96,0.58,-1.83,0.06,-0.14,-1.31,1.12,-0.09,0.2,-0.29,-0.57,-0.31,1.09,-2.9,-0.49,-1.3,1.3,1.48,0.98,-0.83,-1.07,0.07,-0.39,0,0.53,-0.25,1.24,-0.54,-0.24,0.06,1.1,2.29,-1.09,-0.09,-1.87,-0.15,0.45,2.14,0.35,-1.1,-2.05,0.21,-0.54 +C1719,4.23,0.13,-1.43,-1.5,-1.57,-0.25,-0.29,1.85,0.2,-1.08,0.89,1.03,-0.04,0.04,-0.18,-3.09,0.2,-0.91,0.86,-0.64,0.76,0.46,0.66,-0.33,2.01,-2.18,1.09,-1.31,0.87,0.69,-1.27,-0.75,-1.14,-0.17,-1.44,2,-0.89,0.02,1.23,-0.23,-0.65,1.62,-1.45,1,-0.99,1.57,0.34,1.95,1.67,1.4 +C1720,4.62,3.11,-2.65,-1.36,0.87,-1.29,1.56,2.3,-0.08,-2.82,0.63,0.39,0.64,0.35,1.28,1.39,1.25,0.07,-0.08,1.31,-0.65,0.27,-2.07,-0.18,-0.45,1.22,0.26,-0.12,-2.75,-0.3,-0.23,-0.97,-1.99,-0.52,0.83,0.92,0.19,0.3,0.74,-1.54,1.63,0.9,-0.44,0.98,-0.63,0.8,-1,0.25,-0.28,-1.74 +C1721,2.68,-0.69,-0.44,-2.29,-4.35,-1.96,0.26,1.53,-0.29,1.2,4.34,0.82,2.32,-2.71,1.28,-3.03,3.71,0.29,2.07,0.98,-0.13,2.17,1.91,1.23,-0.2,2.92,4.17,-2.78,-0.31,-0.6,-1.21,-0.02,1.72,3.53,0.28,1.07,-0.82,3.49,3.25,-2.45,-0.78,1.04,-0.83,-0.22,-0.25,-2.93,-1.49,-0.61,1.82,-0.14 +C1722,5.28,1.8,-1.47,-2.47,-0.5,-0.13,-0.21,0.75,1.02,-0.87,0.31,-1.97,-0.12,0.13,-0.34,0.56,1.8,0.52,-0.63,-2.35,-0.77,1.57,-1.29,-1.58,0.38,-0.51,0.46,-1.28,-0.77,-0.04,1.4,-1.12,-0.57,-0.04,0.84,0.59,0.53,0.89,0.98,0.33,-0.02,-0.62,1.25,0.36,-0.02,1.98,-1.89,-1.71,-1.65,0.69 +C1723,4.97,0.4,-1.35,-2.69,-1.9,-0.85,0.24,1.27,-0.11,-1.6,-0.73,1.27,1.5,2.71,0.65,2.45,4.72,-1.2,-2.16,1.68,1.51,-2.52,2.48,1.63,1.39,1.99,0.96,1.68,1.09,-2.05,-3.88,-3.69,-0.14,0.56,3.03,0.25,-0.92,-0.22,1.86,0.75,0.5,-1.64,2.25,0.65,-0.21,1.65,1.61,0.05,0.44,-0.23 +C1724,2.37,-12.11,1.36,3.84,6.17,-0.95,-1.25,2.11,-0.7,2.05,0.99,2.99,3.99,-0.24,-2.22,1.16,-2.48,0.41,-4.29,-3.12,4.12,5.52,1.67,-1.33,-0.05,2.74,1.19,3.13,0.03,0.3,-0.91,-0.35,0.01,-0.09,-0.28,3.89,-4.18,-3.92,1.21,-0.18,1.59,-2.71,-3.03,2.04,0.64,-2.54,-4.09,-0.61,2.1,0.88 +C1725,4.07,-6.9,0.3,-0.24,-1.33,1.72,-1.77,-4.61,0.39,-0.28,-2.38,1.96,0.6,-1.02,-2.95,0.07,-2.36,-3.27,-3.65,1.36,-1.26,2.02,5.49,0.6,-2.39,-2.87,-1.85,0.01,-1.42,1.84,-0.75,0.57,0.21,1.43,7.59,2.05,-2.86,0.02,-0.62,-0.79,-1.31,-1.85,1.35,3.26,2.16,4.05,3.91,-1.83,0.45,-4.6 +C1726,2.62,0.29,-0.99,-1.15,-1.65,-0.79,0.39,0.24,-0.92,1.22,1.36,0.28,-0.62,1.07,0.74,-0.6,-2.49,0.41,0.4,-0.33,1.98,1.32,-0.03,0.01,-1.83,0.61,-0.33,-0.06,-1.58,-0.1,-0.68,0.04,0.32,-0.48,0.6,0.23,1.21,-0.24,-0.91,-0.22,1.86,-0.44,-0.52,-0.01,-2.83,2.4,2.04,1.94,-1.49,1.51 +C1727,6,0.3,-1.09,-2.14,-2.39,-0.64,0.24,1.18,0.75,-0.51,-0.72,1.44,-0.62,1.19,-1.62,0.85,2.06,2.67,0.51,-3.17,0.52,0.64,2.04,3.62,-1.52,-0.02,-3.64,-1.07,-2.35,-3.2,1.52,-1.09,1.17,1.59,-1.68,3.24,-0.08,-0.7,-0.81,2.04,1.4,-4.49,-3.48,-1.15,1.65,-0.45,2.02,1.16,-0.34,1.04 +C1728,4.94,-2.15,-0.61,-0.8,1.71,0.76,-0.48,-3.25,-1.17,-0.43,-1.53,1.03,0.01,-1.82,-0.97,-0.18,-2.31,2.94,-0.42,5.73,0.97,0.59,3.9,0.86,-3.25,0.4,0.08,-0.47,-0.62,1.29,-2.43,-0.28,0.14,1.17,1.08,-2.71,0.91,-1.02,2.88,-2.29,1.31,-1.25,-1.74,0.92,2.37,3.09,-1.1,0.11,-1.97,-1.16 +C1729,4.7,0.9,-0.78,-2.42,0.54,-0.51,0.39,1.28,0.23,-0.77,-1.7,0.06,-0.96,0.06,0.11,1.89,1.28,0.37,0.14,2.08,-1.51,0.9,-0.12,-0.24,2.11,-0.11,0.34,0.74,-0.89,-0.31,-0.84,0.32,-0.01,0.42,1.73,-0.04,0.73,1.27,0.18,0.44,-0.77,-0.41,1.24,-1.88,1.26,0.44,1.46,0.36,-0.11,-0.17 +C1730,3.03,-1.54,0.02,-1.18,-4.7,-1.13,-2.14,0.5,-2.5,2.55,0.32,-1.17,0.69,-0.71,0.08,-0.38,0.05,-2.29,0.94,-0.05,0.48,1.43,3.65,0.47,-3.22,-0.74,-1.66,-2.21,-1.06,-2.03,-1.48,-1.81,0.32,1.82,-0.33,-0.05,1.76,0.39,-0.92,1.09,-0.45,-0.87,-2.06,0.64,-1.5,-2.63,-0.41,0.22,-0.73,-1.78 +C1731,5.53,-6.18,0.23,0.74,0.92,0.82,-0.18,-4.13,-2.3,-0.37,-2.49,-1.51,2.82,-0.73,1.07,1.33,1.58,-0.8,-2.15,2.09,0.63,1.04,-2.04,-0.7,-4.87,0.44,-2,-0.4,1.03,-2.33,-4.94,0.54,0.37,4.17,1.24,-2.66,0.58,-5.6,-2.36,-0.43,0.73,1.5,0.26,-2.52,2.57,-2.46,-2.02,1.45,-2.74,-2.74 +C1732,3.45,-2.16,-0.9,-1.65,-1.72,-0.6,0.08,-2.5,1.61,1.86,-0.98,-1.63,-1.17,1.08,-0.28,0.82,2.38,1.4,-3.33,-0.81,0.17,-1.84,-1.28,-1.83,0.58,-0.16,-1.81,0.7,1.92,-1.16,0.09,1.79,0.14,0.89,-0.57,0.29,-0.85,1.67,-1.36,1.5,-0.77,-1.28,-1.06,-0.25,-0.52,-1.58,0.39,-3.07,-1.02,-0.27 +C1733,4.85,1.49,-1.62,-3.71,0.24,-0.37,1.02,0.79,-0.35,-0.13,-0.07,-0.78,0.57,0.37,1.69,1.3,0.49,-0.89,0.35,1.36,1.11,-0.22,-2.82,1.88,0.52,-0.74,-1.7,-0.68,-2.69,-1.22,2.55,0.62,-1.66,-0.04,0.89,-1.63,-0.77,-2.44,-1.14,-0.26,-0.21,0.84,0.98,-0.45,0.44,0.22,-0.57,0.81,0.46,0.02 +C1734,5.86,0.2,-2.92,-2.44,-0.67,-0.19,0.99,0.45,1.76,-0.21,0.66,-0.95,2.15,-3.19,0.69,1.04,0.09,1,-1.56,1.14,-0.69,-0.75,0.48,-0.64,2.37,0.01,1.26,2.16,1.65,0.52,-1.76,3.47,-2.89,0.04,-0.81,-0.38,1.78,-2.26,0.87,-1.05,1.93,2.38,2.32,4.05,2.45,-2.67,-1.17,1.1,0.59,-0.07 +C1735,-9.57,2.89,-1.96,-2.87,3.18,0.16,0.25,-0.05,0.63,0.59,0.66,1.11,0.71,1.21,1.49,-1.6,-0.79,0.85,0.23,-2.31,1.16,2.24,-0.23,1.62,-2.88,-0.7,-1.41,1.42,-0.8,0.87,2.6,1.65,1.79,-0.42,-1.22,0,-1.08,-1.05,-4.59,1.98,1.09,-0.8,-0.42,3.32,-0.28,-0.25,-1.16,-0.35,0.18,-1.62 +C1736,4.6,1.3,-1.23,-1.77,-1.96,-0.23,0.39,0.36,0.06,-0.19,-0.83,0.47,-2.37,1.08,0.67,-0.05,-0.15,0.79,-1.38,3.42,0.51,0.35,-0.68,-2.12,-0.68,-0.4,-0.52,-0.45,0.01,-0.74,0.45,-1.37,3.25,1.89,0.87,1.28,-0.54,0.1,-0.85,-0.81,1.68,1.92,-0.52,-2.95,0.92,1.66,-0.6,0.6,-0.18,-1.31 +C1737,3.32,9.83,5.24,4.89,2.34,-0.22,-0.31,-0.04,-1.74,-1.15,-1.38,-2.84,2.41,0.03,1.03,0.49,-1.31,2.38,1.09,-0.45,-0.08,-1.78,-0.5,1.55,0.04,-1.33,2.27,-0.91,1.13,-0.58,0.04,-0.7,2.63,-0.86,-3.36,1.39,1.15,-0.78,-2.99,0.18,-0.06,-0.93,0.58,0.06,0.05,0.96,-0.79,-0.01,0.11,-1.1 +C1738,4.87,0.21,-1.25,-2.21,-1.89,-0.26,0.5,-0.03,-1.19,2.79,2.15,-0.55,0.41,1.47,1.08,2.08,-3.46,-1.93,-0.56,0.36,1.28,1.75,-0.14,-1.18,-0.21,-0.72,0.49,-0.27,-0.77,0.49,1.5,-3.34,0.99,-0.97,0.35,-4.02,-0.56,1.36,2.22,0.4,0.53,1.52,1.18,1.74,0.28,-0.45,0.85,-0.29,0.95,-0.34 +C1739,3.45,1.06,-1.31,-1.35,-1.97,0.54,-0.67,1.36,-0.53,1.93,0.82,0.55,-1.65,3.3,0.36,0.99,-1.11,-1.3,-0.51,-0.14,-1.16,-2.32,0.5,-0.97,2.48,1.15,0.16,-2.04,1.42,-1.43,2.03,-1.12,1.19,-0.08,-2.24,-1.67,-0.14,-0.74,1.26,-1.21,-0.77,-4.16,0,-0.25,-0.48,-2.43,0.15,0.74,0.79,-1.25 +C1740,4.3,-4.04,0.16,0.08,3.45,-0.46,0.53,-0.42,1.75,0.87,2.72,-5.4,-0.58,2.21,1.65,-0.45,1.29,0.59,-0.45,-1.72,0.55,-0.73,3.93,-2.57,1.17,1.99,1.9,0.36,1.13,-2.56,0.35,-0.92,0,4.25,-1.34,0.96,-3.31,-0.76,-2.58,-0.77,-1.44,1.8,0.08,0.18,-0.7,-2.2,0.54,0.1,-0.71,-1.49 +C1741,2.19,-4.12,2.22,3.6,-4.86,9.2,8,-1.27,3.41,2.33,0.24,-0.07,1.52,1.68,1.71,1.04,2.15,1.27,4.24,1.29,0.76,-1.4,0.04,1.28,-1.34,-1.22,-1.3,-1.73,-1.62,2.15,-3.13,-2.47,-4.58,2.77,-2.72,-0.32,-1.41,2.36,-2.4,0.85,-2.62,-0.99,0.84,-2.54,1.31,1.52,2.54,1.26,1.9,-0.35 +C1742,-13.27,0.7,1.39,-0.76,1.41,0.29,-0.05,-0.06,1.61,0.09,-1.26,0.18,1.17,2.12,0.02,0.15,0.2,-1.49,1.8,-0.19,0.38,1.2,0.4,-1.79,-2.16,1.27,1.26,-1.36,0.87,0.96,1.19,0.95,-0.47,-1.33,-0.59,2.28,1.27,-0.47,0.97,0.77,2.81,-1.75,-0.76,0.75,1.36,1.98,0.64,-0.31,2.26,-2.34 +C1743,4.05,-1.63,0.03,-0.28,-3.49,0,-2.14,-0.84,-2.58,-0.69,-1.8,1.55,-0.17,-1.61,1.62,2.49,-1.38,0.74,-1.68,2.46,-3.75,-1.47,0.92,-0.97,-0.63,0.6,-2.73,0,-0.73,1.06,0.19,1.1,2,-0.83,-0.57,-3.09,1.03,2.99,1.34,1.84,1.04,-1.02,-0.21,-0.23,2.26,0.59,-0.71,-2.31,0.08,-0.7 +C1744,3.62,-2.89,1.66,1.33,2.42,0.35,-0.32,-6.48,-0.1,-0.26,0.16,-1.07,0.38,-0.17,-2.12,-1.44,0.09,1.06,-0.71,1.74,-1.89,0.69,-1.93,-0.13,1.61,-0.46,1.1,-1.47,2.48,-0.15,2.45,-1.64,0.26,0.21,0.09,0.98,-0.94,1.47,-0.14,0.03,3.16,1.4,1,-0.84,0.65,1.83,-0.14,-0.12,2.73,-0.03 +C1745,3.68,-12.21,0.96,3.76,8.85,-1.34,-0.16,4.37,-0.86,-1.38,-0.08,0.54,-0.05,-0.72,-1.52,2.37,-4.03,0.66,1.29,2.8,-1.77,-2.18,-0.38,3.53,-1.16,-0.39,-0.36,3.03,1.62,0.69,2.2,0.4,0.84,2.44,0.73,-2.61,2.79,-0.59,-1.28,1.44,0.42,0.45,-5.48,-0.53,-3.27,-0.76,-0.02,0.51,2.97,0.53 +C1746,1.84,-7.52,0.83,1.35,7.29,-0.39,0.64,-1.53,-0.11,-1.25,2.27,1.39,-2.88,-1.66,-3.16,-1.95,-0.08,-2.17,-3.46,-1.79,-2.4,3.35,-1,-3.93,-2.1,-1.07,4.59,-2.76,-0.71,-2.9,-0.55,-3.34,0.64,-0.92,-1.6,1.85,-0.23,-2.61,3.89,-1.74,1.01,2.3,2.27,0.67,1.13,0.17,0.37,0.62,-0.32,0.68 +C1747,4.79,-0.95,-1.76,-1.8,-3.49,-0.28,-1.26,2.07,-2.03,-1.67,1.67,2.23,3.08,-0.61,-0.01,1.1,0.1,1.75,1.82,-3.03,-1.11,0.73,-1.51,0.63,0.15,-2.76,0.26,-0.38,-1.24,-1.47,-2,4.12,0.44,0.14,0.91,0.3,-0.29,-1.41,0.38,1.01,-1.58,1.22,-2.53,1.44,0.36,-0.67,2.15,-3.23,-1.29,0.51 +C1748,5.18,2.51,-1.17,-2.75,0.41,0.09,0.75,2.17,1.11,0.59,1.42,-1.57,-0.91,1.48,-0.42,-1.5,-1.43,0.82,-0.59,-0.67,1.43,0.11,0.15,-0.45,-1.13,-0.25,-0.67,1.03,0.14,0.23,0.9,-0.89,0.01,-0.42,-0.02,2.05,0.93,-0.2,0.9,1.03,-2.7,1.53,0.23,0.45,0.33,-0.16,-0.27,-1.3,0.93,-2.32 +C1749,-11.06,0.6,-2.53,-2.2,2.86,1.91,-1.46,1.47,-3.21,0.19,0.78,-1.84,3.72,0.74,-1.9,-1.07,-0.24,2.39,1.1,-0.93,0.05,3.3,4.29,2.34,0.77,-0.35,-1.94,-0.44,0.88,0.47,-0.43,-2.87,0.99,-1.16,-0.42,-1.15,2.58,2.16,1.08,-0.48,-1.84,-1.31,2.08,2.42,4.94,0.31,1.49,2.87,-2.65,-2 +C1750,1.69,-11.83,2.68,4.35,6.3,-2.43,-0.48,1.69,0.8,1.58,0.26,0.92,1.92,1.86,3.11,2.16,-0.7,1.33,-1.86,1.77,2.13,2.22,-3.44,2.63,0.45,-3.13,1.26,1.16,0.95,0.52,-2.56,1.71,3.67,-4.76,1.19,-1.19,1.83,-1.29,1.15,1.77,-2.05,0.52,3.43,2.71,4.15,-1.81,1.39,2.23,-3.27,3.28 +C1751,-10.64,0.23,-1,0.69,0.54,-4.39,2.1,-0.24,1.21,-1.14,4.84,5.06,-0.68,-2.3,0.09,1.34,-1.51,-0.57,0.33,2.56,-4.4,0.18,1.07,-0.59,-0.56,-0.76,-0.56,1.32,-2.58,0.42,-0.65,1.61,-0.18,2.03,-0.43,0.51,-1.2,-0.92,-0.34,0.96,1.3,-0.64,0.62,-1.31,2.01,-0.67,-2.7,-2.48,-2.02,3.22 +C1752,4.63,1.28,-0.74,-2.93,-2.42,-1.28,-1.71,1.44,1.5,-0.46,-0.77,-0.34,0.08,1.05,0.7,-1.56,-1,-2.87,-0.36,-0.26,-0.06,1.42,0.54,-0.85,0.16,1.06,0.55,-0.47,-2.01,-2.67,-0.61,-1.25,-0.61,0.39,1.02,-1.82,1.13,-1.41,0.24,2.05,1.93,1.63,0.1,-0.19,0.03,1.13,1.48,1.57,1.88,0.2 +C1753,4.18,7.5,4.1,4.25,2.15,-0.38,0.92,-1.24,0.04,-0.18,-0.25,0.44,1.35,1.23,3.31,-3.08,-0.42,-1.21,0.64,0.71,-0.45,-0.7,1.02,1.3,1.02,0.84,-0.99,-3.95,1.76,0.12,0.75,-0.69,-1.74,2.07,-2.42,-1.81,-5.76,-1.03,-0.66,-2.81,-0.46,-1.15,-0.72,0.7,2.71,-1.08,-0.54,3.58,1.87,-0.49 +C1754,4.46,-0.64,-1.55,-2.07,-2.29,0.22,-1.34,1.46,0.87,2.88,0.59,-1.34,3.06,-1.06,-1.2,0.9,1.42,0.05,0.07,0.99,-0.32,-1.64,1.19,0.55,0.13,0.03,-1.41,-0.74,0.11,0.47,-3.05,1.18,0.96,-0.56,0.15,0.74,0.03,0.32,-2.04,0.73,-1.25,0.6,-1.11,-1.38,-0.41,-0.05,-0.89,2.7,1.69,1.63 +C1755,4.07,1.18,-2.44,-1.79,-1.71,-1.34,0.45,0.38,0.19,-0.53,1.15,-0.9,-0.7,-0.51,1.31,2.78,-0.21,-0.82,-1.59,0.39,0.67,-0.19,-1.92,-2.03,-1.29,-0.33,-1.25,3.01,-1.43,1.89,-2.1,-0.31,-2.03,-2.48,1.17,0.49,2.17,-1.03,-1.55,-0.98,-1.16,-1.29,1.22,1.11,-0.36,-3.93,-0.12,1.22,1.74,-0.32 +C1756,-11.6,-3.17,1.26,0.61,-4.4,-10.01,6.52,0.87,-0.44,0.98,-0.39,1.01,0.19,0.3,-2.09,-2.9,0.84,2.3,-2.56,3.01,-1.74,1.4,3.82,-1.05,2.09,-2.06,-0.01,-2.4,-0.62,-4.34,0.32,1.5,-2.22,0.36,3.66,1.83,0.29,2.3,-0.27,0.66,-2.1,-1.57,-5.97,0.61,-3.03,-3.67,1.96,1.62,0.61,0.77 +C1757,4.79,1.84,-1.26,-2.17,-1,0.5,0.14,1.38,0.03,-0.86,0.34,-0.32,-0.73,1.66,-0.44,-2.95,0.6,-3.1,-0.33,-0.07,3,0.58,-0.52,-0.38,0.19,0.4,1.34,-0.77,3.4,2.18,-0.61,-0.19,0.21,3.23,-0.85,2.01,-0.5,0.14,1.61,0.65,-3.48,-0.52,0.2,0.09,0.86,-0.15,-2.03,2.23,-0.61,1.25 +C1758,-1.15,-13.54,8.59,10.16,-18.15,27.8,23.05,-1.46,3.92,-3.2,-2.39,1.99,3.86,-1.63,0.02,-3.09,0.92,-2.42,1.48,-0.9,0.7,1.74,2.65,0.87,-1.07,-1.17,-0.31,-0.69,1.03,3.84,-2.04,2.44,-1,1.26,-0.92,-0.11,-4.25,1.86,0.81,-5.39,-1.17,1.81,1.65,1.8,-1.48,2.12,3.56,-1.89,-0.26,3.31 +C1759,4.2,-3.15,-0.34,-1.83,-0.82,-0.19,-1.07,-3.77,-0.3,-2.34,-1.15,0.09,0.71,-2.91,-1.46,-0.84,1.71,-3.67,-1.26,-1.09,-0.91,2.53,1.47,0.05,1.19,-1.83,-0.18,-0.39,-0.01,1.99,-0.49,-4.34,1.05,-0.13,1.15,-0.52,-0.8,0.95,2.39,-3.06,-3.06,-0.97,-2.06,-1.54,0.19,-1.96,-0.41,-0.59,-0.78,1.68 +C1760,-8.65,0.83,-2.24,-3.08,2.59,2.51,-0.3,1.28,-1.71,1.36,1.11,0.32,-1.85,0.23,-1.61,-1.17,-1.97,0.18,2.16,-1.08,-0.78,-2.38,0.96,-0.38,0.66,1.7,0.39,-0.24,-0.97,-0.06,0.37,-0.83,-0.7,-1.4,1.15,-1.71,-2.7,2.06,-2.17,0.63,2.07,0.38,-1.89,-0.06,0.35,0.3,0.82,0.22,0.04,-0.85 +C1761,4.81,-0.96,-0.79,-1.46,1.2,1.22,1.68,0.2,0.69,-2.22,0.56,2.14,-3.53,3.21,1.3,-2.77,0.92,0.09,-1.61,-0.58,4.71,2.29,-2.14,-3.73,0.2,4.17,2.4,-2.3,-0.9,-2.25,-3.65,0.93,-1.12,-0.72,3.67,-0.6,-1.34,-0.87,-0.96,-1.22,1.25,-0.35,-2.88,-0.63,-2.06,-0.44,-0.97,-2.83,-1.3,-1.47 +C1762,-1.51,-15.49,10.24,11.1,-21.34,27.7,22.57,0.62,3.33,-2.81,-2.64,-0.07,3.86,0.4,0.67,-2.28,-2.03,-0.96,1.56,-0.36,0.45,-0.21,-3.65,1.69,-2.29,3.01,-2.92,-0.23,0.82,-0.96,1.24,0.75,-1.36,1.37,1.9,0.91,-1.71,3.88,-0.4,-0.92,-0.11,-0.02,1.02,-2.74,-1.25,-1.87,1.01,-0.8,-1.38,-2.52 +C1763,3.79,0.7,-0.54,-0.81,-1.04,-0.37,-0.18,2.17,1.17,0.48,-0.14,0.85,-1.92,2.99,0.89,0.29,0.8,-0.75,0.96,-1.32,-1.48,0.74,-0.1,1.55,-0.45,-1.36,0.31,1.77,3.33,-1,1.36,1.32,-0.02,0.53,0.14,-0.66,-1.37,0.33,0.1,-0.51,0.32,0.82,0.97,0.78,-1.04,-2.58,-0.27,0.88,1.77,-0.5 +C1764,4.44,0.48,-0.79,-1.84,-2.17,-0.58,-0.14,-0.32,-0.2,1.78,2.36,-0.19,0.82,-0.14,1.61,1.82,-0.7,-1.16,2.13,1.75,-2.34,0.15,-0.53,-0.23,1.51,-4.25,-0.5,2.12,1.03,0.91,0.29,-0.51,1.59,-0.03,-0.3,-1.33,-0.79,0.5,-0.3,0.58,-2.01,1.28,-0.15,1.12,-1.45,-1.65,-1.15,0.01,0.48,0.57 +C1765,3.41,6.41,1.5,0.26,2.12,0.76,1.52,0.64,2.18,0.2,2.57,1.83,-0.77,-0.08,0.21,2.96,0.94,1.17,1.18,-1.42,1.3,-0.06,-0.5,-1.19,0.73,-1.48,1.72,1.24,1.5,1.43,4.41,0.48,1.37,-2.82,0.63,-1.08,0.21,0.04,-0.53,-0.84,-1.69,-1.6,1.59,0.83,-0.26,1.11,0.23,-1.92,-0.3,-1.64 +C1766,5.47,0.37,-1.07,-2.52,-0.31,-1.2,0.16,2.03,1.17,-0.75,1.51,-1.02,0.27,3.23,-2.87,1.91,0.4,-1.67,0.78,2.95,0.98,1.07,-1.59,0.14,-1.57,-0.34,-0.43,1.02,0.42,0.93,-1.91,-0.39,1.28,0.87,-1.05,2.76,-0.04,-1.13,0.48,-1.28,1.05,-0.53,-0.46,-1.56,0.16,1.6,1.72,-0.62,0.8,-0.41 +C1767,-11.24,1.39,-0.39,-1.62,0.37,2.35,-3.53,-0.83,2.45,0.12,-2.05,-2.65,1.32,-0.37,-0.25,-0.13,-0.36,2.25,1.34,0.39,-0.11,0,-0.44,-2.76,1.72,1.23,1,1.21,2.55,-0.46,0.18,0.01,0.48,0.38,1.01,-4.85,1.8,-0.76,-1.79,-1.5,-1.2,2,-0.93,-1.47,1.83,-2.09,1.54,-0.57,0.1,-3.26 +C1768,5.43,-0.02,-0.65,-2.25,-4.07,-0.83,-2.01,3.28,-1.97,4.15,0,0.54,-0.71,0.79,-1.03,-2.03,-1.24,-2.47,-4.05,-3.54,0.39,-0.91,-1.16,-2.42,3.71,-3.38,0.88,1,-3.71,1.06,-0.56,3.02,-1.69,-0.52,-1.09,1.52,1.24,3.1,-2.5,-0.46,0.84,1.58,-0.33,3.21,1.49,-1.37,0.82,-0.03,2.26,-0.88 +C1769,4.77,2.44,-2.79,-2.91,0.34,-0.11,-0.18,-0.44,0.42,-0.69,-1.2,-0.55,0.49,-1.67,-1.66,0.99,0.51,1.52,0.49,0.78,-1.1,1.04,0.78,-0.15,-0.22,0.64,-0.66,1.21,-0.48,0.92,1.72,0.29,-1.27,-1.44,-1.52,-2.25,0.88,0.23,-0.44,1.04,-2.59,1.66,0.39,-0.86,-2.75,-0.47,-0.75,1.86,1.43,-1.03 +C1770,5,2.06,-0.82,-2.3,-0.44,-0.07,-0.52,2.04,2.44,-2.25,-1.41,-1.22,-0.91,1.52,0.35,2.02,1.64,4.1,-1.01,-0.04,-0.81,1.31,1.04,1.82,-2.04,-0.15,0.52,1.53,3.1,-0.72,3.14,-2.95,-2.02,1.38,1.6,-2.45,1,-3.16,0.62,2.29,0.77,-0.78,0.9,-0.32,-2.56,0.87,1.86,0.66,-1.7,-1.08 +C1771,-8.15,2.96,-2.01,-4.21,3.73,3.97,-0.16,-0.49,-3.37,0.39,-0.36,-0.48,-0.47,-0.37,-0.24,0.42,-0.4,-0.95,-1.28,0.64,0.66,0.27,0.77,0.86,-0.4,0.51,-1.41,-0.95,-1.79,1,-0.7,0.58,-0.98,1.25,0.77,1.06,1.05,-0.15,2.61,0.7,1.36,0.05,-0.19,-0.24,-0.2,-1.24,0.89,-2.16,0.59,-0.81 +C1772,4.01,3.87,-1.63,-2.93,1.94,-0.58,1.81,1.85,-0.35,-0.53,-0.2,-0.27,0.12,-2.32,-1.37,0.22,-0.22,0.96,1.75,-1.22,2.12,0.45,-0.9,0.6,-1.36,-2.18,-2.81,-0.72,0.47,0.83,0.18,-0.67,0.8,0.75,0.28,-0.43,0.5,1.43,0.69,0.92,0.08,2.16,-2.18,0.06,0.5,-0.48,1.74,-0.65,-1.63,-1.19 +C1773,-1.62,2.94,-22.25,24.05,-5.05,10.41,1.82,-2.67,1.85,7.22,3.86,6.56,-10.92,0.05,-6.21,2.14,5.73,0.64,7.41,1.41,-7.82,-1.34,-0.11,-3.22,-0.69,-4.04,-3.82,4.33,-5.68,-3.03,3.03,2.36,1.92,-4.49,-1.25,0.51,4.09,4.31,-2.28,3.39,3.38,-0.09,-3.46,1.84,0.71,-3.89,2.66,2.73,3.46,-0.46 +C1774,5.47,1.15,-0.94,-2.7,-0.94,-1.14,0.04,2.68,1.03,-0.85,-1.41,0.64,-0.22,1.19,0.91,1.46,-0.72,-3.64,-0.68,-0.8,-2.51,-1.61,-3.41,-0.59,1.14,1.2,0.68,2.17,-0.4,-1.29,0.65,-4.77,-0.09,-3.55,1.83,0.56,2.16,-0.03,0.17,-0.08,-0.53,-2.68,1.62,-0.24,-0.89,-2.86,1.27,-1.82,1.23,2.35 +C1775,2.87,-9.41,1.98,3.9,6.09,-0.82,1.44,4.98,2.59,-3.04,-1.06,-2.92,-4.57,1.61,-2.64,-4.65,1.86,-1.21,-3.85,-1.81,1.91,3.56,2.8,-0.29,-0.12,2.81,-2.23,2.06,1.53,4.48,0.9,2.96,-0.34,2.17,0.1,3.14,1.85,0.88,-3.19,1.07,1.48,1.64,-0.51,0.4,-3.67,-0.11,6.16,2.61,1.79,-2.32 +C1776,5.45,0.9,-2.35,-2.54,-1.5,-0.93,-0.9,1.38,-2.62,0.97,-0.13,-1.21,0.54,0.58,0.44,0.19,0.94,-0.29,0.41,-1.26,1.77,-1.95,-0.33,2.17,-0.98,-0.91,-0.08,0.39,-0.87,-0.09,-0.75,-0.76,-1.21,-0.26,-0.49,-0.16,1.14,0.8,0.04,-2.68,1.22,0.09,0.17,0.36,1.62,1.86,-0.94,0.94,-0.48,0.4 +C1777,4.43,7.3,3.71,3.88,2,-0.2,-0.03,0.13,1.72,-1.9,0.18,-1.53,-0.15,-1.81,1.46,-1.28,3.4,-2.31,-0.7,2.6,1.5,-0.12,0.7,-2.1,-0.24,-2.5,-1.13,-0.93,-3.22,2.36,1.06,1.11,0.62,-1.76,-2.28,-0.28,-0.34,3.42,-2.67,2.07,-1.33,0.39,-1.44,-1.04,1.91,-0.79,1.4,0.51,-0.77,2.49 +C1778,4.8,-0.23,-0.68,-1.96,-2.66,-0.62,-1.68,2.91,-0.47,-0.72,-0.92,-1.59,0.86,2.86,-0.18,1.59,-1.45,2.22,-1.11,3.3,2.47,-2.55,-1.07,0.41,-0.1,-1.17,-1.68,4.01,1.2,-0.11,-2.29,1.2,-2.97,1.18,2.86,-1.7,0.74,-1.32,1.68,-0.62,2.4,-0.48,-2.15,1.74,1.26,-2.77,-1.16,4.61,0.5,-0.7 +C1779,2.41,-14.37,4.03,7,-0.88,7.2,3.01,3.49,-2.4,0.22,-3.26,5.74,0.58,-1.81,2.54,1,-1.15,-0.78,-1.44,1.27,0.93,3.98,2.65,2.8,2.48,-5.01,-1.03,-4.34,0.71,2.37,4.56,0.99,-0.06,-2.32,-1.15,-4.19,1.15,-0.62,0.91,-0.52,0.04,-0.82,-0.4,-3.69,-1.79,0.41,3.33,0.25,0.95,-0.91 +C1780,5.16,1.22,-1,-2.47,-2.06,-1.79,-0.56,3.17,2.01,-0.49,-2.17,1.52,-1.53,-1.53,0.43,1.09,-0.3,2.72,-1.26,0.27,1.85,-1.56,0.78,-1.1,1.74,-0.8,-1.86,-0.11,-1.39,-0.3,0.34,0.7,-1.86,-0.1,-0.73,1.19,-2.1,1.63,1.33,-0.07,1.27,0.39,-2.04,1.62,2.07,-0.21,-1.35,3.4,0.71,-0.13 +C1781,3.2,0.75,-1.57,-2.52,-1.34,-0.14,-0.7,1.47,-0.52,-1.11,3.19,-1.15,-0.94,1.12,0.54,1.64,0.36,-0.24,0.26,-0.01,0.83,-1.16,1.31,-1.49,-1.25,-2.25,0.2,-2.11,-1.39,0.26,-1.29,-0.27,1.26,0.32,1.33,-2.46,1.11,0.33,-0.18,-0.47,-1.21,-0.22,1.02,1.83,-1.93,-1.03,-1.01,0.34,-0.16,-2.36 +C1782,3.96,8,1.54,2.73,2.26,-0.17,1.04,0.15,1.28,-0.77,0.29,0.4,1.8,-2.86,1.64,-0.49,0.9,-0.02,1.57,-0.61,0.37,-0.37,-1.1,0.69,-0.17,0.27,-0.64,0.34,1.61,-0.19,2.53,0.45,-0.46,-1.87,-0.02,-3.33,0.2,0.15,-4.02,1.39,-2.3,0.12,-1.58,-0.69,-0.42,0.4,-1.18,0.36,2.65,0.25 +C1783,-4.96,4.2,-4.29,-5.05,5.71,2.1,2.49,0.66,-1.11,1.66,-0.26,0.12,-0.49,-2.8,-0.12,-0.48,-1.24,1.95,-2.4,-0.49,0.9,0.68,1.58,0.23,1.58,0.57,0.94,-1.4,-0.75,-0.84,0.34,0.39,0.77,0.3,-0.95,0.41,2.4,-1.06,-0.31,0.93,1.68,-2.05,-0.56,0.68,0.06,1.46,-2.93,-2.2,0.09,-0.13 +C1784,-10.45,-0.53,4.84,5.73,-4.93,1.33,-7.1,0,7.74,0.58,0.32,-0.47,-2.26,-0.8,0.54,-0.22,0,-0.83,-3.61,-1.29,1.5,1.09,-0.9,2.72,-0.04,-0.06,-0.65,-0.1,0.05,1.24,-0.25,-1.71,-1.78,0.01,-2.57,-0.54,0.94,-0.01,-0.93,0.78,-0.59,0.16,1.25,-0.47,1.12,-1.08,1.58,0.95,0.94,2.52 +C1785,-13.13,-3.84,1.95,0.46,-2.9,-4.4,0.51,-0.85,-1.08,-0.61,0.31,-0.37,0.4,-0.99,0.45,-1.1,-0.63,-0.07,-2.33,1.12,-0.04,-0.51,-2.2,-0.75,3.81,1.29,-1.26,0.41,2,-1.18,1.5,-1.98,3.48,0.42,-1.72,1.1,-0.5,-3.28,1.17,-1.06,-0.44,-0.57,0.94,-1.01,-1.08,-0.09,0.14,1.66,2.34,1.2 +C1786,3.22,0.32,-1.78,-2.63,-0.82,0.22,-0.62,-0.8,1.33,1.58,-0.93,-1.42,1.19,-0.39,0.94,-0.53,1.11,-1.97,-0.11,-2.07,0.69,-0.7,1.45,-1.04,-2.27,-1.31,-1.15,-1.9,-0.52,0.68,-0.28,0.8,0.8,-0.2,-1.01,-0.15,1.09,0.15,-1.64,-2.34,0.54,-1.63,-1.37,-0.44,0.98,1.18,-0.65,-1.62,0.5,-2.03 +C1787,-13.35,-0.98,0.94,-0.31,-1.34,0.66,-1.3,0.62,2.36,-0.76,-1.96,0.1,0.08,0.23,0.35,-1.37,-1.98,0.12,-0.9,-2.58,0.06,-2.08,-0.57,-2.84,-1.18,-0.85,1.18,-1.18,2.01,1.28,2.39,-0.7,-0.12,-2.42,-0.32,-3.29,-0.77,-0.81,0.11,-0.07,0.87,0.89,-1.4,1.17,-1.81,0.96,0.52,-1.55,-0.68,-1.51 +C1788,4.65,0.2,-2.04,-1.62,-1.79,-0.57,-0.78,1.36,0.36,0.79,2.04,-1.22,1.38,1.72,0.49,0.43,-0.96,1.8,2.69,-0.2,-0.34,0.63,-0.52,0.52,0.1,-0.73,-0.03,2.32,0.66,-1.34,1.75,-0.85,-1.06,0.91,0.15,-1.12,0.97,-2.8,-0.39,1.18,0.28,-2.65,-1.55,-0.18,-1.26,-0.38,3.06,2.19,-1.56,2.54 +C1789,5.82,6.54,1.69,0.85,4.44,-1.32,3.04,-0.42,0.82,0.41,-0.51,0.89,1.81,-1.39,2.49,-0.52,0.49,2.11,2.17,-1.37,-0.27,-0.56,2.07,-0.69,-0.88,0.84,-0.67,-0.21,2.1,4.21,-1.05,-1.94,-2.05,1.38,-2.21,-1.77,0.3,0.84,-1.41,-1.76,0.69,0.33,-0.62,2.83,0.71,-0.15,-2.79,-0.87,-1.07,1.75 +C1790,4.44,-0.89,-1.58,-1.92,-1.9,0.07,1.12,-1.41,-0.19,1.09,0.81,0.39,-1.87,-0.56,0.89,0.48,-2.97,-2.5,-1.29,1.04,3.42,-0.35,0.9,-1.65,-2.45,-2.84,-0.69,1,1.16,-0.52,-0.27,3.06,-1.9,1.12,0.8,-0.14,-2.4,-0.31,0.41,0.17,-2.14,1.11,0.99,3.35,1.06,2.66,0.36,-1.89,-0.51,0.1 +C1791,-12.42,-0.97,-1.68,-2.22,0.12,2.01,-1.88,0.07,-4.2,-0.25,-2.21,-0.26,-1.33,-0.68,-0.2,-0.02,0.94,3.52,-0.17,1.97,-0.37,-2.03,-2.43,-1.28,1.07,-2.31,-1.63,0.45,0.56,-1.66,1.26,-1.71,1.47,-2.44,2.69,4.35,-1.92,-2.54,1.22,-0.49,-2.95,0.13,1.95,-2.13,-3.22,-2.06,0.22,1.06,0.31,-1.14 +C1792,4.75,-0.46,-0.8,-1.42,-3.41,-0.53,-1.74,0.45,-1.47,-0.35,1.77,-1.88,-0.92,1.39,0.93,0.89,1.95,-0.27,-0.9,-3.11,-0.52,-1.77,-0.63,1.94,2.46,-1.23,0.13,-0.92,0.23,2.19,-0.86,-4.28,-0.33,0.79,0.24,-0.68,1.17,0.86,1.04,-0.18,1.12,1.02,-0.39,1.08,-4.28,-0.6,2.14,-2.01,-3.31,1.18 +C1793,4.31,0.53,-1.31,-1.96,-1.85,0.42,-0.48,2.1,0.67,0.63,-0.04,-1.55,-0.67,1.49,-0.12,-0.66,-0.66,1.22,0.82,-0.14,-0.86,1.12,1.45,-0.57,0.74,0.89,1.01,-1.36,2.1,-0.57,-0.59,1.21,-0.82,2.79,1.08,-0.55,0.43,-0.3,0.01,-0.97,-1.25,1.04,-1.03,0.94,-0.28,-0.69,-1.25,0.71,-0.43,-0.8 +C1794,3.78,-1.33,-0.88,-1.57,-1.66,0.28,-0.47,0.59,-0.24,-1.36,1.45,1.07,-0.79,-1.08,-1.73,-0.55,-0.39,0.11,-0.4,1.16,-2.67,0.08,-0.48,-0.89,1.31,1.85,0.63,-0.13,1.11,-1,-0.79,4.43,-0.91,2.68,0.34,-1.06,1.93,-1.51,-0.1,3.27,1.36,-0.72,-1.72,-1.83,-0.66,0.61,0.75,0.03,-0.85,-1.13 +C1795,3.65,-0.63,-1.09,-1.07,-5.18,-1.55,-1.14,0.14,-2.55,-2.21,2.41,-2.45,-0.31,-1.33,-0.4,2.77,0.26,1.14,0.07,-1.13,0.18,-2.46,-2.86,0.79,0.28,2.21,-2.05,-2.19,3.8,-1.18,-0.27,-1.53,-1.28,0.56,-0.6,-0.1,3.48,-0.1,-1.55,0.45,-0.3,0.34,0.5,0.79,-0.76,-1.63,-2.73,2.26,0.43,2.66 +C1796,3.67,7.12,4.61,3.91,-0.13,1.73,0.02,-0.33,3.67,0.43,-0.42,0.81,-2.01,0.72,2.8,-2.23,2.1,-0.6,-0.25,0.59,0.84,0.44,1.11,0.81,-0.47,0.76,2.23,3.58,0.47,0.64,0.37,-1,-0.5,0.04,-1.46,0.16,-0.28,-4.06,0.75,-3.09,1.03,0.36,0.48,3.21,-0.91,2.31,1.46,-0.1,-1.54,1.45 +C1797,3.71,-1.22,-1.15,-2.19,-3.55,-1.35,-0.65,1.63,-1.27,1.4,2.75,-1.89,2.61,-2.42,-0.74,1.98,-2.04,-2.33,0.43,-1.32,-0.62,-1.56,3.16,2.87,1.64,0.09,1.05,-2.99,-3.31,-1.56,-3.97,-0.91,1.84,-0.36,0.35,1.59,1.77,0.67,1.31,1.48,0.27,1.83,3.34,-0.97,1.55,0.69,-0.25,-0.3,2.99,2.25 +C1798,6.08,1.78,-1.86,-2.95,2.34,-0.18,0.79,-0.26,1.5,2.36,1.11,-1.1,0.25,-0.61,0.71,-1.11,-1.68,1.7,1.31,-0.55,0.06,-1.49,-0.25,0.24,-1.67,-0.24,-0.41,1.68,-0.06,-0.93,-1.31,-1.89,-0.24,-2.33,0.97,1.14,-1.65,0.22,2.86,-1.43,-1.86,1.2,0.54,0.22,-1.09,-1.11,0.1,0.04,-0.93,-0.75 +C1799,-8.61,1.83,-0.95,-3.31,2.38,1.15,1.43,-0.35,-2.3,1.36,-0.98,-0.07,0.53,-0.46,-1.17,-1.15,-2.13,1.85,0.01,0.56,0.98,-2.43,-0.71,-0.11,2.32,-1.42,-1.79,0.88,0.2,-0.98,-2.85,0.79,0,-0.5,-1.12,-1.58,-0.03,-2.54,-2.23,-0.59,1.02,-2.29,0.58,2.83,-1.14,-0.15,-0.26,-0.8,0.36,1.42 +C1800,4.27,-2.5,-0.24,-0.91,1.51,0.25,0.67,-4.51,0.97,0.24,0.13,-2.97,-2.58,2.09,-2.14,-1.33,1.06,0.6,1.09,-2.26,0.53,3.02,-1.12,-2.29,-1.73,-2.8,0.06,-2.53,-0.38,-1.71,-2.42,-1.14,0.33,1.17,-1.51,-0.23,0.28,-1.26,1.77,0.05,-0.56,0.54,0.32,0.19,-1.02,0.93,0.55,-4.67,0.35,-0.23 +C1801,4.56,-1.03,-0.78,-2.83,-2.69,-0.23,-0.11,1.18,-0.33,-0.59,-0.05,0.88,-1.03,0.3,-0.4,-1.25,-0.95,-1.79,0.4,-1.6,0.61,-2.28,0.57,0.75,0.31,-1.53,-0.68,-0.37,-0.22,-0.97,-1.16,-0.88,1.33,-1.77,0.33,-0.34,1.29,0.67,0.83,0,1.61,1.2,0.73,-3.35,1.3,0,0.65,-0.55,1.67,1.38 +C1802,6.33,-3.58,0.07,-0.3,3.77,-1.17,1.16,-6.09,0.59,-1.74,0.78,-1.58,-0.9,1.85,-1.08,0.38,-0.29,-0.13,1.58,0.77,0.29,2.03,1.41,-0.61,2.01,-1.16,0.58,-1.53,-0.92,-2.63,-2.91,-2.14,1.91,0.09,-1.27,-0.45,-3.12,0.53,0.19,0.63,1.81,2.06,-0.79,1.78,-1.21,-0.27,1.71,-0.13,-0.61,-0.85 +C1803,5,2.32,-1.24,-2.17,-0.18,-1.36,0.39,0.81,1.22,-0.01,-0.9,-0.77,-0.81,2.71,-0.35,-0.6,1.27,-1.29,-0.13,0.77,-0.83,-1.4,-0.12,-1.7,0.53,-0.62,-0.17,0.75,-0.14,1.11,0.71,-0.2,0.4,0.26,0.39,1.37,1.21,-0.03,1.55,0.68,-0.28,-2.46,2.06,-1.97,-2.11,0.28,-0.45,-0.03,-1.41,0.32 +C1804,2.39,-1.81,-0.23,-0.69,-3.04,-0.63,-1.75,-1.71,-2.77,-3.62,1.69,5.17,0.2,0.03,1.2,0.79,0.5,0.6,-0.03,1.67,2.64,-1.81,-1.06,-0.63,1.17,0.26,-1.47,-0.51,0.67,3.12,-0.48,2.03,0.51,1.95,0.65,-0.35,-0.32,-1.24,3.74,1.17,-1.61,0.3,-1.57,-2.27,-3.01,0.76,0.11,3.16,-1.32,0.84 +C1805,-10.44,0.21,5.55,4.87,-2.75,-1.49,0.47,-0.02,-2.36,0.41,-0.01,-1.83,0.8,0.09,1.48,-2.65,-0.21,1.15,0.54,1.03,-2.15,-2.25,1.37,1.5,0.61,-0.05,-1.37,3.15,-0.18,-0.2,-0.51,-1.22,-0.06,2.87,-1.89,-2.36,-0.3,-1.44,0.15,1.02,-0.23,1.12,-1.94,1.84,0.74,-0.33,1.34,-0.03,0.86,1.26 +C1806,-13.44,-0.66,1.45,-0.24,-0.42,-2.07,-0.19,0.09,1.35,0.16,-0.94,0.75,0.37,0.99,-0.26,0.7,1.21,0.56,-0.41,0.9,-1.42,0.21,0.23,-1.17,1.09,-1.61,0.46,-2.34,1.07,0.22,1.11,2.77,0.61,1.47,0.24,0.86,1.91,-0.97,1.56,0.87,-0.16,-1.33,1.98,-0.61,0.88,-0.04,-0.13,0.69,0.52,-1.62 +C1807,5.91,2.18,-1.72,-3.01,1.56,-1.06,1.52,0.91,2.64,-2.05,-2.13,1.38,-0.58,-1.41,-1.3,-0.46,1.12,1.01,-0.28,1.19,-0.07,1.17,0.5,-1.45,0.41,2.85,0.63,-0.9,0.21,-0.41,1.05,0.35,0.81,-2.36,-0.6,-1.12,-2.23,3.15,2.27,-2.42,-0.21,-2.44,0.31,1.9,0.27,-0.76,-1.48,1.68,2.21,1.46 +C1808,2.85,-8.8,1.79,2.8,-0.14,-0.41,-3.48,-3.94,-1.32,-0.37,-0.64,-1.33,1.03,2.23,-6.29,-1.74,-8.62,2.1,3.12,-0.12,1.08,1.34,-1.69,3.64,-0.71,-0.45,-0.8,-3.81,2.52,-1.88,3.73,0.4,1.11,-1.78,-4.25,-3.52,-4.4,0,-1.98,0.72,-7.15,0,1.94,-2.83,3.48,5.61,-3.14,-2.92,-1.44,-0.06 +C1809,4.51,0.39,-0.42,-2.19,-1.44,-0.16,-0.06,0.47,-0.12,0.21,-0.69,1.62,-1.34,-0.1,0.65,-0.54,-0.28,-3.61,0.86,0.44,-0.19,1.79,1.53,1.37,-0.02,0.06,1.63,0.65,0.83,1.36,-0.82,-3.61,-0.87,-1.98,0.07,0.22,-0.02,-0.45,0.32,0.83,2.16,2.08,2.45,-3.69,1.53,1.7,-0.57,1.76,-0.79,-0.11 +C1810,-10.26,1.61,-3.43,-4.91,4.11,3.01,1.41,-1.28,-1.36,0.21,-0.25,-0.82,-0.21,-1.39,0.76,0.28,0.35,-0.26,1.84,0.19,2.42,1.69,0.04,-0.69,3.83,-2.71,-3.43,1.61,-0.61,-0.89,-2.47,-0.21,-2.38,1.94,-1.08,-0.06,-0.15,1.1,2.22,1.2,0.85,-1.25,0.6,-0.77,-1.99,1.31,-1.15,0.25,-1.36,0.14 +C1811,-9.09,1.53,-1.34,-3.24,2.81,3.99,-0.51,0.96,-1.51,1.58,-2.47,-1.8,-0.39,0.44,-2.39,-3.34,-1.45,-1.09,-2.41,-2.1,-1.2,0.89,2.32,1.93,-1.6,2.71,-1.04,-0.64,-0.93,-0.18,0.59,-1.57,-1.26,-2.25,1.46,3.76,0.11,-0.56,-0.03,-4.98,-2.25,-0.75,-1.69,-2.46,-1.23,2.23,1.1,0.06,-0.63,-1.08 +C1812,-8.38,2.27,-3.56,-4.92,3.57,3.15,0.82,0.89,-2.27,0.8,3.13,0.11,-1.04,0.11,-0.46,0.44,1.3,-1.85,-0.58,1.12,0.78,0.97,1.73,1.73,1.95,-2,-2.74,-0.98,1.08,-2.05,-1.67,-1.15,-0.17,-0.03,0.76,1.89,-0.87,-1.45,0.25,1.03,0.53,0.01,-1.48,1.43,-1.47,2.46,-2.14,-1.73,2.92,-0.52 +C1813,3.84,-5.22,1.19,0.56,4.88,0.48,0.27,-2.41,1.73,-1.48,2.24,-5.8,-0.45,1.06,-1.08,-0.96,-2.26,0.52,-2.49,1.6,3.22,0.32,2.6,-1.52,0.66,0.48,0.42,1.74,0.98,0.19,2.08,-1.15,-0.1,1.39,-3.57,-0.47,0.09,2.66,1.85,-2.12,1.62,2.62,1.08,0.67,0.18,-0.87,-0.38,1,2.11,-0.55 +C1814,4.08,0.17,-1.16,-1.76,-0.98,-0.35,-0.29,1.51,0.95,0.33,1.37,-1.06,0.2,2.94,1.42,1.99,-2.16,-1.48,-1.59,2.81,-0.26,0.92,-2.72,0.78,2.71,1.44,0.42,0.03,0.99,0.28,0.13,0.01,-0.42,0.58,-2.01,0.22,0.76,2.66,0.74,-0.63,-1.56,0.38,-2.68,-0.27,1.6,3.4,1.11,0.79,0.99,0.19 +C1815,-10.33,3.45,-1.35,-3.28,4.16,2,0.29,-0.84,-1.82,-0.27,-0.97,-0.2,-1.27,-3.89,-0.63,0.59,2.43,-1.44,1.93,2.64,3.44,-1.37,-0.84,-1.83,-2.1,1.85,-0.9,-0.53,-1.97,-1.02,-0.08,-1.21,0.18,2.29,-1.53,3.52,-0.9,-0.76,1.95,1.87,0.26,0.95,-1.4,-2.24,2.44,-2.66,-3.19,1.53,-0.17,-0.78 +C1816,4.18,0.2,-1.16,-2.68,-2.13,-0.91,-0.09,0.49,1.13,1.78,-2.28,1.05,0.59,-0.68,-1.24,-1.4,-0.15,-0.78,0.45,0.01,-0.22,0.86,-0.91,0.06,1.02,3.32,-0.11,1.98,-1.75,-0.28,2.33,2.71,1.53,-1.62,0.64,-5.14,2.13,-0.26,0.04,0.46,-1.63,0.54,-0.46,-2.15,0.18,1.1,-0.01,-0.76,0.76,-0.2 +C1817,-5.85,4.18,-2.36,-5.17,4.98,0.53,3.5,0.74,0.52,-1.83,2.81,2.28,-0.93,0.57,1.81,0.24,-0.66,1.53,0.13,-1.49,-1.03,0.47,-1.51,-0.1,3.85,2.13,-0.95,-0.57,-1.29,-0.81,0.39,-0.24,-0.58,-1.1,-0.87,0.58,-1.6,-0.29,-1.47,3.23,-2.9,0.89,1.63,0.85,-0.33,0.83,0.75,-0.25,-0.36,0.78 +C1818,-1.62,6.12,-40.3,26.38,0.96,1.41,-0.04,-2.14,1.92,2.85,3.9,2.25,0.02,4.27,-0.63,-0.94,1.87,-0.33,0.02,0.26,-2.22,-1.12,-0.83,-2.15,-2.11,-3.17,-1.78,-0.08,-2.14,0.43,-1.28,-2.17,-0.64,-2.67,-0.6,1.3,1.75,0.41,-2.22,1.01,-1.17,-3.72,2.59,-0.27,1.36,-0.51,-1.27,-1.19,-2.74,-1.34 +C1819,2.59,-0.34,-0.71,-2.09,-0.79,-1.55,0.56,-1.31,-1.82,-1.38,4.54,-0.66,0.6,-2.02,1.23,-1.28,1.53,-1.29,-1.01,-0.32,-1.3,2.3,-1.16,0.94,-0.54,-0.48,-1.74,3.77,-1.64,1.72,-0.35,-1.35,-1.59,0.39,-0.64,3,3.61,2.41,-1.8,0.08,-0.49,-2.97,0.94,-0.8,1.11,0.02,2.57,1.1,-1.2,0.02 +C1820,-14.15,-0.61,0.6,-0.42,0.35,3.98,-4,0.49,-2.15,0.87,-2.3,-4.32,2.62,1.96,0.28,-0.25,0.22,4.85,0.76,1.93,1.89,1.87,-1.36,-0.19,-3.79,-0.61,-1.28,-2.85,-0.07,1.33,1.73,1.18,1.8,1.41,1.14,-3.83,-0.92,0.96,0.97,-0.58,1.47,-2.65,-1.07,0.7,-1.32,-1.72,2.23,2.52,0.21,-0.12 +C1821,3.35,0.28,-0.95,-1.46,-0.14,-0.22,0.87,-1.53,-0.01,0.63,1.31,-0.22,-0.53,1.96,3.42,1.16,-1.32,-0.2,0.51,1.25,0.15,0.81,-1.46,-2.23,-1.46,1.5,0.47,-0.3,-0.99,2.36,0.9,0.56,1.26,2.83,2.34,-0.42,1.42,0.39,-0.09,-0.37,0.74,-1.48,2.83,0.45,0.33,-0.82,-0.23,-1.68,-1.27,-0.68 +C1822,-14.17,2.6,1.05,-1.3,0.25,2.32,-1.63,-0.17,0.45,-1.19,0.04,-0.86,-1.32,1.97,-0.6,0.36,0.41,0.63,2.23,-0.43,0.45,-0.73,0.5,1.11,-0.02,-0.07,-0.99,0.2,-0.99,3,0.89,0.36,-1.54,-0.77,-0.1,1.39,-1.82,-0.42,0.96,-1.51,-0.67,2.66,-1.88,-1.45,0.32,0.04,0.92,-3.63,0.86,-0.97 +C1823,3.18,8.8,4.8,3.67,2.39,0.77,-0.09,0.68,-1.02,0.06,-2.74,-1.42,1.23,-0.03,1.72,-0.71,-1.36,1.27,0.76,-3.97,-1.59,-2.48,-3.7,0.71,-0.24,-0.65,-0.79,-1.67,0.05,2.83,-0.7,-0.11,0.88,0.29,1.3,-0.48,-1.91,-0.22,-2.48,2.89,-1.7,2.57,-1.1,-0.26,-1.11,-2.59,0.76,-0.23,1.21,-1.43 +C1824,-10.19,3.38,-1.62,-3.22,2.47,2.85,0.78,-0.53,0.88,-1.49,-0.75,2.19,-1.82,-1.15,-0.08,1.18,-0.46,-3.16,2.39,0.08,-0.52,-3.05,-0.93,-2.34,0.16,-1.33,2.49,3.66,0.22,-0.71,-0.25,-0.49,-1.03,2.34,-0.62,-0.67,-0.72,0.27,2.51,1.96,1.78,1.76,1.91,-2.91,3.11,-1.32,-2.49,-0.72,2.76,-0.11 +C1825,4.14,-1.52,-0.69,-1.67,-3.61,0.56,-2.27,-2.58,-1.58,2.01,2.24,0.14,3.02,-0.56,0.65,2.49,-1.73,0.24,-2.76,1.83,-0.35,-0.58,-0.1,0.54,2.01,1.74,1.59,1.66,0.62,-0.85,-1.71,0.67,-1.36,-2.27,2.02,1.61,-0.45,1.61,-0.94,1.57,1.34,0.94,5.38,0.9,-2.41,0.06,2.27,0.03,1.26,-0.67 +C1826,4.55,-0.32,-1.56,-2.5,-1.94,-0.19,-0.54,-0.87,0.15,0.32,1.37,-0.86,2.07,0.75,-0.08,-0.16,0.54,-0.27,0.34,1.07,-1.74,-0.21,0.57,0.96,2.1,-0.6,-1.27,-0.03,-1.75,-1.05,-1.41,2.02,-0.25,1.69,-1.63,0.45,-0.54,0.45,2.38,-1.01,0.21,1.53,0.7,0.65,1.83,1.2,1.1,-1.09,-1.35,-0.52 +C1827,2.61,-1.99,0.78,-0.42,-0.3,-0.64,-0.63,-1.65,1.54,-0.68,-0.52,2.2,0.35,2.59,-1.67,-2.39,1.73,-0.48,0.37,-2.57,3.02,-2.59,4.22,-1.76,0.28,1.84,-0.34,-2.12,-2.09,-0.57,0.78,0.81,4.35,0.55,0.79,-2.53,0.85,-3.22,0.18,-0.66,0.9,-0.34,1.13,1.58,0.95,0.29,0.36,-1.29,-1.45,1.39 +C1828,3.64,-12.66,3.07,4.24,9.26,-0.7,-1.1,5.23,0.34,1.58,1.39,-0.72,2.03,3.02,6.78,-0.47,1.47,-1.6,2.61,1.71,0.48,2.5,1.42,0.61,-0.04,1.26,-2.64,-1.46,3.61,2.51,-0.42,3.42,2.12,-3.03,-1.97,-0.38,2.11,-1.47,3.06,-4.81,1.67,-0.86,-2.61,0.73,2.32,-1.11,-3.03,0.35,-3.1,2.67 +C1829,4.35,1,-0.67,-2.15,-1.32,-0.35,1.1,-2.09,-0.55,-0.89,1.93,-1.56,2,-0.54,-0.15,-0.37,0.12,1.03,1.89,1.81,2.9,0.36,1.34,-0.19,-2.04,0.7,0.8,-0.41,-0.92,-1.22,1.34,-0.71,-0.4,-1.23,-1.21,-0.68,-2.11,-0.15,-0.48,0.21,-0.73,-1.24,-1.27,0.21,-1.15,2.19,-1.74,0.15,1.59,-0.5 +C1830,3.32,-3.63,-0.5,0.27,-7.58,-1.39,-2.66,1.12,-3.58,-2.07,0.6,-1.53,0.1,-0.97,-3.69,1.32,5.66,1.63,3.01,2.27,-2.35,1,1.79,2.86,4.61,1.98,-1.12,-0.25,-0.26,-3.19,2.23,-0.22,2.43,-1.09,-0.82,-0.38,5.21,-1.6,-2.2,-0.68,6.67,3.64,-0.15,2.29,1.77,0.38,-0.86,2.67,-0.01,5.01 +C1831,3.38,6.15,4.58,4.02,1.41,-1.5,1.42,-0.59,0.68,-0.06,-0.38,-2.56,-3.48,2.52,3.52,-0.98,0.27,1.97,-2.58,-0.87,2.13,2.12,-0.24,2.2,1.69,-1.44,0.32,0.3,-0.28,3.73,0.76,1.36,-1.78,0.47,0.92,3.39,2.49,-0.07,0.61,-0.97,3.06,1.21,0.49,0.13,-3.74,2.58,-0.79,0.53,1.24,1.12 +C1832,-12.84,1.05,-0.87,-2.24,0.4,2.01,-2.49,0.01,-3.13,-0.66,-2.81,-3.01,-1.33,0.1,-1.52,1.64,-0.77,-1.35,-0.94,1.15,-1.56,0.01,-1.41,0.86,-1.36,-0.11,1.04,1.38,-0.06,-2.89,-0.35,-0.02,-1.12,-0.49,-1.42,0.6,-1.04,-0.38,0.08,-0.94,0.24,-1.3,-2.1,-3.82,1.53,-0.14,2.68,0.24,-2.42,4.6 +C1833,4.28,0.82,-1.52,-2.1,-4.06,0.72,-0.04,1.41,0.93,0.64,1,-0.77,1.28,1.84,0.02,-1.44,0.18,-0.54,0.46,1.91,-0.75,-0.23,1.66,1.84,1.85,-0.27,2.75,-0.31,2.51,0.04,-0.5,1.94,0.92,-0.75,-0.28,-3.44,1.62,-1.78,-3.98,0.87,-2.75,-1.38,1.19,2.78,2.42,1.73,2.62,0.78,-1.43,0.77 +C1834,4.91,0.8,-1.52,-1.8,-1.64,-0.16,1.74,3.62,1.42,-2.1,-0.17,-1.3,0.17,2.38,1.17,-0.24,-0.12,-2.93,-1.28,-0.62,0.39,0.17,2.44,0.41,0.4,0.16,2.27,-0.96,1.27,0.91,-0.51,0.4,-0.49,-0.3,1.33,2.12,-1.11,0.49,1.71,-1.68,-0.45,1.36,-0.19,2.61,0.39,2.02,1.11,-0.17,-2.09,-0.04 +C1835,4.55,-2.33,-0.68,-0.85,1.78,-1.01,0.49,-3.5,-0.86,0.15,-2.19,1.11,0,-0.76,-2.19,-1.83,0.01,0.52,-1.68,-0.82,-1.43,0.92,-1.17,-0.34,-1.25,0.98,-1.51,-0.06,-1.07,-0.58,-1.02,1.27,-0.83,0.63,-0.04,-2.34,0.95,-1.4,-0.62,0.29,-0.56,0.25,0.15,1,0.33,-2.01,0.86,-0.08,1.47,-1.33 +C1836,3.57,6.32,5.5,6.54,-0.11,-1.68,-0.15,-1.22,1.3,0.2,-1.46,-3.22,-1.74,-0.18,1.61,-4.84,0.11,0.26,-0.86,-1.5,1.42,-2.32,1.34,1.65,3.12,0.04,-2.5,-1.7,-0.25,2.69,-5.02,2.4,2.64,1.88,2.91,2.39,-0.08,0.73,-3.34,1.6,2.33,1.53,0.26,-0.23,-1.37,-3.07,0.02,3.77,1.19,-4.64 +C1837,4.22,-0.95,-1.67,-2.25,-2.37,-0.89,-0.53,-0.9,-1.33,2.66,1.85,0.2,1.65,1.5,1.64,-0.36,-2.3,0.03,-0.72,-0.46,1.65,-1.99,0.36,1.02,-0.57,0.5,-0.38,2.66,1.56,-1.23,3.63,-2.31,-1.52,-2.89,-0.59,2.53,-1.44,-0.85,-0.89,1.14,0.08,-0.95,0.35,-0.18,0.49,-0.17,-1.32,1.45,0.36,0.43 +C1838,-15.86,-0.48,-1.58,1.14,-0.69,0.13,-2.81,-0.35,-3.17,-6.59,1.01,2.06,0.98,-1.1,0.1,-2.89,-0.67,1.56,-0.21,-0.51,-2.63,0.58,-0.62,0.42,1.66,-1.52,-2.61,-0.73,-0.42,-4.02,-1.05,-3.22,0.5,-0.76,2.9,3.8,-0.89,0.05,0.51,-3.02,-1.53,0.84,0.05,-0.5,1.65,0.26,-2.55,-1.2,-1.04,1.34 +C1839,-9.71,1.05,-0.57,-2.72,2.05,3.42,-0.95,1.6,-1.73,0.1,2.63,1.81,0.08,1.51,2.03,1.06,-2.26,1.29,1.85,1.99,-3.16,-1.8,2.83,-0.17,1.24,-0.69,1.31,-1.52,-1.41,1.59,2.26,-0.96,-0.68,-0.25,-0.32,-0.16,0.05,0.33,2.99,1.17,-2.5,2.69,1.25,-0.27,-1.42,-0.44,-2.18,-1.24,2.61,2.58 +C1840,-12.88,-0.57,4.52,1.44,-3.8,3.75,-8.88,0.31,12.35,-0.35,-1.53,0.54,1.23,-2.69,-1.33,2.5,1.34,0.2,-2.62,-0.85,2.34,-0.99,1.29,1.88,0.64,-0.03,-4.52,-0.28,2.39,-0.76,-1.15,1.21,1.78,0.44,-1.24,-2.67,-0.69,0.42,0.4,0.16,-1.52,1.38,-3.49,-0.49,1,-1.25,3.63,1.27,-0.32,1.07 +C1841,3.52,-1.75,-1.41,-2.33,-3.43,-0.46,-2.12,-1.53,-1.58,0.73,0.17,1.96,1,-4.06,0.66,-0.67,1.99,1.66,0.81,1.78,0.02,-1.18,-0.09,1.39,-0.89,-0.01,0.58,-0.02,2.91,2.05,3.96,-0.28,-0.53,1.91,1.87,0.49,-0.98,-1.89,-2.13,-0.27,0.48,1.21,1.29,1.05,-0.66,0.81,1.22,-0.43,-0.33,2.66 +C1842,-12.78,0.43,-0.83,-1.14,1.55,0.25,0.6,0.32,-3.77,-0.99,-0.39,-3.27,-0.99,1.83,3.03,0.34,-0.19,1.3,-1.69,-2.27,1.34,-1.86,2.99,4.11,-0.45,0.39,-0.2,4.56,-1.76,0.54,-0.63,3.15,1.86,-0.18,-0.19,-0.2,-1.94,-0.2,-0.61,-0.57,1.25,0.72,-1.92,-0.12,-0.92,-0.44,-1.23,-1.25,-2.39,2.1 +C1843,3.2,-4.64,0.64,2.14,2.33,-1.31,-0.32,-4.3,2.39,-0.92,-2.8,-3.54,-0.79,3.24,-1.59,-1.93,2.22,-0.81,2.57,-1.96,-1.81,-0.96,-1.83,-2.47,-1.32,1.35,-3.02,-5.72,0.07,-0.81,-1.82,0.65,-2.28,0.31,-3.7,0.59,-2.45,2.04,5.94,-0.42,0.89,-2.63,0.25,-2.12,2.1,-0.16,0.19,-2.64,2.52,0.11 +C1844,-7.43,2.03,-3.78,-4.76,4.93,3.23,1.35,0.74,-4.68,0.74,1.32,-0.59,0.3,2.44,0.52,-0.37,0,-0.92,-1.49,-0.12,0.64,2.82,-0.68,0.77,0.49,-1.26,-0.29,-1,-0.64,0.34,-1.27,-0.89,-0.92,0.33,1.05,1.59,0.73,0.16,-0.1,-0.79,-1.57,-0.55,0.03,3.35,0.2,2.08,-1.57,-0.25,0.52,2.08 +C1845,4.93,-4.8,-0.21,0.43,-0.18,1.94,-2.26,-5.63,-0.78,0.58,-2.57,1.6,-3.38,-0.74,-3.96,1.2,-2.28,-0.62,-0.58,2.37,-3.28,0.57,-0.28,-1.94,-3.44,-3.19,2.9,0.07,3.28,-0.9,1.03,-0.99,1.17,1.67,0.66,1.63,2.71,-0.18,-0.68,0.46,0.87,-0.81,-1.13,0.13,-1.33,-2.03,0.86,-1.62,-1.74,1.14 +C1846,4.25,1.27,-1.38,-2.56,-0.04,-0.55,0.73,1.99,1.93,0.72,-0.47,0.11,-0.55,-1.28,-0.66,-1.82,1.66,-0.76,1.08,-0.17,0.77,1.14,-0.62,0.4,0.38,0.2,1.49,1.02,1.61,1.26,0.98,-0.64,0.35,-2.34,1.19,1.24,0.32,-0.05,-1.87,1.08,0.6,1.94,0.73,-0.42,0.85,0.82,1.32,-1.11,0.05,1.38 +C1847,2.23,-11.78,2.67,3.31,7.07,-1.48,0.28,2.25,0.23,-0.3,1.89,-0.89,-4.6,-0.63,5.27,0.38,1.33,-2.37,-0.48,-0.83,-1.39,2.44,1.05,-3.27,-4.16,2.44,-1.92,-2.88,0.4,0.73,1,1.48,1.17,-1.51,-1.52,-0.84,2.49,3,2.66,0.25,-1.99,2.22,0.21,-0.49,3.04,2.14,-1.17,1.34,3.34,0.49 +C1848,1.84,2.69,2.25,1.55,-1.55,0.9,-1.18,-1.4,-2.29,0.65,0.36,-1.37,2.85,-1.69,1.47,-0.9,-0.69,-1.03,1.33,0.88,3.46,-0.81,1.88,-1.51,-0.59,-0.27,0.01,1.28,1.29,1.45,-0.11,-2.68,-1.21,-0.95,0.42,-0.92,-0.1,3.34,1.22,-0.21,1.63,-0.95,1.57,2.23,0.2,-0.43,-1.11,-1.45,-4.65,-0.15 +C1849,3.85,5.65,0.4,0.49,2.02,0.4,2.47,-0.01,2.15,-0.37,0.5,2.43,-0.31,-1.79,1.89,1.73,1.94,0.49,-1.74,0.22,-0.92,-0.52,1.64,-0.91,-1.14,-0.13,-0.32,-0.21,0.87,0.01,0.86,1.48,0.94,0.82,-0.77,-0.14,0.26,0.02,-1.77,0.74,-0.32,-1.35,-0.41,0.8,-0.2,0.54,2.17,-0.59,-0.1,1.44 +C1850,1.88,4.25,6.53,6.27,-2.87,0,-2.34,-0.96,-2.31,2.48,2.11,3.14,-5.4,2.83,-1.02,1.47,1.04,-1.56,-2.34,-1.68,3,3.01,-0.8,-1.47,-2.93,3.11,0.95,1.06,-0.32,-2.31,3.1,0.88,2.33,-3.64,-2.53,-2.99,3.5,-3.9,2.1,-2.68,-2.09,0.41,-4.62,2.37,1.64,-1.7,1.83,-1.62,-1.83,-0.52 +C1851,-15.34,0.22,3.29,0.9,-0.84,0.89,-1.24,-1.24,2.43,-2.47,1.18,2.42,-0.24,-0.32,-0.73,-2.55,-0.35,-0.83,4.64,1.21,-1.26,-0.49,-1.64,0.11,-0.36,0.62,0.74,-1.23,-1.75,-1.62,-1.03,0.18,-1.5,0.04,-0.48,0.77,-2.57,0.56,1.98,0.22,0.31,1.45,0.26,-0.2,0.98,1,-1.49,0.41,-0.98,-0.44 +C1852,3.74,-1.99,-0.69,-1.95,-3.97,-0.44,-1.32,-1.5,-0.57,1.18,1.47,0.42,-0.45,-1.25,0.32,0.65,0.4,-0.02,-0.12,0.24,-0.21,-0.03,0.7,0.66,-1.59,0.93,3.15,1.14,-2.2,0.81,-0.62,-1.38,-0.25,-0.18,0.47,0.24,1.93,-1.73,-1.23,0.26,-1.16,-0.25,0.73,0.66,1.31,-0.02,0.5,0.56,1.67,0.28 +C1853,5.22,2.76,-1.49,-3.26,1.92,-0.32,2.63,2.32,1.56,-0.97,-0.01,-0.36,-1.02,-0.63,1.15,-0.63,-2.72,0.46,-0.22,2.38,-1.09,-0.98,2.56,-0.63,1.42,0.91,2.44,-0.19,0.1,-0.38,2.82,-1.83,-1.14,-1.04,-1.52,-1.41,-0.63,0.64,-0.44,1.93,-0.05,-0.41,-0.98,2.84,-2.1,0.1,-0.69,1.09,-2.43,2.52 +C1854,-12.06,2.89,0.78,-1.23,1.74,0.5,-0.29,0.34,-1.65,-5.51,0.47,0.35,-1.91,0.89,-1.74,-1.92,-0.68,-2.21,-1.87,2.01,0.35,-0.95,0.57,-4.6,-1.37,-1.75,-1.89,-3.02,1.8,-0.09,3.16,1.05,-0.49,-1.65,1.06,2.27,-3.27,-0.33,-2.72,-1.06,1.09,-4.18,3,0.57,-0.14,2.87,1.47,0.65,1.05,-0.69 +C1855,-12.26,2.5,-0.81,-3.59,4.01,3.24,-0.89,1.05,2.65,-1.22,-0.89,0.23,2.53,0.38,-0.85,-0.59,-0.02,-0.03,2.3,-1.08,-2.12,-2.88,0.29,1.66,0.54,-0.39,-1.26,-0.23,0.38,3.21,-0.42,-0.49,-0.32,-0.14,-0.25,-1.18,-0.07,0.06,1.66,1.76,-1.96,0.45,-0.32,2.69,-0.25,0.94,-1.67,-0.29,-2.62,-1.88 +C1856,4.34,-10.4,1.57,3.3,5.61,-0.13,-0.22,4.67,-2.5,-0.91,3.14,-2.82,-4.14,-0.75,0.55,0.63,-3.01,-3.01,-0.98,-5.95,-2.03,0.03,-3.89,-0.73,-0.9,2.44,-2.56,-3.75,-0.33,-1.25,-1.09,-1.13,-0.41,4.33,-0.99,-0.51,-2.41,-2.36,-1.08,0.31,0.65,-0.28,0.25,-0.67,3.46,-1.91,2.36,-0.96,1.65,-0.3 +C1857,4.5,1.68,-0.69,-2.11,-2.03,-0.46,-0.84,1.75,0.95,0.07,0.44,0.46,1.41,1.19,1.92,-1.79,0.62,0.45,2.3,-1.33,-0.53,0.91,1.2,-0.3,-0.36,-0.8,0.61,0.23,-1.35,2.01,1.55,-0.79,1.69,0.43,-1.36,1.31,-1.43,0.31,0.42,1.38,-1.55,-2.05,0.76,-1.33,-1.23,-1.28,1.18,-1.61,-2.28,-0.6 +C1858,4.23,0.03,-0.35,-2.57,-2.02,-0.88,-1.13,-1.47,0.03,-0.18,2.66,2.15,1.9,-2.47,0.08,0.03,0.93,-1.45,-1.56,-0.88,1.4,-2.1,0.02,-0.92,0.48,-0.83,-0.14,-1.73,0.89,-2.46,-0.12,3.11,1.07,-2.11,-0.24,-0.13,-2.15,1.93,0.55,-1.49,2.93,0.93,0.47,-1.48,1.62,0.17,-0.99,-0.93,-2.78,0.59 +C1859,5,0.27,-0.54,-1.48,-1.63,-0.76,-0.39,-1.99,-0.88,-1.09,-1.16,0.3,0.73,-2.47,-1.76,0.19,-0.41,0.82,-1.85,1.97,1.9,1.15,-2.45,-0.07,-2.23,-0.95,1.63,-0.18,-1.19,1.93,-0.09,-0.89,-0.59,-2.17,-1.17,-2.42,-1.08,2.62,-1.84,2.25,0.84,-1.47,0.69,-3.21,0.65,2.15,1.87,-0.07,-0.48,1.2 +C1860,4.84,-1.07,-0.78,-1.03,-1.82,-1.17,-2.51,-1.35,-0.47,0.06,0.18,0,-1.35,0.41,-0.02,4.09,0.34,1.97,0.72,2.25,1.32,0.09,-1.96,1.66,0.8,0.24,3.1,-2.11,0.9,1.63,-0.16,1.75,-0.98,2.75,-1.55,0.39,-1.75,1.62,0.12,1.73,2.82,-1.37,0.68,1.41,-2.26,-1.28,1.4,0.33,-0.03,-0.13 +C1861,3.68,-0.47,-1.41,-1.65,-3.23,0.52,-0.27,-0.51,0.55,0.96,-0.45,-1.83,-1.36,-1.75,-0.03,0.68,-0.17,-1.88,-0.97,0.71,-1.11,-4.47,-1.67,-2.64,-0.1,-0.8,1.65,0.14,0.12,0.57,0.06,-1.88,1.05,2.2,1.72,-1.31,0.64,-0.85,1.67,-1.18,0.22,1.16,-0.94,-1.7,-0.33,2.75,-0.89,-2.61,-1.57,-1.49 +C1862,3.09,-1.47,-1.08,-2.26,-5.47,1.14,-0.88,3.64,-0.33,1.47,2.08,0.11,-1.19,-0.33,1.36,1.38,-3.33,-3.04,-0.91,-1.71,0.5,-1.6,-1.43,-0.01,-1.32,-2.66,1.91,1.07,0.45,1.8,-0.64,0.71,-0.01,0.03,-0.38,2.64,-2.56,0.04,-3.65,2.18,1.03,0.67,-0.9,-0.33,2.45,1.07,-0.2,-1.17,1.05,1.45 +C1863,4.46,-3.94,1.55,0.95,1.43,1.16,0.61,-1.5,3.05,-2.6,0.54,-3.97,-2.46,1.04,2.97,-0.97,2.72,2.83,-0.19,2.45,-1.08,-2.03,-3.62,0.29,-3.34,-2.23,0.99,2.23,1.2,-0.77,-1.2,-1.72,-1.04,1.88,-2.08,-0.97,-4.02,-1.01,-1.64,3.23,1.33,-0.51,-1.12,-3.2,2.79,-1.79,-1.8,0.92,0.6,-1.53 +C1864,2.43,8.65,5.89,5.45,2.61,-0.56,0.54,0.94,-0.97,-0.28,0.42,1.43,-2.55,1.32,0.44,-0.11,0.06,-1.24,0.13,1.79,-3.38,-2.08,0.88,0.12,-0.34,-2.71,-0.82,-1.95,-2.22,-0.78,0.01,0.59,0.66,0.05,-1.3,-0.01,0.05,-1.33,-1.96,-0.4,-1.22,-2.12,0.15,0.67,0.7,0.13,-1.04,2.09,-4.23,0.26 +C1865,4.77,1.84,-1.38,-2.32,-0.58,-0.64,0.53,0.8,2.39,0.4,-1.26,0.34,-1.98,-0.94,1.69,0.12,-0.51,-0.39,0.42,3.87,0.64,-0.59,-5.28,-1.74,-0.21,1.17,-1.71,1.54,0.5,2.21,0.72,3.42,2.05,-0.52,-0.02,0.53,0.8,-0.03,1.24,0.74,-0.53,1.47,0.31,-0.51,3.88,0.4,-0.89,2.54,1.85,1.01 +C1866,-2.87,4.64,-2.68,-5.24,5.71,1.06,3.62,1.68,0.12,1.14,-0.33,0.19,-0.7,-0.77,-0.23,1.83,-0.63,1.03,-1.41,-0.35,-1.56,0.17,0.45,-0.14,-0.65,-0.64,-1.04,0.8,0.45,-0.62,-1.39,1.99,-0.84,1.05,-2.23,0.55,0.25,-1.2,-1.98,-0.98,-0.31,0.22,0.45,-0.34,-2.25,-0.15,0.39,-0.44,-0.95,0.09 +C1867,3.81,-2.46,-0.55,-1.31,1.52,2.3,1.22,-3.92,0.35,-0.23,-2.58,2.38,0.36,0.87,-0.67,-0.75,-1.95,1.1,-0.75,-0.63,-0.51,1.35,3.23,2.3,0.44,-0.62,1.31,-2.1,-0.75,-2.13,-0.66,3.24,-0.74,0.11,0.09,3.02,-1.29,-0.98,-2.56,-2.37,-2.88,0.23,-2.08,-0.65,-3.72,1.63,-0.78,1.22,1.13,-0.22 +C1868,4.47,0.31,-0.74,-0.61,-2.91,0.27,0.38,-1.69,0.34,0.8,1.92,0.1,0.03,-1.78,-1.34,0.79,-1.73,2.06,4.55,-2.86,-1.01,0.47,1.61,1.16,2.61,0.81,1.03,-0.48,-0.03,1.71,1.41,-1.21,-0.86,-2.97,-1.05,0.58,-3.13,-0.67,-0.97,0.35,-0.38,-1.31,0.83,1.24,0.27,1.37,-0.48,3.54,-0.46,-0.22 +C1869,-13.65,-0.11,1.56,1.8,-2.41,-0.92,-0.5,-0.52,3.04,-1.01,1.51,-0.07,-0.12,1.49,3.01,-0.16,-0.51,-1.94,0.83,-1.98,-2.19,-3.2,-3.17,-1.73,-2.28,0.13,3.02,0.54,0.66,3.24,1.3,0.6,2.23,-2.72,-0.06,-1.51,1.61,0.48,1.03,-1.85,1.9,-0.59,-0.48,0.86,-3.03,-0.9,1.18,2.67,-1.14,3.07 +C1870,1.58,-15.65,4.87,5.53,4.71,2.99,-1.72,3.36,-1.08,3.37,0.85,1.68,1.35,2.43,4.13,1.68,-1.04,1.87,-1.58,-0.77,-2.22,-0.5,1.28,-3.66,1.56,0.37,1.18,4.51,-0.91,-4.82,4.38,3.53,-2.85,-4.58,0.65,2.35,0.7,2.44,-3.9,1.6,-0.41,1.28,4.25,-1.89,-4.05,0.95,1.87,-0.76,-0.97,2.78 +C1871,5.61,-0.29,-0.77,-1.7,-2.72,0,-1.33,0.63,-2.19,2.75,-1.62,1.07,-0.13,0.4,-0.46,-0.71,-1.75,0.58,-1.42,-2.56,-2.89,1.1,1.56,2.02,3.31,-3.1,0.52,-0.38,-0.34,1.12,2.81,1.31,2.47,1.06,-1.04,3.53,-1.68,0.5,-0.88,0.14,-1.24,1.24,-0.55,0.08,0.79,2.74,0.26,-1.41,-2.1,-3.7 +C1872,-12.77,-0.27,0.67,0.77,1.24,1.94,-3.34,-0.52,3.62,0.99,-1.47,0.66,0.16,1.21,-0.16,1,0.05,0.59,0.35,-0.77,-0.67,1.49,-0.68,-0.83,-1.52,-0.19,-2.09,-0.43,0.95,0.87,0.04,0.91,-1.4,1.72,2,-1.19,-0.71,0.07,3.16,0.69,0.19,-1.59,-1.82,-0.75,-0.83,1.27,-0.08,-1.04,2,0.52 +C1873,3.61,0.98,-1.06,-1.92,-2.21,-0.95,-1.27,0.49,0.69,-1.29,0.82,3.12,-1.38,-1.41,-0.57,-0.85,1.34,-1.34,-2.41,1.72,-1.45,-1.42,0.58,-2.85,-0.04,0.04,-0.66,-1.36,-1.26,-0.76,1.28,-1.25,-1.37,0.47,-1.31,-2.78,-3.14,1.7,1.19,-0.58,-2.26,1.27,-0.58,1.33,0.36,0.34,1.86,1.26,-0.77,-1.33 +C1874,3.36,8.78,3.43,3.25,3.78,-0.25,0.42,-0.33,-0.45,0.57,0.88,0.03,-1.37,0.83,0.96,1.36,-2.24,1.29,-0.46,0.53,2.4,-0.28,1.02,1.81,-2.1,-0.07,0.16,0.07,-2.14,1.02,0.76,0.1,1.47,0.72,-0.54,-0.56,-1.32,0.02,1.81,-2.29,-0.35,-0.1,1.2,-1.05,-0.93,-2.11,-0.41,-0.08,0.01,-0.16 +C1875,5.54,-2.64,0.44,-0.3,6.15,-0.35,0.89,-2.87,1.25,1.22,-1.13,-1.11,-0.12,1.17,-0.9,-1.1,-3.07,0.95,2.59,0.06,2.41,-0.94,2.46,0.27,0.24,0.32,-1.49,3.16,0.27,-0.06,0.12,-0.29,0.12,-1.51,2.14,0.06,-0.5,0.01,-1.14,-2.29,-0.92,0.42,0.24,0.59,-1.98,-1.73,-0.67,1.77,1.23,0.32 +C1876,2.64,8.81,6.16,7.22,1.27,-1.22,-0.59,0.94,-2.26,0.22,1.08,-0.46,-1.09,0.59,-1.5,1.67,-2.25,1.34,0.65,1.82,-0.1,1.5,2.29,-0.91,-1.02,1.82,-0.87,-0.4,-0.56,-1.22,0.07,0.42,0.99,-0.5,0.6,0.72,-0.11,-1.31,-0.17,0.13,-3.46,-0.79,-0.14,2.64,1.6,-2.36,2.23,-0.01,-0.42,-0.26 +C1877,-13.84,-2.2,1.35,0.18,-2.55,-6.52,3.76,-0.75,1.14,1.47,0.25,-0.17,0.13,-0.42,-0.61,1.45,0.36,2.51,-0.45,-0.83,0.91,-2.17,0.24,0.64,3.56,-0.32,-0.13,0.05,-1.03,2.34,-0.85,-0.14,-2.65,-2.94,-1.22,-2.54,-0.05,-3.03,-0.59,-0.96,-0.4,-1,-0.11,0.57,0.16,-0.27,-0.5,1.24,-1.45,-2.5 +C1878,-2.27,-5.59,9.63,10.3,-17.41,14.45,5.31,2.22,-2.32,8.62,3.16,4.72,-14.33,1.61,1.49,2.84,3.48,2.86,2.25,0.09,-0.11,-2.13,-1.99,1.46,-3.76,1.55,-1.94,3.23,1.98,-2.18,-1.89,1.43,2.95,-3.67,-2.93,2.05,-1.05,-0.74,1.1,4.18,-3.08,1.49,-2.53,1.36,4.66,-4.9,3.27,1.09,-2.68,-0.65 +C1879,2.63,-0.82,-0.75,-0.07,-3.94,-1.62,-3.5,1.2,-0.12,1.88,1.75,0.89,4.3,0.23,0.18,-2.44,-0.1,-0.33,3.23,-1.31,-1.89,1.54,-0.36,0.63,2.28,-1.32,1.17,2.13,1.27,2.49,-1.17,-1.8,1.32,1.43,1.83,-0.02,0.46,0.37,1.61,2.06,-2.11,0.06,1.33,1.24,0.34,-1.45,-0.91,2.84,1.45,-0.36 +C1880,3.42,-10.27,1.67,2.65,4.72,-1.61,-1.58,2.29,-0.29,0.96,-0.43,2.96,1.11,-0.36,2.16,-2.91,1.85,-0.91,-1.24,1.08,-0.83,2.72,-1.81,0.81,-0.49,-1.41,-2.94,0.39,3.11,-0.01,-2.78,-2.31,-0.27,1.06,0.68,3.07,0.61,0.29,0.39,-2.17,1.97,1.09,1.51,0.47,0.5,-2.19,-1.07,1.48,1.03,4.19 +C1881,0.52,5.28,-31.34,18.49,3.45,1.48,1.34,-3.86,2.4,5.9,8.55,4.42,8.32,10.15,-0.54,-4.56,1.83,-4.32,-3.2,2.11,-0.83,-0.03,-0.93,2.24,-1.53,-1.12,-0.39,-0.59,1.11,1,-1.91,-0.97,0.08,0.53,0.6,-1.57,1.47,1.12,1.65,1.86,1.61,0.85,-0.08,0.01,2.53,2.41,-0.53,1.64,-0.66,0.47 +C1882,1.18,-4.64,1.58,0.91,-7.38,2.97,-2.24,-0.32,-2.08,0.9,2.11,-1.32,1.57,1.27,-0.29,1.24,1.54,-0.74,-0.06,0.45,-0.93,1.46,-1.16,1.61,2.07,-2.61,-0.23,4.19,-0.87,2.29,-0.54,2.08,0.49,0.64,-2.33,0.07,1.4,1.94,1.49,-0.11,0.66,0.52,2.08,0.41,0.49,0.61,3.12,-2.44,2.58,-0.24 +C1883,6.86,2.68,-2.27,-3.73,1.12,-1.25,1.55,0.63,2.66,-0.55,-0.11,-0.37,-0.98,0.13,-0.8,0.79,-0.34,-1.54,1.5,-0.03,-0.59,0.9,0.81,0.58,1.33,-0.35,2.47,-0.21,-0.12,-0.56,0.56,-0.06,1.42,-2.75,0.26,1.67,-0.8,0.18,1.04,-1.59,1.22,0.44,1.27,1.45,3.24,-0.22,0.83,0.09,0.77,-2.37 +C1884,3.64,-1.32,-0.7,-1.26,-3.43,-0.3,-1.53,-0.2,-0.16,0.64,1.84,-1.17,-0.86,1.28,-1.6,-0.47,-2.28,1.34,0.06,-0.07,0.51,1.96,1.28,-0.2,-1.53,0.96,-0.35,2.38,0.86,-2.19,2.56,-0.4,-0.53,-1.11,1.18,2.03,-1.61,-0.07,0.14,-1.91,0,1.77,-0.55,-2.57,-0.5,-0.71,-0.58,1.53,-0.12,-1.24 +C1885,-12.97,0.55,-1.34,-3.54,0.93,2.48,-1.47,-0.07,0.8,-1.7,0.01,-0.87,-1.52,-1.51,0.3,-1.42,1.07,0.88,-0.25,0.38,-0.07,0.13,2.25,-1.89,3.72,-0.7,1.54,-1.44,-0.46,-1.86,0.43,2.45,0.9,-0.75,-0.48,0.57,-0.13,-2.94,0.55,0.77,1.89,-0.05,3.28,-2.13,0.91,0.52,-1,0.09,0.26,-0.14 +C1886,3.46,1.33,-0.77,-2.23,-0.33,-0.24,0.86,1.99,0.69,-0.76,4.15,1.14,-0.85,-0.22,0.07,1.23,0.19,1.63,-0.13,0.72,-0.98,-1.26,-0.45,-1.14,-0.68,-3.51,-0.32,2.52,-0.03,-0.78,-1.49,-0.33,-0.84,-1.81,0.23,0.69,-0.07,-1.64,-0.96,0.57,-0.03,0.16,-0.8,-0.35,-0.31,-0.7,1.38,-1.01,0.83,0.16 +C1887,6,3.64,-1.77,-3.83,2.29,-0.5,1.47,0.67,0.11,0.38,-0.82,1.66,-1.43,-2.14,0.72,-0.71,1.39,-0.69,0.34,1.78,0.09,-1.51,-1.84,0.59,0.11,0.29,0.79,-1.56,2.5,0.45,-2.1,-0.52,-0.81,0.81,-0.39,0.44,1.61,1.69,0.4,-0.89,0.04,1.47,1.58,-0.74,0.59,0.91,0.83,0.02,-2.03,-0.14 +C1888,5.16,2.31,-1.14,-1.35,-2.77,-0.15,0.24,3.9,1.14,0.01,1.37,2.33,-0.67,-0.26,-0.5,-0.36,-0.92,0.58,1.39,2.13,-2.3,1.52,4.02,-3.39,1.5,5.33,0.11,-1.04,-0.8,-1.2,-0.99,0.98,-1.34,-1.13,-0.93,1.82,-1.18,1.41,-2.44,-1.23,-0.86,0.99,1.72,-0.93,-0.47,-0.16,-1.36,1.51,0.23,0.6 +C1889,4.51,-8.5,2.26,3.18,7.03,0.09,1.55,0.59,1.15,0.51,3.02,-2.73,-0.69,-2.5,-1.39,-0.99,3.85,-0.2,-0.01,0.97,-3.16,1.22,0.28,1.47,0.62,-0.32,0.76,0.43,-3.41,-1.94,0.83,-1.44,0.66,-0.13,-1.02,2.3,-1.97,-1.88,0.23,-0.76,-1.43,-0.46,1.24,0.62,-1.6,1.32,-0.21,0.64,-1.66,-1.68 +C1890,3.18,0.62,-0.57,-1.76,-4.06,-0.07,-1.11,0.5,-0.53,0.88,-0.85,-1.49,-1.15,-0.18,-3.94,-3.17,2.13,-0.39,1.03,-0.43,-0.17,-0.5,-0.71,2.51,0.6,1.13,0.85,-0.62,-1.63,0.4,-1.01,0.13,0.69,0.43,-2.31,-2.52,0.1,-0.51,-0.67,-1.63,0.46,-0.85,-0.59,0.06,1.06,3.59,0.46,1.25,0.92,0.83 +C1891,2.9,-2.16,-2.59,-1.55,-4.07,0.2,-0.91,0.93,-2.24,-0.86,1.8,-1.32,0.17,-0.46,0.24,-0.09,0.55,-2.06,0.69,-2.97,4.8,-1.41,2.86,-1.15,0.63,-2.73,1.53,0.36,0.67,-0.66,1.74,1.13,1.17,0.08,0.25,2.81,-0.46,0.97,-0.57,-1.73,-0.31,-1.18,-0.05,-3.07,-0.75,0.66,1.65,0.82,2.02,0.02 +C1892,4.63,-1.78,-0.99,-1.84,0.8,0.07,0.69,-4.61,1.01,1.17,-2.94,-1,-1.25,1.15,-2.65,0.02,-2.06,-1.16,-1.54,0.71,-1.49,-1.13,-2.21,-1.53,-0.84,1.62,0.56,0.69,2.12,0.06,0.15,-0.2,0.53,0.21,0.45,-0.59,1.65,1.1,-1.05,0.42,-1.16,0.41,0.96,-0.05,2.07,1.08,0.52,-2.02,2.64,-2.39 +C1893,2.97,-7.2,2.39,2.59,-1.7,-0.98,-2.35,-0.38,-1.67,1.52,-2.07,4.47,0.59,-0.91,1.34,-0.44,4.76,0.99,1.6,-0.31,-1.32,1.27,-2.16,-1.82,0.94,3.1,-1.75,1.21,-0.04,1.97,-0.64,1.92,-0.63,-0.17,-3.29,0.07,1.12,1.51,0.25,-1.4,-0.63,-0.41,-1.06,-1.06,1.61,1.28,-0.51,0.23,-0.44,-0.48 +C1894,4.21,-0.74,-1.35,-1.84,-2.49,0.13,-0.82,-0.86,0.64,-1.71,0.82,-1.16,-1.72,-0.15,-0.01,0.15,0.8,0.63,1.89,1.03,2.91,-0.16,3.5,-0.11,0.02,-0.3,-2.73,1.46,-0.5,-1.41,1.67,-0.66,-0.82,-0.95,1.1,3.14,0.07,1.59,-1.13,-1.92,0.84,-1.77,-0.9,-1.85,1.23,0.66,0.28,1.19,-1.78,-1.88 +C1895,-9.62,-2.05,-0.49,-0.15,-0.24,-6.96,5.87,-1.59,3.06,2.94,-1.65,1.18,-2.87,-0.29,0.3,-0.29,-0.47,0.15,1.7,0.97,-1.14,1.69,0.27,-0.69,-2.75,-1.86,-0.85,-1.44,-3.95,1.25,-1.24,-2.23,-0.19,0.19,-1.38,-1.35,-1.17,-0.28,-2.38,-3.06,0.24,0.79,-0.24,-0.57,0.29,1.96,-1.72,1.82,0.69,2.83 +C1896,3.55,-1.21,-0.65,-1.35,-4.11,-0.92,-0.66,3.2,-2.39,-0.67,1.63,-0.91,0.04,0.22,-0.53,-0.25,-2.09,-2.29,2.68,0.74,-0.57,0.5,-4.65,-1.67,-2.98,1.07,-2.44,-2.1,0.19,-0.73,1.87,-0.52,-2.71,0.14,-5.6,-2.29,2.98,-2.95,-2.65,-0.4,1.1,-2.84,-1.68,-2.93,-3.68,0.86,-3.21,1.8,2.64,-4.65 +C1897,4.23,1.91,-1.65,-3.14,0.38,0.9,-0.92,1.74,4.04,1.84,0.27,0.01,-0.98,-0.79,1.66,-0.92,0.57,-3.59,-2.13,-1.22,1.31,-0.84,1.32,-0.91,0.15,-0.02,-1,-2.03,-0.51,-1.59,-2.06,1.43,-1.26,1.83,0.57,-0.58,-0.24,0.73,0.21,0.65,-1.73,1.17,-0.51,-0.31,0.22,0.39,0.68,-0.18,0.26,0.16 +C1898,3.8,-0.74,-0.1,-1.22,-1.65,-0.03,-1.29,-2.83,0.76,-0.01,0.29,-0.54,1.63,0.99,2.36,-0.15,1.2,2.32,0.1,-0.43,0.71,-0.98,-0.23,-0.43,-1.1,-1.67,-1.06,-1.87,0.94,-0.46,-1.47,3.49,-1.98,-2.11,-2.14,3.76,-2.47,-0.53,-0.15,3.44,-2.63,2.78,-1.16,-1.78,-3.24,-1.12,0.4,4.2,-2.46,0.78 +C1899,5.42,-4.33,-0.71,-1.42,-0.63,-0.99,-0.93,-4.7,-2.48,-1.51,-1.87,4.45,-1.08,-1.59,-0.56,-1.9,-0.9,0.03,-5.12,-1.94,-3.34,-0.41,1.27,1.2,-1.61,1.88,0.28,-2.89,2.77,2.22,1.72,1.93,-2.25,2.77,-0.63,0.83,-1.13,2.77,-0.24,-0.35,-2.13,2.93,0.7,1.08,2.26,1.58,2.35,1.02,2.44,2.1 +C1900,6.72,2.17,-1.72,-3.13,-0.36,-0.28,0.33,1.53,0.68,-0.53,0.56,0.32,-1.21,1.99,1.45,-0.95,0.7,-0.95,-1.35,0.58,2.96,-1.77,-0.39,0.66,0.51,1.58,0.36,1.44,-1.08,-1.85,-0.89,-0.62,0.96,0.1,0.03,-0.64,0.45,-0.88,0,0.33,-0.71,0.36,-0.16,-1.07,0.33,-2.01,0.74,-0.85,0.59,0.67 +C1901,3.48,-4.87,1.32,1.28,0.95,0.65,-1.94,-6.47,0.15,2.06,-0.77,1.43,0.15,-0.52,0.23,3.17,1.18,0.53,0.05,0.9,1.53,2.63,1.29,1.85,4.86,-2.84,-2.96,0.24,-0.02,-0.34,-4.45,-2.84,2.66,2.45,-0.85,2.79,-1.87,0.06,-0.28,-3.84,1.34,-1.56,-1.53,2.15,-3.85,-0.44,1.79,-2.24,3.58,-0.38 +C1902,5.59,0.3,-1.17,-1.96,-0.9,-2.13,0.64,1.38,-1.12,0.26,-0.34,0.03,-0.29,1.2,-0.85,0.42,0.02,-1,-0.48,-0.45,1.26,1.25,0.23,1.57,0.02,-0.33,-2.09,-0.92,0.42,0.48,1.22,-1.04,0.47,-1.6,0.54,0.4,-1.23,1.5,0.24,-0.66,-0.65,-1.78,2.17,0.34,-0.59,1.55,0.76,-1.06,-0.27,0.08 +C1903,3.35,0.31,-2.26,-3.54,-2.08,-0.74,-1.01,-0.15,-1.36,1.6,0.85,-0.05,1.12,-1.55,2.54,-1.55,2.91,0.79,-1.83,-0.89,1.03,0.39,-0.38,0.59,0.28,0.26,1.51,2.35,0.2,-0.69,0.04,-0.57,0.17,-0.32,0.37,0.9,0.25,2.52,2.2,0.22,-0.83,-1,-0.61,-0.72,-1.67,1.91,-0.71,0.41,-0.79,0.85 +C1904,3.83,-8.54,2.54,3.68,4.54,-0.84,-0.56,2.39,-3.3,-4.33,-7.89,6.97,0.46,6.62,2.22,3.67,1.64,1.64,-2.26,-3.15,2.96,4.86,-0.41,0.93,2.53,-0.31,-1.81,-1.28,4.02,2.96,1.37,-1.43,0.55,-0.76,-1.63,2.5,-2.16,3.21,-0.52,0.95,-2.63,1.64,-3.86,2.46,-2.31,2.88,0.01,0.53,-0.51,-2.23 +C1905,4.8,1.45,-1.24,-1.85,-1.48,0.05,-0.08,1.24,0.5,-1.59,0.57,-0.1,0.83,-0.94,0.28,1.57,-0.76,-1.45,-0.81,1.24,-0.46,-0.55,0.25,0.01,0.92,0.2,-1.95,-0.07,1.27,-0.83,2.05,0.17,-0.31,0.93,2.75,-0.69,1.05,4.07,0.06,-0.28,1.45,1.6,-0.3,0.91,-1.35,-1.58,-0.58,1.43,0.22,2.78 +C1906,4.18,-4.37,-0.37,-1.2,0.01,-0.67,0.05,-4.6,-1.33,-1.38,1.2,-1.64,1.34,-1.7,-1.77,2.3,-1.01,-1.73,-0.63,3.54,-2.04,-1.69,1.3,-2.77,2.68,-0.9,-4.6,0.38,-1.66,-1.27,2.09,-1.89,-2.4,0.59,-2.39,0.57,-1.82,0.54,1.54,-3.15,3.15,3.27,-1.42,1.15,-0.17,-1.36,-2.21,6.06,0.99,-2.28 +C1907,4.89,1.71,-1.73,-1.98,-0.99,-1.36,1.12,2.6,0.81,-1.04,-1.91,0.21,0.57,2.06,-0.05,2.23,-1.02,0.36,0.98,0.54,1.19,-0.73,-1.76,0.03,-3.01,-0.69,-0.95,-0.69,-0.62,0.4,-0.52,0.86,-0.39,-0.65,-0.46,-1.34,-0.28,-0.04,1.1,1.19,-0.54,0.83,-0.8,-0.26,0.81,0.01,2.14,-1.3,-0.46,-2.28 +C1908,-11.13,0.21,0.16,-1.8,0.29,4.03,-3.76,-0.33,0.87,1.23,-0.68,-0.94,2.24,-1.57,-0.38,0.41,1.76,2.14,0.9,1.78,0.04,1.12,-1.13,-1.14,0.27,2.6,1.31,1.38,-0.83,0.5,-0.19,0.81,0.69,0.79,-3.15,0.28,2.47,0.32,-1.05,0.22,-0.45,1.54,2.39,-1.13,-2.72,-1.08,-0.25,3.47,-1.42,1.7 +C1909,-14.42,-3.32,4.02,5.06,-6.43,-11.25,3.35,-0.65,2.51,1.59,-1.73,2.06,-0.84,-0.47,-0.01,0.03,-1.68,-1.56,-2.02,-1.31,1.92,-0.47,0.66,4.28,-0.3,1.74,-2.72,-0.63,-1.12,-3.76,-4.11,-2.46,0.83,0.42,2.66,-0.93,1.78,1.44,3.78,-1.39,-1.2,1.41,3.82,1.62,-2.63,-0.4,-3.35,0.02,4.18,1.56 +C1910,3.48,6.53,4.76,4.37,0.73,-1.01,-0.11,1.27,-0.98,-0.42,1.25,-1.45,1.52,3.21,0.01,0.41,-1.14,-1.18,1.63,0,1.96,0.75,-2.4,-2.23,-0.08,0.55,0,-2.12,-2.15,-2,-3.49,-1.36,2.37,-0.41,-0.71,-0.52,0.98,-0.12,0.1,-1.69,3.1,-0.06,0.44,-0.68,-2.04,-0.57,0.83,-0.08,-0.34,2.12 +C1911,-7.84,2.71,-1.06,-3.05,2.29,1.45,-0.21,0.38,1,1.06,-0.66,0.31,0.85,1.69,0.16,0.55,-2.18,-1.79,0.56,-1.39,2.2,-1.25,0.12,1.23,-4.68,-0.66,2.09,-1.84,3.43,-1.85,0.55,-0.56,1.81,2.37,0.5,2.13,0.35,0.28,0.91,0.11,-1.84,0,-0.42,1.63,-2.94,-1.29,1.35,-0.27,-1.41,0.55 +C1912,-8.01,2.23,-1.59,-4.32,3.16,2.63,-0.65,0.42,-0.45,1.27,0.85,-0.67,-0.74,-0.72,0.1,2.79,-0.59,-1.78,-0.32,1.32,-0.81,-0.52,-1.23,-0.2,-0.49,-0.72,-0.51,0.8,2.12,1.06,1.27,1.91,0.97,2.71,-2.34,-0.86,-0.33,0.39,-1.12,-1.33,-0.62,2.24,1.67,-1.29,1.25,0.58,-2.2,-2.93,1.2,0.34 +C1913,2.13,-8.47,0.98,2.05,2.48,2.23,1.99,-2.54,0.28,1.04,2.55,-3.7,2.79,-2.25,1.73,-1.55,2.01,-1.5,2.93,2.3,2.36,-0.77,1.47,-2.65,-3.48,1.41,5.93,-2.99,0.89,3.01,5.59,2.03,0.1,-0.75,-2.23,-0.38,-2.11,1.55,1.75,-0.44,-0.15,3.53,0.02,-1.94,1.39,-1.19,-1.02,-0.77,-2.23,0.52 +C1914,5.17,0.48,-1.25,-0.8,-1.64,-0.6,-1.11,2.63,-0.2,-2.1,1.85,1.17,-1.34,0.26,1.54,-3.77,-2.13,1.58,0.39,-0.63,1.04,0.6,0.01,0.33,0.21,3.63,-1.46,0.1,2.05,-1.61,1.72,-0.87,-1.75,1.68,-0.45,1.86,3.21,2.46,-0.21,0.58,-1.28,1.6,0.31,-5.1,-1.15,-0.17,-3.12,-0.34,-1.09,-2.47 +C1915,3.43,-1.11,-1.24,-1.47,-2.85,-0.47,-0.78,-1.72,-0.56,1.3,-0.75,0.33,0.81,-0.41,-1.25,-1.82,-2.07,-2.98,-1.61,2.11,1.8,-1.34,-3.67,-0.41,0.87,0.54,0.6,-0.68,-0.4,-0.61,2.03,-0.33,1.96,0.21,-1.95,1.17,1.74,-0.45,-0.16,2.51,3.66,-0.24,2.04,2.19,1.45,1.23,-5.41,4,0.12,0.5 +C1916,5.16,0.18,-0.82,-2.13,-1.15,-1,0.25,1.35,1.75,0.3,-1.87,0.32,-2.52,3.05,-1.13,-0.1,-0.24,-1.22,1.37,-0.13,-0.92,4.08,1.07,-0.79,1.48,-0.72,-3.51,0.06,0.7,1.86,0.02,-3.21,2.99,2,-1.6,-0.02,-1.2,0.57,-2.34,-1.21,1.33,0.34,0.91,2.01,-1.82,0.77,2.57,-0.93,1.2,-0.57 +C1917,5.78,1.93,-1.98,-2.7,1.01,0.21,1.29,2.29,-0.08,-1.33,-0.78,0.16,0.17,1.24,-0.09,1.46,-1,-0.87,-0.94,1.17,2.66,0.58,0.62,-2.09,1.42,1.21,-0.15,-1.53,-1.2,0.05,0.75,0.36,0.15,0.96,0.29,1.8,-1.48,-0.53,-1,1.46,0.53,-1.81,-2.4,1.94,1.46,-0.39,0.97,1.05,-2.02,-0.05 +C1918,4.83,1.38,-1.42,-2.71,-1.5,-0.43,0.95,1.75,1.24,-0.29,-1.88,0.27,0.73,2.4,0.02,-0.64,0.38,-0.06,0.37,1.27,-0.09,0.76,-2.31,0.98,-1.73,0.51,-1.3,-0.27,-2.16,-1.11,0.23,-0.74,-1.24,0.12,-0.63,1.31,-1.44,-0.35,1.82,0.12,0.6,0.77,1.5,0.9,-2.03,-0.16,0.05,0.24,0.4,-0.58 +C1919,4.88,2.54,-1.8,-1.38,0.63,-0.02,3.14,1.32,0.4,2.33,-0.78,-0.64,0.87,-0.06,-3.14,-1.74,-1.24,-0.22,1.17,-1.06,2.04,-0.83,1.26,0.85,-1.89,1.2,1,-0.74,0.49,-0.1,-0.87,-0.97,1.91,-0.52,0.7,-1.69,-3.69,0.44,-0.02,0.18,0.16,-0.59,2.79,1.41,-0.34,-0.33,-0.65,0.71,1.7,-0.56 +C1920,-12.26,1.61,-0.01,-1.03,1.44,1.32,-0.15,-0.46,-1.24,0.7,-0.87,-1.78,1.58,-0.01,1.2,-1.31,1.91,-1.9,0.29,-0.81,0.33,1.5,-1.69,1.16,-0.23,0.1,-1.55,2.54,1.48,-3.14,1,-3.75,-0.68,1.4,-0.74,1.37,-0.33,-0.52,-0.74,0.53,-0.95,1.18,-0.24,2.42,-0.8,1.15,1.15,-1.62,2.21,0.32 +C1921,5.06,0.84,-1.44,-2.66,-2.61,0.19,0.45,1.76,1.12,-2.84,-0.84,3.84,0.72,0.62,-2.06,1.12,1.53,1.12,-0.94,0.67,-1.2,0.37,-3.04,1.37,-2.93,2.08,0.71,-2.1,0.38,2.15,-0.71,2.41,0.37,1.29,-0.27,0.99,0.28,-2.8,1.07,-0.22,0.28,0.27,3.11,2.11,2.71,-0.68,0.02,2.46,-0.26,-1.11 +C1922,3.87,8.29,4.02,4.58,2.59,0.2,-0.09,-0.99,-1.53,0.27,1.13,-0.97,0.99,1.16,1.62,-0.04,0.57,-0.7,-0.16,-2.32,0.93,-0.95,0.09,1.4,-1.03,2.85,-1.86,0.88,-0.71,-0.25,-3.43,0.28,1.15,-2.04,-0.25,1.37,-0.36,-1.86,-3.33,1.18,-1.43,-0.45,1.88,-1.51,-0.74,0.57,0.9,0.13,0.24,-0.85 +C1923,2.56,6.86,2.67,2.19,1.05,-1.47,1.12,-0.4,1.2,1.74,-0.06,0.52,1.45,-2.66,0.14,0.77,3.13,0.82,1.24,-0.65,0.98,-1.97,1.1,2.03,-0.85,-3.11,-1.21,-2.24,0.45,-0.16,0.63,-0.03,-2.06,-1.38,-0.58,-1.36,-1.06,0.06,0.23,-0.79,0.76,0.51,-0.85,-0.59,-1.05,0.77,0.57,-2.21,2.09,-0.27 +C1924,3.71,-0.93,-2.38,-1.97,-4,0.16,-1.93,-1.29,0.91,3.3,-0.83,-1.38,1.87,-1.62,0.68,-0.92,0.17,-0.21,0.64,0.41,0.62,-2.55,0.05,-0.55,-0.73,1.18,0.33,0.09,-0.11,0.5,-0.87,-3.62,4.84,-2.09,-0.58,1.23,-4.33,1.36,-0.71,-2.61,0.82,-2.65,-0.4,0.49,-0.17,2.11,1.29,2.61,-1.16,-1.17 +C1925,-12.42,1.08,0.87,-2.94,-0.07,2.09,-2.33,-1.45,-1.31,-1.48,1.05,0.88,-1.21,1.57,-1.9,-0.23,-0.01,-0.25,2.01,-1.07,1.05,0.58,0.71,0.38,-0.92,1.59,-1.26,-2.48,-0.04,-0.49,1.41,-1.25,1.86,0.06,2.56,5.77,-3.57,1.3,-0.88,-0.19,-2.87,-0.55,2.37,1.7,2.37,0.66,-1.38,-1.14,2.23,-0.07 +C1926,3.75,-0.31,-0.36,-1.67,-2.72,-0.13,-0.32,2.23,1.16,-0.02,0.36,0.12,-0.9,-0.62,0.53,0.33,0.69,0.65,1.49,-0.05,2.13,2.43,0.9,-0.91,-0.15,0.93,-0.27,0.27,1.62,0.95,0.79,2.23,0.94,-0.62,0.59,0.93,-0.87,2.1,-1.47,-0.5,-3.49,-0.56,1.55,1.25,-0.51,0.5,2.41,1.84,1.09,-0.42 +C1927,-9,1.4,-2,-4.79,3.09,1.37,0.16,0.68,-0.5,-1.3,0.9,-1.73,-1.74,-0.85,1.28,-1.64,1.48,-1.36,-1.15,1.4,1.31,0.58,-1.51,1.8,0.19,1.15,-0.1,-3.32,-1.42,-2.88,1.04,0.61,0.99,0.98,0.36,-0.56,2.26,4.42,0.39,-0.71,-0.65,-0.09,-2.19,1.13,0.7,1.34,-0.39,-0.35,4.18,0.14 +C1928,-5.47,-1.02,0.36,-0.92,-3.41,-3.62,2.46,-0.35,-0.02,-0.3,-0.55,1.49,-0.87,-0.87,-1.05,1.85,-0.08,-1.55,-0.47,-2.13,1.63,1,2.19,2.29,1.64,0.67,0.43,1.51,-2.4,0.2,-0.22,1.07,1.14,0.6,-0.78,-0.05,-1.14,1.72,-1.29,1.79,1.66,0.51,-1.06,1.33,-0.77,1.61,1.54,0.87,-1.42,-0.51 +C1929,4.04,-2.26,0.07,-1.46,-5.05,-0.02,-3.76,-0.49,-3.43,1.92,1.18,-0.04,-1.01,2.03,0.92,-0.06,-0.93,1.69,1.37,-2.29,-0.21,0.96,-1.15,2.02,2.78,-2.29,-1.75,0.18,0.75,0.62,2.71,1.21,-0.44,0.38,-3.6,-0.82,-1.24,-0.41,-3.5,-2.31,0.72,-0.5,-3.37,1.6,1.51,-4.02,-2.84,-2.68,0.31,-2.02 +C1930,3.75,-2.61,0.06,0.18,-0.07,0.67,-0.47,-3.17,-1.33,-4.03,-1.7,1.16,-0.15,0.17,-0.74,0.35,-1.44,-2.3,0.36,-1.83,-2.56,-0.36,2.35,1.08,-2.04,-0.7,1.01,2.84,1.11,-0.34,-3.49,2.26,-0.25,-2.26,1.17,1.85,-0.76,-1.65,3.12,-0.73,-0.54,-0.56,-0.34,0.08,-0.2,0.72,-1.12,3.12,-1.65,0.18 +C1931,4.58,2.38,-1.63,-1.96,-0.94,-1.48,0.2,3.09,-0.17,0.08,-1.3,1.13,0.47,0.16,-0.72,-0.49,-0.38,0.79,-2.77,-0.91,-0.64,-0.05,2.26,-0.09,2.56,-1.05,-0.51,-1.54,1.43,-0.67,0.26,0.21,-1.05,0.07,-2.32,1.88,-0.05,0.44,2.14,1.31,2.38,1.7,1.26,-1.09,0.29,-0.2,-1.37,-0.61,-0.06,-1.34 +C1932,-6.6,-0.98,5.75,5.37,-4.99,4.49,-6.56,-0.62,6.22,0.69,-0.85,0.06,-0.53,3.75,0.53,-0.62,-0.92,-0.83,2.84,-2.88,-2.95,2.26,2.89,0.48,-1.44,-0.93,-1.44,-0.59,0.21,0.23,2.18,1.79,1.56,-2.39,-1.25,-1.07,-2.19,-0.61,1.34,0.63,-4.67,-2.53,3.28,-0.45,-0.65,0.03,-0.18,1.15,1.84,-0.91 +C1933,1.86,5.42,3.96,4,0.77,-0.45,-0.69,-1.09,0.15,0.51,0.32,0.8,-0.37,0.02,0.52,-0.64,-0.98,-0.28,-1.53,0.38,0.81,1.34,-1.51,-0.87,0.85,0.61,-0.49,0.42,0.44,4.53,-0.69,-2.79,-1.13,0.34,0.87,-1.32,-0.44,0.75,1.8,-0.32,0.75,-0.05,-0.78,-2.12,-0.14,-0.97,-0.37,-1.03,1.03,-0.28 +C1934,-11.61,3.79,-0.71,-2.67,3.87,0.31,0.74,0.88,-0.82,1.17,-0.61,-3.94,2.4,-1.74,-1.82,0.06,1.92,0.51,-3.12,-0.06,1.02,-0.24,3.01,2.03,-1.02,1.85,-0.57,-2.12,1.63,0.37,1.99,-1.43,-1.46,-1.64,1.41,1.97,-1.27,-2.39,-0.2,-1.78,1.86,1.68,-2.73,2.22,0.74,0.05,-0.75,0.7,-1.87,-0.24 +C1935,3.15,5.32,5.66,6.01,0.64,-0.67,-1.28,-0.38,-0.79,-0.03,-2.58,0.86,1.36,-0.55,-0.76,1.45,-1.29,-1.66,0.14,-1.15,-0.65,-3.78,1.47,-1.18,-0.48,-0.1,-1.78,-0.67,-2.19,2.57,1.19,-0.13,-1.43,0.2,-0.24,-3.32,0.21,0.06,-0.57,-5.03,-0.61,1.13,2,0.42,-0.15,1.64,-2.15,0.62,3.21,2.81 +C1936,3.24,-2.24,-0.93,-1.83,-0.59,-0.8,-0.96,-2.33,-1.38,-0.81,-0.52,3.43,1.68,-4.31,1.27,-2.84,-0.91,-3.18,0.07,-0.24,-2.14,0.31,0.45,0.8,-3.11,-0.12,-0.79,-1.09,-0.16,-0.18,1.27,-0.99,1.17,0.26,0.9,-2.73,0.65,1.28,-1.81,0.43,-1.7,1.18,-1.84,-0.16,1.01,1.61,-0.69,1.13,0.88,2.06 +C1937,4.36,-0.6,0.33,-2.09,-3.07,-0.62,-0.37,0.19,-0.59,0.19,0.25,-3.16,1.19,-0.2,1.01,-0.63,0.18,1.88,-0.2,0.78,2.85,-0.66,-1.75,2.22,0.11,0.14,5.27,0.06,0,0.64,-2.01,-1.82,-0.87,0.68,-0.62,-0.98,-3.33,-1.18,-1.72,-2.36,2.98,0.03,-0.83,1.84,2.28,1.63,1.83,2.21,-0.48,-0.08 +C1938,4.38,-1.53,0.51,0.16,-4.29,1.06,-1.54,1.13,-0.85,2.1,0.07,-3.25,-2.11,1.05,-0.74,-1.46,0.88,-0.76,-1.61,-2.5,-2.68,-0.86,0.94,1.61,0.95,-0.05,-2.94,-1.87,-1.76,2.24,-0.71,0.24,-0.72,1.33,-1.4,-1.93,4.04,-3.32,-4.19,-1.18,0.31,-2.44,-0.22,-1,0.88,-2.1,0.49,2.4,2.53,-1.22 +C1939,4.35,6.99,4.75,4.94,2.8,0.35,0.2,0.49,-1.98,-0.27,-0.73,-1.3,-0.78,-0.61,-1.25,2.44,-2.16,-3.41,2.5,-2.9,-1.63,-0.68,-0.59,-0.04,-1.23,4.83,-0.77,-1.41,1.07,1.85,-2.02,-1.98,1.66,-0.59,0.91,-1.77,0.93,-0.73,1.2,1.48,-0.37,-1.35,-0.13,1.2,2.22,0.97,2.86,-0.07,0.91,-0.91 +C1940,4.5,1.38,-1.6,-1.95,-0.81,0.33,-0.32,-0.67,0.1,1.89,-0.32,0.92,2.48,-0.38,0.37,1.56,0.74,-0.29,-1.44,-2.33,-2.66,-1.12,1.23,0.58,-0.51,-2.24,2.89,1.08,-1.02,0.74,1.61,-1.85,-2.85,-1.37,1.39,0.45,-0.75,0.76,1.86,-0.18,1.8,1.86,-1.95,-0.1,1.91,-0.35,-1.33,0.92,-1.25,0.37 +C1941,2.75,-13.59,3.44,4.12,5.48,-1.22,-2.13,3.78,-0.03,-1.29,-0.77,1.03,0.81,0.74,0.51,-3.6,1.59,-4.03,1.44,2.32,-0.67,2.97,-1.81,2.54,0.07,1.12,-3.84,-1.66,0.57,4.28,1.39,3.96,-3.82,-0.91,0.54,-1.73,2.18,-1.9,3.83,1.29,-0.4,-3.27,2.06,-4.59,-0.55,-4.35,-1.97,-2.33,1.47,-3.58 +C1942,3.54,-8.12,0.42,1.83,5.12,0.01,0.62,-1.8,0.85,2.12,0.85,-0.67,0.18,-0.26,-1.23,2.41,3.13,0.55,1.65,2.68,0.21,-2.09,0.29,-0.16,0.27,-2.26,-0.74,1.8,-1.39,-2.81,0.7,-1.55,3.33,1.29,0.93,0.33,2.74,-1.74,0.44,-2.21,1.18,0.4,0.53,0.55,2.59,-0.73,0.72,0.25,-0.99,-0.2 +C1943,4.08,-1.69,-1.2,-2.24,-4.34,-0.53,0.81,-0.22,-1.29,0.2,-0.31,0.15,0.63,-0.95,-0.37,0.17,2.3,-2.58,-3.28,0.78,-0.3,1.69,-0.75,1.01,-1.9,0.22,-2.27,-0.34,2.63,-0.19,2.8,1.89,1.94,-2.47,0.32,4.27,0.18,-0.96,-0.48,-1.17,-0.69,-0.06,-0.32,-0.98,-1.73,-0.54,-2.13,1.76,0.29,1.09 +C1944,2.76,6.46,4.13,2.77,1.61,0.16,-0.23,0.78,-0.17,-0.4,0.6,-1,-0.96,1.42,-0.72,1.06,-0.67,1.02,-1.62,0.43,0.67,-0.52,2.34,1.89,-0.17,1.43,-1.82,-2.31,-0.83,-0.62,-0.59,-0.98,-0.09,-0.08,2.21,0.74,1.21,-1.85,-1.84,-1.21,-2.17,0.82,-1.14,-1.78,0.15,1.33,-0.6,0.65,0.67,-1.67 +C1945,2.63,-0.18,-0.75,-0.69,-0.59,0.9,0.39,-3.83,0.38,-0.54,-1.92,-0.58,-0.56,1.01,1.53,2.19,0.18,2.4,-0.22,1.5,-0.14,0.05,-1.94,2.94,-0.67,-1.09,2.22,-0.71,0.45,-1.83,0.62,-1.32,-0.53,1.97,-1.72,-1.62,0.86,1.39,-2.19,-3.76,0.95,-0.13,1.11,-2.14,-0.48,0.63,-0.81,0.48,-0.77,-1.36 +C1946,5.29,1.37,-1.78,-2.44,1.42,-0.51,0.09,1.92,0.31,0,0.92,1.75,-0.49,-1.33,-1.12,-0.14,2.14,-1.77,-1.03,-0.56,0.52,-1.49,-2.02,-0.97,-0.32,-1.24,-0.38,-1.16,0.82,-0.07,0.88,0.64,1.45,-0.38,-0.77,0.82,1.77,3.1,-0.62,-3.26,-2.09,1.01,1.33,-0.19,1.95,-2.05,-3.98,-2.33,1.3,-0.6 +C1947,4.65,0.28,-1.28,-2.48,-0.36,0.33,-0.15,-1.65,0.65,-0.28,1.97,-0.12,-2.57,-2.16,-3.63,0.73,0.39,1.03,-1.15,2.35,-2.11,0.62,-2.44,4.11,0.46,0.67,0.03,-1.54,2.39,0.08,-0.49,-1.53,-1.92,-0.76,0.05,-1.97,-0.29,-0.25,0.11,0.64,1,-1.56,3.47,0.57,0.68,0.1,3.16,0.4,1.41,1.68 +C1948,3.53,-0.66,-0.67,-1.6,-1.54,0.12,-0.52,-0.05,-1.14,-0.3,0.99,-0.4,1.05,2.72,-2.18,0.15,1.19,-2.05,0.12,-0.32,-0.21,1.81,-0.94,2.96,1.56,-2.3,3.76,-0.72,-1.42,-0.69,1.73,0.09,2.02,2.08,-2.52,3.48,2.47,3.7,-0.43,-1.92,0.62,0.91,1.76,-0.64,0.42,2.81,0.17,-0.43,0.14,-0.52 +C1949,-12.16,1.79,-0.54,-3.29,2.66,3.91,-2.07,-1.5,-2.16,0.76,-1.97,0.58,0.14,2.33,1.42,-2.37,-0.95,-2.32,-1.02,-2.63,0.65,1.08,3.42,-1.95,-0.55,0.16,1.18,-1.29,0.14,-2.65,0.9,1.39,3.29,1.29,-2.58,0.56,-1.27,-1.79,-3.49,3.14,0.63,-2.28,2.4,1.04,1.08,-0.53,0.28,2.57,-0.99,1.14 +C1950,4.17,-2.31,-1.55,-2.65,0.69,-0.87,1.11,-3.64,0.39,-1.65,-1.66,0.6,0.02,-0.93,1.24,-2.75,2.58,-2.98,-1.88,-1.01,2.28,-1.44,2.61,-0.64,-2.06,0.03,-0.23,0.4,1.78,-0.87,-1.51,4.53,-1.73,-0.48,-0.23,0.91,-0.52,-1.27,0.84,-1.11,-1.77,2.8,-1.36,0.32,-0.08,-0.23,-0.7,-0.06,-0.08,-1.58 +C1951,-9.81,3.41,-0.48,-3.18,3.79,2.55,0.55,0.53,-0.04,-0.69,0.59,1.56,0.24,0.97,-1.9,1.52,-0.84,-1.39,0.03,-0.97,2.3,-1.41,-2.54,-0.3,-2.9,0.21,1.42,3.54,-0.9,-1.51,-1.65,0.49,1.77,0.53,-0.33,-2.24,-1.55,0.78,-0.53,-0.7,-0.38,-0.19,-2.02,-0.84,0.96,0.31,1.15,0.9,-1.52,-0.58 +C1952,4.45,0.23,-0.99,-1.81,-1.6,-0.81,0.48,3.4,1.69,-2.53,-1.46,1.65,-0.81,2.92,-0.35,0.65,2.11,-2.06,1.5,0.04,-0.37,0.62,0.09,-2.67,0.15,-2.35,0.1,-2.07,-2.49,0.51,0.33,-1.13,-1.28,1.53,1.13,0.45,1.71,0.76,1.32,0.95,-1.72,-0.95,-0.99,0.71,-0.62,1.08,2.31,-0.19,0.4,-0.27 +C1953,-9.74,2.62,-2.05,-2.38,3.96,0.74,0.71,-0.46,-0.97,0.1,1.29,-1.29,0.16,-2.59,-0.26,0.25,3.52,-0.17,0.85,-0.48,-0.36,-0.48,0.16,1.64,-0.82,0.28,-1.46,-0.42,0.26,-1.41,-0.42,3.28,0.66,1.18,-1.06,1.7,-0.09,-1.66,-2.74,1.99,0.59,-0.09,1.19,-0.86,-2.19,-0.68,-0.16,-1.39,2,0.71 +C1954,4.26,-3.02,-0.17,0.92,-0.3,-0.02,-1.61,-0.05,-1.61,0.81,1.22,2.69,0.66,4.32,1.21,2.84,1.86,0.63,2.15,-1.74,-0.77,0.11,1.4,-1.71,1.63,-0.74,0.79,-0.72,1.09,-0.26,2.27,1.33,-0.5,0.94,2.21,-0.64,-1.89,0.81,1.74,-2.71,-0.66,-1.25,2.11,0.15,2.72,0.96,-0.69,-1.79,-2.46,1.89 +C1955,-2.41,6,-2.21,-3.45,4.99,2.47,1.16,-0.42,0.6,0.54,-0.03,-0.46,-1.48,-0.81,1.39,-0.48,-0.42,-2.04,1.62,2.39,0.73,1.18,-0.82,-1.15,0.69,0.29,0.91,-1.42,0.31,0.46,-0.66,0.01,0.7,-1.25,0.31,-0.86,0.02,0.54,-0.67,-3.06,-0.29,0.68,0.29,-1.08,-0.17,-0.27,-0.26,1.19,-0.1,-0.77 +C1956,4.3,8.7,4.42,4.48,2.52,0.57,2.08,0.06,0.11,-2.96,-3.72,-3.15,2.28,2.11,-1.91,-3.55,-1.13,-1.18,3.13,-0.06,2.59,1.45,-1.02,0.34,1.79,-0.44,-0.25,2.78,-1.43,-0.74,0.4,-0.24,3.48,-0.28,0.62,-0.84,-2.23,4.19,-0.67,3.9,-1.24,0.27,0,-3.97,-0.76,-1.84,1.43,0.05,2.15,-0.32 +C1957,4.99,0.29,-0.6,-2.62,-3.87,-0.48,-1.32,3.71,-0.14,0.75,-3.59,-2.06,0.73,-0.95,0.88,0.43,1.28,-3.91,-1.41,2.36,-4.29,-2.8,1.87,3.77,-1.06,0.65,-1.3,2.65,-3.94,0.39,-0.5,-1.01,0.75,-0.19,-1.12,0.63,1.17,-2.43,-1.12,1.95,1.38,3.29,-2,1.9,-0.99,-2.72,-3.76,1.08,-3.27,2.39 +C1958,-10.2,1.07,-2.03,-3.51,2.13,2.65,-0.57,-0.39,-1.43,4.48,-1.14,-3.22,0.21,-2.3,-0.46,4.59,0.05,-2.8,-2.44,-2.58,1.17,2.91,-0.3,3.57,0.74,0.17,1.56,-0.38,-2.84,-1.89,-0.68,1.83,-1.15,-0.67,1.55,-0.2,1.28,2.04,-1.47,3.4,-0.32,1.95,-3.91,-0.44,-1.66,1.36,-0.35,-0.44,-1.71,3.77 +C1959,-14.55,-0.71,1.87,2.12,-2.16,-0.05,-2.81,-0.22,0.35,-2.33,-0.02,-1.17,1.32,2.14,1.14,-3.04,-1.27,-1.15,-1.41,1.18,0.4,1.25,0.01,-1.01,-2.49,-1.89,1.5,0.25,0.66,-2.36,1.87,0.87,-0.26,0.67,-0.46,0.12,0.28,0.53,1.67,-1.31,0.56,-1.45,-1.05,0.03,3.04,3.04,-0.17,2.13,2.8,-1.63 +C1960,3.76,7.6,8.08,7.7,0.67,-1.04,-1.75,-0.92,-5.41,-0.06,0.49,-1.92,-1.23,1.15,0.73,1.09,-0.93,-0.43,0.56,-2.13,-0.95,2.46,-1.16,-1.67,1.67,-1.82,-0.63,3.86,-1.09,3.54,-2.71,0.32,-0.36,-3.51,0.52,1.13,1.15,2.19,-1.51,1.63,1.47,0.58,0.25,4.88,2.33,2.75,-1.95,-3.06,4.21,0.44 +C1961,-10.57,0.81,-1.64,-3.54,1.95,3.1,-0.14,-1.86,-3.05,2.74,-0.36,-2.05,0.14,0.71,0.37,0.38,-2.44,0.67,-3.67,-3.28,-1.65,0.5,0.11,-0.57,0.91,0.7,1.57,0.12,1.19,2.27,-0.72,0.76,-1.58,1.35,0.18,1.61,1.56,-0.76,0.7,-0.93,0.64,0.89,2.3,-0.65,-0.81,-0.86,-0.64,-0.63,0.46,1.63 +C1962,4.41,1.11,-1.87,-1.25,-2.52,-0.91,-0.61,4.26,-0.83,-1.75,-0.72,-1.73,1.26,2.31,1.97,-2.75,1.12,-0.28,-3.81,-0.26,0.02,-1.81,0.47,-1.85,3,-2.05,-0.37,2.07,-2.12,-0.72,-3.82,1.48,0.98,-2.92,-4.21,2.78,1.2,2.58,0.52,2.52,-0.02,-2.29,0.45,-5.43,1.17,-0.07,-2.31,-1.32,-5.09,1.18 +C1963,3.02,-5.4,1.98,3.03,4.35,-0.44,-0.41,2.43,-0.64,0.39,-2.7,7.85,2.28,1.86,1.25,4.91,3.33,4.05,2.9,2.79,1.43,4.29,-2.64,4.66,1.2,-3.6,-0.46,1.11,2.39,4.53,0.09,2.43,3.23,-3.7,-3.49,0.56,-0.73,0.68,-5.79,-4.64,0,1.86,-3.43,-0.69,4.93,0.42,-0.61,-1.97,6.41,0.88 +C1964,4.26,-0.4,-1.4,-1.36,-2.74,0.29,-2.11,1.02,-1,0.27,0.91,-2.37,-0.68,3.16,1.39,1.82,-1.67,3.21,2.17,1.13,-4.28,0.47,-1.8,-1.71,-2.34,-0.25,-1.13,-1.47,0.6,-0.83,1.57,1,0.84,-0.93,-0.35,1.3,-0.77,-0.76,-0.69,1.03,0.14,-0.38,3.38,2.46,-4.07,0.93,1.29,-1.99,-0.89,-0.59 +C1965,4.73,-8.81,1.14,2.19,3.16,0.18,-0.86,-3.24,-1.84,-0.4,-5.83,4.51,0.06,-1.22,6.17,-1.54,1.78,-1.5,4.18,3.78,0.55,-1.13,-1.56,-0.55,0.11,1.35,2.28,-2.84,-3.41,1.95,0.62,-4.95,-0.44,-2.4,-3.97,-4.02,-0.13,0.23,-2.4,3.07,0.94,1.32,0.79,1.36,-5.82,1.29,-1.52,1.86,0.58,-2.11 +C1966,3.49,-0.49,-0.03,-1.87,-4.03,-0.38,-2.24,-0.44,-2.55,-0.99,-1.14,1.11,-1.3,-2.09,-1.47,0.85,1.14,-2.34,0.52,0.58,-2.53,-1.17,1.37,-1.13,-0.11,-1.03,0.06,-1.49,1.47,0.67,-1.4,2.22,0.56,2.08,-2.43,2.59,-3.13,-1.46,-0.16,0.21,-2.62,3.53,-0.39,1.65,-1.62,-6.18,-0.24,-1.58,0.37,-0.66 +C1967,-8.14,1.58,-4.67,-4.45,4,3.62,1.66,0.35,-3.27,1.18,1.07,-1.52,-0.8,0.24,0.77,-4.6,0.18,0.25,-0.35,-2.13,-0.33,0.7,-1.71,-0.28,0.96,1.81,-2.09,-0.49,-0.85,-0.39,-2.26,0.19,3.01,-1.97,1.08,-0.18,0.48,0.06,-1.06,0.89,-0.51,3.49,-0.13,-0.48,-1.78,0.66,2.02,0.74,0.03,-3.28 +C1968,4.39,-7.13,0.59,1.48,3.32,1.45,1.95,-1.6,1.38,-0.49,-0.3,-0.83,-1.53,-0.99,-0.56,-0.76,-1.45,-0.57,-1.79,-0.95,-1.15,-0.86,1.09,0.4,-3.15,0.35,2.76,2.22,-2.21,-0.31,-0.54,-2.02,3.35,-0.2,-2.4,1.07,-1.57,0.4,1.37,2.13,-0.01,1.17,-0.04,-1.96,-0.86,1.85,-0.99,-2.45,-0.93,1.5 +C1969,4.1,-6.35,0.15,0.32,0.94,1.18,-1.28,-4.95,-1.05,-2.56,-1.03,1.51,1.99,0.98,0.81,0.92,-0.07,0.26,-0.12,3.19,-0.11,1.33,-1.8,-2.66,-0.86,2.19,0.49,0.18,-1.35,-0.38,-2.96,-1.69,-0.28,5.14,-0.52,-1.61,-0.49,-0.34,1.66,-0.68,-0.28,0.99,2.13,0.96,-0.79,2.21,1.22,2.31,0.35,1.23 +C1970,-13.5,-0.01,1.24,-0.1,-0.72,0.26,-0.18,-1.13,1.76,-0.57,-0.12,0.08,0.08,2.09,-0.7,0.98,2.1,-0.52,0.7,-0.8,-0.28,-2.1,-0.41,-0.94,1.64,0.37,2.15,-1.22,-1.1,-1.12,-0.2,0.07,1.48,0.11,0.38,0.9,-1.09,0.92,-1.19,2.83,-3.2,-0.35,-1,1.25,0.08,0.9,-0.44,-3.61,0.67,-1.56 +C1971,1.63,6.55,4.55,4.5,2.06,0.2,-0.13,-1.82,-0.42,1,0.42,0.58,0.98,2.32,2.08,-1.84,0.55,-0.7,1.17,0.17,-0.22,1.15,0.63,2.63,2.38,-1.02,0.24,-0.27,-1.09,-3.44,1.9,-0.39,-0.83,1.35,0.27,0.84,3.56,-3.74,-5.82,-0.67,-1.54,1.82,0.48,-0.74,0.33,1.38,2.28,-1.72,2.03,-1.4 +C1972,2.66,8.9,6.54,5.72,0.33,0.37,-1.42,-0.84,-1.52,-0.74,-1.68,-0.78,3.85,1.09,1.23,2.23,-1.68,-5.26,-1.75,2.28,0.45,-0.2,2.86,-2.24,-0.73,-0.15,-0.11,1.67,-3.28,-2.88,-0.73,0.67,-1.25,0.04,0.06,1.4,-0.68,2.13,1.22,1.45,-2.53,1.21,-0.67,1.08,-1.38,1.18,0.65,0.69,1.12,-4.03 +C1973,4.38,7.23,4.71,3.93,1.22,0.54,0.68,0.32,-2.04,0.91,-0.69,0.03,-0.16,0.7,-2.19,0.54,2.46,2.39,0.69,-0.85,-1.03,1.62,-2.17,-0.58,-0.61,-0.93,0.31,1.03,0.51,2.43,2.17,-0.08,-0.95,-1.47,-2.08,-0.01,-0.49,-0.92,0.23,-0.27,1.39,-2.65,-0.99,0.15,0.84,-0.12,1.82,-1.78,1.27,3.74 +C1974,6.02,0.46,-1.05,-2.83,-2.49,-0.87,-1.26,2.59,-1.2,-0.16,-1.74,-0.15,1.25,3.86,-2.38,0.15,-2.57,-1.12,-0.51,-2.7,0.74,-0.28,0.14,0.34,1.2,0.15,1.21,0.56,-1.69,0.99,-1.36,-2.43,-1.74,-1,0.31,-0.3,0.3,-0.77,2,-1.66,-1.17,-0.43,0,0.35,0.71,0.55,1.93,-2.69,-2.43,-1.12 +C1975,4.07,9.02,5.54,5.13,3.05,0.45,0.93,-1.77,0.22,-1.58,-1.89,-0.37,0.52,0.49,-0.74,-0.87,0.51,-1.65,-0.23,-0.07,-1.17,-0.44,2.89,1.14,0.42,-1.47,-1.99,0.12,-1.77,-4.24,-0.41,1.59,1.35,0.79,0.62,-0.35,-0.76,1.75,-1.04,-3.74,3.37,1.33,0.87,-1.33,0.81,-0.34,2.54,-0.65,1.43,0.72 +C1976,-10.76,1.13,-1.12,-3.04,3.12,2.43,0.66,0.94,-0.29,-3.01,1.94,-0.8,-0.7,0.07,-1.38,-1.2,-4.4,-3.05,-1.57,-0.04,-1.4,-1.19,0.25,5.89,-0.82,-2.74,-1.16,2.87,-0.33,-2.32,1.79,1.91,0.89,3.15,2.65,3.61,1.74,-1.38,3.34,-0.4,-0.95,0.4,0.06,2.56,-0.24,1.61,1.84,3.2,1.18,-2.63 +C1977,-10.51,1.1,-2.51,-1.32,1.27,2.42,-0.75,-0.59,-2.31,1.76,1.19,0.46,2.53,0.85,-1.57,0.58,-0.34,0.69,-2.46,0.41,0.47,0.93,-1.81,-0.26,-1.97,4.02,0.5,-0.85,0.76,0.59,-1.54,1.57,0.84,-1.32,0.76,0.26,0.36,-1.21,-0.1,-1.84,0.93,-2.95,0.72,-1.79,-1.03,0.81,-0.05,-0.9,-0.74,0.34 +C1978,4.62,2.94,-0.74,-2.51,1.16,0.34,1.51,0.85,1.51,1.09,0.16,0.82,0.46,0.39,-0.04,0.12,1.86,0.54,1.96,0.18,-1.58,1.3,-0.71,-1.07,-0.92,-0.8,-0.18,0.67,-0.19,1.34,0.08,-0.16,-1.03,-1.85,0.35,-0.1,0.43,-0.92,-0.16,-1.45,-1.68,-0.13,0.7,-0.7,0.58,-0.89,0.82,-0.51,0.91,0.83 +C1979,-13.45,-4.53,1.36,1.98,-5.45,-9.89,5.49,0.3,-0.21,1.18,-0.22,-2.72,-0.96,1.59,-2.1,0.97,0.35,3.01,-4.27,1.02,2.09,-0.16,0.07,-0.92,1.44,-2.91,-0.12,1.18,-0.1,2.67,1.16,0.62,-0.15,-1.01,0.44,-0.39,2.07,1.09,-2.37,0.63,-2.76,-0.52,1.57,-1.39,-0.75,2.21,0.75,-0.05,-0.87,0.25 +C1980,5.33,1.14,0.03,-1.96,-2.37,-0.52,-1,0.62,0.02,0.67,-0.13,0.97,1.77,-0.11,-1.12,1.23,0.62,0.57,0.11,1.18,-4.49,2.92,2.64,0.45,2.89,0.29,-2.08,-1.26,0.73,-2.68,-3.42,-0.65,-1.25,-1.13,-1.78,1.08,-0.63,0.48,0.76,1.41,-0.37,0.12,1.61,1.01,0.09,-1.74,1.12,-0.06,2.08,0.46 +C1981,3.93,-7.6,1.32,2.13,4.07,-1.46,-0.11,-1.09,0.2,-2.23,1.27,-3.97,0.9,2.4,2.07,-0.28,-0.03,2.27,0.92,0.43,-1.45,-0.76,0.83,3.4,0.67,-0.61,2.13,-0.84,-0.75,-0.68,0.98,3.56,-1.1,1.2,1.67,-0.42,-1.8,-0.34,2.13,0.26,0.34,3.74,0.37,-1.96,0.64,0.81,-0.7,-0.28,-1.95,-2.53 +C1982,4.76,0.81,-0.91,-2.19,-0.77,-0.81,1.11,-0.85,-0.04,0.61,0.68,-0.04,-2.18,0.22,0.58,-0.2,-0.21,-1.26,-0.87,-0.05,-1.57,-0.16,-0.66,1.41,-0.63,0.55,0.91,0.27,-2.73,-0.86,1.11,2.69,0.87,-0.78,1.89,-1.41,0.34,0.55,-0.22,-0.17,-0.39,0.58,-2.84,2.22,-0.05,-1.42,0.07,-1.97,2.01,-0.2 +C1983,2.74,-2.38,-1.09,-0.46,4.54,1.89,0.47,-4.71,0.95,-0.71,0.17,-3.09,0.6,0.55,-1.65,2.16,2.09,-0.33,2.34,-0.78,-1.18,-2.83,-0.61,-2.51,2.81,0.05,-3.89,-1.6,1.81,0.17,-0.36,1.3,1.26,0.28,0.2,0.77,-0.44,0.7,0.47,0.07,0.33,-2.26,-0.76,1.19,-3.05,-3.22,-1.53,1.49,2.44,-0.89 +C1984,4.96,-2.71,0.16,0.11,0.12,-0.52,-0.15,-3.21,-0.84,-0.69,-1,3.31,0.15,-0.76,0.36,-0.42,-1.11,-0.88,-3.04,0.16,-1.35,1.67,1.82,0.75,-2.05,1.3,0.98,0.51,-1.08,0.24,-3.36,-0.31,2.49,3.16,1.22,1.21,-1.18,-0.27,0.98,-0.61,4.17,0.87,2.36,-0.22,-0.28,1.04,-0.34,0.12,-0.47,0.99 +C1985,-12.21,0.22,-0.44,-3.01,0.77,0.74,-0.68,-0.05,-0.37,-0.68,0.98,0.63,-1.55,-0.76,2.16,0.95,-0.68,0.12,-0.97,0.28,2.35,-2.35,-0.15,-0.28,-0.5,-1.79,-0.46,0.11,2.9,1.59,1.36,-0.38,-1.77,-0.37,0.07,-0.25,-2.47,-0.86,-0.4,-0.72,-0.29,-0.72,-0.02,-0.2,-0.93,1.23,-1.36,0.66,-0.81,-0.56 +C1986,5.92,0.29,-1.3,-1.76,-0.88,-1.08,0.3,3.07,0.89,-0.59,0.26,0.29,1.56,0.99,-0.38,-2.8,1.15,2.99,2.69,-1,1.79,-0.62,1.1,1.77,0.19,0.19,3.02,1.06,1.88,-1.91,-2.12,0.18,-0.52,1.21,-1.27,0.45,2.15,-2.55,2.88,-1,-3.2,-1.99,-0.48,0.98,1.8,-1.27,-1.42,-1.75,-2.83,-2.89 +C1987,-11.7,1.77,-0.11,-3.6,2.6,1.53,0.09,-0.11,-0.76,2.89,-1.39,2.01,0.51,0.73,0.49,2.08,2.35,0.69,0.1,-2.57,1.15,-0.33,-0.36,0.57,-1.41,0.33,1.02,1.16,-1.29,-2.02,-0.64,1.43,-1.35,0.73,-0.35,-1.81,-0.61,-0.82,0.92,1.95,0.43,-0.21,-0.15,0.62,-2.22,1.85,1.04,-0.07,-0.07,0.17 +C1988,1.16,7.17,5.08,4.99,0.53,-0.81,-0.4,-0.89,-1.69,4.29,0,0.41,0.55,-1.58,-2.87,1.68,-0.36,2.68,0.87,-2.09,0.53,0.21,1.25,0.66,2.45,1.4,0.39,2.97,-0.97,-0.57,0.34,1.57,3.76,-1,-3.3,-0.79,-0.82,-0.64,-2.89,-0.62,-0.24,-0.61,1.85,3.15,-0.16,-2.41,-1.26,-0.08,2.85,-1.23 +C1989,-6.8,3.1,-4.05,-3.76,4.76,2.67,1.04,-0.56,-0.51,1.36,1.25,-2.23,0.14,-1.55,1.92,1.97,-0.16,-0.25,2.18,1.22,1,4.73,-1.43,0.79,1.29,0.41,-0.02,-1.68,-0.28,-1.09,-1.61,-0.31,0.32,-0.41,0.39,-0.65,-2.54,-2.46,2.76,2.07,0.44,-1.81,-0.88,1.34,1.72,-0.89,-2.31,-1,1.57,0.41 +C1990,3.91,6.36,3.26,2.86,2.65,0.2,0.6,0.62,-0.1,-0.35,-0.23,0.14,3.21,-0.9,-0.05,-0.77,-2.15,-1.34,2.71,-1.81,-0.77,0.09,-1.65,1.25,2.34,-0.19,0.4,0.78,-1.24,1.13,1.38,-2.72,-0.6,0.16,0.76,0.28,-1.01,-1.18,-2.02,-0.86,-0.2,0.54,1.48,-1.19,1.7,-1.41,-2.18,1.89,1.63,0.4 +C1991,-10.09,0.92,-2.64,-4.8,2.38,3.49,-0.24,1.91,-3.72,2.9,-2.18,-0.78,-0.47,2,-0.71,-3.32,1.23,0.71,0.12,-2.5,0.79,2.28,-0.42,0.17,-2.48,1.66,0.68,-1.62,-1.5,-0.12,-1.82,-0.54,1.52,0.27,-0.89,0.38,0.8,-1.28,-1.08,-1.74,-1.84,-1.06,0.9,0.97,-2.62,2.12,-1.77,0.79,0.92,2.4 +C1992,3.21,1.49,-0.19,-0.79,-0.35,1.01,0.39,0.39,0.37,-0.12,-0.65,1.13,-0.77,2.21,0.91,-2.17,0.97,-0.2,-2,-0.81,1.78,0.93,1.96,-0.6,1.33,-0.43,1.53,0.3,0.03,-1.32,3.02,0.91,-0.32,-2.17,1.27,0.05,0.72,-0.83,0.15,0.66,0.14,-2.09,-0.02,-0.3,0.59,-0.28,-0.36,1.01,0.2,0.52 +C1993,-15.19,-3.95,1.26,2.47,-4.29,-6.14,1.64,0.8,-0.63,0.59,-0.24,0.05,-1.87,-0.53,-3.24,-0.08,-1.86,0.32,-0.21,-0.92,-1.41,1.27,-2.02,-1.61,2.13,0.61,-0.12,0.01,-1.94,3.01,-0.06,1.08,-0.02,-0.03,1.41,0.08,-0.71,1.08,-2.01,-0.24,0.99,-1.09,0.2,0.85,1.82,0.79,0.59,-1.53,0.01,-2.86 +C1994,5.06,0.04,-1.25,-0.25,-3.39,-1.11,-0.47,1.74,0.22,1.79,-0.3,0.69,-0.16,-2.85,2.43,-1.4,1.24,-2.83,-0.11,-1.58,-2.97,-0.48,0.83,0.29,0.52,2.03,-1.02,-0.39,1.64,-1.3,1.14,0.22,-1.07,2.22,0.69,2.85,-3.26,0.96,-1.63,3.31,0.45,1.08,-2.57,-2.85,1.07,-0.83,-1.45,0.74,0.53,-0.22 +C1995,-12.8,0,-1.37,-3.45,2.06,1.07,-0.53,-0.51,-3.36,-1.77,-1.48,2.18,0.56,0.57,-1.51,-0.32,-0.29,-1.91,0.15,-3.04,-0.87,-1.62,0.15,-0.71,-0.54,-1.21,1.53,-0.1,-1.28,-1.81,0.15,1.96,0.38,0.92,0.66,0.65,0.81,0.57,-0.87,-0.04,0.72,-0.83,-3.05,1,0.62,-2.99,-0.22,-0.73,-2.11,1.2 +C1996,4.79,1.89,-1.51,-3.17,-0.34,-0.12,0.83,0.3,0.79,1.28,-0.87,0.82,-0.62,1.37,-0.93,-0.19,-1.3,0.41,0.5,-2.22,-1.11,-1.79,0.49,1.41,1.78,-1.72,0.96,-0.41,-1.16,-0.81,0.73,0.46,-0.24,0.84,0.92,-0.24,3.39,-1.28,0.8,1.54,1.6,1.06,1.16,0.26,-0.11,-0.08,1.82,2.01,0.12,0.85 +C1997,0.78,-9.21,1.34,3.28,3.43,-1.25,-0.49,1.3,0.06,1.68,-0.31,5.62,-0.53,-0.65,-2.62,-0.18,-3.61,3.09,0.44,2.37,-0.58,-0.89,0.28,1.38,0.58,2.86,0.08,1.71,-1.4,-0.44,-2.06,2.19,-0.78,-0.91,-1.3,0.52,-2.58,-1.23,-0.55,2.03,1.11,0.59,-1.69,1.05,1.75,0.96,-1.22,-0.12,0.9,1.48 +C1998,-8.55,3.44,-2.14,-4.5,4.2,1.96,1.29,0.27,0.35,1.26,-2.1,-0.52,0.61,0.36,2.07,0.71,0.13,0.88,0.72,-0.36,-0.99,-0.88,1.78,-0.73,0.03,-0.98,1.3,2.33,-3.32,-1.97,-0.11,0.43,-1.82,2.01,1.03,0.39,-0.51,1.09,0.7,0.77,0.45,-0.24,1,0.29,1.79,2.64,0.6,-0.89,-0.05,-0.91 +C1999,4.03,2.09,-1.07,-2.87,0.32,0.53,-0.24,1.57,-0.34,-0.48,1.02,-0.91,-1.3,1.64,2.36,-0.94,2.14,0.66,0.87,1.88,0.41,0.27,0.04,-0.12,0.79,-1.58,0.63,0.16,1.14,1.2,-0.5,-0.72,0.1,-0.65,-0.9,0.18,-0.74,3.17,0.4,0.13,-0.05,-0.86,-0.09,-0.13,0.21,-0.7,0.8,-1.22,-0.76,1.5 +C2000,-12.72,-0.18,-0.69,-2.97,1.56,2.87,-1.45,-1.24,-0.47,0.4,-0.71,2.67,0.09,-2.71,-1.41,0.19,-0.44,-0.16,2.44,-2.89,-1.85,-0.77,-3.96,-1.01,0.33,-0.16,0.65,1.94,-5.01,-0.17,1.18,-1.69,-0.31,-1.17,0.03,1.82,-1.86,0.98,-0.6,0.33,-0.69,2.03,-0.11,0.54,0.12,3.84,-0.55,-2.41,-1.44,-2.72 +C2001,2.96,-8.91,1.46,2.84,1.78,0.15,-0.76,-3.27,-1.2,0.42,2.88,-4.11,0.37,-3.38,-1.16,0.81,-2.44,1.6,0.88,-1.54,2.25,-1.09,1.53,3.63,1.59,-0.04,-1.12,2.61,-0.43,-2.73,0.8,-2.12,-2.79,0.93,-3.43,0.57,-0.69,1.29,-0.33,0.43,-0.2,-2.18,1.09,-0.67,2.03,2.32,-2.17,2.21,-0.08,4.24 +C2002,3.62,-3.55,1.64,0.85,1.42,1.55,-0.61,-5.51,1.87,-0.68,-1.1,-3.41,-2.2,0.55,-0.55,1.21,-0.78,2.06,-1.36,-4.67,0.01,-0.58,2.39,-0.75,2.9,-0.07,1.53,-0.08,1.22,1.73,0.96,-2.7,1.89,1.8,0.08,4.98,0.35,0.37,0.8,0.75,1.13,0.26,2.04,-1.68,-1.88,-3.11,-0.62,-0.6,-2.1,-2.93 +C2003,3.35,-1.07,-0.96,-0.55,-4.59,0.21,-0.34,-2.3,-1.11,0.85,1.22,1.39,0.54,-0.32,1.66,-1.64,-2.41,-1.89,1.06,0.88,3.08,0.82,-0.19,1.2,-2.65,0.16,-0.13,-1.37,1.19,0.32,2.1,1.07,0.99,1.85,1.35,0.34,0.93,0.27,-0.89,-0.07,-3.3,-0.35,-0.46,0.4,0.45,2.72,0.03,1.5,2.52,2.22 +C2004,-0.39,-5.42,2.74,2.52,-8.54,0.17,-4.49,-3.48,-3.79,-1.5,5.27,-1.91,2.25,2.62,-0.38,0.94,-2.72,-1.81,-1.74,1.15,-1.97,-1,-1.1,2.54,5.02,2.53,-1.11,-0.24,2.33,-0.76,-1.37,-1.33,2.77,1.7,1.12,-0.3,-1.44,-0.3,1.48,-3.46,-0.58,3.04,-0.09,-1.19,0.83,1.12,-0.44,-0.7,4.31,0.2 +C2005,6.63,1.58,-0.85,-2.77,0.71,-0.1,0.88,0.16,2.69,-0.17,-0.54,-0.49,-1.31,0.68,1.07,-1.19,0.95,0.16,-4.42,-0.82,-0.33,0.57,1.99,-1.91,-0.23,-0.67,-1.03,-0.69,-0.56,1.09,0.23,0.69,-0.22,-0.9,-1.73,0.3,-0.06,-5.53,-3.92,2.64,-2.68,-1.58,-1.67,-4.82,0.29,-2.19,-3.19,-1.56,0.71,-1.18 +C2006,5.24,1.82,-0.48,-2.27,0.76,-0.34,-0.33,0.41,1.65,-0.59,-2.97,-0.21,2,0.09,-2.8,2.03,-0.19,1.49,0.29,-0.3,2.11,0.97,1.12,1.94,-1.28,0.51,-5.51,-1.41,-0.83,1.72,1.36,-0.76,-3.51,-1.89,-1.35,-0.59,-0.44,1.21,-1.64,-1.02,1.54,1.15,-2.14,-0.13,-0.68,-1.39,1.42,2.23,-2.45,-0.54 +C2007,3.67,-2.48,-1,0.76,1.55,-0.18,0.44,-7.02,1.36,-2.18,1.39,-2.17,1,0.47,-1.05,1.94,-0.9,1.33,0.65,-0.67,-0.06,-1.45,0.38,-0.87,-0.03,0.08,-1.73,-0.38,0.22,0.4,-1.81,-0.61,-0.18,-0.85,0.84,0.28,-0.04,-1.5,-1.47,-1,0.64,1.75,1.81,1.19,-1.24,0.28,0.34,0.64,-0.34,-2.17 +C2008,3.25,-2.19,0.01,-0.65,-3.68,-0.12,-0.78,0,0.95,0.37,0.61,0.79,0.65,-0.05,-0.44,-0.04,1.52,-3.23,0.79,1.01,1.67,1.36,-0.24,3.83,-0.79,0.67,0.35,-2.36,1.88,-0.09,0.09,1.95,0.17,0.98,-0.04,-0.01,-0.96,1.98,-0.09,1.25,1.08,-0.28,-0.27,0.47,0.48,-0.08,1.29,1.86,1.43,-1.44 +C2009,-13.69,0.73,-0.87,-1.72,4.12,0.06,-0.16,1.25,-0.41,-0.79,-0.58,-1.25,-2.14,-1.34,0.74,1.76,-0.69,-2.12,2.88,0.72,2.39,-2.59,0.36,0.83,2.69,0.51,4.21,-0.61,1.42,1.3,0.4,-0.87,-1.42,0.48,-0.3,0.68,3.47,0.39,-0.21,-0.45,0.58,-1.24,0.14,0.91,-1.07,1.38,-3.27,-2.28,0.6,-2.25 +C2010,5.23,0.63,-1.75,-2.54,6.08,0.58,1.03,0.83,2.46,-0.03,0.63,-1.14,-1.05,-3.21,-1.83,1.96,1.82,0.17,0.87,0.65,-1.46,0.1,-0.35,0.11,-0.87,1.04,0.86,-1.08,1.47,0.66,0.51,0.85,1.7,1.33,-0.06,0.99,-1.69,1.41,-1.03,1.03,1.53,-1.57,-0.71,2.22,1.3,-0.7,-0.88,1.31,0.49,-1.56 +C2011,3.86,-2.35,0.21,-0.17,2.06,0.42,0.78,-5.45,0.74,-1.34,-0.59,2.46,-1.26,-0.14,0.92,0.3,0.53,1.05,0.09,0.36,1.29,2.8,-0.42,-0.64,1.3,-0.87,-0.93,-1.45,-1.36,-0.86,-0.91,-3.19,-0.65,1.4,-3.96,0.27,0.76,-1.62,1.33,2.42,-1.39,-4.55,1.21,3.48,1.95,-0.9,3.21,0.81,-0.05,-1.24 +C2012,2.55,-7.87,1.21,1.48,-1.89,0.8,-1.64,-3.55,-1.99,-0.96,-2.89,4.48,2.56,-2.06,-4.62,-0.71,3.55,-6.57,1.37,1.99,1.8,0.92,0.8,0.98,-1.64,-1.82,1.33,-1.82,0.6,0.44,0,0.04,2.79,2.79,-0.03,-1.53,-1.1,-0.87,-3.42,3.42,-2.87,-2.78,-0.06,-1.64,-2.66,-1.22,-1.95,2.67,0.84,-1.94 +C2013,6.38,1.04,-2.41,-0.63,-0.92,-0.03,0.76,0.58,0.85,-1.73,-0.19,-0.39,0.61,1.76,2.42,-1.04,-0.36,2.04,1.21,1.37,-0.11,-2.69,0.44,1.56,0.54,1.81,0.66,-1.56,2.88,0.7,-3.46,-1,2.28,0.2,-0.24,-0.55,-2.12,-1.42,1.48,0.19,-1.81,0.78,-0.36,0.74,1.9,0.17,-2.27,0.46,1.18,0.29 +C2014,4.38,0.21,-2.69,-1.29,-2.81,-0.5,-2.21,2.89,0.26,0.58,1.29,-0.43,0.8,-0.15,1.29,-0.43,-0.72,0.91,1.13,0.37,-1.15,0.38,1.36,1.47,-2.13,-1.67,-1.09,-1.55,2.11,-3.01,2.14,-0.59,1.82,0.94,-0.14,4.08,0.68,-0.25,-2.16,-0.62,2.13,0.85,-0.15,0.69,-1.76,2.84,0.51,0.71,-0.61,1.41 +C2015,3.49,-0.51,0.1,-1.56,-1.96,-0.48,-0.11,0.8,-0.68,-0.35,0.1,-2.23,1.96,0.11,0.32,1.92,0.34,-1.08,0.78,-2.04,-4.83,0.8,-0.5,0.14,1.62,-0.27,1.16,-2.6,-0.98,1.17,1.58,0.04,1.37,-0.9,-0.19,-1.58,1.61,-1.06,0.26,0.81,0.78,-0.12,0.75,-1.32,-0.34,-0.84,-0.33,-1.23,0,1.37 +C2016,3.16,5.98,3.19,2.41,-0.04,-0.66,-1.03,-0.36,-1.57,-0.04,-0.72,-1.89,-0.41,4.06,0.63,0.95,2.11,0.43,-2.55,-2.18,0.98,-0.82,-1.64,0.43,0.7,2.29,2.27,2.7,-0.76,0.99,0.92,3.91,0.53,0.08,2.1,-1.88,-2.08,-0.52,-1.06,-0.53,-1.45,-0.66,0.51,-0.19,-2.09,-0.05,0.05,0.92,-1.64,-1.63 +C2017,4.29,-7.77,1.89,3.14,4.49,0.54,1.6,-1.85,-0.4,-2.53,1.69,-5.35,-0.96,-1.6,1.22,2.32,2.86,0.84,1.73,-3.98,-3.32,-1.08,2.68,-0.93,-0.22,-3.64,5.77,-1.92,1.04,-0.2,-0.3,-1.46,0.19,1.46,-0.82,-2.25,-2.6,1.19,-1.37,1.82,0.05,1.02,2.41,3,2.07,-0.47,-2.46,0.9,-3.24,1.86 +C2018,-1.04,5.3,-42.54,28.51,1.3,2.52,-0.11,-3.9,1.03,5.18,5.29,4.52,4.13,8.54,-0.43,-1.73,3.13,-0.36,-2.95,2.25,0.14,-0.6,-0.16,-0.82,-0.9,1.84,-0.37,-1.17,-0.29,1.39,1.15,-0.47,-1.53,2.4,3.23,-2.58,1.34,1.45,-1.16,-0.14,-0.61,1.43,-1.88,0.16,0.73,1.55,-0.14,1.29,-2.41,0.16 +C2019,3.93,-2.98,-1.61,0.68,1.79,0.38,-0.46,-4.58,1.87,-1.91,-1.75,-0.46,-0.91,1.19,-2.53,-0.56,-1.43,0.53,1.92,-0.81,2.34,-2.08,-2.46,1.52,0.99,4.84,5.53,1.34,0.09,1.63,-0.13,3.41,-1.34,1.74,1.55,-1.31,2.16,0.09,0.87,-2.96,1.15,0.87,4.22,0.05,-0.28,0.55,-2.51,-0.8,-0.37,0.73 +C2020,4.46,0.16,-1.25,0.05,-3.13,-0.28,-1.89,2.47,-3.11,-4.22,-2.94,1.36,-1.89,2,0,-1.97,1.48,-0.55,-2.2,-3.76,0.55,-2.06,-1.78,0.12,0.72,2.28,-0.99,-0.94,1.32,1.14,1.89,-3.95,2.86,0.98,1.83,-1.34,1.67,-1.33,0.66,-0.68,0.79,1.57,2.22,0.63,2.31,-0.14,-0.93,-0.02,-0.63,0.13 +C2021,5.08,1.46,-1.4,-2.68,-1.03,-1.4,0.11,1.77,1.55,-1.04,-1.43,-0.52,-0.57,1.6,-0.84,0.87,0.89,0.39,0.16,1.22,0.51,-1.08,1.59,-1.17,-2.28,0.95,-0.63,0.45,-0.41,1.96,0.45,-0.45,-0.38,-0.13,2.86,0.47,0.05,-0.84,0.36,1.51,3.23,-0.29,-1.42,-0.78,-3.05,-0.95,-0.7,0.67,-0.49,-1.47 +C2022,5.51,0.82,-1.07,-2.85,-0.06,-0.5,0.34,-0.03,1.24,0.13,-1.07,1.25,-0.24,0.68,-0.09,-1.71,-1.15,-0.18,-0.52,-0.53,-0.3,0.13,-0.33,0.82,-0.34,0.88,-1.58,0.88,1.94,-1.08,1.88,0.46,0.44,0.61,-0.53,1.89,0.09,-0.57,-0.15,0.37,-1.11,-0.43,-1.88,0.65,-0.25,0.35,1.52,-2.59,-0.54,0.54 +C2023,-14.52,-1.48,1.79,0.57,-4.1,-5.7,2.58,-0.26,1.15,1.2,-1.51,0.52,1.3,-0.31,-0.59,4.28,-1.94,-2.4,-0.9,-1.42,0.64,0.07,-3.45,0.43,1.41,-1.05,2.62,0.6,0,0.77,-1.4,-0.15,-0.48,-1.26,-0.48,-3.65,-0.66,-3.28,-0.53,-1.59,0,-0.1,0.98,-2.17,1.63,-2.47,0.1,-1.77,-0.26,-2.45 +C2024,4.8,0.59,-1.44,-1.73,-2.27,0.03,0.21,1.8,-0.54,-1.84,-2,0.03,-1.58,0.99,0.36,-1.76,2.87,-0.12,1.02,2.58,0.05,1.29,3.67,2.39,1.73,1.17,-0.08,-0.85,2.75,-0.48,0.62,2.01,0.8,-0.26,-0.23,1.98,1.3,-0.18,-0.59,-0.23,0.88,-0.31,2.03,0.75,-0.57,-0.95,2.6,1.91,0.61,1.19 +C2025,-14.57,-1.96,1.5,1.72,-1.56,-1.22,-1.19,-0.35,1.01,-2.88,2.96,-0.43,1.46,2.11,-0.01,-0.02,1.53,-2.04,-0.07,1.27,-1.44,-2.37,-2.86,-2.13,-2.99,0.5,-0.32,0.73,0.38,0.26,0.83,-0.01,-0.98,-0.22,2.5,2.42,-0.33,0.93,-0.99,1.1,0.74,-0.31,0.96,1.22,1.28,-2.1,2.77,-0.4,1.34,-0.41 +C2026,-15.81,-0.07,0.77,0.17,0.08,0.99,-0.68,1.59,-2.95,-8.3,-0.03,1.57,0.35,0.51,-1.56,-2.25,-3.34,0.04,-0.47,-0.56,0.1,-2.07,0.18,1.44,-4.34,-3.59,-3.76,1.43,0.99,-2.78,1.28,-0.1,-0.09,-0.63,1.19,-1.91,-3.3,-0.19,4.97,-2.45,-2.36,-3.17,-1.24,0.2,2.1,-3.79,-2.41,1.51,-1.48,0.83 +C2027,3.86,-11.82,1.63,4.49,8.42,-0.04,0.63,1.44,-0.3,1.4,1.08,-0.03,1.1,2.03,5.51,-0.48,-1.63,0.41,2.49,-0.13,-1.94,-1.42,-2.58,1.36,1.21,1.16,-4.42,2.35,-1.6,-0.65,1.28,1.33,-0.49,0.38,-0.6,0.51,-1.57,3.2,2.12,-0.93,-2.7,-0.44,1.48,0.61,3.19,-1.36,4.43,2.62,-0.04,-2.17 +C2028,5.52,1.9,-2.01,-2.65,1.33,0.01,0.93,-3.21,1.11,1.29,-2.53,0.5,-1.03,-1.09,-1.55,1.13,-1.01,0.07,-0.03,1.42,-1.64,-1.01,-0.44,0.17,-0.19,-0.91,0.77,0.91,-1.97,1.07,-0.91,-2.03,1.64,0.36,0.83,0.1,-0.18,0.71,-1.15,-0.34,-1.88,-2.85,-0.36,0.74,-0.46,-0.05,-2.67,1.77,1.01,-0.71 +C2029,0.59,5.2,9.1,8.73,-4.1,0.48,-3.52,-0.24,-3.87,0.36,3.28,-2.06,1.28,1.13,-3.19,2.83,-2.42,2.45,-1.45,0.46,1.06,0.72,0.23,-0.16,0.15,-0.24,1.47,0.62,-1.48,-2.63,-0.7,1.98,-1.41,2.66,0.57,2.92,3.1,0.01,1.03,2.48,0.15,1.27,3.03,-1.09,1.45,4.57,-2.5,0.19,-1.13,0.55 +C2030,-13.49,-1.55,0.04,-0.59,-1.2,-3.48,3.44,0.27,-0.47,-0.97,1.35,1.13,-0.73,0.61,0.2,1.21,-0.74,-2.76,1.33,0,0.11,1,-0.62,0.48,-0.14,1.51,-0.5,1.54,0.54,-0.39,-2.67,-0.41,0.52,1.13,0.51,-0.48,-1.89,-3.65,1.25,0.78,-0.24,-0.99,-0.76,0.66,0.63,-0.15,-1.25,1.29,-0.54,-0.62 +C2031,-12.33,0.35,-0.62,-0.74,-0.92,1.82,-2.96,1.11,-2.69,-4.59,0.41,-1.45,-1.14,0.47,1,-1.78,2.87,-0.05,-1.34,-1.01,1.05,-0.48,-0.51,-1.37,-1.36,0.17,1.31,0.04,-2.5,1.81,1.08,0.08,-2.19,0.59,-1.82,-2.12,-0.49,0.12,2.17,0.32,-0.67,1.28,0.4,3.83,1.37,-0.14,-1.6,-2.27,-0.51,2.83 +C2032,4.14,2.58,-2.01,-2.92,0.34,-0.75,0.01,2.14,-0.26,0.73,-0.89,-2.03,-0.78,2.79,0.95,1.03,0.8,-1.62,-1.29,0.79,0.08,1.62,-0.54,2.1,0.01,-0.72,-0.04,-0.37,-1.76,1.69,-1.74,1.22,-0.18,-0.07,1.06,-1.08,-0.68,2.39,-0.06,-0.55,-0.16,1.69,0.52,-1.08,-0.33,-1.4,-1.03,-1.06,1.7,1.83 +C2033,5.97,-0.31,-1.67,-1.3,4.24,1.02,2.04,-4.16,1.94,-1.15,-0.73,-1.62,-1.44,1.19,0.45,0.78,-0.96,2.03,1.52,-2.18,-2.02,2.88,-1.32,0.97,1.4,-0.74,-0.6,-0.33,0.21,0.39,0.81,0.48,0,0.58,-0.59,0.29,-0.71,-2.02,-1.17,-3.05,-1.21,0.72,1.79,-0.64,0.65,-2.18,-2.07,0.74,-0.19,-1.36 +C2034,4.21,0.58,-1.49,-2.89,0.27,-0.64,-0.61,-1.12,-0.03,1.24,0.45,1.02,-0.07,-1.91,0.77,-1.45,-2.05,-1.34,1.03,-0.29,0.12,0.44,-0.83,0.93,2.02,-4.87,-2.9,0.77,-1.08,2.45,0.85,-2.86,0.86,-0.87,1.36,1.18,1.29,-0.84,-1.1,-0.3,0.88,-0.09,-1.07,0.28,-1.03,-0.6,2.14,-0.68,0.36,2.7 +C2035,5.01,0.37,-0.62,-1.56,-0.06,-0.09,1.52,-4.31,-0.29,-2.03,0.06,-2.6,0.36,2.71,-0.88,2.43,0.07,-0.17,-0.2,2.08,2.86,-1.06,0.43,2.16,-0.51,0.24,-1.29,-0.26,-0.84,0.94,1.46,2.68,0.84,0.2,-2.19,0.72,-1.61,-1.1,-0.79,1.48,1.81,-0.88,0.03,1.75,-0.19,1.54,0.43,0.94,0.24,1 +C2036,1.89,-4.34,1.58,0.88,-7.26,1.56,-2.67,-1.09,-1.63,0.03,-0.05,-2.46,-0.75,0.73,2.18,1.06,1.77,1.83,0.3,0.05,-1.75,-1.19,1.48,2.92,0.9,2.04,-1.3,2.19,-2.57,0.24,0.74,-1,3.75,-0.98,-0.86,-0.82,2.51,1.22,0.12,-0.78,0.2,0.33,-0.36,-2.07,1.13,-0.04,-1.34,-0.06,0.49,-1.86 +C2037,3.81,8.27,4.07,3.94,3.78,-1.97,0.56,-0.54,-0.62,-1.68,-0.28,1.45,2.53,-0.18,1.24,-2.57,-0.46,-1.2,1.37,0.14,-0.62,-1.29,-1.02,-2.69,1.36,0.53,-1.11,-2.12,0.36,1.58,0.82,0.23,-0.21,-2.28,0.7,-0.59,1.48,1.43,2.05,-1.27,0.68,0.65,1.15,0.54,-0.75,-0.68,1.01,-0.38,-0.79,0 +C2038,3.75,-3.65,0.18,-0.18,1.28,0,1.22,-4.17,-0.47,-0.01,-2.31,2.06,-1.74,0.84,2.07,-3.84,0.87,0.22,2.4,-2.92,0.51,0.39,-0.92,-0.68,0.23,-0.64,0.04,-0.04,-3.38,-1.15,1.51,0.76,0.62,2.26,1.61,-1.29,1.68,3.66,0.13,-1.12,1.1,-2.74,0.98,-0.35,0.67,-1.12,-2.07,0.15,-0.07,2.04 +C2039,1.68,-1.13,-0.54,-2.35,-3.11,-1.15,-0.93,-1.3,-0.36,0.6,2.4,-1.24,-1.3,0.52,2.75,-0.77,-1.24,-1.43,1.6,-3.01,2.18,1.06,-0.36,0.43,-1.01,-0.15,-1.48,-0.32,0.96,-1.74,2.67,0.47,-1.25,1.59,-1.48,0.08,-1.02,3.63,-1.43,0.27,-1.53,-0.04,0.84,-0.67,3.52,-0.17,1.15,0.66,0.21,0.9 +C2040,-9.85,1.92,-2.29,-2.58,3.13,3.11,0.16,-1.05,-1.35,2.97,0.41,-0.55,0.36,0.7,0.63,1.36,1.66,1.09,-1.61,-2.4,-0.29,-0.56,2.84,1.11,1.85,1.87,-1.04,0.08,0.96,0.73,-1.6,-1.08,1.91,0.76,1.77,1.47,0.08,0.8,0.98,-1.01,2.2,-0.59,0.2,0.22,-1.08,0.93,0,2.29,-0.12,2.63 +C2041,3.26,-9.64,2.09,1.67,6.53,-1.24,1.02,0.11,0.99,1.19,-1.79,0.62,1.51,-2.2,-1.24,-1.27,4.12,-1.83,1.11,1.07,-1.23,3.24,-1.63,-3.68,0.66,-2.31,2.22,4.16,2.11,-1.36,4.57,-2.98,-0.94,-1.95,-5.02,1.09,-2.13,0.99,1.32,-3.16,-0.26,2.18,-0.07,0.21,-1.94,-1.66,-3.63,-1.03,-1.26,0.44 +C2042,4.59,1.31,-0.71,-1.9,0.4,-1.13,1.39,1.31,1.85,0.28,0.1,-2.52,0.34,0.51,0.93,-0.63,-1.86,-1.68,-2.83,3.26,-1.79,-0.08,1.42,-0.04,1.25,-2.11,-0.26,0.09,1.93,1.46,1.13,-1.95,-0.84,-0.3,-0.97,1.12,-0.63,-0.18,1.11,-1.43,-1.28,2.41,0.68,2.21,-1.18,-0.74,-1.17,-1.31,0.52,-1.06 +C2043,3.92,8.4,2.79,2.44,3.53,-1.01,1.61,0.14,-0.88,-1.21,0.15,-2.2,0.33,-0.38,1.98,-1.75,0.17,-0.24,-2.8,-0.7,1.33,0.12,-0.07,-0.99,-1.08,0.02,-0.73,-0.37,-2.05,-1,-1.45,1.95,2.46,1.19,-0.77,-0.31,0.8,1.36,2.59,1.19,0.61,2.09,0.6,-0.13,2.11,2.27,0.24,-3.49,-0.95,0.76 +C2044,5.49,2.38,-0.87,-2.56,-0.28,-0.09,0,2.17,-0.11,0.18,-2.73,2.48,0.2,3.25,-0.88,0.05,0.83,2.13,0.06,-1.32,0.05,0.03,0.02,0.95,-0.4,-2.67,0.39,0.67,2.8,0.79,1.57,0.37,-0.08,4.04,0.53,-0.01,-0.58,3.32,-0.06,0.09,-0.43,1.14,1.25,-1.48,-1.35,-1.58,1.59,-1.17,0.19,0.92 +C2045,-14.95,-2.77,3.16,3.03,-4.24,-6.58,5.17,-0.03,1.4,-1.31,0.34,1,-2.81,-0.25,-2.86,1.91,1.55,0.15,0.87,1.85,-1.5,0.01,1.14,2.53,-2.6,-0.1,0.94,-0.86,1.09,0.64,2.21,0.25,-2.69,-3.13,4.48,1.51,-2.17,0.3,-4.01,-1.4,-0.84,-1.42,0.01,-2.01,0.17,-3.28,2,-0.9,0.89,0.53 +C2046,3.49,-2.11,-0.82,-1.84,-4.62,-0.3,-2.45,0.77,-0.95,-0.42,-0.49,-0.84,0.97,1.17,-0.39,-0.84,0.96,-4.12,0.67,-0.34,1.08,0.6,0.4,-0.61,-3.36,-0.52,-0.64,3.49,0.31,0.37,-2.23,3.75,0.53,-0.91,1.91,-0.55,-2.07,-2.33,2.16,0.94,-1.11,-2.99,-1.06,-2.02,-2.52,-3,2.22,0.94,0.49,0.19 +C2047,4.57,1.12,-1.04,-2.96,-1.73,-0.51,0.06,1.83,-0.63,-0.74,1.43,1.05,-0.6,-0.08,-0.18,1.81,0.37,1.63,-0.54,0.62,1.58,-1.61,-0.56,-1.02,0.74,1.64,-0.07,-0.32,-0.7,-1.92,-0.85,0.8,-0.59,0.2,0.14,-0.17,-1.98,1.11,0.59,1.11,-1.09,0.77,1.4,-3.46,0.41,-1.35,-0.66,0.32,0.54,0.23 +C2048,5.47,1.69,-1.34,-2.02,-0.5,0.09,-0.95,1.52,0.48,-0.47,1.03,-0.73,-0.13,0.15,-1.05,0.3,0.24,1.24,0.09,2.55,-0.44,3.15,0.9,-0.11,1.13,1.89,0.62,3.13,0.43,-1.11,-1.12,0.44,-0.38,-0.19,-1.71,0.68,-1.98,-0.78,-0.77,-0.47,-0.33,0.01,-0.59,-1.2,0.96,0.38,2.82,0.63,0.24,1.93 +C2049,1.91,-0.73,-1.8,-2.8,-2.65,0.17,-1.57,-1.07,-1.73,2.96,0.3,0.02,2.01,-3.16,2.38,-1.19,0.73,2.1,-0.63,-0.76,0.91,0.08,1.2,-0.14,-0.42,-0.47,0.21,0.47,1.04,1.59,0.2,4.14,-0.24,-1.12,-0.73,-0.43,2.18,-0.86,1.41,-1.85,2.52,0.76,-2.54,-0.54,4.7,2.19,0.6,0.23,0.72,-1.09 +C2050,3.82,7.14,4.86,4.35,3.24,-1.22,0.72,-0.62,-1.48,-0.78,2.09,-1.45,-0.47,0.52,-0.76,-2.62,-3.05,-2.34,-0.92,0.63,-1.44,1.99,-2.03,-0.93,0.22,3.48,1.68,0.53,-0.08,-0.85,0.46,1.12,2.16,-1.15,2.27,2,-0.84,-2.2,-0.14,1.01,1.61,-3.18,-0.08,0.8,-1.33,0.76,-2.4,-0.87,-2.15,-0.88 +C2051,2.32,-9.03,2.25,1.49,-0.16,-1.51,-3.11,-0.12,-2.08,0.91,-0.06,1.38,-0.52,-2.87,-1.49,0.03,2.04,-2.57,-4.9,-2.09,1.82,-2.6,-0.45,-1.08,2.07,2.63,0.66,-1.84,2.71,-1.27,2.37,1.46,3.32,0.22,-0.59,0.93,0.27,-0.8,0.18,-0.41,-2.02,-0.66,2.31,-0.87,0.07,-2.52,-0.94,0.85,0.39,-0.18 +C2052,2.48,7.2,6.36,6.42,0.1,-0.19,-1.62,0.03,0.73,1.38,3.54,2.26,-1.13,-3.53,0.68,1.57,1.65,3.11,-1.81,1.08,3.16,1.26,1.7,0.91,-2.03,-1.11,0.07,-1.75,0.65,2.51,1.03,4.2,-3.01,1.17,0.75,-1.66,0.33,-0.84,0.16,-1.82,1.14,1.72,1.16,-2.07,-0.17,1.71,-1.72,-0.48,1.1,-1.65 +C2053,4.73,-5.56,0.79,1.74,3.18,-0.36,0.41,-0.12,0.02,-1.09,-1.67,1,0.64,3.39,2.57,-0.35,1.58,0.28,1.62,-0.73,2.2,-0.26,0.86,-0.37,2.32,-1.18,1.66,1.28,-0.46,0.64,-4,-0.59,1.5,-1.11,0.2,0.06,-0.64,0.3,-0.97,1.25,1.52,1.99,-0.17,1.74,-0.88,-1.1,-1.61,1.24,-2.95,-0.75 +C2054,5.69,3.07,-1.79,-3.1,3.16,-0.91,3.02,0.23,1.36,-0.7,0.27,-0.82,-0.68,1.26,-1.21,1.42,1.37,0.79,-1.04,3.19,2.03,1.74,-1.89,-1.42,-0.35,-1.16,1.44,1.03,0.12,0.09,0.67,-0.43,1.08,-0.57,-0.75,-1.51,0.17,3.4,0.19,0.55,1.1,-0.18,0.2,2.15,-0.76,1.5,-1.51,-0.04,0.89,-3.23 +C2055,1.68,-13.68,2.64,4.47,6.31,-0.64,-0.32,2.29,2.72,0.14,-1.18,-4.31,-1.31,-0.77,2.5,0.41,0.95,0.59,1.31,-3.5,1.12,-4.82,-1.91,1.69,-0.34,-0.28,3.38,-2.38,1.43,-0.61,2.03,1.11,-0.44,0.16,4.52,-1.36,-1.57,-1.73,-1.55,1.74,0.7,-0.64,2.38,-3.4,-3.2,0.42,-0.12,-3.21,-0.16,-2.33 +C2056,4.6,0.68,-1.81,-2.87,1.87,-0.5,0.54,-1.41,2.23,0.79,-1.32,1.37,1.06,-0.16,-1.62,-0.45,-0.92,0.45,0.9,1.54,0.73,-1.1,-0.39,-0.18,0.06,1.09,1.22,0.21,-0.47,1,-1.81,-1.06,-0.13,0.44,-2.75,0.68,0.3,1.59,-0.88,-0.21,-1.59,0.7,-0.42,0.37,3.01,-2.77,-0.83,0.88,0.19,0.89 +C2057,5.66,-0.12,-2.14,-2.21,-0.07,0.06,0.84,-0.75,1.18,0.02,-0.95,-0.46,-0.58,1.29,-0.72,0.13,0.47,-0.56,-0.81,0.82,2.06,0.63,-1.24,-1.45,-0.12,0.54,-0.32,-1.44,0.87,2.07,2.94,0.3,-1.27,1.16,-1.55,-0.67,0.65,-0.49,1.42,-0.99,0.19,1.32,-0.27,-1.51,0.56,0.18,-0.16,0.68,-2.51,0.89 +C2058,2.38,6.41,8.24,8.99,-1.62,-0.11,-1.19,1.37,-1.21,-0.03,0.46,-1.45,-1.13,2.84,-0.2,-0.03,0.21,-0.45,0.05,-1.86,-0.19,1.02,0.46,-1.34,-0.12,1.62,-0.08,0.94,-0.87,1.1,-0.08,0.76,-3.13,2.9,-0.03,1.43,2.29,0.92,-0.41,0.04,-1.51,1.13,-1.04,-0.12,0.21,4.42,2.26,2.86,2.35,-1.92 +C2059,4.24,0.2,-1.29,-2.84,-1.49,0.19,0.08,-2.06,-1.33,0.83,-0.39,0.67,-0.47,-1.64,-0.3,0.13,-2.69,-2.43,-0.6,0.78,2.03,2.05,1.29,-2.28,0.35,-0.85,-0.31,0.07,2.21,-0.9,1.68,-0.68,0.43,0.09,1.73,0.3,-0.57,-1.23,-0.91,-0.6,-1.59,-0.02,1.11,-1.49,0.28,0.69,-1.07,-1.68,-3.46,-1.17 +C2060,-10.77,0.46,4.8,3.2,-3.88,2.1,-8.34,0.63,10.85,-2.06,1.54,0.24,3.44,-1.17,0.52,5.18,-1.49,-1.54,-0.96,-0.16,0.05,-1.6,-2.66,-0.9,0.34,3.02,0.55,0.92,-0.17,-2.19,3.05,-1.27,2.09,0.48,0.5,0.1,-0.04,-1.13,2.38,1.72,-1.4,-0.06,-0.16,-0.37,-1.38,0.82,-0.53,-0.33,1.32,-0.66 +C2061,4.87,0.5,-2.32,-3.08,1.13,1.39,1.06,-1.37,-0.11,1.3,-1.71,-1.46,-1.03,-1.92,2.05,0.19,-0.28,-2.01,-1.82,-0.35,-1.17,-0.18,-0.86,1.68,-0.78,-1.85,0.26,-4.05,0.69,1.76,2.87,-0.62,1.52,-0.14,0.22,0.7,0.9,1.75,0.56,-1.83,-0.61,1,-4.74,-0.58,0.19,0.74,-1.24,1.95,-0.15,0.08 +C2062,-14.42,-2.3,-2.58,0.38,-0.31,3.62,-4.85,0.59,-2.22,-1.91,-2.79,-0.06,-0.03,0.86,-0.82,-2.58,-1.05,-0.92,-0.67,1.53,0.74,-3.08,1.29,-1.65,0.38,-1.27,-2.49,-1.2,-0.74,-1.92,-1.22,-2.24,1.25,0.51,0.36,0.58,-2.84,-0.68,4.22,1.55,-1.59,-0.69,0.88,0.35,0.75,-1.12,-3.04,2.68,1.88,0.78 +C2063,-13.26,-3.04,1.52,2.09,-4.4,-8.05,3.83,0.31,1.5,1.13,1.51,1.03,-1.02,1.3,-1,2.82,2.38,-2.86,0.6,0.24,0.08,-2.13,5.33,-3.09,-1.45,-0.41,-2.1,-2.13,1.75,7.62,-7.75,-3.61,-0.49,1.06,-4.92,-0.21,2.15,-2.6,0.59,-1.32,-3.74,2.63,-0.04,1.1,-1.01,1.1,-3.04,3.2,-0.54,1.17 +C2064,3.2,6.43,5.26,6.07,1.05,-0.03,-0.71,2.83,-2.26,1.33,-0.34,1.5,-1.83,-1.44,3.55,4.7,0.35,0.19,-1,-1.95,1.87,-0.02,3.53,0.65,-1.96,0.03,0.37,-4.01,2.99,-0.26,-0.06,-1.65,-1.4,1.37,0.36,-2.83,-2.24,2.89,-0.08,0.86,-0.11,-0.34,-1.15,-0.03,0.44,-1.9,-3.48,-0.58,-0.2,-0.08 +C2065,5.15,-2.22,-0.45,-0.24,2.06,-1.09,-0.57,-4.4,-0.04,0.11,-1.27,0.57,1.17,-2.44,2.63,1.11,1.53,2.7,-1.43,1.06,1.16,-0.28,-0.69,-2.03,-4,-0.84,-0.6,-0.32,1.17,0.53,-0.44,1.85,-1.59,1.13,1.94,-1.38,2.62,-0.64,-0.11,0.14,1.34,1.33,1.85,-1.27,0.86,1.9,1.26,-0.04,-0.66,2.03 +C2066,4.66,-0.58,-1.87,-2.19,-0.81,-1.75,1.27,-1.23,0.53,0.7,-1.2,-1.05,0.57,0.08,-0.42,0.58,-0.99,1.16,-2.22,0.71,-0.18,-0.73,-1.31,-0.02,0.3,0.1,-1.15,0.24,1.9,0.66,-1.02,-0.99,-0.17,0.77,0.07,1.13,-0.4,-1.44,-0.91,-0.07,-0.21,-1.19,1.29,-0.22,-2.32,0.08,-0.91,-1.88,-2.47,-1.14 +C2067,5.25,1.02,-1.16,-1.55,-1.83,0.31,0.16,3.06,-0.21,0.65,0.32,-0.54,1.2,1.02,-2.11,-0.01,1.28,-0.8,-0.54,1.27,-0.95,-2.59,1.44,1.39,-1.18,-2.93,-0.94,-0.79,-1.53,-4.09,0.62,-0.02,3.18,1.96,-0.18,-0.91,-1.05,-1.27,-0.75,1.82,2.64,-0.46,0.55,2.16,1.14,-2.79,-0.95,-0.8,-0.45,-0.28 +C2068,4,-11,0.22,5.12,8.34,1.06,1.39,2.37,3.01,-0.61,1.35,-5.69,-4.42,-0.38,-0.54,-3.75,-1.85,1.52,-0.01,1.29,-2.63,-1.02,1.39,1.16,2.9,1.43,4.62,-1.14,-0.69,1.4,1.7,-5.01,1.7,2.78,1.87,0.11,0.68,3.42,-2.17,1.3,-3.22,-0.87,-1.46,3.18,2.66,-4.23,-2.2,1.11,-0.82,-1.82 +C2069,5.27,1.15,-0.54,-1.44,-0.8,-0.07,0.5,3.27,1.75,-1.45,-0.55,1.05,-0.47,2.64,-4.5,-0.13,0.6,0.28,1.57,0.58,0.9,2.69,0.92,0.01,-1.2,-0.14,-2.39,0.9,-1.43,-1.18,2.55,0.58,0.23,2.42,-1.63,0.73,0.28,-0.07,0.12,0.15,-2.47,-0.16,2.64,-3.39,1.69,-2.26,-2.07,0.64,1.37,-1.2 +C2070,3.02,-10.24,1.85,2.62,4.56,-0.63,-0.97,-2.28,-0.13,-1.86,0.57,1.64,1.12,0.95,0.91,1.09,0.03,-1.3,5.11,-1.4,2.6,0.22,1.45,0.55,1.73,2.81,-0.56,0.33,-4.17,0.29,2.07,-2.9,-0.11,-3.59,1.22,5.8,-1.68,-1.52,1.31,1.72,-1.11,-1.98,-2.64,2.67,2.78,0.38,0.4,-2.06,-1.14,-2.6 +C2071,0.59,-17.12,4.02,6.05,8.23,-0.53,-1.71,6.1,-0.33,2.12,2.71,1.2,1.5,-2.07,1.33,-1.39,-2.95,-2.75,-3.13,-1.9,-0.88,-2.33,-1.22,-1.25,-1.67,-2.88,-1.12,2.59,-0.6,-5.01,4.29,0,-2.79,4.78,-1.19,0.71,-1.13,0.15,5.12,0.05,1.14,-1.3,1.61,1,0.74,-1.13,3.83,0.19,0.92,0.92 +C2072,-13.05,-0.81,2.46,-0.14,0.06,3.87,-7.46,-1.57,1.58,0.16,-1.91,-1.67,-0.61,1.66,2.1,-2.59,0.27,-0.4,-1.93,1.06,1.08,-1.02,-1.41,-1.06,-1.25,0.86,2.83,-2.16,-5.49,-1.83,0.88,-0.28,1.91,0.2,1.37,-0.33,-0.98,-0.12,0.43,-0.52,-0.94,1.56,2.57,0.55,-2.52,-3.81,0.76,0.62,-0.62,-0.39 +C2073,2.67,-1.03,-0.8,-2.16,-2.31,0.44,-0.95,-0.42,-2.21,1.33,-0.53,1.13,0.55,-0.95,-0.68,0.82,-1.29,1.97,1.94,0.3,2.01,-0.24,0.27,0.68,-0.33,1.37,-1.19,2.68,-2.16,1.29,-1.17,0.31,0.48,0.92,-0.16,-0.59,3.08,-0.59,0.12,-0.14,-0.03,-0.75,0.57,1.84,0.42,-1.4,0.24,0.47,-0.23,-1.58 +C2074,6.24,4.26,-2.48,-3.23,2.33,-0.47,1.71,0.25,2.57,0.65,-0.13,-0.76,-1.63,1.02,1.49,0.4,0.68,0.31,1.69,-0.95,0.9,2.4,0.36,-0.71,0.5,-0.4,1.95,-0.14,1.2,-0.63,2.12,-0.69,0.34,0.1,0.57,-1.05,-1.68,-0.68,-0.61,-0.76,0.05,-1.63,0.34,0.57,-0.6,-0.62,-0.7,0.01,0.36,0.1 +C2075,2.47,-7.4,2.56,2.75,1.67,0.88,-1.49,-7.57,-1.05,-1.93,-0.33,-0.22,0.58,3.59,3.14,-1.01,1.63,0.15,1.03,-1.85,1.67,-1.26,0.81,-0.45,3.15,-1.76,-0.87,-2.21,0.6,1.93,-1.61,1.65,-2.9,-2.26,-2.14,-0.45,4.2,4.83,0.93,0.93,0.16,1.62,-1.46,1.44,-3.16,-2.8,-0.83,-0.47,0.62,0.33 +C2076,-13.04,-2.98,2.15,1.92,-5.18,-8.31,4.71,-1.72,0.1,4.94,-2.47,0.84,-1.98,-0.73,-3.07,1.1,-0.91,-0.58,-2.9,-3.12,1.89,0.51,-2.07,-0.73,4.01,0.62,-1.56,1.66,1.68,-0.41,-1.09,-1.49,0.06,-0.04,-0.39,-2.63,2.46,2.63,-1.63,-4.15,-0.22,-1.88,0.21,0.6,0.52,1.59,-2.41,0.56,1.29,0.51 +C2077,-13.97,0.03,-0.4,-2.01,-0.21,2.13,-1.34,0.49,-1.57,1.53,-1.59,-3.27,-0.89,0.63,1.39,-1.39,1.72,3.62,-0.76,-0.39,0.77,1.11,1.57,-2.09,0.37,-0.83,-0.93,0,-3.24,0.52,1.29,-0.94,1.57,3.1,-1.38,1.02,-0.31,-0.06,0.22,-2.16,2.61,0.37,3.28,0.47,1.21,-0.01,0.18,0.13,0.34,2.81 +C2078,2.83,0.4,-1.09,-2.13,-2.16,-0.62,0.36,1.14,0.24,-2.96,1.57,0.63,-2.18,1.87,0.09,-3.39,-0.97,0.54,-0.65,-0.85,-0.1,1.84,0.47,-2.25,-0.62,-0.77,-0.42,-1.1,0.53,1.11,0.34,-0.85,-2.4,1.24,0.15,2.15,-1.57,0.36,-2.51,-0.34,0.72,-1.04,-2.25,1.29,-0.19,0.08,0.87,1.74,0.36,0.22 +C2079,-11.95,2.13,0.47,-0.81,0.42,1.28,-2.83,0.33,0.03,-3.56,-0.79,-0.29,0.5,2.02,0.61,0.82,6.07,-1.99,0.24,2.27,-3.94,-1.28,0.42,-1.21,0.22,2.53,-1.67,1.13,1.67,1.45,0.61,-0.51,1.43,-0.17,-1.51,2.03,1.21,-0.16,-2.49,-1.82,0.81,-0.32,0.41,2.84,-0.91,0.53,0.91,2.22,1.34,0.74 +C2080,5.21,-5.47,-0.41,0.83,1.11,-0.5,0.39,-4.08,0.74,1.6,0.18,-2.25,-0.29,1.52,0.59,0.54,2.74,-2.82,2.55,-1.56,1.04,-0.87,-1.93,-0.55,-0.34,-0.27,0.26,1.17,1.73,-0.31,0.7,-2.33,1.19,0.96,1.29,1.46,-5.57,0.61,-1.45,1.71,-0.63,-1.3,2.45,-0.75,-2.06,1.82,-0.29,-0.04,2.93,-1.27 +C2081,4.51,-1.15,-0.48,-1.54,-4.27,0.28,-1.83,-0.3,-1.37,0.06,-0.46,0.34,1.4,-0.89,0.31,-2.12,1.95,0.12,-1.86,0.29,0.86,-1.81,-2.2,-0.48,-1.88,-1.94,3.84,-0.81,-0.22,1.23,-0.8,0.18,0.35,-3.14,-2.42,2.86,1.09,-1.75,-0.47,0.37,-2.08,2.57,-0.3,-2.54,-1.61,-0.22,-0.09,0.62,-0.46,-1.6 +C2082,2.57,5.46,6.03,5.17,-1.56,0.5,-3.71,0.37,-2.4,0.25,-0.11,-3.61,-0.12,3.1,2.09,0.8,0.59,2.39,0.91,-1.05,0.39,0.53,-1.89,1.83,-1.21,-1.73,2.06,2.82,-1.82,0.6,0.41,1.51,-2.13,-2.27,2.42,-2.19,-0.08,-0.28,1.06,-1.08,1.43,3.07,-0.42,-0.22,-0.66,-1.68,-0.13,1.62,-0.55,-2.93 +C2083,2.66,-2.73,-0.7,-1.9,-2.43,0.66,-1.14,-2.4,-0.68,-2.02,2.55,1.26,-0.09,2.08,-3.81,0.44,-0.66,4.99,-1.2,-0.7,-0.28,-1.2,-0.24,-4.51,-0.38,-3.37,-1.9,-2.24,0.15,2.65,0.83,-2.14,2.77,1.58,-1.56,1.03,2.27,-3.2,-0.3,-2.83,0.24,0.69,1.27,-0.73,0.33,0.19,0.49,1.86,-2.16,-3.11 +C2084,3.54,-0.09,-1.32,-2.9,-2.33,-1.01,-0.41,1.18,0.03,0.34,2.8,0.32,-0.1,-1.37,-0.31,0.99,-0.33,-0.7,-1.8,-0.24,-0.43,1.46,-1.37,1.06,-1.32,-3.53,0.37,0.49,-3.95,1.54,-0.8,-0.45,0.02,1.33,0.43,-2.39,1.73,1.7,0.1,-2.01,-0.78,-0.83,-0.62,0.44,0.93,-1.94,0.84,-0.36,1.17,0.54 +C2085,2.34,8.5,6.94,6.9,1.51,0.76,0.26,-1.4,-0.94,-1.31,2.28,-1.64,-0.96,0.6,2.78,-1.64,-1.27,-1.82,0.69,2.07,-2.06,-2.84,0.18,0.76,-0.81,0.17,-0.54,-2.33,0.84,-1.09,-2.21,-0.82,-3.96,-1.24,0.35,1.57,2.95,-0.9,0.36,2.28,0.5,2.85,1.19,-0.43,-2.33,0.56,-2.35,-1.07,0.59,3.11 +C2086,-12.07,0.36,1.02,-1.23,1.55,2.58,-0.95,0.92,-0.78,-1.89,2.34,-0.93,1.54,-0.8,3.28,0.27,0.52,1.24,-0.19,0.92,-2.28,-0.55,0.26,-2.28,-0.19,-1.19,0.2,3.1,-1.07,-0.47,1.1,1.51,-0.95,-0.35,3.3,-0.47,1.27,-1.25,-1.57,-2.5,2.91,-2,1.8,4.33,1.29,-0.21,-0.01,-0.17,3.97,1 +C2087,-15.97,-0.3,-0.28,-1.73,-0.18,-0.08,-1.34,-0.12,-2.23,-2.06,-0.74,-3.68,-0.99,-0.03,-0.75,-0.7,-0.78,0.74,-0.85,1.78,4.44,-2.63,0.26,-2.19,0.4,-2.61,-1.8,-2.18,0.25,0.46,0.57,3.11,-0.42,1.7,4.17,-1.39,2.19,0.52,1.21,-1.48,-1.99,0.34,2.98,0.03,2.33,-3.22,0.72,-1.7,-2.03,-3.72 +C2088,-2.06,5.19,-47.7,32.87,1.08,2.49,-0.7,-1.02,-0.29,1.27,4.89,2.16,3.06,4.48,-0.78,-4.11,4.48,-2,-3.4,0.91,-0.93,0.41,-2.37,3.12,1.33,-0.07,-2.07,-2.07,0.52,-3.67,-1.17,0.45,-2.77,0.06,0.04,-0.34,1.23,-0.53,-0.4,2.04,-2.4,-3.19,0.17,-0.71,-0.92,-0.24,-2.9,0.13,1.32,1.33 +C2089,3.81,2.51,2.52,3.97,-0.07,-1.05,-1.07,-3.03,-3.19,-4.24,1.71,2.41,-0.34,-1.2,-1,2.34,0.62,0.95,-1.64,-1.33,2.47,1.86,-1.72,-2.42,2.03,0.73,0.44,0.2,3.35,-1.98,-0.45,1.18,0.01,1.1,0.77,0.18,1.07,0.68,-0.3,-0.24,-0.06,1.67,1.37,-1.29,0.3,0.04,-2.12,2.3,-1.28,-2.05 +C2090,6.24,1.65,-2.3,-2.89,0.19,0.32,0.19,3.4,0.02,-2.57,-0.79,0.24,-1.73,1.18,0,0.77,-1.55,-1.14,-0.69,-0.76,1.1,-1.24,-0.5,-2.93,0.17,-0.59,-0.12,-0.35,0.85,0.76,2.22,1.79,-0.11,0.81,1.19,0.83,0.02,0.49,-1.75,0.78,-1.73,-0.92,-1.56,-1.1,-0.36,-1.34,0.55,0.3,0.31,-0.55 +C2091,-8.57,0.65,-2.48,-4.79,2.18,1.48,1.24,1.12,-2.27,1.93,0.23,0.77,0.55,-1.45,1.47,-0.64,2.22,-1.34,-0.84,1,1.33,0.03,-1.47,1.2,0.85,1.05,-1.07,0.77,0.19,-2.33,0.53,-3.41,-0.34,-0.46,1.32,0.56,-0.68,-1.84,1.97,-1.95,-2.36,1.42,0.64,0.56,-2.9,0.5,-0.3,-0.44,1.34,-0.02 +C2092,3.91,0.34,-1.52,-2.79,-3.41,0.39,-1.08,2.47,0.03,0.68,-0.34,-0.12,-0.02,-0.33,-0.98,2.01,3.14,2.34,-1.04,-1.64,-1.34,-0.46,1.6,-1.18,0.05,3,1.41,-1.16,1.12,-1.28,-0.98,0.51,2.12,1.15,0.28,-1.95,0.07,1.65,1.63,2.86,0.58,-2.35,-2.01,-0.87,1.07,2.51,0.79,-1.82,-1.45,-0.8 +C2093,2.93,-2.27,-0.95,-1.78,-3.33,-0.17,-0.46,0.17,-0.42,-1.05,1.25,-2.05,2.45,0.38,1.14,-0.22,2.32,0.97,0.08,0.74,-2.77,0.31,0.5,-0.32,-1.86,0.23,-1.62,-0.52,1.2,-0.72,-1.9,2.14,-2.12,-2.81,0.04,-0.65,0.68,0.66,1.31,1.4,-0.34,-0.74,-1.45,-1.87,-0.46,0.2,-0.22,1.45,2.05,-2.24 +C2094,3.11,0.95,-0.61,-1.62,-3.18,-0.4,-0.27,0.46,-1.79,-0.68,1.23,-0.28,0.36,0.76,-1.49,-1.72,-1.92,-3.62,-0.33,0.88,-0.17,-0.11,2.6,-1.01,2.67,-0.58,0.15,2.22,-2.18,-1.9,2.05,-0.73,-0.07,-0.63,-0.71,1.3,-0.54,-3.09,0.28,0.66,0.46,-0.06,1.61,2.49,-0.36,0.69,-0.17,-1.02,-0.97,-0.32 +C2095,5.07,1.25,-0.66,-1.57,-2.4,-0.03,0.33,1.77,2.41,0.39,-0.32,-2.04,-0.44,2.63,0.85,-0.51,-0.72,-0.36,1.49,-0.09,-1,1.72,-0.38,2,-1.89,0.9,-1.13,0.08,-0.59,1.8,2.26,-1.32,1.87,-0.61,-0.65,1.13,-3.03,-2.74,1.98,-1.09,-0.17,1.59,1.71,-1.87,-1.42,-1.62,0.67,0.19,-1.33,1.33 +C2096,-10.99,1.8,-0.99,-3.23,2.06,2.53,-0.62,0.51,-1.61,-0.49,-0.45,0.46,-0.48,-2.47,-1.24,-1.22,1.58,1.99,-2.32,-1.69,0.01,0.87,2.82,1.11,2.05,0.36,2.27,-0.53,0.85,-1.82,1.7,-0.12,-1.38,-2.67,0.31,-2.01,-1.85,-0.12,-0.11,1.81,-0.87,0.17,-3.1,-0.57,-0.39,1.96,0.74,-1.45,-0.5,-1.73 +C2097,4.74,7.98,3.78,5.09,1.93,-0.11,0.48,0,-0.29,2.11,-3.47,1.56,1.56,-0.71,0.49,-1.04,-0.37,0.46,-0.85,-0.05,-3.64,1.1,-2.07,-0.96,-0.35,1.01,-0.68,2.01,-0.77,1.32,-1.98,-0.3,-0.72,2.92,-0.68,1.22,0.7,-3.97,0.43,2.39,-0.98,-3.06,-0.39,0.59,-0.69,0.29,1.52,-1.5,0.4,-2.24 +C2098,-10.83,-0.08,0.38,-1.84,1.26,5.25,-2.91,0.01,0.4,0.56,-1.27,-0.08,-1.21,0.69,-2.91,1.38,0.79,0.77,-0.25,1.36,-1.5,-0.4,1.65,-2.69,1.33,-2.19,1.63,2.53,-2.37,0.98,-1.28,1.26,-0.41,2.03,-2.56,3.92,1.7,-2.61,2.54,0.11,-1.27,-1.44,-1.91,-0.95,-1.33,-1.1,1.81,4.97,-0.78,1.3 +C2099,2.06,-11.13,0.52,4.62,6.88,0.71,0.23,2.73,1.28,-0.15,2.09,3.3,1.37,1.01,-1.03,-0.7,-1.12,-1.94,-1.83,-1.16,-0.44,0.9,3.19,-0.24,3.21,-2.02,0.1,4.32,0.52,-1.79,1.8,-0.85,-2.11,3.43,0.76,-0.41,1.37,3.75,-0.54,-1.38,-3.97,2.72,-3.36,0.87,-2.69,0.7,0.13,1.65,-1.33,1.38 +C2100,-7.78,2.33,-3.57,-3.77,3.69,2.75,1.69,0.17,-1.14,2.59,-0.77,0.88,-0.11,0.48,2.31,0.31,-0.19,2.21,0.3,-2.84,-0.62,-0.45,0.6,0.77,0.65,0.34,-1.42,0.72,-1.53,0.18,-0.48,-0.98,-0.77,1.56,2.4,0.79,-1.48,0.97,-0.83,-0.62,-1.62,-1.36,-0.92,0.21,0.72,0.1,-0.1,2.45,0.99,0.7 +C2101,1.76,5.16,1.81,4.35,-0.07,-0.15,-0.54,-0.49,-1.18,0.96,-0.53,2.91,1,0.49,-2.31,3.32,3.28,-1.72,-0.33,0.42,0.56,2.12,1.47,-3.56,0.92,1.26,0.18,3.97,-0.87,-0.8,0.04,-1.64,0.1,-1.01,0.72,-1.48,-1.32,-0.57,0.81,2.01,0.72,-0.84,-1.77,-0.36,-0.05,-0.38,-0.62,1.31,2.05,-1.45 +C2102,3.67,-9.59,1.24,1.44,5.65,0.23,0.21,-1.13,0.1,1.96,-1.85,2.14,1.04,-2.91,0.6,-2.18,-2.91,1.75,-1,3.27,1.75,3.17,2.56,-1.13,-0.43,2.3,0.22,2.23,-0.73,0.04,1.6,-1.7,0.74,1.6,-1.01,0.29,-1.36,-1.46,1.36,0.2,1.74,1.26,-0.3,0.41,-0.4,0.02,-1.08,0.77,-0.59,-2.41 +C2103,5.86,1.48,-1.51,-1.02,1.41,-0.12,3.54,-0.88,1.63,1.19,0.89,-0.59,0.74,0.99,-1.17,1.12,-0.26,2.68,-1.89,0.7,-1.72,-0.21,-2.13,0.31,-0.28,0.58,1.32,1.92,0.13,-3.82,4.42,-0.91,0.39,-0.49,1.6,0.04,5.52,-0.64,-0.39,-0.64,-2.08,-1.7,-0.77,-0.71,2.19,-1.86,-0.25,-1.68,-0.26,2.07 +C2104,-11.62,3.79,-1.7,-1.02,2.63,2.24,-1,0.18,3.36,-1.59,1.51,1.35,0.79,2,-0.35,0.64,-1.65,-3.04,1.42,0.91,0.92,-0.1,-0.58,-0.34,-0.16,1.82,3.48,-0.65,4.18,2.49,-0.56,-2.96,0.53,-1.53,-4.87,0.24,1.38,-0.34,0.92,2.03,0.49,0.1,1.42,-1.95,4.11,0.55,1.3,2.93,-0.24,-1.95 +C2105,3.45,0.14,-0.06,-1.03,-3.65,-0.08,-0.9,2,-0.48,0.6,1.44,-0.34,1.28,1.19,-0.65,0.06,-2.8,3.27,0.32,-0.75,-1.51,-0.4,-1.87,-0.62,-3.35,0.25,-0.59,-0.35,-1.31,-1.76,-0.48,2.41,2.25,0.74,-1.05,1.63,-0.16,0.53,-0.4,0.1,2.3,-1.91,0.8,-2.36,-2.27,0.32,0.25,-1.16,-0.72,1.64 +C2106,3.56,-2.28,-0.48,-0.85,-2.3,-0.88,-1.25,-0.95,0.25,1.1,0.9,-3.61,-2.29,-0.13,0.85,1.45,-2.19,0.32,0.39,2.43,0.93,-5.73,-1.89,-0.95,0.83,0.44,-0.15,-0.84,-0.04,1.06,-0.44,-0.86,-1.01,-0.6,0.35,0.55,-1.32,0.3,-4.03,1.43,-1.76,0.52,2.17,3.85,-0.02,-0.3,-4.24,0.77,-0.44,0.12 +C2107,-13.36,1.6,-1.94,-1.02,2.02,1.8,0,1.22,0.35,-0.44,-0.73,-0.94,-0.22,0.11,-1.77,-2.16,0.46,-0.16,-1.24,1.9,0.22,-0.03,1.41,-1.19,-0.07,-0.25,2.07,-2.24,-1.12,0.53,-1.9,1.26,1.12,0.09,0.95,0.36,0.22,2.3,0.17,0.37,-0.92,0.83,-3.53,-1.98,0.2,2.13,-0.72,-0.01,1.39,-0.22 +C2108,-14.71,-2.57,3.25,0.73,-3.62,-2.17,-1.84,-0.72,1.76,-0.61,-1.32,0.77,-2.82,0.68,0.54,0.21,-0.13,-0.36,1.43,-0.17,0.41,-0.83,-0.48,-0.61,1.85,-0.76,-0.58,-1.08,1.09,3.35,1.17,1.72,0.96,0.18,-0.14,0.42,1.27,-0.75,-2.22,4.62,0.06,-1.86,-1.42,-3.71,0.61,-4.95,-2.77,-1.69,1.83,3.23 +C2109,3.71,-0.67,-1.18,-0.99,-2.28,-0.08,0.13,3.11,-0.11,-1.29,1.86,1.99,-1.51,2.25,-2.14,0.17,-0.55,-2.76,0.54,-0.22,1.67,1.29,1.69,-3.34,1.27,-0.51,-4.09,-1.37,-0.77,1.06,-0.75,-0.56,-1.49,-0.87,-1.66,-0.65,-2.94,-1.92,-0.95,1.44,0.99,0.93,1.21,-1.28,-1.88,1.04,-0.18,-0.05,2.23,0.46 +C2110,-16.03,-1.65,1.57,2.27,-2.13,-4.01,-0.03,-0.93,-1.02,-0.8,1.21,0.99,0.43,1.6,1.61,-0.09,1.57,-0.46,-0.95,0.96,1.12,1.34,2.32,-2.08,-0.14,1.49,-0.18,2.9,-0.54,-0.09,0.53,-1.61,1.63,0.42,0.02,1.94,-2.25,1.55,-0.32,-1.28,0.46,1.45,1.41,-2.03,1.15,0.2,0.58,-2.14,0.13,-0.96 +C2111,3.08,-3.52,-0.85,-0.48,-1.27,-0.1,-1.22,-1.37,-0.76,2.82,-0.93,2.36,2.62,-0.38,1.14,0.38,0.33,2.29,2.97,0.89,1.07,1.16,-0.73,-0.21,-0.2,-0.44,-1.64,-1.23,0.88,-4.1,-3.12,-1.23,-1.12,0.13,-1.08,-2.11,1.07,-1.05,-0.33,-0.18,-0.84,3.67,1.32,1.85,2.32,-0.29,2.58,-2.24,0.52,-0.92 +C2112,4.94,1.84,-1.69,-2.6,-1.31,0.17,1.53,2.07,1.15,0.42,-0.49,-0.02,-1.28,3.12,-0.38,-0.85,0.07,-1.8,0.86,2.24,1.47,0.8,1.98,1.61,-0.3,-0.77,0.46,1.04,0.97,-0.63,-0.09,0.95,1.6,-1.63,2.45,-0.26,2.54,-1.89,-0.16,-0.26,-2.03,0.81,1.03,0.94,-1.87,2.58,1.02,-0.33,0.58,3.08 +C2113,-13.94,-0.52,1.7,-1.19,-1.08,1.73,-0.99,0.06,-1.71,-0.59,-3.26,-2.87,-1.28,2.03,-0.78,-2.19,1.54,3.45,2.92,1.4,1.87,-0.51,-1.22,-2.04,-2.3,-2.61,-1.31,2.25,-3.67,-0.85,1.76,-0.95,1.24,0.65,0.38,0.6,2.73,2.01,-0.99,-0.62,4.12,3.86,-1.47,1.28,-1.33,-1.61,-1.54,-1.1,-1.55,-1.28 +C2114,4.77,-2.71,1.7,0.37,-3.3,-1.44,-1.2,0.31,-3.38,-4.06,-0.03,-3.18,3.57,0.89,1.64,2.61,-3.02,-1.21,-0.63,1.79,-3.59,-3.19,-0.68,-2.6,-2.33,-0.62,3.2,-1.32,-1.38,-5.58,-3.61,-0.28,0.74,0.88,-0.36,0.52,-2.89,0.04,-0.56,-2.89,0.73,0.31,0.16,-0.42,0.4,-1.06,-1.97,-1.82,-1.37,-3.35 +C2115,4.29,-1.36,-0.94,-1.16,-0.72,-0.35,-0.13,1.24,1.03,-1.79,-1.67,0.6,-1.12,0.55,-0.71,1.5,-0.44,0.73,3.56,-0.07,1.55,1.16,-0.12,-1.16,-2.37,0.11,-0.32,-2.52,0.71,0.61,-2.89,-2.26,-1.71,-2.82,-1.74,-0.81,1.94,-0.56,-0.46,-1.11,-0.79,1.91,1.7,0.44,-0.08,0.24,2.09,-0.33,-1.75,2.22 +C2116,3.76,10.66,4.4,4.04,4.64,0.35,0.33,-1.08,0.64,-0.54,1.84,-0.56,3.81,-0.26,0.36,-2.45,-1.31,0.6,1.29,0.3,0.88,-2.29,-1.14,-0.55,1.77,-2.72,0.15,0.9,-0.53,0.73,0.69,-1.15,-0.46,-1.95,0.27,-0.46,0.76,0.49,-0.45,-0.92,-1.04,-2.28,-2.73,-1.41,1.45,0.54,1.38,2.28,2.24,-1.3 +C2117,4.41,8.4,5.03,4.43,1.78,-0.9,-0.38,-0.14,-1.05,1.42,-2.98,-0.25,1.67,-1.16,-2.71,0.09,-3.03,1.36,-0.59,2.17,0.22,-1.03,2.6,-0.69,-2.2,0.55,0.33,1.61,-0.07,-2.62,2.31,0.06,2.19,-1.57,1.84,-3.22,-0.08,-0.38,-2.83,2.59,2.53,-3.2,1.8,-0.62,0.44,-1.79,-4.57,-0.42,-0.5,2.06 +C2118,2.83,-2.47,-0.82,-1.84,-3.13,-0.9,-0.35,-0.8,-1.01,0.01,-1.63,-0.95,-0.62,-0.4,0.36,2.96,0.65,-2.2,1.7,-1.18,0.52,-5.32,0.09,-0.16,-0.73,0.11,-1.08,1.99,-2.11,-0.35,-0.22,-0.24,0.45,-1.95,-0.51,0.23,-1.63,-1.6,0.26,-1.88,-0.63,1.4,2.45,1.06,0.81,0.35,-0.77,0,-1.27,0.66 +C2119,6.31,-0.15,-0.6,-2.3,-0.51,0,-0.23,-1.71,-0.6,-1.43,-1.33,-0.13,0.3,2.64,-0.05,0.84,-1.02,2.16,1.52,-2.12,-0.8,2.61,-3.35,0.56,-0.15,-1.03,1.52,0.13,3.77,-2.34,-1.65,-0.54,0.35,0.91,-0.54,0.25,0.59,-0.87,-1.83,1.78,-1.8,-1.14,-2.26,2.6,-3.47,-2.13,-2.06,2.59,0.66,1.69 +C2120,4.95,0.68,-1.24,-1.69,-1.85,-0.93,1.04,1.1,0.18,-0.2,0.9,0.97,0.07,1.84,-2.08,0.81,-0.17,0.19,-0.79,1.16,-2.26,-0.31,1.91,1.03,-0.92,1.5,0.95,3.05,-0.75,0.41,-0.94,0.13,0.03,0.21,-1,2.65,0.74,-0.59,2.07,1.18,-1.28,1.41,0.61,1.34,-0.05,0.58,-1.49,-1.29,-1.39,0 +C2121,4,-0.93,-0.85,-0.75,-4.26,0.47,-1.68,0.01,0.27,-0.7,-1.61,-0.79,-1.82,-1.19,0.62,0.31,0.93,0.51,0.82,-0.51,-1.36,0.35,1.09,1.28,-0.38,0.54,-0.16,2.28,-0.96,0.43,-0.26,2.44,-0.29,0.34,-0.25,1.07,0.1,0.82,-1.39,0.93,-1.75,0.15,1.32,0.67,0.43,0.12,-0.8,-1.35,-2.45,-2.36 +C2122,0.15,-16.63,6.49,7.88,-1.99,9.5,7.36,2.99,2.27,3.46,-1.33,1.57,0.58,-1.42,-1.6,-4.4,-1.18,-4.94,3.1,4.95,0.25,-0.79,2.03,-2.64,-0.95,-1.01,0.98,-0.73,-0.44,-3.25,-2.14,2.57,-3.98,0.12,-0.99,0.56,-3.69,2.52,0.48,-2.37,3.13,-2.83,-2.35,-4.74,-1.43,-3.88,3.11,-2.39,3.58,3.33 +C2123,5.45,3.95,-2.04,-1.96,0.59,-0.58,2.46,1.29,1.63,-0.05,0.62,0.97,-0.44,0.81,1.68,-1.79,-0.57,1.63,1.91,1.21,0.84,0.75,2.04,0.17,0.73,-0.85,0.86,1.19,-0.86,0.14,-1.94,1,2.11,-0.63,0.36,0.13,-0.26,-0.09,0.64,-0.18,-1.09,-0.56,-0.92,0.48,0.96,0.77,0.01,-0.32,0.54,0.39 +C2124,-13.28,0.75,0.43,-1.27,1.13,0.07,0.07,0.49,-0.72,-3.23,-0.01,1.66,-0.67,0.77,-2.85,-0.32,-2.89,-1.11,1.23,0.01,-2.22,-2.06,-1.25,2.18,1.14,-1.62,-1.6,1.84,0.65,-2.53,-2.53,-2.04,-1.3,1.27,-1.07,0.38,-0.96,1.28,2.06,-1.5,2.16,-1.75,0.5,2.25,-0.09,-0.48,-0.55,1.15,0.43,1.36 +C2125,4.92,-0.52,-0.76,-2.44,0.48,-0.31,-0.45,-1.06,0.64,0.73,-0.95,1.25,-0.35,1.92,-2.44,0.48,-0.43,1.53,2.02,-1.69,0.75,-0.71,-1.28,0.43,-2.06,-0.48,-1.29,0.41,1.8,2.21,-0.91,0.85,-1.78,1.37,0.35,0.12,1.72,1.85,-0.04,-0.67,0.27,-0.44,-1.1,-0.3,-0.98,0.77,-1.15,-2.07,1.32,-1.09 +C2126,3.64,-1.23,-1.22,-2.35,-2.77,0.65,-1.7,-0.55,0.5,-0.57,0.87,1.43,-1.53,-0.02,-3.18,-3.14,3.05,0.56,0.06,-1.61,-0.6,-0.3,4.26,0.05,1.65,1.75,1.69,0.12,-3.04,1.46,1.93,-0.83,1.18,0.15,-1.8,1.09,0.66,-0.56,-0.7,-0.47,-3.27,-0.86,-0.61,0.85,-2.69,-1.13,1.61,0.59,-0.71,-0.97 +C2127,-12.06,0.44,-2.15,-2.94,3.78,4.12,-0.61,-0.7,-1.08,1.17,-2.97,-0.65,-0.04,2.2,-1.08,0.52,-2.47,-0.48,0.22,1.04,1.74,-4.04,0.32,0.19,-1.65,0.12,-1.77,-0.46,0.79,-1.56,-0.2,0.9,-0.74,-0.81,-1.4,-1.02,1.53,-0.81,2.86,1.15,-1.72,-2.14,2.9,-0.09,-0.14,0.12,-1.52,0.9,-1.11,-0.64 +C2128,3.91,-0.31,-1.22,-2.29,-1.35,0.57,-0.67,-1.5,1.99,-1.57,0.68,0.8,-0.89,-0.58,2.01,-1.44,-1.01,1.05,-0.89,1,-0.08,0.04,1.32,0.77,1.24,0.49,0.09,-1.46,-0.53,0.86,-0.55,1.58,-0.08,-0.8,2.73,0.35,1.59,-0.41,-1.56,-1.57,2.12,1.28,1.57,-2.84,2.39,2.04,0.8,-0.36,1.23,0.23 +C2129,4.95,-2.53,-0.88,-1.81,0.78,0.32,-0.54,-2.28,0.14,-0.81,-0.31,0.5,-0.21,-1.74,-1,1.04,0.43,1.77,-1.84,1.14,0.23,0.93,1.55,-0.79,1.4,1.94,1.76,1.91,0.15,1.21,-1.68,1.44,-2.37,-0.57,0.8,-0.75,-0.72,-0.57,1.04,-1.26,3,0.2,-0.07,-0.29,0.67,0.15,-0.72,-0.5,0.43,-0.12 +C2130,3.6,-0.67,-1.03,-1.96,-3.39,-0.04,-0.54,4.22,-1.5,-0.57,2.57,-1.11,0.93,0.89,-0.12,-0.1,0.67,-3.95,-2.05,0.13,-0.59,0.07,-0.45,0.64,0.38,-0.23,-0.46,-0.34,-0.24,-0.95,0.85,0.13,-1.61,0.97,-0.47,0.83,-0.89,3.16,-0.41,-0.97,-0.36,1.03,0.36,-3.25,2.47,0.68,-0.54,-0.73,1.38,1.29 +C2131,3.48,-1.14,-1.48,-2.36,-1.34,-0.49,0.88,0.7,0.95,0.18,1.14,-0.75,1.3,-2.08,0.74,0.16,0.15,-0.44,-0.87,-1.95,-0.99,-3.18,-0.35,-2.38,1.41,3.75,0.41,-0.11,2.16,-1.12,-4.06,-2.76,0.13,0.15,2.86,-0.6,2.18,-1.06,-0.82,-0.71,3.59,4.11,-0.64,-0.8,-2.5,-0.15,1.66,-1.53,1.4,-1.31 +C2132,5.39,-3.96,-0.97,-1.42,-0.8,0.43,-1.07,-5.14,-1.15,-3.15,1.57,0.7,0.34,-0.51,1.1,-1.53,1.35,2.31,-1.47,-1.27,-1.27,-0.19,-2.16,-2.06,2.26,-1.73,-0.3,-2.13,3.22,-1.8,0.81,0.73,-3.14,1.2,-2.03,0.72,0.87,-2.49,0.44,-0.12,0.65,2.04,2.55,-1.78,0.13,0.94,1.32,0.75,-0.49,-0.02 +C2133,5.86,1.47,-0.59,-2.09,-0.08,0.12,0.66,1.93,0.62,1.57,-0.8,0.66,-1.66,-1.33,-1.45,-1.71,-0.1,3.56,-0.72,0.93,1.37,0.45,-0.68,-0.2,0.02,-1.56,-2.91,-2.16,-1.41,-0.31,0.07,1.09,1.84,0.32,-0.21,0.11,0.17,0.33,0.01,-0.28,-0.19,-2.1,-0.25,0.45,0.15,1.24,2.33,0.51,0.2,-1.65 +C2134,-12.37,-2.88,4.67,4.39,-5.03,-8.44,4.82,-1.91,-0.08,1.92,0.47,0.98,-0.92,0.59,-0.45,-1.01,0.15,3.07,2.63,2.8,0.78,1.58,3.75,-1.37,1.51,0.74,-0.17,-1.91,-0.48,1.99,4.19,-0.16,1.24,-3,1.29,1.24,-1.21,-1.76,2.68,0.2,-2.45,0.44,1.4,1.28,1.27,1.17,-1.34,0.38,-0.12,0.44 +C2135,2.8,7.22,4.82,5.49,1.5,0,0.99,0.39,-0.49,-0.96,0.49,0.92,0.39,1.43,-0.85,2.56,-1.38,-0.65,-0.08,2.27,-1.61,-0.53,-2.41,-2.41,-0.62,2.91,-1.25,-2.66,-2.11,2.09,-2.88,0.66,0.51,0.87,1.15,1.75,-0.87,0.07,-2.73,-0.57,0.85,-1.73,-0.35,-1.04,2.53,0.53,2.27,-0.77,1.17,2.42 +C2136,-12.82,-3.75,1.3,1.54,-4.3,-8.58,2.83,-0.52,-0.35,-0.41,0.77,0.71,-3.54,-1.51,1.1,0.05,2.77,-0.01,-3.05,0.16,-0.44,-1.93,2.94,-2.32,1.55,-1.68,0.82,-2.63,4.31,-0.02,2.33,0.53,0.36,-1.08,-3.46,-0.58,-0.44,3.41,1.32,1.68,-0.66,-4.15,-0.76,-4.45,-1.35,-5.16,-1.17,-0.43,0.47,0.72 +C2137,6.29,1.24,-2.16,-1.73,-0.03,0.01,0.08,0.72,3.4,-4.08,1.8,-0.5,-0.93,-0.2,0.32,0.16,-1.01,1.5,-0.74,-0.12,-4.36,0.34,0.01,0.71,-2.88,-0.62,0.63,-1.33,-0.24,-0.58,-0.92,1,-2.3,-1.75,1.68,-2.29,-0.46,0.32,1.02,-0.41,1.79,-0.58,-1.77,-1.7,-0.64,-0.66,0.34,-1.4,2.11,0.68 +C2138,-9.73,3.51,-1.52,-1.17,1.14,-2.34,0.55,0.95,2.15,-3.14,3.4,1.96,1.82,-0.33,-0.55,-1.25,-0.87,-1.16,1.46,-2.29,-1.14,0.18,0.23,0.62,1.73,1.06,4.15,1.79,-0.16,-1.09,-0.37,-0.22,-0.38,0.43,2.36,0.84,-0.44,-1.89,-2.77,0.17,-1.02,1.05,-1.27,-0.59,-0.11,-0.53,1.37,-0.96,-2.1,-3.97 +C2139,-6.77,1.66,-2.22,-5.08,3,1.32,0.16,0.06,-0.1,-1.41,2.31,1.82,-0.62,-0.83,-0.94,0.72,-0.33,1.82,1.1,-0.51,1.22,-2.02,-1.53,0.75,-0.45,-0.55,-0.53,0.92,1.92,2.52,-0.44,-0.67,-0.53,-2.09,0.56,1.19,0.88,-0.01,-1.5,2.26,0.56,0.43,-0.36,1.21,0.14,1,-1.51,0.2,0.62,-0.44 +C2140,-6.5,1.73,-0.36,-2.62,0.54,1.74,0.37,0.43,2.12,-3.06,-0.41,-0.12,-1.89,-0.42,1.54,-0.69,0.03,-0.92,-0.43,-0.82,2.23,-3.64,-0.8,0.87,1.64,-0.8,-0.2,1.49,1.11,-0.45,-0.09,-0.98,-0.77,0.66,-3.22,-1.66,0.19,3.77,3.17,2.2,-1.18,0.57,0.25,1.66,-1.78,-0.25,-1.35,0.24,-3.27,-0.22 +C2141,3.27,-0.21,-0.37,-1.46,-2.26,-0.11,0.71,0.5,0.03,-0.38,-0.42,0.41,-0.29,0.8,-0.05,2.18,-0.91,2.92,0.48,-0.56,-0.16,-2.02,0.18,0.85,0.93,4.3,0.61,1.23,1.95,1,-0.57,0.85,0.18,1.98,0.72,0.51,0.9,-1.03,-1.62,-0.63,-0.6,-2.49,-0.7,0.06,2.49,-1.56,-0.39,1.06,-2.41,0.74 +C2142,3,0.96,-0.56,-2.06,0.01,-0.88,0.39,0.41,1.57,1.25,-0.77,0.86,1.68,-1.43,-1.29,0.7,-0.75,0.96,-0.21,-0.15,0.56,0.26,3.38,1.15,-0.36,0.35,-0.27,1.32,-0.12,-0.53,-1.82,0.79,-0.05,0.84,-1.12,-0.34,-0.7,-1.47,-0.37,-0.66,-1.92,-2.08,1.16,3.14,-0.02,-0.36,-0.43,-2.46,-0.69,-0.23 +C2143,-12.83,-0.82,1.73,0.63,-1.38,-0.2,1.53,-2.35,1.14,1.04,0.97,-1.41,0.2,0.53,-0.13,-0.18,-0.38,-3.15,2.86,1.4,-0.8,-1.08,2.27,-0.46,-1.44,-0.46,0.56,1.12,1.09,-0.82,-0.22,2.69,1.24,-0.55,1.89,-1.34,-1.96,0.36,-0.76,0.01,3.74,-1.51,-0.83,1.63,0.76,-0.22,2.03,0.5,2.51,-1.36 +C2144,3.87,-2.86,0.78,-0.86,-4.31,-1.11,-1.48,-0.02,-1.2,-0.55,2.38,-0.94,2.44,2.9,-0.74,4.1,0.33,0.87,1.48,1.82,2.8,-2,0.19,-2.31,0,0.17,-0.65,-1.51,-1.34,-1.75,-0.73,-2.13,-1.48,1.84,-0.99,2.71,-1.68,-0.36,-0.68,0.66,3.03,-1.15,2.06,-0.11,-1.7,-3.16,-0.91,1.56,0.71,-0.83 +C2145,2.58,-0.68,-0.73,-1.41,-2.82,-0.55,-1.64,-0.42,-1.52,1.54,-2.48,-1.06,2.48,1.7,1.9,0.41,-0.37,-1.84,2.37,-1.47,-1.08,1.17,3.48,0.86,-1.8,-1.4,-1.34,-1.2,-1.24,0.55,2.56,-1.79,3.29,3.38,3.19,1.93,-0.01,0.48,-0.44,-2.13,-0.2,2.92,0.05,4.4,0.1,-1.73,-0.6,-1.48,-1.54,1.72 +C2146,5.91,1.29,-1.96,-3.25,-1,-1.69,0.41,-0.61,-0.43,-1.11,-0.34,-1,-0.44,1.39,0.41,1.93,0.97,-0.43,-2.36,3.39,-0.97,-0.02,-3.97,4.24,-0.47,2.22,2.84,0.49,1.68,2.45,2.03,-0.94,0.81,-0.84,0.99,-0.49,-0.05,1.24,-0.95,0.34,-0.67,-2.39,2.39,3.2,0.3,0.18,0.02,0.13,-2.08,-1.21 +C2147,-15.12,-0.44,2.31,0.36,-1.54,-0.2,0.64,0.17,1.12,0.63,-1.61,1.76,1.79,-0.33,-1.59,1.99,3.48,-2.11,2.45,-2.1,-0.62,2.59,-0.24,1.47,1.6,4.35,-1.9,1.28,5.01,2.79,-0.09,0.73,0.85,3.38,1.15,-0.87,0.57,2.96,1.03,2.13,0.35,0.42,0.38,0.28,-0.18,0.57,0.91,0.38,-2.27,0.79 +C2148,4.17,-3.52,-0.32,-0.58,2.59,-1.3,1.72,-0.36,1.54,0.85,0.68,-3.91,0.89,0.7,2.47,-0.75,0.2,-0.93,-0.91,-0.63,-0.47,1.3,0.35,1.83,-0.51,-0.67,0.76,2.77,-2.14,-2.15,0.66,0.21,0.11,-3.63,2.33,-0.81,0.26,1.55,-0.06,0.09,2.05,-0.28,-1.76,1.47,0.24,-0.61,4,1.22,0.41,1.9 +C2149,4.21,7.73,1.09,0.84,5.03,0.62,1.9,-2.31,-0.42,0.38,-1.81,1.64,-2.47,0.86,-1.15,4.18,3.56,2.68,0.01,-2.4,0.23,-0.08,-3,0.15,2.37,1.44,0.43,0.77,0.13,-1.01,0.75,-0.94,3.61,1.65,0.2,-1.21,-2.89,-0.76,1.82,-0.95,-0.23,1.45,-1.35,0.42,-1.09,0.69,1.7,2.65,0.46,-1.54 +C2150,2.2,-5.49,1.27,1.39,2.25,-0.91,-0.07,-2.72,-0.44,0.99,-4.64,6.2,2.41,1.09,5.51,1.68,-1.26,2.94,0.97,-0.42,1.92,-1.98,-1.46,0.99,6.06,-1.57,0.69,-1.71,-1.68,-3.52,-0.67,3.12,-1.02,-1.2,3.71,0.93,2.46,2.18,-2.47,0.13,0.81,-0.5,0.96,3.29,-0.75,2.02,-1.72,1.05,0.16,1.12 +C2151,1.48,-0.3,1.31,0.04,-1.81,-1.93,-0.85,3.07,-1.38,-9.78,6.22,4.06,-2.46,-1.91,0.58,1,0.9,-1.86,-3.09,2.79,0.41,-0.11,1.29,3.04,2.09,-2.71,-2.03,-1.31,-4.33,-2.35,-3.26,-2.76,-1.55,-3.7,2.7,-1.86,-3.21,2.41,1.61,1.52,-0.87,0.25,-0.5,-1.57,1.56,-0.86,0.14,1.74,0.59,2.06 +C2152,-12.42,-3.88,3.07,2.75,-6.19,-7.78,6.31,-0.15,-1.46,3.86,-0.94,1.49,0.54,-0.69,-1.63,-3.72,-0.94,1.62,-0.51,-0.63,0.78,-0.08,1.09,-1.14,1.83,1.11,0.25,-0.06,-1.59,0.49,-1.8,-1.62,-0.41,-2,-1.27,0.06,1,-0.72,2.45,-0.57,-0.97,-2.68,-2.28,-1.73,3.29,-1.1,0.9,0.14,3.63,1.4 +C2153,3.37,9.11,5.91,6.55,-0.02,0.88,-1.49,-0.45,-2.51,4.44,1.98,1.25,-4.3,-1.48,-2.65,0.26,5.2,4.97,2.97,0.23,1.95,0.57,-1.52,-0.05,-2.58,-0.63,-0.33,1.94,-3.13,-1.12,4.06,-0.45,0.45,0.57,2.17,-1.21,-0.54,-3.41,2.98,1.07,-1.57,-0.83,-2.5,-1.47,0.04,-0.92,-3.78,0.99,2.01,-1.78 +C2154,3.64,-0.59,-0.79,-0.18,1.12,1.28,0.52,-4.91,-0.33,-1.69,0.01,0.94,2.56,0.07,-1.2,-0.96,-1.34,1.53,-0.8,-0.8,-2.12,1,-0.55,-0.69,3.88,1.83,0.81,-1.46,-1,-1.63,-2.64,-0.57,0.77,1.29,0.6,1.37,0.42,-3.69,-0.15,-0.25,1.68,-1.92,-0.21,-1.37,-2.07,0.13,-0.43,0.9,-1.44,1.74 +C2155,3.29,7.17,4.16,4.89,1.72,-0.68,0.39,0.44,-0.19,0.94,-0.55,0.71,0.12,-0.23,3.77,-2.81,-0.99,-0.1,-0.48,0.76,-3.52,-3.1,0.72,0.37,-0.41,-0.44,2.47,1.51,-0.93,-2.38,-2.9,-0.16,2.24,0.51,-0.13,0.51,0.3,2.43,0.25,1.28,-2.03,1.17,0.26,0.39,-0.39,1.29,0.92,0.35,-1.76,-1.22 +C2156,2.95,-9.43,2.78,3.96,8.51,0.9,-0.15,1.17,-0.29,2.43,0.19,0.08,-2.28,1.6,1.54,-1.64,-1.31,0.97,-2.6,5.47,-0.41,-2.14,2.46,0.45,0.09,-0.57,0.61,-2.62,1.71,1.02,1.72,-4.1,-2.29,1.09,-1.85,-0.9,2.18,-0.68,-0.89,1.01,2,0.4,-1.38,2.14,-1.68,1.57,-0.62,-5.22,-0.2,0.5 +C2157,5.93,3.02,-1.87,-4.45,1.13,-0.75,0.71,1.17,-0.18,-0.17,1.08,0.14,1.98,-3.23,1.67,1.62,-0.8,0.03,0.34,-0.15,-1.21,-0.02,1.27,1.04,-0.96,-1.15,0.79,-1.17,1.04,-0.4,2.53,0.53,1.44,-0.14,-0.47,-0.71,0.78,-0.25,0.06,-0.63,2.41,1.1,0.21,1.69,1.62,-0.93,-0.29,1.5,-0.57,-0.86 +C2158,3.72,-6.17,1.45,1.05,-5.05,0.13,-2.74,-0.03,-2.14,1.59,-1.2,1.34,1.38,6.53,-3.4,1.59,0.16,3.06,-0.23,1.75,1.52,1.55,-1.01,2.08,0.23,-0.64,1.54,1.11,1.63,2.1,-0.33,-1.09,-0.21,0.92,-2.24,2.92,0.1,-2.77,-0.87,-0.43,2.1,1.43,-1.76,0.63,-0.04,-0.74,-1.3,1.78,1.42,1.14 +C2159,2.32,-0.43,-0.7,-1.41,-2.33,-1.72,-0.14,-0.26,-1.4,2.62,1.51,0.26,0,1.13,0.71,0.5,2.53,-2.64,-1.61,-2.03,-0.25,-1.99,1.27,1.79,-0.19,-1.71,1.26,0.05,-0.74,0.12,-1.87,0,1.39,1.78,0.22,-2.24,-0.49,1.9,-0.05,0.98,-2.26,1.27,2.15,1.12,0.68,0.58,0.12,0.38,0.21,-1.63 +C2160,2.6,6.76,4.84,3.83,0.67,0.48,-1.84,0.86,0.03,0.93,0.08,2.63,-0.34,-3.57,-1.58,-1.52,-0.06,0.31,-0.97,1.81,-0.06,3.05,2.32,1.29,-0.97,-2.02,-1.44,1.48,0.24,-0.46,0.45,2.59,-0.43,2.09,1.16,2.44,2.61,1.35,0.75,1.48,0.79,-0.41,1.57,-0.36,0.37,0.14,2.18,-0.75,-3.54,-2.45 +C2161,2.48,-0.41,-1.27,-2.34,-1.21,-0.33,0.17,-2.32,-1.03,1.52,1.59,-0.27,0.65,-3.28,2.45,1.08,1.7,-3.27,0.71,-0.81,0.62,0.04,1.83,1.86,2.04,-1.05,2.01,-0.72,0.56,-2.34,0.91,0.35,0.99,-1.02,-1.05,-2.48,0.15,-1.03,1.52,0.09,-0.17,-0.63,2.09,1.5,-1.16,1.76,1.71,-0.58,1.28,-0.5 +C2162,-10.35,2.74,-2.09,-4.61,3.67,2.94,0.56,1.47,-0.67,2.94,-1.19,-2.75,-1.03,2.65,-1.69,-0.23,-2.2,2.61,-0.18,0.28,-0.08,2.19,-0.42,-0.37,-0.13,2.35,0.47,-1.54,-1.89,0.35,0.54,1.04,0.71,1.13,-0.61,-1.63,1.71,-0.96,0.6,0.35,-1.82,-0.34,-1.3,1.54,1.24,-0.8,1.9,2.13,-2.2,-2.08 +C2163,3.75,10.68,4.8,6.04,3.65,-1.75,0.14,0.02,-0.77,1.05,-1.2,0.39,3.52,1.37,-0.15,-1.57,-0.06,-1.03,-1.31,-2.85,1.01,-2.85,-1.69,0.56,-1.47,-0.35,-0.64,0.46,-0.25,-1.36,2.26,0.73,1.05,0.52,1.19,-0.07,4.22,1.59,1.15,1.72,5.02,-0.61,-1.91,0.96,1.61,-1.05,-1.74,-0.41,1.42,-2.05 +C2164,5.52,1.09,-1.49,-3.32,-1.51,0.12,-0.33,0.73,-0.51,0.29,2.6,2.22,-0.22,-2.04,-0.37,1.16,3.53,0.27,0.49,-2.25,1.24,-1.66,0.54,2.98,-0.69,0.42,0.41,-0.33,2.04,-0.02,1.05,0.84,0.55,-0.23,2.3,-1.29,0.53,-1.21,1.78,-1.63,0.09,0.44,-2.17,0.25,0.22,1.2,-2.27,-1.04,0.89,-2.65 +C2165,-12.23,2.1,-0.27,-1.92,2.5,4.41,-2.71,-0.7,-1.38,0.88,-3.54,0.62,1.05,1.24,-0.98,-3.9,3.98,-1.37,-1.56,-2.19,-0.1,0.53,0.08,-0.95,0.09,0.65,1.24,-2.05,-0.94,-0.78,0.15,1.91,0.09,-0.77,-0.16,-0.35,-0.71,1.08,-0.77,3.15,-2.16,1.43,0.14,-0.51,-0.66,1.08,-0.62,4.39,2.71,3.39 +C2166,4.28,-0.28,-1.31,-1.73,-3.73,-0.77,-0.65,0.42,0.55,-0.35,1.71,-0.54,-2.68,-0.93,1.02,-2.88,1.21,2.21,1.72,0.8,-0.73,-1.25,0.85,-0.49,2.53,-0.07,2.14,-2.91,-0.07,0.27,-2.44,-0.44,-0.21,-0.52,-2.92,-1.91,0.13,-2.78,-0.9,1.73,-2.16,0.18,-2.22,-1.24,-0.17,0.59,1.86,-2.96,-0.57,-0.24 +C2167,3.25,-1.01,-1.46,-1.54,-2.78,-0.26,-0.9,-0.09,0.32,-0.62,2.84,0.18,-1.33,1.24,1.11,-0.58,-2.19,-0.72,-0.13,-1.36,3.61,-1.77,2.52,-1.74,0.11,-0.79,1.09,-1.92,0.28,1.25,-1.03,0.84,1.59,1.2,-0.53,-2.05,1.3,4.02,0.21,1.25,0.94,1.06,-0.86,1.1,0.14,-0.58,-2.98,1.89,-0.85,1.87 +C2168,4.46,4.86,0.7,0.4,3.87,0.31,2.03,1.35,1.69,-0.68,1.23,0.06,0.98,0.97,1.16,-0.71,2.05,-1.74,-1.45,-1.6,-0.26,-0.99,1.95,-1.38,0.6,0.64,-1.33,-2.03,-0.58,-0.23,-0.52,2.39,0.26,-0.63,0.58,2.75,0.16,-0.15,0.36,-1.32,-1.31,1.68,1.12,0.22,-0.19,-2.83,0.2,0.74,0.05,-0.03 +C2169,-9.22,1.97,-0.49,-2.48,2.04,1.14,-0.18,-0.47,-0.14,0.4,2.35,-0.26,-0.07,0.23,-1.38,-0.01,-2.1,-0.91,1.92,-0.25,1.38,-0.86,0.33,-2.03,0.37,1.11,0.66,-1.24,0.47,-1.19,-0.93,-0.37,0.6,-0.75,0.26,1.27,2.44,2.6,1.25,-0.77,3.19,-0.9,-0.9,-0.65,-2.59,-0.66,-0.03,-0.76,-0.44,-0.16 +C2170,2.71,-10.47,3.03,3.69,2.31,-0.41,-0.14,0.57,0.97,2.32,1.24,-1.67,0.44,-3.34,1.1,-2.49,3.51,-0.7,3.69,-0.82,-4.82,-2.55,-1.37,-0.01,-0.12,2.42,-4.01,-0.58,-0.66,-0.13,-0.09,1.55,-1.64,0.46,1.18,2.87,-1.24,0.07,-0.55,-1.26,-1.18,-1.64,1.81,1.04,-3.43,-0.99,-1.91,0.66,0.51,-2.37 +C2171,4.81,2.04,-2.64,-2.16,-0.85,-0.62,-0.31,4.6,0.55,-1.05,-1.55,-1.08,-0.19,-0.27,0.15,-2.41,0.67,1.71,0.4,1.81,-0.07,1.3,-1.25,-0.65,2.49,-1.81,-0.15,-1.42,-1.7,-1.78,1.34,1.98,-1.39,1.82,0.03,-3.41,0.53,0.78,-0.71,-2.69,-0.5,-1.05,-2.4,0.09,1.78,-0.88,-0.9,-0.23,0.9,1.73 +C2172,4.74,1.39,-0.99,-2.08,-1.06,-0.2,-1.03,0.6,0.89,0.35,-0.28,0.14,-1.17,-0.07,-2.42,-0.6,0.02,0.41,-0.64,0,-1.82,-1.56,0.39,0.58,1.93,1.89,-2.08,-0.84,-0.11,1.43,-0.42,0.65,-0.17,-0.2,-0.92,-2.08,-0.14,-0.43,-1.06,1.97,-0.29,-0.39,-0.43,1.08,-0.49,-0.03,0.53,-0.55,-0.87,0.8 +C2173,-12.15,0.36,-1.3,-2.64,1.33,3.75,-3.28,0.29,-0.99,-0.05,-1.22,-1.32,1.25,0.28,-3.17,0.6,-0.19,0.56,1.03,-0.28,1.45,0.13,1.8,-2.49,4.41,1.16,1.83,-1.81,-1.37,0.43,-2.02,-1.93,-2.41,-0.43,1.04,-1.42,5.13,0.35,-2.13,-0.36,-1.59,1.16,-2.54,-0.03,-0.34,0.52,3.14,0.27,0.4,0.12 +C2174,2.1,6.42,4.51,5.67,1.96,-1.5,-0.44,-0.18,-1.03,0.39,0.68,-1.13,1.52,-0.49,0.56,-1.06,-0.59,0.9,-2.6,1.95,1.52,-1.43,-0.81,1.49,-0.02,-0.07,-0.94,-1.71,1.64,-0.31,0.15,-1.45,-2.29,0.37,0.86,-1.08,-0.71,1.48,-0.83,1.57,1.73,-1.25,1.18,-0.2,-1.28,1.81,-2.52,0.98,-0.7,-0.07 +C2175,2.79,1.39,-2.47,-3.38,0.68,-0.25,-1.1,0.2,0.37,0.29,0.22,1.6,-0.36,-1.11,1.08,-2.59,1.57,2.98,0.4,-0.2,-0.07,0.81,-0.42,-1.11,-2.3,0.73,-0.42,-1.77,1.05,0.86,0,-0.87,1.26,0.44,-1.16,-2.55,-1.04,1.71,2.5,-3.05,1.31,0.73,-0.42,-1.69,0.63,-0.94,0.3,-1.11,2.23,3.16 +C2176,2.7,-9.67,-0.01,2.05,7.17,0.11,-1.02,2.09,0.48,-1.1,-1.45,-0.26,-1.82,-0.24,-1.11,-0.07,-5.69,1,-2.53,-3.36,-0.44,-0.68,1.03,1.5,-3.34,-5.56,-0.91,-1.44,-1.14,-0.8,-0.91,-1.73,-4.15,0.22,-0.39,0.34,2.72,-2.87,-1.12,1.23,0.25,2.86,-1.13,2.32,0.9,-2.63,-0.68,2.66,1.55,-5.1 +C2177,3.3,-0.41,-1.01,-1.85,-2.49,0.03,-0.84,-0.53,-0.33,-0.38,0.63,-0.21,-0.75,-0.58,0.64,1.32,-0.39,-2.09,0.26,-0.74,-1.36,-0.78,-0.54,-1.02,1.23,-0.14,-2.87,1.06,-0.27,-0.21,0.19,-0.12,-1.04,-3.61,1.45,0.65,-0.51,-0.23,0.32,1.48,1.54,1.05,-0.52,-0.49,-1.84,1.03,-0.54,0.98,1.39,1.79 +C2178,3.47,8.52,8.05,8.07,0.78,-1.01,-0.49,0.81,-2.07,0.3,-1.07,-0.47,0.48,-0.81,2,3.06,0.44,-3.47,-2.83,2.5,-0.19,0.25,0.16,2.25,-0.52,0.79,-1.52,-0.89,-0.09,-3.17,0.14,0.69,-1.4,2.99,0.35,-0.79,-0.28,-3.82,-0.99,-7.01,1.29,4.69,0.03,0.85,-2.01,-0.16,2.18,2.9,-1.47,0.63 +C2179,3.28,-0.53,-0.29,-2,-2.92,-1.39,-1.62,0.5,-0.8,1.14,-0.58,-0.16,0.35,2,0.39,-0.41,0.2,-0.12,-0.58,-1.01,-1.11,1.78,-1.33,0.45,0.71,-2.88,0.82,1.42,0.33,-0.92,-0.11,0.34,-2.27,0.83,-2.47,1.55,-0.88,-1.6,-1.51,-1.98,0.19,0.66,-0.79,-1.7,-0.51,0.58,1.27,-2.99,0.49,-0.66 +C2180,4.78,1.08,-1.64,-2.25,-1.7,1.05,-0.26,1.74,-0.49,-1.41,-0.07,0.39,0.45,0.63,0.25,1.52,-1.39,1.66,-0.96,-2,-0.46,6.67,1.34,-1.12,-0.26,1.3,-2.41,-0.85,-0.05,-1.08,1.5,-3.78,0.55,1.98,1.3,0.34,-2.76,-3.65,0.02,-0.75,1.69,0.58,1.28,-1.84,1.6,-1.66,-3.58,-0.33,3.32,-0.87 +C2181,3.73,-13.03,2.71,4.01,8.29,-0.6,0.24,6.43,0.08,0.58,-0.2,2.92,-1.89,4.29,2.96,0.6,-3.82,1.88,0.11,-1.52,-7.01,-5.62,2.35,1.15,-4.11,2.62,2.38,0.89,-0.45,2.89,0.28,2.67,2.45,1.67,-5.59,-1.28,-2.6,-2.74,5.47,-4.13,-2.29,3.28,-1.71,-0.37,-3.52,4.57,-0.14,0.52,4.48,-0.43 +C2182,0.53,-0.56,5.79,5.26,-6.89,3.1,-1.92,0.09,-4.5,5.46,3.01,0.83,-13.07,2.99,-2.48,1.73,-0.01,1.73,2.58,2.49,0.68,-2.75,1.54,-0.1,-3.29,-0.07,-3.14,1.96,0.36,-5.05,-0.88,-1.97,2.12,0.28,-0.08,1.93,3.15,-2.34,-2.1,6.38,-1.37,1.49,0.63,5.89,6.2,-1.47,1.28,-1.67,1.98,0.66 +C2183,3.5,-3.16,0.78,0.25,0.16,2.56,0.2,-6.32,0.16,-2.79,-1.54,2.15,0.68,0.36,-1.18,1.81,2.52,1.7,-0.31,0.49,1.64,-1.2,0.14,1.85,1.75,2.11,-2.53,-0.9,-0.38,-2.18,-1.38,-0.62,-4.74,-2.61,3.22,1.93,-1.64,-1.74,-2.14,-0.11,1.23,0.88,4.95,0.91,-0.69,1.48,2.52,-3.55,2.31,1.76 +C2184,3.84,7.1,4.34,3.71,2.85,-1.31,0.13,0.21,-0.96,-1.77,-1.16,-0.92,4.4,-0.32,0.45,0.89,1.45,1.02,1.1,-0.14,1.92,0.13,-1.26,0.81,0.59,-0.36,-2.55,0.93,0.64,-1.68,-0.76,0.03,-2.45,-1.82,0.24,3.44,-0.28,2.17,2.13,-0.68,0.62,-0.44,-0.39,-2.5,3.44,-0.01,-1.6,-0.45,1.94,1.96 +C2185,6.09,-1.34,-1.05,-2.51,0.77,-0.13,0.31,-2.32,2.37,1.11,-1.7,-0.4,-0.92,-0.29,-0.18,-0.03,-1.26,-1.13,-0.02,0.72,1.31,-0.8,-0.68,0.51,1.2,2.25,0.07,1.28,0.31,0.45,1.1,0.48,-2.24,-1.84,2.3,-2.53,-3.34,0.52,2.12,-1.32,0.39,-1.55,1.22,0.74,1.4,0.33,0.97,-0.8,4.62,-0.32 +C2186,6.24,0.63,-1.27,-2.67,-1.95,-1.79,-0.65,3.46,0.91,-0.83,-0.5,-0.22,0.33,-0.41,-0.03,-2.24,0.84,0.01,2.86,1.43,-0.42,-0.76,-1.95,2.37,-2.5,1.1,-0.26,0.75,4.14,0.73,-0.01,0.02,1.42,-0.96,1.92,1.61,-0.84,0.04,-2.07,1.93,1.13,-0.33,0.03,-1.67,-0.1,0.89,4.31,-1.77,0.22,0.98 +C2187,-11.35,-0.05,-1.18,-1.94,1.07,2.19,-1.11,-0.29,0.36,-0.83,1.19,2.24,-2.66,0.83,-0.13,0.54,-0.27,-2.1,2.04,0.68,1.93,-1.85,-0.06,-0.14,-0.25,2.69,2.89,-0.24,-1.45,-0.11,1.56,-0.42,2.38,3.88,1.29,2.75,2.61,-0.05,0.37,-1.34,0.14,-2.44,-0.72,-2.77,-2.45,0.46,-4.14,0.6,2.51,3.48 +C2188,3.73,-6.4,0.66,0.82,6.19,-0.57,1.16,-2.37,1.53,-1.52,2.28,-0.4,1.21,0.1,-2.33,-2.71,0.54,4.64,2.62,2.56,-2.81,-0.66,1.81,-1.51,-0.91,-0.22,3.56,1.27,-3.9,-0.86,2.23,2.08,-0.78,1.33,1.67,6.21,-1.3,-0.5,1.76,-0.99,1.05,-1.13,1.67,1.43,-0.98,0.09,-2.06,1.5,1.52,0.71 +C2189,5.64,2.04,-1.53,-3.17,0.9,-0.24,0.98,0.24,1.24,0.56,-0.27,0.28,-0.08,-0.95,-0.37,2.32,-0.24,-0.11,0.69,0.08,0.65,0.1,-3.81,0,-1.1,-0.85,1.09,-0.01,0.6,-1.41,-0.8,-0.28,-0.28,0.42,-0.65,-1.2,0.42,-2.34,0.2,-1,0.38,-0.11,-0.13,-1.67,-1.2,-1.01,1.11,-1.17,0.93,2.48 +C2190,4.64,0.29,-0.65,-1.66,-3.55,-0.2,-0.78,2.26,-0.38,-0.76,-1.81,1.21,-1.36,1.56,0.4,-0.8,-1.61,-0.46,0.99,0.44,0.75,1.17,-0.32,-0.62,1.54,-0.15,0.64,-0.33,-0.41,0.85,1.62,-0.05,-1.25,-1.09,-0.26,-0.14,-0.23,0.34,-2.45,-0.81,0.74,-0.37,3.35,0.06,1.33,-0.56,1.55,1.42,0.45,1.17 +C2191,4.21,1.21,-1.58,-2.22,1.02,-0.27,1.64,-1,1.28,0.54,0.95,-0.57,-0.53,-0.92,0.65,1.2,-0.21,0.41,-1.04,-0.22,-0.18,2.06,1.46,0.06,-1.48,-1.47,-2.44,0.58,2.45,-0.48,0.92,0.29,-1.67,0.64,-0.16,-0.37,0.38,0.09,0,-0.64,1.38,0.04,-0.03,-0.05,0.41,1.67,-0.03,0.06,0.98,0.14 +C2192,4.27,-0.16,-0.87,-1.88,-2.68,1.39,0.05,-0.06,0.42,1.69,-1.74,0.18,0.38,-0.7,-0.14,-1.58,-1.74,0.44,-1.19,1.05,2.38,1.94,2.84,-0.38,-1.69,-0.28,-1.13,2.9,-0.58,-1.06,0.71,-0.21,-0.4,-0.71,-1.58,-0.82,-1.57,-2.07,-0.96,-0.88,-0.34,2.48,0.01,2.37,-1.23,-2.51,-0.12,-1.64,-0.18,-1.45 +C2193,3.87,7.83,5.69,4.74,2.25,-0.07,1.07,-0.95,-0.13,-1.9,-3.2,-1.52,1.67,1.7,-0.07,-0.51,-2.03,-1.36,-0.45,1.43,0.67,-1.13,0.6,0.15,-0.44,-0.63,1.65,1.74,0.71,0.12,-1,0.08,0.41,0.52,-3.12,0.22,-1.49,0.32,-1.42,1.98,2.5,-0.03,-1.48,-1.04,1.25,1.16,-0.68,0.73,-4.43,-0.14 +C2194,3.45,7.27,1.59,4.73,1.51,-0.97,-0.17,0.81,-1.84,0.04,-0.59,-0.96,1.11,0.96,0.76,-3.53,-4.44,0.02,3.04,0.19,1.45,-2.15,-1.7,3.39,2.24,2.07,-1.35,-3.12,3.29,1.02,2.01,-3.15,0.58,0.34,-2.51,0.37,-1.58,-0.81,-3.19,-1.55,1.94,-1.44,-0.19,-1.37,1.63,0.95,-0.5,2.74,2.69,2.02 +C2195,4.93,0.84,-0.34,-1.46,4.18,-1.51,2.53,-2.52,2.88,-1.21,2.72,-2.81,-1.36,-0.71,-1.36,-0.01,-1.26,1.84,-0.31,-2.19,-0.02,-0.71,1.55,-1.51,-1.27,-0.96,2.25,-0.85,0.17,1.09,-3.51,-1.9,0.66,1.52,-1.01,-1.27,-0.66,-0.18,-0.81,1.2,0.14,-0.94,-1.11,-0.17,2.31,0.72,-0.3,-0.53,0.68,-1.22 +C2196,2.23,-13.76,2.48,2.62,5.99,-0.83,-0.57,2.47,3.3,2.94,3.07,-4.42,0.98,-1.47,-1.43,-0.37,1.31,-2.24,5.58,3.05,0.37,3.9,3.77,-0.76,-2.89,-1.17,-2.43,2.97,-5.88,3.11,3.62,-1.26,-1.74,-1.74,-4.02,-1.63,-2.71,0.77,-0.45,1.38,-2.76,-3.23,1.13,0.84,-4.76,2.11,-3.57,-2.37,-0.63,0.52 +C2197,4.81,-0.21,-2.66,-1.02,0.71,-0.85,0.14,-1.97,0.01,3.01,0.25,-0.98,-0.67,-0.08,-2.32,1.19,-1.92,-0.29,0.61,-0.64,-1.77,0.62,1.95,-2.34,-1.48,-3.12,-0.96,1.81,0.1,-3.78,-0.19,-2.79,0.46,-2.74,-0.24,2.1,-0.38,1.45,1.35,-0.87,2.58,3.8,-0.11,0.53,1.06,3.15,-0.05,0.06,1.79,-2.33 +C2198,-12.92,-2.14,1.45,1.17,-4.08,-6.71,3.5,-1.24,1.08,1.7,3.1,0.59,0.58,0.17,0.55,-0.36,-2.62,3.42,0.06,3.91,-0.57,-0.34,-2.65,1.49,0.76,0.59,4.3,-0.48,1.67,-0.35,1.19,1.41,0.49,1.94,-0.83,-1.41,2.57,-2.11,1.37,0.6,-1.6,-3.9,3.3,-3.51,0.93,-0.26,0.43,0.84,-0.86,3.86 +C2199,4.97,2.25,-1.8,-2.75,-0.27,-0.02,0.43,2.36,1.64,-2.1,-0.64,1.56,-0.91,1.54,-3.12,-1.91,0.3,-1.79,0.28,-0.37,0.48,1.4,-0.51,-1.7,-0.06,1.38,0.71,1.81,-0.92,1.68,-1.54,0.13,1.7,-0.35,-1.81,-1.2,-0.33,1,-1.77,-0.4,-1.99,0.41,-0.51,1.24,1.35,-1.12,-0.26,-0.02,-0.7,-0.8 +C2200,4.98,2.63,-2.88,-3.11,-0.17,-1.14,0.91,2.22,1.42,-0.88,0.1,-0.47,-1.09,0.22,-0.03,0.98,-0.47,1.79,0.87,1.1,-0.87,-0.72,1.4,1.34,-1.39,0.22,1.68,-0.28,3.1,-1.94,3.53,0.7,0.37,1.22,0.65,0.86,0.44,-0.16,0.88,-0.37,-0.73,-0.11,-0.16,0.94,0.17,-0.46,-1.13,0.96,1.55,0.89 +C2201,2.43,-0.96,-1.11,-2.47,-1.8,-0.21,-0.71,-0.06,0.43,1.19,0.53,-0.4,-0.12,-1.31,1.05,-0.88,-0.08,1.64,-0.19,-3.07,-0.2,-1.09,-0.43,-2.05,1.19,-0.6,-1.63,-2.18,0.42,0.42,-0.6,-2.53,0.59,0.83,0.28,0.31,0.9,-0.03,1.46,-0.35,2.93,-0.73,-0.87,1.27,1.78,-0.48,-1.04,-0.2,0.48,0.92 +C2202,2.18,-4.48,0.89,-0.48,-0.26,0.09,-1.2,-2.94,0.84,-0.19,-2.66,1.9,2.13,-1.96,-0.4,-4.69,-0.58,0.48,0.23,1.55,-1.25,2.66,-0.13,3,-2.42,-0.58,0.39,-1.11,-0.73,0.39,-1.79,2.44,-3.36,-1.29,-1.97,1.14,1.72,0.19,3.1,0.24,-0.84,-4.75,2.13,0.5,-1.52,-1.05,-1.82,-0.59,2.57,-2.32 +C2203,1.42,-13.04,3.55,5.86,1.35,2.64,0.8,1.41,-1.64,-5.49,5.05,2.13,1.94,-6.54,-2.76,-2.95,2.3,-5.63,2.15,1.66,0.75,2.49,3.59,2.76,3.16,-0.51,4.78,-0.6,-5.15,-1.08,1.38,0.64,0.38,3.42,4.08,-2.08,1.94,0.39,3.02,-3.81,2,-1.02,3.27,-2.38,1.92,0.06,5.62,6.23,4.27,-7.37 +C2204,4.45,2.88,-1.29,-2.81,1.53,-0.25,1.62,0.83,0.77,0.45,0.12,1.19,-1.56,-0.08,0.77,1.53,1.35,-1.21,0.9,-2.03,-0.62,1.57,-0.39,-1.19,-1.05,-0.37,1.31,-0.75,-0.21,0.31,0.74,-0.28,-0.34,-1.26,2.2,0.48,0.98,0.05,-0.52,-0.03,-0.49,0.8,0.31,-1.42,0.71,-0.7,1.61,2.62,-0.3,-0.83 +C2205,4.27,-0.38,-0.91,-1.94,-0.64,-0.71,0.82,-3.98,0.65,-0.71,1.95,1.25,0.26,1.33,0.01,3.23,1.62,0.29,1.7,-0.04,-0.08,-1.45,-3.09,-2.17,-0.33,0.44,1.06,1.7,-1.31,-3.03,-2.16,1.85,1.05,-0.38,-0.03,-1.31,0.03,-0.51,0.37,-0.34,-1.51,-1.09,-3.56,1.69,-2.93,-1.99,0.99,0.44,-1.23,-0.83 +C2206,4.28,-0.22,-1.61,-1.94,-3.6,0.25,-2.08,-0.63,-1.63,0.26,0.21,-0.86,1.17,-0.45,-0.31,-1.14,-1.51,-1.51,-0.26,3.05,0.35,-0.18,0.03,-0.11,-1.72,-0.54,0.16,0.68,-0.66,2.63,2.82,0.23,0.73,0.06,-4.32,1.37,-1.29,0.08,-1.67,1.14,-1.71,-1.11,-0.39,0.1,1.34,1.97,-0.6,2.44,-1.38,2.79 +C2207,4.12,-4.1,-1.01,0.33,2.31,-0.06,-0.68,-4.44,0.29,0.81,0.51,-1.61,-0.74,0.85,-0.42,-0.7,-1.55,0.9,3.18,0.22,-0.91,1.83,-1.39,-0.74,1.68,0.07,1.37,-1.2,0.08,-2.03,-2.79,2.23,-0.76,-0.68,0.02,2.5,-1.93,1.69,1.86,0.62,0.4,1.78,-2.53,1.68,1.07,0.46,-0.05,-0.18,0.04,-0.49 +C2208,-14.58,1.09,-0.03,-2.85,0.29,-0.03,1.32,0.67,0.21,-2.35,0.21,0.13,-0.58,-0.59,0.04,0.88,-0.53,-0.7,1.11,-3.36,0.42,-1.91,0.27,-0.71,-1.05,-1.11,0.44,2.23,0.87,1.11,-1.38,-0.64,0.77,-0.09,-1.93,0.4,-0.83,0.49,-1.48,-1.19,3.23,2.56,1.24,0,2.21,1.35,1.65,-0.99,1.05,-1.32 +C2209,3.7,7.3,6.02,6.56,1.04,-1.06,-2.35,1.69,-2.17,-1.99,-0.63,-1.37,2.41,-3.03,-1.27,1.24,0.28,-0.4,-1.45,-0.67,1.65,-0.65,0.93,1.76,1.24,-0.15,-2.14,-3.91,-0.02,0.53,-3.86,2.1,4.1,0.47,0.15,-0.21,0.85,0.43,-0.86,1.33,1.81,-1.87,-0.4,3.57,1.7,-1.54,-0.77,1.08,-1.64,2.41 +C2210,3.44,-0.73,-0.5,-2.56,-4.22,0.69,-1.28,1.09,-3.12,1.66,1.51,-2.35,-0.27,1.58,0.67,0.16,-2,0.22,-3.89,1.07,-1.2,0.5,-0.74,-2.27,-1.34,2.62,-1.83,1.02,-0.91,-1.74,-4.18,3.4,0.8,3.31,-1.84,-0.05,2.23,-2.52,-1.41,2.02,-0.38,-0.82,0.02,3.25,1.09,-2.72,-1.18,0.55,0.05,-2.11 +C2211,6.26,1.5,-0.87,-1.11,3.6,-0.22,1.22,-6.89,-0.86,-0.25,-2.53,3.54,0.98,-1.16,-4.51,0.05,-1.54,-0.38,-1.83,1.08,-1.92,0.17,-1.6,1.33,-0.84,-1.28,0.06,1.68,-1.47,-0.79,5.31,-0.36,-3.35,0.52,-0.19,1.47,-0.31,-1.64,-1.17,-1.08,-1.62,2.72,0.77,-0.92,0.38,-0.6,2.21,0.17,-0.48,2.43 +C2212,4.53,-1.97,-0.57,-1.64,-0.61,-2.57,0.66,-1.04,0.15,-0.49,-0.96,-3.5,0.21,-0.51,0.29,0.29,-3.43,0.23,2.97,0.29,0.43,-0.51,-4.92,-2.58,0.08,-0.19,-0.28,1.13,0.11,-1.48,-2.63,2.66,2.23,-1.7,3.22,-0.07,-0.07,-2.28,-0.65,-2.02,0.5,3.45,-2.83,2.19,0.53,0.89,2.34,-0.32,-3.81,1.51 +C2213,2.01,6.48,4.78,4.83,2.49,-1.32,-0.01,-1.86,-1.5,-0.28,0.45,0.75,0.4,0.09,-4.07,2.95,-0.36,0.93,-1.11,-2.69,3.81,0.55,1.57,-0.15,1.18,-0.64,1.54,0.85,2.01,-1.13,0.77,2.74,-0.36,-1.31,1.16,0.66,-1.42,3.3,1.98,1.35,-0.96,-0.96,1.07,-1.12,-2.71,-0.6,-0.74,-0.62,-3.84,0.69 +C2214,3.78,-0.13,-2.01,-1.76,-1.02,-0.64,-0.87,0.85,0.68,1.33,-0.66,1.2,1.24,0.77,-1.07,1.46,-0.13,-0.12,0.39,-0.38,-2.48,1.6,2.14,0.96,-0.64,1.35,3.57,-0.94,-0.58,0,-0.56,-1.18,-0.71,0.28,-0.72,2.6,-1.87,0.78,-0.23,-2.31,0.17,-0.53,-0.08,0.54,-2.52,-1.57,0.06,1.74,-0.57,0.26 +C2215,3.79,9.88,5.18,5.77,3.5,-1.26,0.66,-0.49,-0.71,-2.13,0.18,-1.55,1.92,-0.56,3.5,0,-1.21,0.17,0.14,0.59,-0.47,-1.64,-0.08,1.64,0.94,-1.01,-1.11,-0.25,4.64,-1.65,1.57,0.42,-0.06,0.61,0.3,-1.86,0.01,-1.85,-2.47,0.66,0.71,-0.13,-1.87,0.32,3.47,1.1,0.91,-0.68,-0.66,1.13 +C2216,3.06,8.61,4.02,4.18,3.22,-0.27,0.4,-0.06,0.47,1.48,-0.16,0.67,0.47,1.32,0.32,-0.09,-0.27,-1.34,0.11,-0.2,0.41,-1.06,-0.32,-1,-1.04,1.11,0.93,-1.41,-0.24,0.71,1.79,0.55,0.6,-1.36,-0.22,0.59,-1.21,-2.43,-0.16,-2.79,-2.16,-1.39,-0.36,1.31,-1.36,-1.01,0.37,-2.89,-1.61,-0.79 +C2217,-3.13,-2.49,6.9,7.82,-4.05,5.79,-7.46,4.25,8.23,3.49,5.5,2.98,-18.65,1.02,-4.82,-4.5,0.38,-1.44,-3.18,3,4.26,1.6,-2.32,8.97,1.79,-3.93,3.18,-1.21,0.24,-3.77,-5.02,-2.59,-1.47,2.8,-1.21,0.14,1.43,4.08,-0.92,-3.61,1.54,-4.21,4.26,3.67,-4.61,1.44,-1.28,0.3,-5.42,1 +C2218,1.93,-3.72,0.9,1.9,2.09,1.22,-1.35,-5.18,-0.45,-2.66,-2.1,-2.37,-1.43,-1.83,-2.88,1.3,1.25,-3.3,-0.68,2.02,0.47,-1.12,-1.12,1.9,1.19,-0.52,-2.52,1.64,-2.16,1.54,3.65,1.88,0.07,-0.89,0.73,0.63,-1.82,-0.46,0.07,0.02,0.14,-1.81,-0.6,0.43,0.89,1.17,-1.57,2.53,1.24,4.19 +C2219,-9.8,1.58,-3.16,-3.6,2.57,1.96,0,-0.65,-1.85,1.14,1.07,-0.77,-1.75,-2.15,-1.03,-1.86,-1.56,-3.34,2.19,-0.24,0.46,1.23,2.07,-0.48,1.47,1.28,0.82,-0.11,0.77,0.03,-2.37,-1.07,0.65,-0.2,0.12,2.24,1.77,0.23,-0.19,-2.98,0.67,-0.56,1.35,-0.68,-3,-0.69,-1.37,0.69,0.45,0.32 +C2220,2.24,-9.32,1.4,1.55,5.23,1.2,-0.44,0.88,2.08,0.32,0.69,-5.39,0.16,-2.04,2.7,0.58,-0.03,-1.97,-1.29,0.64,-1.53,4.49,-3.07,1.55,1.85,2.85,-5.66,1.71,0.38,0.18,2.71,-0.21,-1.71,3.84,1.91,-1.88,-0.89,-3.98,3.42,1.18,0.39,1.2,-2.66,1.84,-1.04,2.39,-1.07,0.46,0.96,0.47 +C2221,4.57,1.27,-0.58,-2.07,-1.06,-1.39,1.37,3.96,2.32,-2.32,-0.71,0.51,-1.17,3.64,-0.62,1.47,0.53,-1.23,0.8,0.14,1.67,2.83,3.29,-2.45,-0.67,-0.04,0.42,-1.46,-0.24,2.91,-1.69,1.01,-0.37,-0.27,-0.47,-0.7,0.24,0.94,-1.26,1.49,-3.44,2.28,-2.12,-1.29,1.4,-1.11,-5.07,-1.42,1.73,-1.76 +C2222,3.91,7.67,3.56,3.65,3.08,-0.51,2.18,1.28,0,-1.27,-0.79,-0.68,3.03,-0.87,0.75,-1.09,2.91,1.18,0.57,-1.41,-1.28,-1.5,-2.61,2.74,0.83,-0.28,-0.49,-1.48,0.64,2.83,1.66,-0.52,0.05,1.78,-1.69,1.67,1.46,0.08,1.36,-0.89,1.67,-0.56,-1.89,3.66,-1.18,1.06,-0.03,-0.74,-2.45,-1.14 +C2223,2.55,-0.68,-1.16,-2.35,-3.74,-0.27,-1.46,-0.61,-0.85,1.97,0.23,-0.44,0.23,0.96,1.59,1.99,-1.12,-3.37,-1.45,0.01,0.53,1.66,-1.3,-1.02,-0.23,-0.17,-0.59,3.81,-1.26,-0.56,0.83,1.66,-2.08,-0.5,-0.81,0.75,-1.09,1.98,0.26,-1.68,0.05,-2.1,-0.98,1.67,1.13,-2.93,0.08,0.25,-0.4,0 +C2224,2.91,6.65,4.69,4.59,0.88,-0.39,-1.89,-0.37,-0.72,-1.38,0.89,3,1.35,-0.85,2.52,-0.14,-3.8,0.04,0.01,-1.13,0.6,-1.33,-1.71,-0.97,3.74,-1.96,1.82,-2.95,0.46,1.98,-3.07,3.57,-2.41,-0.92,2.39,-0.17,-1.94,0.54,-1.81,1.18,-1.12,-0.66,0.61,-1.65,0.29,-3.4,-4.71,0.95,1.61,-2.16 +C2225,6.07,-0.44,0.69,1.03,-3.33,3.34,2.91,-0.31,0.14,-5.17,3.41,-0.91,-0.64,2.2,-3.43,4.67,5.64,-3.32,1.29,2.28,-0.03,3.16,4.53,5.88,1.85,2.38,1.19,-0.52,-5.91,-2.86,-3.1,2.05,0.85,-0.31,-0.59,-3.15,0.1,-7.26,0.26,0.41,-1.11,-1.22,-1.54,1.98,-5.51,-1.73,0.33,1.35,3.92,-1.66 +C2226,3.84,-2.63,0.42,-0.6,-5.74,0.92,-0.98,-0.28,-1.68,-1.08,0.69,-1.01,-2.08,-0.75,-0.9,0.49,0.69,-3.65,-2.1,-0.22,-1.39,0.3,-0.97,1.21,1.7,-3.71,-1.66,3.99,-2.82,0.98,-0.29,0.9,-1.4,1.54,1.18,1.64,2.57,1.6,-0.23,1.24,2.87,1.58,-1.93,-2.28,0.62,0.11,-3.29,-0.62,0.2,-1.01 +C2227,-13.06,-2.89,1.83,1.07,-3.24,-7.25,3.73,0.75,0.73,1.95,0.87,-1.26,0.32,0.62,1.03,2.13,-2.94,2.57,2.38,0.36,0.98,1.75,1.45,0.18,-0.49,1.21,0.6,-1.84,2.12,2.15,-2.97,-1.29,4.41,1.9,0.57,-0.33,1.38,1.17,-1.18,1.5,-1.6,-1.07,-1.98,2,1.5,1.56,3.88,1.58,-2.11,0.49 +C2228,-13.97,-0.94,-0.19,-2.33,-0.83,3.01,-2.97,-0.9,-2.98,0.76,-2.49,-1.84,-0.29,-0.05,-1.03,-0.36,-0.85,-2.56,-1.2,0.23,3.28,0.7,1.6,2.14,-0.63,2,0,-1.52,-1.3,-1.02,0.7,1.44,-0.33,-0.09,-0.82,-1.14,-3.54,-0.18,4.63,-2.38,-0.97,-0.88,-1.37,3.35,1.09,-0.95,-0.17,0.12,1.41,-0.03 +C2229,5.16,1.17,-0.96,-2.21,-1.04,-1.17,0.87,2.15,0.94,-0.65,-2.55,0.3,-0.89,1.88,-0.6,-1.28,0.17,1.04,0.76,-0.72,0.09,0.27,0.31,-0.94,-0.43,2.59,-1.87,1.94,1.74,-0.85,-3.32,0.48,0.09,-0.71,-0.23,1.26,0.92,0.29,-1.68,-0.62,-0.26,-2.91,0.65,-0.8,2.04,0.13,-0.93,0.96,0.86,1.29 +C2230,3.1,-1.7,-0.04,-1.09,-2.18,0.67,-1.34,-0.74,-0.53,-1.35,1.82,-1.59,0.5,3.51,-0.85,0.05,0.72,2.14,-0.37,-0.66,0.9,-0.44,-5.13,0.24,-0.63,-0.56,0.49,-0.5,-1.97,-0.23,-0.65,1.31,1.18,1.09,0.42,0.12,-0.3,-0.93,1.52,3.99,-0.38,0.38,1.41,0.89,3.48,-0.94,2.2,-0.15,0.53,-0.73 +C2231,4.47,1.58,-1.16,-3.81,0.16,-0.09,0.43,0.82,1.88,0.99,1.16,-2.57,0.39,-0.21,0.12,-2.03,1.34,-1.37,1,0.26,-0.9,-0.25,0.44,-1.1,-1.26,-1.64,-1.95,1.87,1.07,1.61,0.28,0.09,-0.33,-0.88,0.5,-0.38,-0.98,0.39,1.14,1.92,0.76,0.51,-1.49,0.42,-0.09,-0.44,-0.98,0.4,-0.05,-0.47 +C2232,-10.47,2.63,-2.44,-2.52,3.34,3.31,1.96,-1.36,-2.05,3.04,0.02,0.35,-0.94,-1.29,0.83,0.13,-0.57,0.97,0.27,-1.07,-0.05,0.84,1.12,2.9,0.92,1.03,-0.17,0.36,0.17,-1.65,0,0.75,-1.1,-1.49,-2.12,-1.38,-0.86,-1.09,-0.73,-0.28,-0.88,0.17,-0.69,-3.15,-0.82,0.67,1.59,-2.91,-0.65,-2.39 +C2233,2.99,5.99,3.92,3.46,0.9,-0.61,-1.19,-0.45,-0.34,3.14,-2.16,1.84,0.51,-1.06,-1.36,-1.48,-3.73,-1.9,0,2.3,-0.05,-0.95,-1.33,-0.55,-2.26,1.21,-0.95,3.35,-0.93,2.14,-0.38,2.87,0.63,0.92,-1.85,-0.53,-0.37,-2.67,1.16,-1.64,-2.59,-0.33,-0.12,0.19,-0.59,0.47,0.36,1.08,-1.15,2.72 +C2234,3.17,-1.07,-1.24,-1.54,-4.14,0.08,-0.81,0.61,-0.33,1.77,-0.15,0.28,-1.41,-0.44,2.68,-1.27,-2.49,-2.28,0.49,0.57,1.47,0.42,-0.59,-1.32,-0.83,0.37,0.01,0.02,-0.62,1.29,0.55,1.54,2.59,0.94,-0.62,-1.51,-1.48,1.3,-0.33,-0.14,1,0.68,-1.57,-0.16,-1.43,-0.8,-0.49,-0.35,0.78,-1.83 +C2235,6.56,4.78,-2.07,-3.75,3.25,0.28,3.14,0.69,3.11,-0.17,0.83,-0.17,-0.44,-0.37,1.52,-0.06,0.9,0.43,0.03,0.38,-0.7,-0.16,0.72,1.99,-1.35,-0.17,-0.36,-0.59,-1.18,1.24,-0.19,-0.26,0.78,-0.38,0.44,0.93,-0.48,-0.23,-0.12,-1.21,-1.24,0.57,2.02,-0.6,0.13,0.5,-0.37,-2.23,-0.5,-0.17 +C2236,4.87,-0.62,-1.62,-1.51,2.05,0.2,1.89,-2.56,0.03,2.3,-3.61,4.45,-1.15,-1.15,-3.11,1.84,-1.74,-1.15,-2.05,-2.26,-1.65,1.02,-0.88,0.56,-3.33,-0.63,2.95,-0.02,-1.52,1.12,0.8,0.8,-0.74,0.29,-1.32,-0.24,0.96,-1.32,-2.16,-2.65,-1.98,3.96,0.6,-0.65,-1.1,0.88,-1.05,1.73,-0.2,0.27 +C2237,4.37,-5.18,0.4,0.23,3.87,-0.03,0.82,-5.66,-0.87,1.48,-3.12,2.99,-1.31,-1.4,-2.17,-1.23,-1.86,-0.51,-1.91,-1.16,-1.93,2.86,0.76,1.95,-1.9,-1.63,-0.15,-1.24,-1.01,-0.03,1.07,0.24,-0.1,1.27,-1.67,-0.96,4.51,1.92,-1.41,1.48,-0.97,0.39,-2.3,-1.41,0.4,-0.43,1.6,-1.23,0.26,0.86 +C2238,0.12,-12.23,3.33,4.53,4.86,0.31,-2.36,3.34,0.09,3.64,1.66,0,1.46,-1.81,-2.12,4.8,1.52,1.24,-4.27,1.27,-1.38,-1.89,1.36,-2.58,-0.53,5.66,-4.26,3.23,2.96,-4.93,-0.81,2.84,-1.89,-6.93,-3.41,0.43,-1.07,1.22,-1.16,0.21,0.33,-1.21,1.77,-0.53,2.82,3.98,-1.54,-0.5,0.46,7.41 +C2239,1.84,-11.23,2.42,3.29,6.12,0.63,-1.02,5.74,0.13,-2.42,3.59,-1.02,0.2,-0.89,0.14,2.32,-0.92,0.67,-5.13,-2.5,4.1,-1.46,5.13,-0.59,0.67,0.8,-0.08,0.51,0.42,0.85,1.04,-0.22,1.06,1.38,-2.61,2.32,-1.99,-2.88,1.71,-2.31,0.74,-3.35,-0.71,0.96,-1.6,1.38,1.27,5.27,2.04,1.44 +C2240,4.71,0.01,-0.63,-1.73,-1.41,-0.15,-0.11,1.57,1,-0.87,-1.18,0.29,-0.13,1.55,1.17,0.87,1.73,1.95,1.91,-0.94,0.62,0.4,-1.23,-0.39,-1.45,-0.06,-0.33,-1.31,-3.56,0.16,0.45,-0.54,-2.08,0.44,0.45,2.36,-0.63,-0.02,2.83,1.06,-1.97,-0.28,-0.25,-1.76,3.56,1.84,-0.94,-0.87,0.29,0.58 +C2241,4.29,1.03,-1.8,-1.67,5.2,0.89,1.26,-0.56,2.72,1.44,0.14,-0.62,-1,-1.64,0.59,-1.61,0.96,-0.95,0.39,-2.7,-0.99,2.11,-1.89,-2.33,0.92,1.06,1.01,-1.15,-1.93,-1.51,0.12,0.17,0.47,-2.31,-0.98,1.93,1.51,0.23,-0.05,1.29,-0.12,-2.56,-0.75,1.61,1.48,-1.55,0.32,-2.12,1.03,1.82 +C2242,-12.49,-4.33,2.29,1.82,-5.01,-10.35,4.04,0.55,1.12,3.12,-1.97,-1.73,-0.77,-0.57,-1.63,-1.67,2.75,0.82,-2.14,3,-1.53,1.38,2.76,-3.74,2.63,0.72,-1.77,-1.37,-0.09,0.19,0.38,-0.26,-1.16,-2.11,-1.05,1.52,-2.53,2.05,-0.48,-1.55,-1.49,-2.83,-2.78,1.12,-1.5,-2.44,-0.96,-0.88,1.48,0.39 +C2243,-10.3,-4.02,2.47,2.1,-5.69,-10.45,4.59,-1.52,-1.74,7.02,-2.84,-0.58,0.89,-1.2,-0.09,-1.53,0.63,1.86,-0.09,0.09,-0.72,1.66,1.15,-0.27,2.07,0.67,-2.74,-0.73,0.03,-3.97,-0.27,-3.31,-0.58,-0.08,0.63,-0.91,-0.31,2.89,1.79,1.23,-1.44,1.39,2.01,-0.84,-3.47,3.05,2.64,2.92,-0.37,-3.66 +C2244,-9.02,1.99,-2.7,-4.48,3.71,4.28,-0.4,-1.35,-0.88,3.49,-0.09,-1.5,-0.27,-0.96,0.92,-3.82,0.56,2.43,-0.39,0.91,-1.62,0.21,0.08,0.26,3.6,0.15,-1.34,-1.42,-0.19,0,0.12,-2.38,1.24,-3.58,-0.64,1.33,-2.53,1.8,-0.92,0.6,-3.15,2.17,-0.61,0.91,3.82,-0.46,2.55,-0.12,1.05,-0.52 +C2245,-13.32,-3.39,2.2,3.13,-4.5,-7.27,4.75,-0.61,1.21,-1.02,-1.84,-1.25,-1.33,-1.75,1.67,0.98,-1.26,1.56,-0.21,-0.27,-1.38,0.98,0.97,1.55,1.51,1.62,0.85,-3.66,-1.36,-0.73,-0.84,1.72,1.58,-0.65,-1.58,0.07,1.02,-0.79,1.24,-1.36,1.18,-0.96,-0.56,-0.01,-1.37,-1.73,1.21,0.73,1.36,0.79 +C2246,4.09,-4.42,0.24,-0.54,2.05,1.99,-0.03,-4.56,0.37,1.39,1.38,-0.63,1.72,-0.22,0.68,2.21,0.56,3.21,-0.44,1.22,1.21,1.04,-3.51,-0.26,0.17,1.79,-2.36,2.46,0.77,-1.99,-2.32,0.53,-0.43,1.47,-2.36,-0.98,-0.71,-2.46,-1.02,-0.9,1.28,1,2.04,-0.53,0.14,-1.32,-0.54,-3.2,-0.88,0.55 +C2247,5.35,1.86,-1.48,-3.47,-0.09,0.15,1.14,2.24,1.06,-1.57,-0.33,-1.88,-1.41,1.77,0.65,-0.32,-0.85,-1.54,1.58,-0.25,1.59,1.09,0.09,-1,0.68,0.72,-1.36,-1.08,0.2,1.75,1.15,1.94,0.5,2.06,1.13,0.82,-1.42,-0.43,0.16,1.22,0.7,0.54,-1.05,-1.68,-1.27,1.77,1.36,2.08,-1.81,-0.9 +C2248,3.1,-0.34,-1.93,-1.99,-3.25,-0.07,-0.92,1.29,1.62,1.41,0.56,0.32,0.36,-0.7,2.72,0.8,0.19,-1.6,0.58,-0.19,2.02,0.16,1.04,2.43,-0.46,1.67,1.25,1.45,-3.49,-0.64,-2.17,-2.24,2.29,-0.52,0.4,0.65,0.26,-0.71,1.45,1.65,0.5,-2.16,-2.91,2.58,0.2,-0.54,0.84,-0.46,2.48,2.11 +C2249,2.71,7.59,3.51,5.18,1.98,-1.26,0.14,0.36,-0.53,-1.72,-1.51,-1.18,3.34,-1.18,-2.59,0.64,-2.08,-1,0.19,-0.21,0.79,-0.41,-0.08,0.36,-0.68,1.01,-1.41,0.66,-1.04,0.9,0.18,0.53,-0.62,1.03,-1.18,1.42,1.33,0.86,1.71,1.58,1.37,-0.23,2.62,-0.74,0.09,-0.36,-0.91,0.43,0.9,-0.9 +C2250,3.95,-0.05,-0.57,-2.32,-1.14,0.79,-1.72,-0.05,2.38,1.96,0.8,-1.53,0.89,-0.1,2.51,-0.5,0.92,4.69,-1.91,0.05,1.5,-3.26,-0.38,-0.15,-0.9,-1.84,-2.48,-2.07,-2.48,0.35,0.61,1.63,-1.71,1.14,-0.66,2.02,0.18,-0.3,-0.45,0.28,0.6,0.43,1.33,-2.06,-0.11,1.22,1.82,1.43,0.82,2.53 +C2251,4.62,-0.52,-0.27,-2.26,-3.31,-0.59,-1.45,-0.14,-0.68,1.02,1.64,-1.52,0.05,-0.07,-3.07,1.57,0.82,2.73,-0.51,2.37,-1.31,-1.88,-0.99,2.59,0.42,-1.13,-0.85,1.15,0.34,4.17,3.02,-3,-2.97,-0.17,-2.48,1.95,-0.83,0.23,1.46,-2.4,-0.56,2.04,0.91,0.09,0.56,-3.75,-1.73,2.87,2.71,-1.29 +C2252,-13.8,0.08,1.77,0.86,-1.78,-3.38,0.93,-2.36,0.79,1.06,0.64,0,-0.45,1.88,0.65,1.52,-2.24,-0.78,-0.63,-3.11,-0.19,1.64,-1.85,1.09,1.47,0.74,3.37,1.73,-1.06,-0.32,0.25,1.69,0.77,-2.32,-0.7,-1.42,-0.86,-0.76,-0.54,1.55,0.79,-3.87,-0.12,-2.68,-0.49,-1.55,0.14,1.64,-0.85,1.41 +C2253,-8.76,3.47,-3.02,-5.36,4.98,2.67,0.85,-0.06,0.18,4.16,-0.04,-1.95,-0.71,-1.61,0.59,-0.11,-2.22,3.68,-0.51,0.51,1.05,-0.48,-0.68,-1.75,-1.49,-2.49,-1.93,-1.36,-0.27,1.83,-1.67,0.34,0.65,-0.88,-0.26,-0.17,1.73,0.96,0.71,1.17,-0.81,1.71,1.45,-0.58,-1.49,-0.78,0.49,0.26,1.41,-2.05 +C2254,-8.32,3.44,-2.06,-4.96,5.41,4.69,0.06,0.76,-2.75,-0.56,1.95,1.3,-0.28,-0.56,-1.66,0.77,1.06,-0.92,-0.59,2.06,-0.91,1.15,0.81,0.26,1.73,1.41,1.64,1.72,-0.71,0.18,0.76,1.18,1.6,0.22,0.69,0.98,-0.11,0.49,-0.48,1.03,-1.4,1.56,1,0.44,-1.83,-0.97,-0.19,1.46,-0.18,-0.75 +C2255,4.47,-3.21,-2.13,0.96,-0.17,-0.58,-0.61,-4.99,-2.06,-1.17,-2.47,5.36,1.15,-2.53,-0.91,-1.38,1.75,0.91,-1.54,-2.4,-0.27,3.75,0.75,-2.33,-1.72,-1.8,-0.67,-1.19,-2.53,-4.48,-5.5,-3.36,0.58,-0.54,0.5,0.08,-0.81,-4.63,-4.59,-0.59,-3.55,-0.32,0.66,-2.04,-1.33,1.59,1.88,3.22,0.3,-2.62 +C2256,4.18,-4.11,0.5,0.93,3.65,0.98,1.65,-1.52,0.11,0.23,-4.54,6.91,0.89,3.07,6.03,1.17,0.02,1.56,0.86,1.94,2.97,0.83,-0.97,1.28,1.21,-2.69,-0.7,-5.85,-0.06,-0.78,-0.56,2.04,1.62,-1.39,0.54,-1.31,2.61,3.84,-4.58,0.03,-2.28,-1.22,-2.64,0.62,-1.32,-1.19,-1.59,1.92,0.81,0.89 +C2257,-11.95,-1.09,1.31,0.37,-1.74,-3.34,1.54,1.26,-4.1,-1.24,-0.35,0.18,0.12,0.21,-1.73,-0.52,1.4,-2.43,5.12,1.07,1.7,3.21,-0.64,2.64,1.66,-6.46,-1.96,-1.65,2.56,1.1,-1.83,-0.89,-1.43,0.1,-0.53,-0.83,3.5,0.88,-1.51,0.2,2.41,-0.67,2.61,-3.63,1.16,-1.58,0.87,0.56,-2.59,-1.9 +C2258,4.49,-2.26,-0.59,-0.25,-0.1,0.36,-0.41,-2.89,0.37,-1.07,-2.33,1.19,1.24,0.54,-1.56,-0.07,-1.38,0.04,0.8,-0.78,2.63,0.29,-0.71,1.98,-1.34,0.04,-2.64,0.37,1.08,0.75,3.02,-1.88,1.35,-0.91,-0.24,2.22,2.29,4.27,0.7,-0.03,-0.54,-1.02,3.3,1.87,2.39,-3.19,1.16,-0.55,-0.4,-2.21 +C2259,-11.84,0.57,-0.51,-3.59,0.87,2.23,-0.35,-1.3,-1.03,0.15,1.28,0.55,0.94,-1.12,0.87,3.76,-0.51,-1.86,-0.37,-1.16,-3.37,0,1.74,-0.58,-0.89,-1.47,0.3,1.58,-0.41,1.58,-0.02,1.88,1.09,0.4,-1.36,0.67,1.85,-1.82,-0.21,3.17,1.77,-0.23,-2.56,-1.35,-2.19,2.15,0.06,0.18,0.56,1.09 +C2260,5.36,3.2,-1.9,-3.22,2.07,-0.44,1.9,1.62,2.03,-1.57,0.6,-0.2,-0.71,-0.08,0.14,1.59,-0.4,0.6,-1.21,-0.88,0.82,1.17,0.45,0.62,-1.5,-0.65,-2.62,-1.99,-1.27,1.71,-0.08,-0.46,-0.45,-0.75,-0.85,1.11,-1.12,0.42,-0.43,-0.27,-1.76,1.67,-0.6,0.67,-0.99,0.14,-1.72,0.61,-1.27,1.09 +C2261,4.66,-5.4,1.07,1.87,2.47,0.01,0.66,-4.4,1.63,-4.84,1.8,-2.74,0.07,3.32,0.69,-0.4,5.44,-1.77,1.8,-1.23,0.41,1.58,-0.21,-0.78,-1.58,-0.03,-1.75,2.88,1.84,-1.06,1.99,3.05,-2.54,0.67,0.44,-1.68,0.11,-0.74,-0.05,-3.21,0.37,-2.14,1.05,2.89,4.27,-1.69,1.49,2.34,-0.72,-0.48 +C2262,4.08,-0.93,-1.35,-1.44,0.44,-1.07,0.17,-2.37,0.48,-2.28,-0.76,0.88,0.3,0.91,0.17,-0.11,2.48,-0.49,-1.25,-0.39,1.37,-0.16,3.32,3.82,-0.33,-0.77,0.7,-0.23,0.83,0.36,-4.42,-1.03,0.91,-0.12,-1.09,0.85,1.26,-3.42,-0.08,-0.01,0.91,-1.53,1,0.2,0.37,-2.18,-2.18,0.26,-0.61,-0.72 +C2263,4.55,1.36,-0.62,-0.55,-0.88,0.23,0.09,1.25,0.41,-0.4,-1.32,1.36,0.63,-0.3,-0.88,-0.24,1.09,3.07,-0.29,1.05,-1.87,1.39,1.52,-0.83,-1.84,-1.13,-1.23,0.15,-2.38,-1.59,1.18,2.47,0.01,1.48,1.09,0.18,0.54,-0.38,-0.19,-1.02,1.07,0.1,-0.48,-0.6,1.66,0.17,-0.68,0.82,-0.9,0.71 +C2264,4.83,-11.82,2.11,3.23,4.1,-2.75,1.03,-0.61,-1.35,0.28,-2.07,0.68,0.95,2.24,2.57,3.17,4.05,-0.35,3.91,-0.51,0.69,-4.04,0.47,1.55,2.79,3.28,-1.03,-0.99,-3.74,1.32,0.28,-0.23,1.37,-2.16,0.49,-1.56,2.04,1.03,-0.02,3.19,-1.08,1.95,1.82,-0.96,-2.82,2.51,-1.52,-0.38,-2.21,1.07 +C2265,-12.48,-4.01,0.79,0.91,-4.59,-7.61,4.03,-0.72,0.59,1.43,0.02,0.42,0.55,-3.37,1.23,-3.51,0.14,2.86,-1.94,2.02,0.33,0.9,-2.39,-1.42,-1.2,-0.72,1.44,-2.65,-1.72,-2.36,-1.37,-1.8,-1.78,-2.05,-0.31,1.33,-1.38,-2.29,3.93,0.55,-0.74,0.41,1.73,-0.01,-2.8,-0.84,0,0.43,-0.21,-3.29 +C2266,2.64,-0.53,-0.81,-2.03,-1.15,-1.45,-0.24,-1.51,-0.42,-1.05,3.9,-2.23,1.02,-1.94,-1,2.11,-3.64,-1.65,-0.84,1.06,0.35,0.71,-1.65,-1.92,-2.3,-0.78,0.59,-2.91,0.37,1.81,-1.88,0.87,3.68,-0.85,-0.1,0.54,-0.73,3.24,-0.18,-0.12,3.63,0.81,-1.03,-0.67,-0.53,2.09,-0.59,2.89,0.04,-1.16 +C2267,0.07,-14.76,5.03,7.8,-3.83,10.69,8.5,4.03,-2.57,-0.48,3.17,-1.05,5.75,-5.62,-0.55,4.79,0.14,0.2,-0.91,2.99,0.23,4.67,1.05,-3.37,-1.51,-0.9,2.46,-0.57,-2.96,3.76,-0.76,1.55,1.84,-2.14,1.63,-0.05,-0.42,-4.24,1.46,-1.07,0.12,-2.1,5,1.95,0.53,1.28,-2.95,3.99,-1.12,1.12 +C2268,2.06,3.98,3.94,5.77,-1.78,0.04,-0.63,0.01,-2.04,1.53,2.29,0.17,-0.21,-0.22,-1.47,1.7,0.95,3.15,1.35,-2.69,-0.54,-1.01,3.27,-1.43,-1.76,-2.33,0.67,-0.92,-2.27,0.39,1.42,-1.01,-1.79,2.27,-0.27,1.05,3.3,1.57,0.72,2.12,2.41,-1.86,2.45,-2.02,3.97,-1.44,0.45,3.93,2.43,-3.07 +C2269,5.23,0.4,-1.39,-3.19,-0.44,-1.05,-0.83,-0.25,1.41,0.63,-0.6,-1.51,-1.31,0.53,-2.35,0.62,0.76,0.46,-2.84,1.28,0.17,0.72,2.26,-0.39,2.21,-0.2,1.72,-0.49,1.5,1.29,1.96,1.47,-2.16,-0.63,-1.96,-2,0.07,-0.77,1.73,0.02,2.57,1.56,-0.09,1.48,-0.07,-2.77,-1.1,-1.45,0.88,1.73 +C2270,1.25,6.57,6.25,7.2,-1.48,0.03,-3.26,-1.6,0.8,1.92,1.15,1.9,-1.45,-0.31,-0.23,1.39,1.9,-3.05,-2.52,-3.95,2.07,1.91,0.99,-1.45,-1.68,-1.65,1.76,1.11,1.68,0.65,0.64,0.07,-1.67,-3.95,-0.37,-2.49,2.16,-0.93,3.2,-1.79,0.66,0.01,0.15,1.05,-0.27,3.31,0.16,-0.03,-0.19,-2.8 +C2271,-12.87,0.09,2.42,1.56,-2.25,0.3,-1.9,-0.1,4.83,-2.67,0.69,1.2,1.33,0.53,1.39,2.7,-0.15,-0.49,-0.7,1.07,-2.81,-4.18,0.98,-0.46,-1.4,1.85,1.34,-0.59,1.24,0.65,-1.17,-1.51,3.09,1.9,-0.12,-0.42,-0.96,-1.76,-3.91,2.22,0.07,1.09,1.69,1.39,1.67,-1.08,1.69,-0.25,2.15,-3.56 +C2272,2.23,6.62,4.51,4.24,1.59,0.61,0.99,-0.11,-0.52,0.82,-0.56,-0.99,1.03,-2.03,-1.69,-0.1,0.87,0.42,1.82,-0.52,2.1,0.49,1.4,-2.31,0.25,-1.17,-0.85,-1.83,-0.95,0.84,0.79,-0.34,-2.26,0.79,-1.65,0.87,-1.21,-3.2,0.22,-2.14,-0.33,-0.5,1.83,-1.48,-0.37,0.63,-0.36,1.17,0.85,0.61 +C2273,-12.12,0.08,-0.74,-3.25,0.98,2.62,-2.89,1.34,-0.66,0.26,-1.96,-1.33,-0.32,1.51,-0.41,0.67,0.4,4.02,-1.5,2.94,1.76,-0.58,1.29,-3.11,-0.04,-0.92,1.5,-0.14,0.35,1.51,-1,-1.55,0.65,-0.02,-0.96,-0.99,0.65,1.36,1.37,0.35,-1.32,1.33,3.11,-1.41,-0.03,-0.83,0.04,1.92,-0.6,-1.83 +C2274,6.14,0.69,-0.86,-1.7,-1.52,-0.05,1.4,1.78,0.81,-0.75,-1.01,-0.71,-2.21,1.72,-1.2,-0.04,1.69,1.61,-1.78,-1.7,1.53,-4.15,1.85,-0.51,0.38,0.77,-2.71,-0.1,-1.07,3.5,0.3,0.17,0.31,2.25,-1.11,2.62,0.2,-0.6,3.21,1.6,1.09,1.99,-2.59,-0.76,-0.57,-2.19,-0.29,1.4,-1.41,-2.77 +C2275,-6.78,4.1,-2.75,-4.4,5.66,1.76,2.99,-0.13,-0.12,0.96,-1.24,-1.57,-0.47,0.18,-1.88,-1.67,1.46,2.91,-0.47,1.92,0.32,0.55,1.73,2.09,0.88,0.2,1.55,0.36,1.61,2.7,-1.4,-0.44,-1.32,-1.63,-1.54,-0.23,0.63,0.44,-0.27,1.69,-0.93,2.34,0.19,0.56,-2.75,0.66,1.67,0.76,-0.65,-3.15 +C2276,4.29,6.41,1.73,0.55,2.14,0.12,2.48,1.14,1.81,-1.01,-0.06,2.06,0.84,0.45,0.47,0.38,0.47,0.27,-1.02,2.35,1.88,-0.15,-0.26,1.46,-0.53,1.47,-0.35,0.76,1.81,1.38,-2,1.9,-0.48,-1.39,-0.22,-0.16,-0.49,-0.53,2.31,-0.02,-0.43,-0.28,0.27,-1.51,-2.7,0.09,0.48,0.41,-0.01,-1.13 +C2277,4.97,2.6,-2.21,-1.97,-0.93,-0.8,1.12,-0.03,-1,1.04,-1.07,0.34,0.92,0.67,0.86,1.07,1.5,-0.21,-1.03,1.34,-1.68,1.78,0.93,-0.87,-0.49,1,-0.83,-2.96,1.37,0.6,1.41,-0.77,2.34,0.63,-1.21,0.49,0.35,-0.63,1.05,-0.87,-0.8,2.32,-0.14,-1.62,-0.73,0.9,-0.36,0.87,-1.83,0.51 +C2278,6.07,-0.79,-0.87,-1.31,6.04,-0.5,0.95,-2.16,1.03,0.16,-0.57,-0.8,-0.44,2.12,0.45,1.47,0.35,1.75,-1.35,-1.06,1.07,-3.5,-0.68,2.17,-0.93,0.12,0.67,1.74,0.91,-1.49,1.6,-1.56,-0.11,-1.57,0.05,-2.07,0.98,-1.25,-1.72,-1.42,-0.8,-0.93,0.82,0.5,0.05,-0.17,0.52,-0.66,0.16,0.2 +C2279,-9.29,2.16,-0.19,-1.93,3.96,-0.51,0.97,1.47,-1.35,2.2,1.67,-1.26,1.3,-0.14,1.66,0.24,-0.26,1.11,-1.56,0.55,-0.74,2.13,1.4,-1.22,-0.19,0.15,-0.32,-1.52,2.07,-0.22,-1.27,0.89,3.71,-0.49,0.46,0.46,1.14,1.23,-0.1,1.82,-0.38,2.99,-0.09,2.26,0.5,-2.93,2.06,-0.59,-0.9,-0.48 +C2280,2.05,-13.59,3.02,4.03,3.17,1.34,-2.03,-0.89,-1.85,-1.14,0.34,-8.03,-1.58,3.18,1.88,-5.33,2.63,3.14,-1.33,-2.74,-3.08,-1.83,-1.31,3.29,2.96,-0.13,5.93,1.17,0.81,4.21,0.72,-0.83,-4,1.35,3.82,-2.13,0.44,4.1,-3.86,1.68,0.45,2.06,-2.3,-1.74,3.47,5.54,-6.28,3.11,-0.11,2.78 +C2281,4.91,0.62,-0.7,-1.45,-1.39,-0.46,1.61,0.04,1.36,0.27,0.46,-3.92,1.57,0.49,-0.66,0.4,0.51,-1.5,1.89,-0.32,-0.37,-1.14,0.85,-3.74,0.75,1.67,-0.24,-0.51,1.46,1.75,-1.01,0.44,1.76,0.14,-0.27,-3.49,2.45,1.32,-3.39,-0.19,-2.18,-0.57,-0.93,2.29,0.52,0.04,-1.34,0.96,0.95,0.76 +C2282,1.93,-14.96,3.25,5.32,4.98,3.24,1.77,0.93,-1.48,0.64,-1.88,2.58,-1.47,0.01,1.27,1.1,-3.89,0.95,2.23,0.53,1.58,-0.58,0.88,1.62,3.02,0.09,0.85,2.97,-2.38,0.08,2.19,-2.39,-2.53,-4.98,-2.4,-0.11,1.06,3.94,-1.75,3.37,2.26,-1.98,0.11,3.33,1.39,0.43,1.73,4.07,-1.28,-0.99 +C2283,4.41,0.87,-1.69,-2.71,-0.63,-0.25,0.02,-0.42,0.16,-0.45,0.8,-0.48,0.36,1.42,2.19,0.98,0.01,0.62,1.08,-1.34,-1.89,-1.83,-0.89,2.05,1.01,0.28,-1.05,-0.38,-2.35,-0.65,0.91,1.25,0.3,1.43,0.19,1.2,2.5,-1.63,-0.48,-1.31,-0.79,1.79,0.88,1.31,-1.03,1.94,0.29,-0.27,-0.33,0.12 +C2284,2.93,-3.19,0.03,0.36,4.63,2.35,2.64,-2.78,-0.08,-1.39,1.23,1.96,0.13,-0.67,-0.86,0.83,-0.65,0.59,0.86,1.69,1.7,-1.47,-1.83,-2.24,2.79,1.89,-0.35,0.84,-1.14,-1.13,0.26,0.48,-0.6,1.81,-1.28,-0.86,-0.2,-2.23,-0.61,0.17,1.74,-2.76,0.09,1.55,0.83,-0.03,2.88,1.1,-2.75,-3.02 +C2285,-9.81,1.28,-1.15,-1.98,1.38,4.6,-2.65,0.21,2.35,-1.21,0.94,1.66,2.38,2.31,1.64,1.91,-2.26,-1.34,-0.8,-1,1.2,0.29,-1.59,-0.27,0.71,0.02,0.79,0.73,0.67,-0.15,0.83,-2.66,-0.82,0.24,-2.97,-1.09,-2.64,0.12,0.72,-1.38,1.06,1.89,0.44,-2.54,0.25,0.6,1.36,0.15,2.4,0.51 +C2286,2.36,-4.92,1.77,2.57,0.51,-0.09,0.03,-4.65,-1.55,-4.17,2.01,1.38,-1.01,2.12,-0.96,-0.17,0.08,1.31,-1.83,-3.21,2.77,-1.94,0.01,0.02,-1.31,-1.12,-1.98,-0.05,0.8,3.28,-0.68,-1.48,1.85,-2.8,-0.38,-5.56,-3.52,0.03,2.34,-1.64,0.39,0.02,0.59,-5.17,1.03,-2,0.07,1.75,2.15,-0.86 +C2287,-12.82,-0.4,-0.1,-0.37,-0.66,-6.04,3.38,-1.01,1.82,-0.76,-1.06,0.22,1.15,-3.46,1.22,-0.52,2.27,2.22,-0.67,2.73,-1.7,2.15,-1.38,2.22,1.41,0.51,0.22,-0.15,-2.36,0.66,0.05,2.38,-2.03,2.39,0.02,-1.56,-3.47,-1.01,-0.55,0.76,-2.24,-0.01,0.5,0.08,3.32,1.12,0.14,1.86,-1.22,1.93 +C2288,4.04,1.61,-1.73,-2.99,-1.01,-0.94,-0.27,0.31,1.6,0.28,1.72,1.73,0.96,-1.62,0.14,0.88,0.42,-0.59,-0.88,0.73,0.95,1.37,0.08,0.93,0.36,0.32,-2.25,2.31,1.7,-0.87,0.34,2.53,-0.81,-0.46,2.11,-0.43,-1.3,1.08,1.61,-0.9,-0.42,-0.45,0.25,0.27,-0.69,0.05,1.02,1.32,0.08,1.82 +C2289,-8.22,3.12,-1.63,-3.85,3.69,1.93,1.92,-1.97,-0.42,3.7,-0.73,0.28,1.41,1.51,-0.41,-1.12,-0.17,-0.53,0.24,-1.63,0.32,1.07,0.3,-1.83,2.33,-1.87,0.24,0.69,0.53,0.59,-0.14,2.29,-0.26,1.78,-1.76,1.81,-0.87,-2.19,-0.82,0.77,-0.48,1.84,2.76,-1.94,-2.84,-1.73,3.13,-0.62,-1.32,-0.37 +C2290,2.9,-2.39,-0.45,-1.01,-1.69,-0.8,-0.67,-1.05,-0.15,-0.01,0.27,0.57,0.8,0.86,-1.31,-1.85,0.65,-3.74,0.67,-3.41,2.08,-2.11,-1.82,2.44,1.08,2.25,-1.13,0.01,0.22,1.57,-1.89,-0.66,-0.53,0.18,2.7,2.55,0.51,0.42,1.72,1.26,-0.5,2.22,-0.83,0.34,-2.05,-0.16,-0.13,-3.49,1.95,0.39 +C2291,5.12,3,-1.96,-3.27,1.51,-1.12,1.87,0.34,1.25,-0.48,-1.94,1.16,-0.83,-0.52,0.94,1.52,-2.72,1.91,-2.37,-1.91,0.04,-1.27,0.77,0.23,-0.18,-1.07,-1.33,-1.15,0.56,-2.19,0.01,0.02,-0.7,2.84,-0.62,0.72,-0.15,2.25,1.71,-0.21,0.67,2.26,2.98,2.35,-0.23,-0.05,0.14,1.42,2.34,-1.48 +C2292,-14.44,-1.59,1.79,0.57,-2.12,-0.21,-1.96,0.01,0.09,-1.68,-1.11,-2.09,1.26,1.18,-2.24,-2.95,-0.94,-2.13,0.81,-2.33,-2.81,-0.43,-2.68,-1.49,-0.87,0.4,-2.68,-1.7,-0.03,-0.94,-0.69,0.53,0.84,-1.2,1.59,1.67,1.14,1.35,-1.78,0.41,2.81,1.17,-1.03,2.13,0.23,3.73,0.65,-2,2.55,-1.95 +C2293,-12.99,-4.13,3.88,3.28,-5.32,-7.25,0.99,-3.01,1.61,1.73,-2.17,-0.44,1.83,0.08,-3.09,-0.23,-1.95,-0.18,-1.13,0.21,-1.06,0.49,1.39,4.08,3.52,-0.68,0.41,-0.17,-2.95,-0.39,-0.52,-0.98,-2.37,-0.68,-1.23,1.94,-0.88,-0.26,-2.48,-4.5,-1.54,0.96,-3.39,-0.44,1.34,-1.54,1.1,-0.25,-0.5,1.95 +C2294,5.29,-4.32,-0.41,-0.43,2.17,0.68,1.36,-2.57,0.86,-2.46,-4.58,2.25,-1.34,-2.26,-0.57,-0.57,-1.55,-5.45,-3.91,-0.6,-1.8,-0.07,0.37,-1.66,-1.7,-1.02,1.61,2.58,-0.21,1.12,3.21,0.49,-1.12,0,-1.81,1.4,1.15,2.16,-1.69,0.21,2.27,-0.55,-0.72,2.68,0.65,1.86,2.04,1.28,0.9,-1.23 +C2295,-13.96,-3.68,1.6,1.17,-5.38,-8.17,4.19,-1.02,1.17,1.19,0.45,-2.08,-2.86,1,3.86,-2.85,-2.91,5.18,-1.19,3.77,1.79,3.07,0.32,-0.75,-0.15,-4.68,5.16,-0.39,-2.65,0.57,0.24,1.9,-0.4,1.37,-0.47,-0.5,-0.08,0.43,1.44,0.49,0.68,1.35,-1.81,-1.15,0.45,-3.71,-0.82,2.73,1.77,1.8 +C2296,3.66,7.03,4.22,4.01,0.51,-0.35,0.13,-0.02,0.21,0.77,-1.18,0.22,0.17,-0.93,-0.26,0.12,3.37,-0.47,2.32,0.6,-1.01,1.5,-2.85,-0.24,-2.69,1.23,2.5,-1.94,0.09,0.42,-0.85,-0.5,0.42,-0.91,-1.41,0.84,-0.06,-3.08,-0.99,-0.01,-0.33,3.4,-2.91,0.51,1.14,-3.25,2.04,-2.58,2.17,-1.32 +C2297,4.89,-2.7,0.26,-0.67,2.57,0.19,-0.25,-7.22,0.23,0.85,-0.89,-1.4,0.04,1.44,-0.06,1.93,-0.2,0.04,-0.65,-2.71,0.91,-1.5,0.05,-1.15,2.12,-1.15,1.92,0.32,-1.5,-1.22,-0.15,-2.23,0.42,1.91,0,1.86,-2.2,1.27,0.29,-1.23,-1.46,2.22,0.31,3.63,-2.22,-1.21,-2.21,0.65,-1.43,0.5 +C2298,4.03,7.92,1.63,1.35,3.5,0.01,1.76,-0.61,-0.82,0.99,1.07,0.23,0.06,-0.35,-0.89,-1.42,-0.26,0.56,2,-2.31,1.64,-1.32,-0.39,2.75,-1.66,-1.16,-0.88,-0.31,1.7,0.43,0.61,1.11,0.68,2.14,0.26,-0.51,0.3,-1.25,-0.32,0.58,-0.28,1.69,-0.59,1.06,1.76,-0.42,-2.9,-1.68,0.15,-1.87 +C2299,3.22,-1.38,-0.22,-1.15,-2.47,0.16,-1.07,-2,-1.62,1.68,0.32,1.03,1.95,-3.59,0.51,-2.46,1.97,-0.27,-0.54,0.14,0.81,-1.3,-1.08,1.19,2.14,-1.58,0.44,0.66,1.59,0.3,0.62,-0.66,0.4,-2.27,0.46,2.06,-0.03,-1,1.04,-0.48,-0.44,-1.34,3.22,-3.37,1.12,2.23,2.91,-0.49,1.86,3.82 +C2300,2.09,-12.45,3.23,5.17,6.43,-0.08,-0.33,5.28,-1.16,2.42,2.17,-2.38,-2.36,2.11,-2.47,-4.57,0.81,-5.42,-3.1,0.59,-1.56,0.7,-2.16,-0.27,-2.04,-1.04,3.54,1.39,0.87,3.69,-2.14,-5.25,-1.67,4.81,0.79,-0.37,1.82,0.97,0.28,-2.56,2.5,2.72,2.05,0.07,-1.35,1.78,1.02,-3.83,0.9,3.2 +C2301,5.67,3.59,-1.84,-1.65,2.1,-1.02,1.07,1.42,0.54,-1.72,-0.96,-0.45,-1.18,0.65,-0.83,2.16,-0.24,-0.22,-1.88,1.92,0.27,2.01,1.2,-0.88,0.58,-0.35,-0.03,-2.03,3.1,0.52,1.06,0.46,-0.73,2.67,1.29,1.81,-0.78,1.16,-0.89,-0.55,0.84,-0.99,0.54,0.65,0.76,0.77,0.95,0.31,1.28,-1.16 +C2302,3.59,0.98,-0.53,-3.09,-2.21,0.83,-0.91,0.41,1.21,0.35,-0.75,1.74,2.2,-2.23,0.25,-0.79,-1.49,1.05,2.04,2.03,-0.9,-1.73,-2.06,-2.48,-2.12,1.85,-0.11,0.74,1.71,-3.5,-3.03,-1.3,-1.46,-3.25,3.29,-1.53,3.64,1.03,-0.16,-0.87,-1.46,-1.44,1.31,0.05,0.82,1.62,-0.63,-1.41,0.34,2.56 +C2303,4.38,-3.25,-0.21,-0.72,1.06,0.29,0.06,-4.88,1.16,-1.98,-2.54,2.18,0.51,-0.24,-2.32,3.03,4.7,2.41,-3.5,0.48,1.24,-0.93,0.35,3.3,0.11,-2.06,4.43,-1.64,0.42,-0.23,-0.55,-1.56,-0.16,-1.18,-0.8,-1.05,1.2,-1.57,1.85,1.63,-1.3,-0.24,1.77,-0.03,-2.42,-1.35,3.14,-2.2,2.4,-3.03 +C2304,3.54,6.89,5.11,3.76,2.33,-0.73,0.43,-2.73,0.03,0.39,-2.48,0.98,1.09,1.66,2.12,-3.68,-0.32,0.94,0.93,-0.92,-1.61,1.12,0.2,-1.21,-3,-1.95,-0.21,-1.4,-1.47,3.81,-1.48,1.01,-0.66,1.35,-0.84,2.11,0.84,-1.83,1.13,0.92,1.02,0.96,-1.19,-2.5,-4.49,-1.53,-1.14,1.42,2.31,3.05 +C2305,5.47,-4.15,-1.32,-1.04,0.61,-0.03,-0.17,-5.1,-0.37,-2.36,-3.61,2.67,-1.46,-1.68,-1.34,-2.01,2.56,-2.12,-2.14,1.65,1.03,-0.86,-1.54,2.94,-3.84,-1.58,2.48,-0.34,-1.96,-2.93,-1.4,-1.9,-1.16,-1.35,0.51,-0.22,-0.99,-1.13,-0.19,-0.61,-1.79,-0.77,0.36,1.59,2.03,2.45,-0.72,0.19,1.2,0.53 +C2306,6.02,1.57,-1.47,-2.81,-2.3,-0.15,0,3.84,1.29,0.28,-1.31,-1.57,-1.38,2.6,-0.73,2.16,0.88,1.7,0,-1.01,-2.46,0.37,1.64,-0.59,-0.21,0.36,-2.96,1.11,0.75,2.04,-0.83,1.06,0.96,0.17,0.41,0.56,-0.9,-1.21,-3.57,-0.92,-1.23,0.87,0.74,0.48,2.75,-1.26,-3.85,-0.96,1.01,0.59 +C2307,-15.12,-2.43,2.32,0.97,-1.43,-6.23,3.18,0.45,-0.19,-1.32,0.84,-1.05,0.73,1.47,-0.4,-3.89,0.34,-1.51,-2.23,4.03,0.28,-0.38,-1.79,-2.95,-3.18,-0.95,0.65,2.17,3.31,-3.18,2.77,-1.13,-0.79,-4.33,0.25,1.1,2.35,-5.2,-2.7,1.81,3.41,-1.76,0.82,0.74,-3.9,-2.93,-1.64,0.19,2.53,-0.19 +C2308,4.1,-4.19,0.31,0.25,4.02,0.96,-0.37,-1.14,1.09,-1.97,1.46,0.75,-0.77,2.7,2.1,1.41,-2.35,1.09,0.36,0.51,1.23,-1.72,2.89,0.19,0.37,-0.11,-1.24,1,2.96,2.62,0.36,1.49,-1.61,0.53,-0.63,1.79,-3.53,1,-2.52,1.46,-1.69,1.5,0.34,-2.22,3.17,2.99,0.2,-1.14,-0.37,1.27 +C2309,-12.92,0.1,-0.74,-1.16,0.99,3.1,-3,1.17,-3.43,1.83,-5.01,-4.28,3.28,0.59,0.72,0.1,2.43,0.7,-3.52,3.16,-0.84,-3.46,-1.08,3.8,-5.25,0.02,1.65,-1.45,2.31,-3.51,-1.86,-1.14,3.38,4.4,-0.26,2.68,-5.27,-0.51,0.9,2.99,-1.67,-1.08,2.92,0.86,-2.15,-2.11,3.35,0.98,1.15,-0.87 +C2310,2.49,-0.13,-0.68,-2.55,-3.27,0.53,0.44,2.35,-0.28,2.87,0.25,0.7,1.47,-0.87,-1.22,0.35,-3.36,1.06,1.43,-1.15,-1.19,1.35,-0.23,1.02,2.16,0.92,1.65,-2.11,1.1,1.9,-0.11,0.01,0.71,-0.43,0.71,-0.92,-0.63,-1.09,0.26,-0.8,-3.35,-0.27,2.1,1.06,0.4,-0.34,-0.92,-0.17,1.3,-0.92 +C2311,5.77,2.38,-1.37,-3.21,-1.48,-0.04,0.83,0.52,0.99,-0.46,0.31,-0.91,-0.2,0.68,-0.01,-1.92,-0.41,0.24,0.88,-0.2,0.54,1.59,-0.39,-0.24,0.3,-0.72,0.39,-0.43,-3.96,1.76,1.85,-0.46,0.48,0.33,-1.76,-0.05,0.13,0.21,0.55,-0.91,0.18,0.23,-0.01,-2.12,3.83,-2.04,2.43,-2.62,1.19,1.71 +C2312,-14.62,0.55,0.21,0.9,0.28,-2.23,0.1,-0.55,2.3,-0.36,2.08,1.35,2.09,0.31,0.86,2.05,-1.51,-0.2,0.99,-1.52,-0.57,-0.73,-1.12,0.55,-2.84,1.48,-0.96,-0.13,0.22,0.14,0.65,0.12,-1.58,-0.19,-0.76,-0.84,-1.01,-1.19,-1.11,-0.26,1.2,1.14,-0.28,1.02,1.35,0.52,-0.13,-0.17,-3.7,0.15 +C2313,4.15,-0.19,-1.43,-0.73,-3.89,0.25,-0.92,1.78,-0.72,-0.89,-0.02,-0.7,2.35,0.58,-1.54,1.83,-2.65,-0.76,0.2,-2.2,-0.58,-4.44,-0.27,-0.74,-0.44,-2.59,0.74,-2.18,0.69,0.62,-0.43,0.16,-2.06,1.86,-0.63,0.2,-0.46,0.32,-0.11,0.11,-3.26,0.18,-1.18,2.5,1.55,2,-0.84,2.47,-0.05,0.95 +C2314,3.79,-2.5,-0.52,-2.09,-3,0.16,-2.28,-0.96,0.47,1.32,-0.17,0.71,2.47,0.2,3.11,-1.87,-0.57,0.26,2.71,-2.05,1.59,-1.05,1.21,0.27,0.49,1.75,1.28,-3.47,-1.31,0.5,-3.54,0.83,-4.06,-0.29,-0.93,2.85,-1.17,-2.85,2.1,-0.89,0.38,2.63,-2.27,0.82,1.29,0.12,1.84,0.93,-0.1,0.04 +C2315,-15.17,-3.28,1.06,2.33,-3.04,-5.76,2.55,-1.53,0.05,0.43,-1.26,0.04,-0.27,0.35,0.64,2.63,-0.08,-2.52,-0.83,1,0.07,-1.43,0.24,2.07,-0.17,-1,3.73,4.06,-1.79,1,2.61,-0.08,0.42,0.75,2.02,-0.28,0.46,-0.7,-1.1,-0.07,-0.45,-0.6,-1.41,2.39,0.35,0.76,-0.64,-0.46,1.24,2 +C2316,3.54,-0.86,-0.56,-1.38,-0.94,-0.67,-0.08,0.24,-1.85,-1.63,1.09,2.06,0.8,-0.51,-2.01,0.04,-0.44,-1.84,-0.79,0.85,-1.63,1.78,-0.53,0.74,-3.06,-1.15,-1.69,-1,-0.27,-0.05,1.83,-1.01,1.71,0.95,-0.02,1.11,0.95,-0.55,-1.07,0.61,-0.44,0.59,0.1,1.05,-2.7,-1.23,1.57,0.21,-0.5,1.02 +C2317,3.64,-1.85,0.31,-1.38,-2.8,-0.31,-2.09,-0.84,-0.84,0.85,-1.55,-0.36,-0.68,-3.04,-0.46,-2.94,1.51,1.16,0.57,-1.85,0.89,-2.45,-2.77,-2.78,2.51,5.39,-0.02,2.83,1.56,3.6,0.64,1.38,2.01,3.85,1.16,0.16,-1.03,-1.48,-3.07,3.01,6,1.38,-0.5,-0.02,0.81,1.31,-4.77,-2.71,-1.99,0.34 +C2318,-14.67,0.23,0.66,-1.9,1.69,1.53,-1.92,-0.05,-0.51,1.32,1.67,-0.51,1.03,-1.43,2.14,-0.73,0.09,3,0.95,1.78,-0.52,-1.17,1.43,-1.82,-0.78,-1.64,-1.05,-0.65,-0.72,-2.14,-1.18,-0.23,0.62,-1.16,-0.4,3.24,-1.39,1.63,0.08,-0.08,1.91,2.43,-0.31,-1.62,0.72,0.02,-2.52,-1.68,2.33,-1.03 +C2319,2.96,7.49,4.44,5.74,2.19,-0.69,1.26,0.28,0.62,-1.55,2.42,-1.12,1.35,-2.16,-1.19,-1.87,-2.23,2.58,-0.52,-1.05,-1.12,3.79,2.63,-0.33,-0.59,0.67,-1.44,1.41,2.58,2.13,-0.92,-1.67,-2.15,1.49,0.04,-2.55,0.56,2.06,0.96,3.52,2.22,1.38,-0.47,-1.16,-1.28,1.75,2.65,-2.44,0.05,1.45 +C2320,4.81,1.24,-1.49,-1.44,-0.37,-0.64,-0.78,0.6,1.29,1.29,-0.7,1.97,0.12,1.02,-2.06,-1.01,-1.03,2.31,-0.15,-1.24,-1.38,1.47,0.96,0.55,0.34,-0.4,2.97,1.48,0.86,0.54,-2.05,0.74,-1.46,0.21,-0.3,-0.71,-0.63,-1.56,0.16,0.7,-0.56,-0.79,0.12,1.35,0.66,0.32,1.6,-0.05,2.84,-0.07 +C2321,1.05,5.72,7.1,7.06,-1.03,-1.92,-2.63,0.78,-1.08,-3.16,3.17,-0.1,-1.9,-3.23,-1.44,-3.83,0.87,0.4,-1.95,1.59,2.01,0.93,-1.99,2.23,-1,-1.91,1.02,-0.52,0.94,-0.24,-3.18,-0.6,1.18,-2.32,-0.54,-1.03,0.33,1.16,0.1,-1.52,2.23,1.1,-1.87,2.11,2.49,1.02,1.14,-0.25,1.39,1.47 +C2322,3.52,-3.81,0.75,-1.46,-4.77,0.34,-2,1.35,-1.7,0.71,-0.96,-1.54,0.11,1.39,2.66,-0.85,-2.49,0.19,-1.52,-0.57,-1.67,-1.75,-1.06,-2.7,0.29,0.18,-0.38,4.86,1.4,-0.04,-0.77,-0.36,1.97,-0.19,-0.59,-3.31,-1.49,1.08,0.91,3.3,-0.98,-3.07,0.73,-0.57,-2.31,1.63,0.21,5.61,2.21,-2.16 +C2323,4.38,-0.15,-1.65,0.59,-2.24,-0.55,-2.1,2.95,-1.06,-1.24,-0.67,-1.17,-0.51,-0.51,-2.52,1.37,-0.24,1.97,-0.29,2.3,0.06,2.49,1.8,0.62,-5.31,0.09,0,-1.17,0.8,-0.39,-2.13,2.3,-0.96,1.37,2.7,0.92,0.48,-0.45,2.81,2.86,-2.6,-0.76,2.35,0.78,-3.7,0.1,-2.17,-0.76,-2.41,-0.24 +C2324,3.27,-7.57,0.79,1.17,2.75,-0.31,-0.2,-2.75,0.62,-0.1,0.25,-2.04,0.17,-0.12,2.03,-2.17,0.61,0.85,0.98,-1.28,-1.97,0.7,-1.05,1.82,-0.33,-0.99,0.96,1.98,-2.61,1.01,1.46,2.7,1.56,0.47,0.54,-1.13,-2.79,-0.72,0.21,0,0.03,-0.48,1.43,0.03,3.23,-0.21,2.66,-0.7,-3.84,-0.22 +C2325,3.84,-0.27,0.3,-0.91,-2.29,0.69,1.32,-0.83,-0.34,0.38,-0.38,0.64,0.46,-0.1,-1.09,2.62,0.45,0.92,-1.35,0.42,0.17,1.74,-0.56,0.67,-1.4,0.92,0.08,-1.68,-0.25,-0.93,-0.23,1.55,0.29,1.1,-0.11,0.7,-1.39,2.65,-1.44,-1.91,0.54,-1.85,-1.75,-0.96,-0.63,-0.83,-0.83,3.06,1.07,1.05 +C2326,-15.23,-0.28,-0.7,-1.15,1.01,2.45,0.29,0.68,-2.86,0.15,-0.37,0.02,0.65,2.97,0.71,1.59,-0.16,-3.2,-1.69,0.06,-0.22,-0.45,0.31,0.77,-3.71,2.84,1.62,2.68,-1.76,-1.37,-1.21,-1.53,-1.05,1.31,0.55,0.59,-2.28,1.26,-2.2,-0.15,1.87,0.56,0.6,-1.57,0.6,-1.54,2.97,2.02,-2.66,-0.72 +C2327,2.7,-13.52,3.54,3.53,6.47,1.06,0.05,7.74,-1.48,-0.2,1.71,2.94,4.3,4.05,1.69,3,2.28,4.81,0.38,2.99,3.33,1.17,0.38,-4.31,-3.21,-3.15,9.56,-1.64,0.2,-3.85,-0.86,-2.82,0.34,1.28,-1.68,0.53,-0.53,-2.54,1.05,-4.45,1.47,-2.8,-0.07,-5.62,-1.09,5.36,0.34,-3.6,0.34,2.11 +C2328,-12.97,-3.14,1.79,2.44,-3.25,-8.19,3.55,-0.4,-0.28,1.92,-0.77,-0.19,0.19,-1.18,0.87,0.99,-0.84,0.33,2.05,-1.36,-1.36,1.33,1.16,0.75,-0.96,1.36,0.2,1.22,0.19,1.78,0.87,0.29,1.53,1.32,1.06,0.04,-0.65,-1.98,1.35,0.64,1.78,-1.63,3.81,-0.46,-1.87,-0.61,-1.31,-0.13,0.39,-0.31 +C2329,2.89,0.47,-0.33,-2.59,-2.55,-2.14,0.15,1.64,0.43,-2.18,3.6,1.68,-0.02,-1.34,-1.47,-0.58,4.32,1.96,1.41,1.07,-0.21,2.09,-0.08,0.23,-0.36,-1.91,-0.16,0.44,-3.59,0.15,-2.53,1.31,-0.88,0.2,-0.59,-0.52,-1.96,2.74,-0.61,-3.41,-0.79,-0.93,-0.01,-2.05,1.47,-0.42,1.02,1.43,2.74,-1.98 +C2330,-8.44,4.41,-3.59,-4.88,4.72,3.18,2.06,1.69,-4.91,-1.83,1.3,1.2,-1.09,1.62,-1.2,1.77,-1.67,2.27,-1.1,-0.6,0.53,-1.31,-3.15,-0.87,2.7,0.97,0.53,-0.68,-0.24,-1.13,-1.01,-1.67,-0.92,1.92,0.96,-0.75,-0.08,3.35,1.19,1.09,-2.35,1.85,3.74,-4.16,-1.85,0.35,-0.08,1.96,-3.25,-2.28 +C2331,3.19,-1.67,-0.35,-1.2,-0.4,-0.13,-0.5,-4.15,0.81,-4.39,1.37,-1.4,0.48,-0.09,-3.61,3.37,3.15,-3.27,1.66,2.34,-0.8,1.04,0.67,0.43,-1.8,-0.29,0.05,3.14,0.4,0.58,-0.35,-2.61,-0.95,1.84,1.4,-0.73,-1.12,2.51,-1.04,-0.06,-0.1,-0.76,0.46,3.68,-1.38,0.94,0.65,-1.89,0.51,1.18 +C2332,4.12,8.9,5.75,6.38,1.65,-0.33,0.63,-0.28,-0.65,0.31,0.21,-0.16,-2.05,-1.63,1.24,-0.2,-1.96,-1.38,3.76,1.2,-0.15,0.43,0.4,0.76,-0.26,-0.71,-0.65,1.49,2.26,-1.78,-1.36,1.08,1.09,-1.32,1.72,1.86,2.02,-1.57,-0.28,2.98,-0.2,-0.49,-0.4,1.78,1.02,-1.19,-0.62,1.97,-1.05,-0.57 +C2333,-10.13,2,-2.56,-3.59,3.74,2.29,0.45,-0.42,0.03,-0.22,-0.67,-0.18,-0.7,1.16,3.3,-1.17,2.88,-1.09,1.48,1.36,3.58,0.31,1.62,-0.23,-0.35,-0.87,0.19,-2.11,-3.22,-0.6,4.3,1.25,-1.23,-1.9,0.45,1.33,1.31,2.17,-0.69,1.62,-1.19,-1.16,-0.94,-3.74,2.13,-2.37,0.32,-1.54,-0.55,0.36 +C2334,4.68,0.44,-1.46,-2.9,-1.7,-0.12,0.38,-0.4,-0.18,1.94,-0.03,0.75,1.18,0.07,2.13,-0.97,-2.71,-0.11,-0.62,-1.02,-1.56,1.01,-0.64,2.2,0.71,0.39,0.52,0.23,-0.74,-0.57,0.01,0.42,0.97,-1.3,1.54,0.67,-0.73,0.23,1.23,-0.16,0.18,-0.58,-1.43,0.85,-1.39,0.51,0.85,-0.52,1.5,-1.4 +C2335,3.44,-1.17,-1.64,-1.91,-3.12,-0.45,-0.29,-0.54,0.07,-0.64,1.1,-2.29,-0.21,-1.2,0.6,-1.53,1.26,-1.42,-3.93,1.62,-3.02,-1.37,0.22,-1.46,1.44,1.62,-0.43,1.94,-3.07,-2.33,-2.1,3.15,-1.21,0.28,-3.2,-1.63,1.48,1.32,0.02,0.35,-1.23,1.26,0.66,0.72,-0.73,0.62,-0.07,0.68,0.9,0.74 +C2336,5.12,-1.37,-2.12,0.1,1.62,0.65,-1.04,-2.79,-0.54,-0.16,-2.16,4.17,1.08,0.8,-0.51,0.46,1.32,1.58,0.6,1.99,-0.66,-2.34,-0.07,-1.41,-2.06,-1.41,-0.97,-1.15,2.75,1.1,-1.3,0.71,1.98,-1.43,2.75,-0.29,1.01,-0.98,2.96,0.37,-2.01,-1.4,1.4,0.17,0.47,1.93,-0.65,-2.25,1.66,-0.59 +C2337,5.62,2.05,-2.09,-2.79,1.71,-0.48,1.09,-3.08,1.47,-2.47,1.7,0.5,-0.19,0.33,0.18,1.37,2.17,-0.58,-0.53,2.3,1.3,-0.37,-1.85,1.78,-0.16,-1.66,2.74,-0.68,-0.98,0.85,0.17,0.42,0.49,-0.88,0.64,0.28,-0.56,-0.75,1.98,-0.11,-0.91,0.97,-0.21,-1.46,-3.7,-2.97,-0.3,-0.36,0.94,0.45 +C2338,3.23,-1.07,-0.32,-1.8,-3.54,0.17,-2.69,-1.13,-0.89,1.28,-2.4,0.14,-2.23,0.46,1.11,0.39,-1.49,-3.75,0.08,1.89,0.26,0.97,-0.89,-1.55,-1.97,0.89,0.14,0.59,-0.31,3.08,0.42,-2.11,1.11,-1.28,1.23,-0.44,0.93,0.54,0.56,0.49,4.2,-0.28,-3.09,1.21,-1.92,1.22,-2.21,-1.94,-0.3,1.32 +C2339,3.76,-10.18,1.4,2.22,9.37,0.52,0.39,-0.74,-0.01,-1.03,2.22,4.49,-0.42,-0.22,-3.03,0.76,-0.3,-0.56,-1.23,4.28,2.5,0.11,3.44,-3.24,2.55,2.87,-0.33,0.28,1.08,-0.11,2.24,0.85,4.55,3.1,2.51,2.52,-4.29,2.13,-0.82,0.16,0.3,0.69,0.99,1.17,-0.71,2.77,1.81,2.18,-2.38,-1.14 +C2340,1.69,-10.26,1.38,2.78,2.75,-0.29,-1.01,-3.45,1.04,1.58,1.44,-3.87,-0.48,-0.69,-2.25,0.87,-3.64,0.16,-0.43,3.08,-2.41,-0.37,1.48,-2.26,1.74,-0.75,-3.86,0.03,0.2,0.44,-0.22,-0.44,1.53,-1.58,-2.34,-0.47,-1.61,1.09,0.92,1.67,0.97,4.24,-0.5,-0.18,-2.61,-0.7,-0.13,-0.01,0.22,-1.86 +C2341,2.97,-0.3,-2.12,-1.15,-0.92,-0.11,-1.03,-0.58,-0.86,-0.64,-0.55,-1.36,-0.37,-2.31,2.02,-1.21,0.84,0.21,-0.27,-0.27,1.15,-1.28,1.27,-0.41,0.05,-1.71,0.4,-3.5,-2.82,-0.09,2.63,-0.58,2.03,-0.46,-3.34,-0.54,1.94,0.53,2.07,-1.51,0.94,0.16,-1.16,2.34,-1.83,1.77,1.51,0.71,-2.77,1.62 +C2342,1.79,-3.5,0.21,-0.33,2.04,-0.68,1.71,-2.65,2.2,-0.26,1.85,-1.88,-1.1,0.88,1.59,-1.44,-1.13,3.45,1.47,-2.68,1.57,-1.02,1.09,-0.57,-3.09,-2.46,1.09,1.15,1.56,-1.52,-1.39,-2.76,2.34,0.74,0.73,2.83,-2.12,-1.47,0.04,-1.28,1.85,2.49,1.52,-3.87,-0.99,0.12,-2.18,1.89,0.8,1.18 +C2343,5.01,-4.52,0.57,0.4,3.21,-0.11,0.66,-1.18,0.83,0.41,1.57,-3.3,0.91,0.97,-1.96,2.25,-0.44,0.42,-1.27,-2.86,3.46,-3.18,-0.09,-3.17,-0.24,3.92,0.75,1.09,-1.15,3.15,-4.74,-2.79,2.5,1.02,1.58,1.22,-5.83,0.82,-2.31,1.94,1.04,0.71,-0.25,1.77,-1.49,0.9,-2.64,3.25,-0.09,0.47 +C2344,-10.37,0.39,0.13,-0.61,-0.28,-4.52,3.73,0.87,1.03,-3.36,1.45,-1.72,-1.1,-0.18,-0.86,3.49,0.08,-3.16,2.92,-1.99,-1.92,0.49,-0.29,2.21,1.23,-0.45,0.53,0.71,0.51,1.64,-1.78,1.2,-0.77,1.7,-1.87,-1.75,2.98,0.98,1.14,-1.69,1.81,2.05,-0.02,0.43,2.66,-2.38,2.03,1.96,-2.7,0.76 +C2345,-12.61,2.4,-1.93,-2.12,2.87,2.52,-1.81,-0.78,0.57,1.56,-2.36,-1.74,1.08,0.74,1.35,-1.15,-2.6,1.66,-1.28,1.21,-1.89,-2.88,1.17,2.74,-0.68,-2.36,1.58,0.98,-0.16,0.77,0.21,0.92,2.74,2.71,0.64,3.82,0.63,0.78,0.23,-2.02,0.55,2.38,-0.37,0.75,2.46,-1.59,-0.14,-0.39,2.63,-1.27 +C2346,3.54,-0.19,-0.78,-1.91,-2.46,-0.38,-0.19,-0.15,-1.06,1.6,0.87,-2.97,-0.53,-3,3.37,-1.17,-1.11,-1.77,0.85,0.55,-1.68,0.7,-3.17,0.75,1.58,-3.72,1.37,-1.94,0.39,-0.05,-0.22,0.93,-0.02,1.48,-0.67,3.07,-2.36,-2.07,-0.33,1.6,1.02,-0.63,0.2,0.9,-2,-0.73,0.23,-0.44,-1.28,-2.59 +C2347,3.56,-0.15,-1.72,-3,-0.39,-0.5,-0.51,-0.73,0.21,0.16,-0.42,-0.04,-0.46,0.04,1.62,1.28,1.25,-0.2,-0.51,-2.38,0.72,1.29,-2.06,-0.39,0.34,-0.82,1.58,0.12,0.03,2.09,-0.39,4.99,1.81,0.34,2.63,-1.47,1.63,-0.67,1.14,-2.6,0.1,-1.1,1.56,1.36,-0.77,0.09,1.63,1.11,-0.78,-1.39 +C2348,0.7,-4.46,2.36,2,-5.76,0.4,-1.88,-1.46,-1.53,-5.45,5.35,-0.53,1.1,1.94,2.94,3.28,1.23,-3.12,-1.07,-2.29,-1.09,0.51,-0.78,5.48,3.15,3.21,1,2.03,-0.64,-1.73,-0.49,-4.24,-1.84,-4.84,-2.11,1.89,-0.46,6.95,2.3,1.74,4.24,-1.1,-0.38,0.39,-2.34,1.21,-0.43,1.95,2.35,3.27 +C2349,4.37,7.55,2.82,3.19,2.23,0.58,-0.61,0.07,1.11,-0.52,-1.82,-0.41,0.55,0.73,4.51,-2.01,0.92,2.46,-0.97,-0.11,-1.68,-0.84,0.79,-0.07,1.41,-1.54,-2.51,-2.15,-1.05,1.68,0.7,-0.58,-3.58,0.72,0.67,2.61,-1.19,1,1.82,0.91,0.7,-2,0.54,-0.58,0.5,3.03,0.97,1.97,-0.35,-0.74 +C2350,4.39,-5.71,-0.41,-0.11,-1.4,-1.18,-1.88,-4.97,-1.32,-0.28,-3.35,0.74,-2.66,-0.06,1.07,-1.23,-1.04,-2.99,-5.55,0.54,-1.45,-0.51,0.8,-4.54,-0.23,-1.26,-1.26,0.31,1.32,-1.59,-0.19,-0.41,-1.58,-1.3,-4.23,-0.68,0.7,1.04,1.15,1.12,0.52,-2.97,-0.13,2.82,-1.53,-0.48,4.21,0.21,-1.44,-1 +C2351,4.91,1.07,-1.3,-2.34,0.35,-0.09,0.13,-0.14,2.17,1.54,-0.66,-0.97,-0.71,-0.94,-0.61,-0.98,-0.97,0.5,1.51,-1.76,1.78,-0.48,0.52,-1.8,0.57,-1.15,-1.8,0.24,0.12,0.5,1.49,2.5,1.03,-0.15,1.35,2.79,-1.5,-0.37,1.32,1.22,-2.21,1.95,0.81,-0.25,0.68,-0.13,0.18,1.3,-2.31,-1.27 +C2352,4.08,-3.06,-0.71,-0.18,0.61,-0.53,-0.04,0.33,0.07,1.04,-2.1,4.13,-0.34,1.55,0.72,-0.61,0.47,1.35,-0.13,-0.54,0.66,-1.21,0.45,-1.31,-0.01,-2.29,0.01,0.94,-2.5,1.49,-2.88,-1.17,-1.08,1.04,1.87,2.44,-0.38,2.79,-3.46,0.63,0.82,1.17,-1.64,0.89,0.11,0.26,-0.9,-0.77,-1.58,0.64 +C2353,4.73,-0.44,-0.71,-1.21,-2.59,1.26,2,-1.03,-0.83,1.84,0.26,2.66,1.8,0.04,-0.03,-0.25,-0.86,-2.19,-2.38,0.49,0.45,-3.99,1.91,0.17,1.07,-1.09,3.51,-1.09,1.31,-1.97,3.36,3.18,-3.04,0.08,-3.46,-0.44,1.44,1.97,-1.94,-4.51,2.71,2.33,-0.93,1.17,0.26,-3.32,-2.18,0.01,-1.44,1.88 +C2354,-7.1,0.41,-0.95,-3.22,2.7,2.19,-0.38,-0.42,0.84,1.66,0.59,1.72,-2.39,-1.51,-0.43,1.59,1.77,-2.72,0.6,-0.62,0.63,-0.39,-1.64,-0.19,0.7,0.18,-0.43,-0.28,0.1,0.12,-0.02,-0.66,-2.1,-1.04,0.24,-0.47,0.85,-0.03,-1.36,-0.15,-1.32,0.47,-1.92,-2.38,-0.47,0.05,-0.43,-0.99,1.63,2.76 +C2355,4.77,2.29,-1.23,-2.46,-0.84,0,0.77,2.38,0.23,0.65,-0.07,0.01,2.37,1.3,-0.42,-4.18,-1.04,3.34,-0.77,0.91,-2,-0.93,-1.78,2.44,-0.21,-1.48,0.78,3.49,0.48,2.14,-1.32,-0.07,-0.08,-3.3,-0.1,1.83,1.14,0.78,-1.24,0.64,-1.46,-0.69,0.19,0.25,2.31,-0.12,2.61,1.41,3.47,2.35 +C2356,4.56,-10.69,2.72,3.68,7.84,-1.51,-1.34,3.07,-2.42,-1.89,3.01,1.97,0.22,-5.13,0.94,3.28,5.35,0.14,1.15,0.3,-0.64,2.52,0.56,-1.71,-2.6,-3.03,1.16,-0.89,-0.18,-0.86,-2.13,-0.63,0.3,1.41,0.82,-2.67,-4.76,1.74,-2.79,-1.23,-1.98,-1.24,2.45,0.9,1.44,-0.64,-1.91,-2.04,-1.46,-2.52 +C2357,-12,0.29,-0.89,-1.31,1.19,2.48,-0.82,-0.01,-1.81,0.99,-1.54,0.97,-0.68,-2.13,-0.48,-0.11,-1.18,-3.02,0.58,0.36,1.87,0.94,-1.28,-1.96,0.24,1.62,-2.9,-0.29,-0.25,1.06,-2.1,0.08,4,1.86,-1.8,-0.02,0.04,1.18,1.49,-0.69,4.54,-0.36,-0.22,-1.03,0.04,0.86,-0.67,-0.98,0.68,-0.45 +C2358,3.43,5.76,4.81,4.16,0.56,0.24,-1.83,-0.11,-0.33,0.55,0.18,0.55,-0.42,-1.05,-0.62,-1.14,0.38,-0.5,1.05,-1.51,-0.54,1.39,-3.25,-0.85,0.26,-2.51,0.19,-0.37,-0.94,0.8,3.88,-0.73,-0.94,1.86,-0.73,-0.45,0.3,-1.34,2.46,-1.18,0.98,2.13,1.47,0.32,-1.31,-0.33,-0.66,-0.38,-0.66,3.85 +C2359,-7.95,4.01,-2.42,-5.19,4.9,0.65,2.75,0.39,-2.94,-1.77,1.04,-1.83,-2.23,-2.79,0.68,0.98,1.91,-1.65,0.57,0.84,0.45,-0.76,-3.45,0.94,-2.57,2.23,-1.48,0.36,-1.92,1.53,-1.74,0.56,-0.88,-0.31,-0.98,-0.65,0.21,-0.63,0.08,0.11,1,0.76,-0.22,-1.58,1.11,-0.77,-0.86,3.23,-3.46,0.53 +C2360,5.06,-2.98,-0.43,-1.78,0.42,-0.06,-0.89,-5.05,0.23,1.78,-1.25,-0.64,-1.42,1.45,-1.67,1.27,-1.79,-0.88,-0.57,2.74,0.82,-1.62,-0.85,0.96,1.46,-0.17,1.12,-1.33,-0.85,0.21,-1.81,2.14,2.43,0.34,1.32,-0.32,-0.61,0.36,-0.18,-1.83,0.81,-1.35,-0.69,0.02,-0.17,0.31,3.08,0.23,1.09,0.94 +C2361,6.37,2.56,-1.22,-1.81,-0.57,-1.42,1.08,1.73,1.3,-2.54,-2.57,-0.1,-0.14,2.24,-1.06,-3.02,1.03,0.58,2.67,0.01,-2.21,3.38,1.44,-0.26,1.3,2.68,0.44,-0.2,1.43,0.68,-1.04,-1.5,-1.48,1.29,1.97,-1.78,-0.69,0.91,0.97,-0.18,1.13,-1.3,-0.46,1.34,-0.72,-2.78,-2.12,0.35,1.32,-1.41 +C2362,3.71,7.34,5.6,4.88,0.73,1.31,0.66,-0.13,-2.51,-3.79,1.11,-0.91,0.93,-3.02,4.73,0.43,0.61,-2.24,-5.74,0.75,-4.18,-3.85,1.51,-2.62,-2.13,-1.62,-1.09,-0.37,-3.83,2.64,1.47,-0.88,1.64,-1.76,3.32,2.84,2.7,-1.87,-0.53,-3.25,-1.77,-2.53,4.74,-0.96,-2.01,2.12,0.05,-5.17,-1.92,-1.38 +C2363,3.44,1.75,-0.81,-2.53,-1.58,-1.48,0.92,1.02,0.65,2.01,0.36,-0.69,1.28,-0.5,1.9,0.5,0.39,-1.03,-0.54,0.55,-0.55,-0.39,-0.07,0.53,-0.75,-0.89,-0.49,-1.67,-0.5,-0.36,-2.05,0.16,0.26,-0.43,0.32,0.23,0.43,0.41,0,-0.52,-0.95,-1.98,0.09,-0.86,0.55,-1.27,1.41,0.73,0.84,0.19 +C2364,2.11,8.17,5.8,6.8,0.51,0.91,-1.46,1.07,-1.25,0.07,2.46,-0.02,-2.73,2.52,3.12,0.83,0.02,-1,0.73,-2.99,-3.54,-0.12,5.25,0.85,0.87,-0.37,4.01,3.14,-0.33,2.24,-4.36,0.36,2.02,-2.77,4.97,-2.14,-8.12,-3.4,-2,-3.76,-5.94,2.82,-3.41,-5.11,-2.59,2.26,-0.98,-3.43,-0.47,1.45 +C2365,2.66,-2.29,-0.97,-0.66,-6.25,-0.16,-1.73,2.65,0.59,2.49,-0.41,0.91,0.91,-0.08,-1.84,-3.38,-1.61,0.34,3.11,-0.87,-1.42,-0.44,0.5,-2.09,0.27,0.72,1.31,1.8,-1.05,1.92,-0.28,0.29,-0.7,-1.23,2.71,2.05,-0.18,1.21,-0.59,1.62,0.65,1.95,0.89,-1.47,-1.52,2.23,-1.56,1.14,0.28,0.8 +C2366,4.87,0.77,-1.31,-2.02,-1.05,-0.44,0.25,1.41,0.09,0.13,1.56,-1.23,-0.95,-0.19,-1.05,0.63,0.95,-0.84,-3,1.67,-1.44,-0.67,0.11,-0.52,0.64,0.47,0.72,-1.08,-4.04,0.04,-1.93,0.99,-2.02,-0.48,0.79,0.31,0.23,-1.43,1.46,-1.35,0.21,-1.35,-0.53,-2.86,-0.98,0.76,0.3,-0.86,0.79,0.33 +C2367,1.97,6.56,2.89,4.29,1.43,-1.39,-0.95,-0.02,0.21,0.7,-0.59,-0.01,1.35,2.31,-2.24,1,1.31,-1.82,-0.86,0.68,1.89,-0.77,-1.23,-0.82,-0.03,-1.63,-2.5,-1.51,0.16,-0.97,0.36,1.61,1.11,0.95,-1.97,-2.4,-0.01,2.11,2.04,-3.91,-2.25,0.64,0.07,-1.25,-3.62,-1.96,1.05,0.75,-2.41,1.17 +C2368,2.45,-2.62,-0.14,-1.46,-4.19,-1.11,-1.8,-0.49,-2.42,2.53,-0.71,1.58,3.03,-1.36,1.51,-1.33,2.01,-1.49,1.28,-0.36,0.42,-0.03,1.83,-0.9,1.06,-1.53,1.7,0.74,-0.54,1,2.27,-2.14,-1.98,0.14,-0.34,-0.4,1.27,-2.36,1.7,0.19,-0.41,0.81,0.46,-0.38,0.16,-0.17,-1.05,0.04,-1.88,-0.86 +C2369,5.04,8.55,1.57,1.81,4.94,0.3,2.15,1.41,2.08,-2.37,0.97,2.36,-1.92,0.56,-0.48,0.34,-0.49,-0.24,0.62,0.59,-1.28,1.36,-0.86,-1.6,-1.14,-0.48,0.01,-1.11,-1.93,0.59,1.39,0.83,-0.17,-0.63,0.54,1.73,1.91,-1.3,-0.91,-3.12,0.06,1.94,-0.94,-0.28,0.98,1.64,0.4,2.36,0.39,0.1 +C2370,5.06,0.56,-1.34,-2.44,-1.81,0.49,-1.79,-1.05,0.62,2.34,-0.57,-1.63,2.8,-2.53,2.25,0.01,0.79,1.89,2.26,-2.24,-2.26,1.55,-2.34,-0.31,0.31,-2.08,1.91,2.89,-0.92,0.41,-0.83,0.84,-2.37,1.39,0.27,-0.34,0.03,-1.38,-0.04,-1.56,-0.94,-0.43,-1.57,2.11,0.16,-1.07,-0.28,1.31,0.73,2.1 +C2371,3.24,-6.21,-0.04,0.71,8.13,-0.98,2.58,1.09,3.12,1.16,-0.66,-1,-2.95,-1.58,0.03,0.89,1.79,0.14,-4.59,-3.19,-0.27,0.05,-2.28,3.22,-0.31,-2.62,2.04,-2.07,-0.83,-1.68,3.25,-0.48,0.17,-1.77,-1.91,2.01,2.54,3.68,0.58,1.95,0.54,0.93,-3.56,-2.14,-2.35,0.63,1.64,-2.62,0,-2.81 +C2372,-9.03,0.06,3.9,2.69,-0.6,4.27,-9.49,-0.46,12.79,3.55,-1.45,-0.31,2.26,-2,-0.58,-0.2,-2.82,1.45,1.39,-0.03,-1.52,5.19,-0.11,0.67,0.53,-2.39,3.31,-4.05,-3.65,-1.3,-1.43,-0.15,1.56,-0.38,0.48,-3.01,0.86,2.29,-0.26,-1.12,-2.34,-5.56,-2.44,0.28,1.92,-0.04,-1.13,-2.55,1.76,-0.31 +C2373,1.92,-1.35,-2.32,-2.35,-1.92,-0.71,-0.95,-1.9,-0.79,0.46,0.53,0.62,1.92,-1.93,-0.75,-1.65,-0.14,0.57,-1.34,-0.67,3.23,1.06,0.48,1.08,1.43,2.09,0.49,1.04,0.93,-1.77,-1.16,2.7,0.18,-0.51,0.86,0.83,-1.76,0.22,0.71,-0.37,2.14,0.52,-0.66,0.23,-1.41,1.77,-0.44,0.82,-1.56,1.01 +C2374,3.75,0.96,-1.54,-2.16,-1.76,0.04,0.49,1.05,0.45,2.25,-1.65,0.25,-0.41,-1.6,2.23,-0.09,1.41,-2.07,0.97,0.06,2.21,1.41,-0.91,-0.52,-1.11,-0.91,-0.21,-0.29,-0.68,1.49,0.86,0.32,-0.58,0.02,0.36,-1.47,-0.75,0.11,-2.48,-2.23,-1.65,-1.08,0.62,2.17,0.36,0.78,0.44,-0.7,-0.89,0.21 +C2375,4.23,-5.87,1.33,0.51,4.39,-0.75,0.13,-0.04,2.3,0.55,-0.91,-1.2,-2.44,1.52,0.79,-3.58,3.57,-2.11,1.62,-2.22,1.93,0.26,0.78,-2.18,2.06,-0.39,-0.86,-0.89,0.44,1.76,-2.02,-1.66,-0.56,-1.21,0.26,0.88,-1.3,-0.24,1.11,-0.75,2.57,-2.79,-1.03,4.3,-1.92,0.05,0.03,1.25,-0.95,1.93 +C2376,-13.25,-1.06,1.83,0.74,-3.42,-7.16,2.04,0.35,2.41,-1.3,-1.44,-1.68,0.22,1.81,-0.49,0.37,2.38,-0.37,-0.91,-0.69,-1.02,1.55,2.57,0.89,-2.19,-0.14,0.66,1.24,-0.84,0.81,-1.31,-2.07,2.38,-1.5,-0.87,0.61,0.21,0.21,-3.73,-0.44,-0.39,2.14,-0.17,-1.35,0.08,-2.99,-0.73,2.58,-2.8,0.94 +C2377,-10.4,2.01,-3.48,-3.82,2.71,2.74,-0.97,0.54,-2.73,2.83,-0.94,-1.15,-0.75,1.26,-0.21,1.17,-0.32,0.29,0.9,1.6,0.91,0.62,-0.61,-2.99,-0.12,-0.16,0.6,0.67,-0.66,1.76,1.11,0.11,0.6,-1.24,1.38,0.15,0.05,0.19,-0.45,-0.96,-0.24,-0.89,0.88,-0.48,1.33,-0.9,0.38,-0.34,0.98,-0.22 +C2378,4.46,9.42,3.85,3.28,5.06,-1.14,1.26,0.07,0.85,-0.9,0.91,0.3,2.59,-1.83,-0.66,-1.83,-1.43,-1.83,0.72,-1.42,-1.17,-1.66,-0.76,-1.75,-0.82,0.07,0.2,1.86,-3.44,1.4,0.83,-3.11,-0.49,2.93,-1.15,0.55,-0.71,-0.65,1.79,-0.09,-0.42,-0.22,1.83,-0.85,-0.37,-1.03,-1.18,-1.16,-0.12,0.1 +C2379,-15.42,0.57,1.3,-1.69,0.97,1.42,-2.25,-0.28,-0.93,-1.69,0.49,1.92,-1.79,1.48,-2.86,1.91,0.52,-1.6,1.1,3.16,-0.2,-3.35,-1.46,-1.19,-0.43,-2.69,-0.62,-1.18,-0.17,2.17,0.05,3.24,0.09,-1.7,-3.08,1.64,-3.25,0.33,-4,0.53,1.64,0.09,-2.48,-2.28,0.06,0.22,-0.37,1.23,-0.45,-1.71 +C2380,-11.14,1.47,-2.04,-5.56,1.87,2.23,1.02,-0.56,-2.31,4.75,-2.58,-0.22,-2.71,-0.01,-1.6,0.38,-0.1,-2.04,1.38,-2.5,1.36,-1.81,-1.38,-0.16,4.98,1.71,0.09,0.66,-0.81,-1.82,-3.05,-1.98,-1.63,-1.49,1.39,-1.57,0.9,2.14,2.72,1.65,-4.38,-3.87,-2.58,0.3,0.17,1.06,1.61,2.49,0.78,4.5 +C2381,-14.54,-0.04,0.31,0.32,-1.28,-0.24,-0.05,-0.49,0.83,-0.24,1.27,-1.19,1.46,1.61,-0.21,1.16,0.16,-3.64,1.63,-0.25,-2.02,0.14,3.23,-1.11,0.47,-1.46,-0.12,0.78,2.17,1.25,-0.13,-0.59,1.87,-0.05,-1.5,1.25,1.37,-0.54,1.27,0.15,0.58,0.58,0.15,-1.15,1.93,-1.31,-0.99,-1.43,2.27,0.04 +C2382,-6.81,4.42,-1.81,-3.38,3.93,-0.37,2.1,-0.37,-1.33,-2.98,0.29,-0.04,0.45,-2.3,0.97,0.57,-0.45,-0.53,0.71,0.64,-0.24,-0.7,1.15,2.47,0.51,-0.7,0.78,2.69,-1.64,1.73,0.49,0.36,0.76,-0.45,-1.34,-0.41,0.69,-0.36,0.01,0.59,-1.12,0.63,1.12,0.09,-1.61,0.17,0.89,0.63,-0.7,-2.46 +C2383,4.53,-0.58,0.17,0.25,5.02,0.57,0.44,-2.27,1.41,0.42,-1.81,-0.19,0.56,5.13,2.81,2.22,-1.92,2.13,-0.26,4.01,1.08,-1.69,-1.11,3.25,3.75,1.96,1.8,2.34,1.63,0.36,-0.42,-1.09,-0.23,-0.78,-0.52,2.11,-1.18,-0.99,1.26,0.51,2.79,-1.7,0.06,-2.14,-1.6,-1.82,-2.17,-4.15,0.06,-1.41 +C2384,4.04,6.39,2.68,2.82,1.18,-0.9,-0.14,1.49,-0.74,-0.12,-4.45,-1.24,1.28,-0.07,-2.34,-1.2,1.73,1,1.09,2.12,0.88,0.05,-2.56,-0.1,-2.67,-1.43,2.16,-0.64,1.1,1.56,-0.47,-1.31,1.4,0.76,1.08,-0.74,2.03,1.07,-0.96,2.28,2.72,0.43,1.33,-0.18,-0.55,-0.29,4.43,-2.12,1.92,1.58 +C2385,2.41,-1.2,-1.55,-2.32,-1,-0.32,-1.89,0.14,-1.23,0.89,-1.26,-0.01,1.48,0.83,-0.57,0.5,-1.36,-0.19,1.37,-1.41,1.15,1.58,-2.62,-1.74,-2.26,-0.18,-0.02,-1.58,1.16,-1.45,-1.11,0.49,3.27,-1.7,0.35,-1.02,1.19,-0.99,-3.06,-1.65,1.08,1.57,-0.83,0.77,0.31,-0.73,-0.22,-1.09,-1.37,-1.69 +C2386,4,0.98,-0.62,-1.52,-2.86,-0.1,0.7,1.99,0.7,1.65,0.24,0.01,1.4,0.83,-1.84,-0.48,0.65,0.94,2.19,-0.02,-1.57,-0.84,-1.58,0.73,1.97,0.05,-0.62,0.85,-0.12,1.31,-0.4,1.32,-1.45,-4.75,0.05,-1.34,-0.02,-1.77,1.02,-0.23,-0.27,0.52,0.48,-0.22,2.85,0.93,0.61,-0.25,0.62,-0.73 +C2387,3.66,0.6,-0.71,-1.5,-1.61,-0.1,1.64,1.47,1.58,0.37,-0.36,-0.49,-1.03,2.73,-1.18,1.06,0.06,-1.18,2.76,1.67,-0.6,-0.39,-1.05,0.12,-0.09,-0.42,-0.1,-1.53,0.65,3.21,-1,-0.14,1.34,-1.59,1.5,-0.61,0.59,1.36,1.23,-2.23,-0.66,-0.57,0.5,0.44,0.98,-1.36,1.98,3.26,1.55,2.26 +C2388,-10.91,1.1,-1.6,-3.13,0.59,1.67,-0.54,-0.36,-1.09,0.45,-3.4,-1.82,1.87,0.24,-1.97,2.29,1.39,-1.67,-3.58,0.04,-0.84,-2.23,4.02,2.8,0.03,1.2,2.08,3.42,-0.23,-0.63,0.22,-0.6,-1.56,-0.49,0.08,0.55,2.44,1.99,0.02,-1.55,-0.1,-1.31,1.38,0.73,2.61,0.59,-0.88,-0.32,-0.59,1.45 +C2389,-16.58,-0.23,3.94,1.47,-1.24,-1.93,-2.4,-0.99,1.69,-1.88,-0.06,-0.7,-0.24,3.3,-3.39,-1.67,-0.84,0.05,0.84,0.97,0.05,-0.83,1.12,-1.05,-0.26,0.07,1.82,-2.1,1.73,-0.66,0.38,-0.42,1.26,0.59,1.61,0.25,-0.61,0.65,-2.12,-0.66,-2.08,2.81,-0.98,1.55,-0.05,0.34,-1.06,-0.82,3.88,1.68 +C2390,3.73,-4.73,0.32,-0.36,1.73,1.2,0.58,-2.09,1.47,-2.77,2.27,-1.4,-0.51,2.6,-1.41,-1.26,-0.36,0.02,1.27,1.34,-0.75,0.77,-1.16,0.4,1.26,0.26,-2.47,0.59,1.31,-1.39,-1.02,-1.02,0.17,-0.85,1.16,-0.99,2.1,-0.35,1.39,-1.04,-2.53,0.12,-0.07,0.24,2.92,0.48,-1.26,-1.82,0.09,2.86 +C2391,-12.22,0.94,-0.39,-1.15,-0.04,0.55,-1.68,-0.27,-0.21,0.21,-0.15,1.07,0.74,-0.29,-0.61,0.57,2.05,-1.56,-1.46,-1.85,1.11,-1.22,-0.78,-0.45,1.21,-1.49,0.25,0.9,-0.48,0.13,1.78,-2.25,-2.29,2.6,-1.53,-0.8,0.67,-2.65,-0.18,1,-1.13,-1.6,-0.46,1.25,0.09,-2.56,1.65,-1.68,0.29,-0.39 +C2392,4.55,1.14,-1.92,-1.61,0.11,-0.46,1.6,0.45,1.28,1.09,-0.67,3.23,0.46,-0.3,0.16,0.06,1.05,1.3,-1.04,1.85,1.13,-1.77,0.58,0.1,1.39,0.07,0.72,-1,-0.57,1.29,0.25,-1.02,-1.6,-0.51,-1.74,-1.19,0.6,-1.58,-0.95,0.92,-0.32,-1.28,-2.48,-0.57,-0.58,-1.95,-3.15,2.04,0.22,-1.05 +C2393,-12.21,-2,2.85,2.47,-3.25,-9.39,5.65,-0.19,1.25,4.32,-2.14,2.25,1.77,0.39,-0.54,3.04,0.64,1.2,1,-0.43,-0.12,-2.43,-0.59,-1.72,2.79,-0.87,-2.28,-0.94,-1,-1.6,1.5,-4.23,0.59,5.95,-0.37,-0.35,-1.49,0.4,0.1,0.71,-2.9,-3.53,2.24,1.88,2.28,1.25,-2.89,-1.8,0.68,1.59 +C2394,-11.86,-0.92,1.02,-1.13,0.17,-5.06,3.05,-0.52,2.42,-1.03,0.44,0.96,-0.55,-1.7,1.7,0.21,0.35,0.55,-0.52,-0.19,0.62,-0.32,-0.31,3.18,1.41,-1.15,-1.68,1.74,0.75,-0.21,-0.24,2.24,-0.63,2,-1.81,1.55,-0.37,0.41,-0.15,-0.27,1.95,4.08,0.73,0.28,0.35,-0.23,0.56,0.82,0.54,-0.09 +C2395,4.43,-3.32,-0.64,-0.85,2.81,0.7,-0.78,-1.8,0.46,0.72,-0.89,2.95,0.51,-3.08,0.53,-0.99,0.49,-1.28,-2.4,-1.15,1.11,0.28,2.28,0.48,-0.54,0.69,-1.78,0.31,-1.38,3.53,-2.55,-0.44,-1.29,-2.97,-0.22,2.13,2.47,-2.42,0.65,0.04,-0.52,-1.17,-0.75,-1.33,3.06,-0.25,0.5,-2.23,-1.18,-2.27 +C2396,5.24,1.26,-1.9,-2.24,0.26,-0.07,1.39,-0.74,1.14,0.58,-0.23,-0.68,0.06,2.01,-0.65,-0.35,0.81,0.04,-0.48,-0.8,-0.36,-0.43,0.07,-0.92,-0.64,1.12,1.54,-0.79,-2.26,0.37,1.19,-0.11,0.36,-0.76,1.07,-1.89,0.15,1.31,-0.27,-1.81,0.28,-0.36,-0.1,0.37,-0.59,0.02,-0.78,0.35,0.74,0.3 +C2397,5.62,5.47,-2.08,-3.58,4.21,-0.78,2.76,0.8,2.25,-1.84,2.1,1.32,-1.31,-1.67,1.13,1.36,1.58,-0.74,-1.88,1.43,-0.13,-0.13,-1.72,0.4,0.77,-1.19,-1.42,-0.82,-1.4,0.82,1.27,-0.33,2.52,-1.98,-0.55,1.18,0.07,2.07,0.65,1.55,-1.76,0.62,-1.43,1.9,-1.12,-0.19,0.25,-0.85,2.06,-0.24 +C2398,1.97,6.68,6.06,6.52,-1.47,0.44,-0.89,-1.61,3.41,0.27,2.15,1.49,-3.32,-0.53,-0.17,-1.25,1.84,-4.51,1.36,1.18,0.37,1.07,-2.41,4.41,0.98,6.22,2.34,-4.59,1.05,-0.23,-0.36,0.98,-1.25,-2.06,-1.94,2.75,-0.38,-1.79,-1.86,-2.46,0.79,-1.11,-3.15,2.01,-0.54,1.55,-0.22,0.2,-0.3,1.54 +C2399,4.88,1.62,-1.33,-2.2,-1.36,-0.62,-0.2,1.83,-1.16,-1.57,-1.12,-1.33,0,0.45,1.76,-1.22,1.16,0.36,-0.44,1.34,-0.16,-1.03,1.58,0.37,-0.44,0.79,-0.81,-0.5,1.21,-0.93,-0.42,1.83,0.03,0.87,0.18,-1.29,-1.13,-1.1,-2.76,2.65,0.65,0.91,-0.09,1.2,0.98,-0.23,1.13,-1.65,-1.16,-0.69 +C2400,5.57,-0.21,-0.69,-2.45,-2.49,-1.96,-0.11,2.55,0.61,-1.03,-0.92,-0.96,0.25,3.06,-2.2,-1.39,1.2,0.8,-1.24,-1.49,-0.12,-0.7,-0.17,-3.59,0.11,0.96,1.1,-0.19,1.6,-2.04,0.67,1.22,1.59,1.45,-3.95,-0.54,1.8,-2.15,-2.27,-1.15,-0.82,-1.56,-3.33,-0.67,0.69,-1.88,0.98,0.13,-0.18,0.98 +C2401,3.95,-8.29,1.78,0.68,0.38,-0.17,-0.94,-3.4,-0.77,3.17,-2.89,-0.97,-0.69,3.15,2.89,-1.15,-4.28,2.44,-0.22,-1.46,5.43,-2.62,0.7,1.97,-3.94,3.33,-1.62,1.23,-5.86,0.01,-1.05,-4.29,-3.61,-0.64,-1.87,-3.22,-2.77,2.3,-2.22,-1,4.58,-0.55,-1.47,2.53,0.99,-1.83,-2.22,4.23,0.47,1.97 +C2402,3.86,7.84,3.55,3.18,2.23,-2.11,0.62,0.96,-1.41,-0.87,0.69,0.05,2.15,-2.18,0.45,0.9,-0.57,1.42,-0.74,0.24,-3.51,0.27,-2.33,-1.5,0.52,1.56,0.67,-0.63,0.7,2.89,0.92,-0.74,-2.47,0.79,-0.21,0.3,1.53,-1.56,-2.79,2.68,0.59,-0.76,-1.42,0.8,2.27,0.8,-3.83,0.96,0.5,2.45 +C2403,5.57,-0.38,-1.12,-3.47,-1.19,-0.27,-0.66,0.58,0.22,-1.96,0.15,-0.05,-0.81,-2.47,1.01,0.07,0.08,-0.82,-1.18,-0.68,-1.2,-0.65,0.64,1.01,-0.69,0.09,0.42,2.94,0.3,1.29,-1.67,-1.15,-0.31,1.49,-1.16,-1.06,1.98,2.66,2.15,-1.56,-1.63,1.45,-1.76,-1.1,-0.66,1.42,-3.11,2.36,-0.74,0.92 +C2404,5.88,2.46,-1.14,-2.55,-0.62,0.33,-0.01,1.48,2.49,-0.99,-2.95,-1.32,-1.47,1.16,1.07,0.81,1.38,-3.35,0.16,1.01,0.38,2.44,0.37,-1.14,0.2,1.42,-0.98,1.55,1.83,0.39,-0.73,-0.41,0.66,-1.46,-1.71,-0.58,1.36,0.58,-2.2,-0.11,-3.5,-1.43,1.29,1.3,0.28,-0.53,-0.55,0.13,-1.43,-1.27 +C2405,3.92,-0.76,-0.83,-0.37,-5.09,0.4,-0.13,-2.57,-1.6,0.31,1.58,-1.18,1.92,-2.96,0.7,0.57,1.44,-0.7,-0.88,-0.19,-0.94,-2.76,-0.7,1.33,0.98,0.44,3.89,-0.53,3.06,2.32,0.06,0.38,1.55,-0.39,-1.79,-0.13,0.37,-1.49,-0.37,0.56,-2.73,-1.14,0.09,4.64,0.44,-0.56,2.06,-2.25,-0.44,-1.02 +C2406,5.61,1.59,-1.63,-2.42,-0.59,-1.56,1.35,1.05,0.76,-1.74,-0.46,-2.27,-1.56,-1.62,-1.27,-0.31,1.69,-0.29,-1.03,-0.09,-1.48,1.33,-0.93,-0.33,-1.61,3.06,2.02,-2.42,1.78,-1,-2.65,-0.59,-1.48,1.31,0.69,-1.54,0.3,0.68,2.43,1.77,0.43,2.72,0.7,-0.86,3.2,1.29,-1.04,-1.15,-0.94,0.96 +C2407,-9.03,2.28,-0.51,-2.88,1.73,-0.04,2.96,1.06,0.04,2.53,-0.69,-0.95,-0.98,2.91,0.39,1.28,-0.12,-1.14,0.12,0.6,1.26,0.38,-0.53,-2.86,1.35,-1.42,0.9,-2.23,0.32,-0.14,0.54,-0.75,-0.52,-1.14,-0.73,-1.61,-1.37,-1.66,-2.16,-0.27,-0.62,2.37,0.03,0.48,-1.56,0.01,0.18,-1.37,2.73,-0.79 +C2408,-0.33,-5.95,3.42,1.18,-8.64,2.61,-4.18,-3.25,-4.45,0.57,3,-0.38,-0.3,-1.76,0.04,0.15,-1.45,0.16,-0.1,-1.77,-1.32,1.85,-2.84,0.89,0.74,-2.11,-3.52,0.11,1.19,1.35,0.8,-0.43,3.44,0.07,-2.57,-1.28,-1.5,4.9,2.21,2.19,-0.31,-0.48,-0.41,-2.8,-0.46,2.35,-0.9,-1.18,0.48,1.13 +C2409,1.15,-3.41,0.9,1.57,-5.15,0.42,-1.08,-0.38,-4.74,1.57,1.72,-0.48,1.54,0.96,-0.1,1.15,1.9,-1.5,-1.36,-3.03,-0.2,1.64,-1.39,3.63,-0.38,0.68,3.51,0.26,-0.8,-1.43,0.45,-0.07,0.18,-2.61,2.57,0.4,0.72,1.1,-1.6,1.05,2.33,2.34,-0.31,1.69,-5.45,-0.16,0.01,-3.11,2.15,2.47 +C2410,-9.69,3.83,-2.63,-5.15,5.06,1.56,1.14,0.05,-0.37,-0.98,0.21,-0.19,0.62,0.31,-0.08,0.16,2.6,-0.45,-0.63,-0.42,-0.05,-1.63,-0.44,1.52,1.17,-1.25,-1.26,-0.93,-0.13,-0.02,-1.73,0.55,0.95,0.94,-1.03,0.1,2.54,-1.6,-0.32,-0.85,-1.2,-0.4,-0.42,0.31,-0.11,1.18,-0.92,-1.25,-1.31,0.5 +C2411,4.14,0.63,-0.91,-0.79,-1.16,0.47,-1.15,0.89,0.03,0,1.03,-1.37,2.61,2.6,2.36,-1.15,-2.94,-0.55,3.02,3.09,3.44,3.51,-1.65,-0.17,1.26,0.58,7.43,-0.59,-2.44,-2.42,-0.8,3,-0.47,1.58,-0.1,-0.07,0.99,0.01,2.38,-1.51,-4.45,0.39,-0.47,2.76,0.01,0.12,-3.14,2.04,1.26,0.63 +C2412,4.49,2.54,-1.58,-2.59,1.22,0.05,1.48,1.46,1.62,0.76,1.05,-0.07,-1.75,1.89,2.04,0.82,0.96,-0.75,1.08,0.88,0.46,1.3,0.11,2.19,0.57,0.46,1.07,-0.03,-1.97,-0.17,0.71,1.5,1.22,0.38,-0.84,-0.8,-0.17,0.49,1.31,0.04,0.32,-1.39,-0.61,0.18,-0.95,0.64,0.1,-0.22,1.13,0.7 +C2413,2.79,7.95,4.92,4.32,1.3,2.42,-2.3,-0.34,0.87,2.28,1.26,2.26,-2.83,-1.18,-0.71,-0.28,-0.67,1.41,-0.17,2.49,3.39,-1.15,0.16,-2.95,-2.27,0.2,-0.2,2.15,2.24,-0.19,1.38,1.3,2.1,-3.3,-3.19,0.12,0.06,-2.33,-3.33,-1.55,1.26,-2.56,-1.7,0.26,-1.47,-0.18,2.13,0.44,-1.04,0.51 +C2414,3.15,-3.11,-0.43,-0.63,-4.67,-1.32,-1.47,-1.56,-0.85,0.77,-1.58,3.13,0.11,-3.8,0.76,0.2,2.81,-2.69,-0.58,-0.13,-0.27,0.8,0.13,-0.02,0.54,-3.06,2.27,2.19,-2.1,0.25,2.88,-0.1,-0.86,0.02,-0.74,-2.66,-0.58,-1.02,-1.32,1.21,-0.29,0.15,-0.67,-1.43,-0.63,-0.39,-0.15,0.43,-1.33,-0.8 +C2415,2.71,-0.16,-0.45,-1.37,-1.5,-0.65,0.44,-1.95,-1.2,1.02,0.21,-1.32,0.79,0.35,2.19,-1.9,0.73,-0.02,-1.35,-1.56,2.23,2.11,2.07,-0.42,-2.06,-0.47,0.55,0.64,0.08,-0.44,-0.58,-1.76,-1.68,-0.72,0.17,-0.15,1.99,0.18,0.03,-0.99,2.2,0.73,-0.6,0.17,0.15,1.13,-0.85,-0.8,3.21,-0.84 +C2416,-15.59,-0.12,0.21,-1.16,1.06,4.22,-2.08,-0.47,-3.54,-0.62,-0.72,-1.89,0.54,1.32,1.02,-1.47,3.58,0.52,3.13,-0.84,-1.24,1.08,3.27,-1.39,-1.07,-1.74,0.46,-1.82,-0.96,1.16,0.95,2.12,1.4,1.12,0.54,0.91,-2.12,-0.26,-0.95,0.31,0.55,1.27,0.63,-2.05,3.49,-1.36,-0.47,0.93,2.2,-1.38 +C2417,5.07,0.79,-1.37,-3.33,-2.31,-0.33,0.64,1.54,2.4,0.89,-1.31,-1.32,-2.16,2.16,1.11,-0.89,-0.83,-0.99,-2.14,-1.91,-0.42,-2.07,-1.52,-1.16,0.04,-1.8,-3.22,2.59,-0.19,-1.09,-2.57,1.1,0.89,3.54,-1.23,-1.1,1.73,0.12,0.19,1.32,-1.25,0.3,0.92,-3.03,1.42,-1.19,2.14,-0.64,0.41,-1.71 +C2418,3.03,-0.6,-1.03,-2.99,-2.33,0.23,-0.87,-2.17,-0.62,3.97,0.2,0.85,0.02,-2.53,2.38,-0.47,-0.79,-0.3,0.07,-1.1,0.72,-0.79,-1.71,-0.95,-0.22,2.82,0.17,1.17,-1.59,1.97,0.22,2.37,-0.06,1.07,-0.02,1.3,2.5,-1.33,-1.9,-0.45,-0.28,0.32,-0.73,0.49,-0.7,-0.48,1.79,1.39,3.9,-0.06 +C2419,2.96,-4.88,0.6,-0.63,-5.53,0.2,-3.61,-1.64,-3.06,1.6,-0.61,-0.42,0.46,1.21,0.55,0.26,-0.93,-0.27,-0.74,-1.94,-0.19,-2.75,-2.8,-1.98,-1.97,-0.02,-0.79,3.64,-1.93,0.56,0.58,0.81,0.04,0.78,-3.5,1.32,-0.36,-0.49,-1.37,-0.43,-1.46,-0.76,-0.9,-1.47,1.58,-0.2,-0.06,-4.41,0.35,-0.5 +C2420,3.97,-3.53,-0.35,-1.55,1.57,1.39,-0.48,-2.6,1.47,-1.26,0.07,1.48,-1.36,1.38,0.93,0.95,-1.62,-1.27,-0.12,0.35,-0.58,2,0.55,-0.75,-0.06,0.36,0.29,0.03,0.4,1.43,2.77,1.18,-0.66,-0.04,-0.22,0.6,0.12,1.31,-0.74,-1.52,-0.86,1.23,1.47,1.37,0.49,-0.95,2.72,-0.26,1.71,1.56 +C2421,5.06,2.83,-2.65,-3.5,1.79,-1.61,1.39,-1.01,0.61,0.59,-0.52,0.41,0.15,-3.2,1.36,2.68,-0.22,1.16,-0.93,-0.04,0.18,-0.96,-1.01,0.49,-2.25,-0.75,0.27,1.06,-0.99,1.19,2.1,-0.23,1.01,-1.57,0.5,0.89,-1.95,-0.51,0.13,-1.05,-2.98,1.01,0,-1.12,-0.5,2.42,-0.79,-0.96,-0.19,0.71 +C2422,-13.42,-2.57,1.55,1.58,-2.63,-6.67,2.29,-0.7,-0.5,2.26,-0.18,1.3,0.77,2.31,-0.13,0.31,0.97,-0.34,-0.39,-1.48,1.69,1.41,0.23,0.68,-0.51,1.66,-0.36,1.21,0.54,-1.91,-0.28,3.38,-1.35,1.65,2.69,0.33,2.07,-0.98,1.25,-0.94,-1.37,-0.47,-1.05,2.18,2.01,-0.72,1.08,-2.94,-1.75,-0.14 +C2423,-9.29,0.5,-4.04,-1.32,1.96,3.37,0.54,0.24,-5.21,5.43,-0.65,-1.53,0.41,0.08,-1.54,3.48,-1.25,-3.51,-0.59,-1.52,0.63,2.01,-0.29,-0.94,2.93,-1.53,-1.91,1.5,-0.53,-0.61,-3.6,-1.23,0.29,1.79,0.2,-1.2,0.15,0.39,-0.8,0.41,-1.48,-0.13,0.16,-2.16,2.9,-0.03,-0.08,-0.77,-2.18,1.67 +C2424,6.76,4.1,-3.24,-2.83,4,-1.23,2.91,-0.24,3.25,-0.92,-0.79,-0.11,0.04,-0.11,1.48,0.35,-0.39,-0.75,-0.3,-1.6,-1.17,1.31,0.42,0.23,-0.14,-0.99,-0.73,-0.48,1.14,-0.47,1.23,0.58,-0.49,0.39,-1.19,0.05,-1.79,-0.48,-0.1,-1.82,-0.61,-0.2,0.67,2.8,-1.68,-1.32,0.23,0.08,-0.1,0.03 +C2425,-3.34,4.52,-3.05,-4.54,5.6,1.56,2.17,-0.44,1.68,0.61,0.66,-0.18,-0.84,-1.9,-0.8,0.41,0.56,-0.31,0.48,-0.12,0.86,0.81,0.64,-0.79,1.28,-0.08,0.33,0.82,2.28,-1.47,-0.09,1.29,0.85,-0.29,-1.81,-0.05,0.71,1.17,0.33,0.31,0.24,0.03,-0.86,-1.14,-2.31,0.44,-0.11,0.02,0.86,0.48 +C2426,-12.59,-0.01,-0.8,-2.66,0.95,4.54,-2.11,2.39,-2.59,-2.22,3.25,-1.04,-3.11,0.54,0.33,-2.18,1.76,1.06,1.41,5.79,-0.69,0.87,-1.55,-0.51,2.25,0.85,-3.16,-2.84,-1.27,-0.87,0.41,-1.94,0.61,-1.95,1.68,-1.55,-2.26,-1.68,0.37,0.45,0.09,2.44,-1.56,0.56,1.15,-0.29,0.1,-1.14,3.75,1.35 +C2427,4.06,0.49,-2.32,-1.45,-3.28,-1.57,-2.67,2.18,-3.51,-0.98,-0.33,-2,1.71,-0.59,-2.64,0.71,1.34,-1.87,-1.38,-3.17,-1.84,-0.51,-2.15,1.04,1.72,-2.28,0.5,-0.95,1.81,-0.67,1.16,0.35,0.34,-0.05,1.84,0.19,2.58,1.2,-1.21,-0.17,-2.87,0.5,-2.93,2.07,-1.1,0.5,-1.24,0.24,0.01,-0.43 +C2428,-13.72,-4.26,2.65,2.15,-4.36,-6.59,1.67,1.24,-0.2,2.61,-0.84,1.56,1.36,-0.09,-2.62,0.96,2.74,3.12,-0.43,-0.01,-1.81,1.15,-2.27,2.44,-1.47,-0.77,-0.25,-3.37,-0.26,1.54,0.24,-0.27,-1.4,0.32,-1.3,0.22,-0.48,4.46,-0.69,1.3,3.3,1.34,-2.97,2.36,0.26,-0.13,-0.95,3.12,3.63,-1.08 +C2429,1.82,8.36,6.08,5.65,2.01,-0.97,-0.24,1.19,-0.93,-3.96,-2.13,1.1,5.99,1.04,-7.13,-1.51,-3.61,1.11,-3.28,-2.47,-3.13,2.9,0.05,-2.06,-2.26,4.09,4.65,1.99,-0.46,2.75,2.82,-2.41,4.71,-2.63,-3.61,-0.09,-4.72,-1.65,-0.24,-3.46,2.56,-2.63,3.19,0.47,3.77,1.69,1.56,0.55,-2.9,2.98 +C2430,5.64,0.52,-0.14,-2.15,-2.74,-0.73,-1.71,3.44,-0.23,1.33,-0.3,-1.53,1.35,0.19,-2.33,-0.8,0.66,-2.77,-0.08,1.11,0.49,0.04,3.1,2.45,1.59,2.06,-1.7,-1.13,-0.77,-1.62,4.05,0.66,0.25,2.84,-0.37,-0.61,0.66,-2.15,-1.05,2.23,0.83,0.75,-1.19,0.74,-0.07,-1.26,-0.66,-2.12,-2.68,0.99 +C2431,2.89,-0.73,-1.27,-1.57,-2.4,-1.5,0.48,0.95,0.58,0.58,0.51,2.67,-0.5,0.36,-1.76,-0.82,0.58,-1.21,-1.1,0.33,0.38,-2.5,-0.33,2.65,1.02,-0.48,-0.31,-0.55,-0.37,-0.08,1.75,0.59,-1.87,0.49,-0.67,0.4,-1.71,0.65,1.15,1.01,1.39,1.02,1.04,2.31,0.34,0.66,0.31,-1.42,1.57,0.33 +C2432,3.52,-10.43,3.22,2.77,6.51,-0.35,-2.14,-1.72,-2.91,-0.07,-4.22,2.85,2.49,2.67,3.21,0.05,-1.8,-1.4,3.35,-0.24,1.04,-0.65,-2.63,1.36,3.57,2.52,-2.66,-0.85,-1.18,2.49,-1.45,0.53,3.11,-1.69,0.95,-1.4,2.56,2.9,-0.44,0.25,-1.03,-2.73,-3.5,0.48,-1.14,2.47,-1.13,3.47,-2.01,2.09 +C2433,5.1,2.62,-1.63,-1.18,-1.5,-1.3,0.75,1.53,-0.61,-0.62,-0.62,-0.66,0.36,3.92,1.26,-2.1,-3.04,1.83,0.18,-1.4,-0.66,-0.81,-0.51,-0.02,0.22,-0.82,-1.22,-0.4,1,-0.78,1.23,-1.56,-1.33,-0.59,0.45,1.27,-0.75,2.9,0.82,-1.21,1.89,-1.46,0.77,0.11,1.1,-0.84,-0.64,-0.41,0.8,-0.25 +C2434,-9.23,3.1,-1.93,-4.13,4.12,2.69,1.53,-0.65,-0.52,2.61,-0.47,-0.34,-0.43,-0.55,-0.99,1.51,0,-1.12,1.07,-0.56,-0.04,0.53,0.03,0.59,0.74,0.84,1.43,-1.11,-2.02,0.22,1.9,0.85,-3.27,-0.98,-0.71,-0.51,1.07,-0.33,-0.38,0.51,-0.26,0.43,0.42,-1.81,0.11,-0.59,0.73,-0.93,1.63,-0.23 +C2435,4.14,0.25,-0.64,-1.68,-1,-0.67,0.39,0.43,0.44,-0.53,2.03,-0.03,1.41,-0.43,-2.57,-0.93,1.88,0.65,1.19,0.08,2.51,-2.06,1.12,1.62,1.16,0.85,1.63,-0.88,-1.68,1.37,-3.11,-0.86,-0.29,-0.24,-2.67,2.03,0.08,-0.35,-0.6,0.89,-1.26,2.59,1.81,-1.05,0.17,-0.24,1.8,-1.06,-1.73,2.66 +C2436,3.89,0.98,-0.6,-1.47,-0.72,-0.61,0.71,0.61,0.07,1.38,-0.29,0.94,1.28,-0.81,0.39,0.89,-0.16,0.13,-4.38,-0.37,-0.47,2.26,1.26,0.47,-0.91,-0.59,1.59,-1.43,-1.32,-2.49,2.72,-1.9,0.82,0.35,1.26,0.78,0.82,0.03,0.86,2.06,0.03,-0.49,-0.76,-0.12,0.09,-0.42,0.59,-1.44,0.44,-0.55 +C2437,3.87,-0.45,-0.97,-2.18,-2.06,0.27,-0.45,1.44,1.18,-1.52,-1.14,0.72,0.35,-0.17,1.71,-0.78,1.18,-0.57,0.84,0.64,-0.59,0.82,0.74,0.8,-0.39,1.38,1.24,-1.52,-3.51,-1.4,1.86,0.33,-0.75,1.44,-0.89,-0.71,2.42,-2.42,0.55,0.41,0.39,0.4,1.39,1.04,0.57,-0.23,2.31,1.01,-0.41,-0.92 +C2438,5.47,0.95,-1.23,-1.95,-2.52,-0.56,-0.14,2.41,1.79,-0.85,-0.59,-0.21,0.19,2.55,0.15,0.88,0.04,2.55,0.55,-2.38,-1.52,1.56,3.28,-0.59,0.23,0.14,-0.63,1.09,-2.69,4.33,-1.81,0.21,0.89,-1.94,2.64,-0.14,0.34,-1.1,0.66,0.74,0.98,-3.46,0.65,0.36,-1.69,-0.62,2.71,1.2,-2.6,-2.75 +C2439,6,-3.61,-1.4,-1.16,2.85,-0.74,0.28,-4.62,0.27,2,-4.13,1.84,-0.55,0.06,-5.75,-2.41,-5.28,1.59,0.72,-0.85,-1.47,-0.92,1.7,-0.9,-0.72,1.36,-0.37,0.21,-2.41,1.64,-0.99,-3.62,1.67,-3.12,0.26,-2.98,-0.84,-0.55,-0.66,-1.36,-3.38,0.76,-0.7,-2.7,0.5,2.29,2.09,-1.38,-1.09,-1.74 +C2440,4.89,1.82,-1.08,-3.07,-2.16,0.23,-0.11,1.82,0.93,-1.3,2.6,-0.52,-0.04,1.03,-0.74,-0.2,0.24,0.83,-0.86,-0.21,-0.14,2.99,3.17,-0.55,1.44,-0.31,0.04,0.73,1.09,0.55,-0.27,2.26,-0.97,-0.56,-1.54,-0.75,0.46,-0.96,-0.23,1.46,-0.47,1.51,2.99,0.92,-1.36,1.48,2.44,-1.16,-2.45,0.93 +C2441,3.49,6.22,2.75,3.64,1.56,-0.53,-0.32,-1.37,0.6,-0.48,1.08,-0.18,-3.36,0.41,-1.14,0.61,-0.85,1.57,-2.4,-0.28,-0.97,0.47,-3.08,1.73,-0.8,-2.28,-0.07,0.82,3.2,2.68,-2.33,1.08,0.32,1.53,-1.29,0.34,-1.57,0.51,2,-1.02,-1.86,0.76,1.44,0.63,-1.87,0.98,0.32,0.05,-1.37,1.75 +C2442,-12.02,-3.84,4.26,3.77,-5.66,-7.66,2.7,-1.34,-1.67,-2.14,0.21,-3.35,-1.09,1.08,2.12,-2.94,1.92,0.6,0.96,0.51,2.08,0.42,1.22,1.74,-0.64,0.13,-0.73,-0.99,1.63,-2.84,-0.86,1.26,1.83,0.93,-3.56,-1.43,-0.14,-3.56,3.18,0.85,1,0.29,1.18,-2.95,-0.36,-5.22,-1.65,0.33,1.19,1.78 +C2443,3.57,7.97,4.96,4.01,1.37,-0.65,-0.27,-0.05,-0.95,-2.14,0.76,1.74,2.81,0.18,0.74,-1.18,-1.83,-0.11,-1.1,-1.34,-1.46,-3.54,2.99,-1.97,1.12,-0.58,-0.23,-0.72,1.59,3.6,-2.71,0.75,0.31,-1.97,0.44,-0.01,-2.74,0.9,0.16,-3.57,0.01,-1.74,0.81,-0.93,2.64,-0.24,0.72,-0.41,-1.24,0.75 +C2444,-8.6,0.57,-1.35,-1.02,1.18,-4.43,4.4,-0.26,0.09,0.99,-0.35,-0.06,-1.27,-1.62,0.14,0.66,-0.2,-0.77,-0.2,-1.33,2.31,0.24,-0.23,3.22,-0.24,1.33,-1.88,0.01,-0.92,-0.31,-1.76,-0.26,2.59,-2.52,1.66,1.58,2.34,0.48,0.8,-1.57,0.96,1.12,-0.92,2.35,-0.09,1.53,-1.12,0.56,-1.87,-5.41 +C2445,2.28,-0.45,-0.72,-1.69,-4.26,0.79,-2.98,-0.73,-0.34,1.16,0.46,0.34,-0.07,0.66,1.48,-0.43,1.82,0.47,3.35,0.79,-0.62,-3.33,1.48,-2.62,2.82,2.34,-0.64,-0.65,-1.22,-1.73,-3.7,2.06,-1.8,2.96,-0.06,0.37,0.49,-1.33,-2.05,-1.2,-0.9,-2.09,-1.9,-0.02,-0.92,-1.17,-1.19,-1.16,1.45,-1.65 +C2446,3.17,8.59,3.39,2.01,2.94,-1.45,1.61,0.99,0.26,-0.98,-2.9,-0.86,2.83,1,-1.63,0.64,1.48,1.58,0.55,-1.1,-0.54,-4.7,1.01,-1.55,0.91,-2.82,2.41,-0.26,-0.94,0.2,1.24,-1.15,4.43,2.51,0.88,-0.66,2.14,2.52,-0.56,0.26,-1.94,-0.96,1.43,-0.11,-0.36,-2.14,-1.43,1.65,2.1,-2.26 +C2447,5.43,1,-2.64,-1.1,-0.83,1.29,1.16,2.61,0.58,-1.89,-0.39,0.6,0.63,0.81,-1.33,-0.34,-0.28,-0.28,0.69,-1.18,-1.01,1.84,-0.25,-1.44,0.94,2.8,0.18,-0.27,0.71,-1.36,1.04,-0.18,-0.7,0.76,-0.77,2.3,0.59,1.42,1.59,-0.51,0.41,0.27,0.89,-0.04,-0.02,1.1,0.9,-2.28,-1.57,1.49 +C2448,4.99,2.61,-2.03,-2.51,1.2,-1.23,2.51,2.21,1.56,-1.25,-2.13,-0.21,-0.87,0.27,-2.59,-0.52,-2.13,-1.32,-1.46,-2.89,-2.27,1.6,0.9,0.99,-2.91,-0.06,1.54,0.66,-0.21,0.71,0.35,0.57,2.1,2.98,1.69,-0.15,-0.42,-1.24,1.45,1.82,0.22,0.89,1.58,2.24,-2.93,2.3,-0.97,1.09,3.45,-0.43 +C2449,3.67,7.82,4.66,5.28,1.75,0.2,-0.18,0.64,-2,-0.73,0.9,-0.93,0.67,-1.12,0.08,1.91,1.23,-0.33,-1.06,-3.22,0.57,1.24,-1.23,1.19,-2.01,0.93,-0.32,-2.05,-1.44,0.21,1.4,2.53,1.03,-0.76,-1.1,-1.28,1.02,1.81,0.95,-1.15,1,-0.2,3.02,1.09,0.94,-3.48,1.88,-1.32,-2.82,0.3 +C2450,3.46,-0.12,0.14,-1.98,-3.64,0.81,-0.84,1.14,-1.48,0.28,-1.09,1.51,-0.8,2.23,0.66,2.28,-1.75,-1.27,0.35,-1.18,-1.39,-1.37,-2.79,0.43,-0.37,-0.08,0.76,-0.57,0.64,-2.12,-1.5,0.88,3.7,-1.08,2.6,-0.14,-2.01,1.54,-1.21,0.4,-0.81,-0.51,-2.36,-1.75,-1.64,0.91,0.51,-1.87,-0.62,0.96 +C2451,3.95,-0.94,-0.99,-1.06,-3.11,0.21,0.09,0.61,-0.62,-1.24,1.82,0.19,2.2,1.69,-1.66,-0.42,-3.44,-1.39,0.89,-2.27,1.4,-0.61,0.36,3.92,0.46,-0.51,0.82,0.28,1.1,-0.29,-2.15,-0.47,-0.79,3.03,0.91,1.8,3.83,1.33,0.51,-1.75,0.14,-1.7,-0.22,-0.45,1.92,-1.62,-0.05,-0.72,-0.16,1.47 +C2452,5.22,-1.72,-1.05,-2.35,-2.4,-0.64,-1.2,-1.08,-0.71,-1.44,0.75,0,0.75,1.02,0.26,-0.85,-1.38,-1.9,-0.98,-1.27,-2.38,-2,0.24,1.21,0.1,-0.3,-0.03,0.41,-2.8,1.04,-2.12,0,-3.08,4.23,-1.77,-2.29,1.13,-1.44,-0.46,0.18,-0.29,1.8,-1.56,0.63,-1.24,2.26,-1.59,-3.21,-0.33,0.34 +C2453,-9.18,0.89,-2.05,-2.33,3.49,1.76,-0.71,0.34,-0.21,1.45,2.36,2.13,-0.49,-1.91,-0.01,4.08,-1.35,-0.04,0.24,1.09,-3.35,0.93,-1.92,-2.84,-0.02,-3.77,-2.27,0.58,3.12,0.52,0.43,-1.13,-0.88,1.52,-0.04,-0.6,-0.23,-1.51,2.91,1.66,2.21,-0.22,0.85,2.74,1,2.48,1.19,0,-1.31,3.35 +C2454,-9.4,-2.27,5.37,6.66,-6.46,1.21,-7.63,0.82,5.25,4.22,0.12,1.87,1.46,-3.15,-0.28,0.9,1.88,-1.99,-1.73,2.68,-0.62,2.21,2.62,0.97,-0.91,-0.12,-3.25,-5.12,-0.54,0.46,-0.94,-2.24,1.67,0.57,1.28,-2.4,-0.29,2.08,-1.4,-0.98,-3.4,3.33,2.54,3.34,-1.12,-1.72,-1.99,0.79,-0.5,1 +C2455,2.95,-15.49,3.29,5.39,3.92,0.44,-2.65,3.8,-3.62,-0.34,-2.14,1.82,-0.1,-1.34,-0.14,3.14,-0.87,0.46,-1.77,-2.61,-2.86,-2.93,4.47,-2.45,0.02,-1.29,0.08,-1.72,-3.43,-1.05,3.23,-0.19,1.05,1.39,3.53,-2.87,0.22,-0.38,3.1,0.47,5.45,1.96,1,-0.65,3.22,-0.65,-0.49,2.95,2.46,-5.33 +C2456,-7.89,0.01,0.35,-1.93,-0.72,-3.04,1.19,0.51,0.24,-0.24,0.39,0.93,1.18,-0.88,-0.8,2.27,-0.11,-1.93,1,0.1,-1.96,-2.83,0.29,1.48,0.28,1.13,-1.31,0.82,0.88,-0.08,-0.75,-0.76,0.66,0.29,1.75,0.39,0.18,0.2,-1.54,0.07,1.42,0.36,-1.17,0.37,-0.28,0.35,1.45,-0.34,0.34,0.47 +C2457,3.85,-0.02,-1.07,-2.87,-2.5,-0.12,-0.73,-0.67,0.28,2.44,2.12,0.3,0.8,-1.89,2.78,0.14,-1.21,0.76,-0.57,-0.19,0.3,1.62,-0.24,0.51,0.11,-0.68,1.92,0.33,0.54,0.23,0.05,-0.26,0.46,0.85,-0.51,-0.57,-0.15,1.18,0.53,0.5,0.58,2.48,0.15,1.26,0.91,-0.94,-0.61,0.4,1.09,0.02 +C2458,3.16,-0.17,-2.04,-2.37,-3.74,-0.7,-1.38,2.16,-0.17,1.42,0.8,-1.58,-0.73,-3.9,1.61,0.53,-0.72,1.83,0.37,-0.44,0.23,0.9,0.61,-4.34,-1.57,0.27,2.9,-1.46,0.99,-2.6,-0.96,-2.51,-2.6,6.77,-3.37,-0.72,-0.18,2.35,-2.38,-0.01,-2.1,-4.05,2.14,3.95,-0.84,4.81,-0.9,-0.9,1.11,-0.98 +C2459,1.66,-11.02,1.7,3.81,4.33,-2.27,-0.18,2.94,2.41,1.24,-0.31,-2.16,-1.38,0.7,-2.95,-1.47,0.38,-2.26,-0.95,-1.25,-0.17,1.25,-3.95,-0.51,-1.03,0.22,0.37,3.26,-1.08,2.03,-0.34,-0.45,-2.66,-0.61,-3.44,-0.64,1.85,-1.06,-1.56,-2.56,3.05,1.57,2.17,2.31,0.16,0.96,-2.32,1.07,-2.39,-2.17 +C2460,4.6,1.32,-1.47,-2.65,-0.76,-0.83,0.2,0.9,-0.37,0.14,1.37,0.55,-0.03,-0.15,1.79,2.78,-1.87,-3.46,-0.47,2.25,-2.22,0.11,0.59,0.14,1.57,-1.16,3.18,-0.51,3.59,2.08,1.18,0.87,2.42,-0.12,1.91,-1.2,-0.53,-0.01,-1.08,0.47,0.24,1.23,0.57,-0.72,-0.47,1.13,-1.71,-1.93,2,-0.08 +C2461,4.27,0.17,-1.51,-2.45,-2.4,-1.99,0.8,0.97,0.48,1.45,1.36,-0.09,1.26,-0.24,-2.03,0.91,1.33,-0.73,2.27,1.15,-0.17,-0.2,0.68,-0.89,-1.2,2.18,1.51,-0.6,-1.71,-3.76,0.48,-2.48,-2.77,-0.04,1.83,1.81,-1.4,0.4,1.52,-1.41,-0.36,-1.53,-1.38,-1.26,0.47,0.24,-0.68,-1.06,0.22,-0.88 +C2462,-11.39,-1.08,0.38,0.19,-1.68,-5.29,4.28,-0.14,3.35,0.4,-1.01,-0.91,-1.05,2.04,2.1,2.19,0.05,2.05,-2.73,0.57,-2.32,-1.1,0.76,-3.41,-1.35,0.26,0.18,0.03,0.89,-1.31,3.58,4.77,2.59,-0.84,0.34,4.13,0.6,2.33,1.94,-2.31,-0.72,-2.68,0.38,-3.18,-2.03,2.48,-0.67,2.58,0.69,-1.05 +C2463,2.74,8.41,4.08,3.88,1.84,-0.62,0.15,0.39,1.3,0.66,-1.36,-1.84,0.8,0.02,0.83,0.14,-0.62,0.53,0.99,-0.45,-0.76,-1.06,1.52,0.37,-0.32,-2.02,0.38,1.03,0.68,1.65,1,0.95,-0.37,0.2,-1.12,-0.12,-1,0.45,0.49,2.1,0.94,-0.27,-1.03,-1.4,-0.55,-0.75,-1.01,-1.32,0.06,-0.91 +C2464,1.79,6.21,6.48,6.72,0.08,0.29,-0.71,-1.52,0.52,0.82,-0.68,-1.53,1.36,-2.15,-0.85,-1.98,2.46,-1.7,0.5,-1.14,1.54,1.24,3.39,1.05,4.66,-0.51,-2.88,-0.95,-2.9,-0.39,-4.46,2.52,1.28,0.93,-2.06,-0.58,-1.07,0.37,1,-0.55,0.64,1.29,-2.41,0.2,0.98,-2.41,2.31,-0.02,0.61,3.46 +C2465,3.05,7.31,3.81,5.17,1.05,-1.97,0.9,-0.34,-0.06,0.04,3.27,0.38,1.73,-1.35,-2.17,-3.36,2.46,-0.86,-0.96,2.94,2.65,0.53,-2.16,-0.92,1.79,-2.63,-0.62,0.54,-1.24,-0.87,-0.39,0.84,1.46,1.15,1.43,-1.52,-1.59,0.33,-0.98,0.56,2.74,-1.36,-1.15,-2.07,-1.31,2.27,0.79,-0.4,3.91,-1.57 +C2466,3.48,-0.15,-0.71,-1.49,0.04,-0.13,1.11,-1.42,-0.05,-0.67,1.43,-0.3,-0.95,-1.53,0.36,-2.71,-0.35,-0.03,0.48,-2.2,3.05,0.53,0.82,-0.95,1.48,0.05,-0.4,-0.42,1.08,0.1,-0.02,0.68,2,-1.26,-0.43,-2.88,-1.41,0.41,-1.68,-0.2,1.23,-1.61,0.65,-2.68,0.04,2.51,0.25,0.04,-0.08,0.72 +C2467,5.48,-0.03,-0.57,-0.53,-3.14,-0.57,-0.79,2.06,1.1,-0.46,-0.82,-1.86,1.09,2.45,-1.31,0.26,-0.97,-1.65,-0.25,4.49,0.44,0.57,-0.86,0.74,1.95,3.79,-0.01,-0.89,-2.1,0.46,-1.16,0.38,-0.9,-3.43,-1.7,-0.87,0.21,-1.19,1.78,0.94,-1.51,3.28,-1.64,-2.92,2.23,-1.31,-1.94,0.43,1.54,-3.49 +C2468,0.99,4.28,4.43,4.28,-2.62,1.94,-0.61,-1.34,-0.47,2.47,-0.15,-0.74,0.72,1.85,-1.16,-1.61,1.35,-2.33,2.72,0.73,-0.7,0.56,-3.69,1.49,2.43,-0.09,2.7,-3.96,-2.56,-1.37,0.61,2.54,-0.36,-2.97,-0.61,-4.6,-1.56,-1.23,3.62,-1.63,1.66,0.6,0.62,-1.24,0.4,-0.28,-0.82,-0.42,1.39,-1.43 +C2469,2.83,7.77,5.82,5.33,2.01,1.27,-1.45,0.08,-2.41,0.63,-0.12,-1.23,0.02,-0.51,-0.07,1.84,-2.33,-2.64,1.27,1.44,1.25,-0.25,-0.02,1.22,-2.77,0.42,-0.58,-2.71,0.64,1.66,0.84,1.44,-1.56,-0.59,0.97,3.3,4.92,0.45,0.74,3.3,1.16,-1.72,-0.65,-1.5,-1,1.17,-0.84,0.66,0.82,2.82 +C2470,2.65,7.18,5.29,5.19,0.03,-1.43,-1.79,-0.2,-2.17,1.2,1.16,-3.1,1.06,-1.86,-2.15,0.52,0.32,4.72,4.5,-0.24,0.54,4.3,-1.56,-1.58,-0.25,0.05,-0.51,-0.62,2.66,0.77,-0.02,1.12,-0.47,0.59,2.36,-2.83,0.8,-1.05,-1.01,3.87,-0.02,-0.23,-2.25,3.25,0.61,2.01,2.01,-0.49,-2.79,1.42 +C2471,-14.06,-0.06,-0.94,0.08,0.77,-0.85,1.23,-1.54,-3.26,-2.31,0.38,0.96,-0.85,0.2,-0.31,-0.95,-0.9,-0.72,1.1,0.69,1.37,-0.02,1.38,0.76,1.38,-2.19,0.5,3.44,2.12,2.06,0.62,-0.9,-2.19,2.11,-1.76,-1.02,-3.14,-2.01,1.26,-0.98,-1.12,-1.58,3.35,0.42,-0.91,0.85,-0.99,0.62,-0.7,1.28 +C2472,-8.73,2.43,-2.9,-3.69,2.94,4.21,2.59,-0.58,0.49,1.56,-3.69,0.51,0.2,-0.27,0.29,-0.54,-1.47,1.59,-1.15,-2.41,1.53,-2.13,0.07,1.92,-2.44,2.15,-0.97,-2.34,-0.84,-0.36,-1.53,-0.58,-0.3,-3.43,-3.11,-0.3,-1.04,1.35,-2.48,-1.28,0.18,-0.6,-0.13,-2.8,-1.39,1.4,0.85,0.25,-0.1,0.62 +C2473,-11.58,2.46,-1.56,-3.04,3.19,1.48,0.27,-0.89,-1.62,3.41,-3.94,-3.23,0.34,-2.4,2.08,-3.06,2.9,0.12,2.28,1.72,-1.13,0.81,-0.35,0.41,-0.99,-1.8,-0.29,-3.58,-0.03,-0.19,-3.33,0.62,1.85,0.79,1.81,-1.51,0.87,-1.22,-1.44,0.55,1.09,1.36,2.37,0.35,1.26,0.56,-1.91,1.89,-0.01,-1.9 +C2474,2.56,7.08,4.13,3.84,1.44,-0.99,-0.08,-0.7,-0.35,-1.23,0,-0.59,-0.52,3.38,1.1,2.06,1.12,-1.94,-0.44,1.07,-0.2,-0.18,0.13,-1.32,0.3,-0.19,-2.59,0.55,-0.37,0.88,0.8,2.94,-0.64,-0.11,0.56,3.22,-1.35,-1.96,-0.28,-0.5,0.21,1.32,0.85,2.14,1.67,0.44,0.49,-0.97,1.22,0.43 +C2475,-15.39,-4.15,2.65,2.29,-3.9,-8.68,3.75,0.59,1.26,-1.71,-3.39,-1.18,0.82,1.84,-3.85,1.88,1.56,-1.62,-1.32,-2.54,-1.58,2.9,0.54,-0.75,0.45,-1.3,0.26,1.73,2.17,-1.5,-1.35,-1.39,-0.34,-0.75,0.6,-1.47,2.05,1.23,0.27,0.49,-1.7,-1.59,0.04,0.2,-1.06,1.45,2.7,0.29,-2.09,0.44 +C2476,4.96,-3.83,-0.46,0,-1.2,-0.73,-0.8,-4.9,-2.53,-0.35,-2.24,-2.59,-1.22,0.29,0.05,0.85,-1.94,-0.39,-0.89,1.12,-1.29,0.36,-0.79,-1.36,0.48,1.33,-0.44,-0.28,1.7,-2.72,0.58,1.31,1.11,2.26,1.01,-1.17,1.69,-1.77,-2.42,-2.41,-1.02,-1.14,-0.28,-1.34,0.4,-2.52,0.59,1.16,0.44,-1.12 +C2477,5.02,1.93,-1.06,-2.43,-1.42,-0.19,1.37,0.3,-0.47,0.44,-1.07,0.63,-1.41,-0.62,-1.53,-1.86,0.3,-1.21,-1.31,-1.39,-1.07,-0.1,-1.16,0.87,0.29,0.19,0.74,0.19,1.34,-0.8,-0.94,2.49,0.11,-0.22,0.16,0.3,-0.64,-1.7,-1.15,1.05,0.57,1.42,-0.52,-2.78,-1.77,0.07,-1.12,-1.07,1.65,1.05 +C2478,-7,2.57,0.07,-1.03,1.03,3.27,-2.57,-0.48,4.04,-0.09,-1.07,-1.02,0.49,0.18,-0.43,0.29,-1.25,2.63,1.06,-3.79,-1.02,0.85,-1.61,-1.42,-2.37,-1.25,-0.95,-0.56,-0.04,-0.47,0.9,1.88,-0.34,-2.71,1.17,0.95,0.55,0.6,1.49,0.88,0.32,1.07,4.41,-0.63,-0.79,-2.42,-1.48,0.02,0.53,1.89 +C2479,4.74,-6.46,0.6,0.69,0.19,1.78,-1.07,-6.08,-1.24,-2.51,-3.01,2.99,2.37,-3.04,0.59,-1.29,0.32,1.13,2.82,-0.47,-1.96,3.99,0.21,0.79,-0.41,-0.6,-0.89,0.02,2.24,-1.33,-2.89,-1.42,-1.44,-0.68,1.27,-1.95,3.52,-1.05,-2.55,3.09,0.68,-1.37,1.28,-0.43,0.24,0.41,-2.46,-0.13,1.81,4.18 +C2480,2.42,-11.67,2.12,3.32,5.01,-0.25,0.1,3.56,-0.23,2.55,-0.32,-0.63,0.53,-1.58,-1.78,0.44,0.13,-3.66,1.01,-1.47,-2.83,-0.44,5.46,-2,-0.04,-3.08,-1.42,-0.02,1.78,3.54,0.09,-1.15,-2.31,0.84,2.13,-3.78,0.41,-1.7,-1.72,-0.23,0.03,0.9,-4.77,-3.54,1.18,0.07,-2.36,2.2,-4.22,0.18 +C2481,6.02,0.62,-0.95,-2.04,-0.95,-1.05,1.12,0.74,0.25,-1.41,-0.86,2.45,-0.45,-0.46,0.47,-0.86,0.43,0.67,-1.09,0.55,-1.43,-0.24,-3.04,0.52,-1.13,1.58,-0.03,1.47,-0.36,-0.86,3.27,-0.57,1.22,0.4,1.34,-0.35,-3.02,1.12,2.52,0,2.3,0.16,0.5,-0.2,-0.97,-2.77,-0.99,-0.54,3.4,0.43 +C2482,3.09,4.5,3.62,3.64,0.08,-2,0.82,-0.41,-0.44,2.02,1.85,-1.04,0.82,-0.33,-0.56,0.27,0.18,0.44,2.84,-3.19,0.68,0.4,-0.15,-0.95,-1.46,-0.84,1.48,0.16,0.25,3.5,-1.72,-1.72,-1.71,-0.49,2.93,-1.78,1.4,0.67,-0.33,-2.31,-0.22,1.89,1.52,-2.14,-2.47,-0.33,-1.85,2.9,0.42,1.25 +C2483,3.59,-1.94,-0.14,-0.52,-5.04,0.04,-2.29,-0.7,-2.64,2.7,-0.33,-5.3,2.43,0.46,3.24,-2.28,1.33,-2.72,0.37,-0.35,-2.22,-3.19,3.51,1.98,-1.63,-1.48,-0.39,-0.28,-0.68,-2.12,0.25,-3.06,2.11,-3,-1.54,-1.15,-1.72,0.81,-1.47,1.64,2.18,0.28,1.01,-3.87,0.22,1.09,-0.65,0.87,1,3.11 +C2484,-10.62,-2.97,3.33,2.47,-3.18,-7.04,3.86,0.13,1.04,-0.39,0.2,-1.82,-0.73,4.59,-0.79,2.03,2,1.15,-0.53,2.59,1.65,1.13,-1.11,-0.99,-0.84,0.27,-2.31,-0.3,0.19,2.74,0.16,2.62,2.92,0.86,-0.12,1.25,1.01,-2.11,-1.08,1.37,2.33,-1.12,-0.6,0.26,-1.97,1.67,2.76,2.94,0.82,2.77 +C2485,5.43,1.45,-1.69,-2.79,2.24,-0.78,0.66,0,1.55,0.05,-0.23,1.11,-2.08,1.37,0.16,1.58,-0.04,-0.74,-0.97,0.54,-0.01,-0.92,-1.75,2.01,-0.67,-1.38,1.11,-2.21,0.13,0.54,-0.29,1.56,1.59,0.46,0,0.14,-1.49,0.3,1.37,-2.09,-1.09,1.27,-0.32,0.42,-1.05,1,-0.62,-1.85,1.84,-0.28 +C2486,1.99,-9.62,2.05,3.38,3.48,-2.23,1.02,2.09,-3.69,-6.4,2.87,3.73,1.38,-0.6,-0.79,-1.6,-2.15,3.61,0.62,0.57,0.73,5.16,-0.91,1.09,-1.95,2.86,-0.5,0.8,-1.63,-3.84,-2.16,0.9,3.76,-1.75,0.66,-5.15,-1.29,1.58,-4.66,1.8,-2.86,-0.48,1.62,0.75,1.92,-0.25,-2.24,0.53,0.38,-1.81 +C2487,3.89,-2.42,-1.7,-1.67,1.77,0.06,-1.13,-3.07,-0.91,0.67,-0.92,4.36,-1.85,-1.23,0.42,-1.25,-3.93,0.26,-3.08,-0.12,0.15,-1.88,-0.76,-0.82,-2.68,1.3,-3.13,-3.89,1.08,-0.32,0.04,-0.41,1.17,-1.29,4.01,-0.79,-0.27,-1.28,1.06,2.7,1.42,1.69,0.36,-0.69,-0.65,0.03,2.28,1.64,-0.76,-0.37 +C2488,4.75,1.15,-0.89,-1.96,-0.57,-0.83,0.12,0.49,1.65,-1.66,-1.44,-0.26,-0.92,2.12,-0.26,0.64,1.01,-0.47,0.49,-0.77,-0.24,0.41,-0.72,0.86,3.17,-0.68,-0.35,-0.62,1.05,2.14,1.87,-1.53,-0.99,0.95,-0.61,-0.67,-0.45,-0.04,-0.01,0.56,-0.89,0.58,0.08,-0.3,-1.39,1.52,1.71,0.47,-0.18,-1.16 +C2489,-8.7,4.5,-3.12,-3.14,3.33,0.66,-0.03,-0.77,-0.25,1.48,2.63,0.63,2.67,-2.96,1.2,-1.88,-0.7,0.83,-0.65,-1.35,0,-0.73,3.28,-1.14,1.21,1.88,-1.42,-1.66,0.61,-0.93,-0.37,-0.9,-1.4,-1.68,1.21,-2.33,-0.83,-0.83,-1,1.38,-2.84,1.22,-0.26,-1.32,-0.37,-0.72,3.14,-1.51,-1.96,0.76 +C2490,3.57,-2.07,-0.23,-1.7,-0.74,0.7,-1.03,-3.52,-0.53,-2.48,1.23,-0.8,-0.71,1.98,-0.32,-1.58,0.48,-2.51,-1.75,-0.09,1.06,2.28,1.95,5.25,-0.53,-1.13,-1.33,-1.17,-1.81,2.01,0.84,0.69,-0.12,-2.05,1.37,3.24,1.38,-1.6,1.56,-1.68,-2.06,1.13,-3.64,-0.47,1.87,-1.02,0.4,0.15,-0.04,-0.97 +C2491,-15.66,-1.12,1.37,-0.55,-1.34,-1.63,-0.18,-1.02,-1.01,-1.34,1.9,1.03,1.38,1.58,1.26,-2.31,-0.65,-3.46,0.79,-0.95,-0.3,0.6,2.35,1.32,0,-0.2,-1.59,-0.72,2.08,0.47,-0.22,-3.75,1.85,0,-0.9,1.01,-1.16,-1.35,-1.17,-2.03,2.38,1.41,0.97,0.02,-1.62,-1.01,-1.69,-1.21,-1.78,-1.04 +C2492,1.93,-2.36,0.25,-1.17,-5.26,-0.28,-1.77,0.25,-1.3,-0.72,1.72,1.82,1.12,1.02,-1.66,1.5,0.41,-0.22,-1.39,-2.56,-0.21,-0.8,-1.8,-0.55,1.69,1.59,1.32,-0.43,-1.54,-0.23,-1.94,0.74,-2.35,-0.47,-1.44,3.08,0.67,0.78,-1.31,-2.29,-0.72,1.21,1.22,0.76,-0.12,2.99,0.31,-1.16,-0.28,-1.11 +C2493,-11.48,1.52,0.21,-1.71,1,3.82,-2.44,-0.48,-2.57,-1.88,1.72,0.04,-1.17,-2.37,-0.69,-0.99,0.76,-1.23,1.89,1.6,0.91,0.19,-1.51,0.08,0.42,-0.09,-1.79,1.05,0.36,-2.03,0.59,-0.22,0.15,2.37,-0.43,-0.33,-1.17,0.54,0.78,0.26,-1.78,2.3,0.81,-2.59,-1.73,-0.03,-0.74,0.76,-1.77,-0.22 +C2494,6.6,6.07,-2.42,-3.82,4.6,-1.12,3.05,0.64,1.72,-0.16,0.11,0.68,0.34,-0.43,0.43,0.78,0.35,-0.67,-1.23,2.91,0.45,1.79,-1.76,-0.15,0.72,0.21,0.52,0.36,0.85,0.19,0.32,0.25,0.36,-1.01,-0.48,0.25,-0.08,-0.74,1.42,-0.48,0.79,0.96,-1.23,1.91,0.36,-2.16,0.18,0.89,0.32,-0.4 +C2495,5.63,1.5,-2.27,-2.86,-1.01,-1.05,0.08,1.05,1.3,-0.37,-1.86,-1.36,2.14,0.01,-0.09,1.44,0.43,0.85,-1.69,0.07,0.5,1,-0.81,0.16,1.35,-0.75,-1.06,0.6,0.7,0.3,-1.14,-1.21,1.69,-1.33,-0.23,1.94,0.67,-2.28,1.84,-1.58,-1.6,2.98,1.65,-0.25,2.46,-1.07,-1.19,-2.8,-1.11,1.62 +C2496,4.98,-5.23,0.24,0.12,2.02,-0.11,1.16,-1.98,0.34,-3.19,1.75,-1.7,0.05,3.17,-2.63,-1.67,0.08,0.46,-0.13,0.06,1.49,-0.2,0.54,0.94,-1.05,1.71,3.48,0.18,0.79,-2.36,2.3,-0.45,-3.05,-0.86,-0.05,-1.32,0.64,0.38,-0.47,0.13,0.16,1.39,3.79,-0.52,-0.58,1.46,-0.82,-0.35,-0.18,2.16 +C2497,-12.96,1.48,0.68,-0.9,0.69,0.15,-0.2,-1.36,0.12,-0.77,2.6,0.23,3.56,1.08,-0.59,-0.27,-1.26,-0.59,-1.54,-0.7,-0.18,-1.14,2.17,2.03,0.9,-1.07,-0.52,1.21,1.27,-0.29,-0.33,-0.13,3.97,-2.73,0.04,2.64,-2,1.03,-2.91,-1.7,1.26,-1.98,-0.27,-0.78,-0.57,-1.05,3.54,-2.01,0.75,-0.88 +C2498,5.08,1.38,-0.12,-1.39,3.5,-0.27,2.02,-0.85,1.82,-3.7,2.26,0.35,0.64,0.83,1.67,0.5,2.28,1.95,-0.05,-2.67,0.01,2.53,1.41,-0.82,-3.39,0.46,-0.59,-1.46,-0.89,-2.46,-0.06,-1.31,2.89,-2.41,1.72,2.52,0.83,0.91,0.25,2.37,-1.2,-0.17,1.12,1.37,-1.06,1.75,1.8,-0.14,-0.45,0.94 +C2499,4.47,0.57,-0.5,-1.44,-3.54,1.17,-0.55,1.38,0.31,3.21,-1.7,0.72,-1.44,-0.52,0.16,1.41,0.01,-1.37,-1.57,-0.16,-1.23,-3.98,-1.46,-1.41,1.87,1.62,-0.01,0.14,-1.9,1.72,0.2,0.51,1.59,1.94,0.72,0.34,-0.24,-0.02,-2.17,2.31,0.49,0.29,0.77,0.82,-0.48,0.38,-0.99,1,2.07,0.7 +C2500,4.69,9.14,4.53,3.58,3.8,-0.63,1.54,0.61,0.28,0.37,-2.05,0.17,2.57,1.38,1.49,1.03,-2.07,0.61,1.27,-0.02,-0.3,-1.45,0.7,-0.07,0.58,-2.39,-0.52,0.09,-0.87,0.76,1.27,-0.59,0.69,0.33,0.31,-0.93,0.14,0.05,1.07,1.33,0.67,-0.35,-1.71,-2.51,-0.56,-0.81,-0.52,-2.17,-0.51,0.53 +C2501,5.39,-3.61,-0.31,-0.52,0.77,-0.2,-0.35,-6.16,-0.45,0.95,-2.25,5.04,0,-0.46,-0.6,0.5,-1.67,1.14,-1.16,0.73,-1.3,1.13,0.99,2.62,-1.5,0.06,1.29,-1.63,-0.45,0.17,-0.38,0.38,-0.89,0.67,-0.14,-0.76,0.63,-1,-1.61,0.7,-1.05,-0.71,0.14,0.48,0.5,-0.84,1.9,-2.99,0.73,1.21 +C2502,2.67,5.5,5.8,5.37,-0.55,1.09,-0.42,-0.83,-0.26,0.1,-1.19,-1.17,2.31,3.85,1.11,3.37,0.67,-2.51,-1.8,2.98,0.01,-2.26,1.63,-0.65,-1.02,-3.54,-2.15,-0.38,-0.22,-2.61,-2.18,-0.29,-3.1,-0.7,-2.13,-0.25,2.78,-0.08,0.62,-2.52,-0.26,-0.82,1.52,-2.72,2.04,-1.4,1.86,-0.18,-0.85,-1.35 +C2503,3.69,-3.27,-0.72,-0.48,-1,0.14,-1.44,-5.88,-0.83,1.54,-0.11,3.18,-1.44,-0.74,-0.46,-4,-1.99,1.45,0.01,-1.24,-1.82,0.04,3.32,-1.2,-2.7,-1.84,0.46,1.42,0.2,-1.17,0.29,2.73,0.49,-1.27,3.54,-1.82,-0.59,-1.33,0.33,-0.64,-1.9,0.14,0.22,0.87,2.07,0.86,1.79,1.55,4.06,2 +C2504,2.97,8.28,5.04,6.33,2.15,0.58,-0.18,0.3,-1.09,1.2,0.72,-2.66,0.94,-1.37,-0.16,1.92,0.54,1.51,3.41,4.89,0.85,-1.18,-0.36,1.14,1.77,-0.48,1.43,2.02,1.29,-3.43,0.97,-2.94,-1.4,0.5,0.54,-5.21,1.23,-3.11,1.27,1.59,0.46,-1.64,-3.07,-0.07,-2.67,1.28,-0.71,-1.4,-1.22,1.3 +C2505,4.68,-1.36,-0.82,-0.67,0.78,-1.38,0.01,-4.13,0.7,-1.97,-3.4,3.13,-2.11,-0.14,-1.6,-0.88,1.09,-1.63,-0.95,0.76,1.27,-2.03,3.34,-1.68,-1.54,1.89,0.08,-0.24,3.43,0.67,2.03,-0.46,-1.87,-0.85,-1.91,-0.65,1.37,0.38,0.55,0.08,0.8,-2.61,-1.24,1.81,-0.91,0.02,0.19,1.64,1.74,1.6 +C2506,4.74,1.38,-2.02,-2.62,4.47,-0.05,2.24,-1.54,3.73,-1.7,0.75,-0.08,-1.16,-0.03,1.12,-0.17,0.08,-0.11,-0.46,0.15,2.35,0.61,1.62,-1.07,0.22,1.75,-0.01,-0.45,0.11,-0.87,0.13,-1.59,0.42,-1.11,-0.23,-0.3,-0.23,-1.25,-2.94,-2.68,0.54,0.94,1.31,2,1.76,0.68,0,1.35,-0.06,-4.21 +C2507,-14.25,0.77,-1.27,-1.13,1.04,-0.83,-2.6,2.14,-0.77,-4.12,-0.61,-0.71,0.39,2.11,1.06,-0.15,2.91,1.99,-2.29,-0.83,-0.15,-3.51,-0.78,-1.12,-4.93,2.24,2.06,0.74,1.3,-3.16,-1.89,-5.37,-4.58,-3.73,0,2.56,-1.37,-0.82,-4.88,-4.06,0.78,-1.65,-1.65,-0.74,-0.94,-2.61,2.55,-0.21,-2.26,-3.26 +C2508,4.23,-1.08,0.16,-1.51,-2.87,-0.19,-1.15,-0.5,-0.48,0.03,1.49,-0.66,-0.39,0.53,2.59,0.94,0.66,-3.07,0.61,0.54,3.32,-1.11,-2.41,-2.89,1,1.09,0.85,-1.61,0.3,0.87,1.88,0.99,-0.29,0.06,1.38,-0.65,1.26,2.3,-3.67,0.14,-0.67,-1.07,0.04,-0.49,-0.11,1.59,1.62,2.92,0.22,1.1 +C2509,2.61,-2.66,0.58,-1.08,-6.66,-1.44,-2.61,1.74,-3.83,0.06,1.79,0.82,1.98,-0.26,-1.69,2.18,-1.9,-0.2,0.89,0.04,1.06,0.11,0.97,1.03,-3.44,-0.52,0.31,0.24,2.03,2.37,0.51,-3.65,1.82,-1.59,0.31,3.35,1.99,1.67,-0.01,-1.54,0.74,0.33,0.72,-0.71,-1.31,0.05,0.96,0.02,-3.66,1.46 +C2510,3.51,5.97,3.1,2.99,2.16,-1.64,2.35,-0.27,1.5,1.55,-0.24,2.1,1.22,-2.89,-0.57,-0.04,-1.05,0.24,-1.95,-0.03,0.83,-0.13,-1.36,0.86,1.1,-1.94,-2.06,-1.95,-0.55,-0.5,-1.17,1.68,0.45,-2.07,-0.27,0.32,0.68,3.63,-2.02,1.67,0.54,-0.29,-2.41,-3.98,2.79,-1.92,-0.96,0.04,-0.71,-1.4 +C2511,-9.66,2.37,-1.51,-1.92,2.47,-0.65,2.91,-0.93,-0.59,2.62,0.39,-0.43,0.28,-0.91,1.76,-0.74,1.24,1.38,1.24,-0.31,2.26,-0.45,1.31,3.44,1.34,-1.75,0.58,0.12,3.55,-0.94,0.4,0.68,-2.17,-0.88,-0.58,1.86,0.52,0.73,-0.5,0.1,0.52,-0.99,0.3,0.18,0.11,-1.29,-1.12,0.23,-0.42,0.36 +C2512,3.43,-0.31,-0.16,-1.52,-0.93,1.73,0.89,-1.51,-0.27,0.35,-0.23,0.6,0.23,1.37,0.19,0.6,0.66,-0.51,2.75,-0.13,-0.22,0.18,3.13,0.32,-3.6,-0.68,0.61,-1.98,-1.52,-1.31,-0.05,0.77,-0.52,0.99,0.15,-0.33,0.89,0.75,-0.97,-0.49,-0.71,-0.75,0.11,-3.03,-0.22,-0.01,-0.44,0.86,0.91,-0.53 +C2513,2.54,-10.96,1.98,2.98,4.78,-1.67,0.08,0.69,-1.45,-2.46,1.87,1.04,-1.32,6.17,5.33,3.23,-0.64,-2.09,-0.98,-5.52,-1.02,-1.17,-1.31,-2.83,3.4,0.75,-1.62,0,1.86,-3.97,0.24,-2.39,2.26,1.15,-3.04,-0.93,-1.52,-0.16,0.42,-0.05,-2.73,2.31,0.81,0.02,1.95,-2.15,3.7,2.75,-2.7,1.56 +C2514,2.87,-1.5,-0.74,-1.72,-2.17,-0.8,0.45,-0.16,-1.38,-0.61,1.09,-1.27,0.25,-2.08,-0.27,-2.17,0.79,-1.03,1.34,-2.09,1.37,-2.91,-3.11,0.83,0.87,-2.02,-0.07,-3.52,3.82,-1.24,-0.88,-0.58,0.48,0.23,-0.32,2.23,-0.64,-3.4,-0.26,4.03,1.54,0.66,-0.35,-2.26,0.44,2.54,-2.61,4.68,-0.65,-0.83 +C2515,-7.62,2.28,-2.67,-2.79,2.71,-1.83,4.16,0.29,1.21,2.26,-0.55,1.29,0.6,-1.08,-0.2,-0.3,0.09,0.37,2.7,-1.01,-0.16,-1.03,0.38,0.76,1.49,0.31,-1.12,0.38,0.26,0.73,-1.03,-1.13,-1.75,1.7,-1.2,-1.3,1.11,0.92,2.49,-1.06,-2.04,-1.59,0.37,1.07,-2.45,-2.29,-2.62,3.06,-1.45,3.32 +C2516,5.01,0.31,-0.66,-2.64,0.01,-0.03,0.99,-0.57,0.94,-0.39,-0.05,0.17,0.07,0.18,0.54,-0.94,0.87,-0.09,0.13,1.01,0.34,-0.47,-1.51,3.32,-0.94,2.2,-2.17,-0.28,-1.7,-0.48,-1.21,1.63,0.73,-0.18,-1.71,0.81,-0.73,2.65,0.54,-1.09,-2.33,-2.9,-2.21,0.35,-0.37,-0.77,-2,-1.02,0.73,0.72 +C2517,4.81,1.25,-1.08,-1.61,-1.81,0.95,-0.39,3.05,0.88,-1.71,-1.95,0.16,0.26,-0.75,-0.69,1.19,1.05,0.1,0.59,-1.04,-0.09,-0.5,1.63,0.38,0.02,-0.14,1.45,1.6,0.2,-0.39,-0.5,1.87,1.72,0.56,2.21,0.25,1.95,1.11,-1.38,-1.86,0.1,1.32,-0.5,0.33,0.17,-0.14,0.95,0.15,1.99,2.81 +C2518,2.44,1.7,-1.81,2.13,-0.83,2.72,-3.5,3.01,6.97,-0.77,-4.86,-4.27,0.78,-0.92,0.7,1.26,1.63,2.46,-1.02,-2.1,-0.5,1.05,0.92,-2.04,-1.07,-3.89,-4.19,2.72,-3.64,-0.86,-1.67,3.15,-5.06,-1.88,-0.03,1.02,1.04,4.44,1.79,-2.61,-2.54,1.21,0.69,2.49,1.45,-0.9,-3.22,1.04,-0.94,0.41 +C2519,4.28,-7.3,0.71,1.47,9.51,-2.49,2.21,4.28,0.74,1.91,2.64,1.55,2.7,-4.4,-5.97,-0.92,-0.92,0.29,1.67,-0.45,-3.61,2.76,-0.28,0.32,-1.61,-0.57,0.95,-0.02,2.74,-0.83,0.5,-0.72,0.66,2.17,-0.7,-0.08,-2.65,-1.58,2.39,-1.41,0.86,-1.28,2.64,0.34,-1.76,-1.76,2.79,-0.21,-0.7,-1.3 +C2520,-11.83,0.59,-1.01,-2.7,1.37,0.42,-0.39,0.39,-0.89,-3.85,1.99,2.23,0.6,-0.41,0.1,1.96,-2.62,2.38,0.11,0.89,-0.4,0.62,1.45,-1.65,-2.41,-0.03,-1.3,0.23,-2.25,-1.07,0.9,-1.01,2.87,0.67,0.39,-0.15,-2.62,-0.42,-1.19,-0.98,1.04,0.26,-0.61,-0.22,-1.41,0.27,-2.98,-1.5,-0.4,1.89 +C2521,3.88,0.51,-1.77,-1.38,-1.52,-0.9,0.58,1.26,1.09,0.38,-1.41,0.03,0.84,0.58,0.36,0.8,0.63,-0.38,0.64,0.8,-0.02,0.76,0.69,-0.53,1.02,1.53,0.17,1.15,0.92,-0.85,1.05,0.06,1.38,1.38,0.06,0.79,-1.28,-3.37,0.67,-1.55,-2.24,0.03,0.67,0.01,-0.1,-0.45,1.29,-0.33,-0.83,0.99 +C2522,4.06,1.45,-1.72,-3.59,-1.12,-0.06,-0.18,0.81,-0.36,0.63,1.15,2.3,-0.62,-3.37,0.73,-0.44,0.15,-1.34,0.55,0.86,0.38,-1.61,0.63,2.65,-0.95,0.3,0.79,0.22,0.12,-0.5,1.74,1.36,1.41,1.01,0.75,0.73,-0.79,-0.41,1.51,-0.5,-4.1,-0.37,-0.97,-0.35,-1.95,0.4,-3.2,1.58,-1.56,-0.25 +C2523,-12.31,1.06,0.36,-1.74,1.67,-0.93,0.05,-1.27,0.03,-3.7,1.4,-0.2,2.28,0.99,-1.96,0.62,0.52,0.98,0.38,1.93,0.04,-0.9,-0.01,-1.01,-0.6,-0.81,1.16,0.72,-0.57,-4.18,2.82,-0.67,1.09,-2.69,1.1,0.16,0.12,-1.1,-0.47,-0.02,-0.97,-3.13,3.22,0.29,-1.51,-1.56,-0.88,-1.25,1.09,0.17 +C2524,3.32,-9.66,1.24,2.77,7.68,-0.3,1.12,3.14,-0.24,-0.37,0.2,1.29,-1.02,-1.14,0.74,-1.09,-4.14,-3.68,1.34,-1.26,-2.86,0.6,-0.57,-2.78,-1.04,-0.26,-2.19,0.52,1.41,-1.79,2.31,1.43,-0.81,0.04,0.52,-0.19,2.81,-1.15,-1.7,0.95,0.26,0.68,3.45,-1.09,-0.06,1.62,-2.11,-1.53,0.44,-0.48 +C2525,3.17,-5.12,1.07,0.43,5.74,-1.13,0.87,2.35,1.8,-0.02,0.47,-0.64,-1.42,-1,-0.09,-2.37,-1.93,-0.45,0.23,-1.17,2.77,2.62,0.32,0.96,-3.63,-0.44,3.68,-1.23,-1.01,-0.78,-0.1,0.2,0.04,-1.79,1.36,-0.52,0.81,2.25,0.45,0.41,0.14,2.93,0.37,0.66,1.69,-1.58,3.52,0.66,-2.32,2.18 +C2526,-14.05,-3.25,3.21,4.07,-5.77,-9.39,6.1,0.47,2.04,1.63,1.05,0.77,-1.8,1.34,-1.76,0.56,0.24,1,-3.69,6.13,3,1.67,0.67,-2.3,1.13,-0.06,0.92,-0.78,1.46,3.59,-1.02,-1.21,1.11,2.01,0.65,-0.52,1.98,0.46,2.64,-1.13,-0.45,2.8,1.4,0.09,-1.89,1.7,-2.4,0.1,1.01,-0.79 +C2527,3.52,7.9,4.51,3.78,2.06,0.75,0.91,-1.1,-1.44,0.46,2.96,-1.79,-0.78,3.02,1.73,1.02,-2.1,0.46,3.09,0.3,0.48,0.98,-2.33,2.26,2.48,0.53,-2.5,-0.6,-0.07,-2.38,0.83,2.17,2.51,0.43,-1.5,-1.73,1.35,0.91,0.7,1.87,-2.43,1.29,1.63,2.56,-2.06,0.45,2.34,-2.87,1.32,-3.42 +C2528,2.99,-0.27,-0.66,-2.18,-3.26,-0.45,-1.54,-0.2,-0.41,2.44,0.36,0.24,-0.5,-1.82,-0.29,1.46,0.24,0.58,0.1,0.74,-1,-0.59,0.21,2.95,0.71,-0.8,1.15,-0.32,-1.22,2.19,2.36,0.43,1.04,-0.67,-0.8,-2.13,-0.22,-0.09,1.68,-0.96,-0.84,-0.03,-0.54,-0.7,0.72,-1.43,2.36,-1.19,-0.11,-0.19 +C2529,-9.65,-2.08,6.15,5.05,-6.44,5.32,-10.21,0.56,7.58,0.31,-1.69,-0.29,0.05,-0.12,-1.34,-1.07,-0.6,-0.28,-3.83,2.9,2.92,-1.47,-1.07,0.88,1.02,2.97,1.23,-1.01,-0.54,0.34,0.97,-1.63,0.37,1.96,5.06,-0.29,-0.11,-1.7,2.06,0.96,-1.64,-0.33,-3.8,-2.37,-0.49,-1.68,0.37,0.1,-2.6,1.23 +C2530,5.8,0.74,0.18,-1.58,-3.65,-0.4,-1.23,1.86,-0.53,1.29,-1.74,1.18,-0.46,-0.84,-1.03,0.57,2.86,0.06,-1.62,-1.16,1.04,-0.11,1.34,-0.33,0.81,-2.14,-1.28,-3.85,-2.31,0.49,-0.47,0.06,4.28,0.39,-2.38,-0.16,-0.57,-0.67,-0.15,1,1.4,1.54,-0.92,0.37,1.35,0.13,-2.5,-0.7,-1.32,-0.23 +C2531,0.78,0.06,-1.97,4.64,-4.13,3.1,-2.78,4.75,5.08,-1.24,-3.11,1.04,1.02,0.35,1.86,0.1,2.14,0.67,-4.04,0.78,2.84,-1.48,0.34,4.3,-0.49,-0.88,3.84,2.3,-1.36,-3.23,-0.25,-0.15,1.56,0.33,6.09,-0.2,-1.77,0.26,5.08,-2.42,-1.25,0.79,0.02,0.63,3.31,-0.57,-3.51,-0.04,1.47,1.55 +C2532,3.3,-4.42,0.71,0.9,-0.31,-0.41,-0.66,-4.63,-1.78,0.11,-0.38,1.89,-0.48,-3.66,-3.37,-1.69,-0.07,1.59,-5.74,2,3.28,-0.82,-0.64,0.08,-2.6,-4.53,-1.43,1.87,-1.28,0.45,-1.41,1.79,-2.98,-1.04,2.27,-0.71,2.07,-1.4,-0.92,-0.67,0.5,3.36,3.07,-2.16,-0.13,0.05,-0.65,-0.8,-2.42,-2.98 +C2533,3.04,-1.89,-0.28,-1.54,-4.09,-0.12,-2.01,0.61,0.93,-1.51,-0.13,-0.79,-0.27,-1.37,-0.59,0.84,1.21,2.14,-0.27,-0.7,-2.68,-0.13,-0.55,-0.41,0.46,0.97,-2.25,-2.29,-2.17,1.5,-0.02,-0.54,-0.84,-1.74,-3.11,-1.36,0.22,-2.68,-4.28,1.32,-1.78,-2.85,4.18,-4.09,-0.65,0.37,-2.85,-0.52,0.7,1.72 +C2534,4.23,9.3,4.52,4.28,1.45,-0.53,-0.94,1.42,-2.44,-0.32,-1.47,0.79,0.39,-2.09,1.77,-1.18,-0.11,1.34,-2.32,0.99,-2.16,-1.95,0.68,2.92,-2.26,1.21,0.45,-1.2,-1.64,1.89,-0.69,4.18,-0.1,3.05,-2.42,2.4,0.56,-0.79,-0.99,3,0.3,-0.97,-0.1,0.46,-0.29,-2.9,-1.55,-2.69,-0.74,1.7 +C2535,4.77,1.11,-2.94,-2.01,0.07,-0.78,-0.49,-3.03,-0.33,0.78,0.16,0.17,1.37,-2.65,-1.77,1.72,2.14,1.47,0.97,0.12,0.87,-0.7,-1.94,2.43,-0.37,2.12,0.39,0.28,-0.92,-0.98,1.35,-1.2,2.37,-0.28,0.2,2.09,-1.12,0.78,2.57,-1.31,-0.65,-0.57,1.03,0.7,0.97,-1.74,-1.93,-1.08,0.5,0.36 +C2536,4.34,0.97,-1.91,-3.35,1.01,0.28,0.06,-0.23,0.38,0.32,-0.16,1.07,2.13,0.01,1.35,0.29,0.84,0.52,-0.51,-0.85,0.37,0.74,-1.03,1.14,0.45,1.46,1.01,-0.39,0.74,-1.02,-2.93,0.66,0.39,-0.79,-1.4,1.24,1.14,0.99,-0.02,0.36,-0.32,-1.36,1.6,0.42,1.79,0.05,-0.94,-0.42,-0.06,-0.58 +C2537,4.56,0.06,-0.98,-1.46,-2.45,-1.9,-0.09,3.37,-0.62,0.92,-1.1,0.03,-0.56,0.74,-1.07,-3.51,0.72,2.17,-2.12,-4.57,-0.46,1.85,0.83,-1.46,-1.36,-0.38,-1.13,-0.14,-0.35,0.71,0.39,1.08,0.38,0.37,-0.92,0.34,1.2,-2.07,0.86,0.1,1.24,0,-0.51,0.48,0.59,0.49,0.47,0.95,-1.55,3.7 +C2538,-13.64,-1.12,-11.72,14.59,-5.43,-6.95,0.95,0.56,1.91,1.76,-2.85,0.35,1.03,-1.55,-0.92,-5.5,-0.35,0.91,0.22,-1.87,-2.39,0.97,-2.45,-2.88,2.51,2.88,0.8,0.79,-2.12,0.11,-2.05,0.5,-0.43,-1.27,-0.84,-1.29,-0.36,-2.75,-2.73,2.18,0.48,3.22,3.01,0.39,-0.53,-0.3,4.1,3.15,2.81,0.38 +C2539,5.33,1.99,-0.93,-2.57,0.07,-0.62,0.32,0.75,0.2,-3.6,0.7,2.5,-0.46,0.06,1.44,-0.74,0.61,2.38,0.35,0.68,-0.26,-0.78,-1.01,1.04,-1.11,-0.2,-0.31,-1.69,-2.38,1.55,0.01,0.02,-0.99,-1.49,-0.07,1.22,-1.68,-0.42,-0.08,-0.03,-1.51,-0.99,-0.94,-0.19,0.03,-0.79,-1.77,-0.69,0.3,-0.8 +C2540,3.86,-4.82,1.75,1.04,-2.05,0.58,-2.02,-2.79,-0.28,-1.29,1.88,-6.65,1.76,-1.14,-1.73,1.29,-1.82,0.52,0.94,-0.21,1.2,-2.59,0.75,-1,0.17,-0.86,-2.45,-0.87,-2.94,1.33,1.42,0.58,-3.83,0.97,0.39,3.33,0.83,-1.71,-0.41,-2.04,-0.46,-1.04,-1.32,0.91,-0.75,-0.97,-0.23,1.04,-0.82,0.56 +C2541,-11.93,-0.52,-0.08,0.15,-1.58,-3.13,4.07,-0.17,0.74,1.93,1.1,-1.11,-4.53,-0.86,3.81,0.05,2,-4.89,-2.63,1.2,-2.18,3.33,1.75,-0.36,1.95,3.16,1,1.06,0.89,3.86,1.37,0.56,-1.42,-3.19,0.22,-1.93,-0.61,2.89,-0.7,0.38,1.42,0.65,-4.54,-1.69,-0.51,0.31,0.5,-0.34,-0.83,-1.8 +C2542,3.16,0.14,-1.73,-1.93,-1.52,0.4,-0.17,-0.13,-1.19,0.45,0.96,1.81,1.06,-1.09,-0.77,2.76,-0.58,1.27,-0.07,-0.01,1.64,2.12,0.32,1.95,-1.29,0.18,-3.15,-0.09,-1.41,2.64,-1.58,0.21,0.73,-0.47,3.25,-0.24,-2.7,0.67,-0.72,2.08,-0.76,-4.29,1.12,-0.31,-0.87,0.85,1.03,1.78,1.08,-1.95 +C2543,5.6,1.9,-1.55,-3.62,-0.39,-0.72,0.95,2.06,-0.3,-1.4,-3.31,0.65,1.15,1.32,-1.49,0.81,-0.71,0.43,0.35,-1.61,-1.58,1.44,-0.24,0.57,-0.86,-1.49,-1.15,-1.3,1.46,0.06,0.22,-2.44,-1.09,0.04,0.5,-1.5,-1.25,1.59,-1.25,-0.47,1.74,-0.75,0.49,-1.64,2.57,1.39,-1.73,0.67,0.68,0.82 +C2544,-13.39,-1.16,2.12,0.33,-3.47,-2.89,2.11,-0.83,0.45,0.35,-0.61,1.39,-1.1,0.75,1.45,2.71,0.78,-2.05,0.07,1.93,-0.57,2.59,3.66,-0.73,-1.55,-0.11,-1.24,-0.66,-2.69,0.75,0.24,0.09,1.4,1.32,1.04,0.86,1.29,-0.15,-2.26,0.34,0.73,-0.25,-0.22,-1.42,2.3,-1.02,0.06,1.79,0.4,-1.66 +C2545,5.4,-3.7,-1.34,-0.45,4.89,0.61,1.24,-4.12,2.15,-0.95,0.8,-1.32,-1.74,-2.13,0.75,-0.04,1.74,-1.39,0.91,1.2,0.7,-0.8,-0.24,0.74,-4.53,-2.9,-0.4,-1.42,-1.6,0.85,2.49,0.2,-1.55,-0.36,-0.77,-0.08,-0.1,0.86,0.79,0.68,-2.55,-0.97,1.8,1.54,-1.15,-2.65,-0.65,0.75,0.42,0.08 +C2546,2.73,8.1,4.02,4.19,1.84,1.21,-0.88,0.21,-1.51,0.78,-2,0.13,-2.13,0.05,0.11,-0.72,0.95,1.94,0.66,-0.31,-1.33,-0.8,1.12,1.28,-0.6,-0.83,-0.18,2.97,1.08,0.83,0.18,-0.61,-1.65,-0.03,-2.98,1.1,-0.14,-1.23,-1.28,-3.38,-1.74,-2.11,0.9,-0.07,2.34,1.5,2.34,0.01,-1.19,-0.43 +C2547,4.19,1.98,-1.28,-2.45,2.86,0.23,2.2,-2.6,1.85,-0.15,-1.01,1.09,-1.73,-2.06,-2.79,0.25,1.03,2.43,1.74,-2.24,-0.71,0.92,0.19,-0.39,1.25,1.05,-0.32,-2.65,-1.74,0.25,0.02,2.1,0.63,0.76,1.63,-3.13,-1,0.01,0.94,-0.82,0.85,2.55,-3.53,1.53,-0.15,0.69,0.88,-2.77,-1.06,0.17 +C2548,3.02,8.01,2.91,3.18,2.73,-1.17,0.85,0.96,0.93,0.1,-2.12,-0.53,2.42,-0.01,-0.18,-2.53,0.31,-0.77,-1.24,-0.82,0.52,0.77,0.55,0.35,-1.95,-0.22,0.83,-1.59,1.92,-1.77,-0.78,-2.57,-0.39,0.15,1.71,0.96,-0.56,0.52,-0.72,-1.74,0.45,-0.11,-1.63,0.07,0.13,0.36,0.09,-0.42,-0.72,-1.46 +C2549,-6.57,3.39,-2.64,-5.16,4.42,3.3,-0.04,-0.13,1.58,-0.05,-0.03,-1.46,0.56,-2.46,-0.37,0.11,-0.32,-0.65,-0.01,0.71,-0.69,0.71,-0.95,0.82,0.65,1.13,0.4,1.58,-0.13,0.25,1.08,2.44,-1,-0.55,-1.96,0.9,-0.53,0.64,1.57,-2.1,1.69,2.09,3.64,-0.24,0.14,0.57,-1.02,0.53,1.28,1.12 +C2550,-11.8,0.53,-1.16,-3.31,0.71,1.51,0.62,0.18,-5.62,-1.6,-0.74,-0.4,-1.2,-0.2,1.08,-2.39,0.34,-0.1,-4.77,0.3,-0.37,1.89,0.67,2.89,-0.27,0.71,1.08,0.35,0.26,1.71,-1.97,1,-0.75,-0.92,0.98,0.01,-2.38,-0.74,-0.1,-0.5,-1.8,-1.18,2.1,0.45,-3.12,-1.55,1.5,0.62,-1.13,-1.42 +C2551,-7.08,4.78,-3.9,-6,7.63,3.92,2.27,0.64,-1.63,0.25,1.82,-0.07,1.02,-0.32,1.28,0.33,-0.01,0.29,0.83,-0.37,-0.16,0.26,0.74,0.12,0.91,1.91,0.31,0.03,-1.43,0,-1.5,-1.07,-0.08,-0.76,-0.93,0.01,-0.95,-0.64,-0.83,0.25,0.77,1.44,2.14,2.07,0.56,-0.62,0.3,0.36,-2.58,1.25 +C2552,-14.47,-1.29,-0.86,0.16,-1.35,-4.05,2.68,0.54,-1.29,0.38,1.42,0.88,-0.51,2.83,-1.62,-0.19,-0.97,-0.27,-0.85,-1.13,0.58,-0.82,-1.37,-0.43,-0.46,-1.47,1.02,0.4,-2.56,1.02,-0.24,-2.03,0.96,1.35,0.11,0.98,-0.12,-1.47,-0.23,-2.82,-2.32,0.07,-0.93,-2.75,-0.92,0.75,0.42,-2.88,0.65,-0.02 +C2553,-9.93,-0.86,-1.03,-1.99,1.45,-2.3,2.15,-0.72,1,1.52,-0.17,-0.38,0.08,1.7,1.1,2.04,-0.43,-1.97,2.2,0.79,1.07,-0.48,-2.49,-0.06,-0.32,-1.8,-0.85,2.66,0.5,-2.09,0.6,1.72,1.33,1.35,-1.75,-3.57,-0.63,1.13,1.6,-1.95,1.21,-0.43,-1.74,-0.91,-1.61,-1.15,0.34,0.95,-0.49,-1.44 +C2554,3.4,-6.19,-0.25,0.08,-0.91,0.72,-1.96,-6.8,-0.57,0.01,-2.19,0.47,-1.71,1.74,0.02,0.69,-2.04,-1.63,-0.72,-1.35,-0.87,2.78,2.32,-2.47,0.97,-1.79,0.78,-0.68,-2.33,-0.58,-0.02,1.37,0.63,0.51,0.15,1.9,-0.42,0.52,-1.25,2.66,1.13,-3.02,0.94,-1.22,-0.51,1.66,-0.38,-1.02,0.68,-1.1 +C2555,4.04,-5.03,0.48,0.9,4.36,-0.82,0.58,-0.47,1.3,0.83,-0.66,-2.65,-2.81,-1.35,-1.15,-0.81,-0.01,0.27,-1.36,-0.92,1.58,0.66,-1.21,2.35,-2.85,2.41,-1.95,-2.39,0.33,-2.05,-0.82,0.72,-1.5,3.22,-1.41,-2.58,-1.5,0.16,-2.3,-3.02,2.25,1.61,-0.75,0.78,-0.53,-0.09,-0.33,1.49,0.86,0.78 +C2556,4.42,0.21,-1.19,-3.35,-2.85,-0.76,-1.12,0.54,-0.2,0.75,0.27,1.44,-0.69,-0.52,-1.32,-0.25,-0.22,-1.8,-0.08,-3.09,2.35,1.3,1.07,-1.14,-1.48,1.35,2.68,-1.36,-0.01,-0.31,0.68,-0.36,0.97,0.18,-1.4,-1.64,0.28,0.52,-1.08,-1.7,-0.26,1.02,-2.07,-1.66,-1.94,-1.17,0.05,-1.11,-0.7,-1 +C2557,5.07,-4.13,-0.34,-0.23,5.89,0.46,2.22,-2.54,0.74,-1.2,2.66,-1.49,0.42,1.08,-2.91,-0.04,-0.97,1.54,3.16,0.03,-0.33,1.46,1.19,-1.44,1.82,0.19,2.06,1.57,1.86,-2.84,2.58,-0.47,-0.39,-1.45,0.48,-0.85,0.09,-0.05,-1.14,0.6,0.18,1.93,-1.37,1.57,-2,-0.51,-1.13,1.01,0.26,-0.04 +C2558,5.16,-2.83,-1.3,-1.6,0.47,-0.19,0.77,-5.19,-0.26,-1.07,-3.23,-0.02,-0.57,2.24,0.56,3.06,0.73,-3.01,-1.21,-0.91,0.48,-1.32,2.97,2.45,-1.87,1.16,0.28,-1.89,-0.65,-2.34,-3.76,2.44,-0.21,1.2,-0.78,0.95,-2.03,-2.91,-0.19,-4.05,-0.07,-4.58,-1.74,-1.41,-1.27,3.36,-2.09,2.06,2.4,-2.94 +C2559,3.16,0.49,-0.89,-1.74,-0.75,0.17,0.95,-0.26,0.35,0.89,2.05,-1.69,-0.41,-2.14,2.94,1.3,-0.27,-0.35,0.62,-0.2,2.17,-0.66,1.07,-0.93,0.02,0.42,-1.77,0.59,-0.58,1.15,-2.77,0.21,-0.4,1.17,0.48,-0.38,-0.84,-0.76,1.36,0.79,0.39,1.23,-0.35,1.73,0.04,3.21,-1.99,0.42,0.37,1.81 +C2560,4.96,1.55,-1.2,-2.58,-1.25,-1.04,1.62,2.21,0.45,-0.89,0.88,0.5,-0.28,1.01,0.64,1.17,0.19,-1.51,-0.36,0.56,1.41,1.54,-0.86,-1.18,-2.19,-0.7,-0.49,0.07,0.86,-1.2,0.58,0.95,2.71,0.53,-2.55,-0.28,-0.8,1.24,0.01,1.67,-0.31,-0.76,-1.06,-0.05,0.87,0.49,-1.16,-1.26,0.55,-0.78 +C2561,-12.54,0.27,-0.45,-1.24,2.1,1.87,-0.18,0.78,-4.59,0.04,0.55,2.06,-2.51,-1.52,-3.27,-1.29,2.99,-1.22,-0.68,2.66,-1.3,-0.24,0.92,-0.66,-0.31,-0.38,0.88,-1.6,-0.75,-2.57,0.51,-1.93,-3.02,-0.56,-0.04,-0.91,-0.94,2.61,-2.17,-0.67,-1.37,-0.74,-0.98,-0.05,-0.57,-5.36,-2.06,0.02,-2.43,1.1 +C2562,4.06,-2.42,-0.29,0.3,-5.04,-1.3,-1.22,3.02,-2.74,-0.31,0.09,0.15,-1.45,-0.06,-2.43,2.59,-0.26,1.62,-0.2,0.31,-0.81,-0.05,2.23,0.68,-0.21,0.44,-2.05,-2.15,-0.4,0.63,1.63,0.88,-2.11,-1.26,-2.98,0.8,1.52,1.21,2.3,-1.55,2.29,1.4,-0.23,-2.8,0.67,0.74,0.37,1.78,2.18,-1.08 +C2563,5.56,-3.52,-0.81,0.71,2.82,-1.82,0.22,1.72,-0.34,1.41,-4.54,2.04,-0.13,-1.17,-4.3,3.54,-0.17,-3.97,1.84,-2.58,-3.38,-3.54,-2.72,-0.4,-3.3,1.57,2.4,-3.71,0.59,2.14,0.49,-7.45,-0.53,-0.24,-1.64,2.03,-3.67,3.46,3.16,3.11,0.51,-2.43,-0.39,2.07,-2.07,0.29,2.69,2.65,1.9,0.79 +C2564,3.02,8.34,5.3,4.38,1.86,-0.48,-0.94,-0.3,0.07,-1.29,0.78,-0.81,1.12,-0.93,1.05,-2.19,0.12,0.96,2.49,0.95,3.01,-0.26,0.49,0.09,-1.46,-1.84,2.42,0.45,-0.65,0.37,-1.53,-0.9,0.2,2.43,0.36,-0.27,-0.8,0.19,-1.21,3.12,-0.13,-2.05,0.61,-0.68,0.79,-0.54,0.01,-2.15,0.5,-1.16 +C2565,2.16,-1.99,-0.65,-0.68,-4.5,-1.45,-0.91,-0.03,-1.09,2.4,1.1,1.48,1.51,-1.6,2.68,-0.34,0.51,-0.04,2.21,-0.59,2.08,-0.89,0.49,0.03,-1.89,-2.93,2.58,-0.34,0.53,2.6,-1.29,-0.54,2.36,1.25,-1.73,-2.27,-0.71,1.63,-2.59,-0.16,-0.16,1.54,1.78,-1.03,-0.6,-0.16,-0.86,-0.95,-0.01,-1.09 +C2566,-8.81,0.92,-1.35,-3.7,3.16,3.15,-0.81,1.76,-4.31,1.54,1.22,2.39,1.05,-0.02,-2.16,-0.68,-2.44,1.88,-1.24,-2.95,2.59,2.56,-1.68,-2.87,0.73,0.5,-1.17,0.19,-1.74,-1.74,-0.67,-0.06,0.91,-2.49,-0.46,1.62,-2.04,-0.03,2.88,-0.1,-1.45,-0.85,0.03,2.32,-1.58,-0.09,-1.26,0.84,-1.12,-0.76 +C2567,-1.68,4.58,-35.85,23.7,3.55,1.55,1.01,-2.09,1.94,5.37,9.77,4.97,7.14,8.22,-1.15,-3.37,2.27,-3.21,-2.52,3.24,-0.01,-0.82,-0.5,0.09,-0.91,-0.71,-0.11,-0.98,1.5,0.87,-1.74,-0.69,0.88,1.98,2.04,-1.18,0.29,0.71,0.35,-0.02,0.69,0.25,0.73,-0.77,0.3,1.63,-1.48,2.28,-1.35,0.52 +C2568,-2.14,-9.48,12.96,14.83,-24.44,29.49,21.74,4.25,0.18,4.07,-0.58,4.62,-7.57,-0.46,1.17,-3.45,-1.17,-0.1,2.2,1.91,-1.74,-1.7,1.11,1.47,0.14,2.01,-0.53,-1.81,0.18,-1.55,0.27,1.91,2.82,-1.47,-0.41,3.05,-0.52,-0.44,1.47,2.47,-1.52,3.72,0.35,1.4,-0.56,-1.04,1.45,2.4,-1.29,-0.63 +C2569,-10.96,1.14,0.52,-0.9,0.51,2.83,-2.77,1.24,-0.76,-0.07,-1.88,-1.51,-1.84,0.29,1.35,-1.15,3.31,-0.39,-1.16,0.93,1.43,-1.27,-1.73,-0.7,-0.57,-0.67,-2.8,1.62,1,1.15,-1.9,0.26,0.09,-0.35,-1.2,-1.03,-0.28,-1.37,-2.26,0.49,3.59,1.15,-0.3,-0.97,-0.38,-1.65,-0.83,0.51,1.21,-0.47 +C2570,-10.72,-2.33,4.15,3.28,-3.16,4.24,-11.05,2.32,8.76,-1.25,1.94,0.23,0.08,-2.45,-3.1,1.37,-3.42,1.95,-2.84,-1.7,3.21,2.86,-1.72,2.82,2.61,0.62,-2.86,-0.75,1.24,-0.88,-1.46,-1.25,-0.83,-2.46,1.99,0.48,-0.46,0.84,4.85,-1.74,1.25,-3.46,1.07,0.79,3.8,1.02,-2.59,0.22,-3.6,-0.96 +C2571,3.4,0.6,-1.04,-1.38,-2.35,-1.28,-0.69,1.76,1.2,0.72,2.02,0.06,0.59,-0.32,-1.84,3.38,0.77,0.05,0.57,-0.54,0.89,-0.19,-0.05,-0.25,-1.42,-2.97,-2.42,-1.62,-1.64,0.47,-1.08,-0.13,0.41,3.02,-0.65,1.02,-0.17,-0.55,0.88,2.3,0.31,0.57,1.21,1.67,-2.81,-0.64,-0.2,-0.66,2.11,-1.57 +C2572,2.25,-13.14,3.36,4.48,4.75,-1.84,-2.07,2.03,-1.9,1.06,3.22,-1.38,0.97,-0.39,-0.13,-2.31,-0.3,-0.5,1.14,-0.84,-2.45,1.56,-2.24,-1.86,-0.15,2.66,-3.2,1.98,3.1,2.21,1.19,-0.96,0.5,1.01,0.73,-2.31,4.99,-0.71,0.92,-7.77,-0.82,-1.82,4.4,-2.48,3.18,0.43,-1.48,-1.3,0.04,2.81 +C2573,4.58,0.86,-1.33,-2.91,0.11,-0.85,1.04,2.51,-0.98,1.29,-0.21,0.76,0.72,0.25,0.69,1.45,0.11,1.27,0.01,-0.03,1.12,-0.65,0.31,-0.05,0.42,0.47,-1.59,-0.4,-1.55,-0.27,2.76,0,-0.77,-0.62,-0.53,1.5,1.46,-0.8,2.09,-0.55,0.39,1.56,0,-0.6,0.64,-1.66,-0.88,1.83,-0.21,-1.23 +C2574,4.8,4.37,-2.41,-4.11,2.66,-1.59,3.2,1.51,0.82,-0.72,1.78,0.81,-0.39,-0.19,-0.04,-0.04,-0.7,-0.34,-0.72,0.02,-0.4,0.1,-0.8,-1.4,1.31,0.89,-1.82,-2.91,1.96,-0.6,0.04,1.47,1.44,0.07,-3.33,-0.83,-0.5,0.6,0.04,-2.28,1.49,-2.25,1.45,1.09,-0.17,-1.69,-0.66,-0.28,-0.78,0.66 +C2575,4.62,1.82,-0.67,-2.67,-0.45,-0.08,1.04,2.09,1.01,0.17,-0.31,-2.47,-1.46,1.71,-1.25,-2.16,-2.65,-0.18,-3.62,0.62,1.98,-1.39,1.18,-0.79,-0.6,0.15,-1.67,1.59,-1.04,-2.01,-0.83,0.56,-0.29,0.88,-2.53,-2.48,-0.13,1.41,3.24,1.6,-1.74,-0.04,0.99,1.2,0.9,1.85,0.22,1.15,-0.48,0.8 +C2576,-10.38,0.27,-1.84,-3.61,1.64,2.31,-0.16,1.48,-1.77,-0.96,-1.14,-0.2,-1.17,1.3,0.97,-0.29,-0.74,2.85,1.85,1.29,-1.27,1.32,1.02,-0.08,-0.19,-0.45,0.08,0.12,-0.7,0.36,-0.64,-0.63,-0.46,-2.82,0.23,0.48,-0.98,-0.65,0.37,-0.48,-0.67,1.27,2.89,-0.12,1.76,1.4,2.04,0.85,-0.13,-0.47 +C2577,5.36,0.89,-2.73,-3.54,-1.42,-0.05,0.01,-0.33,-0.42,-0.06,-0.52,0.69,0.08,1.27,0.79,0.2,-0.55,-0.05,1.13,-0.99,-1.74,1.52,0.92,-1.6,0.07,0.1,-0.18,-0.34,0.19,1.75,0.3,-1.1,-1.28,-0.22,2.15,0.81,2.46,-0.39,1.05,0.7,0.35,-0.81,-0.4,-2.94,1.63,-1.05,-0.85,-1.25,1.71,1.27 +C2578,-14.18,-2.68,2.23,1.18,-2.72,-2.76,0.31,1.23,-1.05,-3.29,-0.86,3.92,0.44,3.53,1.09,0.46,0.64,-0.67,3.06,-0.4,-1.44,-0.55,-3.76,0.54,-1.69,-2.11,0.21,1.55,1.29,0.39,0.15,-2.08,-1.7,5.54,2.49,-0.24,-2.1,-0.05,-3.84,-0.51,1.77,-3.14,-0.32,1.44,1.83,1.16,-1.56,-1.45,-0.43,0.16 +C2579,2.86,-1.34,0.31,-1.16,-3.87,-0.89,-1.83,-0.19,-1.3,0.01,-0.67,1.08,0.03,-3.41,0.14,0.13,2.38,0.33,-0.84,0.86,0.26,1.42,-1.11,0.07,-0.95,-0.18,0.58,-0.3,-0.51,-1.03,-0.28,0.07,-3,0.96,2.1,0.22,0.01,1.23,0.16,1.36,-0.46,3.63,1.59,-2.51,-1.09,0.59,0.15,-1.7,-0.52,2.73 +C2580,4.33,-5.79,0.34,-0.33,-0.36,0.56,-1.12,-7.77,0.59,0.76,-1.78,3.28,0.98,-1.78,1.25,-2.61,-2.55,-0.56,-2.23,-1.12,-0.39,1.77,-0.61,0.47,-0.74,0.08,-2.94,2.32,-4.93,-0.19,2.73,2.38,3.97,-2.11,-0.66,1.71,0.25,-1,1.5,0.52,-1,-0.46,3.65,0.1,-0.1,3.16,1.73,0.83,-1.37,-2.17 +C2581,1.51,8.31,6.91,6.49,0.89,-0.06,-0.97,-0.74,-3.27,3.23,-0.28,-0.47,-0.68,1.1,-3.14,2.88,-1.17,0.17,-1.43,-1.46,-1.27,-2.16,-2.09,-3.63,-0.24,1.33,1.27,0.85,-0.05,0.59,0.65,2.99,-0.59,-2.06,2.34,-1.57,-2.17,-0.91,0.28,-1.03,0.05,0.19,0.7,0.65,-0.19,-0.31,-0.25,0.21,-0.22,-1.62 +C2582,-13.03,-0.15,2.49,-0.38,-1.89,-1.97,-0.08,-1.63,1.4,-1.8,-0.89,-0.12,0.2,0.03,3.64,1.6,-0.56,-4.38,-0.43,0.89,2.93,-1.89,1.24,1.46,-0.37,-2.49,-0.56,4.64,0.98,0.41,-2.17,3.37,-0.07,-2.12,-0.4,-0.09,2.24,1.87,-1.55,0.48,0.71,-0.42,-3.51,3.82,0.55,-2.36,2.42,-3.13,-1.25,-2.73 +C2583,-6.93,3.44,-3.08,-4.31,4.06,1.73,1.99,-0.54,-0.36,0.75,0.92,-0.05,-1.54,-1.47,1.4,1.57,-0.56,-0.63,-0.7,-1.33,0.22,-0.15,0.23,-0.53,0.07,0.42,-0.54,-0.09,-2.54,0.31,-0.22,-0.13,-0.19,-1.02,1.92,-1.46,-0.75,-1.08,-0.46,0.37,0.87,0.15,-1.15,0.86,-0.28,-0.79,0.87,-0.79,-0.54,-0.85 +C2584,2.81,-1.64,1.64,0.67,-5.03,0.15,-1.32,0.37,-1.28,0.96,2.05,1.34,-1.05,-1.65,-2.88,-0.93,3.97,-0.68,1.62,-0.33,1.39,-3.36,0.27,0.51,-0.35,-0.37,2.5,-0.03,-0.34,-2.85,0.04,3.76,2.57,1.62,-1.55,-4.16,-0.19,2.49,-1.65,-1.9,3.39,2.21,-2.72,-0.99,2.89,1.58,-1.35,-0.48,-2.5,-0.33 +C2585,0.5,3.59,4.83,4.57,-1.72,-1.51,0.54,-1.93,-2.25,-0.37,1.38,1.48,-0.85,-0.6,5.03,0.66,2.13,-1.86,-2.64,-1.26,0.66,3.81,-4.38,-1.61,0.22,4.32,-2.72,1.6,-0.7,0.85,0.13,0.49,-0.49,-0.4,-2.31,-2.58,0.28,1.08,1.78,0.83,2.86,3.83,2.96,3.2,0.92,-1.71,-0.1,-0.72,-0.12,-0.77 +C2586,2.93,-11.91,2.29,4.41,8.99,-0.74,0.64,2.54,-0.13,1.5,1.47,2.71,-2.36,0.25,2.47,0.08,-4.11,-1.21,3.11,-2.47,-2.11,-1.59,0.19,1.36,-0.91,2.62,-1.41,-3.14,1.52,-0.86,0.99,-1.15,2.39,1.07,3.75,-1.89,-1.32,-2.91,-1.38,-1.88,-3.02,-3.07,0.8,-0.83,-2.19,4.14,3.21,0.48,0.25,-1.55 +C2587,2.82,-0.63,-2.03,-2.81,0.08,0.1,-0.18,-1.92,-1.52,2.1,1.17,-1.19,1.06,-2.17,1.51,-1.57,-1.09,0.94,-1.48,-2.25,0.21,0.82,-1.65,-1.66,2.48,3.31,-2.07,0.94,-3,0.49,0.38,-0.89,0.56,-2.49,1.5,0.58,1.75,1.07,-0.87,-2.67,-0.35,0.02,0.92,-1.11,0.94,0.87,-1.07,1.25,1.71,-0.38 +C2588,3.07,8.16,3.98,4.59,1.77,-0.64,-0.1,-0.77,-0.91,0.6,-0.49,-1.68,0.77,-0.14,-0.52,0.93,-0.01,1.09,-0.12,-1.09,-3.21,0.36,0.76,1.47,3.17,-0.09,1.05,0.42,-2.36,2.99,1.04,0.29,0.54,-0.77,-1.39,2.36,1.01,-2.84,-0.31,-0.04,-2.51,0.79,-2.05,-1.08,-1.17,0.95,0.44,1.22,0.67,-1.46 +C2589,-14.07,-0.62,2.09,1.83,-2.56,-1.79,-1.43,-0.4,0.25,-3.59,1.07,1.95,4.46,-0.41,-0.19,2.12,2.08,-2.66,0.99,-1.19,-0.89,-0.17,-3.52,1.96,0.52,-3.46,0.46,0.25,0.62,0.67,-1.92,-1.23,1.12,-1.08,-1.14,0.48,1.41,0.47,2.5,2.29,1.48,2.52,0.43,-1.14,2.95,0.77,1.87,1.3,-0.95,-1.42 +C2590,5.36,2.07,-1.51,-1.72,2.84,0.38,0.51,-0.39,1.18,1.96,-0.1,1.73,0.38,-1.15,1.2,-0.67,0.53,-0.34,1.14,-0.3,-0.04,0.08,-0.87,-0.33,1.49,-1.05,-0.94,0.23,1.72,-0.06,-0.67,1.08,0.85,-1.05,1.29,-0.03,1.33,-2.13,0.02,1.06,-1.49,-0.41,-0.32,-0.27,-1.46,1.03,1.75,0,1.3,0.91 +C2591,3.76,7.21,4.52,5.1,1.45,0.11,0.26,-0.13,1.25,-0.9,-0.38,0.81,1.89,-1.29,0.54,-1.48,-0.03,-1.69,0.84,0.46,-2.36,-0.31,-1.41,0.49,1.73,-2.26,-1.55,0.08,0.43,1.12,1.64,-1.04,1.83,-1.64,-0.62,-1.19,-4.14,0.15,-1.16,-1.11,0.6,-2.75,-0.1,-1.03,1.84,1.48,2.41,-0.32,0.45,-1.54 +C2592,-9.06,-1.46,6.18,4.33,-6.77,2.47,-9.17,-0.78,11.12,-0.37,2.54,2.42,1.93,-1.73,-3.22,0.78,-1.73,0.76,-0.96,-2.51,3.57,-0.91,0.72,-3.06,0.27,2.04,-0.38,0.14,0.52,1.11,-1.57,0.1,2.29,-1.14,-1.02,-1.84,2.28,1.77,2.44,0,2.42,-2.49,0.97,0.45,-3,-1.2,1.33,-2.67,2.95,1.89 +C2593,-12.93,-2.22,0.98,-0.45,-0.88,1.11,-2.49,-0.63,-0.05,-1.83,-0.37,-1.24,-0.37,0.88,1.25,0.58,-0.56,-1.5,-1.67,0.07,-0.45,-3.07,1.29,2.04,2.01,0.24,1.7,-1.94,0.12,0.01,-0.5,0.78,0.97,2.08,-2.14,1.01,-1.59,1.11,1.16,1.02,0.77,1.23,0.52,1.62,2.1,0,3.03,1.87,1.53,-1.39 +C2594,3.21,4.92,4.55,3.87,-0.41,0.35,0.09,-0.59,0.16,0.93,-1.95,-1.12,-0.27,-0.67,-0.33,-1.68,2.84,1.83,-1.64,-1.41,1.02,-1.29,-2.75,-0.32,0.42,0.42,0.35,0.8,2.86,1.19,-1.94,-0.72,-0.08,1.53,0.11,1.46,-3.46,-2.86,-2.06,-2.07,-0.56,0.77,0.16,-0.57,-0.47,1.48,0.12,0.3,2.72,-1.59 +C2595,4.44,6.7,4.48,5.18,0.79,-1.55,-0.22,-0.31,-1.47,0.34,-0.61,-0.19,3.8,-1.93,-2.46,1,-0.95,-0.82,-1.55,-1.62,0.2,-2.2,1.28,3.56,0.09,-0.26,-0.71,-0.08,1.69,-1.4,-1.75,-0.92,-2.09,-0.59,0.94,1.57,-0.65,0.04,-0.03,0.92,3.39,1.25,2.56,0.38,0.86,1.74,-1.15,1.55,1.49,1.98 +C2596,3.74,-1.13,-0.29,-2,-3.66,-0.69,-0.9,1.02,-1.05,1.92,1.23,0.91,1.83,-3.12,0.12,2.34,2.08,0.45,-2.35,2,1.27,-0.42,1.93,0.13,0.09,2.43,-0.38,2.32,-1.59,-0.6,0.94,-0.13,-0.75,0.06,2.27,0.14,1.21,0.32,-0.26,-0.42,4.38,-2.66,1.23,0.43,3.11,-1.22,-2.22,0.94,4.79,0.79 +C2597,3.91,-2.02,-0.14,0.17,0.93,0.46,-0.92,-3.98,0.67,0.54,-2.37,1.1,1.1,1.59,3.01,-0.27,2.1,2.11,1.97,2.52,0.32,1.21,2.14,0.07,0.82,0.37,0.6,1.3,1.02,0.12,-1.3,1.16,-0.67,0.22,-0.12,1.96,-1.21,0.91,-3.67,-0.78,-1.41,-1.36,-0.35,0.15,-0.62,-0.09,1.49,-1.48,-0.36,1.22 +C2598,3.99,1,-1.85,-2.2,-2.39,-1.27,-0.35,2.57,-0.8,0.71,-1.47,0.02,0.7,-0.19,-0.04,-0.01,-0.27,-1.67,3.23,-1.93,-0.08,-0.85,-0.7,-1.49,0.34,-0.29,0.41,-2.43,-1.06,0.73,2.44,0.91,-0.47,-0.94,1.64,2.99,-0.26,1.69,-0.45,-1.3,-0.88,0.84,-0.42,-0.26,-0.55,1.07,-1.12,1.32,-0.93,1.24 +C2599,-7.93,0.96,-3.28,-3.09,2.43,2.33,0.06,0.7,-0.83,2.17,0.13,0.87,0.67,-0.26,0.56,0.89,-1.09,-0.08,2.58,-0.28,1.45,-0.63,0.51,-0.54,-0.06,-1.14,0.15,0.88,0.33,2.36,0.14,0.29,2.2,2.55,0.77,2.51,2.26,-3.28,1.39,-0.67,0.6,0,1.55,1.69,0.86,-1.68,1.72,-0.59,0.5,-0.22 +C2600,-13.22,-0.47,0.59,0.09,-0.51,-4.51,3.2,-0.98,-2.15,-0.3,-0.07,0.78,0.71,-0.88,-1.4,-0.93,-0.1,1.44,-0.41,0.22,0.46,2.29,0.15,-1.49,-2.48,1.63,-0.73,-2.82,-0.25,2.31,0.17,0.75,0.25,-1.3,-0.42,0.03,0.03,-0.42,-0.41,-0.56,-0.58,-0.01,-1.84,-0.68,-1.77,0.3,1.3,0.34,-1.78,3.69 +C2601,-13.75,0.86,-0.11,-0.38,0.42,0.84,-1.59,0.53,1.18,1.82,-2.25,0.98,2.59,2.38,-0.27,1.24,2.93,0.41,0.02,3,-0.5,0.46,-1.15,0.33,-2.78,-0.92,-2.68,1.89,2.07,0.47,-0.19,1.87,-3.44,-4.37,-1.74,0.27,1.87,-1.26,-1.03,-0.1,0.23,1.88,0.92,2.04,-1.98,0.24,-2.04,-2.39,0.86,-1.58 +C2602,3.4,-0.08,-1.1,-1.75,-2.61,-1.12,-0.71,-0.32,-2.55,-2.57,3.44,0.59,0.61,-1.2,-2.18,-0.07,-1,0.44,0.77,2.23,0.05,0.88,-0.82,0.37,-0.39,-2.37,0.41,-0.98,-1.25,2,0.17,-2.39,-0.27,-2,-0.16,0.03,-1.48,0.45,-0.53,-0.25,0.15,1.23,-1.83,-0.33,0.49,0.26,0.36,-0.69,-1.79,0.97 +C2603,5.28,-2.15,-0.58,-1.31,-1.63,-0.31,-0.04,-3.72,-1.62,-0.87,-1.66,-2.52,-1.86,-0.04,1.34,-0.44,4.68,-4.38,-3.19,-0.46,2.32,1.48,0.59,-2.21,0.26,-2.29,-1.07,0.97,-1.22,-1.84,0.3,0.02,-1.39,0.4,-0.97,0.43,-0.27,-1.05,2.35,-0.62,2.28,-0.03,-1.49,-1.69,-0.94,2.6,0,-1.54,2.66,-1.03 +C2604,5.12,3.47,-1.94,-2.9,2.66,-2.27,3.38,1.21,2.36,-1.48,2.22,2.03,-2.36,-2.82,0.46,0.38,2.63,1.52,-3.14,-1.59,4.5,1.82,0.03,1.72,2.78,-0.47,-0.72,-2.48,0.18,-1.11,-0.08,-1.28,-0.66,-1.27,-2.36,0.29,1,1.23,-1.37,1.73,-0.09,0.59,0.26,-0.28,0.21,0.19,0.83,-1.9,0.84,2.5 +C2605,4.39,0.02,-0.16,-2.25,-2.43,-0.18,-0.21,0.54,1,1.67,-0.34,-1.21,-1.31,-0.1,-0.44,-1.29,1.02,1.65,0.23,-0.71,0.55,0.29,-0.81,1.22,0.08,-1.32,2.36,-1.28,-0.68,0.97,0.65,1.3,-0.46,4.36,0.34,0.71,-1.96,-0.4,0.74,0.35,-1.56,-1.45,0.35,-2.36,-0.38,-1.37,-1.54,0.54,-0.58,-2.22 +C2606,4.29,0.83,-2.11,-1.3,-1.79,1.14,0.55,1.19,1.25,2.06,-0.32,0.64,1.49,2.36,1.2,-0.38,-2.1,0.57,0.5,-0.95,-0.97,0.96,-1.7,-1.01,0.45,-0.57,-1.63,-0.79,1.86,-1.56,-0.37,1.06,0.58,1.34,-0.42,-0.91,1.6,0.4,1.07,1.97,-1.58,-1.2,-1.43,1.68,-0.51,-2.14,-1.33,-0.96,0.52,1.53 +C2607,-12.64,1,1.46,-0.17,1.1,3.35,-3.36,0.45,1.66,-1.88,2.55,0.38,-0.07,0.7,0.67,1.36,1.22,-1.17,0.21,2.3,3.29,2.43,-2.28,-1.6,-2.04,1.07,-2.43,-1.81,0.17,-0.08,2.2,1.06,1.77,0.12,1.41,2.21,-0.63,-0.85,-0.28,-2.71,2.63,2.81,-0.81,-0.94,-0.64,0.27,-0.82,-2.69,2.41,2.94 +C2608,-5.64,2.24,-0.4,-0.45,2.43,-5.36,4.76,-0.39,2.15,0.87,2.74,-0.74,-0.85,0.02,2.34,-0.96,-0.64,0.23,1.28,-1,0.33,0.75,2.04,1.26,0.46,0.31,1.51,-0.94,1.83,1.7,2.7,-1.97,-2.2,-1.44,1.13,-1.47,0.12,-1.58,0.25,-2.17,1.22,0.52,1.12,-1.05,-1.77,-0.82,1.08,-0.09,-0.31,-0.57 +C2609,6.34,3.46,-3.56,-2.86,2.45,-1.01,2.27,0.76,1.5,0.6,-0.16,1.9,0.12,-0.86,1.17,0.81,0.13,-0.93,0.03,-0.71,1.26,-0.37,-0.88,-0.34,-0.55,0.79,1.38,1.11,-1.1,-0.79,-0.04,-1.66,0.92,-1.79,-2.37,0.67,0.56,1.78,0.3,-0.83,-0.59,2.17,-0.04,1.96,-2.2,0.1,-0.23,-0.51,1,-0.45 +C2610,4.71,0.54,-0.76,-2.09,-0.46,-0.2,-1.34,-0.55,0.87,1.2,0.24,-2.23,-1.19,-0.59,-0.6,0.58,0,-1.45,-1.07,0.73,-1.03,-1.01,-0.73,0.63,-0.25,0.07,-0.43,1.43,1.3,0.9,-0.48,2.03,0.97,-0.66,0.8,-0.03,-0.44,-1,0.93,-1.76,-1.68,-1.14,-0.82,-1.32,-0.48,-1.45,-3.05,-0.74,1.54,0.34 +C2611,3.68,-0.24,-1.17,-3.1,-3.1,-0.81,-0.12,1.84,-0.63,-1.87,0.73,2.04,-0.25,-0.35,-0.27,-3.23,-1.15,0.05,0.71,0.52,-2.63,-0.84,1.95,-1.87,-1.1,2.1,-1.56,1.06,-0.91,0.36,0.7,-1.21,0.44,2.17,1.42,-1.28,-0.01,-0.1,0.98,-0.43,0.75,2.16,-1,-0.96,-1.31,1.34,0.86,-3.21,2.07,1.25 +C2612,4.08,-1.12,-0.57,-0.75,-4.9,-0.59,-2.54,0.52,-1.97,-0.76,0.83,2.29,-0.29,-0.52,-1.6,0.19,-1.59,1.66,1.36,3.75,-1.25,0.47,2.28,1.01,1.01,1.6,-1.49,-0.93,2.93,-2.79,-1.18,0.82,-0.18,0.08,-0.8,0.92,-1.47,0.53,0.76,1.2,-1.35,1.86,1.11,-1.99,-1.64,-0.23,1.35,0.49,1.09,-0.08 +C2613,-9.3,2.54,-2.05,-4.11,3.63,3.45,0.41,0.03,-3.06,2.08,0.08,-0.48,-0.45,0.57,-1,0.5,0.22,0.95,0.32,-0.16,0.66,0.01,3,2.21,1.18,-0.64,-1.17,-1.13,-0.4,0.36,1.13,-2.79,0.24,0.36,1.46,-0.77,-0.06,-0.24,-0.86,-1.06,0.51,0.03,0.8,2.24,1.61,3.72,0.05,-1.53,-0.2,-0.38 +C2614,4.52,-1.07,-1.53,-3.1,-1.7,-0.14,-0.83,0.4,-0.99,-0.16,-1.39,-2.25,0.43,0.65,-0.91,-0.51,0.58,-0.62,1.9,-0.94,1.96,0.15,-1.6,1.89,1.16,-1.49,-0.74,-1.15,-3.48,1.41,0.7,3.39,2.93,1.24,0.36,-2.02,0.84,2.1,1.54,-1.56,0.25,-1.61,3.03,1.7,-1.29,-0.53,-0.17,0.95,1.34,1.81 +C2615,-7.17,2.11,0.83,0.03,1.16,2.31,-6.08,-1.28,6.35,-0.17,-0.15,0.03,2.04,-1.67,1.71,0.85,-0.24,-1,0.84,-0.49,0.56,1.49,-2.36,-0.42,3.29,-0.46,-2.8,1.91,2.91,0.37,0.11,-1.24,-1.51,0.73,2.29,-0.65,0.44,0.05,-2.61,1.26,0.33,-0.09,-1.58,0.13,1.96,1.77,0.63,-1.06,-1.24,-0.09 +C2616,6.14,1.37,-3.16,-2.52,2.12,-0.73,1.62,-0.59,1.56,-1.89,-0.5,-0.77,-1.45,-1.92,1.07,2.48,0.77,-1,-1.37,-0.93,1.21,-0.19,-0.08,0.07,0.19,1.75,0.1,0.22,0.93,1.87,0.46,-1.16,-1.67,1.82,0.09,-0.17,-0.14,1.93,-0.63,-3.39,0.48,0.13,-1.13,0.17,-0.74,2.12,-1.7,0.08,-1.25,1.52 +C2617,2.67,6.4,0.97,2.77,3.53,-1.27,1.81,0.24,-1,0.99,-1.19,-0.89,-0.14,0.03,0.77,0.41,1.15,-0.47,-1.38,-0.33,1.48,0.05,-2.68,-0.63,-0.61,0.81,-1.58,0.81,1.06,-2.5,-0.6,2.12,0.92,1.48,1.32,0.59,-1.03,-1.73,0.39,-2.42,1.65,-2.2,-1.06,-1.08,-2.3,0.96,-3.57,-0.77,-2.62,-0.11 +C2618,-9.92,2.95,-1.36,-3.09,4.3,3.13,-1.3,-0.46,-3.26,-0.15,0.95,0.98,-0.52,-2.82,-1.26,0.62,0.96,0.31,0.41,-2.28,-0.44,-0.91,-0.69,-0.4,2.97,0.02,-1.02,0.71,1.13,-0.12,-1.4,0.43,-2.75,-0.28,1.16,-0.12,-0.45,0.04,-2.47,0.92,-0.03,0.82,1.53,-1.32,2.35,-0.05,-2.11,0.13,-0.75,0.61 +C2619,3.21,-1.62,-0.42,-2.11,-2.3,0.11,-0.82,-0.61,-0.06,1.14,0.04,-0.37,-0.87,-0.93,-0.52,-0.49,2.12,0.36,0.84,0.26,2.61,0.18,0.83,-0.26,-3.68,-0.83,1.6,0.91,-0.27,1.06,-1.65,-0.88,2.64,2.13,-1.75,-2.06,-0.71,-0.32,-1.38,1.54,0.73,-1.87,-0.92,-1.35,2.01,0.52,1.57,-0.9,-0.84,-0.06 +C2620,-12.15,1.45,0.07,-2.1,1.24,1.51,-0.29,-0.55,3.81,-0.39,0.91,0.32,1.31,0.04,1.71,2.87,-0.5,1.34,-0.63,-0.31,0.08,-3.13,1.47,-1.4,-0.8,0.77,1.19,1.29,3.59,0.52,-0.12,0.93,0.54,-3.81,-2.55,-1.24,1.29,-1.64,-2.14,0.92,-0.18,0.8,0.48,1.38,2.23,0.62,-0.94,0.62,-0.55,3.35 +C2621,5.93,1.73,-1.34,-2.67,-0.04,-1.02,0.77,1.41,1.18,-0.25,-1.04,-1.6,0.99,-0.61,-1.11,-0.47,-2.61,-1.07,-1.35,1.41,1.6,0.14,-0.51,3.79,-3.5,-2.36,-1.86,-0.19,-0.24,-0.1,-0.03,-0.49,-1.66,-1.29,-1.24,2.19,-0.14,0.27,-0.36,0.92,-0.97,0.34,2.02,2.82,0.6,-0.05,-2.07,-1.47,1.89,-2.51 +C2622,-9.55,1.53,-0.56,-3.28,2.57,2.34,0.42,0.3,1.68,-0.91,1.99,-0.96,0.43,-1.26,-0.45,-3.65,0.36,3.59,-0.29,2.68,0.28,0.28,3.48,0.28,0.71,0.04,-0.07,0.84,0.34,1.98,0.44,-0.16,-2.81,-2.43,0.69,-0.7,0.26,2.07,-0.04,0.34,0.54,-1.28,0.12,0.9,0.19,1.6,0.31,-0.88,0.18,-2.5 +C2623,2.72,4.11,4.8,6.82,-1.46,1.57,-0.75,-0.54,0.07,2.05,0.39,0.62,-0.97,2.21,-0.53,1.88,3.36,0.97,2.16,-2.78,-2.02,1.42,0.02,-1.26,-0.91,0.2,1.09,1.39,0.36,-0.58,-1.51,-3.36,0.7,-0.79,2.59,-0.93,-1.65,0.07,-0.69,-0.7,-2.24,2.25,0.68,0.53,-0.35,-2.63,-0.39,2.09,-0.04,-2.89 +C2624,6.48,-8.17,0.58,2.64,9.34,-0.8,0.28,4.89,-0.55,-1.59,-2.67,4.95,1.15,-2.03,3.98,-1.91,0.46,-2.81,0.31,2.39,4.6,1.53,3.85,3.21,3.34,2.8,2.99,2.87,0.11,-0.13,-1.08,-4.63,0.79,-0.09,-3.48,6.97,4.84,3.39,-5.36,3.42,0.22,1.65,5.18,-5.02,-4.16,-0.88,-3.63,0.22,-0.32,-3.35 +C2625,4.36,-5.72,0.62,0.31,4.33,0.07,0.88,-1.57,1.92,-3.02,1.41,-3.08,-1.62,-1.76,-3.08,-2.91,3.76,0.96,1.32,-1.37,2.93,-1.95,-1.25,1.15,-3.87,3.6,2.42,1.71,-0.27,-0.95,-4.21,2.85,0.39,2.13,-2.28,0.09,0.36,2.53,-1.78,1.69,-0.81,1.71,0.52,-3.11,-0.05,-3.34,-3.61,-5.47,1.55,1.4 +C2626,-10.38,1.58,-1.54,-3.32,2.48,1.4,1.12,-0.43,-1.67,-5.01,-2.28,-1.82,-0.03,1.72,0.86,-2.46,1.83,0.57,-1.51,2,-1.61,0.34,-0.29,-0.55,1.85,-2.14,1.78,0.73,-1.39,-3.53,-2.38,-2.26,2.83,-3.31,1.61,-2.6,-0.58,-0.84,2.98,0.37,0.69,2.38,-0.33,-1.62,1.23,-2.14,0.14,2.38,0.63,-0.16 +C2627,4.45,3.7,-2.03,-1.26,3.67,1.28,1.86,-1.5,2.25,0.92,1.97,-1.2,-1.44,0.41,2.27,0.87,1.2,1.46,0.45,2.35,0.74,0.96,-1.51,-0.54,0.86,-0.12,-1.28,-0.15,3.35,1.48,-0.55,-0.25,0.53,1.4,-0.99,0.35,1.82,-1.28,0.15,-0.72,0.57,0.98,1.58,-1.79,0.14,-0.58,-2.26,0.53,0.92,2.83 +C2628,2.29,-10.63,1.68,4.51,5.2,1.18,-0.54,4.71,-0.1,1.91,5.42,0.15,-0.2,-5.26,-0.72,5.75,-1.2,0.22,-4.6,-1.93,1.94,0.43,2.64,-1.87,-2.38,3.31,1.98,2.82,-0.85,-4.77,0.7,4.14,1.29,-4.35,2.29,-1.15,-2.93,-1.78,3.6,2.06,3.94,-7.74,3.12,0.69,2.96,-7.91,1.1,-0.8,1.22,-1.72 +C2629,-12.4,0.34,1.53,0.09,0.46,1.42,-0.13,1.69,-0.54,-0.91,1.06,-0.99,2.23,0.65,-2.35,2.23,0.57,0.04,2.85,-2.71,0.22,1.5,0.2,-0.46,-0.77,-2.16,1.4,-0.93,2.18,-0.76,1.06,-0.28,-0.03,3.44,1.37,0.4,2.92,0.07,1.97,1.13,-1.33,-1.42,1.24,0.43,2.12,-4.09,0.95,-1.42,3.92,-4.22 +C2630,5.85,3.39,-1.46,-2.9,-0.84,-0.4,0.21,1.48,1.31,-0.39,-1.24,-0.74,-1.13,3.13,-2.13,2.06,-0.31,-0.69,0.34,-0.27,-0.72,-1.33,0.28,0.23,1.37,1.19,0.05,-1.59,-2.93,1.21,2.24,1.27,-0.07,0.55,1.77,0.76,0.8,2.6,0.76,-2.59,-0.47,-1.76,-0.5,-0.05,-0.69,-0.09,1.12,-0.04,-1.29,1.11 +C2631,-11.45,-0.35,1.76,0.81,-0.92,-7.42,3.98,-1.16,1.83,0.03,-2.29,-2.87,-0.14,-3.04,4.53,1.42,4.15,3.3,-3.18,1.56,2.5,-0.79,-0.64,-5.56,-1.11,-2.52,-2.75,-0.96,-0.01,-2.71,3.42,2.07,2.06,-1.88,1.23,2.96,-0.62,2.78,-3.46,-2.48,-0.93,1.53,4.73,2.09,-0.62,2.32,-3.66,1.48,-0.62,-0.05 +C2632,3.97,-0.05,-1.57,-1.44,-2.28,0.07,-0.77,-1.38,-0.2,2.16,1.73,-0.8,2.67,-2.83,0.29,2.47,1.32,0.41,2.14,0.65,-0.54,0.69,-1.8,-0.98,-2.56,-0.91,-0.71,2.2,-0.66,0.4,2.14,0.71,-0.14,-1.89,1.53,-1.24,2.48,-1.14,1.88,1.11,1.02,0.27,-1.14,-1.64,0.21,-1.2,-1.56,0.79,-0.55,0.85 +C2633,2.89,-0.52,0.37,-0.99,-1.18,-1.03,-0.22,-1.43,-1.48,-3.71,-0.33,-1.09,-0.59,3.01,1.97,3.3,-1.37,0.86,1.52,0.34,-3.44,-1.77,1.38,3.18,-1.42,1.73,1.78,2.18,2.41,-3.77,0.88,0.76,3.3,-1.25,-2.09,-2.46,2.02,-2.09,1.69,2.33,2.2,1.29,0.11,1.02,0.55,-1.66,-1.28,-0.68,-0.7,1.31 +C2634,-6.12,0.32,0.63,-0.56,-1.07,-4.26,5.13,-0.27,0.71,-1.35,-0.23,1.02,0.52,0.01,-1.59,-0.47,-0.8,-0.47,0.9,0.13,-0.42,0.17,1.78,2.96,-0.43,3.13,-0.07,1.82,2.02,0.28,1.5,0.65,-0.49,-1.71,-1.41,1.59,2.22,-0.14,1.83,-1.66,0.12,-4.49,-2.9,-2.1,-1.88,0.8,1.39,2.07,0.56,0.4 +C2635,5.2,1.85,-1.92,-2.82,-1.35,-0.81,0.5,0.06,0.15,1.08,-1.04,1.34,0.2,-2.31,-0.59,-0.74,1.96,-1.39,2.87,0.21,0.9,0.82,0.51,-0.14,0.09,0.84,0.15,-0.76,1.3,0.58,1.29,1.39,-0.47,1.43,0.27,0.07,-0.97,-1.24,-1.44,-1.28,-1.86,1.05,0.22,-0.44,0.49,-0.25,-0.85,-2.2,-0.31,1.59 +C2636,-10.92,1.44,-3.17,-3.8,3.68,3.27,0.08,-0.95,-3.5,2.2,-0.05,-1.86,-0.13,-0.16,0.65,1.32,0.34,0.86,-0.53,-0.32,1.47,-0.24,-1.12,-2.12,2.41,-0.36,2.21,-0.69,1.46,1.38,0.15,-2,-1.05,-0.24,1.18,1.37,1.87,1.02,-0.61,-0.72,-1.52,1.66,2.89,-2.32,-2.69,-0.43,2.8,0.76,-3.16,0.67 +C2637,4.33,0.86,-0.41,-1.62,-1.79,-0.19,-0.01,-0.06,0.28,-0.73,-1.58,0.23,1.81,1.58,-2.02,1.35,-1.84,2.81,1.13,0.67,0.42,-0.37,-0.17,2.57,-0.54,-2.37,-0.68,1.13,-0.42,0.17,-1.32,2.79,-0.01,1.22,1.67,2.36,-0.19,-0.36,-0.44,-2.72,-1,1.19,0.7,2.69,-0.15,0.82,-0.72,0.17,1.5,-0.32 +C2638,4.1,-7.58,1.1,2.38,1.92,-0.7,0.91,-2.89,2.9,1.67,-0.04,-2.25,1.11,0.6,-3.41,1.67,0.77,-0.22,1.1,1.18,0.48,0.07,-0.72,0.21,0.34,2.48,-2.23,-1.95,-2.69,5.61,-0.72,1.9,-4.04,-1.81,-0.13,0.84,0.35,-1.28,-1.36,-1.29,1.16,0.92,0.87,0.73,-0.75,-4.98,3.1,0.23,-5.72,-1.2 +C2639,4.65,-7.13,0.84,0.14,2.22,-0.08,-1.68,0.78,0.93,0.12,1.05,-2.68,-2.3,0.98,2.1,-3.2,1.94,0.28,0.65,-0.34,-3.05,-0.21,1.82,-1.88,0.95,0.46,-3.72,1.59,0.52,2.54,2.4,-1.82,-0.54,0.87,-0.56,-3.67,-1,-0.43,0.01,4.08,-0.51,-2.07,1.72,1.94,-5.05,-1.05,1.14,-3.63,-2.46,-1.8 +C2640,5.55,1,-1.91,-1.89,-2.2,-0.91,-0.79,2.35,0.21,-1.03,-1.26,0.98,-0.61,0.08,-1.28,3,1.96,-1.45,0.2,-0.72,-0.49,-2.01,-1.55,1.38,1.82,0.79,-1.81,0.11,1.7,1.08,-0.32,1.64,-0.56,0.38,3.67,-2.11,-1.41,2.11,0.75,2.35,0.58,-0.46,2.01,-0.79,0.29,3.21,1.39,1.56,1.99,-2.61 +C2641,-16.29,-0.43,2.24,1.36,-1.97,-1.54,-0.79,-0.52,1.49,0.99,-2.04,0.38,1.11,1.77,1.31,-3.53,0.19,3.09,2.74,-2.15,-2.39,-0.46,2.17,-0.19,0.54,0.7,1.1,-1.73,-0.42,-0.59,-0.45,-0.95,-1.05,-3.01,2.72,0.67,0.79,-3.26,-3.27,3,0.74,2.34,-1.72,-1.16,-0.76,-3.04,0.14,3.5,0.62,0.65 +C2642,4.61,0.49,-1.58,-2.54,-2.28,0.41,-1.1,0.46,0.29,0.99,-1.97,0.85,-0.79,0.64,0.03,0.05,1.61,-1.41,-0.19,0.25,-0.04,-1.19,-0.65,-2,-1.21,-0.46,1.86,1.14,-1.02,1.24,-0.34,-2.09,0.19,2.19,1.13,-0.7,-0.58,-0.71,-0.5,-0.58,0.88,0.64,-2.26,-1.35,2.05,0.11,-1.98,-2.05,-2.85,1.04 +C2643,2.67,-1.35,-0.22,-1.92,-4.03,-1.4,-1.28,0.71,-0.5,2.31,1.13,-1.95,3.39,-2.24,1.41,-1.85,1.33,-0.68,2.41,-1.02,1.37,-0.22,-2.74,2.05,-3.03,-2.99,0.91,-0.24,-2.26,0.92,-0.36,-0.29,-1.47,-3.22,-1.22,-0.45,0.34,1.16,0.29,0.14,-1.66,-0.12,-1.52,-0.68,0.42,0.72,-1.63,3.02,-0.56,-0.68 +C2644,3.64,-1.85,-0.13,-0.83,-5.32,0.08,-1.66,1.98,-0.22,1.36,0.8,-1.94,0.32,0.29,1.15,1.76,1.03,1.79,0.66,-0.07,-0.53,0.38,-0.77,-1.39,0.8,-1.37,-0.53,-1.11,0.18,-0.16,0.17,0.47,0.13,3.05,0.6,0.55,-0.31,-0.15,-1.16,-0.63,-1.02,0.47,-0.34,1.99,-0.92,2.18,-0.66,-1.67,0.43,-1.89 +C2645,-9.98,0.94,-1.19,-2.1,0.7,2.72,-1.09,1.2,-0.91,0.81,-1.1,-0.04,-0.44,-2,0.04,2.6,-0.29,-0.59,0.73,0.24,-2.02,0.15,1.87,-3.02,1.32,-0.42,0,0.91,0.47,0.72,-1.27,4.23,-0.5,3.62,4.54,-0.07,-0.73,1.28,-1.07,-2.05,0.81,-0.96,-1.31,0.75,-0.1,-3.54,-1.22,-0.41,1.04,1.31 +C2646,2.61,-11.87,2.58,4.11,5.28,-1.37,0.21,2.02,-1.57,-0.07,1.35,1.64,2.07,4.19,-1.84,3.12,-2.92,-1.53,0.67,1.98,1.95,-0.26,-2.23,1.08,0.19,0.46,-2.44,-1.97,1.07,-1.77,2.75,0.09,-0.23,0.21,-1.33,1.58,1.63,3.8,1.99,-0.21,-0.29,0.77,1.55,-3.98,0.29,0.03,2.51,0.51,-1.9,-1.87 +C2647,-13.31,0.66,0.51,1.74,-0.5,-1.59,-0.31,0.13,2.58,-2.96,0.26,0.05,3.29,-0.2,0.92,2.53,-2.24,-1.52,1.63,2.1,1.47,-1.41,0.52,0.53,3.44,-0.46,3.38,5.11,1.17,4.79,-0.53,-1.68,-0.4,2.29,-0.91,-4.18,-0.9,-1.09,2.03,0.33,-3.2,-3.94,-0.82,-1.26,2.1,-3.84,-0.73,3.97,-0.3,-0.11 +C2648,3.73,-0.54,-0.65,-1.65,-2.71,-0.78,-0.65,0.83,0.25,2.88,1.13,-0.96,0.76,-0.24,0.16,1.17,-1.05,0.98,-2.63,-1.58,0.05,-2.8,-2.04,4.22,1.11,1.07,-2.03,-0.75,-1.3,0.94,-0.21,2.93,-0.01,-3.31,0.41,-0.51,-3,1.05,0.01,-2.12,-0.07,-1.97,-0.97,-2.18,-2.94,0.09,0.1,-0.14,1.9,-2.48 +C2649,3.04,6.32,5.91,5.39,-0.58,0.95,-0.39,-2.08,0.93,2.42,-0.96,-0.45,-3.02,1.49,-1.16,-4.15,0.27,-1.61,1.79,3.89,-1.16,1.9,-2.53,-2.82,6.05,2.54,3.97,2.78,1.94,3.62,0.53,1.35,-1.08,-2.67,-0.99,4.29,-0.36,-0.12,1.28,-3.4,1.37,0.62,-2.51,-2.38,-1.48,-3.03,0.64,-4.24,-0.13,4.31 +C2650,3.92,-2.67,0.03,-0.53,-5.46,-1.31,-2.2,0.56,-3.52,-1.22,2.78,-0.61,-0.85,-0.36,0.68,-1.04,-1.03,-0.32,0.71,-0.83,2.58,-3.87,-3.25,-1.9,-0.86,2.77,2.8,1.54,0.67,0.07,0.19,-1.58,-3.02,-1.45,-2.47,-1.32,-1.97,1.86,-1.37,-0.89,-0.31,-5.8,-1.71,0.72,-4.67,0.25,-1.43,-0.53,-1.38,-1.24 +C2651,1.72,-16.57,4.33,5.83,7.36,-0.19,-3.1,7.1,-1.54,2.7,-1.78,1.34,-0.83,1.99,-0.74,0.74,-7.77,1.15,2.53,6,5.86,-6.5,-1.54,-2.21,1.66,0.72,3.41,-3.53,-2.4,5.09,-0.18,-0.96,-2.97,1.67,2.16,1.65,-0.22,1.57,0.59,5.23,0.86,-2.57,-1.57,-0.44,3.13,-0.21,-1.04,-0.51,1.4,1.38 +C2652,-8.41,-0.9,-0.68,-0.99,0.77,-5.24,4.77,-0.52,1.88,1.16,0.59,0.01,-1.76,0.31,1.31,-0.59,2.07,0.72,0.63,2.67,-1.69,-0.38,1.96,0.12,-0.31,-3.27,-1.57,2.81,-1.35,1.24,0.78,-0.72,1.19,-2.01,0.23,1.58,-0.3,-2.12,1.45,-2.58,-1.88,-1.15,0.33,0.62,-1.02,1.06,1.01,-1.72,1.2,3.67 +C2653,3.71,7.85,4.42,5.5,1.98,-0.83,0.6,0.93,-1.91,0.9,-0.48,0.35,2.48,-0.59,-0.53,0.85,-0.52,0.82,-1.44,-1.84,0.88,-0.81,-0.26,-0.01,-1.61,1.99,-0.56,0.6,-1.95,-0.34,0.84,1.52,-2.44,0.28,1.34,-0.26,-0.51,0.78,0.48,1.03,2.18,-0.21,1.28,-0.15,-2.21,-0.48,-0.37,-3.85,1.74,-1.08 +C2654,-9.5,-0.44,1.11,0.5,-1.12,-4.54,4.02,-0.84,-0.07,-0.53,0.95,-1.25,-1.1,0.17,0.25,2.52,-0.76,-0.23,0.71,1.21,1.2,1.32,0.74,-2.88,2.04,-2.45,-0.42,-0.51,3.91,0.28,-0.44,0.21,0.73,1.08,1.29,-0.49,2.65,4.96,-0.37,-0.52,0.24,-2.17,-1.79,-0.71,0.6,2.94,2.06,1.74,-1.82,1.26 +C2655,4.94,1.85,-0.63,-1.62,0.84,-0.36,0.77,2.45,0.35,1.39,-0.84,-1.63,-0.18,0.78,-2.32,0.04,0.67,0.92,-1.08,-0.96,0.53,-0.48,-1.19,2.55,0.72,1.1,-0.16,-1.2,1.07,0.58,0.89,-0.08,0.97,-1.42,-0.05,1.37,-0.45,0.43,1.69,-0.44,-1.82,-1.18,-1.68,-0.58,1.52,0.25,-1.5,-1.24,-1.79,-0.23 +C2656,2.89,7.01,4.2,4.21,0.44,2.15,-1.28,-0.33,1.55,2.8,3.05,1.77,-2.99,-0.08,1.87,2.6,-0.52,-1.19,0.18,0.9,0.56,0.08,-1.76,0.07,-3.14,-1.09,-0.01,1.53,1.64,-2.22,-1.06,0.66,-1.6,-2.67,0.84,-0.4,-1.83,1.54,-0.95,-0.28,-1.44,-1.87,-2.04,-0.61,-0.86,-0.64,-0.8,-0.43,-0.66,1.87 +C2657,5.41,-0.51,0.21,-0.81,-1.96,-0.77,-1.25,1.4,-0.2,-1.66,-0.96,1.86,-1.5,1.18,0.61,1.94,2.91,2.05,2.03,2.17,-2.97,-1.75,-0.95,-0.48,6.32,0.79,-2.4,-1.96,1.68,1.16,-7.58,3.26,-0.44,2.47,2.66,1.42,1.11,2.82,2.7,-1.37,2.36,-3.32,-4.34,2.51,-2.7,0.28,-1.69,-2.99,-0.35,-1.32 +C2658,3.03,8.29,4.75,4.15,1.39,0.11,1.21,0.33,-0.9,-2.18,-0.52,0.74,1.63,-0.35,0.61,-0.42,0.89,0.16,-2.05,0.37,-0.11,-1.3,3.08,2.38,1.06,-1.49,1.12,-1.06,0.64,-1.22,-3.31,1.25,-1.39,0.35,0.65,4.97,-1.18,0.98,-1.67,3.06,0.38,-2.24,2.66,1.59,-1.29,-3.09,-3.21,0.81,-1.55,0.63 +C2659,-11.46,-0.17,-0.83,-2.04,1.91,3.54,-2.06,2.31,-2.59,0.21,0.22,-1.05,-1.39,-1.47,2.06,0.77,1.36,0.96,-0.57,-0.79,-1.56,3.9,-1.28,1.31,-1.04,-2.01,-3.56,-1.28,-2.68,0.33,-0.53,-2.74,2.42,-1.5,0.81,-1.83,1.14,2.79,3.43,0.52,-1.2,-3.14,0,1.14,-0.14,-0.68,-0.02,1.56,-1.18,1.79 +C2660,-8.47,0.17,5.08,5.38,-4.69,3.53,-7.6,-1.09,5.79,-0.24,-0.77,-0.71,0.68,2.61,-2.02,0.62,0.5,1.14,0.78,-3.04,3.98,0.67,-0.53,0.94,2.75,0.67,-3.07,-0.62,0.18,1.11,2.16,0.12,-1.29,0.35,2.15,2.21,1.23,-0.75,-0.04,-1.83,-0.43,0.14,0.34,0.33,2.16,0.79,-0.23,-2.13,0.27,2.11 +C2661,4.29,1.82,-1.1,-2.37,0.37,0.53,0.89,0.35,1.27,0.47,-0.04,-1.07,0.28,0.49,-0.66,1.71,-2.23,0.3,0.67,0.88,0.22,-1.34,-1,0.51,0.68,-0.38,0.68,-0.63,-0.52,0.61,-0.3,1.44,-0.2,0.89,-1.84,-0.07,-0.65,0.76,2.22,-0.98,1.48,-1.65,0.37,-0.96,-0.43,1.27,-0.03,1.4,-0.24,-0.79 +C2662,4.38,-0.97,0.95,0.49,2.55,-0.1,0,-3.83,1.66,-1.4,0.53,-1.11,-1.33,1.57,-2.39,-1.2,0.33,0.27,0.18,-0.15,2.29,-1.33,0.91,1.58,-0.6,0.35,0.42,-1.77,1.56,-0.92,-0.4,2.48,0.52,-1.44,0.22,-2.71,-1.17,-0.62,-0.28,-0.37,-1.29,0.22,2.35,0.88,0.16,0.36,-0.28,3.02,1.6,-0.69 +C2663,-12.56,0.63,-0.24,-2.9,1.15,4.53,-2.32,-0.23,-3.31,-0.05,-2.06,-0.65,0.61,-2.27,-0.6,0.95,1.59,-0.23,-1.89,0.17,-0.58,0.08,2.4,1.82,1.15,2.16,-1.16,-0.59,1.09,-2.57,-0.67,0.2,-1.23,-2.14,0.71,-0.11,0.48,-0.55,2.09,0.52,-0.48,-0.18,-2.18,-0.25,2.68,2.55,-0.08,0.81,-0.88,-0.8 +C2664,4.25,0.86,-1.24,-2.11,-1.34,-0.01,1.09,0.47,0.84,2.14,-1.09,0.78,1.05,-3.82,0.83,-0.27,-0.12,0.67,0.98,0.16,0.44,-1.73,-0.99,-2.16,-0.64,-0.36,0.59,-0.89,-1.2,-3.23,2.83,2.11,-0.94,3.63,1.17,1.83,0.32,0.6,-1.71,-0.94,-1.46,-0.22,1.88,-0.55,-0.11,0.04,-3.31,2.36,1.34,-0.35 +C2665,4.65,-2.77,-0.55,0.33,1.31,0.34,-0.12,-4.67,2.37,1.22,-1.18,-1.06,-2.47,1,-1.1,-1.17,-0.33,0.83,-1.26,0.42,2.16,-0.09,1.63,0.4,-1.23,-2.34,-0.26,-2.87,0.99,-1.11,-0.4,4.14,-1.93,0.54,0.94,-0.94,1.34,-0.29,1.61,1.15,-0.3,-2.25,0.04,0.21,2.26,-0.76,1.85,-1.7,-1.13,2.4 +C2666,-10.96,-1.56,0.58,-0.32,0.92,-3.13,2.92,0.37,0.1,1.54,0.2,-0.37,-1.41,-1.68,1,0.64,-0.73,-0.53,0.27,0.25,1.49,1.66,0.4,0.98,-1.95,0.8,1.46,0.6,-2.45,2.59,-0.21,-0.21,-0.83,-0.29,0.44,0.75,0.37,0.9,-2.62,1.41,1.14,-0.5,1.01,1.26,2.79,2.08,2.09,-0.38,-2.18,-0.44 +C2667,4.54,1.37,-1.06,-3.01,0.29,-1.14,0.75,1.18,0.68,-0.21,-0.78,0.61,0.76,2.16,-0.38,0.26,0.54,-1.05,-0.99,0.32,0.34,-0.18,0.16,0.27,0.62,1.58,1.02,1.13,-0.2,-1.58,-0.96,-0.31,-2.2,0.37,-1.97,-1.42,0.71,-2.15,0.99,-1.56,2.08,-0.34,-0.55,1.56,0.74,-2.31,0.17,1.04,-1.19,-0.8 +C2668,-12.92,-0.01,-0.07,0.05,1.06,2.56,-2.42,-2.28,-0.41,1.03,-0.78,-2.56,1.39,0.58,-0.5,-3.91,1.71,1.78,1.07,0.74,-2.5,-0.99,-1.89,1.9,-2.57,1.68,0.91,0.9,-3.17,1.1,-0.59,1.42,-0.08,0.74,1.69,-2.19,0.37,0.93,0.28,4.92,1.2,-0.14,-0.51,0.35,-1.8,-0.49,1.41,-1.22,-3.8,0.4 +C2669,-10.26,-3.26,3.01,2.51,-4.18,-8.99,6.19,-0.25,0.49,4.46,-1.15,-1.45,-1.52,0.55,0.43,1.07,-0.83,3.5,0.37,1.65,1.35,2.31,-1.69,0.96,-0.28,1.73,0.93,-0.81,-2.59,-0.38,-2.27,2.99,3.87,0.84,-2.44,0.16,3.78,0.2,1.8,-1.07,-1.03,0.07,-0.33,0.38,4.26,0.78,-0.99,-1.08,1.4,-4.42 +C2670,3.47,-2.05,-1.86,-0.77,-3.81,-1.15,-2.55,-1.87,-0.65,-0.95,1.01,0.28,2.12,0.47,-2.17,0.25,-0.66,-1.18,-1.85,-0.75,0.07,0.69,0.83,-0.71,-2.32,2.99,-0.47,-1.55,2.06,1.65,1.12,-1.41,2.69,-0.28,1.53,0.21,0.99,-0.16,0.37,2.17,-1.4,0.08,-0.83,-0.12,0.52,-0.9,0.38,-1.24,-0.56,0.4 +C2671,-9.9,1.27,-1.47,-3.87,2.78,3.85,-2.55,0.29,0.09,1.98,-0.76,1.09,1.16,-0.43,-0.35,2.06,1.75,1.06,-0.77,0.43,-2.51,-1.75,0.08,-1.5,2.17,1.83,2.12,1.7,-1.06,0.28,-1.77,-1.78,5,-0.66,0.04,-1.41,0.99,0.56,-0.31,-1.35,0.44,3.21,0.97,-2.04,-2.8,-1.34,-1.52,-0.1,-1.93,2.55 +C2672,1.8,7.13,4.51,4.12,0.6,-0.74,0.4,-0.26,1.4,0.95,0.63,-2.05,2.26,1.37,1.53,-1.49,-0.32,-1.43,-1.73,2.74,-1.47,1.46,1.5,0.2,0.02,0.02,-0.33,2.31,-1.35,2.24,-1.73,1.07,1.16,-2.73,-0.66,-0.38,-0.1,-0.86,0.81,-3.49,-2.46,-0.72,-2.63,-0.26,-0.37,0.29,0.84,-1.03,-0.11,-2.91 +C2673,4.83,1.25,-0.63,0.17,-0.76,-0.53,0.31,0.77,0.5,2.5,-0.59,-0.53,-0.96,3.09,0.09,2.62,1.17,2.55,0.3,-0.34,1.31,0.54,-0.89,-1.89,-0.69,1.3,-0.57,-0.54,-4.21,1.25,-1.17,-1.09,-0.64,1.14,0.14,0.79,3.07,-1.15,1.16,-0.97,0.08,0.84,-1.3,-0.27,0.53,0.82,3.1,-0.81,-0.31,0.37 +C2674,-12.09,-0.55,0.62,0.66,-1.96,-1.37,0.66,-1.03,1.37,-1.82,1.88,2.1,-1.37,0.62,1.09,-0.44,-0.74,0.6,0.75,-1.05,-1.94,-0.82,1.82,-0.97,1.59,-1.52,0.76,0.09,-1.51,-0.9,-2.08,-0.52,0.21,1.33,-1.55,1.17,-1.82,0.17,-1.96,1.37,1.44,-0.39,4.05,0.26,-0.1,4.75,1.21,-1.09,-0.9,-0.16 +C2675,4.02,1.79,-1.68,-2.43,0.43,1.01,1.3,0.43,1.96,-0.11,-0.09,-0.26,-0.51,0.19,0.43,-0.17,-0.68,0.81,-0.31,-0.78,0.49,0.84,1.41,0.99,1.16,-0.5,-1.29,-0.41,-0.85,0.87,1.48,1.57,-0.3,-2.25,1.19,1,1.9,-0.18,-1.42,3.13,-1.38,-1.07,1.23,-2.38,1.64,1.42,-2.02,-2.03,-0.7,0.93 +C2676,2.53,9.21,4.98,5.22,1.96,-0.68,0.5,-0.8,-0.29,1.24,-0.66,-1.43,3.18,-2.01,1.1,-1.58,-0.29,-1.92,-1.15,1.85,-0.62,-0.71,-1.78,0.85,1.36,0.39,1.07,0.38,0.26,-0.94,0.57,-0.01,-2.53,-1.7,-0.06,1.51,0.6,2.14,-0.72,-0.08,0.33,0.38,-0.69,-2.43,-0.26,0.14,0.02,-0.11,-1.63,-1.38 +C2677,4.75,8.15,5.33,5.77,1.57,-0.29,-0.89,-0.75,-2.42,1.26,-1.84,0.41,-1.35,-0.24,-0.7,0.41,1.05,-1.11,0.65,-2.38,-0.72,-1,2.44,0.87,-1.9,-1.38,0.98,-0.12,-3.95,-0.04,0.76,-1.74,-1.17,-1.06,0.69,-1.51,2.33,0.28,1.64,0.93,0.37,-0.84,-0.28,0.94,0.6,-0.92,0.79,0.62,-1.55,-0.95 +C2678,3.57,7.88,5.11,4.66,2.37,0.57,1.67,-0.22,0.75,0.84,-0.63,-0.84,-1.78,1.65,-1.42,-2.42,-1.66,-2.24,-0.09,-0.3,-4.14,-2.17,-2.38,-0.39,1.04,1.14,-0.41,-1.78,4.13,-1.02,-1.51,-1.96,0.08,-4.33,1.54,1.45,-0.49,-0.53,-0.79,-0.45,0.84,1.46,-2.03,-0.57,1.01,-0.49,2.96,0.33,3.09,-0.08 +C2679,2.05,-0.07,-0.47,-1.67,-0.61,0.03,-1.62,-0.33,-1.01,0.52,1.28,0.97,1.46,-0.81,0.84,-0.08,0.06,1.25,-1.66,0.07,0.12,-1.2,2.31,-1.12,-0.57,-0.34,0.18,2.09,-0.64,-0.92,0.86,0.48,-2.34,-1.19,1.8,-0.63,0.61,1.34,-0.88,-0.11,-0.54,-0.05,-2.04,0.79,0.1,-0.55,-0.06,0.5,0.08,-3.04 +C2680,4.38,-1.33,-0.83,-2.32,-1.82,-0.67,-0.63,-1.99,-0.51,-0.86,0.81,-0.82,-0.31,2.09,-0.19,2.73,-0.27,-0.85,-0.37,-0.53,-0.01,3.25,-0.92,0.82,1.69,-0.81,3.12,2.32,-0.3,-0.65,0.44,2.8,0.56,1.09,0.03,-1.71,-1.17,-2.76,1.2,-0.87,2.66,0.35,1.56,0.38,1.81,0.6,0.33,1.98,-1.44,0.46 +C2681,2.77,5.23,4.64,4.27,0.9,-1.11,0.94,0.6,-0.54,-0.84,-0.26,-0.59,-0.19,-0.31,0.72,0.75,-1.19,1.52,-0.13,1.71,1.22,0.99,-1.1,1.41,-1.49,1.71,0,1.2,2.48,0.64,1.23,-1.31,-3.98,-0.42,0.92,-2.23,1.8,0.21,1.6,2.89,0.08,-0.21,0.29,-1.5,-3.58,-1.08,2.09,-3.41,-2.05,0.64 +C2682,1.74,-15.29,3.52,5.27,5.47,1.02,-2.04,5.59,-1.7,-1.32,1.44,-4.9,-0.58,-2.77,-1.19,-1.19,-1.1,-1.72,-2.84,-4.66,-0.19,-3.23,-0.43,4.79,-5.74,6.99,-2.36,-2.84,-1.21,2.7,-3.32,-4.55,2.05,-1.13,-2.84,3.41,2.51,-2.69,2.95,2.57,-0.82,-1.76,-2.29,1.29,1.95,5.22,0.65,1.72,3.25,1.04 +C2683,2.58,6.69,5.17,4.67,1,-0.47,-0.49,0.25,0.19,1.68,-0.55,-0.51,-0.25,0.23,-0.62,-2.65,2.91,-0.09,-0.25,-0.46,1.09,1.13,-0.5,-2.44,0.38,-0.23,1.55,1.23,-0.07,0.6,0.2,-1.3,2.74,1.81,0.41,-1.36,-2.32,-0.94,-0.78,-0.95,0.78,4.12,-0.49,0.69,-1.13,0.25,-1.36,0.84,0.68,0.43 +C2684,4.7,0.12,-0.73,-2.38,-2.65,0.58,0,1.99,-0.3,-0.73,0.17,-0.85,0.44,2,-1.02,0.04,-0.31,-0.32,0.76,-1.2,-1.03,0.56,-0.95,-2.3,0.45,1.32,-1.2,-0.51,0.39,-0.24,1.56,0.8,1.52,1.57,0.51,4.2,1.25,-1.02,-1.04,0.41,-0.93,1.19,1.81,-0.43,0.06,1.53,-0.34,0.67,0.82,0.47 +C2685,-11.47,0.49,-2.06,-2.32,1.43,2.09,1.41,-2.12,0.03,-1.58,0.74,-0.53,-0.88,-1.58,-0.56,-1.07,1.78,-2.16,0.58,0.09,1.89,2.05,-2.25,-0.75,0.28,-0.24,-0.22,0.85,1.18,-1.19,-0.96,0.38,-4.41,-0.84,-0.22,-1.22,2.08,-0.03,-0.56,-0.04,-0.51,0.03,-1.03,0.13,-2.29,-0.76,0.4,0.74,0.9,2.38 +C2686,-8.81,2.77,3.58,3.7,-2.34,4.82,-6.02,0.94,6.05,-0.21,-0.55,2.87,1.9,-4.43,-2.02,0.98,-3.53,-1.35,-3.26,-0.76,-1.68,0.7,0.73,0.58,3.53,0.98,0.18,-1.47,-2.04,-0.57,-0.04,-2.41,-2.34,-2.33,-1.22,-1.96,0.57,0.87,0.52,-1.88,-2.19,-0.59,0.58,0.79,1.43,-0.1,-0.99,2.68,-1.35,-0.7 +C2687,-12.37,2.12,-1.78,-4.09,4.08,3.19,-0.05,1.17,-2.29,0.03,0.93,-1.89,-0.27,0.85,-1.9,-0.48,1.12,-0.62,-2.14,0.96,-3.75,-0.56,0.23,1.6,4.06,1.24,1.16,0.24,1.95,-0.09,0.58,-2.68,1.74,-1.46,3.62,-0.4,0.28,-0.38,2.03,-0.54,-1.5,-0.54,-1.03,1.48,1.14,-0.32,2.88,-2.45,-0.44,-0.44 +C2688,-14.79,-0.62,0.37,2.12,-0.39,-2.05,1.85,-1.05,1.28,-0.97,0.44,0.28,2.27,-2.35,0.8,0.71,1.79,-0.49,2.32,-0.28,-0.79,-0.36,-0.82,-3.08,-0.95,-1.36,-0.79,4.21,-1.52,2.33,1.7,0.21,-0.97,0.93,0.73,0.39,-2.1,2.7,1.34,-0.57,-1.96,-0.1,-0.72,0.46,0.99,-1.38,1.62,-0.15,-1.86,1.06 +C2689,5.45,0.99,-1.42,-1.56,-0.68,-0.39,0.97,1.69,0.16,1.3,-0.56,-0.13,0.94,-0.93,-0.3,-1.54,-0.99,1.82,0.93,-1.32,-0.35,-0.84,0.23,-1.03,1.45,0.92,-0.6,-0.66,-0.86,-1.53,0.55,1.28,1.82,-0.09,0.72,-0.42,-0.12,1.55,0.41,1.44,-1.51,-1.14,2.83,0.29,-0.36,-0.03,1.82,-0.5,-0.37,-0.57 +C2690,5.96,-3.13,-0.4,-0.52,0.35,-0.7,-1.26,-4.29,-0.09,-1.98,-3.62,-1.52,-2.99,-0.46,1.25,3.32,-0.86,0.62,-2.31,1.06,1.13,-0.59,-0.45,0.29,0.65,0.11,-3.89,-0.67,0.46,1.24,-0.98,-0.91,3.24,-1.52,0.96,1.57,-0.67,3.34,-0.22,-2.11,-0.85,1.4,0.45,1.58,1.81,3.51,-2.73,-2.57,-1.5,-0.3 +C2691,3.63,7.47,6.94,7.1,0.32,-2.25,0.47,-0.34,-3.98,2.1,-0.91,-1.39,0.5,-0.59,-3.02,3.84,-2.76,2.4,0.16,-0.91,3.41,2.65,0.97,-0.97,-3.09,2.61,2.23,2.27,-4.35,-0.8,-1.46,0.16,-1.94,-0.24,2.22,2.19,-0.13,1.4,0.22,1.64,-2.51,4.51,0.34,-0.29,1.92,2.53,-1.02,3.57,-2.11,-0.38 +C2692,-9.51,4.15,-1.55,-3.29,4.17,1.74,0.14,0.59,-1.36,1.43,0.48,0.75,0.91,-0.33,0.67,0.5,0.97,0.59,0.23,0.69,0.78,-0.42,-0.89,0.94,0.7,1.05,1.31,-0.57,1.36,0.61,0.83,0.22,-1.19,0,1.52,-1.02,0.31,1.06,2.53,-0.19,-0.25,0.55,-0.41,1.46,2.35,-0.84,-0.92,0.95,1.08,2.15 +C2693,3.02,8.76,6.14,5.76,2.57,-0.06,-0.3,0.93,-4.11,0.22,-0.08,-2.56,5.2,-0.97,-6.72,1.18,0.36,-1.13,0.53,-1.02,-1.19,0.43,0.39,-1.13,1.32,0.64,0.25,0.71,-2.76,0.61,1.24,1.18,-0.4,0.44,1.74,-0.95,-1.5,2.65,0.68,2.77,-4.95,-1.53,-0.87,1.25,-2.21,-0.82,0.89,0.06,2.29,-1.1 +C2694,2.16,-1.07,-0.5,-1.71,-3.43,0.07,-2.29,-0.56,1.16,2.06,0.08,2.15,2.96,-1.49,1.79,1.01,-0.67,3.17,1.59,1.44,-0.63,0.35,1.29,1.8,-2.35,-1.28,1.57,-2.31,1.63,-0.67,-1.5,1.18,-0.42,0.58,0.02,0.29,2.36,-0.23,-1.77,0.04,-1.48,2.57,-2.12,2.6,-2.17,0.52,0.9,1.65,0.97,-0.41 +C2695,-3.51,-1.03,5.7,8.96,-4.64,4.76,-8.08,5.71,6.34,5.45,2.17,0.91,-20.05,-0.57,0.82,-5.77,-2.66,0.91,2.23,6.65,-4.74,2.09,-5.62,9.42,-0.58,-5.16,1.44,-0.84,1.47,-7.77,-4.34,-4.9,0.5,1.34,0.01,1.01,-0.61,1.74,-1.31,-4.12,-0.35,-0.56,3.27,1.34,0.87,1.82,-4.94,1.77,-9.24,-5.05 +C2696,-12.73,0.87,1.81,-0.61,-1.03,3.9,-6.13,-0.14,4.7,-3.59,1.54,0.7,-2.16,1.9,0.8,1.59,-2.9,0.91,0.95,0.96,-1.49,0.07,-1.77,2.11,2.82,-0.69,5.82,1.4,-0.27,-2.54,2.28,-1.25,0.94,1.41,-0.16,-3,1.33,2.72,0.49,-0.95,-0.78,-0.09,0.31,0.82,-2.15,-1.03,0.82,-2.71,2.8,1.43 +C2697,1.18,1.41,5.67,5.49,-4.88,2.24,0.8,0.02,-2.59,9.13,4.26,3.03,-10.98,-0.99,-0.42,1.37,0.49,3.32,1.26,4.52,1.2,-1.29,3.21,-0.45,-1.33,1.7,0.38,1.25,-0.63,-0.91,3.4,-1,1.76,1.77,-1.07,1.92,0.65,-0.24,1.43,4.48,-0.87,1.86,2.09,2.3,-0.2,-1.61,0.41,-2.96,3.66,2.23 +C2698,1.9,8.03,4.98,4.46,0.95,-0.56,2.14,-0.47,-0.23,-1,1.87,-0.38,1.32,-1.81,-1.26,-0.23,0.8,2.74,-0.04,1.05,-0.52,-0.53,0.02,-0.28,0.13,2.66,-1.38,-0.35,-0.86,-0.75,1.12,0.66,-0.03,1.38,1.36,1.69,-1.16,1.66,-0.37,1.89,-0.47,-0.97,-1.05,0.55,-1.72,-1.42,-0.06,-0.38,-1.08,2.94 +C2699,3.46,6.94,4.18,4.27,3.88,-1.79,1.04,-0.76,-0.91,-0.32,-0.56,0.73,0.61,-2.28,-2.41,2.95,1.01,-0.72,2.02,0.59,0.58,-2.4,1.13,-1.26,2.18,-0.83,-0.8,-0.08,-1.19,0.26,0.07,-1.11,-4.41,1.35,-3.05,0.73,1.42,-0.68,1.73,-0.03,0.64,1.78,1.41,2.95,-0.36,1.26,0.19,0.94,2.09,1.2 +C2700,3.21,0.81,-1.98,-2.91,-1.2,-1.69,0.78,0.42,-0.51,-1.13,0.99,0.44,0.37,-0.96,-0.77,-1.67,-1.89,3.28,0.29,2.33,-1.37,-0.44,1.39,0.55,0.28,1.48,1.45,1.55,0.55,-0.54,-1.28,0.1,1.31,-3.2,-0.45,-1.29,0.66,1.38,-1.47,-0.14,-0.33,-0.66,1.18,-0.12,0.82,1.24,-0.28,0.78,-0.43,0.9 diff --git a/inst/extdata/scRNAseq_clusters.csv b/inst/extdata/scRNAseq_clusters.csv new file mode 100644 index 0000000..2d4c94c --- /dev/null +++ b/inst/extdata/scRNAseq_clusters.csv @@ -0,0 +1,2702 @@ +cells,Cluster +C1,0 +C2,3 +C3,2 +C4,5 +C5,6 +C6,2 +C7,4 +C8,4 +C9,4 +C10,5 +C11,3 +C12,0 +C13,2 +C14,1 +C15,4 +C16,0 +C17,1 +C18,4 +C19,1 +C20,2 +C21,3 +C22,3 +C23,3 +C24,0 +C25,1 +C26,3 +C27,0 +C28,0 +C29,5 +C30,0 +C31,2 +C32,5 +C33,0 +C34,3 +C35,1 +C36,2 +C37,1 +C38,0 +C39,1 +C40,5 +C41,0 +C42,4 +C43,4 +C44,4 +C45,0 +C46,0 +C47,0 +C48,2 +C49,0 +C50,1 +C51,0 +C52,5 +C53,1 +C54,5 +C55,5 +C56,0 +C57,2 +C58,3 +C59,1 +C60,2 +C61,1 +C62,1 +C63,0 +C64,0 +C65,6 +C66,5 +C67,0 +C68,5 +C69,2 +C70,2 +C71,0 +C72,2 +C73,2 +C74,6 +C75,3 +C76,2 +C77,6 +C78,0 +C79,3 +C80,0 +C81,2 +C82,0 +C83,1 +C84,1 +C85,4 +C86,1 +C87,2 +C88,1 +C89,3 +C90,0 +C91,0 +C92,3 +C93,3 +C94,0 +C95,1 +C96,3 +C97,3 +C98,1 +C99,1 +C100,0 +C101,1 +C102,1 +C103,7 +C104,6 +C105,1 +C106,2 +C107,4 +C108,6 +C109,3 +C110,4 +C111,3 +C112,0 +C113,7 +C114,1 +C115,0 +C116,4 +C117,2 +C118,1 +C119,5 +C120,0 +C121,3 +C122,5 +C123,0 +C124,4 +C125,1 +C126,3 +C127,4 +C128,2 +C129,0 +C130,1 +C131,1 +C132,3 +C133,6 +C134,0 +C135,0 +C136,0 +C137,0 +C138,4 +C139,3 +C140,5 +C141,2 +C142,2 +C143,0 +C144,3 +C145,2 +C146,4 +C147,6 +C148,3 +C149,4 +C150,4 +C151,3 +C152,0 +C153,1 +C154,6 +C155,4 +C156,0 +C157,2 +C158,0 +C159,1 +C160,0 +C161,0 +C162,6 +C163,4 +C164,1 +C165,3 +C166,7 +C167,3 +C168,1 +C169,4 +C170,3 +C171,2 +C172,4 +C173,4 +C174,0 +C175,0 +C176,4 +C177,2 +C178,2 +C179,1 +C180,2 +C181,7 +C182,0 +C183,4 +C184,2 +C185,3 +C186,3 +C187,5 +C188,3 +C189,0 +C190,5 +C191,1 +C192,6 +C193,6 +C194,2 +C195,1 +C196,0 +C197,3 +C198,2 +C199,3 +C200,4 +C201,6 +C202,1 +C203,4 +C204,4 +C205,6 +C206,0 +C207,4 +C208,1 +C209,4 +C210,4 +C211,4 +C212,2 +C213,1 +C214,5 +C215,0 +C216,4 +C217,6 +C218,4 +C219,4 +C220,4 +C221,4 +C222,0 +C223,1 +C224,1 +C225,2 +C226,3 +C227,0 +C228,4 +C229,2 +C230,1 +C231,0 +C232,0 +C233,0 +C234,0 +C235,0 +C236,4 +C237,0 +C238,0 +C239,2 +C240,3 +C241,5 +C242,0 +C243,1 +C244,0 +C245,2 +C246,0 +C247,4 +C248,5 +C249,2 +C250,3 +C251,1 +C252,0 +C253,8 +C254,1 +C255,2 +C256,1 +C257,0 +C258,3 +C259,0 +C260,7 +C261,2 +C262,3 +C263,1 +C264,1 +C265,2 +C266,3 +C267,3 +C268,5 +C269,2 +C270,0 +C271,0 +C272,4 +C273,8 +C274,6 +C275,1 +C276,1 +C277,1 +C278,1 +C279,6 +C280,8 +C281,0 +C282,3 +C283,1 +C284,0 +C285,3 +C286,0 +C287,7 +C288,0 +C289,2 +C290,3 +C291,3 +C292,4 +C293,1 +C294,2 +C295,2 +C296,4 +C297,6 +C298,3 +C299,1 +C300,1 +C301,0 +C302,0 +C303,5 +C304,0 +C305,3 +C306,4 +C307,0 +C308,0 +C309,6 +C310,6 +C311,5 +C312,1 +C313,3 +C314,2 +C315,2 +C316,0 +C317,2 +C318,4 +C319,0 +C320,4 +C321,1 +C322,3 +C323,3 +C324,2 +C325,0 +C326,2 +C327,3 +C328,2 +C329,1 +C330,0 +C331,1 +C332,1 +C333,6 +C334,1 +C335,3 +C336,7 +C337,0 +C338,5 +C339,6 +C340,2 +C341,4 +C342,0 +C343,0 +C344,4 +C345,1 +C346,6 +C347,3 +C348,1 +C349,0 +C350,4 +C351,1 +C352,2 +C353,0 +C354,2 +C355,0 +C356,4 +C357,2 +C358,4 +C359,0 +C360,0 +C361,3 +C362,1 +C363,2 +C364,1 +C365,1 +C366,0 +C367,2 +C368,0 +C369,4 +C370,5 +C371,3 +C372,4 +C373,6 +C374,6 +C375,4 +C376,3 +C377,1 +C378,0 +C379,0 +C380,0 +C381,7 +C382,5 +C383,2 +C384,2 +C385,6 +C386,0 +C387,3 +C388,3 +C389,1 +C390,4 +C391,5 +C392,1 +C393,0 +C394,0 +C395,0 +C396,0 +C397,1 +C398,3 +C399,0 +C400,1 +C401,6 +C402,3 +C403,2 +C404,0 +C405,2 +C406,4 +C407,2 +C408,0 +C409,0 +C410,1 +C411,1 +C412,2 +C413,4 +C414,2 +C415,3 +C416,1 +C417,5 +C418,4 +C419,0 +C420,3 +C421,3 +C422,0 +C423,1 +C424,3 +C425,0 +C426,1 +C427,6 +C428,5 +C429,0 +C430,2 +C431,0 +C432,4 +C433,3 +C434,6 +C435,0 +C436,3 +C437,4 +C438,1 +C439,1 +C440,3 +C441,3 +C442,5 +C443,2 +C444,1 +C445,1 +C446,6 +C447,0 +C448,0 +C449,2 +C450,2 +C451,7 +C452,0 +C453,2 +C454,3 +C455,1 +C456,2 +C457,1 +C458,4 +C459,5 +C460,0 +C461,4 +C462,2 +C463,0 +C464,0 +C465,2 +C466,0 +C467,5 +C468,3 +C469,6 +C470,0 +C471,2 +C472,0 +C473,6 +C474,0 +C475,2 +C476,0 +C477,0 +C478,0 +C479,0 +C480,2 +C481,1 +C482,0 +C483,0 +C484,5 +C485,0 +C486,1 +C487,2 +C488,2 +C489,0 +C490,0 +C491,4 +C492,3 +C493,2 +C494,5 +C495,4 +C496,2 +C497,2 +C498,0 +C499,0 +C500,2 +C501,4 +C502,3 +C503,6 +C504,0 +C505,4 +C506,0 +C507,2 +C508,0 +C509,0 +C510,6 +C511,0 +C512,4 +C513,4 +C514,0 +C515,2 +C516,1 +C517,4 +C518,3 +C519,1 +C520,4 +C521,1 +C522,3 +C523,4 +C524,5 +C525,0 +C526,0 +C527,3 +C528,1 +C529,1 +C530,0 +C531,0 +C532,2 +C533,6 +C534,3 +C535,2 +C536,0 +C537,0 +C538,2 +C539,3 +C540,4 +C541,2 +C542,5 +C543,5 +C544,0 +C545,6 +C546,2 +C547,0 +C548,4 +C549,2 +C550,0 +C551,2 +C552,0 +C553,2 +C554,1 +C555,5 +C556,0 +C557,4 +C558,8 +C559,5 +C560,2 +C561,0 +C562,1 +C563,0 +C564,1 +C565,2 +C566,2 +C567,1 +C568,4 +C569,0 +C570,0 +C571,4 +C572,0 +C573,4 +C574,0 +C575,3 +C576,0 +C577,1 +C578,0 +C579,0 +C580,2 +C581,0 +C582,2 +C583,3 +C584,5 +C585,4 +C586,3 +C587,0 +C588,2 +C589,1 +C590,0 +C591,1 +C592,7 +C593,4 +C594,7 +C595,1 +C596,2 +C597,1 +C598,0 +C599,2 +C600,0 +C601,1 +C602,1 +C603,3 +C604,3 +C605,1 +C606,1 +C607,1 +C608,6 +C609,2 +C610,0 +C611,3 +C612,0 +C613,0 +C614,1 +C615,1 +C616,2 +C617,0 +C618,0 +C619,1 +C620,0 +C621,1 +C622,4 +C623,0 +C624,0 +C625,5 +C626,0 +C627,0 +C628,0 +C629,2 +C630,1 +C631,1 +C632,0 +C633,0 +C634,0 +C635,1 +C636,5 +C637,2 +C638,0 +C639,4 +C640,4 +C641,2 +C642,1 +C643,3 +C644,8 +C645,4 +C646,3 +C647,5 +C648,2 +C649,1 +C650,5 +C651,6 +C652,3 +C653,3 +C654,3 +C655,3 +C656,4 +C657,1 +C658,0 +C659,4 +C660,5 +C661,3 +C662,4 +C663,2 +C664,3 +C665,1 +C666,0 +C667,3 +C668,0 +C669,0 +C670,0 +C671,1 +C672,1 +C673,1 +C674,1 +C675,2 +C676,3 +C677,0 +C678,1 +C679,1 +C680,1 +C681,4 +C682,2 +C683,2 +C684,1 +C685,2 +C686,0 +C687,1 +C688,4 +C689,4 +C690,6 +C691,2 +C692,0 +C693,4 +C694,3 +C695,3 +C696,3 +C697,6 +C698,3 +C699,5 +C700,2 +C701,0 +C702,3 +C703,0 +C704,2 +C705,6 +C706,2 +C707,0 +C708,0 +C709,0 +C710,6 +C711,1 +C712,3 +C713,0 +C714,3 +C715,0 +C716,1 +C717,3 +C718,0 +C719,0 +C720,1 +C721,1 +C722,1 +C723,0 +C724,3 +C725,0 +C726,2 +C727,4 +C728,3 +C729,2 +C730,6 +C731,3 +C732,6 +C733,2 +C734,2 +C735,0 +C736,2 +C737,7 +C738,2 +C739,1 +C740,0 +C741,2 +C742,1 +C743,4 +C744,1 +C745,0 +C746,2 +C747,1 +C748,2 +C749,0 +C750,6 +C751,4 +C752,2 +C753,1 +C754,5 +C755,3 +C756,0 +C757,2 +C758,0 +C759,2 +C760,8 +C761,1 +C762,4 +C763,4 +C764,1 +C765,5 +C766,1 +C767,2 +C768,4 +C769,0 +C770,0 +C771,0 +C772,2 +C773,0 +C774,0 +C775,5 +C776,1 +C777,2 +C778,5 +C779,3 +C780,3 +C781,3 +C782,7 +C783,0 +C784,2 +C785,5 +C786,2 +C787,2 +C788,2 +C789,4 +C790,5 +C791,2 +C792,5 +C793,0 +C794,1 +C795,2 +C796,3 +C797,4 +C798,0 +C799,1 +C800,0 +C801,0 +C802,1 +C803,0 +C804,2 +C805,1 +C806,1 +C807,0 +C808,2 +C809,1 +C810,1 +C811,4 +C812,5 +C813,4 +C814,1 +C815,0 +C816,3 +C817,3 +C818,5 +C819,4 +C820,0 +C821,4 +C822,2 +C823,3 +C824,6 +C825,3 +C826,1 +C827,1 +C828,1 +C829,2 +C830,4 +C831,0 +C832,2 +C833,0 +C834,6 +C835,4 +C836,0 +C837,0 +C838,1 +C839,5 +C840,0 +C841,4 +C842,4 +C843,0 +C844,0 +C845,4 +C846,2 +C847,2 +C848,1 +C849,2 +C850,5 +C851,0 +C852,1 +C853,4 +C854,2 +C855,0 +C856,0 +C857,4 +C858,4 +C859,2 +C860,4 +C861,0 +C862,2 +C863,4 +C864,4 +C865,3 +C866,0 +C867,4 +C868,0 +C869,4 +C870,3 +C871,0 +C872,3 +C873,3 +C874,0 +C875,3 +C876,1 +C877,0 +C878,0 +C879,2 +C880,4 +C881,4 +C882,0 +C883,3 +C884,0 +C885,3 +C886,3 +C887,4 +C888,1 +C889,0 +C890,5 +C891,2 +C892,2 +C893,3 +C894,4 +C895,4 +C896,0 +C897,0 +C898,2 +C899,5 +C900,2 +C901,2 +C902,0 +C903,3 +C904,4 +C905,0 +C906,6 +C907,2 +C908,6 +C909,0 +C910,1 +C911,0 +C912,1 +C913,2 +C914,0 +C915,1 +C916,1 +C917,4 +C918,2 +C919,1 +C920,2 +C921,0 +C922,6 +C923,2 +C924,2 +C925,1 +C926,2 +C927,4 +C928,1 +C929,6 +C930,4 +C931,1 +C932,2 +C933,2 +C934,0 +C935,5 +C936,3 +C937,3 +C938,0 +C939,2 +C940,1 +C941,0 +C942,2 +C943,3 +C944,3 +C945,4 +C946,2 +C947,3 +C948,3 +C949,4 +C950,0 +C951,3 +C952,2 +C953,1 +C954,0 +C955,6 +C956,0 +C957,1 +C958,0 +C959,2 +C960,0 +C961,0 +C962,1 +C963,5 +C964,0 +C965,2 +C966,7 +C967,3 +C968,2 +C969,0 +C970,6 +C971,6 +C972,5 +C973,1 +C974,1 +C975,1 +C976,3 +C977,0 +C978,2 +C979,3 +C980,2 +C981,0 +C982,3 +C983,5 +C984,3 +C985,6 +C986,0 +C987,0 +C988,2 +C989,5 +C990,1 +C991,5 +C992,1 +C993,0 +C994,4 +C995,4 +C996,0 +C997,1 +C998,3 +C999,6 +C1000,2 +C1001,0 +C1002,1 +C1003,1 +C1004,0 +C1005,0 +C1006,3 +C1007,0 +C1008,5 +C1009,0 +C1010,4 +C1011,6 +C1012,4 +C1013,4 +C1014,3 +C1015,0 +C1016,0 +C1017,3 +C1018,1 +C1019,1 +C1020,4 +C1021,1 +C1022,1 +C1023,0 +C1024,0 +C1025,0 +C1026,4 +C1027,3 +C1028,0 +C1029,0 +C1030,0 +C1031,2 +C1032,1 +C1033,1 +C1034,0 +C1035,0 +C1036,5 +C1037,0 +C1038,4 +C1039,1 +C1040,1 +C1041,0 +C1042,1 +C1043,3 +C1044,2 +C1045,0 +C1046,1 +C1047,0 +C1048,5 +C1049,1 +C1050,1 +C1051,2 +C1052,0 +C1053,3 +C1054,3 +C1055,1 +C1056,2 +C1057,1 +C1058,3 +C1059,0 +C1060,6 +C1061,2 +C1062,2 +C1063,0 +C1064,0 +C1065,3 +C1066,1 +C1067,2 +C1068,5 +C1069,3 +C1070,0 +C1071,1 +C1072,1 +C1073,1 +C1074,3 +C1075,5 +C1076,1 +C1077,4 +C1078,3 +C1079,0 +C1080,1 +C1081,1 +C1082,2 +C1083,3 +C1084,0 +C1085,0 +C1086,3 +C1087,0 +C1088,3 +C1089,1 +C1090,4 +C1091,1 +C1092,2 +C1093,1 +C1094,0 +C1095,2 +C1096,0 +C1097,1 +C1098,1 +C1099,4 +C1100,3 +C1101,1 +C1102,1 +C1103,2 +C1104,0 +C1105,3 +C1106,4 +C1107,1 +C1108,4 +C1109,0 +C1110,0 +C1111,1 +C1112,4 +C1113,0 +C1114,0 +C1115,0 +C1116,3 +C1117,3 +C1118,0 +C1119,5 +C1120,0 +C1121,5 +C1122,6 +C1123,5 +C1124,0 +C1125,2 +C1126,1 +C1127,0 +C1128,4 +C1129,0 +C1130,3 +C1131,1 +C1132,0 +C1133,3 +C1134,5 +C1135,0 +C1136,3 +C1137,1 +C1138,1 +C1139,1 +C1140,2 +C1141,4 +C1142,0 +C1143,4 +C1144,3 +C1145,3 +C1146,1 +C1147,2 +C1148,0 +C1149,3 +C1150,6 +C1151,6 +C1152,0 +C1153,2 +C1154,2 +C1155,0 +C1156,4 +C1157,0 +C1158,0 +C1159,0 +C1160,0 +C1161,2 +C1162,1 +C1163,4 +C1164,0 +C1165,1 +C1166,4 +C1167,4 +C1168,2 +C1169,4 +C1170,0 +C1171,2 +C1172,2 +C1173,1 +C1174,3 +C1175,0 +C1176,4 +C1177,1 +C1178,4 +C1179,6 +C1180,1 +C1181,3 +C1182,0 +C1183,5 +C1184,1 +C1185,6 +C1186,3 +C1187,1 +C1188,2 +C1189,1 +C1190,0 +C1191,4 +C1192,2 +C1193,2 +C1194,7 +C1195,4 +C1196,3 +C1197,0 +C1198,0 +C1199,2 +C1200,3 +C1201,0 +C1202,0 +C1203,2 +C1204,2 +C1205,3 +C1206,4 +C1207,1 +C1208,4 +C1209,0 +C1210,5 +C1211,2 +C1212,5 +C1213,2 +C1214,1 +C1215,2 +C1216,0 +C1217,0 +C1218,2 +C1219,3 +C1220,3 +C1221,6 +C1222,1 +C1223,2 +C1224,4 +C1225,3 +C1226,2 +C1227,1 +C1228,1 +C1229,3 +C1230,2 +C1231,2 +C1232,0 +C1233,0 +C1234,1 +C1235,0 +C1236,0 +C1237,4 +C1238,1 +C1239,0 +C1240,2 +C1241,2 +C1242,4 +C1243,0 +C1244,3 +C1245,2 +C1246,4 +C1247,0 +C1248,0 +C1249,1 +C1250,2 +C1251,1 +C1252,4 +C1253,0 +C1254,5 +C1255,4 +C1256,1 +C1257,0 +C1258,4 +C1259,1 +C1260,6 +C1261,2 +C1262,6 +C1263,0 +C1264,4 +C1265,4 +C1266,4 +C1267,0 +C1268,2 +C1269,2 +C1270,2 +C1271,0 +C1272,2 +C1273,0 +C1274,0 +C1275,0 +C1276,4 +C1277,0 +C1278,5 +C1279,6 +C1280,1 +C1281,2 +C1282,1 +C1283,1 +C1284,2 +C1285,2 +C1286,4 +C1287,0 +C1288,4 +C1289,0 +C1290,0 +C1291,1 +C1292,0 +C1293,4 +C1294,6 +C1295,1 +C1296,6 +C1297,2 +C1298,1 +C1299,4 +C1300,2 +C1301,6 +C1302,3 +C1303,2 +C1304,1 +C1305,6 +C1306,0 +C1307,4 +C1308,0 +C1309,2 +C1310,1 +C1311,3 +C1312,0 +C1313,0 +C1314,0 +C1315,1 +C1316,4 +C1317,2 +C1318,5 +C1319,2 +C1320,6 +C1321,1 +C1322,1 +C1323,1 +C1324,2 +C1325,3 +C1326,6 +C1327,1 +C1328,2 +C1329,4 +C1330,5 +C1331,2 +C1332,2 +C1333,3 +C1334,3 +C1335,2 +C1336,5 +C1337,0 +C1338,2 +C1339,6 +C1340,4 +C1341,3 +C1342,1 +C1343,0 +C1344,1 +C1345,6 +C1346,6 +C1347,2 +C1348,0 +C1349,1 +C1350,1 +C1351,0 +C1352,2 +C1353,0 +C1354,1 +C1355,2 +C1356,0 +C1357,3 +C1358,2 +C1359,0 +C1360,2 +C1361,1 +C1362,1 +C1363,1 +C1364,0 +C1365,2 +C1366,1 +C1367,0 +C1368,2 +C1369,1 +C1370,0 +C1371,1 +C1372,0 +C1373,4 +C1374,5 +C1375,0 +C1376,2 +C1377,1 +C1378,1 +C1379,7 +C1380,0 +C1381,2 +C1382,5 +C1383,1 +C1384,0 +C1385,1 +C1386,0 +C1387,0 +C1388,6 +C1389,4 +C1390,4 +C1391,0 +C1392,2 +C1393,0 +C1394,1 +C1395,2 +C1396,2 +C1397,2 +C1398,3 +C1399,5 +C1400,3 +C1401,0 +C1402,0 +C1403,2 +C1404,4 +C1405,2 +C1406,2 +C1407,6 +C1408,0 +C1409,1 +C1410,0 +C1411,0 +C1412,1 +C1413,4 +C1414,4 +C1415,0 +C1416,1 +C1417,4 +C1418,0 +C1419,4 +C1420,4 +C1421,4 +C1422,2 +C1423,4 +C1424,0 +C1425,3 +C1426,1 +C1427,4 +C1428,2 +C1429,0 +C1430,0 +C1431,1 +C1432,0 +C1433,5 +C1434,4 +C1435,1 +C1436,1 +C1437,0 +C1438,2 +C1439,2 +C1440,3 +C1441,0 +C1442,0 +C1443,0 +C1444,3 +C1445,4 +C1446,2 +C1447,1 +C1448,0 +C1449,2 +C1450,2 +C1451,0 +C1452,2 +C1453,5 +C1454,3 +C1455,0 +C1456,4 +C1457,0 +C1458,4 +C1459,8 +C1460,2 +C1461,2 +C1462,3 +C1463,3 +C1464,0 +C1465,0 +C1466,0 +C1467,0 +C1468,4 +C1469,4 +C1470,6 +C1471,0 +C1472,0 +C1473,0 +C1474,4 +C1475,2 +C1476,0 +C1477,0 +C1478,0 +C1479,0 +C1480,0 +C1481,2 +C1482,0 +C1483,5 +C1484,2 +C1485,2 +C1486,5 +C1487,1 +C1488,0 +C1489,4 +C1490,3 +C1491,7 +C1492,7 +C1493,2 +C1494,1 +C1495,3 +C1496,2 +C1497,1 +C1498,0 +C1499,1 +C1500,5 +C1501,4 +C1502,6 +C1503,2 +C1504,0 +C1505,2 +C1506,0 +C1507,4 +C1508,5 +C1509,1 +C1510,0 +C1511,1 +C1512,1 +C1513,2 +C1514,2 +C1515,1 +C1516,2 +C1517,0 +C1518,7 +C1519,4 +C1520,5 +C1521,1 +C1522,3 +C1523,3 +C1524,0 +C1525,6 +C1526,1 +C1527,2 +C1528,2 +C1529,6 +C1530,0 +C1531,0 +C1532,2 +C1533,0 +C1534,6 +C1535,3 +C1536,0 +C1537,0 +C1538,0 +C1539,0 +C1540,3 +C1541,2 +C1542,5 +C1543,5 +C1544,3 +C1545,7 +C1546,1 +C1547,1 +C1548,1 +C1549,3 +C1550,0 +C1551,2 +C1552,0 +C1553,1 +C1554,2 +C1555,0 +C1556,3 +C1557,2 +C1558,8 +C1559,6 +C1560,1 +C1561,2 +C1562,2 +C1563,2 +C1564,0 +C1565,0 +C1566,2 +C1567,1 +C1568,3 +C1569,3 +C1570,0 +C1571,0 +C1572,2 +C1573,1 +C1574,3 +C1575,1 +C1576,0 +C1577,0 +C1578,3 +C1579,3 +C1580,1 +C1581,5 +C1582,4 +C1583,2 +C1584,4 +C1585,5 +C1586,1 +C1587,4 +C1588,6 +C1589,1 +C1590,3 +C1591,0 +C1592,3 +C1593,4 +C1594,2 +C1595,2 +C1596,0 +C1597,2 +C1598,0 +C1599,0 +C1600,1 +C1601,6 +C1602,0 +C1603,1 +C1604,0 +C1605,6 +C1606,1 +C1607,1 +C1608,0 +C1609,0 +C1610,0 +C1611,3 +C1612,2 +C1613,4 +C1614,3 +C1615,3 +C1616,2 +C1617,3 +C1618,0 +C1619,3 +C1620,2 +C1621,0 +C1622,1 +C1623,4 +C1624,1 +C1625,8 +C1626,5 +C1627,1 +C1628,1 +C1629,0 +C1630,2 +C1631,1 +C1632,4 +C1633,2 +C1634,7 +C1635,2 +C1636,1 +C1637,0 +C1638,2 +C1639,0 +C1640,0 +C1641,4 +C1642,1 +C1643,2 +C1644,1 +C1645,4 +C1646,5 +C1647,0 +C1648,6 +C1649,4 +C1650,1 +C1651,2 +C1652,3 +C1653,3 +C1654,1 +C1655,2 +C1656,2 +C1657,4 +C1658,3 +C1659,5 +C1660,2 +C1661,1 +C1662,1 +C1663,0 +C1664,2 +C1665,0 +C1666,1 +C1667,0 +C1668,0 +C1669,0 +C1670,1 +C1671,5 +C1672,1 +C1673,0 +C1674,3 +C1675,3 +C1676,3 +C1677,3 +C1678,2 +C1679,5 +C1680,3 +C1681,1 +C1682,0 +C1683,1 +C1684,1 +C1685,0 +C1686,2 +C1687,2 +C1688,2 +C1689,4 +C1690,1 +C1691,1 +C1692,2 +C1693,2 +C1694,4 +C1695,2 +C1696,7 +C1697,6 +C1698,1 +C1699,1 +C1700,6 +C1701,1 +C1702,2 +C1703,0 +C1704,1 +C1705,2 +C1706,2 +C1707,1 +C1708,2 +C1709,3 +C1710,5 +C1711,3 +C1712,4 +C1713,2 +C1714,2 +C1715,4 +C1716,0 +C1717,0 +C1718,0 +C1719,0 +C1720,0 +C1721,2 +C1722,0 +C1723,0 +C1724,6 +C1725,4 +C1726,2 +C1727,0 +C1728,4 +C1729,0 +C1730,2 +C1731,4 +C1732,2 +C1733,0 +C1734,0 +C1735,1 +C1736,0 +C1737,3 +C1738,2 +C1739,0 +C1740,4 +C1741,4 +C1742,1 +C1743,2 +C1744,4 +C1745,6 +C1746,4 +C1747,2 +C1748,0 +C1749,1 +C1750,6 +C1751,5 +C1752,0 +C1753,3 +C1754,2 +C1755,0 +C1756,5 +C1757,0 +C1758,6 +C1759,4 +C1760,1 +C1761,0 +C1762,6 +C1763,0 +C1764,2 +C1765,3 +C1766,0 +C1767,1 +C1768,2 +C1769,0 +C1770,0 +C1771,1 +C1772,0 +C1773,8 +C1774,0 +C1775,6 +C1776,0 +C1777,3 +C1778,0 +C1779,6 +C1780,0 +C1781,0 +C1782,3 +C1783,1 +C1784,7 +C1785,5 +C1786,0 +C1787,1 +C1788,0 +C1789,3 +C1790,2 +C1791,1 +C1792,2 +C1793,0 +C1794,2 +C1795,2 +C1796,3 +C1797,2 +C1798,0 +C1799,1 +C1800,4 +C1801,2 +C1802,4 +C1803,0 +C1804,2 +C1805,5 +C1806,1 +C1807,0 +C1808,4 +C1809,0 +C1810,1 +C1811,1 +C1812,1 +C1813,4 +C1814,0 +C1815,1 +C1816,0 +C1817,1 +C1818,8 +C1819,2 +C1820,1 +C1821,0 +C1822,1 +C1823,3 +C1824,1 +C1825,2 +C1826,0 +C1827,4 +C1828,6 +C1829,0 +C1830,2 +C1831,3 +C1832,1 +C1833,2 +C1834,0 +C1835,4 +C1836,3 +C1837,2 +C1838,1 +C1839,1 +C1840,7 +C1841,2 +C1842,1 +C1843,4 +C1844,1 +C1845,4 +C1846,0 +C1847,6 +C1848,3 +C1849,3 +C1850,3 +C1851,1 +C1852,2 +C1853,0 +C1854,1 +C1855,1 +C1856,6 +C1857,0 +C1858,0 +C1859,0 +C1860,2 +C1861,2 +C1862,2 +C1863,4 +C1864,3 +C1865,0 +C1866,1 +C1867,4 +C1868,2 +C1869,1 +C1870,6 +C1871,2 +C1872,1 +C1873,0 +C1874,3 +C1875,4 +C1876,3 +C1877,5 +C1878,6 +C1879,2 +C1880,6 +C1881,8 +C1882,2 +C1883,0 +C1884,2 +C1885,1 +C1886,0 +C1887,0 +C1888,0 +C1889,6 +C1890,2 +C1891,2 +C1892,4 +C1893,4 +C1894,2 +C1895,5 +C1896,2 +C1897,0 +C1898,2 +C1899,4 +C1900,0 +C1901,4 +C1902,0 +C1903,2 +C1904,6 +C1905,0 +C1906,4 +C1907,0 +C1908,1 +C1909,5 +C1910,3 +C1911,1 +C1912,1 +C1913,4 +C1914,0 +C1915,2 +C1916,0 +C1917,0 +C1918,0 +C1919,0 +C1920,1 +C1921,0 +C1922,3 +C1923,3 +C1924,2 +C1925,1 +C1926,0 +C1927,1 +C1928,5 +C1929,2 +C1930,4 +C1931,0 +C1932,7 +C1933,3 +C1934,1 +C1935,3 +C1936,4 +C1937,2 +C1938,2 +C1939,3 +C1940,0 +C1941,6 +C1942,4 +C1943,2 +C1944,3 +C1945,4 +C1946,0 +C1947,0 +C1948,2 +C1949,1 +C1950,4 +C1951,1 +C1952,0 +C1953,1 +C1954,2 +C1955,1 +C1956,3 +C1957,2 +C1958,1 +C1959,1 +C1960,3 +C1961,1 +C1962,0 +C1963,4 +C1964,2 +C1965,4 +C1966,2 +C1967,1 +C1968,4 +C1969,4 +C1970,1 +C1971,3 +C1972,3 +C1973,3 +C1974,0 +C1975,3 +C1976,1 +C1977,1 +C1978,0 +C1979,5 +C1980,0 +C1981,4 +C1982,0 +C1983,4 +C1984,4 +C1985,1 +C1986,0 +C1987,1 +C1988,3 +C1989,1 +C1990,3 +C1991,1 +C1992,0 +C1993,5 +C1994,2 +C1995,1 +C1996,0 +C1997,6 +C1998,1 +C1999,0 +C2000,1 +C2001,4 +C2002,4 +C2003,2 +C2004,2 +C2005,0 +C2006,0 +C2007,4 +C2008,2 +C2009,1 +C2010,0 +C2011,4 +C2012,4 +C2013,0 +C2014,0 +C2015,2 +C2016,3 +C2017,4 +C2018,8 +C2019,4 +C2020,2 +C2021,0 +C2022,0 +C2023,5 +C2024,0 +C2025,1 +C2026,1 +C2027,6 +C2028,0 +C2029,3 +C2030,5 +C2031,1 +C2032,0 +C2033,4 +C2034,0 +C2035,4 +C2036,2 +C2037,3 +C2038,4 +C2039,2 +C2040,1 +C2041,6 +C2042,0 +C2043,3 +C2044,0 +C2045,5 +C2046,2 +C2047,0 +C2048,0 +C2049,2 +C2050,3 +C2051,4 +C2052,3 +C2053,4 +C2054,0 +C2055,6 +C2056,0 +C2057,0 +C2058,3 +C2059,0 +C2060,7 +C2061,0 +C2062,1 +C2063,5 +C2064,3 +C2065,4 +C2066,0 +C2067,0 +C2068,6 +C2069,0 +C2070,4 +C2071,6 +C2072,1 +C2073,2 +C2074,0 +C2075,4 +C2076,5 +C2077,1 +C2078,0 +C2079,1 +C2080,4 +C2081,2 +C2082,3 +C2083,2 +C2084,0 +C2085,3 +C2086,1 +C2087,1 +C2088,8 +C2089,3 +C2090,0 +C2091,1 +C2092,2 +C2093,2 +C2094,2 +C2095,0 +C2096,1 +C2097,3 +C2098,1 +C2099,6 +C2100,1 +C2101,3 +C2102,4 +C2103,0 +C2104,1 +C2105,2 +C2106,2 +C2107,1 +C2108,1 +C2109,0 +C2110,5 +C2111,2 +C2112,0 +C2113,1 +C2114,2 +C2115,0 +C2116,3 +C2117,3 +C2118,2 +C2119,0 +C2120,0 +C2121,2 +C2122,6 +C2123,0 +C2124,1 +C2125,0 +C2126,2 +C2127,1 +C2128,0 +C2129,4 +C2130,2 +C2131,0 +C2132,4 +C2133,0 +C2134,5 +C2135,3 +C2136,5 +C2137,0 +C2138,1 +C2139,1 +C2140,1 +C2141,2 +C2142,0 +C2143,1 +C2144,2 +C2145,2 +C2146,0 +C2147,1 +C2148,4 +C2149,3 +C2150,4 +C2151,2 +C2152,5 +C2153,3 +C2154,4 +C2155,3 +C2156,6 +C2157,0 +C2158,2 +C2159,2 +C2160,3 +C2161,2 +C2162,1 +C2163,3 +C2164,0 +C2165,1 +C2166,2 +C2167,2 +C2168,3 +C2169,1 +C2170,6 +C2171,0 +C2172,0 +C2173,1 +C2174,3 +C2175,0 +C2176,6 +C2177,2 +C2178,3 +C2179,2 +C2180,0 +C2181,6 +C2182,3 +C2183,4 +C2184,3 +C2185,0 +C2186,0 +C2187,1 +C2188,4 +C2189,0 +C2190,0 +C2191,0 +C2192,2 +C2193,3 +C2194,3 +C2195,4 +C2196,6 +C2197,0 +C2198,5 +C2199,0 +C2200,0 +C2201,2 +C2202,4 +C2203,6 +C2204,0 +C2205,4 +C2206,2 +C2207,4 +C2208,1 +C2209,3 +C2210,2 +C2211,4 +C2212,0 +C2213,3 +C2214,0 +C2215,3 +C2216,3 +C2217,7 +C2218,4 +C2219,1 +C2220,6 +C2221,0 +C2222,3 +C2223,2 +C2224,3 +C2225,0 +C2226,2 +C2227,5 +C2228,1 +C2229,0 +C2230,2 +C2231,0 +C2232,1 +C2233,3 +C2234,2 +C2235,0 +C2236,0 +C2237,4 +C2238,6 +C2239,6 +C2240,0 +C2241,4 +C2242,5 +C2243,5 +C2244,1 +C2245,5 +C2246,4 +C2247,0 +C2248,2 +C2249,3 +C2250,0 +C2251,2 +C2252,5 +C2253,1 +C2254,1 +C2255,4 +C2256,4 +C2257,5 +C2258,4 +C2259,1 +C2260,0 +C2261,4 +C2262,4 +C2263,0 +C2264,6 +C2265,5 +C2266,2 +C2267,6 +C2268,3 +C2269,0 +C2270,3 +C2271,1 +C2272,3 +C2273,1 +C2274,0 +C2275,1 +C2276,3 +C2277,0 +C2278,4 +C2279,1 +C2280,6 +C2281,0 +C2282,6 +C2283,0 +C2284,4 +C2285,1 +C2286,4 +C2287,5 +C2288,0 +C2289,1 +C2290,2 +C2291,0 +C2292,1 +C2293,5 +C2294,4 +C2295,5 +C2296,3 +C2297,4 +C2298,3 +C2299,2 +C2300,6 +C2301,0 +C2302,0 +C2303,4 +C2304,3 +C2305,4 +C2306,0 +C2307,5 +C2308,4 +C2309,1 +C2310,2 +C2311,0 +C2312,1 +C2313,2 +C2314,2 +C2315,5 +C2316,2 +C2317,2 +C2318,1 +C2319,3 +C2320,0 +C2321,3 +C2322,2 +C2323,2 +C2324,4 +C2325,2 +C2326,1 +C2327,6 +C2328,5 +C2329,0 +C2330,1 +C2331,4 +C2332,3 +C2333,1 +C2334,0 +C2335,2 +C2336,4 +C2337,4 +C2338,2 +C2339,6 +C2340,4 +C2341,2 +C2342,4 +C2343,4 +C2344,5 +C2345,1 +C2346,2 +C2347,0 +C2348,2 +C2349,3 +C2350,4 +C2351,0 +C2352,4 +C2353,2 +C2354,1 +C2355,0 +C2356,6 +C2357,1 +C2358,3 +C2359,1 +C2360,4 +C2361,0 +C2362,3 +C2363,0 +C2364,3 +C2365,2 +C2366,0 +C2367,3 +C2368,2 +C2369,3 +C2370,0 +C2371,6 +C2372,7 +C2373,2 +C2374,0 +C2375,4 +C2376,5 +C2377,1 +C2378,3 +C2379,1 +C2380,1 +C2381,1 +C2382,1 +C2383,4 +C2384,3 +C2385,2 +C2386,0 +C2387,0 +C2388,1 +C2389,1 +C2390,4 +C2391,1 +C2392,0 +C2393,5 +C2394,5 +C2395,4 +C2396,0 +C2397,0 +C2398,3 +C2399,0 +C2400,0 +C2401,4 +C2402,3 +C2403,0 +C2404,0 +C2405,2 +C2406,0 +C2407,1 +C2408,2 +C2409,2 +C2410,1 +C2411,0 +C2412,0 +C2413,3 +C2414,2 +C2415,2 +C2416,1 +C2417,0 +C2418,2 +C2419,2 +C2420,4 +C2421,0 +C2422,5 +C2423,1 +C2424,0 +C2425,1 +C2426,1 +C2427,2 +C2428,5 +C2429,3 +C2430,0 +C2431,0 +C2432,6 +C2433,0 +C2434,1 +C2435,0 +C2436,0 +C2437,0 +C2438,0 +C2439,4 +C2440,0 +C2441,3 +C2442,5 +C2443,3 +C2444,5 +C2445,2 +C2446,3 +C2447,0 +C2448,0 +C2449,3 +C2450,2 +C2451,2 +C2452,2 +C2453,1 +C2454,7 +C2455,6 +C2456,5 +C2457,2 +C2458,2 +C2459,6 +C2460,0 +C2461,0 +C2462,5 +C2463,3 +C2464,3 +C2465,3 +C2466,0 +C2467,0 +C2468,3 +C2469,3 +C2470,3 +C2471,1 +C2472,1 +C2473,1 +C2474,3 +C2475,5 +C2476,4 +C2477,0 +C2478,1 +C2479,4 +C2480,6 +C2481,0 +C2482,3 +C2483,2 +C2484,5 +C2485,0 +C2486,6 +C2487,4 +C2488,0 +C2489,1 +C2490,4 +C2491,1 +C2492,2 +C2493,1 +C2494,0 +C2495,0 +C2496,4 +C2497,1 +C2498,4 +C2499,2 +C2500,3 +C2501,4 +C2502,3 +C2503,4 +C2504,3 +C2505,4 +C2506,4 +C2507,1 +C2508,2 +C2509,2 +C2510,3 +C2511,1 +C2512,2 +C2513,6 +C2514,2 +C2515,1 +C2516,0 +C2517,0 +C2518,0 +C2519,6 +C2520,1 +C2521,0 +C2522,0 +C2523,1 +C2524,6 +C2525,4 +C2526,5 +C2527,3 +C2528,2 +C2529,7 +C2530,2 +C2531,0 +C2532,4 +C2533,2 +C2534,3 +C2535,0 +C2536,0 +C2537,0 +C2538,5 +C2539,0 +C2540,4 +C2541,5 +C2542,2 +C2543,0 +C2544,5 +C2545,4 +C2546,3 +C2547,0 +C2548,3 +C2549,1 +C2550,1 +C2551,1 +C2552,5 +C2553,5 +C2554,4 +C2555,4 +C2556,0 +C2557,4 +C2558,4 +C2559,0 +C2560,0 +C2561,1 +C2562,2 +C2563,4 +C2564,3 +C2565,2 +C2566,1 +C2567,8 +C2568,6 +C2569,1 +C2570,7 +C2571,0 +C2572,6 +C2573,0 +C2574,0 +C2575,0 +C2576,1 +C2577,0 +C2578,1 +C2579,2 +C2580,4 +C2581,3 +C2582,1 +C2583,1 +C2584,2 +C2585,3 +C2586,6 +C2587,2 +C2588,3 +C2589,1 +C2590,0 +C2591,3 +C2592,7 +C2593,1 +C2594,3 +C2595,3 +C2596,2 +C2597,4 +C2598,0 +C2599,1 +C2600,5 +C2601,1 +C2602,2 +C2603,4 +C2604,0 +C2605,0 +C2606,0 +C2607,1 +C2608,5 +C2609,0 +C2610,0 +C2611,0 +C2612,2 +C2613,1 +C2614,2 +C2615,7 +C2616,0 +C2617,3 +C2618,1 +C2619,2 +C2620,1 +C2621,0 +C2622,1 +C2623,3 +C2624,6 +C2625,4 +C2626,1 +C2627,0 +C2628,6 +C2629,1 +C2630,0 +C2631,5 +C2632,2 +C2633,2 +C2634,5 +C2635,0 +C2636,1 +C2637,0 +C2638,4 +C2639,4 +C2640,0 +C2641,1 +C2642,0 +C2643,2 +C2644,2 +C2645,1 +C2646,6 +C2647,1 +C2648,2 +C2649,3 +C2650,2 +C2651,6 +C2652,5 +C2653,3 +C2654,5 +C2655,0 +C2656,3 +C2657,0 +C2658,3 +C2659,1 +C2660,7 +C2661,0 +C2662,4 +C2663,1 +C2664,0 +C2665,4 +C2666,5 +C2667,0 +C2668,1 +C2669,5 +C2670,2 +C2671,1 +C2672,3 +C2673,0 +C2674,1 +C2675,0 +C2676,3 +C2677,3 +C2678,3 +C2679,2 +C2680,2 +C2681,3 +C2682,6 +C2683,3 +C2684,0 +C2685,1 +C2686,7 +C2687,1 +C2688,1 +C2689,0 +C2690,4 +C2691,3 +C2692,1 +C2693,3 +C2694,2 +C2695,7 +C2696,1 +C2697,3 +C2698,3 +C2699,3 +C2700,0 +TTTGCATGCCTCAC-1, diff --git a/inst/www/countries.png b/inst/www/countries.png new file mode 100644 index 0000000..67ecf32 Binary files /dev/null and b/inst/www/countries.png differ diff --git a/inst/www/countries_label.png b/inst/www/countries_label.png new file mode 100644 index 0000000..9802b03 Binary files /dev/null and b/inst/www/countries_label.png differ diff --git a/inst/www/google_analytics.html b/inst/www/google_analytics.html new file mode 100644 index 0000000..0702722 --- /dev/null +++ b/inst/www/google_analytics.html @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/inst/www/heatmap.png b/inst/www/heatmap.png new file mode 100644 index 0000000..819c4a9 Binary files /dev/null and b/inst/www/heatmap.png differ diff --git a/inst/www/help.html b/inst/www/help.html new file mode 100644 index 0000000..6837698 --- /dev/null +++ b/inst/www/help.html @@ -0,0 +1,773 @@ + + + + + + DataMap Documentation + + +
+ + + +

A secure, browser-based application for visualizing high-dimensional 'omics and other data matrices with heatmaps, PCA, and t-SNE. V. 0.1

+
+

Video tutorials

+

+ Watch a 2-min video on + YouTube + to get a quick start. Here is another + + video + on countries with negative population growth. +

+
+
+

Overview

+

DataMap is a Shiny application designed to provide researchers and data analysts with an easy-to-use tool for visualizing high-dimensional data matrices. What makes DataMap unique is that it runs entirely in your browser through Shinylive technology, ensuring your data never leaves your device, providing both security and scalability.

+ +
+ Why DataMap? +
    +
  • Runs completely in your browser - no server required
  • +
  • Your data stays on your device, providing maximum security
  • +
  • Interactive visualizations including heatmaps, PCA, and t-SNE
  • +
  • Support for data transformations (scaling, normalization, etc.)
  • +
  • Exportable code to reproduce your analysis in R
  • +
  • Supports multiple data formats (CSV, TSV, TXT, Excel)
  • +
  • Customizable visualization parameters
  • +
+
+
+ +
+

Getting Started

+ +

Launching the Application

+

DataMap is accessed through your web browser. Simply navigate to the DataMap URL to launch the application. No installation is required.

+ +

Interface Overview

+

The DataMap interface consists of:

+ +
+ +
+

Data Upload

+ +

Supported File Formats

+

DataMap supports the following file formats:

+ + +

Data Format Requirements

+

Your data should be organized in a matrix format where:

+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name1Name2Name3Name4Name5Name6
5.62.94.39.13.13.4
3.22.1NA2.81.52.9
8.98.79.08.53.52.4
1.98.01.01.52.51.8
1.02.11.53.16.67.8
+

The column names should not have duplicates. Missing values in the data matrix are tolerated.

+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GeneIDNameSample1Sample2Sample3Sample4Protein_coding
Gene1DNA Repair 25.67.84.39.1Yes
Gene2Energy 3B3.22.13.52.8Yes
Gene3Stress related 18.98.79.08.5No
Gene4Transporter 21.21.01.41.3Yes
Gene56.76.96.27.1Yes
+

The first column contains row names (here is gene ids). + The row must not contain duplicates. Otherwise, it will be ignored, just like the 2nd column. + You can have one or more columns with categorical data, such as the last one here. + Such information will be used to label rows. You can also save such columns in a separate + file to be uploaded as row annotations (See below).

+ +
+ +

Optional Annotation Files

+

DataMap allows you to upload additional annotation files to provide context for your data:

+ +

Column Annotation File

+

This file provides metadata about your samples (columns). The file should have:

+ + + + + + + + + + + + + + + + + + + + + + + +
SampleIDSample1Sample2Sample3Sample4
TreatmentControlTreatmentControlTreatment
TimePoint0h0h24h24h
+ +

Row Annotation File

+

This file provides metadata about your features (rows). The file should have:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GeneIDPathwayFunction
Gene1GlycolysisEnzyme
Gene2TCA CycleTransporter
Gene3GlycolysisTranscription Factor
Gene4TCA CycleEnzyme
Gene5Lipid MetabolismSignaling
+ +

Uploading Your Data

+
    +
  1. Click the Data Files button in the sidebar
  2. +
  3. Use the file upload controls to select and upload your files
  4. +
  5. Configure import settings (delimiter, headers, row names) in the dialog
  6. +
  7. Preview your data to ensure it's imported correctly
  8. +
  9. Click Import Data to load your data into the application
  10. +
+ +
+ Tip: The application will attempt to auto-detect the optimal import settings, but you can adjust these manually if needed. +
+
+ +
+

Data Transformation

+ +

DataMap provides various options for transforming your data to improve visualization and analysis:

+ +

Available Transformations

+ + +

Applying Transformations

+
    +
  1. Click the Data Prep. button in the sidebar
  2. +
  3. Select the desired transformations in the dialog
  4. +
  5. Preview the effect of your transformations in the histogram
  6. +
  7. Click Apply Changes to implement the transformations
  8. +
+ +
+ Note: The application will recommend appropriate transformations based on your data characteristics, such as skewness and the presence of missing values. +
+
+ +
+

Visualization Options

+ +

Heatmap

+

The heatmap visualization allows you to see patterns in your data matrix through color intensity.

+ +

Customization Options

+ + +

Principal Component Analysis (PCA)

+

PCA reduces the dimensionality of your data to display the main sources of variation.

+ +

PCA Options

+ + +

t-SNE (t-Distributed Stochastic Neighbor Embedding)

+

t-SNE is a nonlinear dimensionality reduction technique that is particularly good at visualizing high-dimensional data clusters.

+ +

t-SNE Options

+ +
+ +
+

Generating Reproducible Code

+

One of the most powerful features of DataMap is its ability to generate reproducible R code for your analysis.

+ +

Code Generation

+

The application automatically generates R code that replicates all steps of your analysis:

+ + +

Accessing the Code

+
    +
  1. Navigate to the Code tab in the main panel
  2. +
  3. Review the generated R code
  4. +
  5. Click Download Code as R Script to save the code for later use
  6. +
+ +
+ Tip: This feature is especially useful for documentation, publications, and ensuring reproducibility of your analysis. +
+
+ +
+

Exporting Results

+ +

Saving Visualizations

+

You can save your visualizations in various formats:

+ + +
+ +
+

Tips and Best Practices

+ +

Data Preparation

+ + +

Visualization

+ + +

Troubleshooting

+ +
+ +
+

FAQ

+ +

General Questions

+ +

Is my data secure?

+

Yes. DataMap runs entirely in your browser using WebAssembly technology. Your data never leaves your device and is not sent to any server, providing maximum security and privacy.

+ +

What is the maximum file size I can upload?

+

Since the application runs in your browser, the maximum file size depends on your device's memory. However, this browser app gets slow when there are 5000 rows or columns. Users can install DataMap as an R package to run it natively.

+ +

Can I analyze RNA-seq (bulk or single cell) data?

+

Yes, DataMap is particularly well-suited for analyzing gene expression data from RNA-seq or microarray experiments. The scaling and transformation options are designed with these data types in mind.

+ +

How do I cite DataMap in my publication?

+

If you use DataMap in your research, please cite it as: "Ge, X. (2025). DataMap: A secure browser-based application for visualizing high-dimensional data matrices. [Software]. Available from: [URL]"

+ +

What browsers are supported?

+

DataMap works best with modern browsers like Chrome, Firefox, Edge, and Safari. We recommend using the latest version of your preferred browser for optimal performance.

+ +

My visualization is taking a long time to generate. What can I do?

+

For large datasets, consider these strategies to improve performance:

+ + +

Can I use DataMap offline?

+

Yes, once loaded in your browser, DataMap can operate without an internet connection. You can bookmark the page for offline access in some browsers.

+

Who owns the copyright of the produced plots?

+

You!

+
+ +
+

Install as an R package

+

remotes::install_github("gexijin/datamap", ref = "rPackage")

+

DataMap::run_datamap()

+
+ +
+

Source code, Bug Reports, and Feature Requests

+

If you encounter any issues or have suggestions for improving DataMap, please report them on our GitHub repository:

+

https://github.com/gexijin/datamap

+
+
+

Paper & Citation

+ +

For more information, please read this preprint. If you use DataMap in your research, please cite it:

+ +
+ Ge, X. (2025). DataMap: A Portable Application for Visualizing High-Dimensional Data, + arXiv:2504.08875, 2025. +
+
+
+
+

About the Author

+

Dr. Xijin Ge is a Professor at South Dakota State University specializing in bioinformatics and data visualization.

+ + +
+
+ + + + +
+ + \ No newline at end of file diff --git a/inst/www/pca.png b/inst/www/pca.png new file mode 100644 index 0000000..eaa4f4a Binary files /dev/null and b/inst/www/pca.png differ diff --git a/inst/www/tsne.png b/inst/www/tsne.png new file mode 100644 index 0000000..a49e317 Binary files /dev/null and b/inst/www/tsne.png differ diff --git a/man/create_dr_plot.Rd b/man/create_dr_plot.Rd new file mode 100644 index 0000000..0e9e0c5 --- /dev/null +++ b/man/create_dr_plot.Rd @@ -0,0 +1,54 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utilities.R +\name{create_dr_plot} +\alias{create_dr_plot} +\title{Create Dimensionality Reduction Plot} +\usage{ +create_dr_plot( + coords_data, + x_label, + y_label, + point_annot = NULL, + fontsize = 12, + show_labels = FALSE, + point_labels = NULL +) +} +\arguments{ +\item{coords_data}{A numeric matrix or data frame containing at least two columns for the x and y coordinates.} + +\item{x_label}{A character string specifying the label for the x-axis.} + +\item{y_label}{A character string specifying the label for the y-axis.} + +\item{point_annot}{Optional data frame containing annotation data. The first column is used for assigning colors, +and if a second column is provided, its values are used for assigning point shapes.} + +\item{fontsize}{A numeric value specifying the base font size used for labels, axes, and legends. Default is 12.} + +\item{show_labels}{Logical flag indicating whether to display text labels next to points. Default is FALSE.} + +\item{point_labels}{Optional character vector containing labels for each point. Must have at least as many elements as rows in coords_data when show_labels is TRUE.} +} +\value{ +A recorded plot object that can be replayed using \code{replayPlot()}. +} +\description{ +Generates a scatter plot for dimensionality reduction with support for annotations that alter +point colors and shapes, and optionally includes point labels. +} +\details{ +The function sets up the plotting environment, adjusts plot limits based on whether labels are shown, +and manages legends for both color and shape annotations. If annotation data is provided, the first column +determines the color palette (using a rainbow palette) and the second column (if available) assigns point shapes. +} +\examples{ +# Example with simulated data: +coords <- matrix(rnorm(200), ncol = 2) +annot <- data.frame(Group = sample(c("A", "B", "C"), 100, replace = TRUE), + Type = sample(c("X", "Y"), 100, replace = TRUE)) +plot_obj <- create_dr_plot(coords, "X Axis", "Y Axis", point_annot = annot, show_labels = TRUE, + point_labels = paste("P", 1:100, sep="")) +replayPlot(plot_obj) + +} diff --git a/man/datamap-package.Rd b/man/datamap-package.Rd new file mode 100644 index 0000000..3203633 --- /dev/null +++ b/man/datamap-package.Rd @@ -0,0 +1,15 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/datamap-package.R +\docType{package} +\name{datamap-package} +\alias{datamap} +\alias{datamap-package} +\title{datamap: Interactive Visualization of Data Matrices} +\description{ +A Shiny application for visualizing data matrices with heatmaps, PCA, and t-SNE. Allows users to upload, transform, and visualize their data interactively. +} +\author{ +\strong{Maintainer}: Steven Ge \email{Xijin.Ge@sdstate.edu} + +} +\keyword{internal} diff --git a/man/datamap_resource.Rd b/man/datamap_resource.Rd new file mode 100644 index 0000000..2512312 --- /dev/null +++ b/man/datamap_resource.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utilities.R +\name{datamap_resource} +\alias{datamap_resource} +\title{Find resource files for datamap} +\usage{ +datamap_resource(path) +} +\arguments{ +\item{path}{Path to the resource within the package} +} +\value{ +The full path to the resource file +} +\description{ +Find resource files for datamap +} +\keyword{internal} diff --git a/man/process_column_annotations.Rd b/man/process_column_annotations.Rd new file mode 100644 index 0000000..ddda69b --- /dev/null +++ b/man/process_column_annotations.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utilities.R +\name{process_column_annotations} +\alias{process_column_annotations} +\title{Process Column Annotations for Heatmap} +\usage{ +process_column_annotations(main_data_cols, annotation_df, selected_annotations) +} +\arguments{ +\item{main_data_cols}{A character vector of column names corresponding to the main dataset.} + +\item{annotation_df}{A data frame containing annotation information where rows correspond to different annotation types +and columns represent samples.} + +\item{selected_annotations}{A vector indicating the rows (by their names or indices) in annotation_df to be selected.} +} +\value{ +A data frame with the main dataset's column names as its row names and the selected annotation types as its column names. +If there are no annotations selected, no common samples between datasets, or if all annotations fail to process, the function returns NULL. +} +\description{ +This function processes column annotations by aligning selected annotation rows with the main dataset's columns. +It attempts to safely subset and merge annotation data based on common sample names and handles errors during processing. +} diff --git a/man/process_row_annotations.Rd b/man/process_row_annotations.Rd new file mode 100644 index 0000000..fc07725 --- /dev/null +++ b/man/process_row_annotations.Rd @@ -0,0 +1,34 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utilities.R +\name{process_row_annotations} +\alias{process_row_annotations} +\title{Process Row Annotations} +\usage{ +process_row_annotations( + main_data_rows, + file_annotation_df = NULL, + factor_annotation_df = NULL, + selected_annotations +) +} +\arguments{ +\item{main_data_rows}{A vector of row identifiers from the main data set.} + +\item{file_annotation_df}{An optional data frame containing row annotations from an uploaded file. +Default is NULL.} + +\item{factor_annotation_df}{An optional data frame containing row annotations based on factors. +Default is NULL.} + +\item{selected_annotations}{A character vector specifying the names of annotations to extract.} +} +\value{ +A data frame with combined annotations that correspond to the main data rows. Returns +NULL if no annotations are selected or if no matching annotations are found. +} +\description{ +This function processes and combines annotation data for rows from two potential sources: +a file-uploaded annotation data frame and an auto-detected factor annotation data frame. It selects +desired annotation columns based on the provided list, aligns these annotations with the main data rows, +and merges them into a single data frame. +} diff --git a/man/run_app.Rd b/man/run_app.Rd new file mode 100644 index 0000000..345567b --- /dev/null +++ b/man/run_app.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/main_app.R +\name{run_app} +\alias{run_app} +\title{Run the DataMap Shiny application} +\usage{ +run_app() +} +\value{ +A Shiny application object +} +\description{ +Run the DataMap Shiny application +} +\examples{ +if (interactive()) { + run_app() +} +} diff --git a/man/transform_server.Rd b/man/transform_server.Rd new file mode 100644 index 0000000..3130bb0 --- /dev/null +++ b/man/transform_server.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/mod_transform.R +\name{transform_server} +\alias{transform_server} +\title{Server function for preprocessing module} +\usage{ +transform_server(id, data) +} +\arguments{ +\item{id}{The module namespace id} + +\item{data}{Reactive data frame to process} +} +\value{ +A list with the processed data reactive and reproducible code +} +\description{ +Server function for preprocessing module +} diff --git a/man/transform_ui.Rd b/man/transform_ui.Rd new file mode 100644 index 0000000..c3f5121 --- /dev/null +++ b/man/transform_ui.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/mod_transform.R +\name{transform_ui} +\alias{transform_ui} +\title{UI function for preprocessing module button} +\usage{ +transform_ui(id) +} +\arguments{ +\item{id}{The module namespace id} +} +\value{ +A button that triggers the preprocessing modal +} +\description{ +UI function for preprocessing module button +}