diff --git a/.github/workflows/pkgdown.yml b/.github/workflows/pkgdown.yml
index c2b0fd2..039c0e9 100644
--- a/.github/workflows/pkgdown.yml
+++ b/.github/workflows/pkgdown.yml
@@ -2,11 +2,9 @@ on:
push:
branches:
- main
- - master
pull_request:
branches:
- main
- - master
name: docs
diff --git a/.github/workflows/rcmd.yml b/.github/workflows/rcmd.yml
index 671c737..7b741ec 100644
--- a/.github/workflows/rcmd.yml
+++ b/.github/workflows/rcmd.yml
@@ -19,9 +19,9 @@ jobs:
RSPM: ${{ matrix.config.rspm }}
steps:
- - uses: r-lib/actions/setup-pandoc@master
+ - uses: r-lib/actions/setup-pandoc@main
- uses: actions/checkout@v2
- - uses: r-lib/actions/setup-r@master
+ - uses: r-lib/actions/setup-r@main
- name: Install dependencies
env:
diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml
index b3670df..190b0ea 100644
--- a/.github/workflows/test_coverage.yml
+++ b/.github/workflows/test_coverage.yml
@@ -22,9 +22,9 @@ jobs:
steps:
- - uses: r-lib/actions/setup-pandoc@master
+ - uses: r-lib/actions/setup-pandoc@main
- uses: actions/checkout@v2
- - uses: r-lib/actions/setup-r@master
+ - uses: r-lib/actions/setup-r@main
- name: Install dependencies
env:
diff --git a/h2/outfile_area.jpeg b/h2/outfile_area.jpeg
deleted file mode 100644
index b8b2c5d..0000000
Binary files a/h2/outfile_area.jpeg and /dev/null differ
diff --git a/h2/outfile_bar.gif b/h2/outfile_bar.gif
deleted file mode 100644
index 6178d0a..0000000
Binary files a/h2/outfile_bar.gif and /dev/null differ
diff --git a/h2/www/images/GCIMS_logo_alt.svg b/h2/www/images/GCIMS_logo_alt.svg
deleted file mode 100644
index 30aa3ec..0000000
--- a/h2/www/images/GCIMS_logo_alt.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
\ No newline at end of file
diff --git a/h2/www/images/GitHub-logo.png b/h2/www/images/GitHub-logo.png
deleted file mode 100644
index 41887d7..0000000
Binary files a/h2/www/images/GitHub-logo.png and /dev/null differ
diff --git a/h2/www/images/Hector-sm.png b/h2/www/images/Hector-sm.png
deleted file mode 100644
index 1bb2f06..0000000
Binary files a/h2/www/images/Hector-sm.png and /dev/null differ
diff --git a/h2/www/images/earth-header.png b/h2/www/images/earth-header.png
deleted file mode 100644
index 3c986cd..0000000
Binary files a/h2/www/images/earth-header.png and /dev/null differ
diff --git a/h2/www/images/hectorcal-doi.svg b/h2/www/images/hectorcal-doi.svg
deleted file mode 100644
index 3ab99b7..0000000
--- a/h2/www/images/hectorcal-doi.svg
+++ /dev/null
@@ -1,35 +0,0 @@
-
\ No newline at end of file
diff --git a/h2/www/images/line.png b/h2/www/images/line.png
deleted file mode 100644
index a3e282e..0000000
Binary files a/h2/www/images/line.png and /dev/null differ
diff --git a/h2/app.r b/inst/shinyApp/app.r
similarity index 95%
rename from h2/app.r
rename to inst/shinyApp/app.r
index a9d3443..136f81e 100644
--- a/h2/app.r
+++ b/inst/shinyApp/app.r
@@ -7,7 +7,7 @@ ui <- fluidPage(theme = shinythemes::shinytheme("readable"),
tags$div(
a(
img(src = "images/GCIMS_logo_alt.svg", class = "logo"), href = "https://gcims.pnnl.gov/", target = "_blank"),
- h1("HectorUI - BETA", class = "header-text-title"),
+ h1("HectorUI", class = "header-text-title"),
h2("An Interactive Climate Model", class = "header-text-sub", style = "font-weight:normal; "),
),
),
@@ -32,7 +32,7 @@ ui <- fluidPage(theme = shinythemes::shinytheme("readable"),
))
)
),
- tabPanel(title = "Run Hector",
+ tabPanel(title = "Explore Hector",
fluidRow(
run_ui("run_1")
)
@@ -69,13 +69,10 @@ ui <- fluidPage(theme = shinythemes::shinytheme("readable"),
tabPanel
(
p(icon("info-circle", "fa-2x"), "Hector Information", value="infoTab"),
- h5("Background Information"), tags$hr(class="hrNav"),
tags$table(
tags$tr(
tags$td(width = "50%",
- h5("Explore the Hector Product Family", style="text-align: left"),
- br(),
- h6("Source code and contribution is available on the ",
+ h5("Source code and contribution is available on the ",
a("HectorUI Github page", href = "https://github.com/JGCRI/hector", target = "_blank")),
),
)
@@ -199,8 +196,10 @@ ui <- fluidPage(theme = shinythemes::shinytheme("readable"),
tabPanel
(
p(icon("comment", "fa-2x"), "Support", value="feedbackTab"),
- h5("To contact the Hector team regarding any questions, concerns, suggestions, or problems, please use",
- a("Github issues.", href = "https://github.com/JGCRI/hectorui/issues/new/choose"))
+ h5("To contact the Hector model team regarding any questions, concerns, suggestions, or problems, please submit a Hector",
+ a("Github issues.", href = "https://github.com/JGCRI/hector/issues/new/choose")),
+ h5("For HectorUI questions, concerns, suggestions, or problems, please submit a HectorUI",
+ a("Github issues.", href = "https://github.com/JGCRI/hectorui/issues/new/choose"))
)
)
)
@@ -214,7 +213,7 @@ server <- function(input, output, session) {
r6 <- HectorInputs$new() # r6 class
r6_tracking <- HectorInputs$new() # separate r6 class for carbon tracking
r6_custom <- HectorInputs$new()
- observeEvent(input$launch_scenario, updateTabsetPanel(session, "nav", selected = "Run Hector"), ignoreInit = TRUE)
+ observeEvent(input$launch_scenario, updateTabsetPanel(session, "nav", selected = "Explore Hector"), ignoreInit = TRUE)
run_server("run_1", r6 = r6)
summary_server("summary_1", r6 = r6)
diff --git a/h2/components/functions/func_custom_emissions.R b/inst/shinyApp/components/functions/func_custom_emissions.R
similarity index 100%
rename from h2/components/functions/func_custom_emissions.R
rename to inst/shinyApp/components/functions/func_custom_emissions.R
diff --git a/h2/components/functions/func_graph_plots.R b/inst/shinyApp/components/functions/func_graph_plots.R
similarity index 100%
rename from h2/components/functions/func_graph_plots.R
rename to inst/shinyApp/components/functions/func_graph_plots.R
diff --git a/h2/components/layout/footer.html b/inst/shinyApp/components/layout/footer.html
similarity index 100%
rename from h2/components/layout/footer.html
rename to inst/shinyApp/components/layout/footer.html
diff --git a/h2/components/layout/homepage.html b/inst/shinyApp/components/layout/homepage.html
similarity index 100%
rename from h2/components/layout/homepage.html
rename to inst/shinyApp/components/layout/homepage.html
diff --git a/h2/components/layout/style copy.css b/inst/shinyApp/components/layout/style copy.css
similarity index 91%
rename from h2/components/layout/style copy.css
rename to inst/shinyApp/components/layout/style copy.css
index c44c06f..9988296 100644
--- a/h2/components/layout/style copy.css
+++ b/inst/shinyApp/components/layout/style copy.css
@@ -6,6 +6,7 @@ h5 {
body
{
font-family:"Barlow Regular", Sans-Serif !important;
+ font-size: 16px;
}
/* * {
@@ -13,7 +14,12 @@ body
}*/
.about-info
{
- font-size: 12px;
+ font-size: 16px;
+}
+
+.popover
+{
+ font-family:"Barlow Regular", Sans-Serif !important;
}
.c-emissions
@@ -29,7 +35,7 @@ body
.header-text-title
{
position: absolute;
- color: #8B0000;
+ color: white;
top: 40%;
left: 50%;
text-align: center;!important
diff --git a/h2/components/modules/mod_custom.r b/inst/shinyApp/components/modules/mod_custom.r
similarity index 80%
rename from h2/components/modules/mod_custom.r
rename to inst/shinyApp/components/modules/mod_custom.r
index c3d2bd3..a7140a3 100644
--- a/h2/components/modules/mod_custom.r
+++ b/inst/shinyApp/components/modules/mod_custom.r
@@ -27,9 +27,31 @@ custom_ui <- function(id) {
"SSP 5-8.5"="input/hector_ssp585.ini"),
width=150, selected = "SSP 2-4.5"))
),
+ tags$tr(width = "100%",
+ tags$td(width = "145", "Output Variable:"),
+ tags$td(width = "155", selectInput(ns("variable"), label = NULL,
+ list("Carbon Cycle" = list("Atmospheric CO2" = CONCENTRATIONS_CO2(),
+ "FFI Emissions" = FFI_EMISSIONS(),
+ "LUC Emissions" = LUC_EMISSIONS()),
+ "Concentrations" = list("N2O Concentration" = CONCENTRATIONS_N2O()),
+ "Emissions" = list("Black Carbon Emissions" = EMISSIONS_BC(),
+ "Organic Carbon Emissions" = EMISSIONS_OC()),
+ "Forcings" = list("RF - Total" = RF_TOTAL(),
+ "RF - Albedo" = RF_ALBEDO(),
+ "RF - CO2" = RF_CO2(),
+ "RF - N2O" = RF_N2O(),
+ "RF - Black Carbon" = RF_BC(),
+ "RF - Organic Carbon" = RF_OC(),
+ "RF - Total SO2" = RF_SO2(),
+ "RF - Volcanic Activity" = RF_VOL(),
+ "RF - CH4" = RF_CH4())),
+ selected = "Atmospheric CO2", multiple = FALSE)
+
+ )
+ ),
tags$tr(width = "100%",
tags$td(width = "145", "Your Scenario Name:"),
- tags$td(width = "200", textInput(ns("input_custom_scenarioName"), label = NULL, width=195, value = ""))
+ tags$td(width = "200", textInput(ns("input_custom_scenarioName"), label = NULL, value = ""))
)
),
div(
@@ -86,25 +108,6 @@ custom_ui <- function(id) {
)
),
mainPanel(
- fluidRow(
- selectInput(ns("variable"), "Output Variable:",
- list("Carbon Cycle" = list("Atmospheric CO2" = CONCENTRATIONS_CO2(),
- "FFI Emissions" = FFI_EMISSIONS(),
- "LUC Emissions" = LUC_EMISSIONS()),
- "Concentrations" = list("N2O Concentration" = CONCENTRATIONS_N2O()),
- "Emissions" = list("Black Carbon Emissions" = EMISSIONS_BC(),
- "Organic Carbon Emissions" = EMISSIONS_OC()),
- "Forcings" = list("RF - Total" = RF_TOTAL(),
- "RF - Albedo" = RF_ALBEDO(),
- "RF - CO2" = RF_CO2(),
- "RF - N2O" = RF_N2O(),
- "RF - Black Carbon" = RF_BC(),
- "RF - Organic Carbon" = RF_OC(),
- "RF - Total SO2" = RF_SO2(),
- "RF - Volcanic Activity" = RF_VOL(),
- "RF - CH4" = RF_CH4())),
- selected = "Atmospheric CO2", multiple = FALSE)
- ),
fluidRow(
actionButton(ns("input_load_emissions"), label="Create Scenario", width = '150px', style = "background: #0B3F8F; color: white;"),
downloadButton(ns("downloadData"), label="Download Data", style = "background: #B8B8B8; color: black;")
diff --git a/h2/components/modules/mod_download.R b/inst/shinyApp/components/modules/mod_download.R
similarity index 100%
rename from h2/components/modules/mod_download.R
rename to inst/shinyApp/components/modules/mod_download.R
diff --git a/h2/components/modules/mod_run.R b/inst/shinyApp/components/modules/mod_run.R
similarity index 67%
rename from h2/components/modules/mod_run.R
rename to inst/shinyApp/components/modules/mod_run.R
index c02b2d1..2962a89 100644
--- a/h2/components/modules/mod_run.R
+++ b/inst/shinyApp/components/modules/mod_run.R
@@ -13,7 +13,7 @@ run_ui <- function(id) {
selected = "input/hector_ssp245.ini"),
sliderInput(ns("time"), label="Select dates:",
min = 1750, max = 2300, value = c(1900,2100), sep="", width = "90%", step=5),
- h6("Include permafrost thaw:", id = "perm-lab"),
+ h5("Include permafrost thaw:", id = "perm-lab"),
switchInput(ns("permafrost"), "Permafrost", value = TRUE, size = 'small', onStatus = "danger"),
h5("Model Parameters"),
sliderInput(ns("alpha"), label="Aerosol forcing scaling factor", # AERO_SCALE()
@@ -48,34 +48,35 @@ run_ui <- function(id) {
placement = "top", trigger = "hover", options = NULL)
),
mainPanel(
- fluidRow(
- selectInput(ns("variable"), "Output Variable:",
- list("Carbon Cycle" = list("Atmospheric CO2" = CONCENTRATIONS_CO2(),
- "FFI Emissions" = FFI_EMISSIONS(),
- "LUC Emissions" = LUC_EMISSIONS()),
- "Concentrations" = list("N2O Concentration" = CONCENTRATIONS_N2O()),
- "Emissions" = list("Black Carbon Emissions" = EMISSIONS_BC(),
- "Organic Carbon Emissions" = EMISSIONS_OC()),
- "Forcings" = list("RF - Total" = RF_TOTAL(),
- "RF - Albedo" = RF_ALBEDO(),
- "RF - CO2" = RF_CO2(),
- "RF - N2O" = RF_N2O(),
- "RF - Black Carbon" = RF_BC(),
- "RF - Organic Carbon" = RF_OC(),
- "RF - Total SO2" = RF_SO2(),
- "RF - Volcanic Activity" = RF_VOL(),
- "RF - CH4" = RF_CH4())),
- selected = "Atmospheric CO2", multiple = FALSE)
- ),
- fluidRow(
- actionButton(ns("run"), label="Load Graphs", width = '150px', style = "background: #0B3F8F; color: white;"),
- downloadButton(ns("downloadData"), label="Download Data", style = "background: #B8B8B8; color: black;"),
- downloadButton(ns("downloadParam"), label="Download Parameters", style = "background: #B8B8B8; color: black;")
- ),
- fluidRow(
- br(),
- plotlyOutput(ns("graph"))
- )
+ fluidRow(
+ actionButton(ns("run"), label="Load Graphs", width = '150px', style = "background: #0B3F8F; color: white;"),
+ downloadButton(ns("downloadData"), label="Download Data", style = "background: #B8B8B8; color: black;"),
+ downloadButton(ns("downloadParam"), label="Download Parameters", style = "background: #B8B8B8; color: black;")
+ ),
+ fluidRow(
+ br(),
+ selectInput(ns("variable"), "Output Variable:",
+ list("Carbon Cycle" = list("Atmospheric CO2" = CONCENTRATIONS_CO2(),
+ "FFI Emissions" = FFI_EMISSIONS(),
+ "LUC Emissions" = LUC_EMISSIONS()),
+ "Concentrations" = list("N2O Concentration" = CONCENTRATIONS_N2O()),
+ "Emissions" = list("Black Carbon Emissions" = EMISSIONS_BC(),
+ "Organic Carbon Emissions" = EMISSIONS_OC()),
+ "Forcings" = list("RF - Total" = RF_TOTAL(),
+ "RF - Albedo" = RF_ALBEDO(),
+ "RF - CO2" = RF_CO2(),
+ "RF - N2O" = RF_N2O(),
+ "RF - Black Carbon" = RF_BC(),
+ "RF - Organic Carbon" = RF_OC(),
+ "RF - Total SO2" = RF_SO2(),
+ "RF - Volcanic Activity" = RF_VOL(),
+ "RF - CH4" = RF_CH4())),
+ selected = "Atmospheric CO2", multiple = FALSE)
+ ),
+ fluidRow(
+ br(),
+ plotlyOutput(ns("graph"))
+ )
)
)
@@ -87,6 +88,7 @@ run_server <- function(id, r6) {
observe({
runs <- list()
+ cores <- list()
for(i in 1:length(input$ssp_path)) {
@@ -117,11 +119,17 @@ run_server <- function(id, r6) {
reset(core())
run(core())
+ cores[[i]] <- core()
incProgress(1/1, detail = paste("Load complete."))
Sys.sleep(0.2)
})
+#put cores in a list and fetchvars outsite
+ }
+
+ r6$core <- cores
- runs[[i]] <- fetchvars(core(), r6$time()[1]:r6$time()[2], vars = list(r6$selected_var())) %>%
+ for(i in 1:length(input$ssp_path)) {
+ runs[[i]] <- fetchvars(r6$core[[i]], r6$time()[1]:r6$time()[2], vars = list(r6$selected_var())) %>%
mutate(Scenario = names(which(scenarios == input$ssp_path[i], arr.ind = FALSE)))
}
@@ -131,6 +139,23 @@ run_server <- function(id, r6) {
}) %>%
bindEvent(input$run, ignoreNULL = FALSE, ignoreInit = TRUE)
+ observe({
+ r6$selected_var <- reactive({input$variable})
+ runs <- list()
+
+ for(i in 1:length(input$ssp_path)) {
+ runs[[i]] <- fetchvars(r6$core[[i]], r6$time()[1]:r6$time()[2], vars = list(r6$selected_var())) %>%
+ mutate(Scenario = names(which(scenarios == input$ssp_path[i], arr.ind = FALSE)))
+ }
+
+ r6$output <- bind_rows(runs)
+
+ output$graph <- renderPlotly({
+ graph_plots(r6 = r6)
+ })
+ }) %>%
+ bindEvent(input$variable, ignoreInit = TRUE)
+
observe({
output$graph <- renderPlotly({
@@ -143,7 +168,7 @@ run_server <- function(id, r6) {
output$downloadData <- downloadHandler(
filename = function()
{
- paste0('HectorUI_Output_', Sys.Date(), '.csv')
+ paste0('HectorUI_Output_', format(Sys.time(), "%Y-%m-%d_%H%M%S"), '.csv')
},
content = function(file)
@@ -164,7 +189,7 @@ run_server <- function(id, r6) {
output$downloadParam <- downloadHandler(
filename = function()
{
- paste0('HectorUI_Parameters_', Sys.Date(), '.txt')
+ paste0('HectorUI_Parameters_', format(Sys.time(), "%Y-%m-%d_%H%M%S"), '.txt')
},
content = function(file)
@@ -172,11 +197,15 @@ run_server <- function(id, r6) {
if(!is.null(r6$output))
{
- header_text <- paste0("File created with Hector UI - https://github.com/JGCRI/hector-ui\n" ,
+ header_text <- paste0("File created with Hector UI - https://github.com/JGCRI/hector-ui accessed on ", format(Sys.time(), "%Y-%m-%d %X"), "\n",
"Permafrost: ", r6$permafrost, "\n",
- "Model Parameters: " , input$input_paramToggle ,
- "Alpha: ", input$alpha, " Beta: ", input$beta, " Diff: ", input$diff,
- " ECS: ", input$S, " Q10: ", input$q10_rh, " Volc: ", input$volscl)
+ "Model Parameters: " , input$input_paramToggle , "\n",
+ "Alpha: ", input$alpha, "\n",
+ "Beta: ", input$beta, "\n",
+ "Diff: ", input$diff, "\n",
+ "ECS: ", input$S, "\n",
+ "Q10: ", input$q10_rh, "\n",
+ "Volc: ", input$volscl)
writeLines(header_text, file)
}
diff --git a/h2/components/modules/mod_summary.r b/inst/shinyApp/components/modules/mod_summary.r
similarity index 100%
rename from h2/components/modules/mod_summary.r
rename to inst/shinyApp/components/modules/mod_summary.r
diff --git a/h2/components/modules/mod_tracking.R b/inst/shinyApp/components/modules/mod_tracking.R
similarity index 52%
rename from h2/components/modules/mod_tracking.R
rename to inst/shinyApp/components/modules/mod_tracking.R
index 609f6e3..faf7bae 100644
--- a/h2/components/modules/mod_tracking.R
+++ b/inst/shinyApp/components/modules/mod_tracking.R
@@ -1,24 +1,34 @@
tracking_ui <- function(id) {
ns <- NS(id)
fluidRow(
- sidebarPanel(
- chooseSliderSkin(skin = "Flat", color = "#375a7f"),
- prettyRadioButtons(ns("ssp_path"), label="Select SSP:",
- choices = list("SSP 1-1.9"="input/hector_ssp119.ini",
- "SSP 1-2.6"="input/hector_ssp126.ini",
- "SSP 2-4.5"="input/hector_ssp245.ini",
- "SSP 3-7.0"="input/hector_ssp370.ini",
- "SSP 4-3.4"="input/hector_ssp434.ini",
- "SSP 4-6.0"="input/hector_ssp460.ini",
- "SSP 5-3.4OS"="input/hector_ssp534-over.ini",
- "SSP 5-8.5"="input/hector_ssp585.ini"),
- selected = "input/hector_ssp245.ini", inline=TRUE,
- shape = "square", width = "80%"),
- bsPopover(ns("ssp_path"), title="",content="Select a Shared Socioeconomic Pathway to plot.",
- placement = "top", trigger = "hover", options = NULL),
-
- sliderInput(ns("start"), label="Select year to begin tracking:",
- min = 1750, max = 2200, value = 1900, sep="",step=5),
+ sidebarPanel(
+ chooseSliderSkin(skin = "Flat", color = "#375a7f"),
+ # prettyRadioButtons(ns("ssp_path"), label="Select SSP:",
+ # choices = list("SSP 1-1.9"="input/hector_ssp119.ini",
+ # "SSP 1-2.6"="input/hector_ssp126.ini",
+ # "SSP 2-4.5"="input/hector_ssp245.ini",
+ # "SSP 3-7.0"="input/hector_ssp370.ini",
+ # "SSP 4-3.4"="input/hector_ssp434.ini",
+ # "SSP 4-6.0"="input/hector_ssp460.ini",
+ # "SSP 5-3.4OS"="input/hector_ssp534-over.ini",
+ # "SSP 5-8.5"="input/hector_ssp585.ini"),
+ # selected = "input/hector_ssp245.ini", inline=TRUE,
+ # shape = "square", width = "80%"),
+ selectInput(ns("ssp_path"), "Baseline Scenario:",
+ choices = list("SSP 1-1.9"="input/hector_ssp119.ini",
+ "SSP 1-2.6"="input/hector_ssp126.ini",
+ "SSP 2-4.5"="input/hector_ssp245.ini",
+ "SSP 3-7.0"="input/hector_ssp370.ini",
+ "SSP 4-3.4"="input/hector_ssp434.ini",
+ "SSP 4-6.0"="input/hector_ssp460.ini",
+ "SSP 5-3.4OS"="input/hector_ssp534-over.ini",
+ "SSP 5-8.5"="input/hector_ssp585.ini"),
+ width=150, selected = "SSP 2-4.5"),
+ bsPopover(ns("ssp_path"), title="",content="Select a Shared Socioeconomic Pathway to plot.",
+ placement = "top", trigger = "hover", options = NULL),
+
+ sliderInput(ns("start"), label="Select year to begin tracking:",
+ min = 1750, max = 2200, value = 1900, sep="",step=5),
selectInput(ns("pool"), label="Select pool to view:",
choices = list("High latitude ocean"="HL Ocean",
@@ -45,11 +55,11 @@ tracking_ui <- function(id) {
mainPanel(
fluidRow(
actionButton(ns("generate"),"Generate", width = '150px', style = "background: #0B3F8F; color: white;"),
- downloadButton(ns("download"),"Download Plots", style = "background: #B8B8B8; color: black;")
+ downloadButton(ns("download"),"Download Plot", style = "background: #B8B8B8; color: black;")
),
fluidRow(
- withSpinner(plotOutput(ns("fig"))),
- imageOutput(ns("gif"))
+ withSpinner(plotOutput(ns("fig"), width = "80%"))#,
+ # imageOutput(ns("gif"), width = "80%")
)
)
)
@@ -59,15 +69,13 @@ tracking_server <- function(id) {
moduleServer(id, function(input, output, session) {
observe({
- withProgress(message = "Generating plots", value = 0, {
+ withProgress(message = "Running Hector", value = 0, {
# Run Hector w/ carbon tracking
ini_file <- reactive({system.file(input$ssp_path,package="hector")})
core <- newcore(ini_file())
tunits <- getunits(TRACKING_DATE())
setvar(core, NA, TRACKING_DATE(), input$start, tunits)
reset(core, core$reset_date)
-
- incProgress(0.25, detail = "Running hector...")
print("Running Hector...")
run(core, runtodate = 2300)
@@ -86,6 +94,7 @@ tracking_server <- function(id) {
df[df=="soil_c"] <- "Soil"
df[df=="veg_c"] <- "Vegetation"
+ incProgress(0.25, detail = "Setting variables...")
## filter df to just selected pool
selectedPool <- reactive({input$pool})
df <- filter(df,pool_name==selectedPool())
@@ -113,7 +122,6 @@ tracking_server <- function(id) {
group_by(source_name) %>%
ungroup()
- incProgress(0.25, detail = "Generating plots...")
# Carbon amount
if (input$view == 1) {
area_plot <-
@@ -121,20 +129,19 @@ tracking_server <- function(id) {
geom_area(stat="identity") +
scale_fill_viridis_d(name="Source") +
scale_color_viridis_d() +
- ggtitle(paste0(selectedPool(), " Carbon Amount by Source")) +
+ ggtitle(paste0(selectedPool(), " Carbon Amount Sources")) +
xlab("") +
ylab("Carbon Pool (Pg C)") +
- theme(plot.title = element_text(size=20,face="bold"),
+ theme(plot.title = element_text(size=20),
legend.title=element_text(size=16),
legend.position="bottom",
legend.text=element_text(size=12),
axis.title.y=element_text(size=14),
axis.text=element_text(size=10),
plot.margin = margin(1,1,1,1,"cm"))
-
# save as file
ggsave("outfile_area.jpeg",plot=area_plot,device="jpeg",
- dpi=72,width=800,height=500,units="px")
+ dpi=300, width = 13, units = "in")
}
@@ -147,10 +154,10 @@ tracking_server <- function(id) {
geom_area(stat="identity") +
scale_fill_viridis_d() +
scale_color_viridis_d() +
- ggtitle(paste0(selectedPool(), " Carbon Fraction by Source")) +
+ ggtitle(paste0(selectedPool(), " Carbon Fraction Sources")) +
xlab("") +
ylab("Carbon Pool (Fraction)") +
- theme(plot.title = element_text(size=20,face="bold"),
+ theme(plot.title = element_text(size=20),
legend.title=element_text(size=16),
legend.position="bottom",
legend.text=element_text(size=12),
@@ -160,69 +167,75 @@ tracking_server <- function(id) {
# save as file
ggsave("outfile_area.jpeg",plot=area_plot,device="jpeg",
- width=800,height=500,units="px")
+ dpi=300, width = 13, units = "in")
}
output$fig <- renderPlot(area_plot)
- output$gif <- renderImage({
-
- # Make animation
- p <- ggplot(df,aes(fill=source_name,color=source_name,
- x=reorder(source_name,source_amt),
- y=source_amt)) +
- geom_bar(stat="identity") +
- geom_text(aes(y=0, label = paste(source_name, " ")),
- vjust = 0.2, hjust = 1, size = 6) +
- geom_text(aes(y = source_amt, label = paste(" ",amt_lbl), hjust=0),
- size = 6) +
- coord_flip(clip = "off", expand = FALSE) +
- theme_void() +
- theme(plot.title = element_text(size=20,face="bold"),
- plot.subtitle = element_text(size=18),
- legend.position="none",
- panel.grid.major.x = element_line(linewidth=.1,color="snow2"),
- panel.grid.minor.x = element_line(linewidth=.1,color="snow2"),
- plot.margin = margin(1,6,1,6,"cm")) +
- ylab("Carbon (Pg)") +
- xlab("") +
- scale_fill_viridis_d() +
- scale_color_viridis_d() +
-
- # gganimate
- transition_time(year) +
- ease_aes('linear')
-
- # Animate
- anim <- p + transition_states(year,transition_length=4,
- state_length=2,wrap=FALSE) +
- view_follow(fixed_x = TRUE) +
- labs(title=paste0(selectedPool()," Carbon Sources"),
- subtitle="Year: {closest_state}")
-
- anim_save("outfile_bar.gif", animate(anim, height = 500, width = 800,
- end_pause=30))
- list(src = 'outfile_bar.gif',
- contentType = 'image/gif'
- # width = 800,
- # height = 500,
- # alt = "An animation tracking the sources of carbon in a chosen pool"
- )}, deleteFile = TRUE)
-
- incProgress(0.25, detail = "Complete")
+ # output$gif <- renderImage({
+ # withProgress(message = "Generating plots", value = 0, {
+ # # Make animation
+ # p <- ggplot(df,aes(fill=source_name,color=source_name,
+ # x=reorder(source_name,source_amt),
+ # y=source_amt)) +
+ # geom_bar(stat="identity") +
+ # geom_text(aes(y=0, label = paste(source_name, " ")),
+ # vjust = 0.2, hjust = 1, size = 6) +
+ # geom_text(aes(y = source_amt, label = paste(" ",amt_lbl), hjust=0),
+ # size = 6) +
+ # coord_flip(clip = "off", expand = FALSE) +
+ # theme_void() +
+ # theme(plot.title = element_text(size=20),
+ # plot.subtitle = element_text(size=18),
+ # legend.position="none",
+ # panel.grid.major.x = element_line(linewidth=.1,color="snow2"),
+ # panel.grid.minor.x = element_line(linewidth=.1,color="snow2"),
+ # plot.margin = margin(1,6,1,6,"cm")) +
+ # ylab("Carbon (Pg)") +
+ # xlab("") +
+ # scale_fill_viridis_d() +
+ # scale_color_viridis_d() +
+ #
+ # # gganimate
+ # transition_time(year) +
+ # ease_aes('linear')
+ # incProgress(0.5, detail = "Rendering (please hold!)")
+ # # Animate
+ # anim <- p + transition_states(year,transition_length=4,
+ # state_length=2,wrap=FALSE) +
+ # view_follow(fixed_x = TRUE) +
+ # labs(title=paste0(selectedPool()," Carbon Sources"),
+ # subtitle="Year: {closest_state}")
+ #
+ # anim_save("outfile_bar.gif", animate(anim, height = 350, width = 650,
+ # end_pause=30, renterer = gifski_renderer()))
+ # incProgress(0.5, detail = "Complete!")
+ #
+ # list(src = 'outfile_bar.gif',
+ # contentType = 'image/gif'
+ # # width = 800,
+ # # height = 500,
+ # # alt = "An animation tracking the sources of carbon in a chosen pool"
+ # )
+ # })
+ # }, deleteFile = FALSE)
Sys.sleep(0.2)
})
}) %>%
bindEvent(input$generate)
# Download plots
- output$download <- downloadHandler(
- filename="myplots.zip",
- content=function(file){
- zip(file,files=c('outfile_area.jpeg','outfile_bar.gif'))
- }
- )
+ output$download <- downloadHandler(
+ #filename="myplots.zip",
+ filename = function() {
+ paste0('HectorUI_CarbonTracking_', format(Sys.time(), "%Y-%m-%d_%H%M%S"), '.zip')
+ },
+ content=function(file){
+ #zip(file,files=c('outfile_area.jpeg','outfile_bar.gif'))
+ zip(file, files = 'outfile_area.jpeg')
+ }
+ )
})
}
diff --git a/h2/components/modules/module_choices.r b/inst/shinyApp/components/modules/module_choices.r
similarity index 100%
rename from h2/components/modules/module_choices.r
rename to inst/shinyApp/components/modules/module_choices.r
diff --git a/inst/shinyApp/core.r b/inst/shinyApp/core.r
deleted file mode 100644
index d154475..0000000
--- a/inst/shinyApp/core.r
+++ /dev/null
@@ -1,92 +0,0 @@
-# This file handles interactions with Hector core objects that drive functionality
-
-
-#' Loads one of the preset RCP scenarios
-#'
-#' Main function that loads/starts the Hector Core and runs the specified scenario
-#'
-#' @param scenario (Character) - RCP Scenario name to load into new Hector core
-#'
-#' @return (Hector Core) - The Hector core object created from the scenario
-#' @export
-#'
-#' @examples
-loadScenario <- function(scenario)
-{
- print("in load scenario")
- tryCatch(
- {
- inifile <<- system.file(globalScenarios[paste0("RCP-", scenario)], package='hector', mustWork=TRUE)
- hcore <- hector::newcore(inifile, suppresslogging=TRUE, name=paste(globalScenarios[paste("RCP", scenario)]))
- setCoreParameters(hcore)
- hector::run(hcore, globalVars[['endDate']])
- },
- error = function(err)
- {
- shinyalert::shinyalert("Initalization Error", print(paste('Error starting Hector: ', err, ' scen= ', scenario, ' gs=',globalScenarios[paste("RCP", scenario)])), type = "error")
- print(scenario)
- })
- return(hcore)
-}
-
-#' Reset the active Hector cores and run the Hector core spinup
-#'
-#' Function to reset (not restart via shutdown) all active Hector cores. A core reset should only be called when input parameters have changed.
-#' @return no return value
-#' @export
-#'
-#' @examples
-resetCore <- function()
-{
- print("in reset core")
- # Call reset on each core that the user has created
- for(i in 1:length(hcores))
- {
- hector::reset(hcores[[i]])
- hector::run(hcores[[i]], globalVars[['endDate']])
- }
-}
-
-#' Restart the active Hector cores
-#'
-#' Function to shutdown and restart active Hector cores. A core restart is required when the scenario has changed/been loaded or the user has made emissions changes.
-#' @return
-#' @export
-#'
-#' @examples
-restartCore <- function()
-{
- print("in restart core")
- tryCatch(
- {
- if(length(hcores) > 0)
- {
- withProgress(message = 'Restarting Hector Cores...\n', value = 0,
- {
- # For each core, shutdown and restart
- for(i in 1:length(hcores))
- {
- scenarioName <- names(hcores)[i]
- if(substr(scenarioName, 1, 8) =="Standard")
- {
- core <- hcores[[i]]
- hector::shutdown(core = hcores[[i]])
- hcores[[scenarioName]] <<- loadScenario(substr(scenarioName, nchar(scenarioName)-2, nchar(scenarioName))) # hector::newcore(inifile, suppresslogging=TRUE, name=paste(globalScenarios[paste("RCP", scenario)]))
- hector::run(hcores[[i]], globalVars[['endDate']])
- incProgress(1/length(hcores), detail = paste0("Core ", names(hcores)[i], " Restart Successful."))
- Sys.sleep(0.1)
- }
- }
- })
- # Call loadGraph to refresh output graph after data change
- loadGraph()
- }
- else
- {
- shinyalert::shinyalert("Warning:", "There are no active cores to reset emissions", type = "warning")
- }},
- error = function(err)
- {
- shinyalert::shinyalert("Core Error",print(paste('Error restarting Hector: ',err)), type = "error")
- })
-}
diff --git a/h2/global.r b/inst/shinyApp/global.r
similarity index 99%
rename from h2/global.r
rename to inst/shinyApp/global.r
index 2c02990..937f2a9 100644
--- a/h2/global.r
+++ b/inst/shinyApp/global.r
@@ -7,6 +7,7 @@ library(shinycssloaders)
library(plotly)
library(DT)
library(shinyWidgets)
+library(gifski)
library(gganimate)
library(tidyverse)
library(shinyBS)
@@ -33,6 +34,7 @@ HectorInputs <- R6Class(
run_name = NA,
permafrost = NULL,
inputs = NULL,
+ core = NULL,
selected_var = NULL#,
# initialize = function(ini_file = system.file("input/hector_ssp245.ini",
# package = "hector")) {
diff --git a/inst/shinyApp/observers.r b/inst/shinyApp/observers.r
deleted file mode 100644
index e00b8ea..0000000
--- a/inst/shinyApp/observers.r
+++ /dev/null
@@ -1,317 +0,0 @@
-# This file contains miscellaneous observers (all except for those from the parameters which are in the parameters.r file and those that produce output, in output.r)
-
-
-#' Keeps a list of the selected output variables for graphs
-#'
-#' Observer function that responds to changes in user input from the capabilities drop down field in the scenario output tab
-#' @return
-#' @export
-#'
-#' @examples
-setCapabilities <- function()
-{
- print('in set capabilities')
- tryCatch(
- {
- outputVariables <<- list()
- capabilityValues <- vector()
- if(length(input$capabilities) > 0)
- {
- i <- 1
- capabilityValues <- input$capabilities
- while(i <= length(capabilityValues))
- {
- outputVariables[i] <<- globalCapabilities[capabilityValues[i]]
- i <- i+1
- }
- }
- },
- error = function(err)
- {
- # error handler picks up where error was generated
- shinyalert::shinyalert("Error!",print(paste('Output Error: ',err)), type = "error")
- })
-}
-
-
-#' Load the chosen standard RCP scenario and rerun output/clean functions
-#'
-#' Observer function that is activated on a change to the RCP Scenario checkboxes. Will load/unload the scenario into a new Hector core
-#' @param scenarioName (Character) - String value for the RCP scenario in the format of "RCP-2.6"
-#'
-#' @return
-#' @export
-#'
-#' @examples
-setRCP <- function(scenarioName)
-{
- print("in set RCP")
- coreName <- paste0("Standard-", scenarioName)
- tryCatch(
- {
- # If scenario is checked then load it, otherwise unload it
- if(input[[paste("input_",stringr::str_replace(scenarioName,"-", "_"), sep = "")]])
- {
- withProgress(message = paste('Loading Scenario RCP ', scenarioName, "...\n"), value = 1/2,
- {
- hcores[[coreName]] <<- loadScenario(scenario = substr(scenarioName, nchar(scenarioName)-2, nchar(scenarioName)))
- incProgress(1/1, detail = paste("Load complete."))
- Sys.sleep(0.2)
- })
- }
- else
- {
- hcores[[coreName]] <<- NULL
- }
- if(length(hcores) > 0)
- {
- # Update dropdown for available scenarios on the downscaled maps tab
- updateSelectInput(session, inputId = "mapCore", choices = names(hcores))
- loadGraph()
- }
- else
- cleanPlots()
- },
- error = function(err)
- {
- # error handler picks up where error was generated
- shinyalert::shinyalert("Error!",print(paste('Output Error: ',err)), type = "error")
-
- })
-}
-
-
-#' Load custom scenario
-#'
-#' Observer function responsible for processing the custom scenario file when the user creates a custom scenario
-#' @return
-#' @export
-#'
-#' @examples
-loadCustomScenario <- function()
-{
- print("in load custom")
-
- if (is.null(input$input_custom_scenario_csv) | (is.na(input$input_custom_scenarioName) | is.null(input$input_custom_scenarioName) | (input$input_custom_scenarioName == "")))
- {
- shinyalert::shinyalert("Missing Information", "Please name the scenario and load an emissions file before attempting to load the scenario.", type = "warning")
- return(NULL)
- }
-
- scenarioName <- input$input_custom_scenarioName
-
- tryCatch(
- {
- withProgress(message = paste('Creating Custom Scenario ', scenarioName, "...\n"), value = 1/2,
- {
- inifile <- Sys.glob(input$input_custom_scenario_ini$datapath)
- csvfile <- Sys.glob(input$input_custom_scenario_csv$datapath)
- hcores[[scenarioName]] <<- hector::newcore(inifile, suppresslogging=TRUE, name="custom")
- hector::run( hcores[[scenarioName]], globalVars[['endDate']])
- incProgress(1/1, detail = paste("Load complete."))
- Sys.sleep(0.2)
- })
-
- # Handle post loading operations
- loadParameters()
- customLoaded <<- TRUE
- loadGraph()
- },
- warning = function(war)
- {
- showModal(modalDialog(
- title = "Warning",
- paste("Details: ",war)
- ))
- },
- error = function(err)
- {
- shinyalert::shinyalert("Custom Scenario Error",print(paste('Error attempting to load custom scenario: ',err)), type = "error")
- })
-}
-
-
-#' Load custom emissions
-#'
-#' Observer function responsible for processing the custom emissions file when the user creates a custom emissions scenario
-#' @return
-#' @export
-#'
-#' @examples
-loadCustomEmissions <- function()
-{
- print("in load custom")
-
- if (is.null(input$input_custom_emissions_file) | (is.na(input$input_custom_scenarioName) | is.null(input$input_custom_scenarioName) | (input$input_custom_scenarioName == "")))
- {
- shinyalert::shinyalert("Missing Information", "Please name the scenario and load an emissions file before attempting to load the scenario.", type = "warning")
- return(NULL)
- }
-
- scenarioName <- input$input_custom_scenarioName
-
- tryCatch(
- {
- # Load scenario and custom emissions
- inifile <- system.file(globalScenarios[input$input_custom_RCP], package='hector', mustWork=TRUE)
- emissions_file <- input$input_custom_emissions_file$datapath
- emissions_data <- read.csv(file=emissions_file, header=TRUE, sep=",", skip = 3)
- emissions_headers <- read.csv(file=emissions_file, header=FALSE, sep=",", skip = 2)
- dates_col <- emissions_data$Date
-
- withProgress(message = paste('Creating Custom Scenario ', scenarioName, "...\n"), value = 1/2,
- {
- hcores[[scenarioName]] <<- hector::newcore(inifile, suppresslogging=TRUE, name=scenarioName)
- hector::run( hcores[[scenarioName]], globalVars[['endDate']])
- incProgress(1/1, detail = paste("Load complete."))
- Sys.sleep(0.2)
- })
-
- # Set custom emissions here
- for(i in 2:ncol(emissions_data))
- {
- hector::setvar(core = hcores[[scenarioName]], dates = emissions_data[, 1],var = colnames(emissions_data)[i], values = emissions_data[, i], unit = as.character(emissions_headers[[paste0("V",i)]][[1]]))
- }
-
- hector::reset(hcores[[scenarioName]])
- hector::run(hcores[[scenarioName]], globalVars[['endDate']])
- updateSelectInput(session, inputId = "mapCore", choices = names(hcores))
- loadGraph()
- },
- warning = function(war)
- {
- showModal(modalDialog(
- title = "Warning",
- paste("Details: ",war
- )
- ))
- },
- error = function(err)
- {
- shinyalert::shinyalert("Custom Scenario Error",print(paste('Error attempting to load custom scenario: ',err)), type = "error")
- })
-}
-
-
-#' Sets custom emissions from the user input fields
-#'
-#' Observer function that handles the set custom emissions feature. Sets emissions for all active cores.
-#' @return
-#' @export
-#'
-#' @examples
-setCustomEmissions <- function()
-{
- print("in Set Custom Emissions")
- tryCatch(
- {
- # Verify things:
- # 1. Needs to be Hector cores already instantiated first in order to set emissions
- # 2. Years need to be validated (validated to be a year and start > end if used that way)
- validate(
- need(as.double(input$input_custom_start) >= globalVars[['startDate']] && as.double(input$input_custom_start) <= globalVars[['endDate']], "Please use a valid 4 digit year for start year")
- )
- validate(
- need(as.double(input$input_custom_end) >= globalVars[['startDate']] && as.double(input$input_custom_end) <= globalVars[['endDate']], "Please use a valid 4 digit year for end year")
- )
- validate(
- need(length(input$input_custom_emissions) >= 0, "Please enter a value for emissions")
- )
-
- # Process custom emissions
- if(length(hcores) > 0)
- {
- # Set up general variables and sloping if needed
- x <- seq(1, 10, 2)
- y <- x * 3
- newx <- seq(1, 10, 0.1)
- s <- spline(x, y, xout = newx)
- emission <- input$input_custom_emissions
- startDate <- as.double(input$input_custom_start)
- endDate <- as.double(input$input_custom_end)
- hector_var <- globalCapabilities[[input$input_custom_emissions]][[1]]
- hector_unit <- attr(globalCapabilities[[input$input_custom_emissions]], "unit")
-
- # Set Hector data with sloped variable data
- if(input$input_slope_emissions)
- {
- for(i in 1:length(hcores))
- {
- scenarioName <- names(hcores)[i]
- if(substr(scenarioName, 1, 8) =="Standard")
- {
- startEmission <- hector::fetchvars(core = hcores[[i]], dates = startDate, vars = hector_var, "\n")
- x <- c(startDate, endDate)
- y <- c(startEmission["value"], as.double(input$input_emissions_value))
- z <- seq(as.integer(startDate), as.integer(endDate), 1)
- dates <- c(startDate:endDate)
- seq_out <- spline(x, y, xout = z)
- values <- unlist(seq_out["y"])
- values1 <- as.vector(values)
- hector::setvar(core = hcores[[i]], dates = dates, var = hector_var, values = values1, unit = hector_unit)
- }
- }
- }
- # Set Hector data with static variable data
- else
- {
- for(i in 1:length(hcores))
- {
- hector::setvar(core = hcores[[i]], dates = startDate:endDate, var = hector_var, values = as.double(input$input_emissions_value), unit = hector_unit)
- }
- }
-
- resetCore()
- loadGraph()
- }
- else
- {
- shinyalert::shinyalert("No active Hector cores", "Please set at least one of the RCP scenarios to active or upload a custom emissions scenario before downloading.", type = "warning")
- }
- },
- error = function(err)
- {
- # error handler picks up where error was generated
- shinyalert::shinyalert("Error!",print(paste('Error Setting Emissions: ',err)), type = "error")
- })
-}
-
-
-#' Reset custom emissions
-#'
-#' Observer function that resets any custom emissions inputted by the user back to hector defaults. This also forces a restart which will reset parameters
-#' @return
-#' @export
-#'
-#' @examples
-resetCustomEmissions <- function()
-{
- print("in reset emissions")
- updateSelectInput(session = session, inputId = "input_paramToggle", selected = "default")
- restartCore()
-}
-
-#' Open URL link
-#'
-#' @param url (Character) - Should be a well formatted URL string
-#'
-#' @return Links to URL page
-#' @export
-#'
-#' @examples
-openPage <- function(url) {
- return(tags$a(href=url, "Click here!", target="_blank"))
-
-}
-
-#' Update selected index of the downscaled map's available cores
-#'
-#' @return
-#' @export
-#'
-#' @examples
-updateIndex <- function()
-{
- selectedIndex <<- input$mapCore
-}
-
diff --git a/inst/shinyApp/outfile_area.jpeg b/inst/shinyApp/outfile_area.jpeg
new file mode 100644
index 0000000..0ad8210
Binary files /dev/null and b/inst/shinyApp/outfile_area.jpeg differ
diff --git a/inst/shinyApp/outfile_bar.gif b/inst/shinyApp/outfile_bar.gif
new file mode 100644
index 0000000..1a1cec0
Binary files /dev/null and b/inst/shinyApp/outfile_bar.gif differ
diff --git a/inst/shinyApp/output.r b/inst/shinyApp/output.r
deleted file mode 100644
index bae7c74..0000000
--- a/inst/shinyApp/output.r
+++ /dev/null
@@ -1,342 +0,0 @@
-# This file handles anything output related (screen, file, etc)
-
-#' Internal function used to clean up visual elements when the number of number of graph output variables changes
-#'
-#' @return Function does not return a value
-#'
-#' @examples
-cleanPlots <- function()
-{
- print("in clean plots")
-
- # Clean all plots if there's no active Hector cores
- if(length(hcores) < 1)
- {
- output[["plot1"]] <<- NULL
- output[["plot2"]] <<- NULL
- output[["plot3"]] <<- NULL
- output[["plot4"]] <<- NULL
- }
- else
- {
- # Start in reverse and clear out (make NULL) any plots that exceed the number of output variables
- if(length(outputVariables) < 4)
- output[["plot4"]] <<- NULL
- if(length(outputVariables) < 3)
- output[["plot3"]] <<- NULL
- if(length(outputVariables) < 2)
- output[["plot2"]] <<- NULL
- if(length(outputVariables) < 1)
- output[["plot1"]] <<- NULL
- }
-}
-
-#' Output function that generates the graphs
-#'
-#' Observer function designed to handle the loading/creation of the output graphs
-#' @return no return value
-#' @export
-#'
-#' @examples
-loadGraph <- function()
-{
- print("in load graph")
- # Set up local variables for dealing with output data frames
- hdata <- data.frame()
- df_total <- data.frame()
-
- # Main loop that handles graph output based on number of scenarios and number of output variables
- if(length(hcores) > 0)
- {
- # If length is 5 or more than they've chosen too many variables
- if(length(outputVariables) < 5)
- {
- tryCatch(
- {
- if(length(outputVariables) >= 1)
- {
- withProgress(message = 'Loading Output Graphs...\n', value = 0,
- {
- # Create a new graph for each output variable
- for (i in 1:length(outputVariables))
- {
- # Need local so that each item gets its own number. Without it, the value of i in the renderPlot() will be the same across all instances.
- local(
- {
- my_i <- i
- plotname <- paste("plot", i, sep="")
- seriesname <- ""
- # For each hector core create an output data set and bind all to df_total
- for(j in 1:length(hcores))
- {
- scenarioName <- names(hcores)[j]
- hdata <- hector::fetchvars(core = hcores[[j]], dates = globalVars[['startDate']]:globalVars[['endDate']], vars = outputVariables[i], "\n")
- if(substr(scenarioName, 1, 8) =="Standard")
- seriesname <- paste("RCP", substr(scenarioName, nchar(scenarioName)-2, nchar(scenarioName)))
- else
- seriesname <- names(hcores)[j]
- hdata <- dplyr::mutate(hdata, Scenario = seriesname, Year = year, Value = round(value, 2))
- df_total <- rbind(df_total,hdata)
-
- }
- # Get the units for graph axis
-
- x <- dplyr::distinct(hdata, units)
- ggplotGraph <- ggplot2::ggplot(data=df_total, ggplot2::aes(x=Year, y=Value, group=Scenario, color=Scenario)) +
- ggplot2::geom_line() +
- ggplot2::labs(y=Hmisc::capitalize(x[[1]]), title = attr(outputVariables[[i]], 'longName')) +
- ggplot2::scale_color_manual(values = globalColorScales)
-
- #+ ggplot2::scale_color_manual(values=globalScenarioColors) + ggplot2::geom_ribbon(alpha=0.5)
- # + ggplot2::guides(color = ggplot2::guide_colorbar(title = expression(beta)))
- # + ggplot2::scale_color_viridis_c()
-
- # Construct the plots and add to the shiny output variable
- localPlot <- plotly::ggplotly(p = ggplotGraph)
- plotly::layout(p=localPlot, xaxis = a, yaxis = a, legend = list(orientation = 'h'))
- output[[plotname]] <- plotly::renderPlotly(localPlot)
- })
- incProgress(1/length(hcores), detail = paste(attr(outputVariables[[i]], 'longName'), " loaded."))
- Sys.sleep(0.25)
- }
- })
- # Check if any output variables have been removed and clear any extra plots
- if(length(outputVariables) < 4)
- {
- cleanPlots()
- }
- }
- else
- {
- shinyalert::shinyalert("Invalid Input:", "Please choose at least 1 output variables.", type = "warning")
- }
-
- },
- error = function(err)
- {
- # error handler picks up where error was generated
- shinyalert::shinyalert("Error Detected:",print(paste('There was an error when attempting to load the graph:',err)), type = "error")
- })
- }
- else
- {
- shinyalert::shinyalert("Invalid Input:", "Please choose no more than 4 output variables.", type = "warning")
- }
- }
- else
- {
- shinyalert::shinyalert("No active Hector cores", "Please set at least one of the RCP scenarios to active or upload a custom emissions scenario.", type = "warning")
- }
-}
-
-#' Main output function that generates the downscaled maps
-#'
-#' Observer function designed to handle the loading/creation of downscaled world maps from the Hector model output and pre-generated pattern files
-#' @return no return value
-#' @export
-#'
-#' @examples
-loadMap <- function()
-{
- tryCatch(
- {
- # First check for existing cores
- if(length(hcores) < 1)
- {
- shinyalert::shinyalert("No active Hector cores", "Please set at least one of the RCP scenarios to active or upload a custom emissions scenario before mapping.", type = "warning")
- }
- else
- {
- # Need local so that each item gets its own number. Without it, the value of i in the renderPlot() will be the same across all instances.
- local(
- {
- withProgress(message = 'Generating Map Data...\n', value = 0,
- {
- # Choose pattern file based on user choice of temperature or precipitation
- if(input$mapVar == "tas")
- patternFile <- globalTempPatterns[[input$mapPattern]]
- else
- patternFile <- globalPrecipPatterns[[input$mapPattern]]
-
- # Fetch needed data from Hector cores
- results <- hector::fetchvars(hcores[[input$mapCore]], 1900:2100)
- # Use temperature data for downscaling both temp and precip
- tgav_hector <- dplyr::filter(results, variable == "Tgav")
- pattern <- readRDS(patternFile)
- coordinates <- pattern$coordinate_map
- incProgress(1/2, detail = paste("Loading pattern, downscaling"))
- # Construct coordinates based on -180 to 180 for longitude
- for(i in 1:length(coordinates$lon))
- {
- if(coordinates$lon[i] > 180)
- coordinates$lon[i] <- coordinates$lon[i] - 360
- }
-
- # Apply patterns to temp data and transform for mapping
- mapname <- paste("map", 1, sep="")
- hector_annual_gridded <- fldgen::pscl_apply(pattern$annual_pattern, as.vector(tgav_hector$value+15))
- hector_annual_gridded_t <- t(hector_annual_gridded)
-
- # Build aesthetics based on if the compare to 1900 was checked
- if(input$mapVar == "tas")
- {
- if(input$input_map_compare)
- {
- mapFill <- "\u0394 Temperature \u00B0C"
- mapVar <- "deltaTemp"
- mapPalette <- c("#fff7ec", "#fdbb84", "#fc8d59", "#ef6548", "#d7301f", "#b30000", "#7f0000")
- }
- else
- {
- mapFill <- "Temperature \u00B0C"
- mapVar <- "Temp"
- mapPalette <- c( "#4575b4", "#74add1", "#abd9e9","#e0f3f8", "#ffffbf", "#fee090", "#fdae61", "#d73027")
- }
-
- mapDirection <- -1
- combined_data <- dplyr::mutate(coordinates, Temp = round(hector_annual_gridded_t[, as.numeric(input$mapYear)-1899], 2),
- deltaTemp = round(hector_annual_gridded_t[, as.numeric(input$mapYear)-1899] - hector_annual_gridded_t[, 1], 2),
- Lon=round(lon, 2), Lat=round(lat,2), Neg = ifelse(deltaTemp < 0, TRUE, FALSE))
- }
- else
- {
- # Build aesthetics based on if the compare to 1900 was checked
- if(input$input_map_compare)
- {
- mapFill <- "\u0394 Precip. - mm/day"
- mapVar <- "deltaPrecip"
- mapPalette <- c("#bf812d", "#dfc27d", "white", "#80cdc1", "#35978f", "#01665e", "#003c30")
- }
- else
- {
- mapFill <- "Precip. - mm/day"
- mapVar <- "Precip"
- mapPalette <- c("#fff7fb", "#67a9cf","#3690c0", "#02818a", "#016c59", "#014636")
- }
- mapDirection <- 1
- combined_data <- dplyr::mutate(coordinates, Precip = round(86400*hector_annual_gridded_t[, as.numeric(input$mapYear)-1899], 4),
- deltaPrecip = round(((hector_annual_gridded_t[, as.numeric(input$mapYear)-1899] - hector_annual_gridded_t[, 1]) / hector_annual_gridded_t[, 1]) * 100 , 2),
- Lon=round(lon, 2), Lat=round(lat,2), Neg = ifelse(deltaPrecip < 0, TRUE, FALSE))
- }
-
- combined_data <- dplyr::select(combined_data, -c(lat, lon, colnum))
-
- lat_min <- -90
- lat_max <- 90
- lon_min <- -180
- lon_max <- 180
-
- # Validate lat/lon min/max input fields if the filter by lat/lon was checked
- if(input$input_map_filter)
- {
- validate(need(as.numeric(input$input_lat_min) >= -90 && (as.numeric(input$input_lat_min)) <= 90 &&
- (as.numeric(input$input_lat_min)) < (as.numeric(input$input_lat_max)), "Please enter a valid lat min"))
- validate(need(as.numeric(input$input_lat_max) >= -90 && (as.numeric(input$input_lat_max)) <= 90 &&
- (as.numeric(input$input_lat_max)) > (as.numeric(input$input_lat_min)), "Please enter a valid lat max"))
- validate(need(as.numeric(input$input_lon_min) >= -180 && (as.numeric(input$input_lon_min)) <= 180 &&
- (as.numeric(input$input_lon_min)) < (as.numeric(input$input_lon_max)), "Please enter a valid lon min"))
- validate(need(as.numeric(input$input_lon_max) >= -180 && (as.numeric(input$input_lon_max)) <= 180 &&
- (as.numeric(input$input_lon_max)) > (as.numeric(input$input_lon_min)), "Please enter a valid lon max"))
-
- # Assign local variables to input fields
- lat_min <- as.numeric(input$input_lat_min)
- lat_max <- as.numeric(input$input_lat_max)
- lon_min <- as.numeric(input$input_lon_min)
- lon_max <- as.numeric(input$input_lon_max)
-
- # Filter data set by lat/lon
- combined_data <- dplyr::filter(combined_data, Lat >= lat_min, Lat <= lat_max, Lon >= lon_min, Lon <= lon_max)
-
- }
-
- # Create world map borders
- mapWorld <- ggplot2::borders("world")
- # Construct ggplot map object
- ggplotMap <- ggplot2::ggplot() +
- mapWorld +
- ggplot2::geom_raster(data = combined_data, ggplot2::aes_string(x="Lon", y = "Lat", fill=mapVar),interpolate = TRUE ) +
- ggplot2::scale_fill_gradientn(colors = mapPalette) + #, limits = c(-1,1)*max(abs(combined_data[[mapVar]]))) +
- ggplot2::labs(x="\u00B0 Longitude", y="\u00B0 Latitude", title = paste0(input$mapCore, " - ", input$mapYear), fill = mapFill) +
- ggplot2::scale_y_continuous(limits=c(lat_min, lat_max), expand = c(0, 0), breaks=seq(-90,90,30))+
- ggplot2::scale_x_continuous(limits=c(lon_min, lon_max), expand = c(0, 0), breaks=seq(-180,180,30))
-
- # Separate save plot fixes missing shape layer when saving
- ggplotSave <<- ggplotMap
-
- localPlot <- plotly::ggplotly(p = ggplotMap )
- plotly::layout(p=localPlot, yaxis = list(tickformat = "\u00B0C", dtick = 10, showgrid=FALSE))
- plotly::layout(p=localPlot, xaxis = list(showgrid = FALSE))
-
- output[[mapname]] <- plotly::renderPlotly(localPlot)
- incProgress(1/1, detail = "Map loaded.")
- Sys.sleep(0.25)
- shinyjs::show(id = 'map-div')
-
- })
- })
- }
- },
-
- error = function(err)
- {
- # error handler picks up where error was generated
- shinyalert::shinyalert("Error Detected:",print(paste('There was an error when attempting to load the graph:',err)), type = "error")
- })
-}
-
-# Download handler for downloading the raw data output from a Hector run. This is activated upon button click.
-output$downloadData <- downloadHandler(
-
- filename = function()
- {
- paste('Hector-data-', Sys.Date(), '.csv', sep='')
- },
-
- content = function(file)
- {
- if(length (hcores) > 0)
- {
- dataList <- list()
- df <- data.frame()
- seriesname <- ""
- for(i in 1:length(hcores))
- {
- hdata <- hector::fetchvars(core = hcores[[i]], dates = 1800:globalVars[['endDate']], vars = outputVariables, "\n")
- hdata <- dplyr::mutate(hdata)
- if(names(hcores[i])=="Custom")
- seriesname <- input$input_ScenarioName
- else
- seriesname <- paste("RCP ", names(hcores[i]))
- hdata <- dplyr::mutate(hdata, scenario=seriesname)
- df <- data.frame(hdata)
- dataList[[i]] <- df
- }
-
- header_text <- paste("File created with Hector UI - https://github.com/JGCRI/hector-ui\n" ,
- "Model Parameters: " , input$input_paramToggle , "\n",
- "Alpha:,", input$input_aero, ",Beta:,", input$input_beta, ",Diff:,", input$input_diff,
- ",ECS:,", input$input_ecs, ",CO2:,", input$input_pco2, ",Q10:,", input$input_q10, ",Volc:,", input$input_volc,
- "\n")
-
- cat(header_text, file = file)
- lapply(dataList, function(x) write.table( data.frame(x), file , append= T, sep=',', row.names = F, ))
- }
- else
- {
- shinyalert::shinyalert("No active Hector cores", "Please set at least one of the RCP scenarios to active or upload a custom emissions scenario before downloading.", type = "warning")
- }
- }
-)
-
-# Download handler for higher resolution maps then the default plotly save
- output$downloadMap <- downloadHandler(
- filename = function()
- {
- paste("HectorMap",'.png',sep='')
- },
- content = function(file)
- {
- # browser()
- ggplot2::ggsave(filename = file, plot = ggplotSave, device = "png", dpi = 150, limitsize = TRUE, width = 15, height = 10)
- }
- )
diff --git a/inst/shinyApp/parameters.r b/inst/shinyApp/parameters.r
deleted file mode 100644
index f5edfa0..0000000
--- a/inst/shinyApp/parameters.r
+++ /dev/null
@@ -1,295 +0,0 @@
-# Contains parameter related functions and observers
-
-#' Assign Parameters from model to core
-#'
-#' @return no return value
-#' @export
-#'
-#' @examples
-setCoreParameters <- function(hcore)
-{
- hector::setvar(hcore, dates = NA, var = globalParameters['aero'], values = c(as.double(paramsList[['alpha']])), unit = NA)
- hector::setvar(hcore, dates = NA, var = globalParameters['beta'], values = c(as.double(paramsList[['beta']])), unit = NA)
- hector::setvar(hcore, dates = NA, var = globalParameters['diff'], values = c(as.double(paramsList[['diff']])), unit = "cm2/s")
- hector::setvar(hcore, dates = NA, var = globalParameters['ecs'], values = c(as.double(paramsList[['S']])), unit = "degC")
- hector::setvar(hcore, dates = NA, var = globalParameters['pco2'], values = c(as.double(paramsList[['C']])), unit = "ppmv CO2")
- hector::setvar(hcore, dates = NA, var = globalParameters['q10'], values = c(as.double(paramsList[['q10_rh']])), unit = NA)
- hector::setvar(hcore, dates = NA, var = globalParameters['volc'], values = c(as.double(paramsList[['volscl']])), unit = NA)
-}
-
-#' Assign Parameters from parameter model values into numeric input components
-#'
-#' @return no return value
-#' @export
-#'
-#' @examples
-assignParameters <- function()
-{
- # Update the on screen input components for parameters with the associated values from the chosen parameter group
- # Note - with the current code the parameters need to be in correct order or would have to switch to named calls
- print('in assign params')
- updateSliderInput(session, "input_aero", value=paramsList[['alpha']])
- updateSliderInput(session, "input_beta", value=paramsList[['beta']])
- updateSliderInput(session, "input_diff", value=paramsList[['diff']])
- updateSliderInput(session, "input_ecs", value=paramsList[['S']])
- #updateSliderInput(session, "input_pco2", value=paramsList[['C']])
- updateSliderInput(session, "input_q10", value=paramsList[['q10_rh']])
- updateSliderInput(session, "input_volc", value=paramsList[['volscl']])
-}
-
-#' Restore Parameters after changing model state
-#'
-#' Function that maintains persistence after the user has changed parameter values to the Hector core (after scenario change)
-#'
-#' @return no return value
-#' @export
-#'
-#' @examples
-restoreParameters <- function()
-{
- print('in restore params')
- setParameters()
-}
-
-#' Load an alternative model's parameters for emulation
-#'
-#' Observer function that responds to changes in input from the drop down in the model parameters section and loads a set of model params
-#'
-#' @return no return value
-#' @export
-#'
-#' @examples
-loadModelParameters <- function()
-{
- print("in load model params")
-
- if(input$input_paramToggle == "default")
- paramsList <<- globalParamsDefault
- else if(input$input_paramToggle == "canesm2")
- paramsList <<- globalParamsCanESM2
- else if(input$input_paramToggle == "cesm1-bgc")
- paramsList <<- globalParamsCESM1BGC
- else if(input$input_paramToggle == "gfdl-esm2g")
- paramsList <<- globalParamsGFDLESM2G
- else if(input$input_paramToggle == "miroc-esm")
- paramsList <<- globalParamsMIROCESM
- else if(input$input_paramToggle == "mpi-esm-lr")
- paramsList <<- globalParamsMPIESMLR
- else if(input$input_paramToggle == "mri-esm1")
- paramsList <<- globalParamsMRIESM1
-
- assignParameters()
-
- if(length(hcores) > 0)
- {
- for(i in 1:length(hcores))
- {
- setCoreParameters(hcores[[i]])
- }
-
- resetCore()
- }
-
- if(length(hcores) > 0)
- loadGraph()
-}
-
-#' Reset parameter values to current model's default
-#'
-#' Observer function to handle the user input on the reset parameters button - reset hector parameters to model defaults
-#'
-#' @return no return value
-#' @export
-#'
-#' @examples
-resetParams <- function()
-{
- print("in reset params")
- loadModelParameters()
-}
-
-
-#' Map Hector parameters to field values
-#'
-#' Function that gets the input parameters from the hector core and maps them to the input fields. This would normally be called on first load or when parameters are reset.
-#'
-#' @return no return value
-#' @export
-#'
-#' @examples
-loadParameters <- function()
-{
- print("in load params")
-
- # Fetch hector parameters from core
- for(i in 1:length(hcores))
- {
- hdata <- hector::fetchvars(core = hcores[[i]], dates = NA, vars = globalParameters, "\n")
- }
-
- # Update the on screen input components for parameters with the associated values stored in hector core
- updateSliderInput(session, "input_aero", value=round(hdata[which(hdata$variable == "alpha"), 4], 2))
- updateSliderInput(session, "input_beta", value=round(hdata[which(hdata$variable == "beta"), 4], 2))
- updateSliderInput(session, "input_diff", value=round(hdata[which(hdata$variable == "diff"), 4], 2))
- updateSliderInput(session, "input_ecs", value=round(hdata[which(hdata$variable == "S"), 4], 2))
- #updateSliderInput(session, "input_pco2", value=round(hdata[which(hdata$variable == "C0"), 4], 2))
- updateSliderInput(session, "input_q10", value=round(hdata[which(hdata$variable == "q10_rh"), 4], 2))
- updateSliderInput(session, "input_volc", value=round(hdata[which(hdata$variable == "volscl"), 4], 2))
-
- # Store params in the top level variable paramsList for persistence
- paramsList['alpha'] <<- hdata[which(hdata$variable == "alpha"), 4]
- paramsList['beta'] <<- hdata[which(hdata$variable == "beta"), 4]
- paramsList['diff'] <<- hdata[which(hdata$variable == "diff"), 4]
- paramsList['S'] <<- hdata[which(hdata$variable == "S"), 4]
- paramsList['C'] <<- hdata[which(hdata$variable == "C0"), 4]
- paramsList['q10_rh'] <<- hdata[which(hdata$variable == "q10_rh"), 4]
- paramsList['volscl'] <<- hdata[which(hdata$variable == "volscl"), 4]
-}
-
-
-#' Set parameters to active Hector cores after user change
-#'
-#' Observer function to handle user click on the set parameters button.
-#'
-#' @return no return value
-#' @export
-#'
-#' @examples
-setParameters <- function()
-{
- print("in set parameters")
- if(length(hcores) > 0)
- {
- newVals <- vector()
- pass_check <- TRUE
- # Run through variables and make sure none are left empty and update the top level scope paramsList variable
- # and the hector core with any changed values.
- tryCatch(
- {
- for(i in 1:length(hcores))
- {
- if(!is.na(input$input_aero) && input$input_aero <= 1 && input$input_aero > 0)
- {
- hector::setvar(hcores[[i]], dates = NA, var = globalParameters['aero'], values = c(as.double(input$input_aero)), unit = NA)
- paramsList['alpha'] <<- as.double(input$input_aero)
- }
- else
- {
- shinyalert::shinyalert("Input Error:", "Aeroscale Forcing value out of bounds. Please use (0,1) as limits.", type = "error")
- pass_check <- FALSE
- }
- if(!is.na(input$input_beta) && input$input_beta > 0 && input$input_beta <= 5)
- {
- hector::setvar(hcores[[i]], dates = NA, var = globalParameters['beta'], values = c(as.double(input$input_beta)), unit = NA)
- paramsList['beta'] <<- as.double(input$input_aero)
- }
- else
- {
- shinyalert::shinyalert("Input Error:", "CO2 Fertilization Factor value out of bounds. Please use (0,5) as limits.", type = "error")
- pass_check <- FALSE
- }
- if(!is.na(input$input_diff) && input$input_diff > 0)
- {
- hector::setvar(hcores[[i]], dates = NA, var = globalParameters['diff'], values = c(as.double(input$input_diff)), unit = "cm2/s")
- paramsList['diff'] <<- as.double(input$input_aero)
- }
- else
- {
- shinyalert::shinyalert("Input Error:", "Ocean Heat Diffusivity value out of bounds. Please use (>0) as limits.", type = "error")
- pass_check <- FALSE
- }
- if(!is.na(input$input_ecs) && input$input_ecs >=1 && input$input_ecs <= 6)
- {
- hector::setvar(hcores[[i]], dates = NA, var = globalParameters['ecs'], values = c(as.double(input$input_ecs)), unit = "degC")
- paramsList['S'] <<- as.double(input$input_aero)
- }
- else
- {
- shinyalert::shinyalert("Input Error:", "ECS value out of bounds. Please use (1,6) as limits.", type = "error")
- pass_check <- FALSE
- }
- # if(!is.na(input$input_pco2) && input$input_pco2 >= 250 && input$input_pco2 <= 300)
- # {
- # hector::setvar(hcores[[i]], dates = NA, var = globalParameters['pco2'], values = c(as.double(input$input_pco2)), unit = "ppmv CO2")
- # paramsList['C'] <<- as.double(input$input_aero)
- # }
- # else
- # {
- # shinyalert::shinyalert("Input Error:", "Preindustrial CO2 value out of bounds. Please use (250, 300) as limits.", type = "error")
- # pass_check <- FALSE
- # }
- if(!is.na(input$input_q10) && input$input_q10 > 0 && input$input_q10 <= 10)
- {
- hector::setvar(hcores[[i]], dates = NA, var = globalParameters['q10'], values = c(as.double(input$input_q10)), unit = NA)
- paramsList['q10_rh'] <<- as.double(input$input_aero)
- }
- else
- {
- shinyalert::shinyalert("Input Error:", "Q10 value out of bounds. Please use (0, 10) as limits.", type = "error")
- pass_check <- FALSE
- }
- if(!is.na(input$input_volc) && input$input_volc > 0 && input$input_volc <= 1)
- {
- hector::setvar(hcores[[i]], dates = NA, var = globalParameters['volc'], values = c(as.double(input$input_volc)), unit = NA)
- paramsList['volscl'] <<- as.double(input$input_aero)
- }
- else
- {
- shinyalert::shinyalert("Input Error:", "Volcanic Forcing value out of bounds. Please use (0,1) as limits.", type = "error")
- pass_check <- FALSE
- }
- }
- if(pass_check == TRUE)
- {
- resetCore()
- if(length(hcores) > 0)
- loadGraph()
- }
- },
- warning = function(war)
- {
- # warning handler picks up where error was generated
- showModal(modalDialog(
- title = "Important message",
- paste("Details: ",war)
- ))
- },
- error = function(err)
- {
- # error handler picks up where error was generated
- print(paste("\n ERROR: Set Params - ", as.character(err[1]), sep=" "))
- shinyalert::shinyalert("Oops!",print(paste('Error:',err)), type = "error")
-
- })
- }
- else
- {
- shinyalert::shinyalert("No active Hector cores", "Please set at least one of the RCP scenarios to active or upload a custom emissions scenario before setting parameters.", type = "warning")
- }
-}
-
-#' Notifies system that parameters have changed state
-#'
-#' This function is used to set the corresponding flag so that they system knows the parameters have been changed
-#'
-#' @param toggle
-#'
-#' @return no return value
-#' @export
-#'
-#' @examples
-setParamsChanged <- function(toggle)
-{
- print("in set Params Changed")
- # Check input validation here
-
- if(toggle == TRUE)
- {
- paramsChanged <<- TRUE
- }
- else
- {
- paramsChanged <<- FALSE
- }
-
-}
diff --git a/inst/shinyApp/rsconnect/shinyapps.io/jgcri/HectorUI.dcf b/inst/shinyApp/rsconnect/shinyapps.io/jgcri/HectorUI.dcf
deleted file mode 100644
index 3fd36da..0000000
--- a/inst/shinyApp/rsconnect/shinyapps.io/jgcri/HectorUI.dcf
+++ /dev/null
@@ -1,12 +0,0 @@
-name: HectorUI
-title: HectorUI
-username:
-account: jgcri
-server: shinyapps.io
-hostUrl: https://api.shinyapps.io/v1
-appId: 976821
-bundleId: 3844134
-url: https://jgcri.shinyapps.io/HectorUI/
-when: 1605034751.36457
-asMultiple: FALSE
-asStatic: FALSE
diff --git a/inst/shinyApp/server.r b/inst/shinyApp/server.r
deleted file mode 100644
index 4f57fce..0000000
--- a/inst/shinyApp/server.r
+++ /dev/null
@@ -1,301 +0,0 @@
-# This file is the application controller
-
-library(hectorui)
-library(hector)
-
-
-#' Global constants for hectorui
-#' @import hector
-#' @name constants
-NULL
-
-
-# Global vars for misc items such as the run date end year (2100)
-#' @details \code{globalVars}: Miscellaneous global variables
-#' @rdname constants
-#' @export
-globalVars <- get_globalVars()
-
-
-# Global vars for scale colors
-#' @details \code{globalColorScales}: Scale colors
-#' @rdname constants
-#' @export
-globalColorScales <- get_globalColorScales()
-
-
-# Global file paths vector
-#' @details \code{globalScenarios} Scenario input file names and paths
-#' @rdname constants
-#' @export
-rcps <- get_rcps()
-
-
-# Global file paths vector
-#' @details \code{globalScenarios} Scenario input file names and paths
-#' @rdname constants
-#' @export
-globalScenarios <- get_globalScenarios()
-
-
-# Global scenario color schemes
-#' @details \code{globalScenarios} Scenario color schemes
-#' @rdname constants
-#' @export
-globalScenarioColors <- get_globalScenarioColors()
-
-
-# Global temperature patterns
-#' @details \code{globalTempPatterns} Create global temperature patterns list
-#' @rdname constants
-#' @export
-globalTempPatterns <- get_globalTempPatterns()
-
-
-# Global precipitation patterns list
-#' @details \code{globalPrecipPatterns} Create global precipitation patterns list
-#' @rdname constants
-#' @export
-globalPrecipPatterns <- get_globalPrecipPatterns()
-
-
-# Create master list of parameter lookup strings
-#' @details \code{globalParameters}: Capability strings (internal name lookup/mapping) for Hector parameters - (should match UI component ids)
-#' @rdname constants
-#' @export
-globalParameters <- get_globalParameters()
-
-
-# Default Hector parameters
-#' @details \code{globalParamsDefault}: Default Parameter Set
-#' @rdname constants
-#' @export
-globalParamsDefault <- get_globalParamsDefault()
-
-
-# CanESM2 Parameter Sets
-#' @details \code{globalParamsCanESM2}: CanESM2 Parameters for model emulation
-#' @rdname constants
-#' @export
-globalParamsCanESM2 <- get_globalParamsCanESM2()
-
-
-# CESM1-BGC Parameter Set
-#' @details \code{globalParamsCESM1BGC}: CESM1-BGC Parameters for model emulation
-#' @rdname constants
-#' @export
-globalParamsCESM1BGC <- get_globalParamsCESM1BGC()
-
-
-# GFDL-ESM2G Parameter Set
-#' @details \code{globalParamsGFDLESM2G}: GFDL-ESM2G Parameters for model emulation
-#' @rdname constants
-#' @export
-globalParamsGFDLESM2G <- get_globalParamsGFDLESM2G()
-
-
-# MIROC-ESM Parameter Set
-#' @details \code{globalParamsMIROCESM}: MIROC-ESM Parameters for model emulation
-#' @rdname constants
-#' @export
-globalParamsMIROCESM <- get_globalParamsMIROCESM()
-
-
-# MPI-ESM-LR Parameter Set
-#' @details \code{globalParamsMPIESM-LR}: MPI-ESM-LR Parameters for model emulation
-#' @rdname constants
-#' @export
-globalParamsMPIESMLR <- get_globalParamsMPIESMLR()
-
-
-# MRI-ESM1 Parameter Set
-#' @details \code{globalParamsMRIESM1}: MRI-ESM1 Parameters for model emulation
-#' @rdname constants
-#' @export
-globalParamsMRIESM1 <- get_globalParamsMRIESM1()
-
-
-# Create master list of variable lookups for "capabilities" (output variables for graphing)
-#' @details \code{globalCapabilities} Capability string (internal name lookup/mapping) for Hector output variables, organized by group
-#' @rdname constants
-#' @export
-globalCapabilities <- get_globalCapabilities()
-
-
-
-
-#' Main server/data processing function
-#'
-#' The server function is the main function that processes inputs and handles data i/o.
-#' This is required for Shiny apps using the separate UI/Server file architecture.
-#'
-#' @param input - Creates the Shiny input object
-#' @param output - Creates the Shiny output object
-#' @param session - Creates the Shiny session object
-#' @export
-#'
-#' @examples
-server <- function(input, output, session)
-{
- # Needed to interact Shiny with client side JS
- shinyjs::useShinyjs()
-
- # Load other source files
- source("parameters.r", local = TRUE)
- source("core.r", local = TRUE)
- source("output.r", local = TRUE)
- source("observers.r", local = TRUE)
-
-#----- Set up non global variables in top level application scope
-
- ggplot2::theme_set(ggplot2::theme_minimal())
- outputVariables <- list()
- inifile <- system.file('input/hector_rcp45.ini', package='hector', mustWork=TRUE)
- hcores <- list()
- totalActivePlots <- 0
- customLoaded <- FALSE
- selectedIndex <<- 1
- ggplotSave <<- ggplot2::ggplot()
-
- # These variables are for storing the current parameter values so that if a change is made (like loading new scenario)
- # then the custom params set by user will persist beyond core restarts
- paramsList <- list()
- paramsList <- globalParamsDefault
- assignParameters()
-
- # These two lines of code allows the main Hector cores object to be reactive and able to be linked with the maps scenario dropdown
- coresReactive <- reactive({
- return(names(hcores))
- })
- output$coreMapping <- renderUI({
- selectInput(inputId = "mapCore", width = 180, label = ("Available Scenarios:"), choices = coresReactive(), selected = selectedIndex)
- })
-
-#----- End set up local vars
-
-#----- Set up graphs and maps
-
- # This UI output variable is responsible for generating the 4 graphs in the output section.
- output$plots <- renderUI(
- {
- plot_output_list <- lapply(1:4, function(i)
- {
- plotname <- paste("plot", i, sep="")
- plot <- plotly::plotlyOutput(plotname, height = '100%', width = '100%')
-
- tags$div(class = "group-output",
- plotly::plotlyOutput(plotname, height = '100%', width = '100%')
- )
- })
-
- # Convert the list to a tagList - this is necessary for the list of items to display properly.
- do.call(tagList, plot_output_list)
- })
-
- # This UI output variable is responsible for rendering the downscaled maps. It is initiated as 'hidden' using shinyjs until the user first loads a map.
- output$maps <- renderUI(
- {
- map_output_list <- lapply(1:1, function(i)
- {
- mapname <- paste("map", i, sep="")
- map <- plotly::plotlyOutput(mapname, width = '100%')
-
- shinyjs::hidden(tags$div(class = "group-output", id = "map-div",
- shinycustomloader::withLoader(map, type="text",
- loader = list(shinycustomloader::marquee("Please Wait... Finalizing Raster Output", style="font-size:30px; color:white; text-align:center", scrollamount = 0))))
- )
- })
-
- # Convert the list to a tagList - this is necessary for the list of items to display properly.
- do.call(tagList, map_output_list)
- })
-
- # Set initial plotting variables
- for(i in 1:4)
- {
- plotname <- paste("plot", i, sep="")
- shinyjs::hide(plotname)
- }
-
- # Set initial mapping variables and hide
- for(i in 1:1)
- {
- mapname <- paste("map", i, sep="")
- shinyjs::hide(mapname)
- }
-#----- End set up plots and maps
-
-#----- Set up observer functions to catch user interaction on the input fields
-
- observeEvent(input$launch_scenario, updateTabsetPanel(session, "nav", selected = "Explore Hector"), ignoreInit = TRUE)
- observeEvent(input$capabilities, setCapabilities(), ignoreInit = FALSE)
- observeEvent(input$loadGraphs, {setParameters(); loadGraph()}, ignoreInit = TRUE)
- # observeEvent(input$set_Params, setParameters(), ignoreInit = TRUE)
- observeEvent(input$input_ScenarioFile, loadScenario(), ignoreInit = TRUE)
- observeEvent(input$reset_Params, resetParams(), ignoreInit = TRUE)
- observeEvent(input$input_RCP_2.6, {setRCP("RCP-2.6"); setParameters(); loadGraph()}, ignoreInit = TRUE)
- observeEvent(input$input_RCP_4.5, {setRCP("RCP-4.5"); setParameters(); loadGraph()}, ignoreInit = FALSE)
- observeEvent(input$input_RCP_6.0, {setRCP("RCP-6.0"); setParameters(); loadGraph()}, ignoreInit = TRUE)
- observeEvent(input$input_RCP_8.5, {setRCP("RCP-8.5"); setParameters(); loadGraph()}, ignoreInit = TRUE)
- observeEvent(input$input_enableCustom, setRCP("Custom"), ignoreInit = TRUE)
- observeEvent(input$input_load_custom, loadCustomScenario(), ignoreInit = TRUE)
- observeEvent(input$input_load_emissions, loadCustomEmissions(), ignoreInit = TRUE)
- observeEvent(input$input_paramToggle, loadModelParameters(), ignoreInit = TRUE)
- observeEvent(input$input_enableCustom, toggleCustom(), suspended = TRUE)
- observeEvent(input$input_set_custom_emissions, setCustomEmissions(), ignoreInit = TRUE)
- observeEvent(input$input_reset_custom_emissions, resetCustomEmissions(), ignoreInit = TRUE)
- observeEvent(input$loadMaps, loadMap(), ignoreInit = TRUE)
- observeEvent(input$input_submit_feedback, sendFeedback(), ignoreInit = TRUE)
- observeEvent(input$mapCore, updateIndex(), ignoreInit = TRUE)
- observeEvent(input$saveMap, saveMap(), ignoreInit = TRUE)
-
- # Observe param changes
- #observeEvent(input$input_pco2, loadGraph(), ignoreInit = FALSE)
- observeEvent(input$input_q10, {setParameters(); loadGraph()}, ignoreInit = FALSE)
- observeEvent(input$input_volc, {setParameters(); loadGraph()}, ignoreInit = FALSE)
- observeEvent(input$input_aero, {setParameters(); loadGraph()}, ignoreInit = FALSE)
- observeEvent(input$input_beta, {setParameters(); loadGraph()}, ignoreInit = FALSE)
- observeEvent(input$input_diff, {setParameters(); loadGraph()}, ignoreInit = FALSE)
- observeEvent(input$input_ecs, {setParameters(); loadGraph()}, ignoreInit = FALSE)
-
-
-#function()
-
- # This is a group Observer block for all of the params fields because they all respond the same way
- #observe({
- #input$input_pco2
- #input$input_q10
- #input$input_volc
- #input$input_aero
- #input$input_beta
- #input$input_diff
- #input$input_ecs
- #})
- # ^^ replaced by observeEvent functions above
-
-#----- End observer function setup
-
-#----- Custom Functions
-
- # Renders feedback form
- output$feedbackFrame <- renderUI({
- frame_link <- tags$iframe(src="https://docs.google.com/forms/d/e/1FAIpQLSf6inU3DHAE5tZo4vdgtTjtFZvw7OCuH_5xbLvnj5tdqiRVNA/viewform?embedded=true",
- height=1100, width=700, seamless=NA)
- frame_link
- })
-
- toggleCustom <- function()
- {
- shinyjs::disable("input_enableCustom")
- }
-
- testMe <- function()
- {
- if(!is.na(input$input_beta) && (as.double(input$input_beta) < 0.01 ))
- {
- updateSliderInput(session = session, inputId = "input_beta", value = 1)
- }
- }
-}
-
-#----- End Custom Functions
diff --git a/inst/shinyApp/ui.r b/inst/shinyApp/ui.r
deleted file mode 100644
index 217f0b9..0000000
--- a/inst/shinyApp/ui.r
+++ /dev/null
@@ -1,560 +0,0 @@
-#
-# This is a Shiny web application UI document. It describes the on screen components that define the visual application.
-
-library(shinyBS)
-library(shinyWidgets)
-
-# Using Shiny Fixed layout
-fluidPage(theme = shinythemes::shinytheme("readable"),
- shinyalert::useShinyalert(),
- title = "HectorUI: An Interactive Climate Model",
-
- # Code that gets called on first load of application to load in any themes/css etc
- # Loads the custom.css file that contains custom styles and overwrites some built in styles
- tags$head
- (
- tags$link(rel = "stylesheet", type = "text/css", href = "style.css")
- ),
- shinyjs::useShinyjs(),
-
- tags$div(class = "container",
- tags$img(src = "images/earth-header.png", height = "300px", width = "100%", class = "earth", alt = "Earth's atmosphere"),
- tags$div(
- a(
- img(src = "images/GCIMS_logo_alt.svg", class = "logo"), href = "https://gcims.pnnl.gov/", target = "_blank"),
- h1("HectorUI", class = "header-text-title"),
- h2("An Interactive Climate Model", class = "header-text-sub", style = "font-weight:normal; "),
- ),
- ),
- br(),
- # Main component from which all other components fall under, navbarPage, a multi-page user-interface that includes a navigation bar
- navbarPage
- (
- id = "nav",
- title = "",
- collapsible = TRUE,
- # Main navigation
- tabPanel(
- "Home",
- fluidRow(column(7, div(class = "home-text",
- p("Welcome to the user interface for",
- tags$b("Hector:"),
- " an open source, object-oriented, and interactive simple global climate carbon-cycle model.
- It runs essentially instantaneously while still representing the most critical global scale earth system processes,
- and is one of a class of models heavily used for for emulating complex climate models and uncertainty analyses.", style = "float:left"),
- p("This interactive version is built upon previous work by developers at the ",
- a("Joint Global Change Research Institute (JGCRI)", href="http://globalchange.umd.edu/", target="blank"),
- " including the development of the initial C++ version of Hector, and the follow up R Package, \"Hector R\"."),
- style = "float: left"
- )),
- column(4, div(
- br(),
- br(),
-
- actionButton(inputId = "launch_scenario",
- label = "Explore Hector",
- style = "background: #4174C3; color: white;
- font-size: 24px; padding: 32px 24px;
- box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);"),
- align = "center"
- ))
- )
- ),
- tabPanel(
- "Guides",
- mainPanel(
- style="vertical-align: middle;",
- h3("Ready to get started?",
- tags$a("View the Guide/Tutorial", href="https://jgcri.github.io/hectorui/articles/Tutorial.html", target="blank")),
- br(),
- HTML('')
-
- )
- ),
- # Main panel for the interactive section of the application
- tabPanel(
- "Explore Hector",
- sidebarPanel(
- width = 4,
- tabsetPanel(
- tabPanel(class = "params",
- "Standard Scenarios",
- h5("Representative Concentration Pathways (RCPs)"),
- # tags$hr(class="hrNav"),
- # shinyWidgets::awesomeCheckboxGroup(inputId = "input_RCP", label = "",
- # choices = c("2.6", "4.5", "6.0", "8.5"), inline = TRUE, status = "info"),
- shinyWidgets::prettyCheckbox(inputId = "input_RCP_2.6", label = "2.6", value = FALSE, width = 45,
- inline = TRUE, icon = icon("check"), animation = "jelly", status = "info"),
- shinyWidgets::prettyCheckbox(inputId = "input_RCP_4.5", label = "4.5", value = TRUE, width = 45,
- inline = TRUE, icon = icon("check"), animation = "jelly", status = "success"),
- shinyWidgets::prettyCheckbox(inputId = "input_RCP_6.0", label = "6.0", value = FALSE, width = 45,
- inline = TRUE, icon = icon("check"), animation = "jelly", status = "warning"),
- shinyWidgets::prettyCheckbox(inputId = "input_RCP_8.5", label = "8.5", value = FALSE, width = 45,
- inline = TRUE, icon = icon("check"), animation = "jelly", status = "danger"),
-
- chooseSliderSkin(skin = "Flat", color = "#375a7f"),
-
- h5("Model Parameters"),
- fluidRow(
- column(6,
- selectInput("input_paramToggle", label = NULL,
- choices = list("Hector Default" = "default", "CanESM2" = "canesm2",
- "CESM1-BGC" = "cesm1-bgc", "GFDL-ESM2G" = "gfdl-esm2g",
- "MIROC-ESM" = "miroc-esm", "MPI-ESM-LR" = "mpi-esm-lr",
- "MRI-ESM1" = "mri-esm1"))
- ),
- column(6,
- actionButton(inputId="reset_Params", label="Reset",
- style = "background: #4174C3; color: white; padding:4px; display:center-align")
- ),
- ),
- fluidRow(
- column(12,
- sliderInput("input_aero", "Aerosol forcing scaling factor", min = 0.01, max = 1, value = 1, width = "90%"),
- sliderInput("input_beta", "CO2 fertilization factor", min = 0.01, max = 4, value = 0.36, step = 0.01, width = "90%"),
- sliderInput("input_diff", "Ocean heat diffusivity", min = 0.1, max = 5, value = 2.3, step = 0.1, post = " cm2/s", width = "90%"),
- sliderInput("input_ecs", "Equilibrium climate sensitivity", min = 1, max = 6, value = 3, step = 0.1, post = " °C", width = "90%"),
- #sliderInput("input_pco2", "Preindustrial CO2 conc. (ppmv CO2)", min = 250, max = 300, value = 276.09, post = " ppmv CO2"), #might remove for v3
- sliderInput("input_q10", "Heterotrophic Temperature Sensitivity", min = 1, max = 5, value = 2, step = 0.1, width = "90%"),
- sliderInput("input_volc","Volcanic forcing scaling factor", min = 0.01, max = 1, value = 1, width = "90%"),
-
- # Add hover popups with parameter descriptions
- bsPopover("input_aero", "Increasing this means aerosols exert a stronger radiative forcing",
- placement = "top", trigger = "hover", options = NULL),
- bsPopover("input_beta", "Increasing this means vegetation grows faster as CO2 increases",
- placement = "top", trigger = "hover", options = NULL),
- bsPopover("input_diff", "Increasing this means heat moves deeper into the ocean quicker",
- placement = "top", trigger = "hover", options = NULL),
- bsPopover("input_ecs", "Increasing this means a larger temperature rise as CO2 increases",
- placement = "top", trigger = "hover", options = NULL),
- bsPopover("input_pco2", "Increasing this means a higher atmospheric CO2 as the model starts",
- placement = "top", trigger = "hover", options = NULL),
- bsPopover("input_q10", "Increasing this means soil microbes respire faster as temperature rises",
- placement = "top", trigger = "hover", options = NULL),
- bsPopover("input_volc", "Increasing this means that volcanic eruptions exert a stronger radiative forcing",
- placement = "top", trigger = "hover", options = NULL)
-
- #actionButton(inputId="set_Params", label="Set Parameters", style = "background: #4174C3; color: white;"),
- ),
- ),
-
- # Divider that holds the custom emissions options/controls
- # div(class = "c-emissions",
- # h5("Custom Emissions"),
- # tags$hr(class="hrNav"),
- # p("Note: Custom emissions are only applicable to standard scenarios (not custom created scenarios)"),
- # tags$table(
- # tags$tr(width = "100%",
- # tags$td(width="25%", "Emissions:"),
- # tags$td(shiny::selectInput(inputId = "input_custom_emissions", label = NULL, width = 200, multiple = F,
- # choices = list('Emissions' = list("Black Carbon Emissions" = 'e_bc', "Organic Carbon Emissions"='e_oc'))))
- # )
- # ),
- # tags$table(
- # tags$tr(width = "100%",
- # tags$td(align = "left", shiny::textInput(inputId = "input_custom_start", label = "Start Year:", width = 65)),
- # tags$td(width = 15),
- # tags$td(align = "left", shiny::textInput(inputId = "input_custom_end", label = "End Year:", width = 65)),
- # tags$td(width = 15),
- # tags$td(align = "left", shiny::textInput(inputId = "input_emissions_value", label = "Value (Tg):", width = 65)),
- # tags$td()
- # )
- # ),
- # tags$table(
- # tags$tr(width = "100%",
- # tags$td(width = "15%", align="left", class="tdPushTop",
- # popify(div(class="paramDivsPushTop", icon("info-circle", "fa-1x")), title = "Sloping Emissions",
- # content = "Choosing this option will create a smooth slope from the starting years value to the specified value at the end year.", placement = "top" )),
- # tags$td(width = "85%",shinyWidgets::prettyCheckbox(animation = "pulse", inputId = "input_slope_emissions", label = "Slope Emissions", value = FALSE, inline = TRUE, icon = icon("check")))
- # )
- # ),
- # div(
- # actionButton(inputId="input_set_custom_emissions", label="Set Emissions", style = "background: #4174C3; color: white;"),
- # actionButton(inputId="input_reset_custom_emissions", label="Reset All Emissions", style = "background: #4174C3; color: white;"),
- # popify(div(class="paramDivs", icon("info-circle", "fa-1x")), title = "Resetting Emissions",
- # content = "This will reset all active Standard Hector cores to their default state, overwriting any custom emissions AND parameter changes.", placement = "top" )
- # )
- # )# ) Collapsible comment
- # )
-
- ),
- # Custom Scenarios Tab Panel
- tabPanel
- (class = "params",
- "Custom Scenarios",
- div
- (
- h5("Custom Emissions Pathway"),
- tags$hr(class="hrNav"),
- p("Steps to run your own scenario with custom emissions:"),
- tags$ol(
- tags$li("Choose a baseline RCP scenario as your starting point"),
- tags$li("Give your new custom scenario a name"),
- tags$li("Download the emissions file template for that scenario and enter your own emissions"),
- tags$li("Upload the new customized emissions file")
- ),
- p(tags$strong("Do not edit any field names or change the CSV file in any way other than changing the data")),
- tags$table(
- tags$tr(width = "100%",
- tags$td(width = "145", "Baseline Scenario:"),
- tags$td(width = "155", selectInput("input_custom_RCP", label = NULL, list("RCP 2.6" = "RCP-2.6","RCP 4.5"="RCP-4.5", "RCP 6.0"="RCP-6.0", "RCP 8.5" = "RCP-8.5"), width=150, selected = "RCP-4.5"))
- ),
- tags$tr(width = "100%",
- tags$td(width = "145", "Your Scenario Name:"),
- tags$td(width = "200", textInput("input_custom_scenarioName", label = NULL, width=195, value = ""))
- )
- ),
- div(
- conditionalPanel(
- condition = "input.input_custom_RCP == 'RCP-2.6'",
- a(h6("Download RCP 2.6 Emissions File Template"), href="input/emissions/RCP26_custom_template.csv")
- ),
- conditionalPanel(
- condition = "input.input_custom_RCP == 'RCP-4.5'",
- a(h6("Download RCP 4.5 Emissions File Template"), href="input/emissions/RCP45_custom_template.csv")
- ),
- conditionalPanel(
- condition = "input.input_custom_RCP == 'RCP-6.0'",
- a(h6("Download RCP 6.0 Emissions File Template"), href="input/emissions/RCP6_custom_template.csv")
- ),
- conditionalPanel(
- condition = "input.input_custom_RCP == 'RCP-8.5'",
- a(h6("Download RCP 8.5 Emissions File Template"), href="input/emissions/RCP85_custom_template.csv")
- ),
- fileInput("input_custom_emissions_file", "Upload Custom Emissions File:", width=275, buttonLabel = "Choose File", accept = c("text/csv", ".csv", "text/comma-separated-values,text/plain")),
- div(
- class="paramDivs", actionButton(inputId="input_load_emissions", label="Create Scenario"))
- )
- ) # End Div
- ) # End Custom Scenarios Tab Panel
- )
- ),
- # Right hand content panel - Main panel that is used for output
- mainPanel
- (width = 8,
- tabsetPanel
- (
- # Graphs Tab
- tabPanel
- (fixed = TRUE,
- p(icon("chart-line","fa-2x"), "Scenario Output", value="outputTab"),
- br(),
- div(
- tags$table
- (
- tags$tr
- (class = "output-vars",
- tags$td
- (
- selectInput
- ("capabilities", "Choose Output Variables (up to 4):",
- list('Carbon Cycle' = list("Atmospheric CO2"="cc_co2", "Atmospheric Carbon Pool"="cc_acp", "FFI Emissions"="cc_ffi", "LUC Emissions"="cc_luc"),
- 'Concentrations' = list("Amospheric N2O"='c_an20'),
- 'Emissions' = list("Black Carbon Emissions" = 'e_bc', "Organic Carbon Emissions"='e_oc'), #"RF - H2O"='f_h2o', "RF - Ozone"='f_oz',
- 'Forcings' = list("RF - Total"='f_rft', "RF - Albedo"='f_alb', "RF - CO2"='f_co2', "RF - N2O"='f_n2o', "RF - Black Carbon"='f_bc',
- "RF - Organic Carbon"='f_oc', "RF - SO2 Direct"='f_so2d', "RF - SO2 Indirect"='f_so2i', "RF - SO2 Total"='f_so2t', "RF - Volcanic Activity"='f_va', "RF - CH4"='f_ch4'),
- # 'Halocarbon Emissions' = list("CF4 Emissions"='he_cf4', "C2F6 Emissions"='he_c2f6', "HFC-23 Emissions"='he_hfc23', "HFC-32 Emissions"='he_hfc32', "HFC-4310 Emissions"= 'he_hfc4310', "HFC-125 Emissions"='he_hfc125', "HFC-134a Emissions"='he_hfc134a', "HFC-143a Emissions"='he_hfc143a', "HFC-227ea Emissions"='he_hfc227ea',
- # "HFC-245fa Emissions"='he_hfc245fa', "SF6 Emissions"='he_sf6', "CFC-11 Emissions"='he_cfc11', "CFC-12 Emissions"='he_cfc12', "CFC-113 Emissions"='he_cfc113',"CFC-114 Emissions"='he_cfc114',"CFC-115 Emissions"='he_cfc115',"CCl4 Emissions"='he_ccl4', "CH3CCl3 Emissions"='he_ch3ccl3',
- # "HCFC-22 Emissions"='he_hcfc22', "HCFC-141b Emissions"='he_hcfc141b', "HCFC-142b Emissions"='he_hcfc142b', "Halon-1211 Emissions"='he_halon1211', "Halon-1301 Emissions"='he_halon1301', "Halon-2402 Emissions"='he_halon2402', "CH3Cl Emissions"='he_ch3cl', "CH3Br Emissions"='he_ch3br'),
- 'Halocarbon Forcings' = list("CF4 Forcing"='hf_cf4', "C2F6 Forcing"='hf_c2f6', "HFC-23 Forcing"='hf_hfc23', "HFC-4310 Forcing"='hf_hfc4310', "HFC-125 Forcing"='hf_hfc125', "HFC-143a Forcing"='hf_hfc143a',
- "HFC-254fa Forcing"='hf_hfc245fa', "SF6 Forcing"='hf_hfcsf6', "CFC-11 Forcing"='hf_cfc11', "CFC-12 Forcing"='hf_cfc12', "CFC-113 Forcing"='hf_cfc113',"CFC-114 Forcing"='hf_cfc114',"CFC-115 Forcing"='hf_cfc115',"CCl4 Forcing"='hf_ccl4', "CH3CCl3 Forcing"='hf_ch3ccl3',
- "Halon-1211 Forcing"='hf_halon1211', "Halon-1301 Forcing"='hf_halon1301', "Halon-2402 Forcing"='hf_halon2402', "CH3Cl Forcing"='hf_ch3cl', "CH3Br Forcing"='hf_ch3br'), #"HCFC-22 Forcing"='hf_hcfc22', "HCFC-141b Forcing"='hf_hcfc141b', "HCFC-142b Forcing"='hf_hcfc142b',
- 'Methane' = list("Atmospheric CH4"='m_a_ch4', "Emissions CH4"='m_e_ch4'),
- # 'Ocean' = list("Ocean Carbon Flux"='o_cf', "Ocean Total Carbon"='o_tc', "Ocean Surface High-Lat Carbon"='o_os_hlc', "Ocean Surface Low-Lat Carbon"='o_os_llc', "Ocean Intermediate Carbon"='o_ic', "Ocean Deep Carbon"='o_dc', "Thermohaline Overturning"='o_to',
- # "High-Lat Overturning"='o_hl_o', "Warm-Intermediate Exchange"='o_wie', "Intermediate-Deep Exchange"='o_ide', "High Latitude Ph"='o_hl_ph', "Low Latitude Ph"='o_ll_ph', "Atmosphere-Ocean Flux - High Lat"='o_hl_aof', "Atmosphere-Ocean Flux - Low Lat"='o_ll_aof',
- # "Partial Pressure CO2 - High Lat"='o_hl_pp_co2',"Partial Pressure CO2 - Low Lat"='o_ll_pp_co2',"Dissolved Inorganic C - High Lat"='o_hl_dic', "Dissolved Inorganic C - Low Lat"='o_ll_dic', "Ocean Temperature - High Lat"='o_hl_t', "Ocean Temperature - Low Lat"='o_ll_t',
- # "Carbonate Concentration - High Lat"='o_hl_cc', "Carbonate Concentration - Low Lat"='o_ll_cc'), # "Land Temp Anomaly"="t_lta",
- 'SO2' = list( "Anthropogenic SO2"='so2_a', "Volcanic SO2"='so2_v'),
- 'Temperature' = list("Global Mean Temp"='t_gmt', "Equilibrium Global Temp"='t_egt', "Ocean Surface Temp"='t_ost', "Ocean Air Temp"='t_oat', "Heat Flux - Mixed Layer Ocean"='t_hf_mlo', "Heat Flux - Interior Layer Ocean"='t_hf_ilo', "Total Heat Flux - Ocean"='t_hf_t')),
- multiple = T, selected = "t_gmt")
- ),
- )
- ),
- actionButton(inputId="loadGraphs", label="Load Graphs", width = '200px', style = "background: #0B3F8F; color: white;"),
- downloadButton("downloadData", label="Download Raw Data", style = "background: #0B3F8F; color: white; width: 200px;"),
- br(),
- br(),
- uiOutput("plots", class = "customPlot")
- )
- ), # end Graphs Tab
-
- # Maps Tab
- tabPanel
- (class = "maps",
- p(icon("globe-americas","fa-2x"), "World Maps", value="outputTab"),
- br(),
- h6("These maps are generated using ",
- a("fldgen,", href = "https://doi.org/10.1371/journal.pone.0223542", target = "_blank"), "a tool used to spatially downscale Hector temperature output onto the Earth System Model grid of your choosing."),
- p("Please note that some map model patterns are rather large and can take several seconds to load. Due to this, maps will need to be refreshed manually after any changes."),
- fluidRow(
- column(3, selectInput(inputId = "mapPattern", label = "Choose Model:", width = "400px",
- choices = c("CanESM2" = "CanESM2",
- "CESM1-BGC" = "CESM1-BGC",
- "GFDL-ESM2G" = "GFDL-ESM2G",
- "MIROC-ESM" = "MIROC-ESM",
- "MPI-ESM-LR" = "MPI-ESM-LR",
- "MRI-ESM1" = "MRI-ESM1"))
- ),
- column(3, selectInput(inputId = "mapVar", label = "Choose Variable:", selected = "tas", width = "400px",
- choices = c("Temperature" = "tas", "Precipitation" = "pr"), multiple = F)
- ),
- column(3, selectInput(inputId = "mapYear", label = "Choose Year:", selected = 2100, width = "400px",
- choices = c(2000:2100), multiple = F)
- ),
- column(3, uiOutput("coreMapping"))
-
-
-
-
- # tags$tr(class = "maps",
- # tags$td(
- # selectInput(inputId = "mapPattern", label = "Choose Model:", width = "100%",
- # choices = c("CanESM2" = "CanESM2",
- # "CESM1-BGC" = "CESM1-BGC",
- # "GFDL-ESM2G" = "GFDL-ESM2G",
- # "MIROC-ESM" = "MIROC-ESM",
- # "MPI-ESM-LR" = "MPI-ESM-LR",
- # "MRI-ESM1" = "MRI-ESM1"))
- # ),
- # tags$td(style="padding-left: 5px;",
- # selectInput(inputId = "mapVar", label = "Choose Variable:", selected = "tas", width = "100%",
- # choices = c("Temperature" = "tas", "Precipitation" = "pr"), multiple = F)
- # ),
- # tags$td(style="padding-left: 5px;",
- # selectInput(inputId = "mapYear", label = "Choose Year:", selected = 2100, width = "100%",
- # choices = c(2000:2100), multiple = F)
- # ),
- # tags$td(style="padding-left: 5px;", width = "100%",
- # uiOutput("coreMapping")
- # )
- # )
- ),
- tags$table(
- tags$tr(width = "100%",
- # tags$td(width = "20", align="left", class="tdPushTop",
- # popify(div(class="paramDivs", icon("info-circle", "fa-1x")), title = "Enable Comparative Differences",
- # content = "This will change the temperature output on the map to show the difference between the computed temperature of the selected year and the temperature from the year 1900.",
- # placement = "top")),
- tags$td(shinyWidgets::prettyCheckbox(inputId = "input_map_compare", label = "Show as comparison to year 1900", value = FALSE, inline = FALSE, icon = icon("check")))
- )
- ),
- tags$table(
- tags$tr(width = "100%",
- # tags$td(width = "20", align="left", class="tdPushTop",
- # popify(div(class="paramDivs", icon("info-circle", "fa-1x")), title = "Filter by Lat/Lon",
- # content = "Choosing this option will allow you to zoom in to a specific lat/lon region and have the map rescale to the regional data.",
- # placement = "top")),
- tags$td(shinyWidgets::prettyCheckbox(inputId = "input_map_filter", label = "Filter by Lat/Lon", value = FALSE, inline = TRUE, icon = icon("check"))
- )
- ),
- ),
- conditionalPanel(condition = "input.input_map_filter == true",
- tags$table(
- tags$tr(width = "100%",
- tags$td(align = "left", shiny::textInput(inputId = "input_lat_min", label = "Lat Min:", width = 65, value = 13)),
- tags$td(width = 15),
- tags$td(align = "left", shiny::textInput(inputId = "input_lat_max", label = "Lat Max:", width = 65, value = 57)),
- tags$td(width = 15),
- tags$td(align = "left", shiny::textInput(inputId = "input_lon_min", label = "Lon Min:", width = 65, value = -135)),
- tags$td(width = 15),
- tags$td(align = "left", shiny::textInput(inputId = "input_lon_max", label = "Lon Max:", width = 65, value = -55)),
- tags$td()
- )
- ),
- ),
- actionButton(inputId="loadMaps", label="Load Map", width = 150, style = "background: #0B3F8F; color: white;"),
- downloadButton("downloadMap", label="Save Hi-Res Map", width = 150),
- br(),
- uiOutput("maps", class = "customPlot")
- ) # End Maps Tab
-
- ) # End tabset panel
- ) # End mainpanel
- ),
- tabPanel
- (
- "About",
- # Main Panel that holds the tabs for the Information section
- mainPanel
- (
- width = 9,
- class = "about-info",
- tabsetPanel
- (
- # Information Tab Panel
- tabPanel
- (
- p(icon("info-circle", "fa-2x"), "Hector Information", value="infoTab"),
- h5("Background Information"), tags$hr(class="hrNav"),
- tags$table(
- tags$tr(
- tags$td(width = "50%",
- h5("Explore the Hector Product Family", style="text-align: left"),
- br(),
- h6("Source code and contribution is available on the ",
- a("HectorUI Github page", href = "https://github.com/JGCRI/hector", target = "_blank")),
- ),
- )
- ),
- br(),
- tags$td(
- tags$figure(
- img(src='https://github.com/JGCRI/hector/wiki/rcp85.png',
- height="260px",
- class="hector-fig"),
- tags$figcaption("Hector's global temperature rise for RCP 8.5 scenario, compared to observations and other model results")
- ), style="text-align: center"
- ),
- br(),
- h5("Documentation/Downloads"),
- tags$hr(class="hrNav"),
- p("The primary link to the Hector model documentation is the ",
- a("online manual", href="https://jgcri.github.io/hector/articles/manual", target="blank"),
- ", which is included in the vignettes/manual directory. The code is also documented with ",
- a("Doxygen-style", href="http://doxygen.org", target="blank"),
- " comments."),
- p("A formal model description paper via ",
- a("Hartin et al. 2015", href="http://www.geosci-model-dev.net/8/939/2015/gmd-8-939-2015.html", target="blank"),
- " documents its science internals and performance relative to observed data, the ",
- a("CMIP5", href="http://cmip-pcmdi.llnl.gov/cmip5/", target="blank"),
- " archive, and the reduced-complexity ",
- a("MAGICC",href="http://www.magicc.org", target="blank"),
- " model (as of ",
- a("version 1.0", href="https://github.com/JGCRI/hector/tree/v1.0", target="blank"),
- "). In addition, we have developed two package vignettes demonstrating the ",
- a("basics of the Hector R interface", href="http://jgcri.github.io/hector/articles/intro-to-hector.html", target="blank"),
- ", and an example application of ",
- a("solving for an emissions pathway", href="http://jgcri.github.io/hector/articles/hector_apply.html", target="blank"),
- "."),
- tags$ul(
- tags$li(
- h5(tags$a("Hector User Interface package download/source link ", href="https://github.com/JGCRI/Hector-ui", target="blank"))),
- tags$li(
- h5(tags$a("Hector R / Hector C++ package download/source link", href="https://github.com/JGCRI/Hector", target="blank"))),
- tags$li(
- h5(tags$a("Code and data for Hector calibration papers", href="https://zenodo.org/record/3515153#.Xg9iGuhKiUl", target="blank"),
- tags$img(src="https://zenodo.org/badge/DOI/10.5281/zenodo.3515153.svg", class="zenodo", alt="DOI")
- )
- )
- ),
- br(),
- h5("Tools and software that work with Hector"),
- tags$hr(class="hrNav"),
- tags$ul(
- tags$li(
- a("GCAM", href="https://github.com/JGCRI/gcam-core", target="blank"),
- ": Hector can be used as the climate component in the GCAM integrated assessment model."),
- tags$li(
- a("pyHector", href="https://github.com/openclimatedata/pyhector", target="blank"),
- ": A python interface to Hector."),
- tags$li(
- a("R/Shiny", href="https://shiny.rstudio.com/", target="blank"),
- ": This application was built as an R-Shiny package wrapper over the existing model code.")
- )
- ),
- # Citation Tab Panel
- tabPanel
- (
- p(icon("copyright", "fa-2x"),
- "License/How to Cite",
- value="citeTab"),
- h5("License Information"),
- tags$hr(class="hrNav"),
- tags$div(class="citationsDiv", style="width: 500px;",
- tags$table(class="citationsTable",
- tags$tr(
- tags$td(rowspan=2, width=45, icon("balance-scale", "fa-2x")),
- tags$td(("All Hector applications are licensed under the")
- ),
- tags$tr(
- tags$td(
- tags$a(
- h6("GNU General Public License v3.0"), href="https://github.com/JGCRI/hector/blob/master/LICENSE.md", target="blank")
- )
- )
- ),
- tags$table(class="citationsTable",
- tags$tr(
- tags$td(p("Permissions of this strong copyleft license are conditioned on making available complete source code
- of licensed works and modifications, which include larger works using a licensed work, under the same
- license. Copyright and license notices must be preserved. Contributors provide an express grant of patent rights.")
- )
- )
- )
- )
- ),
- div(class="citationsDiv",
- tags$span(class="citationsHeader", "Permissions"),
- tags$ul(class="ul-None",
- tags$li(icon("check"),"Commercial use"),
- tags$li(icon("check"),"Modification"),
- tags$li(icon("check"),"Distribution"),
- tags$li(icon("check"),"Patent use"),
- tags$li(icon("check"),"Private use"))
- ),
- div(class="citationsDiv",
- tags$span(class="citationsHeader", "Limitations"),
- tags$ul(class="ul-None",
- tags$li(icon("times")," Liability"),
- tags$li(icon("times")," Warranty"))
- ),
- div(class="citationsDiv",
- tags$span(class="citationsHeader", "Conditions"),
- tags$ul(class="ul-None",
- tags$li(icon("info"),"License and copyright notice"),
- tags$li(icon("info"),"State changes"),
- tags$li(icon("info"),"Disclose source"),
- tags$li(icon("info"),"Same license"))
- ),
- h5("How to Cite Hector"),
- tags$hr(class="hrNav"),
- p("When using graphs, figures, or other output from this applicaton please cite both the Hector Core",
- br(),
- "application as well as the Hector User Interface (this application). The DOI for both is provided below:"),
- tags$ul(
- tags$li(
- h5(tags$a("Hector User Interface DOI", href="https://doi.org/10.5281/zenodo.3603216", target = "blank"),
- tags$img(src="https://zenodo.org/badge/DOI/10.5281/zenodo.3603216.svg", alt="DOI", class = "imgNoPadding"))),
- tags$li(
- h5(tags$a("Hector Core DOI", href="https://doi.org/10.5281/zenodo.3515153", target = "blank"),
- tags$img(src="https://zenodo.org/badge/DOI/10.5281/zenodo.3515153.svg", alt="DOI", class = "imgNoPadding")))
- )
- ),
- # Feedback Tab Panel
- tabPanel
- (
- p(icon("comment", "fa-2x"), "Support", value="feedbackTab"),
- h5("Submit Feedback"), tags$hr(class="hrNav"),
- p("Please use the form below to contact the Hector team regarding any questions, concerns, suggestions, or problems you may encounter."),
- htmlOutput("feedbackFrame")
- )
- )
- )
- ),
- tags$style(HTML(".navbar-nav {
- float:none;
- margin:0 auto;
- display: block;
- text-align: center;
- color: #000000;
- }
-
- .navbar-nav > li {
- display: inline-block;
- float:none;
- color: #000000;
- }"))
- ), # End navbarpage
- hr(),
- p(em("This research was supported in part by the",
- a(" U.S. Department of Energy,", href = "https://www.energy.gov/"),
- a(" Office of Science", href = "https://www.energy.gov/science/office-science"),
- ", as part of research in",
- a("MultiSector Dynamics, ", href = "https://climatemodeling.science.energy.gov/program/multisector-dynamics"),
- "Earth and Environmental System Modeling Program.",
- a("The Pacific Northwest National Laboratory", href = "https://www.pnnl.gov/"),
- " is operated for DOE by Battelle Memorial Institute.
- The authors also received support for this research through the U.S. Environmental Protection Agency."),
- class = "sticky_footer", style = "font-size:12px;")
-) # End of everything.
-
diff --git a/inst/shinyApp/www/custom.css b/inst/shinyApp/www/custom.css
deleted file mode 100644
index a5daa10..0000000
--- a/inst/shinyApp/www/custom.css
+++ /dev/null
@@ -1,407 +0,0 @@
-@charset "utf-8";
-/* CSS Document */
-
-body
-{
- font-size: 12px;
- background-color:#000000;
-}
-
-fas,fab
-{
- vertical-align: middle;
- border: #A23739 thick;
-}
-
-figcaption
-{
- font-style: italic;
- padding-bottom: 5px;
-}
-
-h2
-{
- font-size: 28px;
- /*font-weight: bold;*/
- /*color:#FAF7F2;*/
-}
-
-h3
-{
- font-size: 20px; /*font-weight: bold;*/
- /*color:#FAF7F2;*/
-}
-
-h4
-{
- font-size: 18px;font-weight: bold;
- /*color:#FAF7F2;*/
-}
-
-h5
-{
- font-size: 16px; font-weight:bold;
- margin-bottom: 9px;
- /*color:#FAF7F2;*/
-}
-
-h6
-{
- font-size:15px;
- font-weight: bold;
- margin-top: 5px;
- margin-bottom: 10px;
- /*color:#FAF7F2;*/
-}
-
-hr
-{
- color: #375a7f;
- border-top: 2px solid #375a7f;
-}
-
-iframe
-{
- border: none;
-}
-
-img
-{
- padding: 10px;
-}
-
-input
-{
- padding:5px 10px;
-}
-
-label
-{
- font-weight: normal;
- margin-bottom: 3px;
-}
-
-li
-{
- padding-left: 2px;
- list-style-position: outside;
-}
-
-ol
-{
-
- list-style-position: outside;
- /*counter-reset: my-awesome-counter;*/
- padding-left: 10px;
-}
-
-table a:not(.btn), .table a:not(.btn)
-{
- text-decoration: none;
-}
-
-table a:not(.btn):hover, .table a:not(.btn):hover
-{
- text-decoration: underline;
-}
-
-.btn
-{
- padding: 4px 10px;
- font-size: 13px;
- border: 1px #AC7023 solid;
- border-radius: 1px;
- margin-right: 2px;
- margin-left: 2px;
- margin-bottom: 2px;
- /*background-color: #375a7f;*/
-}
-
-.changedParamsTrue
-{
- border: #AC7023 thick;
- font-size: 25px;
-}
-
-.changedParamsFalse
-{
- border: none;
-}
-
-.checkbox
-{
- display: inline-block;
-}
-
-.citationsDiv
-{
- display: inline-block;
- vertical-align: top;
- padding: 10px;
-}
-
-.citationsTable
-{
- padding:3px;
-}
-
-
-.citationsTable a
-{
- text-decoration: none;
-}
-
-.citationsTable .hover
-{
- text-decoration: underline;
-}
-
-.citationsHeader
-{
- font-size: 15px;
- font-weight: bold;
-}
-
-
-.col-sm-3
-{
- padding-right: 10px;
- padding-left: 5px;
-}
-
-.col-sm-9
-{
- padding-left: 9px;
-}
-
-.container
-{
- width: 1480px;
- background-color:#222222;
-}
-
-.container-fluid
-{
- padding-left: 10px;
-}
-
-.customPlot
-{
- display:inline-block;
-}
-
-.fa-check
-{
- color:limegreen;
- padding:2px;
- padding-right: 4px;
-}
-
-.fa-info
-{
- color:cornflowerblue;
- padding:2px;
- padding-right: 4px;
-}
-
-.fa-times
-{
- color: red;
- padding:2px;
- padding-right: 4px;
-}
-
-.form-control
-{
- height: 27px;
- font-size: 12px;
- padding-right: 12px;
- padding-left: 12px;
-
-}
-
-.form-control-small
-{
- display: inline;
- vertical-align:top;
-
-}
-
-.form-dropDownDiv
-{
- display:inline;
- padding-right:15px;
-}
-
-.form-group
-{
- margin-bottom: 10px;
-}
-
-.gtitle, .g-title, .g-gtitle
-{
- padding-top: 15px;
-}
-
-.group-output
-{
- display:inline-block;
- padding: 5px;
-}
-
-.hrNav
-{
- margin-top: -5px;
- margin-bottom: 10px;
-
-}
-
-.imgNoPadding
-{
- padding: 3px;
-}
-
-.js-plotly-plot .plotly .modebar
-{
- padding-top: 24px;
- position: absolute;
- left:36px!important;
-}
-
-.main-container
-{
- padding-bottom: 10px;
-}
-
-.nav-tabs>li>a
-{
- border: 1px solid #464545;
- padding: 10px 10px 5px 10px;
-}
-
-.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus
-{
- color: #FFFFFF;
- background-color: #375a7f;
-
-}
-
-.navbar
-{
- min-height: 50px;
- margin-bottom: 15px;
-}
-
-.navbar-brand:hover
-{
- color: #FFFFFF!important;
-}
-
-.paramDivs
-{
- display:inline-block;
-}
-
-.paramDivsTopItem
-{
- width: 205px;
- display:inline-block;
- vertical-align:middle;
-}
-
-.popover
-{
- border: solid 2px;
- border-color: #AC7023;
-}
-
-.pretty input:checked~.state.p-primary label:after
-{
- background-color:#db735c!important;
-}
-
-.pretty input:checked~.state.p-success label:after
-{
- background-color:#EFA86E!important;
-}
-
-.pretty input:checked~.state.p-warning label:after
-{
- background-color:#9A8A76!important;
-}
-
-.pretty input:checked~.state.p-danger label:after
-{
- background-color:#7A6752!important;
-}
-
-.progress
-{
- margin-bottom: 10px;
-}
-
-.selectize-input
-{
- padding-top: 4px;
- padding-bottom: 3px;
- min-height: 30px;
-}
-
-.tdPushTop
-{
- vertical-align: top;
-}
-
-.tdPushBottom
-{
- vertical-align: bottom;
-}
-
-.titleText
-{
- text-align: left;
- margin-top: 15px;
- padding-left: 420px;
-}
-
-.ul-None {
- list-style: none;
- padding: 2px;
- padding-left: 4px;
-}
-
-.ul-None li
-{
- padding:1px;
-}
-
-.well
-{
- padding: 12px;
- padding-top: 8px;
- margin-bottom: 0;
- background-color: #3e3e3e;
-}
-
-.zenodo
-{
- padding-top: 0px!important;
- padding-bottom: 0px!important;
-}
-
-
-#shiny-notification-panel
-{
- top: 50% !important;
- left: 50% !important;
- margin-top: -100px !important;
- margin-left: -250px !important;
- /*color: blue;
- border: solid 2px;
- border-color: #AC7023;;*/
- font-size: 20px;
- font-style: italic;
- height: auto;
- width: 250px;
-}
-
diff --git a/inst/shinyApp/www/google-analytics.js b/inst/shinyApp/www/google-analytics.js
deleted file mode 100644
index 9306ded..0000000
--- a/inst/shinyApp/www/google-analytics.js
+++ /dev/null
@@ -1,10 +0,0 @@
-// JavaScript Document
-
-
-
diff --git a/inst/shinyApp/www/input/api-example.ini b/inst/shinyApp/www/input/api-example.ini
deleted file mode 100644
index 64353ea..0000000
--- a/inst/shinyApp/www/input/api-example.ini
+++ /dev/null
@@ -1,373 +0,0 @@
-; Config file for hector model: RCP4.5
-[core]
-run_name=coupling-test
-startDate=1745
-endDate=2100
-do_spinup=1 ; if 1, spin up model before running (default=1)
-max_spinup=5000 ; maximum steps allowed for spinup (default=2000)
-
-[onelineocean]
-enabled=0 ; putting 'enabled=0' will disable any component
-;output=0 ; uncomment this line to disable this component's output
-ocean_c=38000, Pg C
-
-[ocean]
-enabled=1 ; putting 'enabled=0' will disable any component
-spinup_chem=0 ; run surface chemistry during spinup phase?
-;carbon_HL=145 ; high latitude, Pg C
-;carbon_LL=750 ; low latitude, Pg C
-;carbon_IO=10040 ; intermediate, Pg C
-;carbon_DO=27070 ; deep, Pg C
-
-tt = 72000000 ; 7.2e7 thermohaline circulation, m3/s
-tu = 49000000 ; 4.9e7 high latitude overturning, m3/s
-twi = 12500000 ; 1.25e7 warm-intermediate exchange, m3/s
-tid = 200000000 ; 2.0e8 intermediate-deep exchange, m3/s
-
-;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv ; some flux record
-k = 0.2 ; ocean heat uptake efficiency (W/m2/K)
-
-[simpleNbox]
-; Initial (preindustrial) carbon pools
-;atmos_c=750.071
-atmos_c=588.071 ; Pg C in CO2, from Murakami (2010)
-; could also specify as "C0=276", in ppmv
-
-; If using biomes (e.g. boreal.veg_c ) must have data for all pools*biomes
-;boreal.veg_c=100 ; e.g.
-;tropical.veg_c=450 ; e.g.
-veg_c=550 ; Pg C
-
-;boreal.detritus_c=15
-;tropical.detritus_c=45
-detritus_c=55 ; Pg C
-
-;boreal.soil_c=1200
-;tropical.soil_c=578
-soil_c=1782 ; Pg C 2000
-
-; Partitioning parameters
-f_nppv=0.35 ; Fraction of NPP to vegetation
-f_nppd=0.60 ; Fraction of NPP to detritus
-f_litterd=0.98 ; Fraction of litter to detritus
-f_lucv=0.1 ; Fraction of land use change flux from vegetation
-f_lucd=0.01 ; Fraction of land use change flux from detritus
-
-; Anthropogenic contributions: direct emissions, Pg (or Gt) C/yr
-ffi_emissions=csv:emissions/gcam_emissions.csv ; historical emissions data only. Future emissions will be provided by GCAM
-
-; Anthropogenic contributions: land use change
-luc_emissions=csv:emissions/gcam_emissions.csv
-
-; Atmospheric CO2 levels
-; If we supply [CO2], the model will match these values
-; Any residual between model [CO2] and model [CO2] will be put into luc_emissions
-; If we've also supplied luc_emissions, then the residual will be eliminated by
-; scaling the natural atmosphere fluxes (NPP, RH, ocean, etc).
-;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record
-;Ca_constrain=csv:constraints/rcp45_co2ppm.csv
-
-; Initial (preindustrial) carbon fluxes
-;boreal.npp_flux0=5.0
-;tropical.npp_flux0=45.0
-npp_flux0=50.0 ; Preindustrial NPP, Pg C/yr
-
-; CO2 and temperature effects on the carbon cycle
-; these are global values, can optionally specify biome-specific ones as above
-beta=0.36 ; 0.36=about +20% @2xCO2
-q10_rh=2.45 ; 2.0 respiration response Q10, unitless
-
-; Optional biome-specific warming factors
-; by default, assume 1.0 (i.e., warms as fast as the globe)
-;boreal.warmingfactor=1.2 ; i.e., region will warm 1.2 C for every 1 C globally
-
-; Albedo effect, in W/m2. The model assumes a constant value if nothing specified
-Ftalbedo[1750]=0.0
-Ftalbedo[1950]=-0.2
-
-[carbon-cycle-solver]
-eps_abs=1.0e-6 ; solution tolerances
-eps_rel=1.0e-6
-dt=0.25 ; default time step
-eps_spinup=0.001 ; spinup tolerance (drift), Pg C yr-1
-
-[so2]
-S0= 53841.2 ; historical sulphate from year 2000 (Ggrams)
-SN=42000 ; natural sulfur emissions (Ggrams)
-;SO2_emissions = csv:emissions/RCP45_emissions.csv
-SO2_emissions = csv:emissions/gcam_emissions.csv
-;SV = csv:emissions/volcanic_RF.csv
-
-[methane]
-M0=700.0 ; preindustrial methane (ppbv) 700 ppbv IPCC, 2001 Table 6.1
-;UC_CH4=2.746 ; Tg(CH4)/ppb unit conversion between emissions and concentrations
-
-Ma = csv:concentrations/RCP45_ch4n2o_conc.csv
-;CH4_emissions=csv:emissions/RCP45_emissions.csv ; concentration time series
-;molarMass = 16.04 ; grams
-;tau = 10 ; lifetime in years oucher et al 2009
-
-[ozone]
-enabled=1
-;NOX0=0 ;pre-industrial value
-NOX_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-
-;CO0=0 ;pre-industrial value
-CO_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-
-;NMVOC0=0 ;pre-industrial value
-NMVOC_emissions=csv:emissions/gcam_emissions.csv ; emissions time series
-
-Ma = csv:concentrations/RCP45_ch4n2o_conc.csv
-;molarMass = 16.04 ; grams
-;tau = 10 ; lifetime in years oucher et al 2009
-
-[nitrous]
-N0=273.0 ; preindustrial nitrous oxide, ppbv
-UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations
-TN2O0=132 ; initial lifetime of N2O, years
-
-Na = csv:concentrations/RCP45_ch4n2o_conc.csv
-;N2O_emissions=csv:emissions/RCP45_emissions.csv ; concentration time series
-;molarMass = 44.01 ; grams
-;tau = 120;
-
-[forcing]
-baseyear=1750 ; when to start reporting; by definition, all F=0 in this year
-;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv
-
-[temperature]
-S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC
-;tgav_constrain=csv:cmip5_tgav_RCP45_test.csv ; CMIP5 global temperature, RCP 4.5
-
-[bc]
-; need to be in kg/yr
-BC_emissions=csv:emissions/gcam_emissions.csv
-
-[oc]
-; need to be in kg/yr
-OC_emissions=csv:emissions/gcam_emissions.csv
-
-; --------------------------------------------------------------------------
-; Halocarbons in kt/yr
-; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14)
-; Concentration (ppt) data from: http://www.pik-potsdam.de/~mmalte/rcps/
-
-[CF4_halocarbon]
-tau = 50000.0 ; lifetime in years
-rho = 0.00008 ; radiative efficiencies W/m2/ppt
-H0=35.0,pptv ; preindustrial concentration, pptv
-CF4_emissions = csv:emissions/gcam_emissions.csv
-molarMass=88.0043 ; grams
-
-[C2F6_halocarbon]
-tau= 10000.0
-rho= 0.00026
-C2F6_emissions = csv:emissions/RCP45_emissions.csv
-molarMass=138.01
-
-;[C4F10_halocarbon]
-;tau= 2600.0
-;rho= 0.00033
-;C4F10_emissions = csv:emissions/RCP45_emissions.csv
-;molarMass=238.0
-
-
-[HFC23_halocarbon]
-tau= 270.0
-rho= 0.00019
-HFC23_emissions = csv:emissions/RCP45_emissions.csv
-molarMass=70.0
-
-[HFC32_halocarbon]
-tau= 4.9
-rho= 0.00011
-HFC32_emissions = csv:emissions/RCP45_emissions.csv
-molarMass=52.0
-
-
-[HFC4310_halocarbon]
-tau= 15.9
-rho= 0.0004
-HFC4310_emissions = csv:emissions/RCP45_emissions.csv
-molarMass=252.0
-
-[HFC125_halocarbon]
-tau= 29.0
-rho= 0.00023
-HFC125_emissions = csv:emissions/RCP45_emissions.csv
-molarMass=120.02
-
-[HFC134a_halocarbon]
-tau= 14.0
-rho= 0.00016
-HFC134a_emissions = csv:emissions/RCP45_emissions.csv
-molarMass=102.02
-
-[HFC143a_halocarbon]
-tau= 52.0
-rho= 0.00013
-HFC143a_emissions = csv:emissions/RCP45_emissions.csv
-molarMass=84.04
-
-;[HFC152a_halocarbon]
-;tau= 1.4
-;rho= 0.00009
-;HFC152a_emissions = csv:emissions/RCP45_emissions.csv
-;molarMass=66.0
-
-[HFC227ea_halocarbon]
-tau= 34.2
-rho= 0.00026
-HFC227ea_emissions = csv:emissions/RCP45_emissions.csv
-molarMass=170.03
-
-[HFC245fa_halocarbon]
-tau= 7.6
-rho= 0.00028
-HFC245fa_emissions = csv:emissions/RCP45_emissions.csv
-molarMass=134.0
-
-;[HFC236fa_halocarbon]
-;tau= 240.0
-;rho= 0.00028
-;HFC236fa_emissions = csv:emissions/RCP45_emissions.csv
-;molarMass=152.0
-
-
-[SF6_halocarbon]
-tau= 3200.0
-rho= 0.00052
-SF6_emissions= csv:emissions/RCP45_emissions.csv
-molarMass=146.06
-
-
-[CFC11_halocarbon]
-tau= 45.0
-rho= 0.00025
-CFC11_emissions= csv:emissions/RCP45_emissions.csv
-molarMass=137.35
-;ni=3
-;FC=1
-
-
-[CFC12_halocarbon]
-tau= 100
-rho= 0.00032
-CFC12_emissions= csv:emissions/RCP45_emissions.csv
-molarMass=120.9
-;ni=2
-;FC=0.6
-
-[CFC113_halocarbon]
-tau= 85.0
-rho= 0.0003
-CFC113_emissions= csv:emissions/RCP45_emissions.csv
-molarMass=187.35
-;ni=3
-;FC=0.75
-
-
-[CFC114_halocarbon]
-tau= 300
-rho= 0.00031
-CFC114_emissions= csv:emissions/RCP45_emissions.csv
-molarMass=170.9
-;ni=2
-;FC=0.28
-
-[CFC115_halocarbon]
-tau= 1700
-rho= 0.00018
-CFC115_emissions= csv:emissions/RCP45_emissions.csv
-molarMass=154.45
-
-
-[CCl4_halocarbon]
-tau= 26.0
-rho= 0.00013
-CCl4_emissions= csv:emissions/RCP45_emissions.csv
-molarMass=153.8
-;ni=4
-;FC=1.06
-
-[CH3CCl3_halocarbon]
-tau= 5.0
-rho= 0.00006
-CH3CCl3_emissions= csv:emissions/RCP45_emissions.csv
-molarMass=133.35
-;ni=3
-;FC=1.08
-
-[halon1211_halocarbon]
-tau= 16.0
-rho= 0.00003
-halon1211_emissions= csv:emissions/RCP45_emissions.csv
-molarMass=165.35
-;ni=1
-;nj=1
-;FC=1.18
-
-[halon1301_halocarbon]
-tau= 65.0
-rho= 0.00032
-halon1301_emissions= csv:emissions/RCP45_emissions.csv
-molarMass=148.9
-;nj=1
-;FC=0.62
-
-[halon2402_halocarbon]
-tau= 20.0
-rho= 0.00033
-halon2402_emissions= csv:emissions/RCP45_emissions.csv
-molarMass=259.8
-;nj=2
-;FC=1.22
-
-[HCF22_halocarbon]
-tau= 12.0
-rho= 0.0002
-HCF22_emissions= csv:emissions/gcam_emissions.csv
-molarMass=86.45
-;ni=1
-;FC=0.35
-
-[HCF141b_halocarbon]
-tau= 9.3
-rho= 0.00014
-HCF141b_emissions= csv:emissions/RCP45_emissions.csv
-molarMass=116.9
-;ni=2
-;FC=0.72
-
-[HCF142b_halocarbon]
-tau= 17.9
-rho= 0.0002
-HCF142b_emissions= csv:emissions/RCP45_emissions.csv
-molarMass=100.45
-;ni=1
-;FC=0.36
-
-;[HCFC143_halocarbon]
-;tau= 1.3
-;rho= 0.00014
-;HCFC143_emissions= csv:emissions/RCP45_emissions.csv
-;molarMass=152.9
-
-[CH3Cl_halocarbon]
-tau= 1.3
-rho= 0.00001
-H0 = 3100.21
-CH3Cl_emissions= csv:emissions/RCP45_emissions.csv
-molarMass=50.45
-;ni=1
-;FC=0.8
-
-[CH3Br_halocarbon]
-tau= 0.7
-rho= 0.00001
-H0 = 157.267
-CH3Br_emissions= csv:emissions/RCP45_emissions.csv
-molarMass=94.9
-;nj=1
-;FC=1.12
diff --git a/inst/shinyApp/www/input/constraints/MAGICC_RF_4.5.csv b/inst/shinyApp/www/input/constraints/MAGICC_RF_4.5.csv
deleted file mode 100644
index 56ee3be..0000000
--- a/inst/shinyApp/www/input/constraints/MAGICC_RF_4.5.csv
+++ /dev/null
@@ -1,538 +0,0 @@
-; total RF including volcanic from MAGICC6 RCP45,
-year,Ftot_constrain
-1765,0.00E+00
-1766,9.80E-03
-1767,4.06E-02
-1768,4.64E-02
-1769,9.60E-03
-1770,1.04E-02
-1771,5.17E-02
-1772,6.74E-02
-1773,5.83E-02
-1774,4.57E-02
-1775,3.64E-02
-1776,4.44E-02
-1777,7.33E-02
-1778,1.05E-01
-1779,1.15E-01
-1780,1.09E-01
-1781,1.01E-01
-1782,5.86E-02
-1783,-5.68E-02
-1784,-1.42E-01
-1785,-7.00E-02
-1786,5.71E-02
-1787,1.21E-01
-1788,1.29E-01
-1789,1.86E-02
-1790,-1.44E-01
-1791,-1.24E-01
-1792,3.54E-04
-1793,6.21E-02
-1794,5.93E-02
-1795,2.44E-02
-1796,1.26E-02
-1797,2.96E-02
-1798,4.50E-02
-1799,5.32E-02
-1800,7.10E-02
-1801,9.34E-02
-1802,9.05E-02
-1803,7.59E-02
-1804,7.38E-02
-1805,7.31E-02
-1806,6.41E-02
-1807,5.49E-02
-1808,-4.39E-01
-1809,-1.58E+00
-1810,-1.98E+00
-1811,-1.19E+00
-1812,-5.12E-01
-1813,-3.10E-01
-1814,-8.31E-01
-1815,-2.29E+00
-1816,-2.80E+00
-1817,-1.63E+00
-1818,-4.98E-01
-1819,-4.71E-02
-1820,7.94E-02
-1821,8.65E-02
-1822,8.91E-02
-1823,9.31E-02
-1824,1.01E-01
-1825,1.15E-01
-1826,1.34E-01
-1827,1.53E-01
-1828,1.63E-01
-1829,1.37E-01
-1830,-8.09E-02
-1831,-4.75E-01
-1832,-5.83E-01
-1833,-2.94E-01
-1834,-4.48E-01
-1835,-1.05E+00
-1836,-9.68E-01
-1837,-3.57E-01
-1838,1.67E-02
-1839,1.31E-01
-1840,1.11E-01
-1841,8.69E-02
-1842,8.75E-02
-1843,6.10E-02
-1844,5.61E-02
-1845,1.06E-01
-1846,1.59E-01
-1847,1.97E-01
-1848,2.26E-01
-1849,2.13E-01
-1850,1.73E-01
-1851,1.66E-01
-1852,1.68E-01
-1853,1.61E-01
-1854,1.52E-01
-1855,1.04E-02
-1856,-4.44E-01
-1857,-6.77E-01
-1858,-3.29E-01
-1859,2.97E-02
-1860,1.58E-01
-1861,1.25E-01
-1862,2.57E-02
-1863,3.15E-02
-1864,1.04E-01
-1865,1.38E-01
-1866,1.43E-01
-1867,1.47E-01
-1868,1.72E-01
-1869,2.08E-01
-1870,2.37E-01
-1871,2.36E-01
-1872,1.90E-01
-1873,1.37E-01
-1874,1.21E-01
-1875,1.00E-01
-1876,5.59E-02
-1877,6.05E-02
-1878,1.02E-01
-1879,1.36E-01
-1880,1.68E-01
-1881,1.97E-01
-1882,1.07E-01
-1883,-7.96E-01
-1884,-1.53E+00
-1885,-9.51E-01
-1886,-4.68E-01
-1887,-3.50E-01
-1888,-2.49E-01
-1889,-3.17E-01
-1890,-3.56E-01
-1891,-2.61E-01
-1892,-6.10E-02
-1893,1.08E-01
-1894,2.26E-01
-1895,2.03E-01
-1896,3.05E-02
-1897,-6.93E-02
-1898,2.63E-02
-1899,1.36E-01
-1900,1.82E-01
-1901,1.66E-01
-1902,-2.74E-01
-1903,-6.36E-01
-1904,-3.14E-01
-1905,5.26E-02
-1906,1.57E-01
-1907,1.37E-01
-1908,1.54E-01
-1909,2.20E-01
-1910,2.42E-01
-1911,2.43E-01
-1912,5.43E-03
-1913,-8.96E-02
-1914,1.55E-01
-1915,3.12E-01
-1916,3.87E-01
-1917,4.23E-01
-1918,4.30E-01
-1919,4.08E-01
-1920,3.06E-01
-1921,2.81E-01
-1922,3.67E-01
-1923,3.86E-01
-1924,3.89E-01
-1925,4.24E-01
-1926,4.69E-01
-1927,4.89E-01
-1928,4.42E-01
-1929,3.92E-01
-1930,4.20E-01
-1931,4.46E-01
-1932,4.13E-01
-1933,4.24E-01
-1934,4.85E-01
-1935,5.41E-01
-1936,5.99E-01
-1937,6.13E-01
-1938,6.01E-01
-1939,6.05E-01
-1940,6.16E-01
-1941,6.08E-01
-1942,5.64E-01
-1943,5.40E-01
-1944,5.69E-01
-1945,6.08E-01
-1946,6.42E-01
-1947,6.57E-01
-1948,6.66E-01
-1949,6.46E-01
-1950,6.09E-01
-1951,5.69E-01
-1952,5.34E-01
-1953,5.14E-01
-1954,5.22E-01
-1955,5.83E-01
-1956,6.67E-01
-1957,7.34E-01
-1958,7.50E-01
-1959,7.36E-01
-1960,6.48E-01
-1961,5.19E-01
-1962,4.13E-01
-1963,-7.04E-02
-1964,-4.18E-01
-1965,-6.98E-02
-1966,3.61E-01
-1967,5.36E-01
-1968,3.77E-01
-1969,3.43E-01
-1970,6.15E-01
-1971,8.05E-01
-1972,8.65E-01
-1973,8.30E-01
-1974,6.83E-01
-1975,5.89E-01
-1976,7.45E-01
-1977,9.66E-01
-1978,1.04E+00
-1979,1.12E+00
-1980,1.23E+00
-1981,1.18E+00
-1982,4.82E-01
-1983,1.76E-01
-1984,7.19E-01
-1985,1.02E+00
-1986,1.11E+00
-1987,1.20E+00
-1988,1.34E+00
-1989,1.47E+00
-1990,1.51E+00
-1991,5.74E-01
-1992,-4.93E-02
-1993,6.65E-01
-1994,1.20E+00
-1995,1.41E+00
-1996,1.51E+00
-1997,1.58E+00
-1998,1.69E+00
-1999,1.80E+00
-2000,1.86E+00
-2001,1.90E+00
-2002,1.91E+00
-2003,1.91E+00
-2004,1.89E+00
-2005,1.90E+00
-2006,1.92E+00
-2007,1.95E+00
-2008,1.99E+00
-2009,2.07E+00
-2010,2.16E+00
-2011,2.19E+00
-2012,2.23E+00
-2013,2.28E+00
-2014,2.32E+00
-2015,2.36E+00
-2016,2.41E+00
-2017,2.45E+00
-2018,2.49E+00
-2019,2.54E+00
-2020,2.58E+00
-2021,2.62E+00
-2022,2.66E+00
-2023,2.70E+00
-2024,2.75E+00
-2025,2.79E+00
-2026,2.83E+00
-2027,2.87E+00
-2028,2.91E+00
-2029,2.95E+00
-2030,3.00E+00
-2031,3.04E+00
-2032,3.08E+00
-2033,3.12E+00
-2034,3.16E+00
-2035,3.20E+00
-2036,3.24E+00
-2037,3.28E+00
-2038,3.32E+00
-2039,3.36E+00
-2040,3.40E+00
-2041,3.43E+00
-2042,3.47E+00
-2043,3.51E+00
-2044,3.54E+00
-2045,3.58E+00
-2046,3.61E+00
-2047,3.65E+00
-2048,3.68E+00
-2049,3.71E+00
-2050,3.74E+00
-2051,3.77E+00
-2052,3.80E+00
-2053,3.83E+00
-2054,3.85E+00
-2055,3.88E+00
-2056,3.90E+00
-2057,3.92E+00
-2058,3.95E+00
-2059,3.97E+00
-2060,3.99E+00
-2061,4.01E+00
-2062,4.03E+00
-2063,4.05E+00
-2064,4.06E+00
-2065,4.08E+00
-2066,4.09E+00
-2067,4.11E+00
-2068,4.12E+00
-2069,4.13E+00
-2070,4.14E+00
-2071,4.15E+00
-2072,4.16E+00
-2073,4.17E+00
-2074,4.18E+00
-2075,4.18E+00
-2076,4.19E+00
-2077,4.19E+00
-2078,4.20E+00
-2079,4.20E+00
-2080,4.20E+00
-2081,4.20E+00
-2082,4.20E+00
-2083,4.19E+00
-2084,4.19E+00
-2085,4.19E+00
-2086,4.20E+00
-2087,4.20E+00
-2088,4.20E+00
-2089,4.20E+00
-2090,4.20E+00
-2091,4.21E+00
-2092,4.21E+00
-2093,4.21E+00
-2094,4.22E+00
-2095,4.22E+00
-2096,4.22E+00
-2097,4.23E+00
-2098,4.23E+00
-2099,4.24E+00
-2100,4.24E+00
-2101,4.25E+00
-2102,4.25E+00
-2103,4.25E+00
-2104,4.26E+00
-2105,4.26E+00
-2106,4.26E+00
-2107,4.27E+00
-2108,4.27E+00
-2109,4.27E+00
-2110,4.27E+00
-2111,4.28E+00
-2112,4.28E+00
-2113,4.28E+00
-2114,4.28E+00
-2115,4.28E+00
-2116,4.28E+00
-2117,4.28E+00
-2118,4.28E+00
-2119,4.28E+00
-2120,4.28E+00
-2121,4.28E+00
-2122,4.28E+00
-2123,4.28E+00
-2124,4.28E+00
-2125,4.28E+00
-2126,4.28E+00
-2127,4.28E+00
-2128,4.28E+00
-2129,4.28E+00
-2130,4.28E+00
-2131,4.28E+00
-2132,4.28E+00
-2133,4.28E+00
-2134,4.28E+00
-2135,4.28E+00
-2136,4.28E+00
-2137,4.28E+00
-2138,4.28E+00
-2139,4.28E+00
-2140,4.28E+00
-2141,4.28E+00
-2142,4.28E+00
-2143,4.28E+00
-2144,4.28E+00
-2145,4.28E+00
-2146,4.28E+00
-2147,4.28E+00
-2148,4.28E+00
-2149,4.28E+00
-2150,4.28E+00
-2151,4.28E+00
-2152,4.27E+00
-2153,4.27E+00
-2154,4.27E+00
-2155,4.27E+00
-2156,4.27E+00
-2157,4.27E+00
-2158,4.27E+00
-2159,4.27E+00
-2160,4.27E+00
-2161,4.27E+00
-2162,4.27E+00
-2163,4.27E+00
-2164,4.27E+00
-2165,4.27E+00
-2166,4.27E+00
-2167,4.27E+00
-2168,4.27E+00
-2169,4.27E+00
-2170,4.27E+00
-2171,4.27E+00
-2172,4.27E+00
-2173,4.27E+00
-2174,4.27E+00
-2175,4.27E+00
-2176,4.27E+00
-2177,4.27E+00
-2178,4.27E+00
-2179,4.27E+00
-2180,4.27E+00
-2181,4.27E+00
-2182,4.27E+00
-2183,4.27E+00
-2184,4.27E+00
-2185,4.27E+00
-2186,4.27E+00
-2187,4.27E+00
-2188,4.27E+00
-2189,4.27E+00
-2190,4.27E+00
-2191,4.27E+00
-2192,4.27E+00
-2193,4.27E+00
-2194,4.27E+00
-2195,4.27E+00
-2196,4.27E+00
-2197,4.27E+00
-2198,4.27E+00
-2199,4.27E+00
-2200,4.27E+00
-2201,4.27E+00
-2202,4.27E+00
-2203,4.27E+00
-2204,4.27E+00
-2205,4.27E+00
-2206,4.27E+00
-2207,4.27E+00
-2208,4.27E+00
-2209,4.27E+00
-2210,4.27E+00
-2211,4.27E+00
-2212,4.27E+00
-2213,4.27E+00
-2214,4.27E+00
-2215,4.27E+00
-2216,4.27E+00
-2217,4.27E+00
-2218,4.27E+00
-2219,4.27E+00
-2220,4.27E+00
-2221,4.27E+00
-2222,4.27E+00
-2223,4.27E+00
-2224,4.27E+00
-2225,4.27E+00
-2226,4.27E+00
-2227,4.27E+00
-2228,4.27E+00
-2229,4.27E+00
-2230,4.27E+00
-2231,4.27E+00
-2232,4.27E+00
-2233,4.27E+00
-2234,4.27E+00
-2235,4.27E+00
-2236,4.27E+00
-2237,4.27E+00
-2238,4.27E+00
-2239,4.27E+00
-2240,4.27E+00
-2241,4.27E+00
-2242,4.27E+00
-2243,4.27E+00
-2244,4.27E+00
-2245,4.27E+00
-2246,4.27E+00
-2247,4.27E+00
-2248,4.27E+00
-2249,4.27E+00
-2250,4.27E+00
-2251,4.27E+00
-2252,4.27E+00
-2253,4.27E+00
-2254,4.27E+00
-2255,4.27E+00
-2256,4.27E+00
-2257,4.27E+00
-2258,4.27E+00
-2259,4.27E+00
-2260,4.27E+00
-2261,4.27E+00
-2262,4.27E+00
-2263,4.27E+00
-2264,4.27E+00
-2265,4.27E+00
-2266,4.27E+00
-2267,4.27E+00
-2268,4.27E+00
-2269,4.27E+00
-2270,4.27E+00
-2271,4.27E+00
-2272,4.27E+00
-2273,4.27E+00
-2274,4.27E+00
-2275,4.27E+00
-2276,4.27E+00
-2277,4.27E+00
-2278,4.27E+00
-2279,4.27E+00
-2280,4.27E+00
-2281,4.27E+00
-2282,4.27E+00
-2283,4.27E+00
-2284,4.27E+00
-2285,4.27E+00
-2286,4.27E+00
-2287,4.27E+00
-2288,4.27E+00
-2289,4.27E+00
-2290,4.27E+00
-2291,4.27E+00
-2292,4.27E+00
-2293,4.27E+00
-2294,4.27E+00
-2295,4.27E+00
-2296,4.27E+00
-2297,4.27E+00
-2298,4.27E+00
-2299,4.27E+00
-2300,4.27E+00
diff --git a/inst/shinyApp/www/input/constraints/lawdome_co2.csv b/inst/shinyApp/www/input/constraints/lawdome_co2.csv
deleted file mode 100644
index bcc2ae5..0000000
--- a/inst/shinyApp/www/input/constraints/lawdome_co2.csv
+++ /dev/null
@@ -1,232 +0,0 @@
-; Historical CO2 record derived from a spline fit (75 year cutoff) of the Law Dome ,
-; from http://cdiac.ornl.gov/ftp/trends/co2/lawdome.smoothed.yr75,
-Date,Ca_constrain
-UNITS,ppmv CO2
-1010,279.5
-1015,279.6
-1020,279.7
-1025,279.8
-1030,279.9
-1035,280
-1040,280.2
-1045,280.3
-1050,280.5
-1055,280.7
-1060,280.9
-1065,281.1
-1070,281.3
-1075,281.5
-1080,281.7
-1085,281.9
-1090,282.1
-1095,282.3
-1100,282.5
-1105,282.7
-1110,282.9
-1115,283
-1120,283.2
-1125,283.3
-1130,283.5
-1135,283.6
-1140,283.7
-1145,283.8
-1150,283.9
-1155,284
-1160,284
-1165,284.1
-1170,284.1
-1175,284.1
-1180,284
-1185,284
-1190,283.9
-1195,283.8
-1200,283.6
-1205,283.4
-1210,283.2
-1215,283
-1220,282.8
-1225,282.5
-1230,282.3
-1235,282.2
-1240,282
-1245,281.9
-1250,281.9
-1255,281.9
-1260,282
-1265,282.1
-1270,282.2
-1275,282.3
-1280,282.5
-1285,282.6
-1290,282.8
-1295,282.9
-1300,283
-1305,283.1
-1310,283.2
-1315,283.3
-1320,283.3
-1325,283.2
-1330,283.1
-1335,282.9
-1340,282.7
-1345,282.4
-1350,282.1
-1355,281.8
-1360,281.5
-1365,281.2
-1370,281
-1375,280.7
-1380,280.5
-1385,280.4
-1390,280.3
-1395,280.3
-1400,280.3
-1405,280.4
-1410,280.5
-1415,280.6
-1420,280.7
-1425,280.8
-1430,280.9
-1435,280.9
-1440,280.9
-1445,280.9
-1450,280.8
-1455,280.7
-1460,280.6
-1465,280.6
-1470,280.6
-1475,280.8
-1480,281
-1485,281.3
-1490,281.6
-1495,281.9
-1500,282.2
-1505,282.5
-1510,282.7
-1515,282.9
-1520,283.1
-1525,283.2
-1530,283.2
-1535,283.2
-1540,283.1
-1545,283
-1550,282.8
-1555,282.6
-1560,282.2
-1565,281.8
-1570,281.2
-1575,280.5
-1580,279.7
-1585,278.8
-1590,278
-1595,277.1
-1600,276.4
-1605,275.8
-1610,275.5
-1615,275.3
-1620,275.3
-1625,275.4
-1630,275.6
-1635,275.9
-1640,276.1
-1645,276.3
-1650,276.4
-1655,276.5
-1660,276.5
-1665,276.5
-1670,276.4
-1675,276.4
-1680,276.4
-1685,276.4
-1690,276.5
-1695,276.6
-1700,276.7
-1705,276.8
-1710,276.9
-1715,277
-1720,277
-1725,277
-1730,277
-1735,276.9
-1740,276.9
-1745,276.9
-1750,277
-1755,277.2
-1760,277.6
-1765,278
-1770,278.6
-1775,279.3
-1780,280.1
-1785,280.8
-1790,281.6
-1795,282.3
-1800,282.9
-1805,283.4
-1810,283.8
-1815,284
-1820,284.2
-1825,284.3
-1830,284.4
-1835,284.5
-1840,284.6
-1845,284.8
-1850,285.2
-1855,285.7
-1860,286.3
-1865,287.2
-1870,288.2
-1875,289.4
-1880,290.8
-1885,292.3
-1890,293.7
-1895,295.2
-1900,296.7
-1905,298.2
-1910,299.9
-1915,301.5
-1920,303.2
-1925,304.9
-1930,306.5
-1935,308
-1940,309.3
-1945,310.5
-1950,312
-1955,314.1
-1960,316.9
-1965,320.5
-1970,324.7
-1975,329.4
-; following records are from Mauna Loa,
-1976,332.15
-1977,333.9
-1978,335.51
-1979,336.85
-1980,338.69
-1981,339.93
-1982,341.13
-1983,342.78
-1984,344.42
-1985,345.9
-1986,347.15
-1987,348.93
-1988,351.48
-1989,352.91
-1990,354.19
-1991,355.59
-1992,356.37
-1993,357.04
-1994,358.89
-1995,360.88
-1996,362.64
-1997,363.76
-1998,366.63
-1999,368.31
-2000,369.48
-2001,371.02
-2002,373.1
-2003,375.64
-2004,377.38
-2005,379.67
-2006,381.84
-2007,383.55
-2008,385.34
diff --git a/inst/shinyApp/www/input/constraints/rcp26_co2ppm.csv b/inst/shinyApp/www/input/constraints/rcp26_co2ppm.csv
deleted file mode 100644
index 194ebde..0000000
--- a/inst/shinyApp/www/input/constraints/rcp26_co2ppm.csv
+++ /dev/null
@@ -1,538 +0,0 @@
-; RCP2.6 CO2 concentrations in ppm,
-Date,Ca_constrain
-1765,278.05158
-1766,278.10615
-1767,278.22039
-1768,278.34305
-1769,278.47058
-1770,278.60047
-1771,278.73275
-1772,278.86881
-1773,279.00907
-1774,279.15318
-1775,279.3018
-1776,279.4568
-1777,279.61808
-1778,279.78192
-1779,279.9432
-1780,280.0974
-1781,280.2428
-1782,280.38168
-1783,280.51832
-1784,280.6572
-1785,280.8026
-1786,280.9568
-1787,281.11808
-1788,281.28192
-1789,281.4432
-1790,281.5982
-1791,281.74682
-1792,281.89093
-1793,282.03119
-1794,282.16725
-1795,282.29901
-1796,282.4268
-1797,282.55093
-1798,282.67123
-1799,282.7873
-1800,282.89901
-1801,283.00677
-1802,283.11093
-1803,283.21129
-1804,283.30737
-1805,283.39963
-1806,283.48978
-1807,283.57796
-1808,283.66116
-1809,283.73511
-1810,283.79676
-1811,283.84667
-1812,283.88853
-1813,283.92613
-1814,283.96267
-1815,284.00107
-1816,284.04267
-1817,284.08613
-1818,284.12853
-1819,284.16667
-1820,284.1982
-1821,284.22333
-1822,284.24427
-1823,284.26307
-1824,284.28133
-1825,284.30027
-1826,284.32
-1827,284.34
-1828,284.36
-1829,284.38
-1830,284.4
-1831,284.385
-1832,284.28
-1833,284.125
-1834,283.975
-1835,283.825
-1836,283.675
-1837,283.525
-1838,283.425
-1839,283.4
-1840,283.4
-1841,283.425
-1842,283.5
-1843,283.6
-1844,283.725
-1845,283.9
-1846,284.075
-1847,284.225
-1848,284.4
-1849,284.575
-1850,284.725
-1851,284.875
-1852,285
-1853,285.125
-1854,285.275
-1855,285.425
-1856,285.575
-1857,285.725
-1858,285.9
-1859,286.075
-1860,286.225
-1861,286.375
-1862,286.5
-1863,286.625
-1864,286.775
-1865,286.9
-1866,287
-1867,287.1
-1868,287.225
-1869,287.375
-1870,287.525
-1871,287.7
-1872,287.9
-1873,288.125
-1874,288.4
-1875,288.7
-1876,289.025
-1877,289.4
-1878,289.8
-1879,290.225
-1880,290.7
-1881,291.2
-1882,291.675
-1883,292.125
-1884,292.575
-1885,292.975
-1886,293.3
-1887,293.575
-1888,293.8
-1889,294
-1890,294.175
-1891,294.325
-1892,294.475
-1893,294.6
-1894,294.7
-1895,294.8
-1896,294.9
-1897,295.025
-1898,295.225
-1899,295.5
-1900,295.8
-1901,296.125
-1902,296.475
-1903,296.825
-1904,297.2
-1905,297.625
-1906,298.075
-1907,298.5
-1908,298.9
-1909,299.3
-1910,299.7
-1911,300.075
-1912,300.425
-1913,300.775
-1914,301.1
-1915,301.4
-1916,301.725
-1917,302.075
-1918,302.4
-1919,302.7
-1920,303.025
-1921,303.4
-1922,303.775
-1923,304.125
-1924,304.525
-1925,304.975
-1926,305.4
-1927,305.825
-1928,306.3
-1929,306.775
-1930,307.225
-1931,307.7
-1932,308.175
-1933,308.6
-1934,309
-1935,309.4
-1936,309.75
-1937,310
-1938,310.175
-1939,310.3
-1940,310.375
-1941,310.375
-1942,310.3
-1943,310.2
-1944,310.125
-1945,310.1
-1946,310.125
-1947,310.2
-1948,310.325
-1949,310.5
-1950,310.75
-1951,311.1
-1952,311.5
-1953,311.925
-1954,312.425
-1955,313
-1956,313.6
-1957,314.225
-1958,314.8475
-1959,315.5
-1960,316.2725
-1961,317.075
-1962,317.795
-1963,318.3975
-1964,318.925
-1965,319.6475
-1966,320.6475
-1967,321.605
-1968,322.635
-1969,323.9025
-1970,324.985
-1971,325.855
-1972,327.14
-1973,328.6775
-1974,329.7425
-1975,330.585
-1976,331.7475
-1977,333.2725
-1978,334.8475
-1979,336.525
-1980,338.36
-1981,339.7275
-1982,340.7925
-1983,342.1975
-1984,343.7825
-1985,345.2825
-1986,346.7975
-1987,348.645
-1988,350.7375
-1989,352.4875
-1990,353.855
-1991,355.0175
-1992,355.885
-1993,356.7775
-1994,358.1275
-1995,359.8375
-1996,361.4625
-1997,363.155
-1998,365.3225
-1999,367.3475
-2000,368.865
-2001,370.4675
-2002,372.5225
-2003,374.76
-2004,376.8125
-2005,378.8125
-2006,380.8275
-2007,382.7775
-2008,384.8
-2009,387.00054
-2010,389.28521
-2011,391.56252
-2012,393.84273
-2013,396.11734
-2014,398.39568
-2015,400.68068
-2016,402.9683
-2017,405.25182
-2018,407.52882
-2019,409.80029
-2020,412.06783
-2021,414.32565
-2022,416.51662
-2023,418.60322
-2024,420.60132
-2025,422.51575
-2026,424.34901
-2027,426.09675
-2028,427.75232
-2029,429.31381
-2030,430.78315
-2031,432.16344
-2032,433.43618
-2033,434.59273
-2034,435.65302
-2035,436.62804
-2036,437.52158
-2037,438.33433
-2038,439.06015
-2039,439.69061
-2040,440.2224
-2041,440.65666
-2042,441.02476
-2043,441.34651
-2044,441.621
-2045,441.8644
-2046,442.08482
-2047,442.2834
-2048,442.4583
-2049,442.60091
-2050,442.70046
-2051,442.75184
-2052,442.761
-2053,442.73417
-2054,442.66263
-2055,442.54767
-2056,442.40642
-2057,442.24833
-2058,442.07535
-2059,441.88625
-2060,441.67274
-2061,441.42415
-2062,441.1345
-2063,440.80284
-2064,440.43041
-2065,440.01021
-2066,439.54473
-2067,439.05222
-2068,438.54291
-2069,438.01932
-2070,437.48062
-2071,436.91878
-2072,436.34251
-2073,435.76436
-2074,435.18189
-2075,434.595
-2076,433.99542
-2077,433.38456
-2078,432.77961
-2079,432.18978
-2080,431.61659
-2081,431.05847
-2082,430.51026
-2083,429.96413
-2084,429.41411
-2085,428.85906
-2086,428.2991
-2087,427.72652
-2088,427.14308
-2089,426.56607
-2090,426.00472
-2091,425.46065
-2092,424.93745
-2093,424.43129
-2094,423.93083
-2095,423.43058
-2096,422.92945
-2097,422.42761
-2098,421.91753
-2099,421.40111
-2100,420.89546
-2101,420.40998
-2102,419.94532
-2103,419.49831
-2104,419.05981
-2105,418.61902
-2106,418.17082
-2107,417.71454
-2108,417.2507
-2109,416.77219
-2110,416.28127
-2111,415.79518
-2112,415.32319
-2113,414.86696
-2114,414.42496
-2115,413.98893
-2116,413.54867
-2117,413.09942
-2118,412.64076
-2119,412.17338
-2120,411.69045
-2121,411.19435
-2122,410.70228
-2123,410.22339
-2124,409.7593
-2125,409.30847
-2126,408.8627
-2127,408.41656
-2128,407.96956
-2129,407.52073
-2130,407.07051
-2131,406.61189
-2132,406.14707
-2133,405.69286
-2134,405.25809
-2135,404.84413
-2136,404.44922
-2137,404.06507
-2138,403.68161
-2139,403.29415
-2140,402.90226
-2141,402.50662
-2142,402.10056
-2143,401.68653
-2144,401.28131
-2145,400.89375
-2146,400.52523
-2147,400.17404
-2148,399.83204
-2149,399.4893
-2150,399.14131
-2151,398.78772
-2152,398.42927
-2153,398.0595
-2154,397.68091
-2155,397.31021
-2156,396.95616
-2157,396.62009
-2158,396.3003
-2159,395.98871
-2160,395.67554
-2161,395.35634
-2162,395.03085
-2163,394.69985
-2164,394.357
-2165,394.00489
-2166,393.6601
-2167,393.33128
-2168,393.01974
-2169,392.72374
-2170,392.43525
-2171,392.1446
-2172,391.84744
-2173,391.54354
-2174,391.2337
-2175,390.91172
-2176,390.58024
-2177,390.25571
-2178,389.94668
-2179,389.65441
-2180,389.37713
-2181,389.10687
-2182,388.83404
-2183,388.55437
-2184,388.26765
-2185,387.97473
-2186,387.6695
-2187,387.35465
-2188,387.04651
-2189,386.75353
-2190,386.47692
-2191,386.21487
-2192,385.95946
-2193,385.70118
-2194,385.43582
-2195,385.16322
-2196,384.88424
-2197,384.59286
-2198,384.29183
-2199,383.99735
-2200,383.71778
-2201,383.45425
-2202,383.20495
-2203,382.96197
-2204,382.71591
-2205,382.4626
-2206,382.20191
-2207,381.93471
-2208,381.6551
-2209,381.36585
-2210,381.08304
-2211,380.81494
-2212,380.56263
-2213,380.32426
-2214,380.09195
-2215,379.85638
-2216,379.61345
-2217,379.36304
-2218,379.10604
-2219,378.83665
-2220,378.55765
-2221,378.28503
-2222,378.02696
-2223,377.78445
-2224,377.55563
-2225,377.33266
-2226,377.10629
-2227,376.87246
-2228,376.63109
-2229,376.38308
-2230,376.12271
-2231,375.85281
-2232,375.58923
-2233,375.34006
-2234,375.10628
-2235,374.88595
-2236,374.67128
-2237,374.4531
-2238,374.22739
-2239,373.9941
-2240,373.75412
-2241,373.50184
-2242,373.24011
-2243,372.98467
-2244,372.74353
-2245,372.51759
-2246,372.30492
-2247,372.09773
-2248,371.88692
-2249,371.66854
-2250,371.44254
-2251,371.20984
-2252,370.96489
-2253,370.71059
-2254,370.46256
-2255,370.22872
-2256,370.00993
-2257,369.80422
-2258,369.60385
-2259,369.39976
-2260,369.18806
-2261,368.96871
-2262,368.74266
-2263,368.50442
-2264,368.25693
-2265,368.0157
-2266,367.78857
-2267,367.57635
-2268,367.37703
-2269,367.1829
-2270,366.98498
-2271,366.77941
-2272,366.56619
-2273,366.34625
-2274,366.11421
-2275,365.873
-2276,365.63806
-2277,365.41713
-2278,365.21098
-2279,365.01757
-2280,364.82921
-2281,364.63699
-2282,364.4371
-2283,364.22954
-2284,364.01526
-2285,363.78896
-2286,363.5536
-2287,363.32451
-2288,363.10935
-2289,362.90884
-2290,362.72091
-2291,362.53791
-2292,362.35099
-2293,362.15637
-2294,361.95408
-2295,361.74508
-2296,361.52413
-2297,361.29423
-2298,361.0706
-2299,360.86083
-2300,360.66558
\ No newline at end of file
diff --git a/inst/shinyApp/www/input/constraints/rcp45_co2ppm.csv b/inst/shinyApp/www/input/constraints/rcp45_co2ppm.csv
deleted file mode 100644
index efb929a..0000000
--- a/inst/shinyApp/www/input/constraints/rcp45_co2ppm.csv
+++ /dev/null
@@ -1,538 +0,0 @@
-; RCP4.5 CO2 concentrations in ppm,
-Date,Ca_constrain
-1765,278.05158
-1766,278.10615
-1767,278.22039
-1768,278.34305
-1769,278.47058
-1770,278.60047
-1771,278.73275
-1772,278.86881
-1773,279.00907
-1774,279.15318
-1775,279.3018
-1776,279.4568
-1777,279.61808
-1778,279.78192
-1779,279.9432
-1780,280.0974
-1781,280.2428
-1782,280.38168
-1783,280.51832
-1784,280.6572
-1785,280.8026
-1786,280.9568
-1787,281.11808
-1788,281.28192
-1789,281.4432
-1790,281.5982
-1791,281.74682
-1792,281.89093
-1793,282.03119
-1794,282.16725
-1795,282.29901
-1796,282.4268
-1797,282.55093
-1798,282.67123
-1799,282.7873
-1800,282.89901
-1801,283.00677
-1802,283.11093
-1803,283.21129
-1804,283.30737
-1805,283.39963
-1806,283.48978
-1807,283.57796
-1808,283.66116
-1809,283.73511
-1810,283.79676
-1811,283.84667
-1812,283.88853
-1813,283.92613
-1814,283.96267
-1815,284.00107
-1816,284.04267
-1817,284.08613
-1818,284.12853
-1819,284.16667
-1820,284.1982
-1821,284.22333
-1822,284.24427
-1823,284.26307
-1824,284.28133
-1825,284.30027
-1826,284.32
-1827,284.34
-1828,284.36
-1829,284.38
-1830,284.4
-1831,284.385
-1832,284.28
-1833,284.125
-1834,283.975
-1835,283.825
-1836,283.675
-1837,283.525
-1838,283.425
-1839,283.4
-1840,283.4
-1841,283.425
-1842,283.5
-1843,283.6
-1844,283.725
-1845,283.9
-1846,284.075
-1847,284.225
-1848,284.4
-1849,284.575
-1850,284.725
-1851,284.875
-1852,285
-1853,285.125
-1854,285.275
-1855,285.425
-1856,285.575
-1857,285.725
-1858,285.9
-1859,286.075
-1860,286.225
-1861,286.375
-1862,286.5
-1863,286.625
-1864,286.775
-1865,286.9
-1866,287
-1867,287.1
-1868,287.225
-1869,287.375
-1870,287.525
-1871,287.7
-1872,287.9
-1873,288.125
-1874,288.4
-1875,288.7
-1876,289.025
-1877,289.4
-1878,289.8
-1879,290.225
-1880,290.7
-1881,291.2
-1882,291.675
-1883,292.125
-1884,292.575
-1885,292.975
-1886,293.3
-1887,293.575
-1888,293.8
-1889,294
-1890,294.175
-1891,294.325
-1892,294.475
-1893,294.6
-1894,294.7
-1895,294.8
-1896,294.9
-1897,295.025
-1898,295.225
-1899,295.5
-1900,295.8
-1901,296.125
-1902,296.475
-1903,296.825
-1904,297.2
-1905,297.625
-1906,298.075
-1907,298.5
-1908,298.9
-1909,299.3
-1910,299.7
-1911,300.075
-1912,300.425
-1913,300.775
-1914,301.1
-1915,301.4
-1916,301.725
-1917,302.075
-1918,302.4
-1919,302.7
-1920,303.025
-1921,303.4
-1922,303.775
-1923,304.125
-1924,304.525
-1925,304.975
-1926,305.4
-1927,305.825
-1928,306.3
-1929,306.775
-1930,307.225
-1931,307.7
-1932,308.175
-1933,308.6
-1934,309
-1935,309.4
-1936,309.75
-1937,310
-1938,310.175
-1939,310.3
-1940,310.375
-1941,310.375
-1942,310.3
-1943,310.2
-1944,310.125
-1945,310.1
-1946,310.125
-1947,310.2
-1948,310.325
-1949,310.5
-1950,310.75
-1951,311.1
-1952,311.5
-1953,311.925
-1954,312.425
-1955,313
-1956,313.6
-1957,314.225
-1958,314.8475
-1959,315.5
-1960,316.2725
-1961,317.075
-1962,317.795
-1963,318.3975
-1964,318.925
-1965,319.6475
-1966,320.6475
-1967,321.605
-1968,322.635
-1969,323.9025
-1970,324.985
-1971,325.855
-1972,327.14
-1973,328.6775
-1974,329.7425
-1975,330.585
-1976,331.7475
-1977,333.2725
-1978,334.8475
-1979,336.525
-1980,338.36
-1981,339.7275
-1982,340.7925
-1983,342.1975
-1984,343.7825
-1985,345.2825
-1986,346.7975
-1987,348.645
-1988,350.7375
-1989,352.4875
-1990,353.855
-1991,355.0175
-1992,355.885
-1993,356.7775
-1994,358.1275
-1995,359.8375
-1996,361.4625
-1997,363.155
-1998,365.3225
-1999,367.3475
-2000,368.865
-2001,370.4675
-2002,372.5225
-2003,374.76
-2004,376.8125
-2005,378.8125
-2006,380.8275
-2007,382.7775
-2008,384.8
-2009,386.9516
-2010,389.12785
-2011,391.27357
-2012,393.4211
-2013,395.58283
-2014,397.76408
-2015,399.96631
-2016,402.18432
-2017,404.41077
-2018,406.64292
-2019,408.8817
-2020,411.12868
-2021,413.37804
-2022,415.63944
-2023,417.93551
-2024,420.27395
-2025,422.65593
-2026,425.07983
-2027,427.53791
-2028,430.0206
-2029,432.5234
-2030,435.04594
-2031,437.58886
-2032,440.13137
-2033,442.66419
-2034,445.20699
-2035,447.76978
-2036,450.35539
-2037,452.96337
-2038,455.58649
-2039,458.2152
-2040,460.84499
-2041,463.47549
-2042,466.09336
-2043,468.67807
-2044,471.23389
-2045,473.78031
-2046,476.32819
-2047,478.88085
-2048,481.43826
-2049,483.99308
-2050,486.53532
-2051,489.06035
-2052,491.53558
-2053,493.93186
-2054,496.24365
-2055,498.47436
-2056,500.64502
-2057,502.76788
-2058,504.84729
-2059,506.88408
-2060,508.87135
-2061,510.79905
-2062,512.64717
-2063,514.40151
-2064,516.06461
-2065,517.62854
-2066,519.09606
-2067,520.48828
-2068,521.81772
-2069,523.08871
-2070,524.30217
-2071,525.45089
-2072,526.50901
-2073,527.45707
-2074,528.29593
-2075,529.02718
-2076,529.64253
-2077,530.14419
-2078,530.55341
-2079,530.88313
-2080,531.13797
-2081,531.31935
-2082,531.48991
-2083,531.70213
-2084,531.94208
-2085,532.20472
-2086,532.48672
-2087,532.77553
-2088,533.06978
-2089,533.38792
-2090,533.74072
-2091,534.13086
-2092,534.55754
-2093,535.01142
-2094,535.47962
-2095,535.95487
-2096,536.4351
-2097,536.91986
-2098,537.39855
-2099,537.87136
-2100,538.3583
-2101,538.8715
-2102,539.38819
-2103,539.88381
-2104,540.35213
-2105,540.78203
-2106,541.16804
-2107,541.50962
-2108,541.80769
-2109,542.05261
-2110,542.24555
-2111,542.40767
-2112,542.55941
-2113,542.71221
-2114,542.86612
-2115,543.01262
-2116,543.13926
-2117,543.23925
-2118,543.31105
-2119,543.35475
-2120,543.35993
-2121,543.32712
-2122,543.28815
-2123,543.26597
-2124,543.26382
-2125,543.28162
-2126,543.31031
-2127,543.337
-2128,543.35452
-2129,543.36102
-2130,543.35628
-2131,543.32954
-2132,543.28277
-2133,543.23814
-2134,543.20814
-2135,543.19691
-2136,543.20476
-2137,543.22301
-2138,543.23901
-2139,543.2458
-2140,543.24169
-2141,543.22663
-2142,543.18977
-2143,543.13128
-2144,543.07193
-2145,543.02451
-2146,542.9934
-2147,542.97911
-2148,542.97309
-2149,542.96279
-2150,542.95532
-2151,542.95532
-2152,542.95532
-2153,542.95532
-2154,542.95532
-2155,542.95532
-2156,542.95532
-2157,542.95532
-2158,542.95532
-2159,542.95532
-2160,542.95532
-2161,542.95532
-2162,542.95532
-2163,542.95532
-2164,542.95532
-2165,542.95532
-2166,542.95532
-2167,542.95532
-2168,542.95532
-2169,542.95532
-2170,542.95532
-2171,542.95532
-2172,542.95532
-2173,542.95532
-2174,542.95532
-2175,542.95532
-2176,542.95532
-2177,542.95532
-2178,542.95532
-2179,542.95532
-2180,542.95532
-2181,542.95532
-2182,542.95532
-2183,542.95532
-2184,542.95532
-2185,542.95532
-2186,542.95532
-2187,542.95532
-2188,542.95532
-2189,542.95532
-2190,542.95532
-2191,542.95532
-2192,542.95532
-2193,542.95532
-2194,542.95532
-2195,542.95532
-2196,542.95532
-2197,542.95532
-2198,542.95532
-2199,542.95532
-2200,542.95532
-2201,542.95532
-2202,542.95532
-2203,542.95532
-2204,542.95532
-2205,542.95532
-2206,542.95532
-2207,542.95532
-2208,542.95532
-2209,542.95532
-2210,542.95532
-2211,542.95532
-2212,542.95532
-2213,542.95532
-2214,542.95532
-2215,542.95532
-2216,542.95532
-2217,542.95532
-2218,542.95532
-2219,542.95532
-2220,542.95532
-2221,542.95532
-2222,542.95532
-2223,542.95532
-2224,542.95532
-2225,542.95532
-2226,542.95532
-2227,542.95532
-2228,542.95532
-2229,542.95532
-2230,542.95532
-2231,542.95532
-2232,542.95532
-2233,542.95532
-2234,542.95532
-2235,542.95532
-2236,542.95532
-2237,542.95532
-2238,542.95532
-2239,542.95532
-2240,542.95532
-2241,542.95532
-2242,542.95532
-2243,542.95532
-2244,542.95532
-2245,542.95532
-2246,542.95532
-2247,542.95532
-2248,542.95532
-2249,542.95532
-2250,542.95532
-2251,542.95532
-2252,542.95532
-2253,542.95532
-2254,542.95532
-2255,542.95532
-2256,542.95532
-2257,542.95532
-2258,542.95532
-2259,542.95532
-2260,542.95532
-2261,542.95532
-2262,542.95532
-2263,542.95532
-2264,542.95532
-2265,542.95532
-2266,542.95532
-2267,542.95532
-2268,542.95532
-2269,542.95532
-2270,542.95532
-2271,542.95532
-2272,542.95532
-2273,542.95532
-2274,542.95532
-2275,542.95532
-2276,542.95532
-2277,542.95532
-2278,542.95532
-2279,542.95532
-2280,542.95532
-2281,542.95532
-2282,542.95532
-2283,542.95532
-2284,542.95532
-2285,542.95532
-2286,542.95532
-2287,542.95532
-2288,542.95532
-2289,542.95532
-2290,542.95532
-2291,542.95532
-2292,542.95532
-2293,542.95532
-2294,542.95532
-2295,542.95532
-2296,542.95532
-2297,542.95532
-2298,542.95532
-2299,542.95532
-2300,542.95532
\ No newline at end of file
diff --git a/inst/shinyApp/www/input/constraints/rcp60_co2ppm.csv b/inst/shinyApp/www/input/constraints/rcp60_co2ppm.csv
deleted file mode 100644
index c25821d..0000000
--- a/inst/shinyApp/www/input/constraints/rcp60_co2ppm.csv
+++ /dev/null
@@ -1,538 +0,0 @@
-; RCP6.0 CO2 concentrations in ppm,
-Date,Ca_constrain
-1765,278.05158
-1766,278.10615
-1767,278.22039
-1768,278.34305
-1769,278.47058
-1770,278.60047
-1771,278.73275
-1772,278.86881
-1773,279.00907
-1774,279.15318
-1775,279.3018
-1776,279.4568
-1777,279.61808
-1778,279.78192
-1779,279.9432
-1780,280.0974
-1781,280.2428
-1782,280.38168
-1783,280.51832
-1784,280.6572
-1785,280.8026
-1786,280.9568
-1787,281.11808
-1788,281.28192
-1789,281.4432
-1790,281.5982
-1791,281.74682
-1792,281.89093
-1793,282.03119
-1794,282.16725
-1795,282.29901
-1796,282.4268
-1797,282.55093
-1798,282.67123
-1799,282.7873
-1800,282.89901
-1801,283.00677
-1802,283.11093
-1803,283.21129
-1804,283.30737
-1805,283.39963
-1806,283.48978
-1807,283.57796
-1808,283.66116
-1809,283.73511
-1810,283.79676
-1811,283.84667
-1812,283.88853
-1813,283.92613
-1814,283.96267
-1815,284.00107
-1816,284.04267
-1817,284.08613
-1818,284.12853
-1819,284.16667
-1820,284.1982
-1821,284.22333
-1822,284.24427
-1823,284.26307
-1824,284.28133
-1825,284.30027
-1826,284.32
-1827,284.34
-1828,284.36
-1829,284.38
-1830,284.4
-1831,284.385
-1832,284.28
-1833,284.125
-1834,283.975
-1835,283.825
-1836,283.675
-1837,283.525
-1838,283.425
-1839,283.4
-1840,283.4
-1841,283.425
-1842,283.5
-1843,283.6
-1844,283.725
-1845,283.9
-1846,284.075
-1847,284.225
-1848,284.4
-1849,284.575
-1850,284.725
-1851,284.875
-1852,285
-1853,285.125
-1854,285.275
-1855,285.425
-1856,285.575
-1857,285.725
-1858,285.9
-1859,286.075
-1860,286.225
-1861,286.375
-1862,286.5
-1863,286.625
-1864,286.775
-1865,286.9
-1866,287
-1867,287.1
-1868,287.225
-1869,287.375
-1870,287.525
-1871,287.7
-1872,287.9
-1873,288.125
-1874,288.4
-1875,288.7
-1876,289.025
-1877,289.4
-1878,289.8
-1879,290.225
-1880,290.7
-1881,291.2
-1882,291.675
-1883,292.125
-1884,292.575
-1885,292.975
-1886,293.3
-1887,293.575
-1888,293.8
-1889,294
-1890,294.175
-1891,294.325
-1892,294.475
-1893,294.6
-1894,294.7
-1895,294.8
-1896,294.9
-1897,295.025
-1898,295.225
-1899,295.5
-1900,295.8
-1901,296.125
-1902,296.475
-1903,296.825
-1904,297.2
-1905,297.625
-1906,298.075
-1907,298.5
-1908,298.9
-1909,299.3
-1910,299.7
-1911,300.075
-1912,300.425
-1913,300.775
-1914,301.1
-1915,301.4
-1916,301.725
-1917,302.075
-1918,302.4
-1919,302.7
-1920,303.025
-1921,303.4
-1922,303.775
-1923,304.125
-1924,304.525
-1925,304.975
-1926,305.4
-1927,305.825
-1928,306.3
-1929,306.775
-1930,307.225
-1931,307.7
-1932,308.175
-1933,308.6
-1934,309
-1935,309.4
-1936,309.75
-1937,310
-1938,310.175
-1939,310.3
-1940,310.375
-1941,310.375
-1942,310.3
-1943,310.2
-1944,310.125
-1945,310.1
-1946,310.125
-1947,310.2
-1948,310.325
-1949,310.5
-1950,310.75
-1951,311.1
-1952,311.5
-1953,311.925
-1954,312.425
-1955,313
-1956,313.6
-1957,314.225
-1958,314.8475
-1959,315.5
-1960,316.2725
-1961,317.075
-1962,317.795
-1963,318.3975
-1964,318.925
-1965,319.6475
-1966,320.6475
-1967,321.605
-1968,322.635
-1969,323.9025
-1970,324.985
-1971,325.855
-1972,327.14
-1973,328.6775
-1974,329.7425
-1975,330.585
-1976,331.7475
-1977,333.2725
-1978,334.8475
-1979,336.525
-1980,338.36
-1981,339.7275
-1982,340.7925
-1983,342.1975
-1984,343.7825
-1985,345.2825
-1986,346.7975
-1987,348.645
-1988,350.7375
-1989,352.4875
-1990,353.855
-1991,355.0175
-1992,355.885
-1993,356.7775
-1994,358.1275
-1995,359.8375
-1996,361.4625
-1997,363.155
-1998,365.3225
-1999,367.3475
-2000,368.865
-2001,370.4675
-2002,372.5225
-2003,374.76
-2004,376.8125
-2005,378.8125
-2006,380.8275
-2007,382.7775
-2008,384.8
-2009,386.93455
-2010,389.0715
-2011,391.1665
-2012,393.24066
-2013,395.29786
-2014,397.34576
-2015,399.38717
-2016,401.41789
-2017,403.43127
-2018,405.42513
-2019,407.40083
-2020,409.36026
-2021,411.29764
-2022,413.21903
-2023,415.14445
-2024,417.08292
-2025,419.03635
-2026,421.0038
-2027,422.97812
-2028,424.95028
-2029,426.91631
-2030,428.87629
-2031,430.832
-2032,432.80746
-2033,434.83148
-2034,436.91619
-2035,439.06785
-2036,441.28581
-2037,443.5672
-2038,445.90288
-2039,448.28176
-2040,450.69811
-2041,453.15021
-2042,455.64509
-2043,458.18181
-2044,460.76247
-2045,463.4053
-2046,466.11968
-2047,468.90757
-2048,471.76784
-2049,474.69236
-2050,477.67043
-2051,480.69694
-2052,483.77696
-2053,486.9156
-2054,490.1025
-2055,493.33845
-2056,496.64173
-2057,500.02229
-2058,503.48287
-2059,507.02296
-2060,510.63443
-2061,514.30531
-2062,518.02671
-2063,521.79702
-2064,525.61935
-2065,529.48604
-2066,533.3998
-2067,537.38147
-2068,541.44308
-2069,545.58888
-2070,549.81989
-2071,554.12904
-2072,558.48622
-2073,562.86724
-2074,567.27205
-2075,571.70141
-2076,576.14574
-2077,580.6064
-2078,585.10462
-2079,589.65317
-2080,594.25683
-2081,598.9179
-2082,603.53811
-2083,608.01988
-2084,612.36372
-2085,616.57173
-2086,620.64773
-2087,624.58304
-2088,628.38085
-2089,632.06458
-2090,635.64876
-2091,639.14086
-2092,642.59729
-2093,646.06094
-2094,649.51513
-2095,652.95074
-2096,656.36419
-2097,659.75421
-2098,663.10742
-2099,666.42313
-2100,669.72317
-2101,673.02173
-2102,676.29128
-2103,679.50127
-2104,682.64541
-2105,685.71141
-2106,688.69282
-2107,691.58868
-2108,694.39983
-2109,697.11406
-2110,699.73157
-2111,702.27614
-2112,704.7639
-2113,707.20265
-2114,709.5953
-2115,711.93394
-2116,714.20507
-2117,716.40081
-2118,718.51915
-2119,720.56005
-2120,722.51007
-2121,724.36814
-2122,726.15805
-2123,727.8964
-2124,729.59084
-2125,731.24405
-2126,732.84773
-2127,734.38928
-2128,735.86182
-2129,737.26278
-2130,738.59171
-2131,739.83434
-2132,740.98904
-2133,742.0798
-2134,743.1235
-2135,744.12799
-2136,745.09601
-2137,746.01899
-2138,746.88224
-2139,747.67691
-2140,748.40031
-2141,749.05184
-2142,749.6169
-2143,750.09334
-2144,750.50572
-2145,750.87141
-2146,751.19813
-2147,751.4889
-2148,751.73512
-2149,751.92185
-2150,751.99877
-2151,751.99877
-2152,751.99877
-2153,751.99877
-2154,751.99877
-2155,751.99877
-2156,751.99877
-2157,751.99877
-2158,751.99877
-2159,751.99877
-2160,751.99877
-2161,751.99877
-2162,751.99877
-2163,751.99877
-2164,751.99877
-2165,751.99877
-2166,751.99877
-2167,751.99877
-2168,751.99877
-2169,751.99877
-2170,751.99877
-2171,751.99877
-2172,751.99877
-2173,751.99877
-2174,751.99877
-2175,751.99877
-2176,751.99877
-2177,751.99877
-2178,751.99877
-2179,751.99877
-2180,751.99877
-2181,751.99877
-2182,751.99877
-2183,751.99877
-2184,751.99877
-2185,751.99877
-2186,751.99877
-2187,751.99877
-2188,751.99877
-2189,751.99877
-2190,751.99877
-2191,751.99877
-2192,751.99877
-2193,751.99877
-2194,751.99877
-2195,751.99877
-2196,751.99877
-2197,751.99877
-2198,751.99877
-2199,751.99877
-2200,751.99877
-2201,751.99877
-2202,751.99877
-2203,751.99877
-2204,751.99877
-2205,751.99877
-2206,751.99877
-2207,751.99877
-2208,751.99877
-2209,751.99877
-2210,751.99877
-2211,751.99877
-2212,751.99877
-2213,751.99877
-2214,751.99877
-2215,751.99877
-2216,751.99877
-2217,751.99877
-2218,751.99877
-2219,751.99877
-2220,751.99877
-2221,751.99877
-2222,751.99877
-2223,751.99877
-2224,751.99877
-2225,751.99877
-2226,751.99877
-2227,751.99877
-2228,751.99877
-2229,751.99877
-2230,751.99877
-2231,751.99877
-2232,751.99877
-2233,751.99877
-2234,751.99877
-2235,751.99877
-2236,751.99877
-2237,751.99877
-2238,751.99877
-2239,751.99877
-2240,751.99877
-2241,751.99877
-2242,751.99877
-2243,751.99877
-2244,751.99877
-2245,751.99877
-2246,751.99877
-2247,751.99877
-2248,751.99877
-2249,751.99877
-2250,751.99877
-2251,751.99877
-2252,751.99877
-2253,751.99877
-2254,751.99877
-2255,751.99877
-2256,751.99877
-2257,751.99877
-2258,751.99877
-2259,751.99877
-2260,751.99877
-2261,751.99877
-2262,751.99877
-2263,751.99877
-2264,751.99877
-2265,751.99877
-2266,751.99877
-2267,751.99877
-2268,751.99877
-2269,751.99877
-2270,751.99877
-2271,751.99877
-2272,751.99877
-2273,751.99877
-2274,751.99877
-2275,751.99877
-2276,751.99877
-2277,751.99877
-2278,751.99877
-2279,751.99877
-2280,751.99877
-2281,751.99877
-2282,751.99877
-2283,751.99877
-2284,751.99877
-2285,751.99877
-2286,751.99877
-2287,751.99877
-2288,751.99877
-2289,751.99877
-2290,751.99877
-2291,751.99877
-2292,751.99877
-2293,751.99877
-2294,751.99877
-2295,751.99877
-2296,751.99877
-2297,751.99877
-2298,751.99877
-2299,751.99877
-2300,751.99877
\ No newline at end of file
diff --git a/inst/shinyApp/www/input/constraints/rcp85_co2ppm.csv b/inst/shinyApp/www/input/constraints/rcp85_co2ppm.csv
deleted file mode 100644
index 5f30505..0000000
--- a/inst/shinyApp/www/input/constraints/rcp85_co2ppm.csv
+++ /dev/null
@@ -1,538 +0,0 @@
-; RCP8.5 CO2 concentrations in ppm,
-Date,Ca_constrain
-1765,278.05158
-1766,278.10615
-1767,278.22039
-1768,278.34305
-1769,278.47058
-1770,278.60047
-1771,278.73275
-1772,278.86881
-1773,279.00907
-1774,279.15318
-1775,279.3018
-1776,279.4568
-1777,279.61808
-1778,279.78192
-1779,279.9432
-1780,280.0974
-1781,280.2428
-1782,280.38168
-1783,280.51832
-1784,280.6572
-1785,280.8026
-1786,280.9568
-1787,281.11808
-1788,281.28192
-1789,281.4432
-1790,281.5982
-1791,281.74682
-1792,281.89093
-1793,282.03119
-1794,282.16725
-1795,282.29901
-1796,282.4268
-1797,282.55093
-1798,282.67123
-1799,282.7873
-1800,282.89901
-1801,283.00677
-1802,283.11093
-1803,283.21129
-1804,283.30737
-1805,283.39963
-1806,283.48978
-1807,283.57796
-1808,283.66116
-1809,283.73511
-1810,283.79676
-1811,283.84667
-1812,283.88853
-1813,283.92613
-1814,283.96267
-1815,284.00107
-1816,284.04267
-1817,284.08613
-1818,284.12853
-1819,284.16667
-1820,284.1982
-1821,284.22333
-1822,284.24427
-1823,284.26307
-1824,284.28133
-1825,284.30027
-1826,284.32
-1827,284.34
-1828,284.36
-1829,284.38
-1830,284.4
-1831,284.385
-1832,284.28
-1833,284.125
-1834,283.975
-1835,283.825
-1836,283.675
-1837,283.525
-1838,283.425
-1839,283.4
-1840,283.4
-1841,283.425
-1842,283.5
-1843,283.6
-1844,283.725
-1845,283.9
-1846,284.075
-1847,284.225
-1848,284.4
-1849,284.575
-1850,284.725
-1851,284.875
-1852,285
-1853,285.125
-1854,285.275
-1855,285.425
-1856,285.575
-1857,285.725
-1858,285.9
-1859,286.075
-1860,286.225
-1861,286.375
-1862,286.5
-1863,286.625
-1864,286.775
-1865,286.9
-1866,287
-1867,287.1
-1868,287.225
-1869,287.375
-1870,287.525
-1871,287.7
-1872,287.9
-1873,288.125
-1874,288.4
-1875,288.7
-1876,289.025
-1877,289.4
-1878,289.8
-1879,290.225
-1880,290.7
-1881,291.2
-1882,291.675
-1883,292.125
-1884,292.575
-1885,292.975
-1886,293.3
-1887,293.575
-1888,293.8
-1889,294
-1890,294.175
-1891,294.325
-1892,294.475
-1893,294.6
-1894,294.7
-1895,294.8
-1896,294.9
-1897,295.025
-1898,295.225
-1899,295.5
-1900,295.8
-1901,296.125
-1902,296.475
-1903,296.825
-1904,297.2
-1905,297.625
-1906,298.075
-1907,298.5
-1908,298.9
-1909,299.3
-1910,299.7
-1911,300.075
-1912,300.425
-1913,300.775
-1914,301.1
-1915,301.4
-1916,301.725
-1917,302.075
-1918,302.4
-1919,302.7
-1920,303.025
-1921,303.4
-1922,303.775
-1923,304.125
-1924,304.525
-1925,304.975
-1926,305.4
-1927,305.825
-1928,306.3
-1929,306.775
-1930,307.225
-1931,307.7
-1932,308.175
-1933,308.6
-1934,309
-1935,309.4
-1936,309.75
-1937,310
-1938,310.175
-1939,310.3
-1940,310.375
-1941,310.375
-1942,310.3
-1943,310.2
-1944,310.125
-1945,310.1
-1946,310.125
-1947,310.2
-1948,310.325
-1949,310.5
-1950,310.75
-1951,311.1
-1952,311.5
-1953,311.925
-1954,312.425
-1955,313
-1956,313.6
-1957,314.225
-1958,314.8475
-1959,315.5
-1960,316.2725
-1961,317.075
-1962,317.795
-1963,318.3975
-1964,318.925
-1965,319.6475
-1966,320.6475
-1967,321.605
-1968,322.635
-1969,323.9025
-1970,324.985
-1971,325.855
-1972,327.14
-1973,328.6775
-1974,329.7425
-1975,330.585
-1976,331.7475
-1977,333.2725
-1978,334.8475
-1979,336.525
-1980,338.36
-1981,339.7275
-1982,340.7925
-1983,342.1975
-1984,343.7825
-1985,345.2825
-1986,346.7975
-1987,348.645
-1988,350.7375
-1989,352.4875
-1990,353.855
-1991,355.0175
-1992,355.885
-1993,356.7775
-1994,358.1275
-1995,359.8375
-1996,361.4625
-1997,363.155
-1998,365.3225
-1999,367.3475
-2000,368.865
-2001,370.4675
-2002,372.5225
-2003,374.76
-2004,376.8125
-2005,378.8125
-2006,380.8275
-2007,382.7775
-2008,384.8
-2009,387.01226
-2010,389.32416
-2011,391.63801
-2012,394.00866
-2013,396.46384
-2014,399.00402
-2015,401.62793
-2016,404.32819
-2017,407.09588
-2018,409.92701
-2019,412.82151
-2020,415.78022
-2021,418.79629
-2022,421.86439
-2023,424.99469
-2024,428.19734
-2025,431.47473
-2026,434.82619
-2027,438.24456
-2028,441.7208
-2029,445.25085
-2030,448.83485
-2031,452.47359
-2032,456.177
-2033,459.96398
-2034,463.85181
-2035,467.85003
-2036,471.96047
-2037,476.18237
-2038,480.50799
-2039,484.92724
-2040,489.43545
-2041,494.03235
-2042,498.7297
-2043,503.52959
-2044,508.43266
-2045,513.45614
-2046,518.61062
-2047,523.90006
-2048,529.32418
-2049,534.8752
-2050,540.54279
-2051,546.32201
-2052,552.21189
-2053,558.2122
-2054,564.31311
-2055,570.51669
-2056,576.84343
-2057,583.30471
-2058,589.90539
-2059,596.64656
-2060,603.52045
-2061,610.5165
-2062,617.60526
-2063,624.76367
-2064,631.99471
-2065,639.29052
-2066,646.65274
-2067,654.09843
-2068,661.64491
-2069,669.30474
-2070,677.07762
-2071,684.95429
-2072,692.90196
-2073,700.89416
-2074,708.93159
-2075,717.01548
-2076,725.13597
-2077,733.30667
-2078,741.52368
-2079,749.80466
-2080,758.1823
-2081,766.64451
-2082,775.17446
-2083,783.75141
-2084,792.36578
-2085,801.0188
-2086,809.71464
-2087,818.42214
-2088,827.15719
-2089,835.95594
-2090,844.80471
-2091,853.72536
-2092,862.72597
-2093,871.7768
-2094,880.86435
-2095,889.98162
-2096,899.12407
-2097,908.28871
-2098,917.47137
-2099,926.66527
-2100,935.87437
-2101,945.13213
-2102,954.4662
-2103,963.83906
-2104,973.2408
-2105,982.68037
-2106,992.14288
-2107,1001.6311
-2108,1011.1191
-2109,1020.6085
-2110,1030.1004
-2111,1039.5892
-2112,1049.1233
-2113,1058.7002
-2114,1068.3216
-2115,1077.9995
-2116,1087.6999
-2117,1097.4303
-2118,1107.1765
-2119,1116.9122
-2120,1126.6592
-2121,1136.4015
-2122,1146.1344
-2123,1155.9064
-2124,1165.7401
-2125,1175.6176
-2126,1185.5295
-2127,1195.4833
-2128,1205.4772
-2129,1215.4661
-2130,1225.453
-2131,1235.4493
-2132,1245.419
-2133,1255.397
-2134,1265.4211
-2135,1275.4843
-2136,1285.5943
-2137,1295.7632
-2138,1305.9625
-2139,1316.1708
-2140,1326.3936
-2141,1336.6283
-2142,1346.8594
-2143,1357.0727
-2144,1367.2797
-2145,1377.5097
-2146,1387.793
-2147,1398.1376
-2148,1408.5226
-2149,1418.9467
-2150,1429.3969
-2151,1439.8354
-2152,1450.2111
-2153,1460.4793
-2154,1470.5915
-2155,1480.5564
-2156,1490.4552
-2157,1500.2994
-2158,1510.0573
-2159,1519.7332
-2160,1529.3276
-2161,1538.8274
-2162,1548.2214
-2163,1557.5025
-2164,1566.6838
-2165,1575.7093
-2166,1584.5792
-2167,1593.389
-2168,1602.1444
-2169,1610.8232
-2170,1619.4189
-2171,1627.9283
-2172,1636.3423
-2173,1644.6544
-2174,1652.8621
-2175,1660.9472
-2176,1668.8714
-2177,1676.6491
-2178,1684.3479
-2179,1691.9855
-2180,1699.5543
-2181,1707.0542
-2182,1714.4671
-2183,1721.7857
-2184,1728.9986
-2185,1736.073
-2186,1743.0204
-2187,1749.8272
-2188,1756.4845
-2189,1763.0469
-2190,1769.542
-2191,1775.972
-2192,1782.3281
-2193,1788.5985
-2194,1794.7605
-2195,1800.7999
-2196,1806.7334
-2197,1812.5201
-2198,1818.1423
-2199,1823.6498
-2200,1829.0556
-2201,1834.3733
-2202,1839.6122
-2203,1844.7812
-2204,1849.8682
-2205,1854.849
-2206,1859.7106
-2207,1864.4469
-2208,1869.0362
-2209,1873.4672
-2210,1877.784
-2211,1881.9947
-2212,1886.1097
-2213,1890.1554
-2214,1894.1313
-2215,1898.0123
-2216,1901.7766
-2217,1905.4235
-2218,1908.9603
-2219,1912.3445
-2220,1915.5465
-2221,1918.6217
-2222,1921.6126
-2223,1924.5227
-2224,1927.352
-2225,1930.1
-2226,1932.7513
-2227,1935.2926
-2228,1937.7127
-2229,1940.0103
-2230,1942.1583
-2231,1944.1572
-2232,1946.0278
-2233,1947.7762
-2234,1949.4392
-2235,1951.0121
-2236,1952.5138
-2237,1953.9433
-2238,1955.2718
-2239,1956.4604
-2240,1957.4929
-2241,1958.428
-2242,1959.1897
-2243,1959.7707
-2244,1960.2847
-2245,1960.7288
-2246,1961.0674
-2247,1961.3194
-2248,1961.4957
-2249,1961.5683
-2250,1961.5774
-2251,1961.5774
-2252,1961.5774
-2253,1961.5774
-2254,1961.5774
-2255,1961.5774
-2256,1961.5774
-2257,1961.5774
-2258,1961.5774
-2259,1961.5774
-2260,1961.5774
-2261,1961.5774
-2262,1961.5774
-2263,1961.5774
-2264,1961.5774
-2265,1961.5774
-2266,1961.5774
-2267,1961.5774
-2268,1961.5774
-2269,1961.5774
-2270,1961.5774
-2271,1961.5774
-2272,1961.5774
-2273,1961.5774
-2274,1961.5774
-2275,1961.5774
-2276,1961.5774
-2277,1961.5774
-2278,1961.5774
-2279,1961.5774
-2280,1961.5774
-2281,1961.5774
-2282,1961.5774
-2283,1961.5774
-2284,1961.5774
-2285,1961.5774
-2286,1961.5774
-2287,1961.5774
-2288,1961.5774
-2289,1961.5774
-2290,1961.5774
-2291,1961.5774
-2292,1961.5774
-2293,1961.5774
-2294,1961.5774
-2295,1961.5774
-2296,1961.5774
-2297,1961.5774
-2298,1961.5774
-2299,1961.5774
-2300,1961.5774
\ No newline at end of file
diff --git a/inst/shinyApp/www/input/constraints/tgav_historical.csv b/inst/shinyApp/www/input/constraints/tgav_historical.csv
deleted file mode 100644
index 6529ca3..0000000
--- a/inst/shinyApp/www/input/constraints/tgav_historical.csv
+++ /dev/null
@@ -1,166 +0,0 @@
-; Temperature from HadCRUT4,
-Date,tgav_constrain
-1850,0
-1851,0.003
-1852,0.003
-1853,-0.002
-1854,-0.01
-1855,-0.022
-1856,-0.036
-1857,-0.048
-1858,-0.059
-1859,-0.066
-1860,-0.07
-1861,-0.068
-1862,-0.063
-1863,-0.054
-1864,-0.042
-1865,-0.028
-1866,-0.015
-1867,-0.004
-1868,0.004
-1869,0.008
-1870,0.009
-1871,0.009
-1872,0.01
-1873,0.013
-1874,0.021
-1875,0.032
-1876,0.045
-1877,0.058
-1878,0.066
-1879,0.068
-1880,0.062
-1881,0.049
-1882,0.031
-1883,0.011
-1884,-0.008
-1885,-0.024
-1886,-0.036
-1887,-0.045
-1888,-0.052
-1889,-0.058
-1890,-0.063
-1891,-0.066
-1892,-0.067
-1893,-0.063
-1894,-0.056
-1895,-0.047
-1896,-0.037
-1897,-0.029
-1898,-0.026
-1899,-0.03
-1900,-0.039
-1901,-0.054
-1902,-0.072
-1903,-0.09
-1904,-0.109
-1905,-0.126
-1906,-0.14
-1907,-0.151
-1908,-0.158
-1909,-0.159
-1910,-0.154
-1911,-0.142
-1912,-0.125
-1913,-0.106
-1914,-0.086
-1915,-0.067
-1916,-0.051
-1917,-0.036
-1918,-0.021
-1919,-0.007
-1920,0.006
-1921,0.019
-1922,0.031
-1923,0.043
-1924,0.054
-1925,0.064
-1926,0.074
-1927,0.083
-1928,0.092
-1929,0.101
-1930,0.11
-1931,0.12
-1932,0.132
-1933,0.145
-1934,0.16
-1935,0.178
-1936,0.198
-1937,0.219
-1938,0.24
-1939,0.259
-1940,0.274
-1941,0.286
-1942,0.294
-1943,0.297
-1944,0.295
-1945,0.29
-1946,0.281
-1947,0.271
-1948,0.261
-1949,0.253
-1950,0.247
-1951,0.242
-1952,0.238
-1953,0.235
-1954,0.233
-1955,0.234
-1956,0.238
-1957,0.244
-1958,0.252
-1959,0.258
-1960,0.262
-1961,0.261
-1962,0.255
-1963,0.247
-1964,0.239
-1965,0.231
-1966,0.226
-1967,0.223
-1968,0.221
-1969,0.22
-1970,0.219
-1971,0.217
-1972,0.215
-1973,0.215
-1974,0.219
-1975,0.227
-1976,0.24
-1977,0.259
-1978,0.281
-1979,0.303
-1980,0.324
-1981,0.341
-1982,0.356
-1983,0.367
-1984,0.379
-1985,0.392
-1986,0.407
-1987,0.423
-1988,0.441
-1989,0.458
-1990,0.475
-1991,0.49
-1992,0.506
-1993,0.524
-1994,0.545
-1995,0.568
-1996,0.594
-1997,0.62
-1998,0.646
-1999,0.67
-2000,0.692
-2001,0.713
-2002,0.731
-2003,0.746
-2004,0.757
-2005,0.764
-2006,0.769
-2007,0.77
-2008,0.77
-2009,0.769
-2010,0.768
-2011,0.768
-2012,0.768
-2013,0.768
diff --git a/inst/shinyApp/www/input/emissions/RCP26_custom_template.csv b/inst/shinyApp/www/input/emissions/RCP26_custom_template.csv
deleted file mode 100644
index 2894ed0..0000000
--- a/inst/shinyApp/www/input/emissions/RCP26_custom_template.csv
+++ /dev/null
@@ -1,740 +0,0 @@
-; RCP 26 emissions ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,Gg/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr
-Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,CF4_emissions,C2F6_emissions,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions
-1765,0.003,0,0,0,0,0,0,0,0,0,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1766,0.003,0.005338296,1.9632619,0.005191085,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1767,0.003,0.010676593,2.4364481,0.010116813,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1768,0.003,0.016014889,2.911105,0.015042803,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1769,0.003,0.021353185,3.3872782,0.019969063,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1770,0.003,0.026691482,3.8650146,0.024895601,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1771,0.004,0.032029778,4.3443625,0.029822427,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1772,0.004,0.037368074,4.8253718,0.034749548,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1773,0.004,0.042706371,5.3080938,0.039676975,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1774,0.004,0.048044667,5.7925816,0.044604715,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1775,0.004,0.053382963,6.2788896,0.04953278,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1776,0.004,0.058721259,6.7670743,0.05446118,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1777,0.004,0.064059556,7.2571937,0.059389923,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1778,0.004,0.069397852,7.7493076,0.064319022,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1779,0.004,0.074736148,8.2434776,0.069248487,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1780,0.004,0.080074445,8.7397674,0.07417833,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1781,0.005,0.085412741,9.2382426,0.079108562,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1782,0.005,0.090751037,9.7389706,0.084039195,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1783,0.005,0.096089334,10.242021,0.088970241,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1784,0.005,0.10142763,10.747466,0.093901714,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1785,0.005,0.10676593,11.25538,0.098833627,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1786,0.005,0.11210422,11.765839,0.10376599,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1787,0.005,0.11744252,12.278921,0.10869883,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1788,0.005,0.12278082,12.794707,0.11363214,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1789,0.005,0.12811911,13.313282,0.11856595,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1790,0.005,0.13345741,13.834732,0.12350027,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1791,0.006,0.1387957,14.359145,0.12843512,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1792,0.006,0.144134,14.886613,0.13337052,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1793,0.006,0.1494723,15.417231,0.13830648,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1794,0.006,0.15481059,15.951096,0.14324301,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1795,0.006,0.16014889,16.488308,0.14818014,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1796,0.006,0.16548719,17.028971,0.15311788,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1797,0.007,0.17082548,17.573192,0.15805626,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1798,0.007,0.17616378,18.121081,0.16299529,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1799,0.007,0.18150207,18.672751,0.167935,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1800,0.008,0.18684037,19.228319,0.1728754,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1801,0.008,0.19217867,19.787906,0.17781651,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1802,0.01,0.19751696,20.351635,0.18275836,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1803,0.009,0.20285526,20.919636,0.18770098,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1804,0.009,0.20819356,21.49204,0.19264437,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1805,0.009,0.21353185,22.068984,0.19758858,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1806,0.01,0.21887015,22.650607,0.20253362,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1807,0.01,0.22420845,23.237055,0.20747952,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1808,0.01,0.22954674,23.828476,0.2124263,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1809,0.01,0.23488504,24.425025,0.217374,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1810,0.01,0.24022333,25.02686,0.22232264,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1811,0.011,0.24556163,25.634145,0.22727225,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1812,0.011,0.25089993,26.247048,0.23222285,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1813,0.011,0.25623822,26.865743,0.2371745,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1814,0.011,0.26157652,27.490408,0.2421272,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1815,0.012,0.26691482,28.12123,0.247081,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1816,0.013,0.27225311,28.758398,0.25203593,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1817,0.014,0.27759141,29.402108,0.25699203,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1818,0.014,0.2829297,30.052563,0.26194932,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1819,0.014,0.288268,30.709971,0.26690786,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1820,0.014,0.2936063,31.374548,0.27186767,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1821,0.014,0.29894459,32.046514,0.2768288,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1822,0.015,0.30428289,32.7261,0.28179128,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1823,0.016,0.30962119,33.413539,0.28675516,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1824,0.016,0.31495948,34.109076,0.29172049,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1825,0.017,0.32029778,34.81296,0.2966873,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1826,0.017,0.32563608,35.52545,0.30165564,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1827,0.018,0.33097437,36.246813,0.30662557,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1828,0.018,0.33631267,36.977321,0.31159712,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1829,0.018,0.34165096,37.717259,0.31657035,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1830,0.024,0.34698926,38.466917,0.32154532,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1831,0.023,0.35232756,39.226597,0.32652206,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1832,0.023,0.35766585,39.996609,0.33150065,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1833,0.024,0.36300415,40.777271,0.33648114,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1834,0.024,0.36834245,41.568914,0.34146358,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1835,0.025,0.37368074,42.371876,0.34644803,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1836,0.029,0.37901904,43.186509,0.35143456,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1837,0.029,0.38435733,44.013173,0.35642324,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1838,0.03,0.38969563,44.85224,0.36141413,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1839,0.031,0.39503393,45.704093,0.36640729,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1840,0.032999999,0.40037222,46.569129,0.3714028,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1841,0.033999999,0.40571052,47.447755,0.37640073,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1842,0.035999999,0.41104882,48.34039,0.38140115,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1843,0.036999999,0.41638711,49.247469,0.38640415,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1844,0.038999999,0.42172541,50.169439,0.3914098,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1845,0.042999999,0.42706371,51.106759,0.39641818,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1846,0.042999999,0.432402,52.059904,0.40142938,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1847,0.045999999,0.4377403,53.029365,0.40644349,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1848,0.046999999,0.44307859,54.015644,0.41146059,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1849,0.049999999,0.44841689,55.019264,0.41648078,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1850,0.053999999,0.45375519,56.040759,0.42150415,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,157.267,3100.211
-1851,0.053999999,0.44678569,56.46132,0.42740096,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,157.267,3100.211
-1852,0.056999999,0.49862282,56.88188,0.46466062,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,157.267,3100.211
-1853,0.058999999,0.49735449,57.302441,0.46477417,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,157.267,3100.211
-1854,0.068999999,0.49581708,57.723001,0.46443647,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,157.267,3100.211
-1855,0.070999999,0.49367925,58.143562,0.46327909,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,157.267,3100.211
-1856,0.075999999,0.49893488,58.564122,0.46729312,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,157.267,3100.211
-1857,0.076999999,0.504232,58.984683,0.47126447,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,157.267,3100.211
-1858,0.077999999,0.50923298,59.405243,0.47503119,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,157.267,3100.211
-1859,0.082999999,0.51425389,59.825804,0.47876627,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,157.267,3100.211
-1860,0.090999999,0.51896689,60.246364,0.48257672,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,157.267,3100.211
-1861,0.094999998,0.5282236,59.614468,0.50499476,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,157.267,3100.211
-1862,0.096999998,0.47371663,58.982573,0.47111281,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,157.267,3100.211
-1863,0.104,0.47374912,58.350677,0.47444935,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,157.267,3100.211
-1864,0.112,0.47413825,57.718781,0.47785801,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,157.267,3100.211
-1865,0.119,0.47479536,57.086885,0.48144966,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,157.267,3100.211
-1866,0.122,0.47491218,56.45499,0.48420454,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,157.267,3100.211
-1867,0.13022269,0.47338353,55.823094,0.48472337,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,157.267,3100.211
-1868,0.13525196,0.47198274,55.191198,0.48595323,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,157.267,3100.211
-1869,0.14228123,0.47048522,54.559303,0.48686155,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,157.267,3100.211
-1870,0.14731051,0.46933399,53.927407,0.48774355,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,157.267,3100.211
-1871,0.15633978,0.48732546,56.683869,0.58501628,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,157.267,3100.211
-1872,0.17336905,0.56696435,59.440331,0.66673981,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,157.267,3100.211
-1873,0.18439832,0.57690133,62.196793,0.69637076,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,157.267,3100.211
-1874,0.1744276,0.58328394,64.953255,0.7087503,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,157.267,3100.211
-1875,0.18845687,0.5899696,67.709717,0.72034342,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,157.267,3100.211
-1876,0.19148614,0.59639187,70.46618,0.74524338,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,157.267,3100.211
-1877,0.19451541,0.60262312,73.222642,0.75633197,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,157.267,3100.211
-1878,0.196,0.6090507,75.979104,0.7660459,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,157.267,3100.211
-1879,0.21,0.61534752,78.735566,0.77491118,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,157.267,3100.211
-1880,0.236,0.62124317,81.492028,0.78412129,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,157.267,3100.211
-1881,0.243,0.64887292,84.359461,0.81157848,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,157.267,3100.211
-1882,0.256,0.60466403,87.226893,0.78526034,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,157.267,3100.211
-1883,0.272,0.60851762,90.094326,0.79255607,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,157.267,3100.211
-1884,0.275,0.61212775,92.961758,0.7987505,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,157.267,3100.211
-1885,0.27699999,0.61523611,95.829191,0.80453383,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,157.267,3100.211
-1886,0.28099999,0.61714413,98.696624,0.82619361,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,157.267,3100.211
-1887,0.295,0.61616314,101.56406,0.83219647,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,157.267,3100.211
-1888,0.32699999,0.61473356,104.43149,0.83705812,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,157.267,3100.211
-1889,0.32699999,0.6132002,107.29892,0.84143987,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,157.267,3100.211
-1890,0.35599999,0.61175412,110.16635,0.84552548,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,157.267,3100.211
-1891,0.37199999,0.61024855,111.52362,0.85098169,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,157.267,3100.211
-1892,0.37399999,0.62319119,112.88089,0.85741997,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,157.267,3100.211
-1893,0.36999999,0.62440331,114.23816,0.86475824,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,157.267,3100.211
-1894,0.38299999,0.64036719,115.59543,0.87294487,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,157.267,3100.211
-1895,0.40599999,0.64441851,116.9527,0.88188195,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,157.267,3100.211
-1896,0.41899999,0.6462784,118.30997,0.89141802,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,157.267,3100.211
-1897,0.43999999,0.64956412,119.66724,0.90140157,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,157.267,3100.211
-1898,0.46499999,0.65100098,121.02451,0.91168111,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,157.267,3100.211
-1899,0.50699999,0.65220446,122.38178,0.92210515,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,157.267,3100.211
-1900,0.53399999,0.65320628,123.73905,0.9325222,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,157.267,3100.211
-1901,0.55199999,0.70294318,124.8415,0.9446669,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,157.267,3100.211
-1902,0.56599999,0.70297364,125.94396,0.95993065,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,157.267,3100.211
-1903,0.61699999,0.72667096,127.04642,0.97764708,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,157.267,3100.211
-1904,0.62399999,0.74829324,128.14887,0.99722904,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,157.267,3100.211
-1905,0.66299999,0.76981521,129.25133,1.0181293,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,157.267,3100.211
-1906,0.70699999,0.79653384,130.35378,1.0397413,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,157.267,3100.211
-1907,0.78399999,0.80376274,131.45624,1.0614586,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,157.267,3100.211
-1908,0.74999999,0.81141278,132.5587,1.0826746,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,157.267,3100.211
-1909,0.78499999,0.81737807,133.66115,1.1027829,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,157.267,3100.211
-1910,0.81899999,0.82198169,134.76361,1.121177,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,157.267,3100.211
-1911,0.83599999,0.77889405,135.96943,1.1389722,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,157.267,3100.211
-1912,0.87899999,0.74784844,137.17525,1.1575596,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,157.267,3100.211
-1913,0.94299999,0.72297977,138.38107,1.1767464,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,157.267,3100.211
-1914,0.84999999,0.71479152,139.5869,1.1962611,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,157.267,3100.211
-1915,0.83799999,0.70574964,140.79272,1.2158443,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,157.267,3100.211
-1916,0.90099999,0.70811648,141.99854,1.2353217,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,157.267,3100.211
-1917,0.95499999,0.7111963,143.20436,1.254519,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,157.267,3100.211
-1918,0.93599999,0.71430427,144.41019,1.2732618,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,157.267,3100.211
-1919,0.80599999,0.71965435,145.61601,1.2913759,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,157.267,3100.211
-1920,0.93199999,0.72128338,146.82183,1.3086869,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,157.267,3100.211
-1921,0.80299999,0.75741661,147.86155,1.3257924,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,157.267,3100.211
-1922,0.84499999,0.7479409,148.90128,1.343275,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,157.267,3100.211
-1923,0.96999999,0.75328819,149.941,1.3609385,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,157.267,3100.211
-1924,0.96299999,0.75686059,150.98072,1.3796194,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,157.267,3100.211
-1925,0.97499999,0.75808855,152.02045,1.3998974,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,157.267,3100.211
-1926,0.98299999,0.76148327,153.06017,1.4211909,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,157.267,3100.211
-1927,1.062,0.79718283,154.09989,1.4429184,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,157.267,3100.211
-1928,1.065,0.79967141,155.13962,1.4644982,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,157.267,3100.211
-1929,1.145,0.82422601,156.17934,1.4853488,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,157.267,3100.211
-1930,1.053,0.89587975,157.21906,1.5048887,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,1.6637375,0.23563239,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,157.267,3100.211
-1931,0.93999999,0.90334082,158.34545,1.5226236,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,1.7507764,0.24803412,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,157.267,3100.211
-1932,0.84699999,0.81222597,159.47183,1.5385172,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,1.8423953,0.26108852,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,157.267,3100.211
-1933,0.89299999,0.80858849,160.59821,1.5526746,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,1.9388369,0.27483004,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,157.267,3100.211
-1934,0.97299999,0.79686256,161.7246,1.5653127,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,2.0403528,0.28929476,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,157.267,3100.211
-1935,1.027,0.79471575,162.85098,1.5771213,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,2.1472124,0.30452082,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,157.267,3100.211
-1936,1.13,0.80129993,163.97736,1.5889151,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,2.2596977,0.32054821,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,157.267,3100.211
-1937,1.209,0.77969902,165.10375,1.6015088,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,2.3781004,0.33741917,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,157.267,3100.211
-1938,1.142,0.78188222,166.23013,1.615717,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,2.5027381,0.35517808,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,157.267,3100.211
-1939,1.192,0.77944376,167.35651,1.6323545,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,2.6339328,0.37387169,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,157.267,3100.211
-1940,1.299,0.76683237,168.4829,1.6522358,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,2.7720335,0.39354912,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,157.267,3100.211
-1941,1.334,0.75036458,170.03046,1.7002044,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,2.9174066,0.41426223,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,157.267,3100.211
-1942,1.342,0.7690497,171.57803,1.7938613,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,3.0704314,0.39468287,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,157.267,3100.211
-1943,1.391,0.7637656,173.12559,1.9231582,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,3.2315097,0.37832187,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,157.267,3100.211
-1944,1.383,0.76839864,174.67315,2.0866797,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,3.4010636,0.3640764,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,157.267,3100.211
-1945,1.16,0.76914739,176.22072,2.280402,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,3.579544,0.35194679,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,157.267,3100.211
-1946,1.238,0.84214892,177.76828,2.4903635,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,3.7674167,0.34193311,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,157.267,3100.211
-1947,1.392,0.87017994,179.31584,2.7026031,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,3.9651774,0.33403572,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,157.267,3100.211
-1948,1.469,0.87513044,180.86341,2.9031595,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,4.1733472,0.32825472,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,157.267,3100.211
-1949,1.419,0.88212641,182.41097,3.0780722,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,4.3924702,0.32459037,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,157.267,3100.211
-1950,1.63,0.89233465,183.95853,3.2133815,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,4.62313,0.32304286,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,157.267,3100.211
-1951,1.768,1.0885201,189.11003,3.3186021,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,4.865916,0.32361242,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,157.267,3100.211
-1952,1.796,1.1096378,194.26153,3.4111061,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,5.121479,0.32629927,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,157.927,3117.785
-1953,1.841,1.1045171,199.41303,3.4887221,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,5.3904959,0.3311036,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,158.604,3137.148
-1954,1.865,1.1521416,204.56453,3.5543489,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,5.6736692,0.33802563,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,159.3,3158.216
-1955,2.043,1.1911855,209.71603,3.614111,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,5.9717491,0.34706557,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,160.014,3180.749
-1956,2.178,1.2446883,214.86753,3.6706801,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,6.2855162,0.35822365,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,160.748,3204.498
-1957,2.27,1.2718718,220.01902,3.7267318,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,6.6157969,0.37150001,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,161.502,3229.071
-1958,2.33,1.3195817,225.17052,3.7849451,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,6.9634615,0.38689499,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,162.277,3254.039
-1959,2.462,1.2035957,230.32202,3.8480013,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,7.3294266,0.40440867,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,163.073,3278.967
-1960,2.577,1.1922833,235.47352,3.9185827,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,7.7146508,0.42404135,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,163.892,3303.389
-1961,2.594,1.2443218,238.52217,4.0240052,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,8.1201607,0.4457932,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,164.735,3326.864
-1962,2.7,1.2355717,241.57083,4.1836477,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,8.5470132,0.46966444,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,165.601,3349.069
-1963,2.848,1.2442947,244.61948,4.3883117,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,14.984956,0.49565531,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.007,166.493,3369.713
-1964,3.008,1.2515879,247.66813,4.6374693,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,13.488099,0.52376596,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.003,0.014,167.41,3388.628
-1965,3.145,1.2642558,250.71679,4.8968181,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,13.488369,0.55399667,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.028,168.355,3405.698
-1966,3.305,1.2936968,253.76544,5.195583,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,13.488639,0.58634761,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.048,169.328,3420.923
-1967,3.411,1.2976254,256.81409,5.457478,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,13.488909,0.62081899,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.075,170.329,3434.335
-1968,3.588,1.2352028,259.86274,5.619744,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,13.48918,0.65741104,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.016,0.109,171.36,3446.065
-1969,3.8,1.2383879,262.9114,5.784831,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,13.489449,0.69612398,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.024,0.15,172.423,3456.224
-1970,4.076,1.1971129,265.96005,5.9368752,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,11.992564,0.73695798,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.043,0.197,173.518,3464.95
-1971,4.231,1.0708913,270.02505,5.6049759,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,13.489967,0.7799133,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.1,0.252,174.646,3472.409
-1972,4.399,1.0470621,274.09004,5.9181309,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,13.490244,0.82499011,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.17,0.313,175.809,3478.741
-1973,4.6349999,1.0330987,278.15504,6.0449043,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,13.490523,0.87218868,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.277,0.391,177.007,3484.114
-1974,4.644,1.0387371,282.22003,5.9406002,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,11.993645,0.9215092,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.372,0.468,178.243,3488.632
-1975,4.615,1.0315876,286.28503,6.1409693,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,13.49105,0.97295172,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.524,0.544,179.517,3492.425
-1976,4.883,1.0906077,290.35002,6.3042588,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,13.491328,1.0265167,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.783,0.621,180.83,3495.619
-1977,5.029,1.0939874,294.41502,6.534405,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,11.994452,1.0822044,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,1.006,0.697,182.185,3498.281
-1978,5.105,1.09037,298.48002,6.6193729,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,13.491857,1.1400146,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,1.253,0.774,183.581,3500.505
-1979,5.387,1.0647127,302.54501,7.007773,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,11.994981,1.1999481,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,1.548,0.85,185.022,3502.36
-1980,5.332,1.0252096,306.61001,7.0613923,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,13.492387,1.2620043,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,1.805,0.927,186.506,3503.915
-1981,5.168,1.0448621,310.01251,6.8417522,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,11.995499,1.3261846,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,2.139,1.003,188.038,3505.193
-1982,5.127,1.1904055,313.415,7.1189858,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,13.492893,1.392488,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,2.645,1.105,189.616,3506.255
-1983,5.11,1.2255201,316.8175,7.2168971,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,11.996004,1.4609153,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,2.98,1.183,191.243,3507.154
-1984,5.29,1.2600833,320.22,7.0481314,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,11.996242,1.5314669,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,3.475,1.262,192.92,3507.882
-1985,5.444,1.2753449,323.6225,7.0169243,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,11.99648,1.6041426,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,3.997,1.355,194.648,3508.496
-1986,5.61,1.2872023,327.025,7.0704917,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,13.493874,1.678943,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,4.579,1.434,196.427,3508.999
-1987,5.753,1.2940086,330.42749,7.4616728,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,11.996986,1.7558675,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,5.109,1.504,198.259,3509.425
-1988,5.964,1.3167248,333.82999,7.2025077,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,11.997224,1.8349176,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,5.696,1.728,200.146,3509.774
-1989,6.089,1.3236436,337.23249,7.3310397,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,11.997462,1.9160924,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,5.482,1.73,202.087,3510.061
-1990,6.144,1.3194833,340.63499,7.5856812,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,11.997683,2.0735678,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,5.119,1.73,204.082,3510.299
-1991,6.235,1.3809799,336.59218,7.4023631,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,11.997905,2.3729101,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,4.094,1.735,206.133,3510.501
-1992,6.118,1.3035304,332.54937,7.7989323,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,11.998111,2.3731469,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,2.74,1.715,208.24,3510.656
-1993,6.124,1.2981006,328.50656,7.3131034,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,11.998354,2.3733837,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,3.344,1.7,210.402,3510.801
-1994,6.242,1.2895956,324.46375,7.5072841,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,11.998587,2.3736205,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,4.75,1.68,212.619,3510.907
-1995,6.372,1.2750104,320.42094,7.6191035,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,10.501674,2.3738573,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,3.991,1.3,200.199,3511.005
-1996,6.51,1.2511025,316.37814,7.6520638,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,11.999071,2.3740941,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,2.691,0.85,201.834,3511.082
-1997,6.619,1.2181397,312.33533,7.9097526,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,11.999322,2.3743309,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,2.594,0.7,207.696,3511.082
-1998,6.588,1.2148431,308.29252,7.8957263,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,11.999575,2.3745677,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,2.491,0.71,206.946,3511.082
-1999,6.569,1.1827892,304.24971,7.5269849,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,10.502692,2.3748045,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,2.39,0.631,195.938,3511.082
-2000,6.735,1.1488,300.2069,7.4566,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,12.0001,2.3749,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,2.295,0.562,186.206,3511.082
-2001,6.8959,1.132,303.4092,7.503,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,11.925,2.4345,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,240.392,53.81,28.001,8.669,2.209,0.5,181.525,3511.082
-2002,6.949,1.2317,306.5788,7.5487,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,11.8481,2.4915,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,251.146,52.018,22.43,8.524,2.131,0.445,181.887,3511.082
-2003,7.286,1.2257,309.7164,7.5942,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,11.7693,2.5463,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,261.9,50.225,23.232,7.77,2.057,0.396,177.539,3511.082
-2004,7.6719,1.2429,312.824,7.6394,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,11.6885,2.599,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,272.654,48.433,23.348,7.653,1.987,0.353,174.26,3511.082
-2005,7.971,1.1955,315.9027,7.6841,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,11.6059,2.6494,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,1.92,0.314,168.841,3511.082
-2006,8.1427,1.1676,320.0614,7.715,56545,1055.3681,215.8001,38.883,8.3258,36.4361,12.2669,3.1051,10.5529,12.3831,3.8803,16.2358,121.0746,14.293,5.6938,31.7215,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,296.002,48.231,34.767,6.992,1.834,0.279,167.857,3511.082
-2007,8.3136,1.14,324.2127,7.7459,56367.8,1049.2141,216.1376,38.97,8.4003,36.4792,12.9284,3.5603,10.2947,13.7731,4.5246,18.7259,129.6223,16.1321,6.5045,36.5545,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,308.596,49.821,39.869,6.502,1.752,0.249,167.857,3511.082
-2008,8.4828667,1.1121667,328.34943,7.7766333,56184.533,1043.0664,216.4749,39.054433,8.4745333,36.520033,13.5912,4.0149667,10.037233,15.162767,5.1677,21.2435,138.76247,17.9599,7.3294667,41.387467,6.6085333,45.74,43.216,0.806,0.049,0.331,45.5,10.874,321.19,51.412,39.099,6.047,1.675,0.221,167.857,3511.082
-2009,8.6521333,1.0843333,332.48617,7.8073667,56001.267,1036.9188,216.8122,39.138867,8.5487667,36.560867,14.254,4.4696333,9.7797667,16.552433,5.8108,23.7611,147.90263,19.7877,8.1544333,46.220433,6.6157667,44.442,40.334,0.754,0.029,0.248,39,10.874,333.784,53.002,38.069,5.624,1.601,0.197,167.857,3511.082
-2010,8.8214,1.0565,336.6229,7.8381,55818,1030.7711,217.1495,39.2233,8.623,36.6017,14.9168,4.9243,9.5223,17.9421,6.4539,26.2787,157.0428,21.6155,8.9794,51.0534,6.623,42.976,36.906,0.377,0.018,0.186,32.5,7.266,346.378,54.593,36.801,5.23,1.521,0.175,167.857,3511.082
-2011,8.86803,1.04813,328.6374,7.79063,54657.49,1025.9587,216.7636,38.96192,8.5989,36.61719,14.6468,4.9717,8.68531,22.21208,6.53107,32.58573,158.72642,25.89136,8.24224,49.18021,6.18511,41.557,33.769,0.189,0.011,0.14,26,7.266,344.714,54.867,35.314,4.864,1.445,0.156,167.857,3511.082
-2012,8.91466,1.03976,320.6519,7.74316,53496.98,1021.1462,216.3777,38.70054,8.5748,36.63268,14.3768,5.0191,7.84832,26.48206,6.60824,38.89276,160.41004,30.16722,7.50508,47.30702,5.74722,40.186,30.898,0.094,0.006,0.105,19.5,7.266,343.051,55.141,33.625,4.524,1.373,0.139,167.857,3511.082
-2013,8.96129,1.03139,312.6664,7.69569,52336.47,1016.3338,215.9918,38.43916,8.5507,36.64817,14.1068,5.0665,7.01133,30.75204,6.68541,45.19979,162.09366,34.44308,6.76792,45.43383,5.30933,38.86,28.272,0.047,0.004,0.079,13,7.266,341.387,55.414,31.75,4.207,1.304,0.124,167.857,3511.082
-2014,9.00792,1.02302,304.6809,7.64822,51175.96,1011.5213,215.6059,38.17778,8.5266,36.66366,13.8368,5.1139,6.17434,35.02202,6.76258,51.50682,163.77728,38.71894,6.03076,43.56064,4.87144,37.578,25.869,0.024,0.002,0.059,6.5,7.266,339.724,55.688,29.705,3.913,1.239,0.11,167.857,3511.082
-2015,9.05455,1.01465,296.6954,7.60075,50015.45,1006.7089,215.22,37.9164,8.5025,36.67915,13.5668,5.1613,5.33735,39.292,6.83975,57.81385,165.4609,42.9948,5.2936,41.68745,4.43355,36.338,23.67,0.012,0.001,0.044,0,0,338.06,55.962,27.502,3.639,1.177,0.098,155.925,3511.082
-2016,9.10118,1.00628,288.7099,7.55328,48854.94,1001.8965,214.8341,37.65502,8.4784,36.69464,13.2968,5.2087,4.50036,43.56198,6.91692,64.12088,167.14452,47.27066,4.55644,39.81426,3.99566,35.138,21.658,0.006,0.001,0.033,0,0,336.397,56.236,25.476,3.384,1.118,0.087,155.925,3511.082
-2017,9.14781,0.99791,280.7244,7.50581,47694.43,997.08402,214.4482,37.39364,8.4543,36.71013,13.0268,5.2561,3.66337,47.83196,6.99409,70.42791,168.82814,51.54652,3.81928,37.94107,3.55777,33.979,19.817,0.003,0,0.025,0,0,334.733,56.51,23.611,3.147,1.062,0.078,155.925,3511.082
-2018,9.19444,0.98954,272.7389,7.45834,46533.92,992.27158,214.0623,37.13226,8.4302,36.72562,12.7568,5.3035,2.82638,52.10194,7.07126,76.73494,170.51176,55.82238,3.08212,36.06788,3.11988,32.858,18.133,0.001,0,0.019,0,0,333.07,56.784,21.896,2.927,1.009,0.069,155.925,3511.082
-2019,9.24107,0.98117,264.7534,7.41087,45373.41,987.45914,213.6764,36.87088,8.4061,36.74111,12.4868,5.3509,1.98939,56.37192,7.14843,83.04197,172.19538,60.09824,2.34496,34.19469,2.68199,31.773,16.591,0.001,0,0.014,0,0,331.406,57.058,20.318,2.722,0.959,0.061,155.925,3511.082
-2020,9.2877,0.9728,256.7679,7.3634,44212.9,982.6467,213.2905,36.6095,8.382,36.7566,12.2168,5.3983,1.1524,60.6419,7.2256,89.349,173.879,64.3741,1.6078,32.3215,2.2441,30.725,15.181,0,0,0.01,0,0,329.743,57.332,18.867,2.531,0.911,0.055,155.925,3511.082
-2021,9.07462,0.95441,254.65433,7.35756,42752.21,976.97887,212.02164,36.10504,8.23806,36.62955,11.66461,5.04704,1.1063,61.78125,7.31559,91.30401,175.90966,65.49222,1.52656,29.40678,2.21491,29.711,13.891,0,0,0.008,0,0,313.814,56.425,17.531,2.354,0.865,0.049,155.925,3511.082
-2022,8.86154,0.93602,252.54076,7.35172,41291.52,971.31104,210.75278,35.60058,8.09412,36.5025,11.11242,4.69578,1.0602,62.9206,7.40558,93.25902,177.94032,66.61034,1.44532,26.49206,2.18572,28.73,12.71,0,0,0.006,0,0,297.886,55.519,16.302,2.189,0.822,0.043,155.925,3511.082
-2023,8.64846,0.91763,250.42719,7.34588,39830.83,965.64321,209.48392,35.09612,7.95018,36.37545,10.56023,4.34452,1.0141,64.05995,7.49557,95.21403,179.97098,67.72846,1.36408,23.57734,2.15653,27.782,11.63,0,0,0.004,0,0,281.957,54.612,15.172,2.036,0.781,0.039,155.925,3511.082
-2024,8.43538,0.89924,248.31362,7.34004,38370.14,959.97538,208.21506,34.59166,7.80624,36.2484,10.00804,3.99326,0.968,65.1993,7.58556,97.16904,182.00164,68.84658,1.28284,20.66262,2.12734,26.865,10.641,0,0,0.003,0,0,266.029,53.705,14.132,1.894,0.742,0.034,155.925,3511.082
-2025,8.2223,0.88085,246.20005,7.3342,36909.45,954.30755,206.9462,34.0872,7.6623,36.12135,9.45585,3.642,0.9219,66.33865,7.67555,99.12405,184.0323,69.9647,1.2016,17.7479,2.09815,25.979,9.737,0,0,0.002,0,0,250.101,52.798,13.175,1.761,0.705,0.031,155.925,3511.082
-2026,8.00922,0.86246,244.08648,7.32836,35448.76,948.63972,205.67734,33.58274,7.51836,35.9943,8.90366,3.29074,0.8758,67.478,7.76554,101.07906,186.06296,71.08282,1.12036,14.83318,2.06896,25.122,8.909,0,0,0.002,0,0,234.172,51.892,12.295,1.638,0.669,0.027,155.925,3511.082
-2027,7.79614,0.84407,241.97291,7.32252,33988.07,942.97189,204.40848,33.07828,7.37442,35.86725,8.35147,2.93948,0.8297,68.61735,7.85553,103.03407,188.09362,72.20094,1.03912,11.91846,2.03977,24.293,8.152,0,0,0.001,0,0,218.244,50.985,11.485,1.523,0.636,0.024,155.925,3511.082
-2028,7.58306,0.82568,239.85934,7.31668,32527.38,937.30406,203.13962,32.57382,7.23048,35.7402,7.79928,2.58822,0.7836,69.7567,7.94552,104.98908,190.12428,73.31906,0.95788,9.00374,2.01058,23.491,7.459,0,0,0.001,0,0,202.315,50.078,10.74,1.417,0.604,0.022,155.925,3511.082
-2029,7.36998,0.80729,237.74577,7.31084,31066.69,931.63623,201.87076,32.06936,7.08654,35.61315,7.24709,2.23696,0.7375,70.89605,8.03551,106.94409,192.15494,74.43718,0.87664,6.08902,1.98139,22.716,6.825,0,0,0.001,0,0,186.387,49.172,10.055,1.317,0.574,0.019,155.925,3511.082
-2030,7.1569,0.7889,235.6322,7.305,29606,925.9684,200.6019,31.5649,6.9426,35.4861,6.6949,1.8857,0.6914,72.0354,8.1255,108.8991,194.1856,75.5553,0.7954,3.1743,1.9522,21.966,6.245,0,0,0.001,0,0,170.458,48.265,9.424,1.225,0.545,0.017,155.925,3511.082
-2031,6.8947,0.75891,234.57183,7.29221,28634.46,921.1656,199.76692,31.40904,6.81693,35.13889,6.53063,1.80589,0.66362,72.90303,8.24943,110.50533,196.04996,76.3722,0.80448,2.85687,1.91374,21.241,5.714,0,0,0,0,0,158.161,46.405,8.826,1.139,0.518,0.015,155.925,3511.082
-2032,6.6325,0.72892,233.51146,7.27942,27662.92,916.3628,198.93194,31.25318,6.69126,34.79168,6.36636,1.72608,0.63584,73.77066,8.37336,112.11156,197.91432,77.1891,0.81356,2.53944,1.87528,20.54,5.228,0,0,0,0,0,145.863,44.545,8.259,1.06,0.492,0.013,155.925,3511.082
-2033,6.3703,0.69893,232.45109,7.26663,26691.38,911.56,198.09696,31.09732,6.56559,34.44447,6.20209,1.64627,0.60806,74.63829,8.49729,113.71779,199.77868,78.006,0.82264,2.22201,1.83682,19.862,4.784,0,0,0,0,0,133.566,42.685,7.72,0.985,0.467,0.012,155.925,3511.082
-2034,6.1081,0.66894,231.39072,7.25384,25719.84,906.7572,197.26198,30.94146,6.43992,34.09726,6.03782,1.56646,0.58028,75.50592,8.62122,115.32402,201.64304,78.8229,0.83172,1.90458,1.79836,19.207,4.377,0,0,0,0,0,121.269,40.825,7.207,0.916,0.444,0.011,155.925,3511.082
-2035,5.8459,0.63895,230.33035,7.24105,24748.3,901.9544,196.427,30.7856,6.31425,33.75005,5.87355,1.48665,0.5525,76.37355,8.74515,116.93025,203.5074,79.6398,0.8408,1.58715,1.7599,18.573,4.005,0,0,0,0,0,108.971,38.965,6.717,0.852,0.422,0.01,155.925,3511.082
-2036,5.5837,0.60896,229.26998,7.22826,23776.76,897.1516,195.59202,30.62974,6.18858,33.40284,5.70928,1.40684,0.52472,77.24118,8.86908,118.53648,205.37176,80.4567,0.84988,1.26972,1.72144,17.96,3.665,0,0,0,0,0,96.674,37.105,6.249,0.793,0.401,0.008,155.925,3511.082
-2037,5.3215,0.57897,228.20961,7.21547,22805.22,892.3488,194.75704,30.47388,6.06291,33.05563,5.54501,1.32703,0.49694,78.10881,8.99301,120.14271,207.23612,81.2736,0.85896,0.95229,1.68298,17.368,3.353,0,0,0,0,0,84.377,35.244,5.801,0.737,0.381,0.008,155.925,3511.082
-2038,5.0593,0.54898,227.14924,7.20268,21833.68,887.546,193.92206,30.31802,5.93724,32.70842,5.38074,1.24722,0.46916,78.97644,9.11694,121.74894,209.10048,82.0905,0.86804,0.63486,1.64452,16.794,3.068,0,0,0,0,0,72.079,33.384,5.372,0.686,0.362,0.007,155.925,3511.082
-2039,4.7971,0.51899,226.08887,7.18989,20862.14,882.7432,193.08708,30.16216,5.81157,32.36121,5.21647,1.16741,0.44138,79.84407,9.24087,123.35517,210.96484,82.9074,0.87712,0.31743,1.60606,16.24,2.807,0,0,0,0,0,59.782,31.524,4.96,0.638,0.344,0.006,155.925,3511.082
-2040,4.5349,0.489,225.0285,7.1771,19890.6,877.9404,192.2521,30.0063,5.6859,32.014,5.0522,1.0876,0.4136,80.7117,9.3648,124.9614,212.8292,83.7243,0.8862,0,1.5676,15.704,2.569,0,0,0,0,0,47.485,29.664,4.563,0.593,0.326,0.005,155.925,3511.082
-2041,4.39997,0.46022,221.45546,7.08404,19458.99,872.16763,190.878,29.89599,5.61136,31.80989,4.81083,1.02596,0.39687,80.10127,9.53783,124.37894,211.38138,83.06078,0.82716,0,1.47407,15.186,2.35,0,0,0,0,0,43.916,28.474,4.198,0.551,0.31,0.005,155.925,3511.082
-2042,4.26504,0.43144,217.88242,6.99098,19027.38,866.39486,189.5039,29.78568,5.53682,31.60578,4.56946,0.96432,0.38014,79.49084,9.71086,123.79648,209.93356,82.39726,0.76812,0,1.38054,14.685,2.151,0,0,0,0,0,40.347,27.284,3.862,0.513,0.295,0.004,155.925,3511.082
-2043,4.13011,0.40266,214.30938,6.89792,18595.77,860.62209,188.1298,29.67537,5.46228,31.40167,4.32809,0.90268,0.36341,78.88041,9.88389,123.21402,208.48574,81.73374,0.70908,0,1.28701,14.2,1.968,0,0,0,0,0,36.778,26.093,3.553,0.477,0.28,0.004,155.925,3511.082
-2044,3.99518,0.37388,210.73634,6.80486,18164.16,854.84932,186.7557,29.56506,5.38774,31.19756,4.08672,0.84104,0.34668,78.26998,10.05692,122.63156,207.03792,81.07022,0.65004,0,1.19348,13.732,1.801,0,0,0,0,0,33.209,24.903,3.269,0.444,0.266,0.003,155.925,3511.082
-2045,3.86025,0.3451,207.1633,6.7118,17732.55,849.07655,185.3816,29.45475,5.3132,30.99345,3.84535,0.7794,0.32995,77.65955,10.22995,122.0491,205.5901,80.4067,0.591,0,1.09995,13.279,1.648,0,0,0,0,0,29.64,23.713,3.007,0.413,0.253,0.003,155.925,3511.082
-2046,3.72532,0.31632,203.59026,6.61874,17300.94,843.30378,184.0075,29.34444,5.23866,30.78934,3.60398,0.71776,0.31322,77.04912,10.40298,121.46664,204.14228,79.74318,0.53196,0,1.00642,12.84,1.507,0,0,0,0,0,26.072,22.522,2.767,0.384,0.24,0.003,155.925,3511.082
-2047,3.59039,0.28754,200.01722,6.52568,16869.33,837.53101,182.6334,29.23413,5.16412,30.58523,3.36261,0.65612,0.29649,76.43869,10.57601,120.88418,202.69446,79.07966,0.47292,0,0.91289,12.417,1.379,0,0,0,0,0,22.503,21.332,2.545,0.357,0.228,0.002,155.925,3511.082
-2048,3.45546,0.25876,196.44418,6.43262,16437.72,831.75824,181.2593,29.12382,5.08958,30.38112,3.12124,0.59448,0.27976,75.82826,10.74904,120.30172,201.24664,78.41614,0.41388,0,0.81936,12.007,1.262,0,0,0,0,0,18.934,20.142,2.342,0.332,0.217,0.002,155.925,3511.082
-2049,3.32053,0.22998,192.87114,6.33956,16006.11,825.98547,179.8852,29.01351,5.01504,30.17701,2.87987,0.53284,0.26303,75.21783,10.92207,119.71926,199.79882,77.75262,0.35484,0,0.72583,11.611,1.155,0,0,0,0,0,15.365,18.951,2.154,0.309,0.206,0.002,155.925,3511.082
-2050,3.1856,0.2012,189.2981,6.2465,15574.5,820.2127,178.5111,28.9032,4.9405,29.9729,2.6385,0.4712,0.2463,74.6074,11.0951,119.1368,198.351,77.0891,0.2958,0,0.6323,11.227,1.057,0,0,0,0,0,11.796,17.761,1.982,0.287,0.195,0.002,155.925,3511.082
-2051,3.00896,0.2426,187.01509,6.19366,15387.03,816.11031,177.30075,28.73251,4.88943,29.9464,2.59225,0.45634,0.23542,75.55522,11.09689,121.10282,201.15158,78.03953,0.28044,0,0.61892,10.857,0.967,0,0,0,0,0,10.91,17.048,1.824,0.267,0.186,0.001,155.925,3511.082
-2052,2.83232,0.284,184.73208,6.14082,15199.56,812.00792,176.0904,28.56182,4.83836,29.9199,2.546,0.44148,0.22454,76.50304,11.09868,123.06884,203.95216,78.98996,0.26508,0,0.60554,10.499,0.885,0,0,0,0,0,10.023,16.336,1.678,0.248,0.176,0.001,155.925,3511.082
-2053,2.65568,0.3254,182.44907,6.08798,15012.09,807.90553,174.88005,28.39113,4.78729,29.8934,2.49975,0.42662,0.21366,77.45086,11.10047,125.03486,206.75274,79.94039,0.24972,0,0.59216,10.152,0.809,0,0,0,0,0,9.137,15.623,1.543,0.231,0.168,0.001,155.925,3511.082
-2054,2.47904,0.3668,180.16606,6.03514,14824.62,803.80314,173.6697,28.22044,4.73622,29.8669,2.4535,0.41176,0.20278,78.39868,11.10226,127.00088,209.55332,80.89082,0.23436,0,0.57878,9.817,0.741,0,0,0,0,0,8.25,14.91,1.42,0.215,0.159,0.001,155.925,3511.082
-2055,2.3024,0.4082,177.88305,5.9823,14637.15,799.70075,172.45935,28.04975,4.68515,29.8404,2.40725,0.3969,0.1919,79.3465,11.10405,128.9669,212.3539,81.84125,0.219,0,0.5654,9.493,0.678,0,0,0,0,0,7.363,14.198,1.306,0.2,0.151,0.001,155.925,3511.082
-2056,2.12576,0.4496,175.60004,5.92946,14449.68,795.59836,171.249,27.87906,4.63408,29.8139,2.361,0.38204,0.18102,80.29432,11.10584,130.93292,215.15448,82.79168,0.20364,0,0.55202,9.18,0.62,0,0,0,0,0,6.477,13.485,1.202,0.186,0.144,0.001,155.925,3511.082
-2057,1.94912,0.491,173.31703,5.87662,14262.21,791.49597,170.03865,27.70837,4.58301,29.7874,2.31475,0.36718,0.17014,81.24214,11.10763,132.89894,217.95506,83.74211,0.18828,0,0.53864,8.877,0.567,0,0,0,0,0,5.59,12.772,1.106,0.173,0.136,0.001,155.925,3511.082
-2058,1.77248,0.5324,171.03402,5.82378,14074.74,787.39358,168.8283,27.53768,4.53194,29.7609,2.2685,0.35232,0.15926,82.18996,11.10942,134.86496,220.75564,84.69254,0.17292,0,0.52526,8.584,0.519,0,0,0,0,0,4.704,12.06,1.017,0.161,0.13,0.001,155.925,3511.082
-2059,1.59584,0.5738,168.75101,5.77094,13887.27,783.29119,167.61795,27.36699,4.48087,29.7344,2.22225,0.33746,0.14838,83.13778,11.11121,136.83098,223.55622,85.64297,0.15756,0,0.51188,8.301,0.475,0,0,0,0,0,3.817,11.347,0.936,0.149,0.123,0.001,155.925,3511.082
-2060,1.4192,0.6152,166.468,5.7181,13699.8,779.1888,166.4076,27.1963,4.4298,29.7079,2.176,0.3226,0.1375,84.0856,11.113,138.797,226.3568,86.5934,0.1422,0,0.4985,8.027,0.435,0,0,0,0,0,2.93,10.634,0.861,0.139,0.117,0.001,155.925,3511.082
-2061,1.28885,0.6075,165.95204,5.7204,13516.44,772.51907,164.79686,26.8771,4.38112,29.54327,2.17216,0.31644,0.13105,85.06506,11.10641,140.83553,229.30577,87.48473,0.14112,0,0.49048,7.762,0.398,0,0,0,0,0,2.71,10.207,0.792,0.129,0.111,0,155.925,3511.082
-2062,1.1585,0.5998,165.43608,5.7227,13333.08,765.84934,163.18612,26.5579,4.33244,29.37864,2.16832,0.31028,0.1246,86.04452,11.09982,142.87406,232.25474,88.37606,0.14004,0,0.48246,7.506,0.364,0,0,0,0,0,2.49,9.781,0.729,0.12,0.106,0,155.925,3511.082
-2063,1.02815,0.5921,164.92012,5.725,13149.72,759.17961,161.57538,26.2387,4.28376,29.21401,2.16448,0.30412,0.11815,87.02398,11.09323,144.91259,235.20371,89.26739,0.13896,0,0.47444,7.258,0.333,0,0,0,0,0,2.27,9.354,0.67,0.112,0.1,0,155.925,3511.082
-2064,0.8978,0.5844,164.40416,5.7273,12966.36,752.50988,159.96464,25.9195,4.23508,29.04938,2.16064,0.29796,0.1117,88.00344,11.08664,146.95112,238.15268,90.15872,0.13788,0,0.46642,7.019,0.305,0,0,0,0,0,2.049,8.927,0.617,0.104,0.095,0,155.925,3511.082
-2065,0.76745,0.5767,163.8882,5.7296,12783,745.84015,158.3539,25.6003,4.1864,28.88475,2.1568,0.2918,0.10525,88.9829,11.08005,148.98965,241.10165,91.05005,0.1368,0,0.4584,6.787,0.279,0,0,0,0,0,1.829,8.501,0.567,0.097,0.091,0,155.925,3511.082
-2066,0.6371,0.569,163.37224,5.7319,12599.64,739.17042,156.74316,25.2811,4.13772,28.72012,2.15296,0.28564,0.0988,89.96236,11.07346,151.02818,244.05062,91.94138,0.13572,0,0.45038,6.563,0.255,0,0,0,0,0,1.609,8.074,0.522,0.09,0.086,0,155.925,3511.082
-2067,0.50675,0.5613,162.85628,5.7342,12416.28,732.50069,155.13242,24.9619,4.08904,28.55549,2.14912,0.27948,0.09235,90.94182,11.06687,153.06671,246.99959,92.83271,0.13464,0,0.44236,6.346,0.233,0,0,0,0,0,1.389,7.647,0.48,0.084,0.082,0,155.925,3511.082
-2068,0.3764,0.5536,162.34032,5.7365,12232.92,725.83096,153.52168,24.6427,4.04036,28.39086,2.14528,0.27332,0.0859,91.92128,11.06028,155.10524,249.94856,93.72404,0.13356,0,0.43434,6.137,0.214,0,0,0,0,0,1.168,7.221,0.442,0.078,0.078,0,155.925,3511.082
-2069,0.24605,0.5459,161.82436,5.7388,12049.56,719.16123,151.91094,24.3235,3.99168,28.22623,2.14144,0.26716,0.07945,92.90074,11.05369,157.14377,252.89753,94.61537,0.13248,0,0.42632,5.935,0.195,0,0,0,0,0,0.948,6.794,0.407,0.072,0.074,0,155.925,3511.082
-2070,0.1157,0.5382,161.3084,5.7411,11866.2,712.4915,150.3002,24.0043,3.943,28.0616,2.1376,0.261,0.073,93.8802,11.0471,159.1823,255.8465,95.5067,0.1314,0,0.4183,5.739,0.179,0,0,0,0,0,0.728,6.367,0.374,0.067,0.07,0,155.925,3511.082
-2071,0.06083,0.53938,160.68516,5.72833,11655.06,707.6157,149.13236,23.66643,3.91608,27.94251,2.06823,0.25002,0.06942,94.1193,11.03809,159.92094,256.83185,95.53701,0.1303,0,0.40805,5.549,0.164,0,0,0,0,0,0.673,6.112,0.344,0.063,0.067,0,155.925,3511.082
-2072,0.00596,0.54056,160.06192,5.71556,11443.92,702.7399,147.96452,23.32856,3.88916,27.82342,1.99886,0.23904,0.06584,94.3584,11.02908,160.65958,257.8172,95.56732,0.1292,0,0.3978,5.366,0.15,0,0,0,0,0,0.619,5.856,0.317,0.058,0.063,0,155.925,3511.082
-2073,-0.04891,0.54174,159.43868,5.70279,11232.78,697.8641,146.79668,22.99069,3.86224,27.70433,1.92949,0.22806,0.06226,94.5975,11.02007,161.39822,258.80255,95.59763,0.1281,0,0.38755,5.189,0.137,0,0,0,0,0,0.564,5.601,0.291,0.054,0.06,0,155.925,3511.082
-2074,-0.10378,0.54292,158.81544,5.69002,11021.64,692.9883,145.62884,22.65282,3.83532,27.58524,1.86012,0.21708,0.05868,94.8366,11.01106,162.13686,259.7879,95.62794,0.127,0,0.3773,5.018,0.125,0,0,0,0,0,0.509,5.345,0.268,0.05,0.057,0,155.925,3511.082
-2075,-0.15865,0.5441,158.1922,5.67725,10810.5,688.1125,144.461,22.31495,3.8084,27.46615,1.79075,0.2061,0.0551,95.0757,11.00205,162.8755,260.77325,95.65825,0.1259,0,0.36705,4.852,0.115,0,0,0,0,0,0.454,5.09,0.247,0.047,0.054,0,155.925,3511.082
-2076,-0.21352,0.54528,157.56896,5.66448,10599.36,683.2367,143.29316,21.97708,3.78148,27.34706,1.72138,0.19512,0.05152,95.3148,10.99304,163.61414,261.7586,95.68856,0.1248,0,0.3568,4.692,0.105,0,0,0,0,0,0.4,4.834,0.227,0.043,0.052,0,155.925,3511.082
-2077,-0.26839,0.54646,156.94572,5.65171,10388.22,678.3609,142.12532,21.63921,3.75456,27.22797,1.65201,0.18414,0.04794,95.5539,10.98403,164.35278,262.74395,95.71887,0.1237,0,0.34655,4.537,0.096,0,0,0,0,0,0.345,4.579,0.209,0.04,0.049,0,155.925,3511.082
-2078,-0.32326,0.54764,156.32248,5.63894,10177.08,673.4851,140.95748,21.30134,3.72764,27.10888,1.58264,0.17316,0.04436,95.793,10.97502,165.09142,263.7293,95.74918,0.1226,0,0.3363,4.388,0.088,0,0,0,0,0,0.29,4.323,0.192,0.038,0.046,0,155.925,3511.082
-2079,-0.37813,0.54882,155.69924,5.62617,9965.94,668.6093,139.78964,20.96347,3.70072,26.98979,1.51327,0.16218,0.04078,96.0321,10.96601,165.83006,264.71465,95.77949,0.1215,0,0.32605,4.243,0.08,0,0,0,0,0,0.236,4.068,0.177,0.035,0.044,0,155.925,3511.082
-2080,-0.433,0.55,155.076,5.6134,9754.8,663.7335,138.6218,20.6256,3.6738,26.8707,1.4439,0.1512,0.0372,96.2712,10.957,166.5687,265.7,95.8098,0.1204,0,0.3158,4.103,0.074,0,0,0,0,0,0.181,3.812,0.162,0.033,0.042,0,155.925,3511.082
-2081,-0.47674,0.55524,154.41227,5.59813,9561.88,661.04504,137.88381,20.41927,3.66094,26.82342,1.41908,0.14528,0.03348,95.76444,10.93657,166.06747,264.8148,95.1051,0.11903,0,0.30275,3.967,0.067,0,0,0,0,0,0.167,3.659,0.149,0.03,0.04,0,155.925,3511.082
-2082,-0.52048,0.56048,153.74854,5.58286,9368.96,658.35658,137.14582,20.21294,3.64808,26.77614,1.39426,0.13936,0.02976,95.25768,10.91614,165.56624,263.9296,94.4004,0.11766,0,0.2897,3.836,0.062,0,0,0,0,0,0.154,3.506,0.138,0.028,0.038,0,155.925,3511.082
-2083,-0.56422,0.56572,153.08481,5.56759,9176.04,655.66812,136.40783,20.00661,3.63522,26.72886,1.36944,0.13344,0.02604,94.75092,10.89571,165.06501,263.0444,93.6957,0.11629,0,0.27665,3.71,0.056,0,0,0,0,0,0.14,3.353,0.127,0.026,0.036,0,155.925,3511.082
-2084,-0.60796,0.57096,152.42108,5.55232,8983.12,652.97966,135.66984,19.80028,3.62236,26.68158,1.34462,0.12752,0.02232,94.24416,10.87528,164.56378,262.1592,92.991,0.11492,0,0.2636,3.587,0.052,0,0,0,0,0,0.126,3.2,0.116,0.024,0.034,0,155.925,3511.082
-2085,-0.6517,0.5762,151.75735,5.53705,8790.2,650.2912,134.93185,19.59395,3.6095,26.6343,1.3198,0.1216,0.0186,93.7374,10.85485,164.06255,261.274,92.2863,0.11355,0,0.25055,3.469,0.047,0,0,0,0,0,0.113,3.047,0.107,0.023,0.032,0,155.925,3511.082
-2086,-0.69544,0.58144,151.09362,5.52178,8597.28,647.60274,134.19386,19.38762,3.59664,26.58702,1.29498,0.11568,0.01488,93.23064,10.83442,163.56132,260.3888,91.5816,0.11218,0,0.2375,3.355,0.043,0,0,0,0,0,0.099,2.894,0.099,0.021,0.031,0,155.925,3511.082
-2087,-0.73918,0.58668,150.42989,5.50651,8404.36,644.91428,133.45587,19.18129,3.58378,26.53974,1.27016,0.10976,0.01116,92.72388,10.81399,163.06009,259.5036,90.8769,0.11081,0,0.22445,3.244,0.039,0,0,0,0,0,0.086,2.741,0.091,0.02,0.029,0,155.925,3511.082
-2088,-0.78292,0.59192,149.76616,5.49124,8211.44,642.22582,132.71788,18.97496,3.57092,26.49246,1.24534,0.10384,0.00744,92.21712,10.79356,162.55886,258.6184,90.1722,0.10944,0,0.2114,3.137,0.036,0,0,0,0,0,0.072,2.588,0.083,0.018,0.028,0,155.925,3511.082
-2089,-0.82666,0.59716,149.10243,5.47597,8018.52,639.53736,131.97989,18.76863,3.55806,26.44518,1.22052,0.09792,0.00372,91.71036,10.77313,162.05763,257.7332,89.4675,0.10807,0,0.19835,3.033,0.033,0,0,0,0,0,0.059,2.435,0.077,0.017,0.026,0,155.925,3511.082
-2090,-0.8704,0.6024,148.4387,5.4607,7825.6,636.8489,131.2419,18.5623,3.5452,26.3979,1.1957,0.092,0,91.2036,10.7527,161.5564,256.848,88.7628,0.1067,0,0.1853,2.933,0.03,0,0,0,0,0,0.045,2.283,0.071,0.016,0.025,0,155.925,3511.082
-2091,-0.87644,0.59329,147.8001,5.44286,7688.56,633.94839,130.66875,18.30502,3.52646,26.29122,1.18533,0.09137,0,90.20593,10.71798,160.22213,254.70245,87.63225,0.10515,0,0.17119,2.836,0.028,0,0,0,0,0,0.042,2.191,0.065,0.015,0.024,0,155.925,3511.082
-2092,-0.88248,0.58418,147.1615,5.42502,7551.52,631.04788,130.0956,18.04774,3.50772,26.18454,1.17496,0.09074,0,89.20826,10.68326,158.88786,252.5569,86.5017,0.1036,0,0.15708,2.743,0.025,0,0,0,0,0,0.038,2.099,0.06,0.014,0.023,0,155.925,3511.082
-2093,-0.88852,0.57507,146.5229,5.40718,7414.48,628.14737,129.52245,17.79046,3.48898,26.07786,1.16459,0.09011,0,88.21059,10.64854,157.55359,250.41135,85.37115,0.10205,0,0.14297,2.652,0.023,0,0,0,0,0,0.035,2.008,0.055,0.013,0.022,0,155.925,3511.082
-2094,-0.89456,0.56596,145.8843,5.38934,7277.44,625.24686,128.9493,17.53318,3.47024,25.97118,1.15422,0.08948,0,87.21292,10.61382,156.21932,248.2658,84.2406,0.1005,0,0.12886,2.565,0.021,0,0,0,0,0,0.031,1.916,0.051,0.012,0.02,0,155.925,3511.082
-2095,-0.9006,0.55685,145.2457,5.3715,7140.4,622.34635,128.37615,17.2759,3.4515,25.8645,1.14385,0.08885,0,86.21525,10.5791,154.88505,246.12025,83.11005,0.09895,0,0.11475,2.48,0.019,0,0,0,0,0,0.028,1.825,0.047,0.011,0.019,0,155.925,3511.082
-2096,-0.90664,0.54774,144.6071,5.35366,7003.36,619.44584,127.803,17.01862,3.43276,25.75782,1.13348,0.08822,0,85.21758,10.54438,153.55078,243.9747,81.9795,0.0974,0,0.10064,2.398,0.018,0,0,0,0,0,0.025,1.733,0.043,0.01,0.018,0,155.925,3511.082
-2097,-0.91268,0.53863,143.9685,5.33582,6866.32,616.54533,127.22985,16.76134,3.41402,25.65114,1.12311,0.08759,0,84.21991,10.50966,152.21651,241.82915,80.84895,0.09585,0,0.08653,2.319,0.016,0,0,0,0,0,0.021,1.641,0.039,0.009,0.018,0,155.925,3511.082
-2098,-0.91872,0.52952,143.3299,5.31798,6729.28,613.64482,126.6567,16.50406,3.39528,25.54446,1.11274,0.08696,0,83.22224,10.47494,150.88224,239.6836,79.7184,0.0943,0,0.07242,2.243,0.015,0,0,0,0,0,0.018,1.55,0.036,0.009,0.017,0,155.925,3511.082
-2099,-0.92476,0.52041,142.6913,5.30014,6592.24,610.74431,126.08355,16.24678,3.37654,25.43778,1.10237,0.08633,0,82.22457,10.44022,149.54797,237.53805,78.58785,0.09275,0,0.05831,2.169,0.014,0,0,0,0,0,0.015,1.458,0.033,0.008,0.016,0,155.925,3511.082
-2100,-0.9308,0.5113,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,2.097,0.012,0,0,0,0,0,0.011,1.367,0.031,0.008,0.015,0,155.925,3511.082
-2101,-0.9308,0.490848,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,2.028,0.011,0,0,0,0,0,0.01,1.298,0.028,0.007,0.014,0,155.925,3511.082
-2102,-0.9308,0.470396,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.961,0.01,0,0,0,0,0,0.008,1.233,0.026,0.007,0.014,0,155.925,3511.082
-2103,-0.9308,0.449944,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.896,0.01,0,0,0,0,0,0.007,1.172,0.024,0.006,0.013,0,155.925,3511.082
-2104,-0.9308,0.429492,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.834,0.009,0,0,0,0,0,0.006,1.113,0.022,0.006,0.012,0,155.925,3511.082
-2105,-0.9308,0.40904,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.773,0.008,0,0,0,0,0,0.006,1.057,0.02,0.005,0.012,0,155.925,3511.082
-2106,-0.9308,0.388588,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.715,0.007,0,0,0,0,0,0.005,1.005,0.019,0.005,0.011,0,155.925,3511.082
-2107,-0.9308,0.368136,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.658,0.007,0,0,0,0,0,0.004,0.954,0.017,0.005,0.011,0,155.925,3511.082
-2108,-0.9308,0.347684,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.603,0.006,0,0,0,0,0,0.004,0.907,0.016,0.004,0.01,0,155.925,3511.082
-2109,-0.9308,0.327232,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.55,0.006,0,0,0,0,0,0.003,0.861,0.014,0.004,0.009,0,155.925,3511.082
-2110,-0.9308,0.30678,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.499,0.005,0,0,0,0,0,0.003,0.818,0.013,0.004,0.009,0,155.925,3511.082
-2111,-0.9308,0.286328,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.45,0.005,0,0,0,0,0,0.002,0.777,0.012,0.003,0.009,0,155.925,3511.082
-2112,-0.9308,0.265876,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.402,0.004,0,0,0,0,0,0.002,0.738,0.011,0.003,0.008,0,155.925,3511.082
-2113,-0.9308,0.245424,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.356,0.004,0,0,0,0,0,0.002,0.702,0.01,0.003,0.008,0,155.925,3511.082
-2114,-0.9308,0.224972,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.311,0.004,0,0,0,0,0,0.002,0.666,0.01,0.003,0.007,0,155.925,3511.082
-2115,-0.9308,0.20452,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.268,0.003,0,0,0,0,0,0.001,0.633,0.009,0.003,0.007,0,155.925,3511.082
-2116,-0.9308,0.184068,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.226,0.003,0,0,0,0,0,0.001,0.601,0.008,0.002,0.007,0,155.925,3511.082
-2117,-0.9308,0.163616,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.185,0.003,0,0,0,0,0,0.001,0.571,0.007,0.002,0.006,0,155.925,3511.082
-2118,-0.9308,0.143164,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.146,0.003,0,0,0,0,0,0.001,0.543,0.007,0.002,0.006,0,155.925,3511.082
-2119,-0.9308,0.122712,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.108,0.002,0,0,0,0,0,0.001,0.516,0.006,0.002,0.006,0,155.925,3511.082
-2120,-0.9308,0.10226,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.072,0.002,0,0,0,0,0,0.001,0.49,0.006,0.002,0.005,0,155.925,3511.082
-2121,-0.9308,0.081808,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.036,0.002,0,0,0,0,0,0.001,0.465,0.005,0.002,0.005,0,155.925,3511.082
-2122,-0.9308,0.061356,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.002,0.002,0,0,0,0,0,0.001,0.442,0.005,0.002,0.005,0,155.925,3511.082
-2123,-0.9308,0.040904,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.969,0.002,0,0,0,0,0,0,0.42,0.005,0.001,0.005,0,155.925,3511.082
-2124,-0.9308,0.020452,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.937,0.001,0,0,0,0,0,0,0.399,0.004,0.001,0.004,0,155.925,3511.082
-2125,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.906,0.001,0,0,0,0,0,0,0.379,0.004,0.001,0.004,0,155.925,3511.082
-2126,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.876,0.001,0,0,0,0,0,0,0.36,0.004,0.001,0.004,0,155.925,3511.082
-2127,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.847,0.001,0,0,0,0,0,0,0.342,0.003,0.001,0.004,0,155.925,3511.082
-2128,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.819,0.001,0,0,0,0,0,0,0.325,0.003,0.001,0.004,0,155.925,3511.082
-2129,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.792,0.001,0,0,0,0,0,0,0.309,0.003,0.001,0.003,0,155.925,3511.082
-2130,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.766,0.001,0,0,0,0,0,0,0.293,0.003,0.001,0.003,0,155.925,3511.082
-2131,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.741,0.001,0,0,0,0,0,0,0.279,0.002,0.001,0.003,0,155.925,3511.082
-2132,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.717,0.001,0,0,0,0,0,0,0.265,0.002,0.001,0.003,0,155.925,3511.082
-2133,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.693,0.001,0,0,0,0,0,0,0.251,0.002,0.001,0.003,0,155.925,3511.082
-2134,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.67,0.001,0,0,0,0,0,0,0.239,0.002,0.001,0.003,0,155.925,3511.082
-2135,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.648,0.001,0,0,0,0,0,0,0.227,0.002,0.001,0.002,0,155.925,3511.082
-2136,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.627,0.001,0,0,0,0,0,0,0.216,0.002,0.001,0.002,0,155.925,3511.082
-2137,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.606,0,0,0,0,0,0,0,0.205,0.001,0.001,0.002,0,155.925,3511.082
-2138,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.586,0,0,0,0,0,0,0,0.195,0.001,0,0.002,0,155.925,3511.082
-2139,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.567,0,0,0,0,0,0,0,0.185,0.001,0,0.002,0,155.925,3511.082
-2140,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.548,0,0,0,0,0,0,0,0.176,0.001,0,0.002,0,155.925,3511.082
-2141,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.53,0,0,0,0,0,0,0,0.167,0.001,0,0.002,0,155.925,3511.082
-2142,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.512,0,0,0,0,0,0,0,0.159,0.001,0,0.002,0,155.925,3511.082
-2143,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.495,0,0,0,0,0,0,0,0.151,0.001,0,0.002,0,155.925,3511.082
-2144,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.479,0,0,0,0,0,0,0,0.143,0.001,0,0.002,0,155.925,3511.082
-2145,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.463,0,0,0,0,0,0,0,0.136,0.001,0,0.001,0,155.925,3511.082
-2146,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.448,0,0,0,0,0,0,0,0.129,0.001,0,0.001,0,155.925,3511.082
-2147,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.433,0,0,0,0,0,0,0,0.123,0.001,0,0.001,0,155.925,3511.082
-2148,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.419,0,0,0,0,0,0,0,0.117,0.001,0,0.001,0,155.925,3511.082
-2149,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.405,0,0,0,0,0,0,0,0.111,0.001,0,0.001,0,155.925,3511.082
-2150,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.392,0,0,0,0,0,0,0,0.105,0,0,0.001,0,155.925,3511.082
-2151,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.379,0,0,0,0,0,0,0,0.1,0,0,0.001,0,155.925,3511.082
-2152,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.366,0,0,0,0,0,0,0,0.095,0,0,0.001,0,155.925,3511.082
-2153,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.354,0,0,0,0,0,0,0,0.09,0,0,0.001,0,155.925,3511.082
-2154,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.342,0,0,0,0,0,0,0,0.086,0,0,0.001,0,155.925,3511.082
-2155,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.331,0,0,0,0,0,0,0,0.081,0,0,0.001,0,155.925,3511.082
-2156,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.32,0,0,0,0,0,0,0,0.077,0,0,0.001,0,155.925,3511.082
-2157,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.31,0,0,0,0,0,0,0,0.073,0,0,0.001,0,155.925,3511.082
-2158,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.299,0,0,0,0,0,0,0,0.07,0,0,0.001,0,155.925,3511.082
-2159,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.29,0,0,0,0,0,0,0,0.066,0,0,0.001,0,155.925,3511.082
-2160,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.28,0,0,0,0,0,0,0,0.063,0,0,0.001,0,155.925,3511.082
-2161,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.271,0,0,0,0,0,0,0,0.06,0,0,0.001,0,155.925,3511.082
-2162,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.262,0,0,0,0,0,0,0,0.057,0,0,0.001,0,155.925,3511.082
-2163,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.253,0,0,0,0,0,0,0,0.054,0,0,0.001,0,155.925,3511.082
-2164,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.245,0,0,0,0,0,0,0,0.051,0,0,0.001,0,155.925,3511.082
-2165,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.237,0,0,0,0,0,0,0,0.049,0,0,0.001,0,155.925,3511.082
-2166,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.229,0,0,0,0,0,0,0,0.046,0,0,0.001,0,155.925,3511.082
-2167,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.221,0,0,0,0,0,0,0,0.044,0,0,0,0,155.925,3511.082
-2168,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.214,0,0,0,0,0,0,0,0.042,0,0,0,0,155.925,3511.082
-2169,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.207,0,0,0,0,0,0,0,0.04,0,0,0,0,155.925,3511.082
-2170,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.2,0,0,0,0,0,0,0,0.038,0,0,0,0,155.925,3511.082
-2171,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.194,0,0,0,0,0,0,0,0.036,0,0,0,0,155.925,3511.082
-2172,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.187,0,0,0,0,0,0,0,0.034,0,0,0,0,155.925,3511.082
-2173,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.181,0,0,0,0,0,0,0,0.032,0,0,0,0,155.925,3511.082
-2174,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.175,0,0,0,0,0,0,0,0.031,0,0,0,0,155.925,3511.082
-2175,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.169,0,0,0,0,0,0,0,0.029,0,0,0,0,155.925,3511.082
-2176,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.164,0,0,0,0,0,0,0,0.028,0,0,0,0,155.925,3511.082
-2177,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.158,0,0,0,0,0,0,0,0.026,0,0,0,0,155.925,3511.082
-2178,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.153,0,0,0,0,0,0,0,0.025,0,0,0,0,155.925,3511.082
-2179,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.148,0,0,0,0,0,0,0,0.024,0,0,0,0,155.925,3511.082
-2180,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.143,0,0,0,0,0,0,0,0.023,0,0,0,0,155.925,3511.082
-2181,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.138,0,0,0,0,0,0,0,0.021,0,0,0,0,155.925,3511.082
-2182,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.134,0,0,0,0,0,0,0,0.02,0,0,0,0,155.925,3511.082
-2183,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.129,0,0,0,0,0,0,0,0.019,0,0,0,0,155.925,3511.082
-2184,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.125,0,0,0,0,0,0,0,0.018,0,0,0,0,155.925,3511.082
-2185,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.121,0,0,0,0,0,0,0,0.017,0,0,0,0,155.925,3511.082
-2186,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.117,0,0,0,0,0,0,0,0.017,0,0,0,0,155.925,3511.082
-2187,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.113,0,0,0,0,0,0,0,0.016,0,0,0,0,155.925,3511.082
-2188,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.109,0,0,0,0,0,0,0,0.015,0,0,0,0,155.925,3511.082
-2189,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.106,0,0,0,0,0,0,0,0.014,0,0,0,0,155.925,3511.082
-2190,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.102,0,0,0,0,0,0,0,0.014,0,0,0,0,155.925,3511.082
-2191,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.099,0,0,0,0,0,0,0,0.013,0,0,0,0,155.925,3511.082
-2192,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.096,0,0,0,0,0,0,0,0.012,0,0,0,0,155.925,3511.082
-2193,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.093,0,0,0,0,0,0,0,0.012,0,0,0,0,155.925,3511.082
-2194,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.089,0,0,0,0,0,0,0,0.011,0,0,0,0,155.925,3511.082
-2195,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.087,0,0,0,0,0,0,0,0.01,0,0,0,0,155.925,3511.082
-2196,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.084,0,0,0,0,0,0,0,0.01,0,0,0,0,155.925,3511.082
-2197,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.081,0,0,0,0,0,0,0,0.009,0,0,0,0,155.925,3511.082
-2198,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.078,0,0,0,0,0,0,0,0.009,0,0,0,0,155.925,3511.082
-2199,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.076,0,0,0,0,0,0,0,0.009,0,0,0,0,155.925,3511.082
-2200,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.073,0,0,0,0,0,0,0,0.008,0,0,0,0,155.925,3511.082
-2201,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.071,0,0,0,0,0,0,0,0.008,0,0,0,0,155.925,3511.082
-2202,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.068,0,0,0,0,0,0,0,0.007,0,0,0,0,155.925,3511.082
-2203,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.066,0,0,0,0,0,0,0,0.007,0,0,0,0,155.925,3511.082
-2204,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.064,0,0,0,0,0,0,0,0.007,0,0,0,0,155.925,3511.082
-2205,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.062,0,0,0,0,0,0,0,0.006,0,0,0,0,155.925,3511.082
-2206,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.06,0,0,0,0,0,0,0,0.006,0,0,0,0,155.925,3511.082
-2207,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.058,0,0,0,0,0,0,0,0.006,0,0,0,0,155.925,3511.082
-2208,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.056,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082
-2209,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.054,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082
-2210,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.052,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082
-2211,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.051,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082
-2212,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.049,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082
-2213,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.047,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082
-2214,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.046,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082
-2215,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.044,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082
-2216,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.043,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082
-2217,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.041,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082
-2218,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.04,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082
-2219,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.039,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082
-2220,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.037,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082
-2221,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.036,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082
-2222,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.035,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082
-2223,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.034,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2224,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.033,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2225,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.032,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2226,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.031,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2227,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.03,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2228,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.029,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2229,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.028,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2230,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.027,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2231,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.026,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2232,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.025,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2233,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.024,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2234,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.023,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2235,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.023,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2236,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.022,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2237,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.021,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2238,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.02,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2239,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.02,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2240,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.019,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2241,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2242,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2243,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2244,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2245,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2246,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2247,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2248,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2249,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.014,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2250,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.014,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2251,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.013,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2252,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.013,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2253,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.012,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2254,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.012,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2255,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.012,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2256,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.011,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2257,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.011,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2258,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.01,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2259,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.01,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2260,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.01,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2261,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2262,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2263,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2264,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2265,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.008,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2266,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.008,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2267,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.008,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2268,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2269,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2270,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2271,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2272,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2273,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2274,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2275,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2276,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2277,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2278,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2279,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2280,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2281,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2282,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2283,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2284,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2285,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2286,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2287,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2288,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2289,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2290,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2291,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2292,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2293,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2294,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2295,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2296,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2297,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2298,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2299,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2300,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2301,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2302,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2303,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2304,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2305,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2306,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2307,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2308,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2309,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2310,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2311,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2312,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2313,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2314,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2315,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2316,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2317,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2318,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2319,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2320,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2321,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2322,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2323,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2324,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2325,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2326,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2327,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2328,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2329,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2330,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2331,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2332,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2333,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2334,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2335,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2336,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2337,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2338,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2339,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2340,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2341,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2342,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2343,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2344,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2345,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2346,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2347,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2348,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2349,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2350,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2351,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2352,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2353,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2354,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2355,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2356,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2357,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2358,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2359,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2360,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2361,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2362,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2363,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2364,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2365,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2366,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2367,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2368,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2369,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2370,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2371,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2372,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2373,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2374,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2375,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2376,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2377,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2378,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2379,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2380,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2381,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2382,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2383,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2384,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2385,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2386,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2387,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2388,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2389,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2390,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2391,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2392,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2393,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2394,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2395,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2396,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2397,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2398,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2399,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2400,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2401,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2402,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2403,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2404,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2405,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2406,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2407,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2408,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2409,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2410,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2411,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2412,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2413,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2414,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2415,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2416,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2417,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2418,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2419,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2420,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2421,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2422,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2423,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2424,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2425,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2426,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2427,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2428,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2429,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2430,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2431,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2432,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2433,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2434,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2435,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2436,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2437,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2438,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2439,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2440,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2441,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2442,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2443,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2444,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2445,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2446,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2447,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2448,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2449,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2450,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2451,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2452,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2453,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2454,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2455,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2456,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2457,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2458,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2459,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2460,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2461,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2462,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2463,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2464,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2465,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2466,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2467,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2468,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2469,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2470,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2471,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2472,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2473,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2474,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2475,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2476,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2477,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2478,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2479,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2480,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2481,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2482,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2483,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2484,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2485,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2486,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2487,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2488,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2489,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2490,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2491,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2492,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2493,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2494,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2495,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2496,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2497,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2498,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2499,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2500,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
diff --git a/inst/shinyApp/www/input/emissions/RCP26_emissions.csv b/inst/shinyApp/www/input/emissions/RCP26_emissions.csv
deleted file mode 100644
index 7ae66a0..0000000
--- a/inst/shinyApp/www/input/emissions/RCP26_emissions.csv
+++ /dev/null
@@ -1,740 +0,0 @@
-; RCP 26 emissions ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,MtS/yr,Gg/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,MtN/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr
-Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SOx,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,NH3,CF4_emissions,C2F6_emissions,C6F14,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,HALON1202,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions
-1765,0.003,0,0,0,0,0,0,0,0,0,0,0.83383669,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1766,0.003,0.005338296,1.9632619,0.005191085,0.098882647,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.85423057,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1767,0.003,0.010676593,2.4364481,0.010116813,0.1163065,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.87416738,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1768,0.003,0.016014889,2.911105,0.015042803,0.13381075,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.89365446,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1769,0.003,0.021353185,3.3872782,0.019969063,0.15139789,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.91269911,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1770,0.003,0.026691482,3.8650146,0.024895601,0.16907049,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.93130867,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1771,0.004,0.032029778,4.3443625,0.029822427,0.18683119,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.95253247,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1772,0.004,0.037368074,4.8253718,0.034749548,0.20468271,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.97029378,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1773,0.004,0.042706371,5.3080938,0.039676975,0.22262786,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.98764194,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1774,0.004,0.048044667,5.7925816,0.044604715,0.24066954,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,1.0045843,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1775,0.004,0.053382963,6.2788896,0.04953278,0.25881073,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,1.0211281,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1776,0.004,0.058721259,6.7670743,0.05446118,0.27705451,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,1.0372808,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1777,0.004,0.064059556,7.2571937,0.059389923,0.29540406,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,1.0530496,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1778,0.004,0.069397852,7.7493076,0.064319022,0.31386264,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,1.0684418,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1779,0.004,0.074736148,8.2434776,0.069248487,0.33243362,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,1.0834648,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1780,0.004,0.080074445,8.7397674,0.07417833,0.35112049,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,1.0981259,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1781,0.005,0.085412741,9.2382426,0.079108562,0.36992683,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,1.1154744,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1782,0.005,0.090751037,9.7389706,0.084039195,0.38885633,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,1.1294337,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1783,0.005,0.096089334,10.242021,0.088970241,0.4079128,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,1.143053,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1784,0.005,0.10142763,10.747466,0.093901714,0.42710016,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,1.1563396,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1785,0.005,0.10676593,11.25538,0.098833627,0.44642248,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,1.169301,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1786,0.005,0.11210422,11.765839,0.10376599,0.46588391,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,1.1819444,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1787,0.005,0.11744252,12.278921,0.10869883,0.48548877,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,1.194277,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1788,0.005,0.12278082,12.794707,0.11363214,0.50524148,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,1.2063064,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1789,0.005,0.12811911,13.313282,0.11856595,0.52514663,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,1.2180397,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1790,0.005,0.13345741,13.834732,0.12350027,0.54520892,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,1.2294843,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1791,0.006,0.1387957,14.359145,0.12843512,0.56543322,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,1.2436895,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1792,0.006,0.144134,14.886613,0.13337052,0.58582453,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,1.2545786,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1793,0.006,0.1494723,15.417231,0.13830648,0.60638803,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,1.265201,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1794,0.006,0.15481059,15.951096,0.14324301,0.62712904,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,1.2755639,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1795,0.006,0.16014889,16.488308,0.14818014,0.64805304,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,1.2856747,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1796,0.006,0.16548719,17.028971,0.15311788,0.66916569,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,1.2955407,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1797,0.007,0.17082548,17.573192,0.15805626,0.69047284,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,1.3082113,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1798,0.007,0.17616378,18.121081,0.16299529,0.7119805,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,1.3176096,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1799,0.007,0.18150207,18.672751,0.167935,0.73369486,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,1.3267852,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1800,0.008,0.18684037,19.228319,0.1728754,0.75562233,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,1.3387872,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1801,0.008,0.19217867,19.787906,0.17781651,0.77776949,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,1.347539,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1802,0.01,0.19751696,20.351635,0.18275836,0.80014313,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,1.362174,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1803,0.009,0.20285526,20.919636,0.18770098,0.82275026,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,1.3674894,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1804,0.009,0.20819356,21.49204,0.19264437,0.84559811,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,1.3756605,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1805,0.009,0.21353185,22.068984,0.19758858,0.86869411,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,1.3836527,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1806,0.01,0.21887015,22.650607,0.20253362,0.89204595,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,1.3945153,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1807,0.01,0.22420845,23.237055,0.20747952,0.91566153,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,1.4021716,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1808,0.01,0.22954674,23.828476,0.2124263,0.93954901,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,1.409671,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1809,0.01,0.23488504,24.425025,0.217374,0.9637168,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,1.4170207,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1810,0.01,0.24022333,25.02686,0.22232264,0.98817358,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,1.424228,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1811,0.011,0.24556163,25.634145,0.22727225,1.0129283,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,1.4343424,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1812,0.011,0.25089993,26.247048,0.23222285,1.0379901,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,1.4412871,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1813,0.011,0.25623822,26.865743,0.2371745,1.0633685,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,1.4481114,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1814,0.011,0.26157652,27.490408,0.2421272,1.0890734,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,1.4548227,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1815,0.012,0.26691482,28.12123,0.247081,1.1151148,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,1.4644703,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1816,0.013,0.27225311,28.758398,0.25203593,1.1415031,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,1.4740194,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1817,0.014,0.27759141,29.402108,0.25699203,1.1682491,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,1.4834775,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1818,0.014,0.2829297,30.052563,0.26194932,1.1953638,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,1.4898097,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1819,0.014,0.288268,30.709971,0.26690786,1.2228586,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,1.4960655,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1820,0.014,0.2936063,31.374548,0.27186767,1.2507453,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,1.5022522,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1821,0.014,0.29894459,32.046514,0.2768288,1.279036,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,1.5083771,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1822,0.015,0.30428289,32.7261,0.28179128,1.3077432,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,1.5174895,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1823,0.016,0.30962119,33.413539,0.28675516,1.3368798,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,1.5265547,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1824,0.016,0.31495948,34.109076,0.29172049,1.366459,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,1.532538,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1825,0.017,0.32029778,34.81296,0.2966873,1.3964945,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,1.5415308,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1826,0.017,0.32563608,35.52545,0.30165564,1.4270005,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,1.5474564,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1827,0.018,0.33097437,36.246813,0.30662557,1.4579916,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,1.5564061,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1828,0.018,0.33631267,36.977321,0.31159712,1.4894826,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,1.5623033,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1829,0.018,0.34165096,37.717259,0.31657035,1.5214891,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,1.5681971,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1830,0.024,0.34698926,38.466917,0.32154532,1.554027,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,1.5923472,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1831,0.023,0.35232756,39.226597,0.32652206,1.5871128,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,1.5952145,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1832,0.023,0.35766585,39.996609,0.33150065,1.6207633,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,1.6011425,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1833,0.024,0.36300415,40.777271,0.33648114,1.6549962,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,1.6101385,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1834,0.024,0.36834245,41.568914,0.34146358,1.6898292,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,1.6161259,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1835,0.025,0.37368074,42.371876,0.34644803,1.7252812,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,1.6251959,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1836,0.029,0.37901904,43.186509,0.35143456,1.7613711,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,1.64344,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1837,0.029,0.38435733,44.013173,0.35642324,1.7981187,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,1.6495713,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1838,0.03,0.38969563,44.85224,0.36141413,1.8355443,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,1.6588072,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1839,0.031,0.39503393,45.704093,0.36640729,1.873669,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,1.6681131,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1840,0.032999999,0.40037222,46.569129,0.3714028,1.9125143,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,1.6805382,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1841,0.033999999,0.40571052,47.447755,0.37640073,1.9521025,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,1.6900059,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1842,0.035999999,0.41104882,48.34039,0.38140115,1.9924567,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,1.7026076,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1843,0.036999999,0.41638711,49.247469,0.38640415,2.0336004,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,1.7122664,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1844,0.038999999,0.42172541,50.169439,0.3914098,2.0755581,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,1.7250737,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1845,0.042999999,0.42706371,51.106759,0.39641818,2.118355,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,1.744079,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1846,0.042999999,0.432402,52.059904,0.40142938,2.1620171,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,1.7510373,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1847,0.045999999,0.4377403,53.029365,0.40644349,2.206571,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,1.7672503,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1848,0.046999999,0.44307859,54.015644,0.41146059,2.2520444,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,1.7775149,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1849,0.049999999,0.44841689,55.019264,0.41648078,2.2984658,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,1.7940068,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1850,0.053999999,0.45375519,56.040759,0.42150415,2.3458644,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,1.8136911,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,0,157.267,3100.211
-1851,0.053999999,0.44678569,56.46132,0.42740096,2.401282,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,1.8469194,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,0,157.267,3100.211
-1852,0.056999999,0.49862282,56.88188,0.46466062,2.4566996,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,1.9946876,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,0,157.267,3100.211
-1853,0.058999999,0.49735449,57.302441,0.46477417,2.5121172,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,2.0008114,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,0,157.267,3100.211
-1854,0.068999999,0.49581708,57.723001,0.46443647,2.5675348,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,2.0303036,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,0,157.267,3100.211
-1855,0.070999999,0.49367925,58.143562,0.46327909,2.6229524,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,2.0325148,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,0,157.267,3100.211
-1856,0.075999999,0.49893488,58.564122,0.46729312,2.6783701,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,2.0617637,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,0,157.267,3100.211
-1857,0.076999999,0.504232,58.984683,0.47126447,2.7337877,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,2.078453,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,0,157.267,3100.211
-1858,0.077999999,0.50923298,59.405243,0.47503119,2.7892053,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,2.0943024,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,0,157.267,3100.211
-1859,0.082999999,0.51425389,59.825804,0.47876627,2.8446229,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,2.122971,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,0,157.267,3100.211
-1860,0.090999999,0.51896689,60.246364,0.48257672,2.9000405,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,2.1619782,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,0,157.267,3100.211
-1861,0.094999998,0.5282236,59.614468,0.50499476,2.9926781,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,2.2735927,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,0,157.267,3100.211
-1862,0.096999998,0.47371663,58.982573,0.47111281,3.0853157,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,2.1558166,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,0,157.267,3100.211
-1863,0.104,0.47374912,58.350677,0.47444935,3.1779532,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,2.192329,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,0,157.267,3100.211
-1864,0.112,0.47413825,57.718781,0.47785801,3.2705908,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,2.2299438,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,0,157.267,3100.211
-1865,0.119,0.47479536,57.086885,0.48144966,3.3632284,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,2.2655309,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,0,157.267,3100.211
-1866,0.122,0.47491218,56.45499,0.48420454,3.455866,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,2.2871958,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,0,157.267,3100.211
-1867,0.13022269,0.47338353,55.823094,0.48472337,3.5485035,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,2.3187563,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,0,157.267,3100.211
-1868,0.13525196,0.47198274,55.191198,0.48595323,3.6411411,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,2.3371841,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,0,157.267,3100.211
-1869,0.14228123,0.47048522,54.559303,0.48686155,3.7337787,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,2.3628056,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,0,157.267,3100.211
-1870,0.14731051,0.46933399,53.927407,0.48774355,3.8264163,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,2.3824052,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,0,157.267,3100.211
-1871,0.15633978,0.48732546,56.683869,0.58501628,3.9931681,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,2.8606677,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,0,157.267,3100.211
-1872,0.17336905,0.56696435,59.440331,0.66673981,4.1599199,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,3.2401697,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,0,157.267,3100.211
-1873,0.18439832,0.57690133,62.196793,0.69637076,4.3266717,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,3.4033641,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,0,157.267,3100.211
-1874,0.1744276,0.58328394,64.953255,0.7087503,4.4934235,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,3.4271557,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,0,157.267,3100.211
-1875,0.18845687,0.5899696,67.709717,0.72034342,4.6601753,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,3.5173084,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,157.267,3100.211
-1876,0.19148614,0.59639187,70.46618,0.74524338,4.8269271,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,3.6375503,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,0,157.267,3100.211
-1877,0.19451541,0.60262312,73.222642,0.75633197,4.9936789,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,3.6958465,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,157.267,3100.211
-1878,0.196,0.6090507,75.979104,0.7660459,5.1604307,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,3.7456526,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,0,157.267,3100.211
-1879,0.21,0.61534752,78.735566,0.77491118,5.3271825,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,3.8304098,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,0,157.267,3100.211
-1880,0.236,0.62124317,81.492028,0.78412129,5.4939343,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,3.9520183,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,0,157.267,3100.211
-1881,0.243,0.64887292,84.359461,0.81157848,5.7623214,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,4.071307,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,0,157.267,3100.211
-1882,0.256,0.60466403,87.226893,0.78526034,6.0307085,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,4.0198711,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,0,157.267,3100.211
-1883,0.272,0.60851762,90.094326,0.79255607,6.2990955,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,4.0985326,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,0,157.267,3100.211
-1884,0.275,0.61212775,92.961758,0.7987505,6.5674826,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,4.1333435,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,0,157.267,3100.211
-1885,0.27699999,0.61523611,95.829191,0.80453383,6.8358696,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,4.1646148,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,0,157.267,3100.211
-1886,0.28099999,0.61714413,98.696624,0.82619361,7.1042567,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,4.2758916,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,0,157.267,3100.211
-1887,0.295,0.61616314,101.56406,0.83219647,7.3726438,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,4.353178,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,0,157.267,3100.211
-1888,0.32699999,0.61473356,104.43149,0.83705812,7.6410308,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,4.4748698,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,0,157.267,3100.211
-1889,0.32699999,0.6132002,107.29892,0.84143987,7.9094179,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,4.498422,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,0,157.267,3100.211
-1890,0.35599999,0.61175412,110.16635,0.84552548,8.1778049,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,4.6037011,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,0,157.267,3100.211
-1891,0.37199999,0.61024855,111.52362,0.85098169,8.5673728,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,4.6830725,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,0,157.267,3100.211
-1892,0.37399999,0.62319119,112.88089,0.85741997,8.9569407,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,4.7551637,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,0,157.267,3100.211
-1893,0.36999999,0.62440331,114.23816,0.86475824,9.3465086,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,4.8217408,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,0,157.267,3100.211
-1894,0.38299999,0.64036719,115.59543,0.87294487,9.7360765,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,4.8845702,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,0,157.267,3100.211
-1895,0.40599999,0.64441851,116.9527,0.88188195,10.125644,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,4.9454181,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,0,157.267,3100.211
-1896,0.41899999,0.6462784,118.30997,0.89141802,10.515212,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,5.0060509,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,0,157.267,3100.211
-1897,0.43999999,0.64956412,119.66724,0.90140157,10.90478,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,5.0682347,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,0,157.267,3100.211
-1898,0.46499999,0.65100098,121.02451,0.91168111,11.294348,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,5.1337359,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,0,157.267,3100.211
-1899,0.50699999,0.65220446,122.38178,0.92210515,11.683916,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,5.2043208,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,0,157.267,3100.211
-1900,0.53399999,0.65320628,123.73905,0.9325222,12.073484,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,5.2817555,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,0,157.267,3100.211
-1901,0.55199999,0.70294318,124.8415,0.9446669,12.62988,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,5.3685634,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,0,157.267,3100.211
-1902,0.56599999,0.70297364,125.94396,0.95993065,13.186275,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,5.4646652,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,0,157.267,3100.211
-1903,0.61699999,0.72667096,127.04642,0.97764708,13.742671,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,5.5679233,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,0,157.267,3100.211
-1904,0.62399999,0.74829324,128.14887,0.99722904,14.299067,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,5.6762002,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,0,157.267,3100.211
-1905,0.66299999,0.76981521,129.25133,1.0181293,14.855463,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,5.7873584,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,0,157.267,3100.211
-1906,0.70699999,0.79653384,130.35378,1.0397413,15.411858,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,5.8992603,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,0,157.267,3100.211
-1907,0.78399999,0.80376274,131.45624,1.0614586,15.968254,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,6.0097685,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,0,157.267,3100.211
-1908,0.74999999,0.81141278,132.5587,1.0826746,16.52465,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,6.1167454,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,0,157.267,3100.211
-1909,0.78499999,0.81737807,133.66115,1.1027829,17.081045,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,6.2180534,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,0,157.267,3100.211
-1910,0.81899999,0.82198169,134.76361,1.121177,17.637441,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,6.3115552,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,0,157.267,3100.211
-1911,0.83599999,0.77889405,135.96943,1.1389722,17.821423,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,6.3975596,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,0,157.267,3100.211
-1912,0.87899999,0.74784844,137.17525,1.1575596,18.005405,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,6.4786614,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,0,157.267,3100.211
-1913,0.94299999,0.72297977,138.38107,1.1767464,18.189388,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,6.5561518,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,0,157.267,3100.211
-1914,0.84999999,0.71479152,139.5869,1.1962611,18.37337,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,6.6313219,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,0,157.267,3100.211
-1915,0.83799999,0.70574964,140.79272,1.2158443,18.557352,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,6.7054629,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,0,157.267,3100.211
-1916,0.90099999,0.70811648,141.99854,1.2353217,18.741334,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,6.7798659,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,0,157.267,3100.211
-1917,0.95499999,0.7111963,143.20436,1.254519,18.925316,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,6.8558222,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,0,157.267,3100.211
-1918,0.93599999,0.71430427,144.41019,1.2732618,19.109298,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,6.9346228,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,0,157.267,3100.211
-1919,0.80599999,0.71965435,145.61601,1.2913759,19.29328,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,7.0175589,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,0,157.267,3100.211
-1920,0.93199999,0.72128338,146.82183,1.3086869,19.477262,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,7.1059216,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,0,157.267,3100.211
-1921,0.80299999,0.75741661,147.86155,1.3257924,19.863884,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,7.20195,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,0,157.267,3100.211
-1922,0.84499999,0.7479409,148.90128,1.343275,20.250505,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,7.3058291,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,0,157.267,3100.211
-1923,0.96999999,0.75328819,149.941,1.3609385,20.637127,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,7.415769,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,0,157.267,3100.211
-1924,0.96299999,0.75686059,150.98072,1.3796194,21.023748,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,7.5299799,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,0,157.267,3100.211
-1925,0.97499999,0.75808855,152.02045,1.3998974,21.41037,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,7.6466719,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,0,157.267,3100.211
-1926,0.98299999,0.76148327,153.06017,1.4211909,21.796991,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,7.7640552,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,0,157.267,3100.211
-1927,1.062,0.79718283,154.09989,1.4429184,22.183613,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,7.8803399,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,0,157.267,3100.211
-1928,1.065,0.79967141,155.13962,1.4644982,22.570234,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,7.9937361,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,0,157.267,3100.211
-1929,1.145,0.82422601,156.17934,1.4853488,22.956856,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,8.102454,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,0,157.267,3100.211
-1930,1.053,0.89587975,157.21906,1.5048887,23.343477,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,8.2047038,1.6637375,0.23563239,0,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,0,157.267,3100.211
-1931,0.93999999,0.90334082,158.34545,1.5226236,23.754956,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,8.298548,1.7507764,0.24803412,0,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,0,157.267,3100.211
-1932,0.84699999,0.81222597,159.47183,1.5385172,24.166434,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,8.3849848,1.8423953,0.26108852,0,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,0,157.267,3100.211
-1933,0.89299999,0.80858849,160.59821,1.5526746,24.577913,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,8.4666283,1.9388369,0.27483004,0,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,0,157.267,3100.211
-1934,0.97299999,0.79686256,161.7246,1.5653127,24.989392,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,8.5460922,2.0403528,0.28929476,0,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,0,157.267,3100.211
-1935,1.027,0.79471575,162.85098,1.5771213,25.40087,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,8.6259906,2.1472124,0.30452082,0,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,0,157.267,3100.211
-1936,1.13,0.80129993,163.97736,1.5889151,25.812349,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,8.7089373,2.2596977,0.32054821,0,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,0,157.267,3100.211
-1937,1.209,0.77969902,165.10375,1.6015088,26.223828,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,8.7975462,2.3781004,0.33741917,0,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,0,157.267,3100.211
-1938,1.142,0.78188222,166.23013,1.615717,26.635306,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,8.8944313,2.5027381,0.35517808,0,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,0,157.267,3100.211
-1939,1.192,0.77944376,167.35651,1.6323545,27.046785,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,9.0022064,2.6339328,0.37387169,0,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,0,157.267,3100.211
-1940,1.299,0.76683237,168.4829,1.6522358,27.458263,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,9.1234856,2.7720335,0.39354912,0,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,0,157.267,3100.211
-1941,1.334,0.75036458,170.03046,1.7002044,27.840442,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,9.2653861,2.9174066,0.41426223,0,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,0,157.267,3100.211
-1942,1.342,0.7690497,171.57803,1.7938613,28.22262,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,9.4321173,3.0704314,0.39468287,0,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,0,157.267,3100.211
-1943,1.391,0.7637656,173.12559,1.9231582,28.604799,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,9.6219311,3.2315097,0.37832187,0,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,0,157.267,3100.211
-1944,1.383,0.76839864,174.67315,2.0866797,28.986977,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,9.8330792,3.4010636,0.3640764,0,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,0,157.267,3100.211
-1945,1.16,0.76914739,176.22072,2.280402,29.369156,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,10.063814,3.579544,0.35194679,0,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,0,157.267,3100.211
-1946,1.238,0.84214892,177.76828,2.4903635,29.751334,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,10.312386,3.7674167,0.34193311,0,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,0,157.267,3100.211
-1947,1.392,0.87017994,179.31584,2.7026031,30.133513,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,10.577048,3.9651774,0.33403572,0,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,0,157.267,3100.211
-1948,1.469,0.87513044,180.86341,2.9031595,30.515691,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,10.856052,4.1733472,0.32825472,0,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,0,157.267,3100.211
-1949,1.419,0.88212641,182.41097,3.0780722,30.897869,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,11.14765,4.3924702,0.32459037,0,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,0,157.267,3100.211
-1950,1.63,0.89233465,183.95853,3.2133815,31.280048,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,11.450093,4.62313,0.32304286,0,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,0,157.267,3100.211
-1951,1.768,1.0885201,189.11003,3.3186021,32.866948,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,11.784634,4.865916,0.32361242,0,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,0,157.267,3100.211
-1952,1.796,1.1096378,194.26153,3.4111061,34.453849,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,12.1691,5.121479,0.32629927,0,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,0,157.927,3117.785
-1953,1.841,1.1045171,199.41303,3.4887221,36.040749,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,12.596604,5.3904959,0.3311036,0,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,0,158.604,3137.148
-1954,1.865,1.1521416,204.56453,3.5543489,37.62765,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,13.060259,5.6736692,0.33802563,0,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,0,159.3,3158.216
-1955,2.043,1.1911855,209.71603,3.614111,39.21455,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,13.553179,5.9717491,0.34706557,0,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,0,160.014,3180.749
-1956,2.178,1.2446883,214.86753,3.6706801,40.801451,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,14.068475,6.2855162,0.35822365,0,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,0,160.748,3204.498
-1957,2.27,1.2718718,220.01902,3.7267318,42.388351,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,14.599262,6.6157969,0.37150001,0,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,0,161.502,3229.071
-1958,2.33,1.3195817,225.17052,3.7849451,43.975252,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,15.138652,6.9634615,0.38689499,0,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,0,162.277,3254.039
-1959,2.462,1.2035957,230.32202,3.8480013,45.562152,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,15.679758,7.3294266,0.40440867,0,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,0,163.073,3278.967
-1960,2.577,1.1922833,235.47352,3.9185827,47.149053,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,16.215694,7.7146508,0.42404135,0,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,0,163.892,3303.389
-1961,2.594,1.2443218,238.52217,4.0240052,48.77076,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,16.759267,8.1201607,0.4457932,0,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,0,164.735,3326.864
-1962,2.7,1.2355717,241.57083,4.1836477,50.392468,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,17.326046,8.5470132,0.46966444,0,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,0,165.601,3349.069
-1963,2.848,1.2442947,244.61948,4.3883117,52.014176,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,17.913289,14.984956,0.49565531,0,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.001,0.007,166.493,3369.713
-1964,3.008,1.2515879,247.66813,4.6374693,53.635884,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,18.518251,13.488099,0.52376596,0,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.002,0.003,0.014,167.41,3388.628
-1965,3.145,1.2642558,250.71679,4.8968181,55.257592,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,19.138189,13.488369,0.55399667,0,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.005,0.028,168.355,3405.698
-1966,3.305,1.2936968,253.76544,5.195583,56.8793,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,19.770361,13.488639,0.58634761,0,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.008,0.048,169.328,3420.923
-1967,3.411,1.2976254,256.81409,5.457478,58.501008,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,20.412021,13.488909,0.62081899,0,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.013,0.075,170.329,3434.335
-1968,3.588,1.2352028,259.86274,5.619744,60.122716,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,21.060427,13.48918,0.65741104,0,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.019,0.016,0.109,171.36,3446.065
-1969,3.8,1.2383879,262.9114,5.784831,61.744424,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,21.712835,13.489449,0.69612398,0,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.026,0.024,0.15,172.423,3456.224
-1970,4.076,1.1971129,265.96005,5.9368752,63.366132,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,22.366503,11.992564,0.73695798,0,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.035,0.043,0.197,173.518,3464.95
-1971,4.231,1.0708913,270.02505,5.6049759,63.545863,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,23.042459,13.489967,0.7799133,0,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.044,0.1,0.252,174.646,3472.409
-1972,4.399,1.0470621,274.09004,5.9181309,63.725594,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,23.75562,13.490244,0.82499011,0,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.055,0.17,0.313,175.809,3478.741
-1973,4.6349999,1.0330987,278.15504,6.0449043,63.905326,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,24.494072,13.490523,0.87218868,0,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.067,0.277,0.391,177.007,3484.114
-1974,4.644,1.0387371,282.22003,5.9406002,64.085057,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,25.2459,11.993645,0.9215092,0,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.08,0.372,0.468,178.243,3488.632
-1975,4.615,1.0315876,286.28503,6.1409693,64.264788,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,25.999188,13.49105,0.97295172,0,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.095,0.524,0.544,179.517,3492.425
-1976,4.883,1.0906077,290.35002,6.3042588,64.444519,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,26.742024,13.491328,1.0265167,0,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.11,0.783,0.621,180.83,3495.619
-1977,5.029,1.0939874,294.41502,6.534405,64.624251,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,27.462492,11.994452,1.0822044,0,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,0.127,1.006,0.697,182.185,3498.281
-1978,5.105,1.09037,298.48002,6.6193729,64.803982,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,28.148677,13.491857,1.1400146,0,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,0.145,1.253,0.774,183.581,3500.505
-1979,5.387,1.0647127,302.54501,7.007773,64.983713,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,28.788664,11.994981,1.1999481,0,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,0.161,1.548,0.85,185.022,3502.36
-1980,5.332,1.0252096,306.61001,7.0613923,65.163444,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,29.37054,13.492387,1.2620043,0,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,0.185,1.805,0.927,186.506,3503.915
-1981,5.168,1.0448621,310.01251,6.8417522,65.043883,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,29.931853,11.995499,1.3261846,0,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,0.206,2.139,1.003,188.038,3505.193
-1982,5.127,1.1904055,313.415,7.1189858,64.924321,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,30.508393,13.492893,1.392488,0,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,0.229,2.645,1.105,189.616,3506.255
-1983,5.11,1.2255201,316.8175,7.2168971,64.80476,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,31.085608,11.996004,1.4609153,0,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,0.249,2.98,1.183,191.243,3507.154
-1984,5.29,1.2600833,320.22,7.0481314,64.685199,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,31.648945,11.996242,1.5314669,0,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,0.269,3.475,1.262,192.92,3507.882
-1985,5.444,1.2753449,323.6225,7.0169243,64.565637,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,32.183851,11.99648,1.6041426,0,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,0.289,3.997,1.355,194.648,3508.496
-1986,5.61,1.2872023,327.025,7.0704917,64.446076,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,32.675774,13.493874,1.678943,0,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,0.309,4.579,1.434,196.427,3508.999
-1987,5.753,1.2940086,330.42749,7.4616728,64.326514,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,33.110161,11.996986,1.7558675,0,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,0.329,5.109,1.504,198.259,3509.425
-1988,5.964,1.3167248,333.82999,7.2025077,64.206953,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,33.472458,11.997224,1.8349176,0,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,0.349,5.696,1.728,200.146,3509.774
-1989,6.089,1.3236436,337.23249,7.3310397,64.087391,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,33.748114,11.997462,1.9160924,0,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,0.369,5.482,1.73,202.087,3510.061
-1990,6.144,1.3194833,340.63499,7.5856812,63.96783,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,33.922575,11.997683,2.0735678,0,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,0.389,5.119,1.73,204.082,3510.299
-1991,6.235,1.3809799,336.59218,7.4023631,62.955167,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,34.026024,11.997905,2.3729101,0,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,0.409,4.094,1.735,206.133,3510.501
-1992,6.118,1.3035304,332.54937,7.7989323,61.942504,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,34.113528,11.998111,2.3731469,0,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,0.429,2.74,1.715,208.24,3510.656
-1993,6.124,1.2981006,328.50656,7.3131034,60.929841,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,34.207861,11.998354,2.3733837,0,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,0.509,3.344,1.7,210.402,3510.801
-1994,6.242,1.2895956,324.46375,7.5072841,59.917178,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,34.331799,11.998587,2.3736205,0,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,0.589,4.75,1.68,212.619,3510.907
-1995,6.372,1.2750104,320.42094,7.6191035,58.904515,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,34.508115,10.501674,2.3738573,0,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,0.669,3.991,1.3,200.199,3511.005
-1996,6.51,1.2511025,316.37814,7.6520638,57.891852,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,34.960533,11.999071,2.3740941,0,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,0.729,2.691,0.85,201.834,3511.082
-1997,6.619,1.2181397,312.33533,7.9097526,56.879189,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,35.833672,11.999322,2.3743309,0,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,0.789,2.594,0.7,207.696,3511.082
-1998,6.588,1.2148431,308.29252,7.8957263,55.866526,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,37.03165,11.999575,2.3745677,0,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,0.607,2.491,0.71,206.946,3511.082
-1999,6.569,1.1827892,304.24971,7.5269849,54.853863,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,38.458587,10.502692,2.3748045,0,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,0.467,2.39,0.631,195.938,3511.082
-2000,6.735,1.1488,300.2069,7.4566,53.8412,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,40.0186,12.0001,2.3749,0.4624,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,0.328,2.295,0.562,186.206,3511.082
-2001,6.8959,1.132,303.4092,7.503,54.4191,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,40.3916,11.925,2.4345,0.4651,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,240.392,53.81,28.001,8.669,0.282,2.209,0.5,181.525,3511.082
-2002,6.949,1.2317,306.5788,7.5487,54.9961,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,40.7646,11.8481,2.4915,0.4058,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,251.146,52.018,22.43,8.524,0.235,2.131,0.445,181.887,3511.082
-2003,7.286,1.2257,309.7164,7.5942,55.5716,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,41.1378,11.7693,2.5463,0.3939,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,261.9,50.225,23.232,7.77,0.189,2.057,0.396,177.539,3511.082
-2004,7.6719,1.2429,312.824,7.6394,56.1461,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,41.5107,11.6885,2.599,0.4062,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,272.654,48.433,23.348,7.653,0.189,1.987,0.353,174.26,3511.082
-2005,7.971,1.1955,315.9027,7.6841,56.7195,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,41.8837,11.6059,2.6494,0.4358,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,0.189,1.92,0.314,168.841,3511.082
-2006,8.1427,1.1676,320.0614,7.715,56.545,56545,1055.3681,215.8001,38.883,8.3258,36.4361,42.2406,12.2669,3.1051,0.4427,10.5529,12.3831,3.8803,16.2358,121.0746,14.293,5.6938,31.7215,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,296.002,48.231,34.767,6.992,0.049,1.834,0.279,167.857,3511.082
-2007,8.3136,1.14,324.2127,7.7459,56.3678,56367.8,1049.2141,216.1376,38.97,8.4003,36.4792,42.5977,12.9284,3.5603,0.4492,10.2947,13.7731,4.5246,18.7259,129.6223,16.1321,6.5045,36.5545,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,308.596,49.821,39.869,6.502,0.049,1.752,0.249,167.857,3511.082
-2008,8.4828667,1.1121667,328.34943,7.7766333,56.184533,56184.533,1043.0664,216.4749,39.054433,8.4745333,36.520033,42.9544,13.5912,4.0149667,0.45503333,10.037233,15.162767,5.1677,21.2435,138.76247,17.9599,7.3294667,41.387467,6.6085333,45.74,43.216,0.806,0.049,0.331,45.5,10.874,321.19,51.412,39.099,6.047,0.049,1.675,0.221,167.857,3511.082
-2009,8.6521333,1.0843333,332.48617,7.8073667,56.001267,56001.267,1036.9188,216.8122,39.138867,8.5487667,36.560867,43.3111,14.254,4.4696333,0.46086667,9.7797667,16.552433,5.8108,23.7611,147.90263,19.7877,8.1544333,46.220433,6.6157667,44.442,40.334,0.754,0.029,0.248,39,10.874,333.784,53.002,38.069,5.624,0.049,1.601,0.197,167.857,3511.082
-2010,8.8214,1.0565,336.6229,7.8381,55.818,55818,1030.7711,217.1495,39.2233,8.623,36.6017,43.6678,14.9168,4.9243,0.4667,9.5223,17.9421,6.4539,26.2787,157.0428,21.6155,8.9794,51.0534,6.623,42.976,36.906,0.377,0.018,0.186,32.5,7.266,346.378,54.593,36.801,5.23,0,1.521,0.175,167.857,3511.082
-2011,8.86803,1.04813,328.6374,7.79063,54.65749,54657.49,1025.9587,216.7636,38.96192,8.5989,36.61719,44.07346,14.6468,4.9717,0.43848,8.68531,22.21208,6.53107,32.58573,158.72642,25.89136,8.24224,49.18021,6.18511,41.557,33.769,0.189,0.011,0.14,26,7.266,344.714,54.867,35.314,4.864,0,1.445,0.156,167.857,3511.082
-2012,8.91466,1.03976,320.6519,7.74316,53.49698,53496.98,1021.1462,216.3777,38.70054,8.5748,36.63268,44.47912,14.3768,5.0191,0.41026,7.84832,26.48206,6.60824,38.89276,160.41004,30.16722,7.50508,47.30702,5.74722,40.186,30.898,0.094,0.006,0.105,19.5,7.266,343.051,55.141,33.625,4.524,0,1.373,0.139,167.857,3511.082
-2013,8.96129,1.03139,312.6664,7.69569,52.33647,52336.47,1016.3338,215.9918,38.43916,8.5507,36.64817,44.88478,14.1068,5.0665,0.38204,7.01133,30.75204,6.68541,45.19979,162.09366,34.44308,6.76792,45.43383,5.30933,38.86,28.272,0.047,0.004,0.079,13,7.266,341.387,55.414,31.75,4.207,0,1.304,0.124,167.857,3511.082
-2014,9.00792,1.02302,304.6809,7.64822,51.17596,51175.96,1011.5213,215.6059,38.17778,8.5266,36.66366,45.29044,13.8368,5.1139,0.35382,6.17434,35.02202,6.76258,51.50682,163.77728,38.71894,6.03076,43.56064,4.87144,37.578,25.869,0.024,0.002,0.059,6.5,7.266,339.724,55.688,29.705,3.913,0,1.239,0.11,167.857,3511.082
-2015,9.05455,1.01465,296.6954,7.60075,50.01545,50015.45,1006.7089,215.22,37.9164,8.5025,36.67915,45.6961,13.5668,5.1613,0.3256,5.33735,39.292,6.83975,57.81385,165.4609,42.9948,5.2936,41.68745,4.43355,36.338,23.67,0.012,0.001,0.044,0,0,338.06,55.962,27.502,3.639,0,1.177,0.098,155.925,3511.082
-2016,9.10118,1.00628,288.7099,7.55328,48.85494,48854.94,1001.8965,214.8341,37.65502,8.4784,36.69464,46.10176,13.2968,5.2087,0.29738,4.50036,43.56198,6.91692,64.12088,167.14452,47.27066,4.55644,39.81426,3.99566,35.138,21.658,0.006,0.001,0.033,0,0,336.397,56.236,25.476,3.384,0,1.118,0.087,155.925,3511.082
-2017,9.14781,0.99791,280.7244,7.50581,47.69443,47694.43,997.08402,214.4482,37.39364,8.4543,36.71013,46.50742,13.0268,5.2561,0.26916,3.66337,47.83196,6.99409,70.42791,168.82814,51.54652,3.81928,37.94107,3.55777,33.979,19.817,0.003,0,0.025,0,0,334.733,56.51,23.611,3.147,0,1.062,0.078,155.925,3511.082
-2018,9.19444,0.98954,272.7389,7.45834,46.53392,46533.92,992.27158,214.0623,37.13226,8.4302,36.72562,46.91308,12.7568,5.3035,0.24094,2.82638,52.10194,7.07126,76.73494,170.51176,55.82238,3.08212,36.06788,3.11988,32.858,18.133,0.001,0,0.019,0,0,333.07,56.784,21.896,2.927,0,1.009,0.069,155.925,3511.082
-2019,9.24107,0.98117,264.7534,7.41087,45.37341,45373.41,987.45914,213.6764,36.87088,8.4061,36.74111,47.31874,12.4868,5.3509,0.21272,1.98939,56.37192,7.14843,83.04197,172.19538,60.09824,2.34496,34.19469,2.68199,31.773,16.591,0.001,0,0.014,0,0,331.406,57.058,20.318,2.722,0,0.959,0.061,155.925,3511.082
-2020,9.2877,0.9728,256.7679,7.3634,44.2129,44212.9,982.6467,213.2905,36.6095,8.382,36.7566,47.7244,12.2168,5.3983,0.1845,1.1524,60.6419,7.2256,89.349,173.879,64.3741,1.6078,32.3215,2.2441,30.725,15.181,0,0,0.01,0,0,329.743,57.332,18.867,2.531,0,0.911,0.055,155.925,3511.082
-2021,9.07462,0.95441,254.65433,7.35756,42.75221,42752.21,976.97887,212.02164,36.10504,8.23806,36.62955,48.0643,11.66461,5.04704,0.17723,1.1063,61.78125,7.31559,91.30401,175.90966,65.49222,1.52656,29.40678,2.21491,29.711,13.891,0,0,0.008,0,0,313.814,56.425,17.531,2.354,0,0.865,0.049,155.925,3511.082
-2022,8.86154,0.93602,252.54076,7.35172,41.29152,41291.52,971.31104,210.75278,35.60058,8.09412,36.5025,48.4042,11.11242,4.69578,0.16996,1.0602,62.9206,7.40558,93.25902,177.94032,66.61034,1.44532,26.49206,2.18572,28.73,12.71,0,0,0.006,0,0,297.886,55.519,16.302,2.189,0,0.822,0.043,155.925,3511.082
-2023,8.64846,0.91763,250.42719,7.34588,39.83083,39830.83,965.64321,209.48392,35.09612,7.95018,36.37545,48.7441,10.56023,4.34452,0.16269,1.0141,64.05995,7.49557,95.21403,179.97098,67.72846,1.36408,23.57734,2.15653,27.782,11.63,0,0,0.004,0,0,281.957,54.612,15.172,2.036,0,0.781,0.039,155.925,3511.082
-2024,8.43538,0.89924,248.31362,7.34004,38.37014,38370.14,959.97538,208.21506,34.59166,7.80624,36.2484,49.084,10.00804,3.99326,0.15542,0.968,65.1993,7.58556,97.16904,182.00164,68.84658,1.28284,20.66262,2.12734,26.865,10.641,0,0,0.003,0,0,266.029,53.705,14.132,1.894,0,0.742,0.034,155.925,3511.082
-2025,8.2223,0.88085,246.20005,7.3342,36.90945,36909.45,954.30755,206.9462,34.0872,7.6623,36.12135,49.4239,9.45585,3.642,0.14815,0.9219,66.33865,7.67555,99.12405,184.0323,69.9647,1.2016,17.7479,2.09815,25.979,9.737,0,0,0.002,0,0,250.101,52.798,13.175,1.761,0,0.705,0.031,155.925,3511.082
-2026,8.00922,0.86246,244.08648,7.32836,35.44876,35448.76,948.63972,205.67734,33.58274,7.51836,35.9943,49.7638,8.90366,3.29074,0.14088,0.8758,67.478,7.76554,101.07906,186.06296,71.08282,1.12036,14.83318,2.06896,25.122,8.909,0,0,0.002,0,0,234.172,51.892,12.295,1.638,0,0.669,0.027,155.925,3511.082
-2027,7.79614,0.84407,241.97291,7.32252,33.98807,33988.07,942.97189,204.40848,33.07828,7.37442,35.86725,50.1037,8.35147,2.93948,0.13361,0.8297,68.61735,7.85553,103.03407,188.09362,72.20094,1.03912,11.91846,2.03977,24.293,8.152,0,0,0.001,0,0,218.244,50.985,11.485,1.523,0,0.636,0.024,155.925,3511.082
-2028,7.58306,0.82568,239.85934,7.31668,32.52738,32527.38,937.30406,203.13962,32.57382,7.23048,35.7402,50.4436,7.79928,2.58822,0.12634,0.7836,69.7567,7.94552,104.98908,190.12428,73.31906,0.95788,9.00374,2.01058,23.491,7.459,0,0,0.001,0,0,202.315,50.078,10.74,1.417,0,0.604,0.022,155.925,3511.082
-2029,7.36998,0.80729,237.74577,7.31084,31.06669,31066.69,931.63623,201.87076,32.06936,7.08654,35.61315,50.7835,7.24709,2.23696,0.11907,0.7375,70.89605,8.03551,106.94409,192.15494,74.43718,0.87664,6.08902,1.98139,22.716,6.825,0,0,0.001,0,0,186.387,49.172,10.055,1.317,0,0.574,0.019,155.925,3511.082
-2030,7.1569,0.7889,235.6322,7.305,29.606,29606,925.9684,200.6019,31.5649,6.9426,35.4861,51.1234,6.6949,1.8857,0.1118,0.6914,72.0354,8.1255,108.8991,194.1856,75.5553,0.7954,3.1743,1.9522,21.966,6.245,0,0,0.001,0,0,170.458,48.265,9.424,1.225,0,0.545,0.017,155.925,3511.082
-2031,6.8947,0.75891,234.57183,7.29221,28.63446,28634.46,921.1656,199.76692,31.40904,6.81693,35.13889,51.34308,6.53063,1.80589,0.1119,0.66362,72.90303,8.24943,110.50533,196.04996,76.3722,0.80448,2.85687,1.91374,21.241,5.714,0,0,0,0,0,158.161,46.405,8.826,1.139,0,0.518,0.015,155.925,3511.082
-2032,6.6325,0.72892,233.51146,7.27942,27.66292,27662.92,916.3628,198.93194,31.25318,6.69126,34.79168,51.56276,6.36636,1.72608,0.112,0.63584,73.77066,8.37336,112.11156,197.91432,77.1891,0.81356,2.53944,1.87528,20.54,5.228,0,0,0,0,0,145.863,44.545,8.259,1.06,0,0.492,0.013,155.925,3511.082
-2033,6.3703,0.69893,232.45109,7.26663,26.69138,26691.38,911.56,198.09696,31.09732,6.56559,34.44447,51.78244,6.20209,1.64627,0.1121,0.60806,74.63829,8.49729,113.71779,199.77868,78.006,0.82264,2.22201,1.83682,19.862,4.784,0,0,0,0,0,133.566,42.685,7.72,0.985,0,0.467,0.012,155.925,3511.082
-2034,6.1081,0.66894,231.39072,7.25384,25.71984,25719.84,906.7572,197.26198,30.94146,6.43992,34.09726,52.00212,6.03782,1.56646,0.1122,0.58028,75.50592,8.62122,115.32402,201.64304,78.8229,0.83172,1.90458,1.79836,19.207,4.377,0,0,0,0,0,121.269,40.825,7.207,0.916,0,0.444,0.011,155.925,3511.082
-2035,5.8459,0.63895,230.33035,7.24105,24.7483,24748.3,901.9544,196.427,30.7856,6.31425,33.75005,52.2218,5.87355,1.48665,0.1123,0.5525,76.37355,8.74515,116.93025,203.5074,79.6398,0.8408,1.58715,1.7599,18.573,4.005,0,0,0,0,0,108.971,38.965,6.717,0.852,0,0.422,0.01,155.925,3511.082
-2036,5.5837,0.60896,229.26998,7.22826,23.77676,23776.76,897.1516,195.59202,30.62974,6.18858,33.40284,52.44148,5.70928,1.40684,0.1124,0.52472,77.24118,8.86908,118.53648,205.37176,80.4567,0.84988,1.26972,1.72144,17.96,3.665,0,0,0,0,0,96.674,37.105,6.249,0.793,0,0.401,0.008,155.925,3511.082
-2037,5.3215,0.57897,228.20961,7.21547,22.80522,22805.22,892.3488,194.75704,30.47388,6.06291,33.05563,52.66116,5.54501,1.32703,0.1125,0.49694,78.10881,8.99301,120.14271,207.23612,81.2736,0.85896,0.95229,1.68298,17.368,3.353,0,0,0,0,0,84.377,35.244,5.801,0.737,0,0.381,0.008,155.925,3511.082
-2038,5.0593,0.54898,227.14924,7.20268,21.83368,21833.68,887.546,193.92206,30.31802,5.93724,32.70842,52.88084,5.38074,1.24722,0.1126,0.46916,78.97644,9.11694,121.74894,209.10048,82.0905,0.86804,0.63486,1.64452,16.794,3.068,0,0,0,0,0,72.079,33.384,5.372,0.686,0,0.362,0.007,155.925,3511.082
-2039,4.7971,0.51899,226.08887,7.18989,20.86214,20862.14,882.7432,193.08708,30.16216,5.81157,32.36121,53.10052,5.21647,1.16741,0.1127,0.44138,79.84407,9.24087,123.35517,210.96484,82.9074,0.87712,0.31743,1.60606,16.24,2.807,0,0,0,0,0,59.782,31.524,4.96,0.638,0,0.344,0.006,155.925,3511.082
-2040,4.5349,0.489,225.0285,7.1771,19.8906,19890.6,877.9404,192.2521,30.0063,5.6859,32.014,53.3202,5.0522,1.0876,0.1128,0.4136,80.7117,9.3648,124.9614,212.8292,83.7243,0.8862,0,1.5676,15.704,2.569,0,0,0,0,0,47.485,29.664,4.563,0.593,0,0.326,0.005,155.925,3511.082
-2041,4.39997,0.46022,221.45546,7.08404,19.45899,19458.99,872.16763,190.878,29.89599,5.61136,31.80989,53.54175,4.81083,1.02596,0.11238,0.39687,80.10127,9.53783,124.37894,211.38138,83.06078,0.82716,0,1.47407,15.186,2.35,0,0,0,0,0,43.916,28.474,4.198,0.551,0,0.31,0.005,155.925,3511.082
-2042,4.26504,0.43144,217.88242,6.99098,19.02738,19027.38,866.39486,189.5039,29.78568,5.53682,31.60578,53.7633,4.56946,0.96432,0.11196,0.38014,79.49084,9.71086,123.79648,209.93356,82.39726,0.76812,0,1.38054,14.685,2.151,0,0,0,0,0,40.347,27.284,3.862,0.513,0,0.295,0.004,155.925,3511.082
-2043,4.13011,0.40266,214.30938,6.89792,18.59577,18595.77,860.62209,188.1298,29.67537,5.46228,31.40167,53.98485,4.32809,0.90268,0.11154,0.36341,78.88041,9.88389,123.21402,208.48574,81.73374,0.70908,0,1.28701,14.2,1.968,0,0,0,0,0,36.778,26.093,3.553,0.477,0,0.28,0.004,155.925,3511.082
-2044,3.99518,0.37388,210.73634,6.80486,18.16416,18164.16,854.84932,186.7557,29.56506,5.38774,31.19756,54.2064,4.08672,0.84104,0.11112,0.34668,78.26998,10.05692,122.63156,207.03792,81.07022,0.65004,0,1.19348,13.732,1.801,0,0,0,0,0,33.209,24.903,3.269,0.444,0,0.266,0.003,155.925,3511.082
-2045,3.86025,0.3451,207.1633,6.7118,17.73255,17732.55,849.07655,185.3816,29.45475,5.3132,30.99345,54.42795,3.84535,0.7794,0.1107,0.32995,77.65955,10.22995,122.0491,205.5901,80.4067,0.591,0,1.09995,13.279,1.648,0,0,0,0,0,29.64,23.713,3.007,0.413,0,0.253,0.003,155.925,3511.082
-2046,3.72532,0.31632,203.59026,6.61874,17.30094,17300.94,843.30378,184.0075,29.34444,5.23866,30.78934,54.6495,3.60398,0.71776,0.11028,0.31322,77.04912,10.40298,121.46664,204.14228,79.74318,0.53196,0,1.00642,12.84,1.507,0,0,0,0,0,26.072,22.522,2.767,0.384,0,0.24,0.003,155.925,3511.082
-2047,3.59039,0.28754,200.01722,6.52568,16.86933,16869.33,837.53101,182.6334,29.23413,5.16412,30.58523,54.87105,3.36261,0.65612,0.10986,0.29649,76.43869,10.57601,120.88418,202.69446,79.07966,0.47292,0,0.91289,12.417,1.379,0,0,0,0,0,22.503,21.332,2.545,0.357,0,0.228,0.002,155.925,3511.082
-2048,3.45546,0.25876,196.44418,6.43262,16.43772,16437.72,831.75824,181.2593,29.12382,5.08958,30.38112,55.0926,3.12124,0.59448,0.10944,0.27976,75.82826,10.74904,120.30172,201.24664,78.41614,0.41388,0,0.81936,12.007,1.262,0,0,0,0,0,18.934,20.142,2.342,0.332,0,0.217,0.002,155.925,3511.082
-2049,3.32053,0.22998,192.87114,6.33956,16.00611,16006.11,825.98547,179.8852,29.01351,5.01504,30.17701,55.31415,2.87987,0.53284,0.10902,0.26303,75.21783,10.92207,119.71926,199.79882,77.75262,0.35484,0,0.72583,11.611,1.155,0,0,0,0,0,15.365,18.951,2.154,0.309,0,0.206,0.002,155.925,3511.082
-2050,3.1856,0.2012,189.2981,6.2465,15.5745,15574.5,820.2127,178.5111,28.9032,4.9405,29.9729,55.5357,2.6385,0.4712,0.1086,0.2463,74.6074,11.0951,119.1368,198.351,77.0891,0.2958,0,0.6323,11.227,1.057,0,0,0,0,0,11.796,17.761,1.982,0.287,0,0.195,0.002,155.925,3511.082
-2051,3.00896,0.2426,187.01509,6.19366,15.38703,15387.03,816.11031,177.30075,28.73251,4.88943,29.9464,55.83387,2.59225,0.45634,0.10848,0.23542,75.55522,11.09689,121.10282,201.15158,78.03953,0.28044,0,0.61892,10.857,0.967,0,0,0,0,0,10.91,17.048,1.824,0.267,0,0.186,0.001,155.925,3511.082
-2052,2.83232,0.284,184.73208,6.14082,15.19956,15199.56,812.00792,176.0904,28.56182,4.83836,29.9199,56.13204,2.546,0.44148,0.10836,0.22454,76.50304,11.09868,123.06884,203.95216,78.98996,0.26508,0,0.60554,10.499,0.885,0,0,0,0,0,10.023,16.336,1.678,0.248,0,0.176,0.001,155.925,3511.082
-2053,2.65568,0.3254,182.44907,6.08798,15.01209,15012.09,807.90553,174.88005,28.39113,4.78729,29.8934,56.43021,2.49975,0.42662,0.10824,0.21366,77.45086,11.10047,125.03486,206.75274,79.94039,0.24972,0,0.59216,10.152,0.809,0,0,0,0,0,9.137,15.623,1.543,0.231,0,0.168,0.001,155.925,3511.082
-2054,2.47904,0.3668,180.16606,6.03514,14.82462,14824.62,803.80314,173.6697,28.22044,4.73622,29.8669,56.72838,2.4535,0.41176,0.10812,0.20278,78.39868,11.10226,127.00088,209.55332,80.89082,0.23436,0,0.57878,9.817,0.741,0,0,0,0,0,8.25,14.91,1.42,0.215,0,0.159,0.001,155.925,3511.082
-2055,2.3024,0.4082,177.88305,5.9823,14.63715,14637.15,799.70075,172.45935,28.04975,4.68515,29.8404,57.02655,2.40725,0.3969,0.108,0.1919,79.3465,11.10405,128.9669,212.3539,81.84125,0.219,0,0.5654,9.493,0.678,0,0,0,0,0,7.363,14.198,1.306,0.2,0,0.151,0.001,155.925,3511.082
-2056,2.12576,0.4496,175.60004,5.92946,14.44968,14449.68,795.59836,171.249,27.87906,4.63408,29.8139,57.32472,2.361,0.38204,0.10788,0.18102,80.29432,11.10584,130.93292,215.15448,82.79168,0.20364,0,0.55202,9.18,0.62,0,0,0,0,0,6.477,13.485,1.202,0.186,0,0.144,0.001,155.925,3511.082
-2057,1.94912,0.491,173.31703,5.87662,14.26221,14262.21,791.49597,170.03865,27.70837,4.58301,29.7874,57.62289,2.31475,0.36718,0.10776,0.17014,81.24214,11.10763,132.89894,217.95506,83.74211,0.18828,0,0.53864,8.877,0.567,0,0,0,0,0,5.59,12.772,1.106,0.173,0,0.136,0.001,155.925,3511.082
-2058,1.77248,0.5324,171.03402,5.82378,14.07474,14074.74,787.39358,168.8283,27.53768,4.53194,29.7609,57.92106,2.2685,0.35232,0.10764,0.15926,82.18996,11.10942,134.86496,220.75564,84.69254,0.17292,0,0.52526,8.584,0.519,0,0,0,0,0,4.704,12.06,1.017,0.161,0,0.13,0.001,155.925,3511.082
-2059,1.59584,0.5738,168.75101,5.77094,13.88727,13887.27,783.29119,167.61795,27.36699,4.48087,29.7344,58.21923,2.22225,0.33746,0.10752,0.14838,83.13778,11.11121,136.83098,223.55622,85.64297,0.15756,0,0.51188,8.301,0.475,0,0,0,0,0,3.817,11.347,0.936,0.149,0,0.123,0.001,155.925,3511.082
-2060,1.4192,0.6152,166.468,5.7181,13.6998,13699.8,779.1888,166.4076,27.1963,4.4298,29.7079,58.5174,2.176,0.3226,0.1074,0.1375,84.0856,11.113,138.797,226.3568,86.5934,0.1422,0,0.4985,8.027,0.435,0,0,0,0,0,2.93,10.634,0.861,0.139,0,0.117,0.001,155.925,3511.082
-2061,1.28885,0.6075,165.95204,5.7204,13.51644,13516.44,772.51907,164.79686,26.8771,4.38112,29.54327,58.80981,2.17216,0.31644,0.10732,0.13105,85.06506,11.10641,140.83553,229.30577,87.48473,0.14112,0,0.49048,7.762,0.398,0,0,0,0,0,2.71,10.207,0.792,0.129,0,0.111,0,155.925,3511.082
-2062,1.1585,0.5998,165.43608,5.7227,13.33308,13333.08,765.84934,163.18612,26.5579,4.33244,29.37864,59.10222,2.16832,0.31028,0.10724,0.1246,86.04452,11.09982,142.87406,232.25474,88.37606,0.14004,0,0.48246,7.506,0.364,0,0,0,0,0,2.49,9.781,0.729,0.12,0,0.106,0,155.925,3511.082
-2063,1.02815,0.5921,164.92012,5.725,13.14972,13149.72,759.17961,161.57538,26.2387,4.28376,29.21401,59.39463,2.16448,0.30412,0.10716,0.11815,87.02398,11.09323,144.91259,235.20371,89.26739,0.13896,0,0.47444,7.258,0.333,0,0,0,0,0,2.27,9.354,0.67,0.112,0,0.1,0,155.925,3511.082
-2064,0.8978,0.5844,164.40416,5.7273,12.96636,12966.36,752.50988,159.96464,25.9195,4.23508,29.04938,59.68704,2.16064,0.29796,0.10708,0.1117,88.00344,11.08664,146.95112,238.15268,90.15872,0.13788,0,0.46642,7.019,0.305,0,0,0,0,0,2.049,8.927,0.617,0.104,0,0.095,0,155.925,3511.082
-2065,0.76745,0.5767,163.8882,5.7296,12.783,12783,745.84015,158.3539,25.6003,4.1864,28.88475,59.97945,2.1568,0.2918,0.107,0.10525,88.9829,11.08005,148.98965,241.10165,91.05005,0.1368,0,0.4584,6.787,0.279,0,0,0,0,0,1.829,8.501,0.567,0.097,0,0.091,0,155.925,3511.082
-2066,0.6371,0.569,163.37224,5.7319,12.59964,12599.64,739.17042,156.74316,25.2811,4.13772,28.72012,60.27186,2.15296,0.28564,0.10692,0.0988,89.96236,11.07346,151.02818,244.05062,91.94138,0.13572,0,0.45038,6.563,0.255,0,0,0,0,0,1.609,8.074,0.522,0.09,0,0.086,0,155.925,3511.082
-2067,0.50675,0.5613,162.85628,5.7342,12.41628,12416.28,732.50069,155.13242,24.9619,4.08904,28.55549,60.56427,2.14912,0.27948,0.10684,0.09235,90.94182,11.06687,153.06671,246.99959,92.83271,0.13464,0,0.44236,6.346,0.233,0,0,0,0,0,1.389,7.647,0.48,0.084,0,0.082,0,155.925,3511.082
-2068,0.3764,0.5536,162.34032,5.7365,12.23292,12232.92,725.83096,153.52168,24.6427,4.04036,28.39086,60.85668,2.14528,0.27332,0.10676,0.0859,91.92128,11.06028,155.10524,249.94856,93.72404,0.13356,0,0.43434,6.137,0.214,0,0,0,0,0,1.168,7.221,0.442,0.078,0,0.078,0,155.925,3511.082
-2069,0.24605,0.5459,161.82436,5.7388,12.04956,12049.56,719.16123,151.91094,24.3235,3.99168,28.22623,61.14909,2.14144,0.26716,0.10668,0.07945,92.90074,11.05369,157.14377,252.89753,94.61537,0.13248,0,0.42632,5.935,0.195,0,0,0,0,0,0.948,6.794,0.407,0.072,0,0.074,0,155.925,3511.082
-2070,0.1157,0.5382,161.3084,5.7411,11.8662,11866.2,712.4915,150.3002,24.0043,3.943,28.0616,61.4415,2.1376,0.261,0.1066,0.073,93.8802,11.0471,159.1823,255.8465,95.5067,0.1314,0,0.4183,5.739,0.179,0,0,0,0,0,0.728,6.367,0.374,0.067,0,0.07,0,155.925,3511.082
-2071,0.06083,0.53938,160.68516,5.72833,11.65506,11655.06,707.6157,149.13236,23.66643,3.91608,27.94251,61.63589,2.06823,0.25002,0.10626,0.06942,94.1193,11.03809,159.92094,256.83185,95.53701,0.1303,0,0.40805,5.549,0.164,0,0,0,0,0,0.673,6.112,0.344,0.063,0,0.067,0,155.925,3511.082
-2072,0.00596,0.54056,160.06192,5.71556,11.44392,11443.92,702.7399,147.96452,23.32856,3.88916,27.82342,61.83028,1.99886,0.23904,0.10592,0.06584,94.3584,11.02908,160.65958,257.8172,95.56732,0.1292,0,0.3978,5.366,0.15,0,0,0,0,0,0.619,5.856,0.317,0.058,0,0.063,0,155.925,3511.082
-2073,-0.04891,0.54174,159.43868,5.70279,11.23278,11232.78,697.8641,146.79668,22.99069,3.86224,27.70433,62.02467,1.92949,0.22806,0.10558,0.06226,94.5975,11.02007,161.39822,258.80255,95.59763,0.1281,0,0.38755,5.189,0.137,0,0,0,0,0,0.564,5.601,0.291,0.054,0,0.06,0,155.925,3511.082
-2074,-0.10378,0.54292,158.81544,5.69002,11.02164,11021.64,692.9883,145.62884,22.65282,3.83532,27.58524,62.21906,1.86012,0.21708,0.10524,0.05868,94.8366,11.01106,162.13686,259.7879,95.62794,0.127,0,0.3773,5.018,0.125,0,0,0,0,0,0.509,5.345,0.268,0.05,0,0.057,0,155.925,3511.082
-2075,-0.15865,0.5441,158.1922,5.67725,10.8105,10810.5,688.1125,144.461,22.31495,3.8084,27.46615,62.41345,1.79075,0.2061,0.1049,0.0551,95.0757,11.00205,162.8755,260.77325,95.65825,0.1259,0,0.36705,4.852,0.115,0,0,0,0,0,0.454,5.09,0.247,0.047,0,0.054,0,155.925,3511.082
-2076,-0.21352,0.54528,157.56896,5.66448,10.59936,10599.36,683.2367,143.29316,21.97708,3.78148,27.34706,62.60784,1.72138,0.19512,0.10456,0.05152,95.3148,10.99304,163.61414,261.7586,95.68856,0.1248,0,0.3568,4.692,0.105,0,0,0,0,0,0.4,4.834,0.227,0.043,0,0.052,0,155.925,3511.082
-2077,-0.26839,0.54646,156.94572,5.65171,10.38822,10388.22,678.3609,142.12532,21.63921,3.75456,27.22797,62.80223,1.65201,0.18414,0.10422,0.04794,95.5539,10.98403,164.35278,262.74395,95.71887,0.1237,0,0.34655,4.537,0.096,0,0,0,0,0,0.345,4.579,0.209,0.04,0,0.049,0,155.925,3511.082
-2078,-0.32326,0.54764,156.32248,5.63894,10.17708,10177.08,673.4851,140.95748,21.30134,3.72764,27.10888,62.99662,1.58264,0.17316,0.10388,0.04436,95.793,10.97502,165.09142,263.7293,95.74918,0.1226,0,0.3363,4.388,0.088,0,0,0,0,0,0.29,4.323,0.192,0.038,0,0.046,0,155.925,3511.082
-2079,-0.37813,0.54882,155.69924,5.62617,9.96594,9965.94,668.6093,139.78964,20.96347,3.70072,26.98979,63.19101,1.51327,0.16218,0.10354,0.04078,96.0321,10.96601,165.83006,264.71465,95.77949,0.1215,0,0.32605,4.243,0.08,0,0,0,0,0,0.236,4.068,0.177,0.035,0,0.044,0,155.925,3511.082
-2080,-0.433,0.55,155.076,5.6134,9.7548,9754.8,663.7335,138.6218,20.6256,3.6738,26.8707,63.3854,1.4439,0.1512,0.1032,0.0372,96.2712,10.957,166.5687,265.7,95.8098,0.1204,0,0.3158,4.103,0.074,0,0,0,0,0,0.181,3.812,0.162,0.033,0,0.042,0,155.925,3511.082
-2081,-0.47674,0.55524,154.41227,5.59813,9.56188,9561.88,661.04504,137.88381,20.41927,3.66094,26.82342,63.57873,1.41908,0.14528,0.1026,0.03348,95.76444,10.93657,166.06747,264.8148,95.1051,0.11903,0,0.30275,3.967,0.067,0,0,0,0,0,0.167,3.659,0.149,0.03,0,0.04,0,155.925,3511.082
-2082,-0.52048,0.56048,153.74854,5.58286,9.36896,9368.96,658.35658,137.14582,20.21294,3.64808,26.77614,63.77206,1.39426,0.13936,0.102,0.02976,95.25768,10.91614,165.56624,263.9296,94.4004,0.11766,0,0.2897,3.836,0.062,0,0,0,0,0,0.154,3.506,0.138,0.028,0,0.038,0,155.925,3511.082
-2083,-0.56422,0.56572,153.08481,5.56759,9.17604,9176.04,655.66812,136.40783,20.00661,3.63522,26.72886,63.96539,1.36944,0.13344,0.1014,0.02604,94.75092,10.89571,165.06501,263.0444,93.6957,0.11629,0,0.27665,3.71,0.056,0,0,0,0,0,0.14,3.353,0.127,0.026,0,0.036,0,155.925,3511.082
-2084,-0.60796,0.57096,152.42108,5.55232,8.98312,8983.12,652.97966,135.66984,19.80028,3.62236,26.68158,64.15872,1.34462,0.12752,0.1008,0.02232,94.24416,10.87528,164.56378,262.1592,92.991,0.11492,0,0.2636,3.587,0.052,0,0,0,0,0,0.126,3.2,0.116,0.024,0,0.034,0,155.925,3511.082
-2085,-0.6517,0.5762,151.75735,5.53705,8.7902,8790.2,650.2912,134.93185,19.59395,3.6095,26.6343,64.35205,1.3198,0.1216,0.1002,0.0186,93.7374,10.85485,164.06255,261.274,92.2863,0.11355,0,0.25055,3.469,0.047,0,0,0,0,0,0.113,3.047,0.107,0.023,0,0.032,0,155.925,3511.082
-2086,-0.69544,0.58144,151.09362,5.52178,8.59728,8597.28,647.60274,134.19386,19.38762,3.59664,26.58702,64.54538,1.29498,0.11568,0.0996,0.01488,93.23064,10.83442,163.56132,260.3888,91.5816,0.11218,0,0.2375,3.355,0.043,0,0,0,0,0,0.099,2.894,0.099,0.021,0,0.031,0,155.925,3511.082
-2087,-0.73918,0.58668,150.42989,5.50651,8.40436,8404.36,644.91428,133.45587,19.18129,3.58378,26.53974,64.73871,1.27016,0.10976,0.099,0.01116,92.72388,10.81399,163.06009,259.5036,90.8769,0.11081,0,0.22445,3.244,0.039,0,0,0,0,0,0.086,2.741,0.091,0.02,0,0.029,0,155.925,3511.082
-2088,-0.78292,0.59192,149.76616,5.49124,8.21144,8211.44,642.22582,132.71788,18.97496,3.57092,26.49246,64.93204,1.24534,0.10384,0.0984,0.00744,92.21712,10.79356,162.55886,258.6184,90.1722,0.10944,0,0.2114,3.137,0.036,0,0,0,0,0,0.072,2.588,0.083,0.018,0,0.028,0,155.925,3511.082
-2089,-0.82666,0.59716,149.10243,5.47597,8.01852,8018.52,639.53736,131.97989,18.76863,3.55806,26.44518,65.12537,1.22052,0.09792,0.0978,0.00372,91.71036,10.77313,162.05763,257.7332,89.4675,0.10807,0,0.19835,3.033,0.033,0,0,0,0,0,0.059,2.435,0.077,0.017,0,0.026,0,155.925,3511.082
-2090,-0.8704,0.6024,148.4387,5.4607,7.8256,7825.6,636.8489,131.2419,18.5623,3.5452,26.3979,65.3187,1.1957,0.092,0.0972,0,91.2036,10.7527,161.5564,256.848,88.7628,0.1067,0,0.1853,2.933,0.03,0,0,0,0,0,0.045,2.283,0.071,0.016,0,0.025,0,155.925,3511.082
-2091,-0.87644,0.59329,147.8001,5.44286,7.68856,7688.56,633.94839,130.66875,18.30502,3.52646,26.29122,65.51065,1.18533,0.09137,0.09635,0,90.20593,10.71798,160.22213,254.70245,87.63225,0.10515,0,0.17119,2.836,0.028,0,0,0,0,0,0.042,2.191,0.065,0.015,0,0.024,0,155.925,3511.082
-2092,-0.88248,0.58418,147.1615,5.42502,7.55152,7551.52,631.04788,130.0956,18.04774,3.50772,26.18454,65.7026,1.17496,0.09074,0.0955,0,89.20826,10.68326,158.88786,252.5569,86.5017,0.1036,0,0.15708,2.743,0.025,0,0,0,0,0,0.038,2.099,0.06,0.014,0,0.023,0,155.925,3511.082
-2093,-0.88852,0.57507,146.5229,5.40718,7.41448,7414.48,628.14737,129.52245,17.79046,3.48898,26.07786,65.89455,1.16459,0.09011,0.09465,0,88.21059,10.64854,157.55359,250.41135,85.37115,0.10205,0,0.14297,2.652,0.023,0,0,0,0,0,0.035,2.008,0.055,0.013,0,0.022,0,155.925,3511.082
-2094,-0.89456,0.56596,145.8843,5.38934,7.27744,7277.44,625.24686,128.9493,17.53318,3.47024,25.97118,66.0865,1.15422,0.08948,0.0938,0,87.21292,10.61382,156.21932,248.2658,84.2406,0.1005,0,0.12886,2.565,0.021,0,0,0,0,0,0.031,1.916,0.051,0.012,0,0.02,0,155.925,3511.082
-2095,-0.9006,0.55685,145.2457,5.3715,7.1404,7140.4,622.34635,128.37615,17.2759,3.4515,25.8645,66.27845,1.14385,0.08885,0.09295,0,86.21525,10.5791,154.88505,246.12025,83.11005,0.09895,0,0.11475,2.48,0.019,0,0,0,0,0,0.028,1.825,0.047,0.011,0,0.019,0,155.925,3511.082
-2096,-0.90664,0.54774,144.6071,5.35366,7.00336,7003.36,619.44584,127.803,17.01862,3.43276,25.75782,66.4704,1.13348,0.08822,0.0921,0,85.21758,10.54438,153.55078,243.9747,81.9795,0.0974,0,0.10064,2.398,0.018,0,0,0,0,0,0.025,1.733,0.043,0.01,0,0.018,0,155.925,3511.082
-2097,-0.91268,0.53863,143.9685,5.33582,6.86632,6866.32,616.54533,127.22985,16.76134,3.41402,25.65114,66.66235,1.12311,0.08759,0.09125,0,84.21991,10.50966,152.21651,241.82915,80.84895,0.09585,0,0.08653,2.319,0.016,0,0,0,0,0,0.021,1.641,0.039,0.009,0,0.018,0,155.925,3511.082
-2098,-0.91872,0.52952,143.3299,5.31798,6.72928,6729.28,613.64482,126.6567,16.50406,3.39528,25.54446,66.8543,1.11274,0.08696,0.0904,0,83.22224,10.47494,150.88224,239.6836,79.7184,0.0943,0,0.07242,2.243,0.015,0,0,0,0,0,0.018,1.55,0.036,0.009,0,0.017,0,155.925,3511.082
-2099,-0.92476,0.52041,142.6913,5.30014,6.59224,6592.24,610.74431,126.08355,16.24678,3.37654,25.43778,67.04625,1.10237,0.08633,0.08955,0,82.22457,10.44022,149.54797,237.53805,78.58785,0.09275,0,0.05831,2.169,0.014,0,0,0,0,0,0.015,1.458,0.033,0.008,0,0.016,0,155.925,3511.082
-2100,-0.9308,0.5113,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,2.097,0.012,0,0,0,0,0,0.011,1.367,0.031,0.008,0,0.015,0,155.925,3511.082
-2101,-0.9308,0.490848,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,2.028,0.011,0,0,0,0,0,0.01,1.298,0.028,0.007,0,0.014,0,155.925,3511.082
-2102,-0.9308,0.470396,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.961,0.01,0,0,0,0,0,0.008,1.233,0.026,0.007,0,0.014,0,155.925,3511.082
-2103,-0.9308,0.449944,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.896,0.01,0,0,0,0,0,0.007,1.172,0.024,0.006,0,0.013,0,155.925,3511.082
-2104,-0.9308,0.429492,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.834,0.009,0,0,0,0,0,0.006,1.113,0.022,0.006,0,0.012,0,155.925,3511.082
-2105,-0.9308,0.40904,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.773,0.008,0,0,0,0,0,0.006,1.057,0.02,0.005,0,0.012,0,155.925,3511.082
-2106,-0.9308,0.388588,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.715,0.007,0,0,0,0,0,0.005,1.005,0.019,0.005,0,0.011,0,155.925,3511.082
-2107,-0.9308,0.368136,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.658,0.007,0,0,0,0,0,0.004,0.954,0.017,0.005,0,0.011,0,155.925,3511.082
-2108,-0.9308,0.347684,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.603,0.006,0,0,0,0,0,0.004,0.907,0.016,0.004,0,0.01,0,155.925,3511.082
-2109,-0.9308,0.327232,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.55,0.006,0,0,0,0,0,0.003,0.861,0.014,0.004,0,0.009,0,155.925,3511.082
-2110,-0.9308,0.30678,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.499,0.005,0,0,0,0,0,0.003,0.818,0.013,0.004,0,0.009,0,155.925,3511.082
-2111,-0.9308,0.286328,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.45,0.005,0,0,0,0,0,0.002,0.777,0.012,0.003,0,0.009,0,155.925,3511.082
-2112,-0.9308,0.265876,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.402,0.004,0,0,0,0,0,0.002,0.738,0.011,0.003,0,0.008,0,155.925,3511.082
-2113,-0.9308,0.245424,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.356,0.004,0,0,0,0,0,0.002,0.702,0.01,0.003,0,0.008,0,155.925,3511.082
-2114,-0.9308,0.224972,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.311,0.004,0,0,0,0,0,0.002,0.666,0.01,0.003,0,0.007,0,155.925,3511.082
-2115,-0.9308,0.20452,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.268,0.003,0,0,0,0,0,0.001,0.633,0.009,0.003,0,0.007,0,155.925,3511.082
-2116,-0.9308,0.184068,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.226,0.003,0,0,0,0,0,0.001,0.601,0.008,0.002,0,0.007,0,155.925,3511.082
-2117,-0.9308,0.163616,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.185,0.003,0,0,0,0,0,0.001,0.571,0.007,0.002,0,0.006,0,155.925,3511.082
-2118,-0.9308,0.143164,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.146,0.003,0,0,0,0,0,0.001,0.543,0.007,0.002,0,0.006,0,155.925,3511.082
-2119,-0.9308,0.122712,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.108,0.002,0,0,0,0,0,0.001,0.516,0.006,0.002,0,0.006,0,155.925,3511.082
-2120,-0.9308,0.10226,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.072,0.002,0,0,0,0,0,0.001,0.49,0.006,0.002,0,0.005,0,155.925,3511.082
-2121,-0.9308,0.081808,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.036,0.002,0,0,0,0,0,0.001,0.465,0.005,0.002,0,0.005,0,155.925,3511.082
-2122,-0.9308,0.061356,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.002,0.002,0,0,0,0,0,0.001,0.442,0.005,0.002,0,0.005,0,155.925,3511.082
-2123,-0.9308,0.040904,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.969,0.002,0,0,0,0,0,0,0.42,0.005,0.001,0,0.005,0,155.925,3511.082
-2124,-0.9308,0.020452,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.937,0.001,0,0,0,0,0,0,0.399,0.004,0.001,0,0.004,0,155.925,3511.082
-2125,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.906,0.001,0,0,0,0,0,0,0.379,0.004,0.001,0,0.004,0,155.925,3511.082
-2126,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.876,0.001,0,0,0,0,0,0,0.36,0.004,0.001,0,0.004,0,155.925,3511.082
-2127,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.847,0.001,0,0,0,0,0,0,0.342,0.003,0.001,0,0.004,0,155.925,3511.082
-2128,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.819,0.001,0,0,0,0,0,0,0.325,0.003,0.001,0,0.004,0,155.925,3511.082
-2129,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.792,0.001,0,0,0,0,0,0,0.309,0.003,0.001,0,0.003,0,155.925,3511.082
-2130,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.766,0.001,0,0,0,0,0,0,0.293,0.003,0.001,0,0.003,0,155.925,3511.082
-2131,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.741,0.001,0,0,0,0,0,0,0.279,0.002,0.001,0,0.003,0,155.925,3511.082
-2132,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.717,0.001,0,0,0,0,0,0,0.265,0.002,0.001,0,0.003,0,155.925,3511.082
-2133,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.693,0.001,0,0,0,0,0,0,0.251,0.002,0.001,0,0.003,0,155.925,3511.082
-2134,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.67,0.001,0,0,0,0,0,0,0.239,0.002,0.001,0,0.003,0,155.925,3511.082
-2135,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.648,0.001,0,0,0,0,0,0,0.227,0.002,0.001,0,0.002,0,155.925,3511.082
-2136,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.627,0.001,0,0,0,0,0,0,0.216,0.002,0.001,0,0.002,0,155.925,3511.082
-2137,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.606,0,0,0,0,0,0,0,0.205,0.001,0.001,0,0.002,0,155.925,3511.082
-2138,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.586,0,0,0,0,0,0,0,0.195,0.001,0,0,0.002,0,155.925,3511.082
-2139,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.567,0,0,0,0,0,0,0,0.185,0.001,0,0,0.002,0,155.925,3511.082
-2140,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.548,0,0,0,0,0,0,0,0.176,0.001,0,0,0.002,0,155.925,3511.082
-2141,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.53,0,0,0,0,0,0,0,0.167,0.001,0,0,0.002,0,155.925,3511.082
-2142,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.512,0,0,0,0,0,0,0,0.159,0.001,0,0,0.002,0,155.925,3511.082
-2143,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.495,0,0,0,0,0,0,0,0.151,0.001,0,0,0.002,0,155.925,3511.082
-2144,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.479,0,0,0,0,0,0,0,0.143,0.001,0,0,0.002,0,155.925,3511.082
-2145,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.463,0,0,0,0,0,0,0,0.136,0.001,0,0,0.001,0,155.925,3511.082
-2146,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.448,0,0,0,0,0,0,0,0.129,0.001,0,0,0.001,0,155.925,3511.082
-2147,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.433,0,0,0,0,0,0,0,0.123,0.001,0,0,0.001,0,155.925,3511.082
-2148,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.419,0,0,0,0,0,0,0,0.117,0.001,0,0,0.001,0,155.925,3511.082
-2149,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.405,0,0,0,0,0,0,0,0.111,0.001,0,0,0.001,0,155.925,3511.082
-2150,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.392,0,0,0,0,0,0,0,0.105,0,0,0,0.001,0,155.925,3511.082
-2151,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.379,0,0,0,0,0,0,0,0.1,0,0,0,0.001,0,155.925,3511.082
-2152,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.366,0,0,0,0,0,0,0,0.095,0,0,0,0.001,0,155.925,3511.082
-2153,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.354,0,0,0,0,0,0,0,0.09,0,0,0,0.001,0,155.925,3511.082
-2154,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.342,0,0,0,0,0,0,0,0.086,0,0,0,0.001,0,155.925,3511.082
-2155,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.331,0,0,0,0,0,0,0,0.081,0,0,0,0.001,0,155.925,3511.082
-2156,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.32,0,0,0,0,0,0,0,0.077,0,0,0,0.001,0,155.925,3511.082
-2157,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.31,0,0,0,0,0,0,0,0.073,0,0,0,0.001,0,155.925,3511.082
-2158,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.299,0,0,0,0,0,0,0,0.07,0,0,0,0.001,0,155.925,3511.082
-2159,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.29,0,0,0,0,0,0,0,0.066,0,0,0,0.001,0,155.925,3511.082
-2160,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.28,0,0,0,0,0,0,0,0.063,0,0,0,0.001,0,155.925,3511.082
-2161,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.271,0,0,0,0,0,0,0,0.06,0,0,0,0.001,0,155.925,3511.082
-2162,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.262,0,0,0,0,0,0,0,0.057,0,0,0,0.001,0,155.925,3511.082
-2163,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.253,0,0,0,0,0,0,0,0.054,0,0,0,0.001,0,155.925,3511.082
-2164,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.245,0,0,0,0,0,0,0,0.051,0,0,0,0.001,0,155.925,3511.082
-2165,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.237,0,0,0,0,0,0,0,0.049,0,0,0,0.001,0,155.925,3511.082
-2166,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.229,0,0,0,0,0,0,0,0.046,0,0,0,0.001,0,155.925,3511.082
-2167,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.221,0,0,0,0,0,0,0,0.044,0,0,0,0,0,155.925,3511.082
-2168,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.214,0,0,0,0,0,0,0,0.042,0,0,0,0,0,155.925,3511.082
-2169,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.207,0,0,0,0,0,0,0,0.04,0,0,0,0,0,155.925,3511.082
-2170,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.2,0,0,0,0,0,0,0,0.038,0,0,0,0,0,155.925,3511.082
-2171,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.194,0,0,0,0,0,0,0,0.036,0,0,0,0,0,155.925,3511.082
-2172,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.187,0,0,0,0,0,0,0,0.034,0,0,0,0,0,155.925,3511.082
-2173,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.181,0,0,0,0,0,0,0,0.032,0,0,0,0,0,155.925,3511.082
-2174,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.175,0,0,0,0,0,0,0,0.031,0,0,0,0,0,155.925,3511.082
-2175,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.169,0,0,0,0,0,0,0,0.029,0,0,0,0,0,155.925,3511.082
-2176,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.164,0,0,0,0,0,0,0,0.028,0,0,0,0,0,155.925,3511.082
-2177,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.158,0,0,0,0,0,0,0,0.026,0,0,0,0,0,155.925,3511.082
-2178,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.153,0,0,0,0,0,0,0,0.025,0,0,0,0,0,155.925,3511.082
-2179,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.148,0,0,0,0,0,0,0,0.024,0,0,0,0,0,155.925,3511.082
-2180,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.143,0,0,0,0,0,0,0,0.023,0,0,0,0,0,155.925,3511.082
-2181,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.138,0,0,0,0,0,0,0,0.021,0,0,0,0,0,155.925,3511.082
-2182,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.134,0,0,0,0,0,0,0,0.02,0,0,0,0,0,155.925,3511.082
-2183,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.129,0,0,0,0,0,0,0,0.019,0,0,0,0,0,155.925,3511.082
-2184,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.125,0,0,0,0,0,0,0,0.018,0,0,0,0,0,155.925,3511.082
-2185,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.121,0,0,0,0,0,0,0,0.017,0,0,0,0,0,155.925,3511.082
-2186,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.117,0,0,0,0,0,0,0,0.017,0,0,0,0,0,155.925,3511.082
-2187,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.113,0,0,0,0,0,0,0,0.016,0,0,0,0,0,155.925,3511.082
-2188,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.109,0,0,0,0,0,0,0,0.015,0,0,0,0,0,155.925,3511.082
-2189,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.106,0,0,0,0,0,0,0,0.014,0,0,0,0,0,155.925,3511.082
-2190,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.102,0,0,0,0,0,0,0,0.014,0,0,0,0,0,155.925,3511.082
-2191,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.099,0,0,0,0,0,0,0,0.013,0,0,0,0,0,155.925,3511.082
-2192,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.096,0,0,0,0,0,0,0,0.012,0,0,0,0,0,155.925,3511.082
-2193,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.093,0,0,0,0,0,0,0,0.012,0,0,0,0,0,155.925,3511.082
-2194,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.089,0,0,0,0,0,0,0,0.011,0,0,0,0,0,155.925,3511.082
-2195,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.087,0,0,0,0,0,0,0,0.01,0,0,0,0,0,155.925,3511.082
-2196,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.084,0,0,0,0,0,0,0,0.01,0,0,0,0,0,155.925,3511.082
-2197,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.081,0,0,0,0,0,0,0,0.009,0,0,0,0,0,155.925,3511.082
-2198,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.078,0,0,0,0,0,0,0,0.009,0,0,0,0,0,155.925,3511.082
-2199,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.076,0,0,0,0,0,0,0,0.009,0,0,0,0,0,155.925,3511.082
-2200,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.073,0,0,0,0,0,0,0,0.008,0,0,0,0,0,155.925,3511.082
-2201,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.071,0,0,0,0,0,0,0,0.008,0,0,0,0,0,155.925,3511.082
-2202,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.068,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082
-2203,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.066,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082
-2204,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.064,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082
-2205,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.062,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082
-2206,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.06,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082
-2207,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.058,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082
-2208,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.056,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082
-2209,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.054,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082
-2210,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.052,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082
-2211,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.051,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082
-2212,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.049,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082
-2213,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.047,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082
-2214,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.046,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082
-2215,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.044,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082
-2216,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.043,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082
-2217,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.041,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082
-2218,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.04,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082
-2219,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.039,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082
-2220,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.037,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082
-2221,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.036,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082
-2222,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.035,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082
-2223,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.034,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2224,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.033,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2225,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.032,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2226,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.031,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2227,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.03,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2228,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.029,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2229,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.028,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2230,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.027,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2231,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.026,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2232,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.025,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2233,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.024,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2234,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.023,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2235,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.023,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2236,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.022,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2237,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.021,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2238,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.02,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2239,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.02,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2240,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.019,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2241,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2242,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2243,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2244,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2245,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2246,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2247,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2248,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2249,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.014,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2250,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.014,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2251,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.013,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2252,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.013,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2253,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.012,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2254,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.012,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2255,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.012,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2256,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.011,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2257,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.011,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2258,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2259,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2260,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2261,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2262,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2263,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2264,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2265,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.008,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2266,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.008,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2267,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.008,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2268,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2269,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2270,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2271,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2272,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2273,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2274,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2275,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2276,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2277,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2278,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2279,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2280,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2281,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2282,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2283,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2284,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2285,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2286,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2287,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2288,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2289,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2290,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2291,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2292,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2293,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2294,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2295,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2296,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2297,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2298,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2299,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2300,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2301,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2302,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2303,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2304,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2305,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2306,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2307,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2308,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2309,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2310,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2311,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2312,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2313,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2314,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2315,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2316,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2317,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2318,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2319,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2320,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2321,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2322,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2323,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2324,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2325,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2326,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2327,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2328,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2329,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2330,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2331,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2332,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2333,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2334,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2335,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2336,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2337,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2338,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2339,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2340,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2341,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2342,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2343,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2344,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2345,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2346,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2347,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2348,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2349,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2350,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2351,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2352,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2353,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2354,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2355,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2356,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2357,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2358,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2359,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2360,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2361,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2362,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2363,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2364,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2365,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2366,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2367,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2368,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2369,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2370,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2371,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2372,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2373,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2374,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2375,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2376,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2377,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2378,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2379,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2380,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2381,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2382,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2383,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2384,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2385,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2386,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2387,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2388,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2389,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2390,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2391,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2392,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2393,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2394,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2395,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2396,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2397,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2398,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2399,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2400,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2401,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2402,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2403,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2404,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2405,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2406,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2407,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2408,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2409,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2410,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2411,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2412,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2413,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2414,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2415,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2416,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2417,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2418,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2419,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2420,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2421,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2422,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2423,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2424,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2425,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2426,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2427,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2428,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2429,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2430,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2431,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2432,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2433,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2434,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2435,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2436,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2437,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2438,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2439,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2440,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2441,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2442,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2443,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2444,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2445,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2446,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2447,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2448,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2449,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2450,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2451,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2452,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2453,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2454,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2455,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2456,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2457,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2458,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2459,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2460,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2461,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2462,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2463,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2464,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2465,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2466,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2467,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2468,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2469,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2470,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2471,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2472,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2473,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2474,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2475,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2476,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2477,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2478,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2479,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2480,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2481,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2482,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2483,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2484,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2485,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2486,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2487,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2488,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2489,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2490,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2491,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2492,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2493,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2494,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2495,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2496,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2497,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2498,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2499,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
-2500,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082
diff --git a/inst/shinyApp/www/input/emissions/RCP45_custom_template.csv b/inst/shinyApp/www/input/emissions/RCP45_custom_template.csv
deleted file mode 100644
index cb11081..0000000
--- a/inst/shinyApp/www/input/emissions/RCP45_custom_template.csv
+++ /dev/null
@@ -1,740 +0,0 @@
-; RCP4.5 Emissions, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,GgS/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr
-Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,CF4_emissions,C2F6_emissions,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions
-1765,0.003,0,0,0,0,0,0,0,0,0,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1766,0.003,0.005338296,1.9632619,0.005191085,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1767,0.003,0.010676593,2.4364481,0.010116813,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1768,0.003,0.016014889,2.911105,0.015042803,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1769,0.003,0.021353185,3.3872782,0.019969063,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1770,0.003,0.026691482,3.8650146,0.024895601,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1771,0.004,0.032029778,4.3443625,0.029822427,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1772,0.004,0.037368074,4.8253718,0.034749548,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1773,0.004,0.042706371,5.3080938,0.039676975,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1774,0.004,0.048044667,5.7925816,0.044604715,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1775,0.004,0.053382963,6.2788896,0.04953278,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1776,0.004,0.058721259,6.7670743,0.05446118,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1777,0.004,0.064059556,7.2571937,0.059389923,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1778,0.004,0.069397852,7.7493076,0.064319022,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1779,0.004,0.074736148,8.2434776,0.069248487,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1780,0.004,0.080074445,8.7397674,0.07417833,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1781,0.005,0.085412741,9.2382426,0.079108562,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1782,0.005,0.090751037,9.7389706,0.084039195,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1783,0.005,0.096089334,10.242021,0.088970241,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1784,0.005,0.10142763,10.747466,0.093901714,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1785,0.005,0.10676593,11.25538,0.098833627,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1786,0.005,0.11210422,11.765839,0.10376599,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1787,0.005,0.11744252,12.278921,0.10869883,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1788,0.005,0.12278082,12.794707,0.11363214,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1789,0.005,0.12811911,13.313282,0.11856595,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1790,0.005,0.13345741,13.834732,0.12350027,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1791,0.006,0.1387957,14.359145,0.12843512,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1792,0.006,0.144134,14.886613,0.13337052,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1793,0.006,0.1494723,15.417231,0.13830648,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1794,0.006,0.15481059,15.951096,0.14324301,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1795,0.006,0.16014889,16.488308,0.14818014,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1796,0.006,0.16548719,17.028971,0.15311788,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1797,0.007,0.17082548,17.573192,0.15805626,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1798,0.007,0.17616378,18.121081,0.16299529,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1799,0.007,0.18150207,18.672751,0.167935,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1800,0.008,0.18684037,19.228319,0.1728754,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1801,0.008,0.19217867,19.787906,0.17781651,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1802,0.01,0.19751696,20.351635,0.18275836,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1803,0.009,0.20285526,20.919636,0.18770098,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1804,0.009,0.20819356,21.49204,0.19264437,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1805,0.009,0.21353185,22.068984,0.19758858,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1806,0.01,0.21887015,22.650607,0.20253362,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1807,0.01,0.22420845,23.237055,0.20747952,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1808,0.01,0.22954674,23.828476,0.2124263,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1809,0.01,0.23488504,24.425025,0.217374,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1810,0.01,0.24022333,25.02686,0.22232264,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1811,0.011,0.24556163,25.634145,0.22727225,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1812,0.011,0.25089993,26.247048,0.23222285,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1813,0.011,0.25623822,26.865743,0.2371745,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1814,0.011,0.26157652,27.490408,0.2421272,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1815,0.012,0.26691482,28.12123,0.247081,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1816,0.013,0.27225311,28.758398,0.25203593,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1817,0.014,0.27759141,29.402108,0.25699203,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1818,0.014,0.2829297,30.052563,0.26194932,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1819,0.014,0.288268,30.709971,0.26690786,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1820,0.014,0.2936063,31.374548,0.27186767,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1821,0.014,0.29894459,32.046514,0.2768288,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1822,0.015,0.30428289,32.7261,0.28179128,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1823,0.016,0.30962119,33.413539,0.28675516,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1824,0.016,0.31495948,34.109076,0.29172049,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1825,0.017,0.32029778,34.81296,0.2966873,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1826,0.017,0.32563608,35.52545,0.30165564,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1827,0.018,0.33097437,36.246813,0.30662557,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1828,0.018,0.33631267,36.977321,0.31159712,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1829,0.018,0.34165096,37.717259,0.31657035,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1830,0.024,0.34698926,38.466917,0.32154532,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1831,0.023,0.35232756,39.226597,0.32652206,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1832,0.023,0.35766585,39.996609,0.33150065,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1833,0.024,0.36300415,40.777271,0.33648114,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1834,0.024,0.36834245,41.568914,0.34146358,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1835,0.025,0.37368074,42.371876,0.34644803,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1836,0.029,0.37901904,43.186509,0.35143456,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1837,0.029,0.38435733,44.013173,0.35642324,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1838,0.03,0.38969563,44.85224,0.36141413,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1839,0.031,0.39503393,45.704093,0.36640729,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1840,0.032999999,0.40037222,46.569129,0.3714028,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1841,0.033999999,0.40571052,47.447755,0.37640073,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1842,0.035999999,0.41104882,48.34039,0.38140115,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1843,0.036999999,0.41638711,49.247469,0.38640415,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1844,0.038999999,0.42172541,50.169439,0.3914098,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1845,0.042999999,0.42706371,51.106759,0.39641818,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1846,0.042999999,0.432402,52.059904,0.40142938,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1847,0.045999999,0.4377403,53.029365,0.40644349,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1848,0.046999999,0.44307859,54.015644,0.41146059,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1849,0.049999999,0.44841689,55.019264,0.41648078,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1850,0.053999999,0.45375519,56.040759,0.42150415,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,157.267,3100.211
-1851,0.053999999,0.44678569,56.46132,0.42740096,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,157.267,3100.211
-1852,0.056999999,0.49862282,56.88188,0.46466062,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,157.267,3100.211
-1853,0.058999999,0.49735449,57.302441,0.46477417,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,157.267,3100.211
-1854,0.068999999,0.49581708,57.723001,0.46443647,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,157.267,3100.211
-1855,0.070999999,0.49367925,58.143562,0.46327909,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,157.267,3100.211
-1856,0.075999999,0.49893488,58.564122,0.46729312,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,157.267,3100.211
-1857,0.076999999,0.504232,58.984683,0.47126447,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,157.267,3100.211
-1858,0.077999999,0.50923298,59.405243,0.47503119,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,157.267,3100.211
-1859,0.082999999,0.51425389,59.825804,0.47876627,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,157.267,3100.211
-1860,0.090999999,0.51896689,60.246364,0.48257672,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,157.267,3100.211
-1861,0.094999998,0.5282236,59.614468,0.50499476,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,157.267,3100.211
-1862,0.096999998,0.47371663,58.982573,0.47111281,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,157.267,3100.211
-1863,0.104,0.47374912,58.350677,0.47444935,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,157.267,3100.211
-1864,0.112,0.47413825,57.718781,0.47785801,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,157.267,3100.211
-1865,0.119,0.47479536,57.086885,0.48144966,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,157.267,3100.211
-1866,0.122,0.47491218,56.45499,0.48420454,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,157.267,3100.211
-1867,0.13022269,0.47338353,55.823094,0.48472337,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,157.267,3100.211
-1868,0.13525196,0.47198274,55.191198,0.48595323,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,157.267,3100.211
-1869,0.14228123,0.47048522,54.559303,0.48686155,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,157.267,3100.211
-1870,0.14731051,0.46933399,53.927407,0.48774355,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,157.267,3100.211
-1871,0.15633978,0.48732546,56.683869,0.58501628,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,157.267,3100.211
-1872,0.17336905,0.56696435,59.440331,0.66673981,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,157.267,3100.211
-1873,0.18439832,0.57690133,62.196793,0.69637076,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,157.267,3100.211
-1874,0.1744276,0.58328394,64.953255,0.7087503,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,157.267,3100.211
-1875,0.18845687,0.5899696,67.709717,0.72034342,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,157.267,3100.211
-1876,0.19148614,0.59639187,70.46618,0.74524338,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,157.267,3100.211
-1877,0.19451541,0.60262312,73.222642,0.75633197,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,157.267,3100.211
-1878,0.196,0.6090507,75.979104,0.7660459,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,157.267,3100.211
-1879,0.21,0.61534752,78.735566,0.77491118,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,157.267,3100.211
-1880,0.236,0.62124317,81.492028,0.78412129,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,157.267,3100.211
-1881,0.243,0.64887292,84.359461,0.81157848,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,157.267,3100.211
-1882,0.256,0.60466403,87.226893,0.78526034,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,157.267,3100.211
-1883,0.272,0.60851762,90.094326,0.79255607,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,157.267,3100.211
-1884,0.275,0.61212775,92.961758,0.7987505,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,157.267,3100.211
-1885,0.27699999,0.61523611,95.829191,0.80453383,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,157.267,3100.211
-1886,0.28099999,0.61714413,98.696624,0.82619361,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,157.267,3100.211
-1887,0.295,0.61616314,101.56406,0.83219647,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,157.267,3100.211
-1888,0.32699999,0.61473356,104.43149,0.83705812,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,157.267,3100.211
-1889,0.32699999,0.6132002,107.29892,0.84143987,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,157.267,3100.211
-1890,0.35599999,0.61175412,110.16635,0.84552548,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,157.267,3100.211
-1891,0.37199999,0.61024855,111.52362,0.85098169,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,157.267,3100.211
-1892,0.37399999,0.62319119,112.88089,0.85741997,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,157.267,3100.211
-1893,0.36999999,0.62440331,114.23816,0.86475824,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,157.267,3100.211
-1894,0.38299999,0.64036719,115.59543,0.87294487,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,157.267,3100.211
-1895,0.40599999,0.64441851,116.9527,0.88188195,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,157.267,3100.211
-1896,0.41899999,0.6462784,118.30997,0.89141802,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,157.267,3100.211
-1897,0.43999999,0.64956412,119.66724,0.90140157,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,157.267,3100.211
-1898,0.46499999,0.65100098,121.02451,0.91168111,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,157.267,3100.211
-1899,0.50699999,0.65220446,122.38178,0.92210515,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,157.267,3100.211
-1900,0.53399999,0.65320628,123.73905,0.9325222,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,157.267,3100.211
-1901,0.55199999,0.70294318,124.8415,0.9446669,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,157.267,3100.211
-1902,0.56599999,0.70297364,125.94396,0.95993065,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,157.267,3100.211
-1903,0.61699999,0.72667096,127.04642,0.97764708,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,157.267,3100.211
-1904,0.62399999,0.74829324,128.14887,0.99722904,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,157.267,3100.211
-1905,0.66299999,0.76981521,129.25133,1.0181293,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,157.267,3100.211
-1906,0.70699999,0.79653384,130.35378,1.0397413,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,157.267,3100.211
-1907,0.78399999,0.80376274,131.45624,1.0614586,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,157.267,3100.211
-1908,0.74999999,0.81141278,132.5587,1.0826746,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,157.267,3100.211
-1909,0.78499999,0.81737807,133.66115,1.1027829,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,157.267,3100.211
-1910,0.81899999,0.82198169,134.76361,1.121177,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,157.267,3100.211
-1911,0.83599999,0.77889405,135.96943,1.1389722,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,157.267,3100.211
-1912,0.87899999,0.74784844,137.17525,1.1575596,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,157.267,3100.211
-1913,0.94299999,0.72297977,138.38107,1.1767464,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,157.267,3100.211
-1914,0.84999999,0.71479152,139.5869,1.1962611,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,157.267,3100.211
-1915,0.83799999,0.70574964,140.79272,1.2158443,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,157.267,3100.211
-1916,0.90099999,0.70811648,141.99854,1.2353217,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,157.267,3100.211
-1917,0.95499999,0.7111963,143.20436,1.254519,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,157.267,3100.211
-1918,0.93599999,0.71430427,144.41019,1.2732618,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,157.267,3100.211
-1919,0.80599999,0.71965435,145.61601,1.2913759,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,157.267,3100.211
-1920,0.93199999,0.72128338,146.82183,1.3086869,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,157.267,3100.211
-1921,0.80299999,0.75741661,147.86155,1.3257924,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,157.267,3100.211
-1922,0.84499999,0.7479409,148.90128,1.343275,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,157.267,3100.211
-1923,0.96999999,0.75328819,149.941,1.3609385,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,157.267,3100.211
-1924,0.96299999,0.75686059,150.98072,1.3796194,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,157.267,3100.211
-1925,0.97499999,0.75808855,152.02045,1.3998974,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,157.267,3100.211
-1926,0.98299999,0.76148327,153.06017,1.4211909,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,157.267,3100.211
-1927,1.062,0.79718283,154.09989,1.4429184,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,157.267,3100.211
-1928,1.065,0.79967141,155.13962,1.4644982,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,157.267,3100.211
-1929,1.145,0.82422601,156.17934,1.4853488,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,157.267,3100.211
-1930,1.053,0.89587975,157.21906,1.5048887,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,1.6637375,0.23563239,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,157.267,3100.211
-1931,0.93999999,0.90334082,158.34545,1.5226236,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,1.7507764,0.24803412,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,157.267,3100.211
-1932,0.84699999,0.81222597,159.47183,1.5385172,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,1.8423953,0.26108852,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,157.267,3100.211
-1933,0.89299999,0.80858849,160.59821,1.5526746,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,1.9388369,0.27483004,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,157.267,3100.211
-1934,0.97299999,0.79686256,161.7246,1.5653127,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,2.0403528,0.28929476,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,157.267,3100.211
-1935,1.027,0.79471575,162.85098,1.5771213,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,2.1472124,0.30452082,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,157.267,3100.211
-1936,1.13,0.80129993,163.97736,1.5889151,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,2.2596977,0.32054821,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,157.267,3100.211
-1937,1.209,0.77969902,165.10375,1.6015088,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,2.3781004,0.33741917,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,157.267,3100.211
-1938,1.142,0.78188222,166.23013,1.615717,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,2.5027381,0.35517808,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,157.267,3100.211
-1939,1.192,0.77944376,167.35651,1.6323545,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,2.6339328,0.37387169,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,157.267,3100.211
-1940,1.299,0.76683237,168.4829,1.6522358,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,2.7720335,0.39354912,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,157.267,3100.211
-1941,1.334,0.75036458,170.03046,1.7002044,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,2.9174066,0.41426223,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,157.267,3100.211
-1942,1.342,0.7690497,171.57803,1.7938613,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,3.0704314,0.39468287,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,157.267,3100.211
-1943,1.391,0.7637656,173.12559,1.9231582,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,3.2315097,0.37832187,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,157.267,3100.211
-1944,1.383,0.76839864,174.67315,2.0866797,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,3.4010636,0.3640764,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,157.267,3100.211
-1945,1.16,0.76914739,176.22072,2.280402,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,3.579544,0.35194679,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,157.267,3100.211
-1946,1.238,0.84214892,177.76828,2.4903635,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,3.7674167,0.34193311,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,157.267,3100.211
-1947,1.392,0.87017994,179.31584,2.7026031,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,3.9651774,0.33403572,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,157.267,3100.211
-1948,1.469,0.87513044,180.86341,2.9031595,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,4.1733472,0.32825472,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,157.267,3100.211
-1949,1.419,0.88212641,182.41097,3.0780722,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,4.3924702,0.32459037,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,157.267,3100.211
-1950,1.63,0.89233465,183.95853,3.2133815,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,4.62313,0.32304286,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,157.267,3100.211
-1951,1.768,1.0885201,189.11003,3.3186021,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,4.865916,0.32361242,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,157.267,3100.211
-1952,1.796,1.1096378,194.26153,3.4111061,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,5.121479,0.32629927,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,157.927,3117.785
-1953,1.841,1.1045171,199.41303,3.4887221,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,5.3904959,0.3311036,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,158.604,3137.148
-1954,1.865,1.1521416,204.56453,3.5543489,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,5.6736692,0.33802563,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,159.3,3158.216
-1955,2.043,1.1911855,209.71603,3.614111,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,5.9717491,0.34706557,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,160.014,3180.749
-1956,2.178,1.2446883,214.86753,3.6706801,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,6.2855162,0.35822365,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,160.748,3204.498
-1957,2.27,1.2718718,220.01902,3.7267318,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,6.6157969,0.37150001,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,161.502,3229.071
-1958,2.33,1.3195817,225.17052,3.7849451,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,6.9634615,0.38689499,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,162.277,3254.039
-1959,2.462,1.2035957,230.32202,3.8480013,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,7.3294266,0.40440867,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,163.073,3278.967
-1960,2.577,1.1922833,235.47352,3.9185827,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,7.7146508,0.42404135,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,163.892,3303.389
-1961,2.594,1.2443218,238.52217,4.0240052,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,8.1201607,0.4457932,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,164.735,3326.864
-1962,2.7,1.2355717,241.57083,4.1836477,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,8.5470132,0.46966444,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,165.601,3349.069
-1963,2.848,1.2442947,244.61948,4.3883117,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,14.984956,0.49565531,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.007,166.493,3369.713
-1964,3.008,1.2515879,247.66813,4.6374693,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,13.488099,0.52376596,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.003,0.014,167.41,3388.628
-1965,3.145,1.2642558,250.71679,4.8968181,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,13.488369,0.55399667,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.028,168.355,3405.698
-1966,3.305,1.2936968,253.76544,5.195583,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,13.488639,0.58634761,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.048,169.328,3420.923
-1967,3.411,1.2976254,256.81409,5.457478,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,13.488909,0.62081899,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.075,170.329,3434.335
-1968,3.588,1.2352028,259.86274,5.619744,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,13.48918,0.65741104,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.016,0.109,171.36,3446.065
-1969,3.8,1.2383879,262.9114,5.784831,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,13.489449,0.69612398,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.024,0.15,172.423,3456.224
-1970,4.076,1.1971129,265.96005,5.9368752,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,11.992564,0.73695798,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.043,0.197,173.518,3464.95
-1971,4.231,1.0708913,270.02505,5.6049759,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,13.489967,0.7799133,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.1,0.252,174.646,3472.409
-1972,4.399,1.0470621,274.09004,5.9181309,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,13.490244,0.82499011,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.17,0.313,175.809,3478.741
-1973,4.6349999,1.0330987,278.15504,6.0449043,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,13.490523,0.87218868,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.277,0.391,177.007,3484.114
-1974,4.644,1.0387371,282.22003,5.9406002,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,11.993645,0.9215092,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.372,0.468,178.243,3488.632
-1975,4.615,1.0315876,286.28503,6.1409693,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,13.49105,0.97295172,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.524,0.544,179.517,3492.425
-1976,4.883,1.0906077,290.35002,6.3042588,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,13.491328,1.0265167,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.783,0.621,180.83,3495.619
-1977,5.029,1.0939874,294.41502,6.534405,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,11.994452,1.0822044,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,1.006,0.697,182.185,3498.281
-1978,5.105,1.09037,298.48002,6.6193729,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,13.491857,1.1400146,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,1.253,0.774,183.581,3500.505
-1979,5.387,1.0647127,302.54501,7.007773,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,11.994981,1.1999481,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,1.548,0.85,185.022,3502.36
-1980,5.332,1.0252096,306.61001,7.0613923,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,13.492387,1.2620043,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,1.805,0.927,186.506,3503.915
-1981,5.168,1.0448621,310.01251,6.8417522,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,11.995499,1.3261846,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,2.139,1.003,188.038,3505.193
-1982,5.127,1.1904055,313.415,7.1189858,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,13.492893,1.392488,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,2.645,1.105,189.616,3506.255
-1983,5.11,1.2255201,316.8175,7.2168971,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,11.996004,1.4609153,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,2.98,1.183,191.243,3507.154
-1984,5.29,1.2600833,320.22,7.0481314,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,11.996242,1.5314669,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,3.475,1.262,192.92,3507.882
-1985,5.444,1.2753449,323.6225,7.0169243,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,11.99648,1.6041426,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,3.997,1.355,194.648,3508.496
-1986,5.61,1.2872023,327.025,7.0704917,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,13.493874,1.678943,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,4.579,1.434,196.427,3508.999
-1987,5.753,1.2940086,330.42749,7.4616728,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,11.996986,1.7558675,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,5.109,1.504,198.259,3509.425
-1988,5.964,1.3167248,333.82999,7.2025077,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,11.997224,1.8349176,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,5.696,1.728,200.146,3509.774
-1989,6.089,1.3236436,337.23249,7.3310397,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,11.997462,1.9160924,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,5.482,1.73,202.087,3510.061
-1990,6.144,1.3194833,340.63499,7.5856812,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,11.997683,2.0735678,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,5.119,1.73,204.082,3510.299
-1991,6.235,1.3809799,336.59218,7.4023631,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,11.997905,2.3729101,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,4.094,1.735,206.133,3510.501
-1992,6.118,1.3035304,332.54937,7.7989323,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,11.998111,2.3731469,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,2.74,1.715,208.24,3510.656
-1993,6.124,1.2981006,328.50656,7.3131034,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,11.998354,2.3733837,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,3.344,1.7,210.402,3510.801
-1994,6.242,1.2895956,324.46375,7.5072841,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,11.998587,2.3736205,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,4.75,1.68,212.619,3510.907
-1995,6.372,1.2750104,320.42094,7.6191035,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,10.501674,2.3738573,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,3.991,1.3,200.199,3511.005
-1996,6.51,1.2511025,316.37814,7.6520638,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,11.999071,2.3740941,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,2.691,0.85,201.834,3511.082
-1997,6.619,1.2181397,312.33533,7.9097526,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,11.999322,2.3743309,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,2.594,0.7,207.696,3511.082
-1998,6.588,1.2148431,308.29252,7.8957263,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,11.999575,2.3745677,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,2.491,0.71,206.946,3511.082
-1999,6.569,1.1827892,304.24971,7.5269849,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,10.502692,2.3748045,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,2.39,0.631,195.938,3511.082
-2000,6.735,1.1488,300.2069,7.4566,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,12.0001,2.3749,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,2.295,0.562,186.206,3511.082
-2001,6.8959,1.132,303.4092,7.503,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,11.925,2.4345,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,2.209,0.5,181.525,3511.082
-2002,6.949,1.2317,306.5788,7.5487,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,11.8481,2.4915,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,2.131,0.445,181.887,3511.082
-2003,7.286,1.2257,309.7164,7.5942,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,11.7693,2.5463,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,2.057,0.396,177.539,3511.082
-2004,7.6719,1.2429,312.824,7.6394,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,11.6885,2.599,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,1.987,0.353,174.26,3511.082
-2005,7.971,1.1955,315.9027,7.6841,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,11.6059,2.6494,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,1.92,0.314,168.841,3511.082
-2006,8.0985,1.1385,317.2396,7.721,56303.4,1057.0145,214.0518,38.5859,8.2245,35.9952,11.411,2.5813,10.5529,12.3831,3.8803,14.4509,121.0746,12.7893,5.1614,31.23,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,1.834,0.279,167.857,3511.082
-2007,8.226,1.0815,318.5722,7.7579,55887.3,1052.4683,212.6378,38.3772,8.1977,35.598,11.2139,2.5131,10.2947,13.7731,4.5246,15.1335,129.6223,13.1314,5.4292,35.5714,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,1.752,0.249,167.857,3511.082
-2008,8.3531333,1.0245333,319.8964,7.7946667,55471.1,1047.8519,211.21813,38.168667,8.1708667,35.199467,11.012133,2.4452667,10.037233,15.162767,5.1677,15.798,133.99193,13.4753,5.6901667,39.912933,6.286,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,1.675,0.221,167.857,3511.082
-2009,8.4802667,0.96756667,321.2206,7.8314333,55054.9,1043.2354,209.79847,37.960133,8.1440333,34.800933,10.810367,2.3774333,9.7797667,16.552433,5.8108,16.4625,138.36157,13.8192,5.9511333,44.254467,5.9707,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,1.601,0.197,167.857,3511.082
-2010,8.6074,0.9106,322.5448,7.8682,54638.7,1038.619,208.3788,37.7516,8.1172,34.4024,10.6086,2.3096,9.5223,17.9421,6.4539,17.127,142.7312,14.1631,6.2121,48.596,5.6554,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,1.521,0.175,167.857,3511.082
-2011,8.73381,0.85362,323.84112,7.90492,54222.14,1033.7724,206.94006,37.54386,8.09002,33.99919,10.3919,2.24289,8.68531,22.21208,6.53107,18.54246,147.40164,14.51343,5.65092,52.93749,5.34014,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,1.445,0.156,167.857,3511.082
-2012,8.86022,0.79664,325.13744,7.94164,53805.58,1028.9259,205.50132,37.33612,8.06284,33.59598,10.1752,2.17618,7.84832,26.48206,6.60824,19.95792,152.07208,14.86376,5.08974,57.27898,5.02488,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,1.373,0.139,167.857,3511.082
-2013,8.98663,0.73966,326.43376,7.97836,53389.02,1024.0793,204.06258,37.12838,8.03566,33.19277,9.9585,2.10947,7.01133,30.75204,6.68541,21.37338,156.74252,15.21409,4.52856,61.62047,4.70962,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,1.304,0.124,167.857,3511.082
-2014,9.11304,0.68268,327.73008,8.01508,52972.46,1019.2328,202.62384,36.92064,8.00848,32.78956,9.7418,2.04276,6.17434,35.02202,6.76258,22.78884,161.41296,15.56442,3.96738,65.96196,4.39436,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,1.239,0.11,167.857,3511.082
-2015,9.23945,0.6257,329.0264,8.0518,52555.9,1014.3863,201.1851,36.7129,7.9813,32.38635,9.5251,1.97605,5.33735,39.292,6.83975,24.2043,166.0834,15.91475,3.4062,70.30345,4.0791,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,1.177,0.098,155.925,3511.082
-2016,9.36586,0.56872,330.32272,8.08852,52139.34,1009.5397,199.74636,36.50516,7.95412,31.98314,9.3084,1.90934,4.50036,43.56198,6.91692,25.61976,170.75384,16.26508,2.84502,74.64494,3.76384,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,1.118,0.087,155.925,3511.082
-2017,9.49227,0.51174,331.61904,8.12524,51722.78,1004.6932,198.30762,36.29742,7.92694,31.57993,9.0917,1.84263,3.66337,47.83196,6.99409,27.03522,175.42428,16.61541,2.28384,78.98643,3.44858,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,1.062,0.078,155.925,3511.082
-2018,9.61868,0.45476,332.91536,8.16196,51306.22,999.8466,196.86888,36.08968,7.89976,31.17672,8.875,1.77592,2.82638,52.10194,7.07126,28.45068,180.09472,16.96574,1.72266,83.32792,3.13332,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,1.009,0.069,155.925,3511.082
-2019,9.74509,0.39778,334.21168,8.19868,50889.66,995.00005,195.43014,35.88194,7.87258,30.77351,8.6583,1.70921,1.98939,56.37192,7.14843,29.86614,184.76516,17.31607,1.16148,87.66941,2.81806,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0.959,0.061,155.925,3511.082
-2020,9.8715,0.3408,335.508,8.2354,50473.1,990.1535,193.9914,35.6742,7.8454,30.3703,8.4416,1.6425,1.1524,60.6419,7.2256,31.2816,189.4356,17.6664,0.6003,92.0109,2.5028,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0.911,0.055,155.925,3511.082
-2021,9.97968,0.32835,335.85701,8.26904,49712.27,990.11353,194.87285,35.58304,7.79487,30.2411,8.442,1.65926,1.1063,61.78125,7.31559,31.32967,191.31961,17.94569,0.56612,92.38631,2.54361,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0.865,0.049,155.925,3511.082
-2022,10.08786,0.3159,336.20602,8.30268,48951.44,990.07356,195.7543,35.49188,7.74434,30.1119,8.4424,1.67602,1.0602,62.9206,7.40558,31.37774,193.20362,18.22498,0.53194,92.76172,2.58442,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0.822,0.043,155.925,3511.082
-2023,10.19604,0.30345,336.55503,8.33632,48190.61,990.03359,196.63575,35.40072,7.69381,29.9827,8.4428,1.69278,1.0141,64.05995,7.49557,31.42581,195.08763,18.50427,0.49776,93.13713,2.62523,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0.781,0.039,155.925,3511.082
-2024,10.30422,0.291,336.90404,8.36996,47429.78,989.99362,197.5172,35.30956,7.64328,29.8535,8.4432,1.70954,0.968,65.1993,7.58556,31.47388,196.97164,18.78356,0.46358,93.51254,2.66604,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0.742,0.034,155.925,3511.082
-2025,10.4124,0.27855,337.25305,8.4036,46668.95,989.95365,198.39865,35.2184,7.59275,29.7243,8.4436,1.7263,0.9219,66.33865,7.67555,31.52195,198.85565,19.06285,0.4294,93.88795,2.70685,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0.705,0.031,155.925,3511.082
-2026,10.52058,0.2661,337.60206,8.43724,45908.12,989.91368,199.2801,35.12724,7.54222,29.5951,8.444,1.74306,0.8758,67.478,7.76554,31.57002,200.73966,19.34214,0.39522,94.26336,2.74766,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0.669,0.027,155.925,3511.082
-2027,10.62876,0.25365,337.95107,8.47088,45147.29,989.87371,200.16155,35.03608,7.49169,29.4659,8.4444,1.75982,0.8297,68.61735,7.85553,31.61809,202.62367,19.62143,0.36104,94.63877,2.78847,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0.636,0.024,155.925,3511.082
-2028,10.73694,0.2412,338.30008,8.50452,44386.46,989.83374,201.043,34.94492,7.44116,29.3367,8.4448,1.77658,0.7836,69.7567,7.94552,31.66616,204.50768,19.90072,0.32686,95.01418,2.82928,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0.604,0.022,155.925,3511.082
-2029,10.84512,0.22875,338.64909,8.53816,43625.63,989.79377,201.92445,34.85376,7.39063,29.2075,8.4452,1.79334,0.7375,70.89605,8.03551,31.71423,206.39169,20.18001,0.29268,95.38959,2.87009,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0.574,0.019,155.925,3511.082
-2030,10.9533,0.2163,338.9981,8.5718,42864.8,989.7538,202.8059,34.7626,7.3401,29.0783,8.4456,1.8101,0.6914,72.0354,8.1255,31.7623,208.2757,20.4593,0.2585,95.765,2.9109,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0.545,0.017,155.925,3511.082
-2031,10.99177,0.21454,338.85573,8.58349,42038.72,985.80309,202.69076,34.54297,7.2846,28.95954,8.46737,1.8237,0.66362,72.90303,8.24943,31.72409,210.39103,20.74256,0.25838,95.88014,2.95352,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0.518,0.015,155.925,3511.082
-2032,11.03024,0.21278,338.71336,8.59518,41212.64,981.85238,202.57562,34.32334,7.2291,28.84078,8.48914,1.8373,0.63584,73.77066,8.37336,31.68588,212.50636,21.02582,0.25826,95.99528,2.99614,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0.492,0.013,155.925,3511.082
-2033,11.06871,0.21102,338.57099,8.60687,40386.56,977.90167,202.46048,34.10371,7.1736,28.72202,8.51091,1.8509,0.60806,74.63829,8.49729,31.64767,214.62169,21.30908,0.25814,96.11042,3.03876,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0.467,0.012,155.925,3511.082
-2034,11.10718,0.20926,338.42862,8.61856,39560.48,973.95096,202.34534,33.88408,7.1181,28.60326,8.53268,1.8645,0.58028,75.50592,8.62122,31.60946,216.73702,21.59234,0.25802,96.22556,3.08138,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0.444,0.011,155.925,3511.082
-2035,11.14565,0.2075,338.28625,8.63025,38734.4,970.00025,202.2302,33.66445,7.0626,28.4845,8.55445,1.8781,0.5525,76.37355,8.74515,31.57125,218.85235,21.8756,0.2579,96.3407,3.124,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0.422,0.01,155.925,3511.082
-2036,11.18412,0.20574,338.14388,8.64194,37908.32,966.04954,202.11506,33.44482,7.0071,28.36574,8.57622,1.8917,0.52472,77.24118,8.86908,31.53304,220.96768,22.15886,0.25778,96.45584,3.16662,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0.401,0.008,155.925,3511.082
-2037,11.22259,0.20398,338.00151,8.65363,37082.24,962.09883,201.99992,33.22519,6.9516,28.24698,8.59799,1.9053,0.49694,78.10881,8.99301,31.49483,223.08301,22.44212,0.25766,96.57098,3.20924,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0.381,0.008,155.925,3511.082
-2038,11.26106,0.20222,337.85914,8.66532,36256.16,958.14812,201.88478,33.00556,6.8961,28.12822,8.61976,1.9189,0.46916,78.97644,9.11694,31.45662,225.19834,22.72538,0.25754,96.68612,3.25186,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0.362,0.007,155.925,3511.082
-2039,11.29953,0.20046,337.71677,8.67701,35430.08,954.19741,201.76964,32.78593,6.8406,28.00946,8.64153,1.9325,0.44138,79.84407,9.24087,31.41841,227.31367,23.00864,0.25742,96.80126,3.29448,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0.344,0.006,155.925,3511.082
-2040,11.338,0.1987,337.5744,8.6887,34604,950.2467,201.6545,32.5663,6.7851,27.8907,8.6633,1.9461,0.4136,80.7117,9.3648,31.3802,229.429,23.2919,0.2573,96.9164,3.3371,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0.326,0.005,155.925,3511.082
-2041,11.30733,0.20369,336.95066,8.67866,33711.48,942.49931,200.55337,32.21797,6.72454,27.78233,8.71054,1.95661,0.39687,80.10127,9.53783,31.31317,231.78318,23.57453,0.24048,96.77125,3.38154,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0.31,0.005,155.925,3511.082
-2042,11.27666,0.20868,336.32692,8.66862,32818.96,934.75192,199.45224,31.86964,6.66398,27.67396,8.75778,1.96712,0.38014,79.49084,9.71086,31.24614,234.13736,23.85716,0.22366,96.6261,3.42598,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0.295,0.004,155.925,3511.082
-2043,11.24599,0.21367,335.70318,8.65858,31926.44,927.00453,198.35111,31.52131,6.60342,27.56559,8.80502,1.97763,0.36341,78.88041,9.88389,31.17911,236.49154,24.13979,0.20684,96.48095,3.47042,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0.28,0.004,155.925,3511.082
-2044,11.21532,0.21866,335.07944,8.64854,31033.92,919.25714,197.24998,31.17298,6.54286,27.45722,8.85226,1.98814,0.34668,78.26998,10.05692,31.11208,238.84572,24.42242,0.19002,96.3358,3.51486,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0.266,0.003,155.925,3511.082
-2045,11.18465,0.22365,334.4557,8.6385,30141.4,911.50975,196.14885,30.82465,6.4823,27.34885,8.8995,1.99865,0.32995,77.65955,10.22995,31.04505,241.1999,24.70505,0.1732,96.19065,3.5593,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0.253,0.003,155.925,3511.082
-2046,11.15398,0.22864,333.83196,8.62846,29248.88,903.76236,195.04772,30.47632,6.42174,27.24048,8.94674,2.00916,0.31322,77.04912,10.40298,30.97802,243.55408,24.98768,0.15638,96.0455,3.60374,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0.24,0.003,155.925,3511.082
-2047,11.12331,0.23363,333.20822,8.61842,28356.36,896.01497,193.94659,30.12799,6.36118,27.13211,8.99398,2.01967,0.29649,76.43869,10.57601,30.91099,245.90826,25.27031,0.13956,95.90035,3.64818,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0.228,0.002,155.925,3511.082
-2048,11.09264,0.23862,332.58448,8.60838,27463.84,888.26758,192.84546,29.77966,6.30062,27.02374,9.04122,2.03018,0.27976,75.82826,10.74904,30.84396,248.26244,25.55294,0.12274,95.7552,3.69262,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0.217,0.002,155.925,3511.082
-2049,11.06197,0.24361,331.96074,8.59834,26571.32,880.52019,191.74433,29.43133,6.24006,26.91537,9.08846,2.04069,0.26303,75.21783,10.92207,30.77693,250.61662,25.83557,0.10592,95.61005,3.73706,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0.206,0.002,155.925,3511.082
-2050,11.0313,0.2486,331.337,8.5883,25678.8,872.7728,190.6432,29.083,6.1795,26.807,9.1357,2.0512,0.2463,74.6074,11.0951,30.7099,252.9708,26.1182,0.0891,95.4649,3.7815,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0.195,0.002,155.925,3511.082
-2051,10.86829,0.24215,329.96427,8.58011,25182.07,863.3512,189.56776,28.72999,6.11469,26.61515,9.11255,2.04957,0.23542,75.55522,11.09689,30.26107,252.01802,26.06031,0.08327,94.54597,3.83266,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0.186,0.001,155.925,3511.082
-2052,10.70528,0.2357,328.59154,8.57192,24685.34,853.9296,188.49232,28.37698,6.04988,26.4233,9.0894,2.04794,0.22454,76.50304,11.09868,29.81224,251.06524,26.00242,0.07744,93.62704,3.88382,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0.176,0.001,155.925,3511.082
-2053,10.54227,0.22925,327.21881,8.56373,24188.61,844.508,187.41688,28.02397,5.98507,26.23145,9.06625,2.04631,0.21366,77.45086,11.10047,29.36341,250.11246,25.94453,0.07161,92.70811,3.93498,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0.168,0.001,155.925,3511.082
-2054,10.37926,0.2228,325.84608,8.55554,23691.88,835.0864,186.34144,27.67096,5.92026,26.0396,9.0431,2.04468,0.20278,78.39868,11.10226,28.91458,249.15968,25.88664,0.06578,91.78918,3.98614,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0.159,0.001,155.925,3511.082
-2055,10.21625,0.21635,324.47335,8.54735,23195.15,825.6648,185.266,27.31795,5.85545,25.84775,9.01995,2.04305,0.1919,79.3465,11.10405,28.46575,248.2069,25.82875,0.05995,90.87025,4.0373,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0.151,0.001,155.925,3511.082
-2056,10.05324,0.2099,323.10062,8.53916,22698.42,816.2432,184.19056,26.96494,5.79064,25.6559,8.9968,2.04142,0.18102,80.29432,11.10584,28.01692,247.25412,25.77086,0.05412,89.95132,4.08846,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0.144,0.001,155.925,3511.082
-2057,9.89023,0.20345,321.72789,8.53097,22201.69,806.8216,183.11512,26.61193,5.72583,25.46405,8.97365,2.03979,0.17014,81.24214,11.10763,27.56809,246.30134,25.71297,0.04829,89.03239,4.13962,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0.136,0.001,155.925,3511.082
-2058,9.72722,0.197,320.35516,8.52278,21704.96,797.4,182.03968,26.25892,5.66102,25.2722,8.9505,2.03816,0.15926,82.18996,11.10942,27.11926,245.34856,25.65508,0.04246,88.11346,4.19078,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0.13,0.001,155.925,3511.082
-2059,9.56421,0.19055,318.98243,8.51459,21208.23,787.9784,180.96424,25.90591,5.59621,25.08035,8.92735,2.03653,0.14838,83.13778,11.11121,26.67043,244.39578,25.59719,0.03663,87.19453,4.24194,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0.123,0.001,155.925,3511.082
-2060,9.4012,0.1841,317.6097,8.5064,20711.5,778.5568,179.8888,25.5529,5.5314,24.8885,8.9042,2.0349,0.1375,84.0856,11.113,26.2216,243.443,25.5393,0.0308,86.2756,4.2931,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0.117,0.001,155.925,3511.082
-2061,9.1729,0.17607,315.92522,8.49168,20280.23,768.06528,178.54508,25.2186,5.46337,24.67492,8.91416,2.0301,0.13105,85.06506,11.10641,25.99838,244.90395,25.78992,0.02989,85.73583,4.35328,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0.111,0,155.925,3511.082
-2062,8.9446,0.16804,314.24074,8.47696,19848.96,757.57376,177.20136,24.8843,5.39534,24.46134,8.92412,2.0253,0.1246,86.04452,11.09982,25.77516,246.3649,26.04054,0.02898,85.19606,4.41346,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0.106,0,155.925,3511.082
-2063,8.7163,0.16001,312.55626,8.46224,19417.69,747.08224,175.85764,24.55,5.32731,24.24776,8.93408,2.0205,0.11815,87.02398,11.09323,25.55194,247.82585,26.29116,0.02807,84.65629,4.47364,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0.1,0,155.925,3511.082
-2064,8.488,0.15198,310.87178,8.44752,18986.42,736.59072,174.51392,24.2157,5.25928,24.03418,8.94404,2.0157,0.1117,88.00344,11.08664,25.32872,249.2868,26.54178,0.02716,84.11652,4.53382,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0.095,0,155.925,3511.082
-2065,8.2597,0.14395,309.1873,8.4328,18555.15,726.0992,173.1702,23.8814,5.19125,23.8206,8.954,2.0109,0.10525,88.9829,11.08005,25.1055,250.74775,26.7924,0.02625,83.57675,4.594,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0.091,0,155.925,3511.082
-2066,8.0314,0.13592,307.50282,8.41808,18123.88,715.60768,171.82648,23.5471,5.12322,23.60702,8.96396,2.0061,0.0988,89.96236,11.07346,24.88228,252.2087,27.04302,0.02534,83.03698,4.65418,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0.086,0,155.925,3511.082
-2067,7.8031,0.12789,305.81834,8.40336,17692.61,705.11616,170.48276,23.2128,5.05519,23.39344,8.97392,2.0013,0.09235,90.94182,11.06687,24.65906,253.66965,27.29364,0.02443,82.49721,4.71436,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0.082,0,155.925,3511.082
-2068,7.5748,0.11986,304.13386,8.38864,17261.34,694.62464,169.13904,22.8785,4.98716,23.17986,8.98388,1.9965,0.0859,91.92128,11.06028,24.43584,255.1306,27.54426,0.02352,81.95744,4.77454,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0.078,0,155.925,3511.082
-2069,7.3465,0.11183,302.44938,8.37392,16830.07,684.13312,167.79532,22.5442,4.91913,22.96628,8.99384,1.9917,0.07945,92.90074,11.05369,24.21262,256.59155,27.79488,0.02261,81.41767,4.83472,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0.074,0,155.925,3511.082
-2070,7.1182,0.1038,300.7649,8.3592,16398.8,673.6416,166.4516,22.2099,4.8511,22.7527,9.0038,1.9869,0.073,93.8802,11.0471,23.9894,258.0525,28.0455,0.0217,80.8779,4.8949,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0.07,0,155.925,3511.082
-2071,6.82459,0.0942,298.76876,8.33796,16033.02,662.0793,164.83958,21.89432,4.77984,22.5174,9.04993,1.97901,0.06942,94.1193,11.03809,23.94406,262.30888,28.61994,0.02131,80.71735,4.96411,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0.067,0,155.925,3511.082
-2072,6.53098,0.0846,296.77262,8.31672,15667.24,650.517,163.22756,21.57874,4.70858,22.2821,9.09606,1.97112,0.06584,94.3584,11.02908,23.89872,266.56526,29.19438,0.02092,80.5568,5.03332,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0.063,0,155.925,3511.082
-2073,6.23737,0.075,294.77648,8.29548,15301.46,638.9547,161.61554,21.26316,4.63732,22.0468,9.14219,1.96323,0.06226,94.5975,11.02007,23.85338,270.82164,29.76882,0.02053,80.39625,5.10253,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0.06,0,155.925,3511.082
-2074,5.94376,0.0654,292.78034,8.27424,14935.68,627.3924,160.00352,20.94758,4.56606,21.8115,9.18832,1.95534,0.05868,94.8366,11.01106,23.80804,275.07802,30.34326,0.02014,80.2357,5.17174,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0.057,0,155.925,3511.082
-2075,5.65015,0.0558,290.7842,8.253,14569.9,615.8301,158.3915,20.632,4.4948,21.5762,9.23445,1.94745,0.0551,95.0757,11.00205,23.7627,279.3344,30.9177,0.01975,80.07515,5.24095,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0.054,0,155.925,3511.082
-2076,5.35654,0.0462,288.78806,8.23176,14204.12,604.2678,156.77948,20.31642,4.42354,21.3409,9.28058,1.93956,0.05152,95.3148,10.99304,23.71736,283.59078,31.49214,0.01936,79.9146,5.31016,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0.052,0,155.925,3511.082
-2077,5.06293,0.0366,286.79192,8.21052,13838.34,592.7055,155.16746,20.00084,4.35228,21.1056,9.32671,1.93167,0.04794,95.5539,10.98403,23.67202,287.84716,32.06658,0.01897,79.75405,5.37937,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0.049,0,155.925,3511.082
-2078,4.76932,0.027,284.79578,8.18928,13472.56,581.1432,153.55544,19.68526,4.28102,20.8703,9.37284,1.92378,0.04436,95.793,10.97502,23.62668,292.10354,32.64102,0.01858,79.5935,5.44858,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0.046,0,155.925,3511.082
-2079,4.47571,0.0174,282.79964,8.16804,13106.78,569.5809,151.94342,19.36968,4.20976,20.635,9.41897,1.91589,0.04078,96.0321,10.96601,23.58134,296.35992,33.21546,0.01819,79.43295,5.51779,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0.044,0,155.925,3511.082
-2080,4.1821,0.0078,280.8035,8.1468,12741,558.0186,150.3314,19.0541,4.1385,20.3997,9.4651,1.908,0.0372,96.2712,10.957,23.536,300.6163,33.7899,0.0178,79.2724,5.587,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0.042,0,155.925,3511.082
-2081,4.18314,0.00973,280.06659,8.14506,12666.64,553.9826,149.81652,19.0042,4.12467,20.34975,9.57675,1.91453,0.03348,95.76444,10.93657,23.53444,305.85507,34.4037,0.01759,79.4532,5.62936,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0.04,0,155.925,3511.082
-2082,4.18418,0.01166,279.32968,8.14332,12592.28,549.9466,149.30164,18.9543,4.11084,20.2998,9.6884,1.92106,0.02976,95.25768,10.91614,23.53288,311.09384,35.0175,0.01738,79.634,5.67172,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0.038,0,155.925,3511.082
-2083,4.18522,0.01359,278.59277,8.14158,12517.92,545.9106,148.78676,18.9044,4.09701,20.24985,9.80005,1.92759,0.02604,94.75092,10.89571,23.53132,316.33261,35.6313,0.01717,79.8148,5.71408,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0.036,0,155.925,3511.082
-2084,4.18626,0.01552,277.85586,8.13984,12443.56,541.8746,148.27188,18.8545,4.08318,20.1999,9.9117,1.93412,0.02232,94.24416,10.87528,23.52976,321.57138,36.2451,0.01696,79.9956,5.75644,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0.034,0,155.925,3511.082
-2085,4.1873,0.01745,277.11895,8.1381,12369.2,537.8386,147.757,18.8046,4.06935,20.14995,10.02335,1.94065,0.0186,93.7374,10.85485,23.5282,326.81015,36.8589,0.01675,80.1764,5.7988,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0.032,0,155.925,3511.082
-2086,4.18834,0.01938,276.38204,8.13636,12294.84,533.8026,147.24212,18.7547,4.05552,20.1,10.135,1.94718,0.01488,93.23064,10.83442,23.52664,332.04892,37.4727,0.01654,80.3572,5.84116,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0.031,0,155.925,3511.082
-2087,4.18938,0.02131,275.64513,8.13462,12220.48,529.7666,146.72724,18.7048,4.04169,20.05005,10.24665,1.95371,0.01116,92.72388,10.81399,23.52508,337.28769,38.0865,0.01633,80.538,5.88352,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0.029,0,155.925,3511.082
-2088,4.19042,0.02324,274.90822,8.13288,12146.12,525.7306,146.21236,18.6549,4.02786,20.0001,10.3583,1.96024,0.00744,92.21712,10.79356,23.52352,342.52646,38.7003,0.01612,80.7188,5.92588,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0.028,0,155.925,3511.082
-2089,4.19146,0.02517,274.17131,8.13114,12071.76,521.6946,145.69748,18.605,4.01403,19.95015,10.46995,1.96677,0.00372,91.71036,10.77313,23.52196,347.76523,39.3141,0.01591,80.8996,5.96824,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0.026,0,155.925,3511.082
-2090,4.1925,0.0271,273.4344,8.1294,11997.4,517.6586,145.1826,18.5551,4.0002,19.9002,10.5816,1.9733,0,91.2036,10.7527,23.5204,353.004,39.9279,0.0157,81.0804,6.0106,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0.025,0,155.925,3511.082
-2091,4.19355,0.02902,272.69682,8.12762,11923.05,513.6227,144.66772,18.50518,3.98639,19.85023,10.66307,1.98218,0,90.20592,10.71798,23.469,358.61111,40.56215,0.01555,81.2612,6.05297,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0.024,0,155.925,3511.082
-2092,4.1946,0.03094,271.95924,8.12584,11848.7,509.5868,144.15284,18.45526,3.97258,19.80026,10.74454,1.99106,0,89.20824,10.68326,23.4176,364.21822,41.1964,0.0154,81.442,6.09534,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0.023,0,155.925,3511.082
-2093,4.19565,0.03286,271.22166,8.12406,11774.35,505.5509,143.63796,18.40534,3.95877,19.75029,10.82601,1.99994,0,88.21056,10.64854,23.3662,369.82533,41.83065,0.01525,81.6228,6.13771,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0.022,0,155.925,3511.082
-2094,4.1967,0.03478,270.48408,8.12228,11700,501.515,143.12308,18.35542,3.94496,19.70032,10.90748,2.00882,0,87.21288,10.61382,23.3148,375.43244,42.4649,0.0151,81.8036,6.18008,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0.02,0,155.925,3511.082
-2095,4.19775,0.0367,269.7465,8.1205,11625.65,497.4791,142.6082,18.3055,3.93115,19.65035,10.98895,2.0177,0,86.2152,10.5791,23.2634,381.03955,43.09915,0.01495,81.9844,6.22245,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0.019,0,155.925,3511.082
-2096,4.1988,0.03862,269.00892,8.11872,11551.3,493.4432,142.09332,18.25558,3.91734,19.60038,11.07042,2.02658,0,85.21752,10.54438,23.212,386.64666,43.7334,0.0148,82.1652,6.26482,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0.018,0,155.925,3511.082
-2097,4.19985,0.04054,268.27134,8.11694,11476.95,489.4073,141.57844,18.20566,3.90353,19.55041,11.15189,2.03546,0,84.21984,10.50966,23.1606,392.25377,44.36765,0.01465,82.346,6.30719,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0.018,0,155.925,3511.082
-2098,4.2009,0.04246,267.53376,8.11516,11402.6,485.3714,141.06356,18.15574,3.88972,19.50044,11.23336,2.04434,0,83.22216,10.47494,23.1092,397.86088,45.0019,0.0145,82.5268,6.34956,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0.017,0,155.925,3511.082
-2099,4.20195,0.04438,266.79618,8.11338,11328.25,481.3355,140.54868,18.10582,3.87591,19.45047,11.31483,2.05322,0,82.22448,10.44022,23.0578,403.46799,45.63615,0.01435,82.7076,6.39193,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0.016,0,155.925,3511.082
-2100,4.203,0.0463,266.0586,8.1116,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,11.3963,2.0621,0,81.2268,10.4055,23.0064,409.0751,46.2704,0.0142,82.8884,6.4343,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0.015,0,155.925,3511.082
-2101,4.09086,0.04445,266.0588,8.08938,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,11.16938,2.02147,0,81.2268,10.4055,23.0064,408.8936,46.045,0.01423,82.8884,6.30908,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0.014,0,155.925,3511.082
-2102,3.97872,0.0426,266.059,8.06716,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,10.94246,1.98084,0,81.2268,10.4055,23.0064,408.7121,45.8196,0.01426,82.8884,6.18386,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0.014,0,155.925,3511.082
-2103,3.86658,0.04075,266.0592,8.04494,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,10.71554,1.94021,0,81.2268,10.4055,23.0064,408.5306,45.5942,0.01429,82.8884,6.05864,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0.013,0,155.925,3511.082
-2104,3.75444,0.0389,266.0594,8.02272,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,10.48862,1.89958,0,81.2268,10.4055,23.0064,408.3491,45.3688,0.01432,82.8884,5.93342,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0.012,0,155.925,3511.082
-2105,3.6423,0.03705,266.0596,8.0005,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,10.2617,1.85895,0,81.2268,10.4055,23.0064,408.1676,45.1434,0.01435,82.8884,5.8082,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0.012,0,155.925,3511.082
-2106,3.53016,0.0352,266.0598,7.97828,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,10.03478,1.81832,0,81.2268,10.4055,23.0064,407.9861,44.918,0.01438,82.8884,5.68298,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0.011,0,155.925,3511.082
-2107,3.41802,0.03335,266.06,7.95606,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,9.80786,1.77769,0,81.2268,10.4055,23.0064,407.8046,44.6926,0.01441,82.8884,5.55776,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0.011,0,155.925,3511.082
-2108,3.30588,0.0315,266.0602,7.93384,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,9.58094,1.73706,0,81.2268,10.4055,23.0064,407.6231,44.4672,0.01444,82.8884,5.43254,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0.01,0,155.925,3511.082
-2109,3.19374,0.02965,266.0604,7.91162,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,9.35402,1.69643,0,81.2268,10.4055,23.0064,407.4416,44.2418,0.01447,82.8884,5.30732,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0.009,0,155.925,3511.082
-2110,3.0816,0.0278,266.0606,7.8894,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,9.1271,1.6558,0,81.2268,10.4055,23.0064,407.2601,44.0164,0.0145,82.8884,5.1821,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0.009,0,155.925,3511.082
-2111,3.00189,0.02594,266.06075,7.86716,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,8.90017,1.61514,0,81.2268,10.4055,23.0064,407.07859,43.79098,0.01452,82.8884,5.05688,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0.009,0,155.925,3511.082
-2112,2.92218,0.02408,266.0609,7.84492,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,8.67324,1.57448,0,81.2268,10.4055,23.0064,406.89708,43.56556,0.01454,82.8884,4.93166,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0.008,0,155.925,3511.082
-2113,2.84247,0.02222,266.06105,7.82268,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,8.44631,1.53382,0,81.2268,10.4055,23.0064,406.71557,43.34014,0.01456,82.8884,4.80644,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0.008,0,155.925,3511.082
-2114,2.76276,0.02036,266.0612,7.80044,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,8.21938,1.49316,0,81.2268,10.4055,23.0064,406.53406,43.11472,0.01458,82.8884,4.68122,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0.007,0,155.925,3511.082
-2115,2.68305,0.0185,266.06135,7.7782,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,7.99245,1.4525,0,81.2268,10.4055,23.0064,406.35255,42.8893,0.0146,82.8884,4.556,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0.007,0,155.925,3511.082
-2116,2.60334,0.01664,266.0615,7.75596,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,7.76552,1.41184,0,81.2268,10.4055,23.0064,406.17104,42.66388,0.01462,82.8884,4.43078,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0.007,0,155.925,3511.082
-2117,2.52363,0.01478,266.06165,7.73372,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,7.53859,1.37118,0,81.2268,10.4055,23.0064,405.98953,42.43846,0.01464,82.8884,4.30556,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0.006,0,155.925,3511.082
-2118,2.44392,0.01292,266.0618,7.71148,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,7.31166,1.33052,0,81.2268,10.4055,23.0064,405.80802,42.21304,0.01466,82.8884,4.18034,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0.006,0,155.925,3511.082
-2119,2.36421,0.01106,266.06195,7.68924,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,7.08473,1.28986,0,81.2268,10.4055,23.0064,405.62651,41.98762,0.01468,82.8884,4.05512,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0.006,0,155.925,3511.082
-2120,2.2845,0.0092,266.0621,7.667,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,6.8578,1.2492,0,81.2268,10.4055,23.0064,405.445,41.7622,0.0147,82.8884,3.9299,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0.005,0,155.925,3511.082
-2121,2.25245,0.00828,266.06224,7.64476,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,6.63088,1.20857,0,81.2268,10.4055,23.0064,405.2635,41.53679,0.01474,82.8884,3.80466,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0.005,0,155.925,3511.082
-2122,2.2204,0.00736,266.06238,7.62252,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,6.40396,1.16794,0,81.2268,10.4055,23.0064,405.082,41.31138,0.01478,82.8884,3.67942,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0.005,0,155.925,3511.082
-2123,2.18835,0.00644,266.06252,7.60028,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,6.17704,1.12731,0,81.2268,10.4055,23.0064,404.9005,41.08597,0.01482,82.8884,3.55418,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0.005,0,155.925,3511.082
-2124,2.1563,0.00552,266.06266,7.57804,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,5.95012,1.08668,0,81.2268,10.4055,23.0064,404.719,40.86056,0.01486,82.8884,3.42894,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0.004,0,155.925,3511.082
-2125,2.12425,0.0046,266.0628,7.5558,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,5.7232,1.04605,0,81.2268,10.4055,23.0064,404.5375,40.63515,0.0149,82.8884,3.3037,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0.004,0,155.925,3511.082
-2126,2.0922,0.00368,266.06294,7.53356,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,5.49628,1.00542,0,81.2268,10.4055,23.0064,404.356,40.40974,0.01494,82.8884,3.17846,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0.004,0,155.925,3511.082
-2127,2.06015,0.00276,266.06308,7.51132,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,5.26936,0.96479,0,81.2268,10.4055,23.0064,404.1745,40.18433,0.01498,82.8884,3.05322,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0.004,0,155.925,3511.082
-2128,2.0281,0.00184,266.06322,7.48908,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,5.04244,0.92416,0,81.2268,10.4055,23.0064,403.993,39.95892,0.01502,82.8884,2.92798,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0.004,0,155.925,3511.082
-2129,1.99605,0.00092,266.06336,7.46684,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,4.81552,0.88353,0,81.2268,10.4055,23.0064,403.8115,39.73351,0.01506,82.8884,2.80274,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0.003,0,155.925,3511.082
-2130,1.964,0.00092,266.0635,7.4446,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,4.5886,0.8429,0,81.2268,10.4055,23.0064,403.63,39.5081,0.0151,82.8884,2.6775,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0.003,0,155.925,3511.082
-2131,1.93853,0.00092,266.06362,7.42237,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,4.36166,0.80226,0,81.2268,10.4055,23.0064,403.4485,39.28269,0.01512,82.8884,2.55229,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0.003,0,155.925,3511.082
-2132,1.91306,0.00092,266.06374,7.40014,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,4.13472,0.76162,0,81.2268,10.4055,23.0064,403.267,39.05728,0.01514,82.8884,2.42708,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0.003,0,155.925,3511.082
-2133,1.88759,0.00092,266.06386,7.37791,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,3.90778,0.72098,0,81.2268,10.4055,23.0064,403.0855,38.83187,0.01516,82.8884,2.30187,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0.003,0,155.925,3511.082
-2134,1.86212,0.00092,266.06398,7.35568,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,3.68084,0.68034,0,81.2268,10.4055,23.0064,402.904,38.60646,0.01518,82.8884,2.17666,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0.003,0,155.925,3511.082
-2135,1.83665,0.00092,266.0641,7.33345,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,3.4539,0.6397,0,81.2268,10.4055,23.0064,402.7225,38.38105,0.0152,82.8884,2.05145,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0.002,0,155.925,3511.082
-2136,1.81118,0.00092,266.06422,7.31122,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,3.22696,0.59906,0,81.2268,10.4055,23.0064,402.541,38.15564,0.01522,82.8884,1.92624,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0.002,0,155.925,3511.082
-2137,1.78571,0.00092,266.06434,7.28899,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,3.00002,0.55842,0,81.2268,10.4055,23.0064,402.3595,37.93023,0.01524,82.8884,1.80103,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0.002,0,155.925,3511.082
-2138,1.76024,0.00092,266.06446,7.26676,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,2.77308,0.51778,0,81.2268,10.4055,23.0064,402.178,37.70482,0.01526,82.8884,1.67582,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0.002,0,155.925,3511.082
-2139,1.73477,0.00092,266.06458,7.24453,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,2.54614,0.47714,0,81.2268,10.4055,23.0064,401.9965,37.47941,0.01528,82.8884,1.55061,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0.002,0,155.925,3511.082
-2140,1.7093,0.00092,266.0647,7.2223,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,2.3192,0.4365,0,81.2268,10.4055,23.0064,401.815,37.254,0.0153,82.8884,1.4254,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0.002,0,155.925,3511.082
-2141,1.6831375,0.00092,266.06481,7.200075,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,2.092275,0.39585,0,81.2268,10.4055,23.0064,401.6335,37.0286,0.01535,82.8884,1.3001875,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0.002,0,155.925,3511.082
-2142,1.656975,0.00092,266.06493,7.17785,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,1.86535,0.3552,0,81.2268,10.4055,23.0064,401.452,36.8032,0.0154,82.8884,1.174975,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0.002,0,155.925,3511.082
-2143,1.6308125,0.00092,266.06504,7.155625,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,1.638425,0.31455,0,81.2268,10.4055,23.0064,401.2705,36.5778,0.01545,82.8884,1.0497625,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0.002,0,155.925,3511.082
-2144,1.60465,0.00092,266.06515,7.1334,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,1.4115,0.2739,0,81.2268,10.4055,23.0064,401.089,36.3524,0.0155,82.8884,0.92455,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0.002,0,155.925,3511.082
-2145,1.5784875,0.00092,266.06526,7.111175,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,1.184575,0.23325,0,81.2268,10.4055,23.0064,400.9075,36.127,0.01555,82.8884,0.7993375,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0.001,0,155.925,3511.082
-2146,1.552325,0.00092,266.06538,7.08895,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.95765,0.1926,0,81.2268,10.4055,23.0064,400.726,35.9016,0.0156,82.8884,0.674125,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0.001,0,155.925,3511.082
-2147,1.5261625,0.00092,266.06549,7.066725,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.730725,0.15195,0,81.2268,10.4055,23.0064,400.5445,35.6762,0.01565,82.8884,0.5489125,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0.001,0,155.925,3511.082
-2148,1.5,0.00092,266.0656,7.0445,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.5038,0.1113,0,81.2268,10.4055,23.0064,400.363,35.4508,0.0157,82.8884,0.4237,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0.001,0,155.925,3511.082
-2149,1.5354,0.00092,266.0834,7.0065,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8286,81.2101,10.4253,23.2987,401.2135,35.2926,0.06,82.8825,0.2246,5.888,26.472,4.838,1.2,0.17,0.154,0,0.058,0.306,0.04,0.004,0.175,0,155.922,3511.082
-2150,1.5468,0.00092,266.0918,7.0074,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8286,81.2115,10.4255,23.2991,401.2206,35.2933,0.06,82.8842,0.2246,5.888,26.473,4.838,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.949,3511.082
-2151,1.5531,0.00092,266.101,7.008,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8286,81.2131,10.4256,23.2994,401.2282,35.2939,0.06,82.8858,0.2246,5.889,26.476,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.957,3511.082
-2152,1.5547,0.00092,266.1095,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8286,81.2145,10.4258,23.2998,401.2355,35.2945,0.06,82.8872,0.2246,5.889,26.478,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.964,3511.082
-2153,1.5527,0.00092,266.12,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8286,81.2164,10.426,23.3004,401.2444,35.2953,0.06,82.889,0.2246,5.89,26.481,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.973,3511.082
-2154,1.5482,0.00092,266.1327,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8287,81.2186,10.4263,23.3011,401.2551,35.2963,0.06,82.8912,0.2246,5.891,26.484,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.983,3511.082
-2155,1.5419,0.00092,266.1469,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8287,81.221,10.4267,23.3017,401.267,35.2974,0.06,82.8937,0.2246,5.891,26.488,4.841,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.994,3511.082
-2156,1.5324,0.00092,266.16414,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.82874,81.22392,10.42708,23.30256,401.28146,35.29864,0.06,82.8967,0.2246,5.892,26.491,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.005,3511.082
-2157,1.5229,0.00092,266.18138,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.82878,81.22684,10.42746,23.30342,401.29592,35.29988,0.06,82.8997,0.2246,5.893,26.495,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.018,3511.082
-2158,1.5134,0.00092,266.19862,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.82882,81.22976,10.42784,23.30428,401.31038,35.30112,0.06,82.9027,0.2246,5.894,26.499,4.843,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.03,3511.082
-2159,1.5039,0.00092,266.21586,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.82886,81.23268,10.42822,23.30514,401.32484,35.30236,0.06,82.9057,0.2246,5.895,26.504,4.844,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.044,3511.082
-2160,1.4944,0.00092,266.2331,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8289,81.2356,10.4286,23.306,401.3393,35.3036,0.06,82.9087,0.2246,5.896,26.508,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.057,3511.082
-2161,1.48311,0.00092,266.25295,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05111,0.0319,0.82892,81.23897,10.42903,23.30697,401.35595,35.30507,0.06,82.91213,0.2246,5.897,26.512,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.071,3511.082
-2162,1.47182,0.00092,266.2728,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05112,0.0319,0.82894,81.24234,10.42946,23.30794,401.3726,35.30654,0.06,82.91556,0.2246,5.898,26.517,4.846,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.084,3511.082
-2163,1.46053,0.00092,266.29265,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05113,0.0319,0.82896,81.24571,10.42989,23.30891,401.38925,35.30801,0.06,82.91899,0.2246,5.899,26.521,4.847,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.098,3511.082
-2164,1.44924,0.00092,266.3125,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05114,0.0319,0.82898,81.24908,10.43032,23.30988,401.4059,35.30948,0.06,82.92242,0.2246,5.9,26.525,4.848,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.112,3511.082
-2165,1.43795,0.00092,266.33235,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05115,0.0319,0.829,81.25245,10.43075,23.31085,401.42255,35.31095,0.06,82.92585,0.2246,5.901,26.53,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.127,3511.082
-2166,1.42666,0.00092,266.3522,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05116,0.0319,0.82902,81.25582,10.43118,23.31182,401.4392,35.31242,0.06,82.92928,0.2246,5.902,26.534,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.141,3511.082
-2167,1.41537,0.00092,266.37205,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05117,0.0319,0.82904,81.25919,10.43161,23.31279,401.45585,35.31389,0.06,82.93271,0.2246,5.903,26.539,4.85,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.155,3511.082
-2168,1.40408,0.00092,266.3919,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05118,0.0319,0.82906,81.26256,10.43204,23.31376,401.4725,35.31536,0.06,82.93614,0.2246,5.904,26.544,4.851,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.169,3511.082
-2169,1.39279,0.00092,266.41175,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05119,0.0319,0.82908,81.26593,10.43247,23.31473,401.48915,35.31683,0.06,82.93957,0.2246,5.905,26.548,4.852,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.183,3511.082
-2170,1.3815,0.00092,266.4316,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.8291,81.2693,10.4329,23.3157,401.5058,35.3183,0.06,82.943,0.2246,5.906,26.553,4.853,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.198,3511.082
-2171,1.3712,0.00092,266.45171,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82914,81.27272,10.43334,23.31666,401.52268,35.31979,0.06,82.9465,0.2246,5.907,26.557,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.212,3511.082
-2172,1.3609,0.00092,266.47182,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82918,81.27614,10.43378,23.31762,401.53956,35.32128,0.06,82.95,0.2246,5.908,26.562,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.226,3511.082
-2173,1.3506,0.00092,266.49193,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82922,81.27956,10.43422,23.31858,401.55644,35.32277,0.06,82.9535,0.2246,5.909,26.566,4.855,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.24,3511.082
-2174,1.3403,0.00092,266.51204,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82926,81.28298,10.43466,23.31954,401.57332,35.32426,0.06,82.957,0.2246,5.91,26.571,4.856,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.254,3511.082
-2175,1.33,0.00092,266.53215,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.8293,81.2864,10.4351,23.3205,401.5902,35.32575,0.06,82.9605,0.2246,5.911,26.575,4.857,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.268,3511.082
-2176,1.3197,0.00092,266.55226,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82934,81.28982,10.43554,23.32146,401.60708,35.32724,0.06,82.964,0.2246,5.912,26.58,4.858,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.282,3511.082
-2177,1.3094,0.00092,266.57237,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82938,81.29324,10.43598,23.32242,401.62396,35.32873,0.06,82.9675,0.2246,5.913,26.584,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.296,3511.082
-2178,1.2991,0.00092,266.59248,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82942,81.29666,10.43642,23.32338,401.64084,35.33022,0.06,82.971,0.2246,5.914,26.588,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.31,3511.082
-2179,1.2888,0.00092,266.61259,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82946,81.30008,10.43686,23.32434,401.65772,35.33171,0.06,82.9745,0.2246,5.915,26.593,4.86,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.324,3511.082
-2180,1.2785,0.00092,266.6327,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.8295,81.3035,10.4373,23.3253,401.6746,35.3332,0.06,82.978,0.2246,5.916,26.597,4.861,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.338,3511.082
-2181,1.26966,0.00092,266.65213,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82954,81.3068,10.43772,23.32625,401.69092,35.33464,0.06,82.98137,0.2246,5.917,26.602,4.862,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.351,3511.082
-2182,1.26082,0.00092,266.67156,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82958,81.3101,10.43814,23.3272,401.70724,35.33608,0.06,82.98474,0.2246,5.918,26.606,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.365,3511.082
-2183,1.25198,0.00092,266.69099,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82962,81.3134,10.43856,23.32815,401.72356,35.33752,0.06,82.98811,0.2246,5.919,26.61,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.379,3511.082
-2184,1.24314,0.00092,266.71042,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82966,81.3167,10.43898,23.3291,401.73988,35.33896,0.06,82.99148,0.2246,5.92,26.615,4.864,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.392,3511.082
-2185,1.2343,0.00092,266.72985,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.8297,81.32,10.4394,23.33005,401.7562,35.3404,0.06,82.99485,0.2246,5.921,26.619,4.865,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.406,3511.082
-2186,1.22546,0.00092,266.74928,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82974,81.3233,10.43982,23.331,401.77252,35.34184,0.06,82.99822,0.2246,5.922,26.623,4.866,1.207,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.419,3511.082
-2187,1.21662,0.00092,266.76871,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82978,81.3266,10.44024,23.33195,401.78884,35.34328,0.06,83.00159,0.2246,5.923,26.627,4.866,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.432,3511.082
-2188,1.20778,0.00092,266.78814,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82982,81.3299,10.44066,23.3329,401.80516,35.34472,0.06,83.00496,0.2246,5.924,26.632,4.867,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.446,3511.082
-2189,1.19894,0.00092,266.80757,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82986,81.3332,10.44108,23.33385,401.82148,35.34616,0.06,83.00833,0.2246,5.924,26.636,4.868,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.459,3511.082
-2190,1.1901,0.00092,266.827,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.8299,81.3365,10.4415,23.3348,401.8378,35.3476,0.06,83.0117,0.2246,5.925,26.64,4.869,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.472,3511.082
-2191,1.18257,0.00092,266.84554,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82992,81.33966,10.44192,23.33572,401.85335,35.34897,0.06,83.0149,0.2246,5.926,26.644,4.87,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.485,3511.082
-2192,1.17504,0.00092,266.86408,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82994,81.34282,10.44234,23.33664,401.8689,35.35034,0.06,83.0181,0.2246,5.927,26.648,4.87,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.498,3511.082
-2193,1.16751,0.00092,266.88262,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82996,81.34598,10.44276,23.33756,401.88445,35.35171,0.06,83.0213,0.2246,5.928,26.653,4.871,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.511,3511.082
-2194,1.15998,0.00092,266.90116,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82998,81.34914,10.44318,23.33848,401.9,35.35308,0.06,83.0245,0.2246,5.929,26.657,4.872,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.524,3511.082
-2195,1.15245,0.00092,266.9197,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.83,81.3523,10.4436,23.3394,401.91555,35.35445,0.06,83.0277,0.2246,5.93,26.661,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.537,3511.082
-2196,1.14492,0.00092,266.93824,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.83002,81.35546,10.44402,23.34032,401.9311,35.35582,0.06,83.0309,0.2246,5.931,26.665,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.549,3511.082
-2197,1.13739,0.00092,266.95678,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.83004,81.35862,10.44444,23.34124,401.94665,35.35719,0.06,83.0341,0.2246,5.932,26.669,4.874,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.562,3511.082
-2198,1.12986,0.00092,266.97532,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.83006,81.36178,10.44486,23.34216,401.9622,35.35856,0.06,83.0373,0.2246,5.933,26.673,4.875,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.575,3511.082
-2199,1.12233,0.00092,266.99386,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.83008,81.36494,10.44528,23.34308,401.97775,35.35993,0.06,83.0405,0.2246,5.934,26.677,4.875,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.587,3511.082
-2200,1.1148,0.00092,267.0124,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.8301,81.3681,10.4457,23.344,401.9933,35.3613,0.06,83.0437,0.2246,5.934,26.681,4.876,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.6,3511.082
-2201,1.10836,0.00092,267.03006,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05121,0.0319,0.83013,81.3711,10.44606,23.34485,402.00813,35.3626,0.06,83.04677,0.2246,5.935,26.685,4.877,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.612,3511.082
-2202,1.10192,0.00092,267.04772,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05122,0.0319,0.83016,81.3741,10.44642,23.3457,402.02296,35.3639,0.06,83.04984,0.2246,5.936,26.689,4.878,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.624,3511.082
-2203,1.09548,0.00092,267.06538,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05123,0.0319,0.83019,81.3771,10.44678,23.34655,402.03779,35.3652,0.06,83.05291,0.2246,5.937,26.693,4.878,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.637,3511.082
-2204,1.08904,0.00092,267.08304,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05124,0.0319,0.83022,81.3801,10.44714,23.3474,402.05262,35.3665,0.06,83.05598,0.2246,5.938,26.696,4.879,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.649,3511.082
-2205,1.0826,0.00092,267.1007,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05125,0.0319,0.83025,81.3831,10.4475,23.34825,402.06745,35.3678,0.06,83.05905,0.2246,5.939,26.7,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.661,3511.082
-2206,1.07616,0.00092,267.11836,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05126,0.0319,0.83028,81.3861,10.44786,23.3491,402.08228,35.3691,0.06,83.06212,0.2246,5.94,26.704,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.673,3511.082
-2207,1.06972,0.00092,267.13602,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05127,0.0319,0.83031,81.3891,10.44822,23.34995,402.09711,35.3704,0.06,83.06519,0.2246,5.94,26.708,4.881,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.685,3511.082
-2208,1.06328,0.00092,267.15368,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05128,0.0319,0.83034,81.3921,10.44858,23.3508,402.11194,35.3717,0.06,83.06826,0.2246,5.941,26.712,4.882,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.697,3511.082
-2209,1.05684,0.00092,267.17134,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05129,0.0319,0.83037,81.3951,10.44894,23.35165,402.12677,35.373,0.06,83.07133,0.2246,5.942,26.716,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.709,3511.082
-2210,1.0504,0.00092,267.189,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8304,81.3981,10.4493,23.3525,402.1416,35.3743,0.06,83.0744,0.2246,5.943,26.719,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.721,3511.082
-2211,1.04486,0.00092,267.2058,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83044,81.40095,10.44967,23.35332,402.15569,35.37553,0.06,83.07732,0.2246,5.944,26.723,4.884,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.733,3511.082
-2212,1.03932,0.00092,267.2226,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83048,81.4038,10.45004,23.35414,402.16978,35.37676,0.06,83.08024,0.2246,5.945,26.727,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.744,3511.082
-2213,1.03378,0.00092,267.2394,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83052,81.40665,10.45041,23.35496,402.18387,35.37799,0.06,83.08316,0.2246,5.946,26.731,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.756,3511.082
-2214,1.02824,0.00092,267.2562,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83056,81.4095,10.45078,23.35578,402.19796,35.37922,0.06,83.08608,0.2246,5.946,26.734,4.886,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.768,3511.082
-2215,1.0227,0.00092,267.273,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8306,81.41235,10.45115,23.3566,402.21205,35.38045,0.06,83.089,0.2246,5.947,26.738,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.779,3511.082
-2216,1.01716,0.00092,267.2898,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83064,81.4152,10.45152,23.35742,402.22614,35.38168,0.06,83.09192,0.2246,5.948,26.742,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.791,3511.082
-2217,1.01162,0.00092,267.3066,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83068,81.41805,10.45189,23.35824,402.24023,35.38291,0.06,83.09484,0.2246,5.949,26.745,4.888,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.802,3511.082
-2218,1.00608,0.00092,267.3234,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83072,81.4209,10.45226,23.35906,402.25432,35.38414,0.06,83.09776,0.2246,5.95,26.749,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.813,3511.082
-2219,1.00054,0.00092,267.3402,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83076,81.42375,10.45263,23.35988,402.26841,35.38537,0.06,83.10068,0.2246,5.95,26.752,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.825,3511.082
-2220,0.995,0.00092,267.357,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8308,81.4266,10.453,23.3607,402.2825,35.3866,0.06,83.1036,0.2246,5.951,26.756,4.89,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.836,3511.082
-2221,0.99023,0.00092,267.373,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83082,81.42932,10.45337,23.36148,402.29593,35.38779,0.06,83.10637,0.2246,5.952,26.76,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.847,3511.082
-2222,0.98546,0.00092,267.389,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83084,81.43204,10.45374,23.36226,402.30936,35.38898,0.06,83.10914,0.2246,5.953,26.763,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.858,3511.082
-2223,0.98069,0.00092,267.405,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83086,81.43476,10.45411,23.36304,402.32279,35.39017,0.06,83.11191,0.2246,5.954,26.767,4.892,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.869,3511.082
-2224,0.97592,0.00092,267.421,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83088,81.43748,10.45448,23.36382,402.33622,35.39136,0.06,83.11468,0.2246,5.954,26.77,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.88,3511.082
-2225,0.97115,0.00092,267.437,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8309,81.4402,10.45485,23.3646,402.34965,35.39255,0.06,83.11745,0.2246,5.955,26.774,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.891,3511.082
-2226,0.96638,0.00092,267.453,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83092,81.44292,10.45522,23.36538,402.36308,35.39374,0.06,83.12022,0.2246,5.956,26.777,4.894,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.902,3511.082
-2227,0.96161,0.00092,267.469,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83094,81.44564,10.45559,23.36616,402.37651,35.39493,0.06,83.12299,0.2246,5.957,26.781,4.894,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.913,3511.082
-2228,0.95684,0.00092,267.485,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83096,81.44836,10.45596,23.36694,402.38994,35.39612,0.06,83.12576,0.2246,5.957,26.784,4.895,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.924,3511.082
-2229,0.95207,0.00092,267.501,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83098,81.45108,10.45633,23.36772,402.40337,35.39731,0.06,83.12853,0.2246,5.958,26.788,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.935,3511.082
-2230,0.9473,0.00092,267.517,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.831,81.4538,10.4567,23.3685,402.4168,35.3985,0.06,83.1313,0.2246,5.959,26.791,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.945,3511.082
-2231,0.94314,0.00092,267.53226,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83103,81.45639,10.45701,23.36925,402.42961,35.39963,0.06,83.13395,0.2246,5.96,26.794,4.897,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.956,3511.082
-2232,0.93898,0.00092,267.54752,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83106,81.45898,10.45732,23.37,402.44242,35.40076,0.06,83.1366,0.2246,5.96,26.798,4.898,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.967,3511.082
-2233,0.93482,0.00092,267.56278,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83109,81.46157,10.45763,23.37075,402.45523,35.40189,0.06,83.13925,0.2246,5.961,26.801,4.898,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,156.977,3511.082
-2234,0.93066,0.00092,267.57804,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83112,81.46416,10.45794,23.3715,402.46804,35.40302,0.06,83.1419,0.2246,5.962,26.804,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,156.988,3511.082
-2235,0.9265,0.00092,267.5933,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83115,81.46675,10.45825,23.37225,402.48085,35.40415,0.06,83.14455,0.2246,5.963,26.808,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,156.998,3511.082
-2236,0.92234,0.00092,267.60856,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83118,81.46934,10.45856,23.373,402.49366,35.40528,0.06,83.1472,0.2246,5.963,26.811,4.9,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.008,3511.082
-2237,0.91818,0.00092,267.62382,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83121,81.47193,10.45887,23.37375,402.50647,35.40641,0.06,83.14985,0.2246,5.964,26.814,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.019,3511.082
-2238,0.91402,0.00092,267.63908,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83124,81.47452,10.45918,23.3745,402.51928,35.40754,0.06,83.1525,0.2246,5.965,26.818,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.029,3511.082
-2239,0.90986,0.00092,267.65434,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83127,81.47711,10.45949,23.37525,402.53209,35.40867,0.06,83.15515,0.2246,5.966,26.821,4.902,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.039,3511.082
-2240,0.9057,0.00092,267.6696,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8313,81.4797,10.4598,23.376,402.5449,35.4098,0.06,83.1578,0.2246,5.966,26.824,4.902,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.05,3511.082
-2241,0.90206,0.00092,267.68419,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83133,81.48216,10.46013,23.37671,402.55715,35.41087,0.06,83.16032,0.2246,5.967,26.827,4.903,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.06,3511.082
-2242,0.89842,0.00092,267.69878,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83136,81.48462,10.46046,23.37742,402.5694,35.41194,0.06,83.16284,0.2246,5.968,26.831,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.07,3511.082
-2243,0.89478,0.00092,267.71337,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83139,81.48708,10.46079,23.37813,402.58165,35.41301,0.06,83.16536,0.2246,5.968,26.834,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.08,3511.082
-2244,0.89114,0.00092,267.72796,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83142,81.48954,10.46112,23.37884,402.5939,35.41408,0.06,83.16788,0.2246,5.969,26.837,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.09,3511.082
-2245,0.8875,0.00092,267.74255,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83145,81.492,10.46145,23.37955,402.60615,35.41515,0.06,83.1704,0.2246,5.97,26.84,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.1,3511.082
-2246,0.88386,0.00092,267.75714,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83148,81.49446,10.46178,23.38026,402.6184,35.41622,0.06,83.17292,0.2246,5.971,26.843,4.906,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.11,3511.082
-2247,0.88022,0.00092,267.77173,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83151,81.49692,10.46211,23.38097,402.63065,35.41729,0.06,83.17544,0.2246,5.971,26.847,4.906,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.12,3511.082
-2248,0.87658,0.00092,267.78632,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83154,81.49938,10.46244,23.38168,402.6429,35.41836,0.06,83.17796,0.2246,5.972,26.85,4.907,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.13,3511.082
-2249,0.87294,0.00092,267.80091,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83157,81.50184,10.46277,23.38239,402.65515,35.41943,0.06,83.18048,0.2246,5.973,26.853,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.139,3511.082
-2250,0.8693,0.00092,267.8155,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8316,81.5043,10.4631,23.3831,402.6674,35.4205,0.06,83.183,0.2246,5.973,26.856,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.149,3511.082
-2251,0.8661,0.00092,267.82946,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83162,81.50668,10.46339,23.38378,402.67913,35.42153,0.06,83.18543,0.2246,5.974,26.859,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.159,3511.082
-2252,0.8629,0.00092,267.84342,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83164,81.50906,10.46368,23.38446,402.69086,35.42256,0.06,83.18786,0.2246,5.975,26.862,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.168,3511.082
-2253,0.8597,0.00092,267.85738,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83166,81.51144,10.46397,23.38514,402.70259,35.42359,0.06,83.19029,0.2246,5.975,26.865,4.91,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.178,3511.082
-2254,0.8565,0.00092,267.87134,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83168,81.51382,10.46426,23.38582,402.71432,35.42462,0.06,83.19272,0.2246,5.976,26.868,4.91,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.188,3511.082
-2255,0.8533,0.00092,267.8853,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8317,81.5162,10.46455,23.3865,402.72605,35.42565,0.06,83.19515,0.2246,5.977,26.871,4.911,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.197,3511.082
-2256,0.8501,0.00092,267.89926,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83172,81.51858,10.46484,23.38718,402.73778,35.42668,0.06,83.19758,0.2246,5.977,26.874,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.207,3511.082
-2257,0.8469,0.00092,267.91322,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83174,81.52096,10.46513,23.38786,402.74951,35.42771,0.06,83.20001,0.2246,5.978,26.877,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.216,3511.082
-2258,0.8437,0.00092,267.92718,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83176,81.52334,10.46542,23.38854,402.76124,35.42874,0.06,83.20244,0.2246,5.979,26.88,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.226,3511.082
-2259,0.8405,0.00092,267.94114,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83178,81.52572,10.46571,23.38922,402.77297,35.42977,0.06,83.20487,0.2246,5.979,26.883,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.235,3511.082
-2260,0.8373,0.00092,267.9551,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8318,81.5281,10.466,23.3899,402.7847,35.4308,0.06,83.2073,0.2246,5.98,26.886,4.914,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.244,3511.082
-2261,0.83445,0.00092,267.96848,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83182,81.53037,10.46631,23.39054,402.7959,35.43178,0.06001,83.20961,0.2246,5.981,26.889,4.914,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.253,3511.082
-2262,0.8316,0.00092,267.98186,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83184,81.53264,10.46662,23.39118,402.8071,35.43276,0.06002,83.21192,0.2246,5.981,26.892,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.263,3511.082
-2263,0.82875,0.00092,267.99524,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83186,81.53491,10.46693,23.39182,402.8183,35.43374,0.06003,83.21423,0.2246,5.982,26.895,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.272,3511.082
-2264,0.8259,0.00092,268.00862,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83188,81.53718,10.46724,23.39246,402.8295,35.43472,0.06004,83.21654,0.2246,5.983,26.898,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.281,3511.082
-2265,0.82305,0.00092,268.022,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8319,81.53945,10.46755,23.3931,402.8407,35.4357,0.06005,83.21885,0.2246,5.983,26.901,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.29,3511.082
-2266,0.8202,0.00092,268.03538,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83192,81.54172,10.46786,23.39374,402.8519,35.43668,0.06006,83.22116,0.2246,5.984,26.904,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.299,3511.082
-2267,0.81735,0.00092,268.04876,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83194,81.54399,10.46817,23.39438,402.8631,35.43766,0.06007,83.22347,0.2246,5.985,26.907,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.308,3511.082
-2268,0.8145,0.00092,268.06214,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83196,81.54626,10.46848,23.39502,402.8743,35.43864,0.06008,83.22578,0.2246,5.985,26.91,4.918,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.317,3511.082
-2269,0.81165,0.00092,268.07552,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83198,81.54853,10.46879,23.39566,402.8855,35.43962,0.06009,83.22809,0.2246,5.986,26.912,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.326,3511.082
-2270,0.8088,0.00092,268.0889,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.832,81.5508,10.4691,23.3963,402.8967,35.4406,0.0601,83.2304,0.2246,5.987,26.915,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.335,3511.082
-2271,0.80629,0.00092,268.10174,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83202,81.55298,10.46937,23.39694,402.90748,35.44156,0.0601,83.23262,0.2246,5.987,26.918,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.344,3511.082
-2272,0.80378,0.00092,268.11458,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83204,81.55516,10.46964,23.39758,402.91826,35.44252,0.0601,83.23484,0.2246,5.988,26.921,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.353,3511.082
-2273,0.80127,0.00092,268.12742,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83206,81.55734,10.46991,23.39822,402.92904,35.44348,0.0601,83.23706,0.2246,5.988,26.924,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.362,3511.082
-2274,0.79876,0.00092,268.14026,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83208,81.55952,10.47018,23.39886,402.93982,35.44444,0.0601,83.23928,0.2246,5.989,26.927,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.371,3511.082
-2275,0.79625,0.00092,268.1531,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8321,81.5617,10.47045,23.3995,402.9506,35.4454,0.0601,83.2415,0.2246,5.99,26.929,4.922,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.379,3511.082
-2276,0.79374,0.00092,268.16594,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83212,81.56388,10.47072,23.40014,402.96138,35.44636,0.0601,83.24372,0.2246,5.99,26.932,4.922,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.388,3511.082
-2277,0.79123,0.00092,268.17878,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83214,81.56606,10.47099,23.40078,402.97216,35.44732,0.0601,83.24594,0.2246,5.991,26.935,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.397,3511.082
-2278,0.78872,0.00092,268.19162,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83216,81.56824,10.47126,23.40142,402.98294,35.44828,0.0601,83.24816,0.2246,5.992,26.938,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.406,3511.082
-2279,0.78621,0.00092,268.20446,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83218,81.57042,10.47153,23.40206,402.99372,35.44924,0.0601,83.25038,0.2246,5.992,26.94,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.414,3511.082
-2280,0.7837,0.00092,268.2173,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8322,81.5726,10.4718,23.4027,403.0045,35.4502,0.0601,83.2526,0.2246,5.993,26.943,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.423,3511.082
-2281,0.78142,0.00092,268.22963,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83223,81.5747,10.47207,23.4033,403.01486,35.45111,0.0601,83.25474,0.2246,5.993,26.946,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.431,3511.082
-2282,0.77914,0.00092,268.24196,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83226,81.5768,10.47234,23.4039,403.02522,35.45202,0.0601,83.25688,0.2246,5.994,26.949,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.44,3511.082
-2283,0.77686,0.00092,268.25429,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83229,81.5789,10.47261,23.4045,403.03558,35.45293,0.0601,83.25902,0.2246,5.995,26.951,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.448,3511.082
-2284,0.77458,0.00092,268.26662,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83232,81.581,10.47288,23.4051,403.04594,35.45384,0.0601,83.26116,0.2246,5.995,26.954,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.457,3511.082
-2285,0.7723,0.00092,268.27895,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83235,81.5831,10.47315,23.4057,403.0563,35.45475,0.0601,83.2633,0.2246,5.996,26.957,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.465,3511.082
-2286,0.77002,0.00092,268.29128,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83238,81.5852,10.47342,23.4063,403.06666,35.45566,0.0601,83.26544,0.2246,5.996,26.959,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.473,3511.082
-2287,0.76774,0.00092,268.30361,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83241,81.5873,10.47369,23.4069,403.07702,35.45657,0.0601,83.26758,0.2246,5.997,26.962,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.482,3511.082
-2288,0.76546,0.00092,268.31594,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83244,81.5894,10.47396,23.4075,403.08738,35.45748,0.0601,83.26972,0.2246,5.998,26.965,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.49,3511.082
-2289,0.76318,0.00092,268.32827,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83247,81.5915,10.47423,23.4081,403.09774,35.45839,0.0601,83.27186,0.2246,5.998,26.967,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.498,3511.082
-2290,0.7609,0.00092,268.3406,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8325,81.5936,10.4745,23.4087,403.1081,35.4593,0.0601,83.274,0.2246,5.999,26.97,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.507,3511.082
-2291,0.75884,0.00092,268.35247,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83251,81.59562,10.47475,23.40928,403.11806,35.46017,0.06011,83.27607,0.2246,5.999,26.972,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.515,3511.082
-2292,0.75678,0.00092,268.36434,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83252,81.59764,10.475,23.40986,403.12802,35.46104,0.06012,83.27814,0.2246,6,26.975,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.523,3511.082
-2293,0.75472,0.00092,268.37621,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83253,81.59966,10.47525,23.41044,403.13798,35.46191,0.06013,83.28021,0.2246,6,26.978,4.93,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.531,3511.082
-2294,0.75266,0.00092,268.38808,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83254,81.60168,10.4755,23.41102,403.14794,35.46278,0.06014,83.28228,0.2246,6.001,26.98,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.539,3511.082
-2295,0.7506,0.00092,268.39995,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83255,81.6037,10.47575,23.4116,403.1579,35.46365,0.06015,83.28435,0.2246,6.002,26.983,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.547,3511.082
-2296,0.74854,0.00092,268.41182,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83256,81.60572,10.476,23.41218,403.16786,35.46452,0.06016,83.28642,0.2246,6.002,26.985,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.555,3511.082
-2297,0.74648,0.00092,268.42369,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83257,81.60774,10.47625,23.41276,403.17782,35.46539,0.06017,83.28849,0.2246,6.003,26.988,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.564,3511.082
-2298,0.74442,0.00092,268.43556,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83258,81.60976,10.4765,23.41334,403.18778,35.46626,0.06018,83.29056,0.2246,6.003,26.991,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.572,3511.082
-2299,0.74236,0.00092,268.44743,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83259,81.61178,10.47675,23.41392,403.19774,35.46713,0.06019,83.29263,0.2246,6.004,26.993,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.579,3511.082
-2300,0.7403,0.00092,268.4593,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8326,81.6138,10.477,23.4145,403.2077,35.468,0.0602,83.2947,0.2246,6.004,26.996,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.587,3511.082
-2301,0.738714,0.00092,268.46999,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83262,81.615616,10.477238,23.41502,403.21667,35.46879,0.0602,83.296552,0.2246,6.005,26.998,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.595,3511.082
-2302,0.737128,0.00092,268.48068,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83264,81.617432,10.477476,23.41554,403.22564,35.46958,0.0602,83.298404,0.2246,6.006,27.001,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.603,3511.082
-2303,0.735542,0.00092,268.49136,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83266,81.619248,10.477714,23.41606,403.23461,35.47037,0.0602,83.300256,0.2246,6.006,27.003,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.611,3511.082
-2304,0.733956,0.00092,268.50205,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83268,81.621064,10.477952,23.41658,403.24358,35.47116,0.0602,83.302108,0.2246,6.007,27.006,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.619,3511.082
-2305,0.73237,0.00092,268.51274,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8327,81.62288,10.47819,23.4171,403.25255,35.47195,0.0602,83.30396,0.2246,6.007,27.008,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.627,3511.082
-2306,0.730784,0.00092,268.52343,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83272,81.624696,10.478428,23.41762,403.26152,35.47274,0.0602,83.305812,0.2246,6.008,27.011,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.634,3511.082
-2307,0.729198,0.00092,268.53412,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83274,81.626512,10.478666,23.41814,403.27049,35.47353,0.0602,83.307664,0.2246,6.008,27.013,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.642,3511.082
-2308,0.727612,0.00092,268.5448,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83276,81.628328,10.478904,23.41866,403.27946,35.47432,0.0602,83.309516,0.2246,6.009,27.016,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.65,3511.082
-2309,0.726026,0.00092,268.55549,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83278,81.630144,10.479142,23.41918,403.28843,35.47511,0.0602,83.311368,0.2246,6.009,27.018,4.938,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.658,3511.082
-2310,0.72444,0.00092,268.56618,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8328,81.63196,10.47938,23.4197,403.2974,35.4759,0.0602,83.31322,0.2246,6.01,27.02,4.938,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.665,3511.082
-2311,0.722854,0.00092,268.57687,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83282,81.633776,10.479618,23.42022,403.30637,35.47669,0.0602,83.315072,0.2246,6.011,27.023,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.673,3511.082
-2312,0.721268,0.00092,268.58756,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83284,81.635592,10.479856,23.42074,403.31534,35.47748,0.0602,83.316924,0.2246,6.011,27.025,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.68,3511.082
-2313,0.719682,0.00092,268.59824,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83286,81.637408,10.480094,23.42126,403.32431,35.47827,0.0602,83.318776,0.2246,6.012,27.028,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.688,3511.082
-2314,0.718096,0.00092,268.60893,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83288,81.639224,10.480332,23.42178,403.33328,35.47906,0.0602,83.320628,0.2246,6.012,27.03,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.696,3511.082
-2315,0.71651,0.00092,268.61962,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8329,81.64104,10.48057,23.4223,403.34225,35.47985,0.0602,83.32248,0.2246,6.013,27.032,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.703,3511.082
-2316,0.714924,0.00092,268.63031,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83292,81.642856,10.480808,23.42282,403.35122,35.48064,0.0602,83.324332,0.2246,6.013,27.035,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.711,3511.082
-2317,0.713338,0.00092,268.641,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83294,81.644672,10.481046,23.42334,403.36019,35.48143,0.0602,83.326184,0.2246,6.014,27.037,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.718,3511.082
-2318,0.711752,0.00092,268.65168,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83296,81.646488,10.481284,23.42386,403.36916,35.48222,0.0602,83.328036,0.2246,6.014,27.04,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.725,3511.082
-2319,0.710166,0.00092,268.66237,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83298,81.648304,10.481522,23.42438,403.37813,35.48301,0.0602,83.329888,0.2246,6.015,27.042,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.733,3511.082
-2320,0.70858,0.00092,268.67306,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.833,81.65012,10.48176,23.4249,403.3871,35.4838,0.0602,83.33174,0.2246,6.015,27.044,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.74,3511.082
-2321,0.706994,0.00092,268.68375,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83302,81.651936,10.481998,23.42542,403.39607,35.48459,0.0602,83.333592,0.2246,6.016,27.047,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.748,3511.082
-2322,0.705408,0.00092,268.69444,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83304,81.653752,10.482236,23.42594,403.40504,35.48538,0.0602,83.335444,0.2246,6.016,27.049,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.755,3511.082
-2323,0.703822,0.00092,268.70512,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83306,81.655568,10.482474,23.42646,403.41401,35.48617,0.0602,83.337296,0.2246,6.017,27.051,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.762,3511.082
-2324,0.702236,0.00092,268.71581,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83308,81.657384,10.482712,23.42698,403.42298,35.48696,0.0602,83.339148,0.2246,6.017,27.054,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.77,3511.082
-2325,0.70065,0.00092,268.7265,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8331,81.6592,10.48295,23.4275,403.43195,35.48775,0.0602,83.341,0.2246,6.018,27.056,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.777,3511.082
-2326,0.699064,0.00092,268.73719,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83312,81.661016,10.483188,23.42802,403.44092,35.48854,0.0602,83.342852,0.2246,6.018,27.058,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.784,3511.082
-2327,0.697478,0.00092,268.74788,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83314,81.662832,10.483426,23.42854,403.44989,35.48933,0.0602,83.344704,0.2246,6.019,27.061,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.791,3511.082
-2328,0.695892,0.00092,268.75856,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83316,81.664648,10.483664,23.42906,403.45886,35.49012,0.0602,83.346556,0.2246,6.019,27.063,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.798,3511.082
-2329,0.694306,0.00092,268.76925,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83318,81.666464,10.483902,23.42958,403.46783,35.49091,0.0602,83.348408,0.2246,6.02,27.065,4.946,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.806,3511.082
-2330,0.69272,0.00092,268.77994,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8332,81.66828,10.48414,23.4301,403.4768,35.4917,0.0602,83.35026,0.2246,6.02,27.067,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.813,3511.082
-2331,0.691134,0.00092,268.79063,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83322,81.670096,10.484378,23.43062,403.48577,35.49249,0.0602,83.352112,0.2246,6.021,27.07,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.82,3511.082
-2332,0.689548,0.00092,268.80132,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83324,81.671912,10.484616,23.43114,403.49474,35.49328,0.0602,83.353964,0.2246,6.021,27.072,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.827,3511.082
-2333,0.687962,0.00092,268.812,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83326,81.673728,10.484854,23.43166,403.50371,35.49407,0.0602,83.355816,0.2246,6.022,27.074,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.834,3511.082
-2334,0.686376,0.00092,268.82269,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83328,81.675544,10.485092,23.43218,403.51268,35.49486,0.0602,83.357668,0.2246,6.022,27.076,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.841,3511.082
-2335,0.68479,0.00092,268.83338,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8333,81.67736,10.48533,23.4327,403.52165,35.49565,0.0602,83.35952,0.2246,6.023,27.079,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.848,3511.082
-2336,0.683204,0.00092,268.84407,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83332,81.679176,10.485568,23.43322,403.53062,35.49644,0.0602,83.361372,0.2246,6.023,27.081,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.855,3511.082
-2337,0.681618,0.00092,268.85476,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83334,81.680992,10.485806,23.43374,403.53959,35.49723,0.0602,83.363224,0.2246,6.024,27.083,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.862,3511.082
-2338,0.680032,0.00092,268.86544,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83336,81.682808,10.486044,23.43426,403.54856,35.49802,0.0602,83.365076,0.2246,6.024,27.085,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.869,3511.082
-2339,0.678446,0.00092,268.87613,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83338,81.684624,10.486282,23.43478,403.55753,35.49881,0.0602,83.366928,0.2246,6.025,27.088,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.876,3511.082
-2340,0.67686,0.00092,268.88682,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8334,81.68644,10.48652,23.4353,403.5665,35.4996,0.0602,83.36878,0.2246,6.025,27.09,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.883,3511.082
-2341,0.675274,0.00092,268.89751,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83342,81.688256,10.486758,23.43582,403.57547,35.50039,0.0602,83.370632,0.2246,6.026,27.092,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.89,3511.082
-2342,0.673688,0.00092,268.9082,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83344,81.690072,10.486996,23.43634,403.58444,35.50118,0.0602,83.372484,0.2246,6.026,27.094,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.896,3511.082
-2343,0.672102,0.00092,268.91888,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83346,81.691888,10.487234,23.43686,403.59341,35.50197,0.0602,83.374336,0.2246,6.027,27.096,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.903,3511.082
-2344,0.670516,0.00092,268.92957,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83348,81.693704,10.487472,23.43738,403.60238,35.50276,0.0602,83.376188,0.2246,6.027,27.098,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.91,3511.082
-2345,0.66893,0.00092,268.94026,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8335,81.69552,10.48771,23.4379,403.61135,35.50355,0.0602,83.37804,0.2246,6.028,27.101,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.917,3511.082
-2346,0.667344,0.00092,268.95095,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83352,81.697336,10.487948,23.43842,403.62032,35.50434,0.0602,83.379892,0.2246,6.028,27.103,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.924,3511.082
-2347,0.665758,0.00092,268.96164,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83354,81.699152,10.488186,23.43894,403.62929,35.50513,0.0602,83.381744,0.2246,6.029,27.105,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.93,3511.082
-2348,0.664172,0.00092,268.97232,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83356,81.700968,10.488424,23.43946,403.63826,35.50592,0.0602,83.383596,0.2246,6.029,27.107,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.937,3511.082
-2349,0.662586,0.00092,268.98301,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83358,81.702784,10.488662,23.43998,403.64723,35.50671,0.0602,83.385448,0.2246,6.03,27.109,4.954,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.944,3511.082
-2350,0.661,0.00092,268.9937,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8336,81.7046,10.4889,23.4405,403.6562,35.5075,0.0602,83.3873,0.2246,6.03,27.111,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.951,3511.082
-2351,0.659886,0.00092,269.00281,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051304,0.0319,0.833618,81.706144,10.489098,23.440944,403.66384,35.508172,0.0602,83.388878,0.2246,6.031,27.113,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.957,3511.082
-2352,0.658772,0.00092,269.01192,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051308,0.0319,0.833636,81.707688,10.489296,23.441388,403.67149,35.508844,0.0602,83.390456,0.2246,6.031,27.116,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.964,3511.082
-2353,0.657658,0.00092,269.02102,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051312,0.0319,0.833654,81.709232,10.489494,23.441832,403.67913,35.509516,0.0602,83.392034,0.2246,6.032,27.118,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.97,3511.082
-2354,0.656544,0.00092,269.03013,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051316,0.0319,0.833672,81.710776,10.489692,23.442276,403.68678,35.510188,0.0602,83.393612,0.2246,6.032,27.12,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.977,3511.082
-2355,0.65543,0.00092,269.03924,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05132,0.0319,0.83369,81.71232,10.48989,23.44272,403.69442,35.51086,0.0602,83.39519,0.2246,6.033,27.122,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.984,3511.082
-2356,0.654316,0.00092,269.04835,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051324,0.0319,0.833708,81.713864,10.490088,23.443164,403.70206,35.511532,0.0602,83.396768,0.2246,6.033,27.124,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.99,3511.082
-2357,0.653202,0.00092,269.05746,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051328,0.0319,0.833726,81.715408,10.490286,23.443608,403.70971,35.512204,0.0602,83.398346,0.2246,6.033,27.126,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.997,3511.082
-2358,0.652088,0.00092,269.06656,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051332,0.0319,0.833744,81.716952,10.490484,23.444052,403.71735,35.512876,0.0602,83.399924,0.2246,6.034,27.128,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.003,3511.082
-2359,0.650974,0.00092,269.07567,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051336,0.0319,0.833762,81.718496,10.490682,23.444496,403.725,35.513548,0.0602,83.401502,0.2246,6.034,27.13,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.01,3511.082
-2360,0.64986,0.00092,269.08478,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05134,0.0319,0.83378,81.72004,10.49088,23.44494,403.73264,35.51422,0.0602,83.40308,0.2246,6.035,27.132,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.016,3511.082
-2361,0.648746,0.00092,269.09389,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051344,0.0319,0.833798,81.721584,10.491078,23.445384,403.74028,35.514892,0.0602,83.404658,0.2246,6.035,27.134,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.023,3511.082
-2362,0.647632,0.00092,269.103,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051348,0.0319,0.833816,81.723128,10.491276,23.445828,403.74793,35.515564,0.0602,83.406236,0.2246,6.036,27.136,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.029,3511.082
-2363,0.646518,0.00092,269.1121,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051352,0.0319,0.833834,81.724672,10.491474,23.446272,403.75557,35.516236,0.0602,83.407814,0.2246,6.036,27.138,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.035,3511.082
-2364,0.645404,0.00092,269.12121,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051356,0.0319,0.833852,81.726216,10.491672,23.446716,403.76322,35.516908,0.0602,83.409392,0.2246,6.037,27.14,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.042,3511.082
-2365,0.64429,0.00092,269.13032,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05136,0.0319,0.83387,81.72776,10.49187,23.44716,403.77086,35.51758,0.0602,83.41097,0.2246,6.037,27.142,4.961,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.048,3511.082
-2366,0.643176,0.00092,269.13943,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051364,0.0319,0.833888,81.729304,10.492068,23.447604,403.7785,35.518252,0.0602,83.412548,0.2246,6.038,27.144,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.055,3511.082
-2367,0.642062,0.00092,269.14854,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051368,0.0319,0.833906,81.730848,10.492266,23.448048,403.78615,35.518924,0.0602,83.414126,0.2246,6.038,27.147,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.061,3511.082
-2368,0.640948,0.00092,269.15764,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051372,0.0319,0.833924,81.732392,10.492464,23.448492,403.79379,35.519596,0.0602,83.415704,0.2246,6.038,27.149,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.067,3511.082
-2369,0.639834,0.00092,269.16675,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051376,0.0319,0.833942,81.733936,10.492662,23.448936,403.80144,35.520268,0.0602,83.417282,0.2246,6.039,27.151,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.073,3511.082
-2370,0.63872,0.00092,269.17586,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05138,0.0319,0.83396,81.73548,10.49286,23.44938,403.80908,35.52094,0.0602,83.41886,0.2246,6.039,27.153,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.08,3511.082
-2371,0.637606,0.00092,269.18497,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051384,0.0319,0.833978,81.737024,10.493058,23.449824,403.81672,35.521612,0.0602,83.420438,0.2246,6.04,27.155,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.086,3511.082
-2372,0.636492,0.00092,269.19408,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051388,0.0319,0.833996,81.738568,10.493256,23.450268,403.82437,35.522284,0.0602,83.422016,0.2246,6.04,27.157,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.092,3511.082
-2373,0.635378,0.00092,269.20318,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051392,0.0319,0.834014,81.740112,10.493454,23.450712,403.83201,35.522956,0.0602,83.423594,0.2246,6.041,27.158,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.098,3511.082
-2374,0.634264,0.00092,269.21229,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051396,0.0319,0.834032,81.741656,10.493652,23.451156,403.83966,35.523628,0.0602,83.425172,0.2246,6.041,27.16,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.105,3511.082
-2375,0.63315,0.00092,269.2214,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0514,0.0319,0.83405,81.7432,10.49385,23.4516,403.8473,35.5243,0.0602,83.42675,0.2246,6.042,27.162,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.111,3511.082
-2376,0.632036,0.00092,269.23051,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051404,0.0319,0.834068,81.744744,10.494048,23.452044,403.85494,35.524972,0.0602,83.428328,0.2246,6.042,27.164,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.117,3511.082
-2377,0.630922,0.00092,269.23962,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051408,0.0319,0.834086,81.746288,10.494246,23.452488,403.86259,35.525644,0.0602,83.429906,0.2246,6.042,27.166,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.123,3511.082
-2378,0.629808,0.00092,269.24872,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051412,0.0319,0.834104,81.747832,10.494444,23.452932,403.87023,35.526316,0.0602,83.431484,0.2246,6.043,27.168,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.129,3511.082
-2379,0.628694,0.00092,269.25783,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051416,0.0319,0.834122,81.749376,10.494642,23.453376,403.87788,35.526988,0.0602,83.433062,0.2246,6.043,27.17,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.135,3511.082
-2380,0.62758,0.00092,269.26694,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05142,0.0319,0.83414,81.75092,10.49484,23.45382,403.88552,35.52766,0.0602,83.43464,0.2246,6.044,27.172,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.141,3511.082
-2381,0.626466,0.00092,269.27605,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051424,0.0319,0.834158,81.752464,10.495038,23.454264,403.89316,35.528332,0.0602,83.436218,0.2246,6.044,27.174,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.148,3511.082
-2382,0.625352,0.00092,269.28516,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051428,0.0319,0.834176,81.754008,10.495236,23.454708,403.90081,35.529004,0.0602,83.437796,0.2246,6.045,27.176,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.154,3511.082
-2383,0.624238,0.00092,269.29426,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051432,0.0319,0.834194,81.755552,10.495434,23.455152,403.90845,35.529676,0.0602,83.439374,0.2246,6.045,27.178,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.16,3511.082
-2384,0.623124,0.00092,269.30337,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051436,0.0319,0.834212,81.757096,10.495632,23.455596,403.9161,35.530348,0.0602,83.440952,0.2246,6.045,27.18,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.166,3511.082
-2385,0.62201,0.00092,269.31248,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05144,0.0319,0.83423,81.75864,10.49583,23.45604,403.92374,35.53102,0.0602,83.44253,0.2246,6.046,27.182,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.172,3511.082
-2386,0.620896,0.00092,269.32159,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051444,0.0319,0.834248,81.760184,10.496028,23.456484,403.93138,35.531692,0.0602,83.444108,0.2246,6.046,27.184,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.178,3511.082
-2387,0.619782,0.00092,269.3307,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051448,0.0319,0.834266,81.761728,10.496226,23.456928,403.93903,35.532364,0.0602,83.445686,0.2246,6.047,27.186,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.184,3511.082
-2388,0.618668,0.00092,269.3398,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051452,0.0319,0.834284,81.763272,10.496424,23.457372,403.94667,35.533036,0.0602,83.447264,0.2246,6.047,27.188,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.19,3511.082
-2389,0.617554,0.00092,269.34891,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051456,0.0319,0.834302,81.764816,10.496622,23.457816,403.95432,35.533708,0.0602,83.448842,0.2246,6.048,27.189,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.195,3511.082
-2390,0.61644,0.00092,269.35802,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05146,0.0319,0.83432,81.76636,10.49682,23.45826,403.96196,35.53438,0.0602,83.45042,0.2246,6.048,27.191,4.969,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.201,3511.082
-2391,0.615326,0.00092,269.36713,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051464,0.0319,0.834338,81.767904,10.497018,23.458704,403.9696,35.535052,0.0602,83.451998,0.2246,6.048,27.193,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.207,3511.082
-2392,0.614212,0.00092,269.37624,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051468,0.0319,0.834356,81.769448,10.497216,23.459148,403.97725,35.535724,0.0602,83.453576,0.2246,6.049,27.195,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.213,3511.082
-2393,0.613098,0.00092,269.38534,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051472,0.0319,0.834374,81.770992,10.497414,23.459592,403.98489,35.536396,0.0602,83.455154,0.2246,6.049,27.197,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.219,3511.082
-2394,0.611984,0.00092,269.39445,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051476,0.0319,0.834392,81.772536,10.497612,23.460036,403.99254,35.537068,0.0602,83.456732,0.2246,6.05,27.199,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.225,3511.082
-2395,0.61087,0.00092,269.40356,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05148,0.0319,0.83441,81.77408,10.49781,23.46048,404.00018,35.53774,0.0602,83.45831,0.2246,6.05,27.201,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.231,3511.082
-2396,0.609756,0.00092,269.41267,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051484,0.0319,0.834428,81.775624,10.498008,23.460924,404.00782,35.538412,0.0602,83.459888,0.2246,6.05,27.203,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.237,3511.082
-2397,0.608642,0.00092,269.42178,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051488,0.0319,0.834446,81.777168,10.498206,23.461368,404.01547,35.539084,0.0602,83.461466,0.2246,6.051,27.204,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.242,3511.082
-2398,0.607528,0.00092,269.43088,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051492,0.0319,0.834464,81.778712,10.498404,23.461812,404.02311,35.539756,0.0602,83.463044,0.2246,6.051,27.206,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.248,3511.082
-2399,0.606414,0.00092,269.43999,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051496,0.0319,0.834482,81.780256,10.498602,23.462256,404.03076,35.540428,0.0602,83.464622,0.2246,6.052,27.208,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.254,3511.082
-2400,0.6053,0.00092,269.4491,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.8345,81.7818,10.4988,23.4627,404.0384,35.5411,0.0602,83.4662,0.2246,6.052,27.21,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.26,3511.082
-2401,0.604434,0.00092,269.45702,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834514,81.783148,10.498972,23.463086,404.04505,35.541686,0.060202,83.467576,0.2246,6.053,27.212,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.265,3511.082
-2402,0.603568,0.00092,269.46495,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834528,81.784496,10.499144,23.463472,404.0517,35.542272,0.060204,83.468952,0.2246,6.053,27.214,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.271,3511.082
-2403,0.602702,0.00092,269.47287,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834542,81.785844,10.499316,23.463858,404.05835,35.542858,0.060206,83.470328,0.2246,6.053,27.215,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.277,3511.082
-2404,0.601836,0.00092,269.4808,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834556,81.787192,10.499488,23.464244,404.065,35.543444,0.060208,83.471704,0.2246,6.054,27.217,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.282,3511.082
-2405,0.60097,0.00092,269.48872,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83457,81.78854,10.49966,23.46463,404.07165,35.54403,0.06021,83.47308,0.2246,6.054,27.219,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.288,3511.082
-2406,0.600104,0.00092,269.49664,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834584,81.789888,10.499832,23.465016,404.0783,35.544616,0.060212,83.474456,0.2246,6.055,27.221,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.294,3511.082
-2407,0.599238,0.00092,269.50457,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834598,81.791236,10.500004,23.465402,404.08495,35.545202,0.060214,83.475832,0.2246,6.055,27.223,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.299,3511.082
-2408,0.598372,0.00092,269.51249,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834612,81.792584,10.500176,23.465788,404.0916,35.545788,0.060216,83.477208,0.2246,6.055,27.224,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.305,3511.082
-2409,0.597506,0.00092,269.52042,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834626,81.793932,10.500348,23.466174,404.09825,35.546374,0.060218,83.478584,0.2246,6.056,27.226,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.311,3511.082
-2410,0.59664,0.00092,269.52834,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83464,81.79528,10.50052,23.46656,404.1049,35.54696,0.06022,83.47996,0.2246,6.056,27.228,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.316,3511.082
-2411,0.595774,0.00092,269.53626,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834654,81.796628,10.500692,23.466946,404.11155,35.547546,0.060222,83.481336,0.2246,6.057,27.23,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.322,3511.082
-2412,0.594908,0.00092,269.54419,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834668,81.797976,10.500864,23.467332,404.1182,35.548132,0.060224,83.482712,0.2246,6.057,27.231,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.327,3511.082
-2413,0.594042,0.00092,269.55211,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834682,81.799324,10.501036,23.467718,404.12485,35.548718,0.060226,83.484088,0.2246,6.057,27.233,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.333,3511.082
-2414,0.593176,0.00092,269.56004,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834696,81.800672,10.501208,23.468104,404.1315,35.549304,0.060228,83.485464,0.2246,6.058,27.235,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.338,3511.082
-2415,0.59231,0.00092,269.56796,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83471,81.80202,10.50138,23.46849,404.13815,35.54989,0.06023,83.48684,0.2246,6.058,27.237,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.344,3511.082
-2416,0.591444,0.00092,269.57588,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834724,81.803368,10.501552,23.468876,404.1448,35.550476,0.060232,83.488216,0.2246,6.058,27.239,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.349,3511.082
-2417,0.590578,0.00092,269.58381,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834738,81.804716,10.501724,23.469262,404.15145,35.551062,0.060234,83.489592,0.2246,6.059,27.24,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.355,3511.082
-2418,0.589712,0.00092,269.59173,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834752,81.806064,10.501896,23.469648,404.1581,35.551648,0.060236,83.490968,0.2246,6.059,27.242,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.36,3511.082
-2419,0.588846,0.00092,269.59966,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834766,81.807412,10.502068,23.470034,404.16475,35.552234,0.060238,83.492344,0.2246,6.06,27.244,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.366,3511.082
-2420,0.58798,0.00092,269.60758,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83478,81.80876,10.50224,23.47042,404.1714,35.55282,0.06024,83.49372,0.2246,6.06,27.245,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.371,3511.082
-2421,0.587114,0.00092,269.6155,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834794,81.810108,10.502412,23.470806,404.17805,35.553406,0.060242,83.495096,0.2246,6.06,27.247,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.377,3511.082
-2422,0.586248,0.00092,269.62343,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834808,81.811456,10.502584,23.471192,404.1847,35.553992,0.060244,83.496472,0.2246,6.061,27.249,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.382,3511.082
-2423,0.585382,0.00092,269.63135,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834822,81.812804,10.502756,23.471578,404.19135,35.554578,0.060246,83.497848,0.2246,6.061,27.251,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.388,3511.082
-2424,0.584516,0.00092,269.63928,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834836,81.814152,10.502928,23.471964,404.198,35.555164,0.060248,83.499224,0.2246,6.062,27.252,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.393,3511.082
-2425,0.58365,0.00092,269.6472,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83485,81.8155,10.5031,23.47235,404.20465,35.55575,0.06025,83.5006,0.2246,6.062,27.254,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.398,3511.082
-2426,0.582784,0.00092,269.65512,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834864,81.816848,10.503272,23.472736,404.2113,35.556336,0.060252,83.501976,0.2246,6.062,27.256,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.404,3511.082
-2427,0.581918,0.00092,269.66305,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834878,81.818196,10.503444,23.473122,404.21795,35.556922,0.060254,83.503352,0.2246,6.063,27.257,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.409,3511.082
-2428,0.581052,0.00092,269.67097,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834892,81.819544,10.503616,23.473508,404.2246,35.557508,0.060256,83.504728,0.2246,6.063,27.259,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.414,3511.082
-2429,0.580186,0.00092,269.6789,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834906,81.820892,10.503788,23.473894,404.23125,35.558094,0.060258,83.506104,0.2246,6.063,27.261,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.42,3511.082
-2430,0.57932,0.00092,269.68682,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83492,81.82224,10.50396,23.47428,404.2379,35.55868,0.06026,83.50748,0.2246,6.064,27.263,4.983,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.425,3511.082
-2431,0.578454,0.00092,269.69474,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834934,81.823588,10.504132,23.474666,404.24455,35.559266,0.060262,83.508856,0.2246,6.064,27.264,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.43,3511.082
-2432,0.577588,0.00092,269.70267,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834948,81.824936,10.504304,23.475052,404.2512,35.559852,0.060264,83.510232,0.2246,6.065,27.266,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.436,3511.082
-2433,0.576722,0.00092,269.71059,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834962,81.826284,10.504476,23.475438,404.25785,35.560438,0.060266,83.511608,0.2246,6.065,27.268,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.441,3511.082
-2434,0.575856,0.00092,269.71852,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834976,81.827632,10.504648,23.475824,404.2645,35.561024,0.060268,83.512984,0.2246,6.065,27.269,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.446,3511.082
-2435,0.57499,0.00092,269.72644,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83499,81.82898,10.50482,23.47621,404.27115,35.56161,0.06027,83.51436,0.2246,6.066,27.271,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.451,3511.082
-2436,0.574124,0.00092,269.73436,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835004,81.830328,10.504992,23.476596,404.2778,35.562196,0.060272,83.515736,0.2246,6.066,27.273,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.457,3511.082
-2437,0.573258,0.00092,269.74229,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835018,81.831676,10.505164,23.476982,404.28445,35.562782,0.060274,83.517112,0.2246,6.066,27.274,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.462,3511.082
-2438,0.572392,0.00092,269.75021,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835032,81.833024,10.505336,23.477368,404.2911,35.563368,0.060276,83.518488,0.2246,6.067,27.276,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.467,3511.082
-2439,0.571526,0.00092,269.75814,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835046,81.834372,10.505508,23.477754,404.29775,35.563954,0.060278,83.519864,0.2246,6.067,27.278,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.472,3511.082
-2440,0.57066,0.00092,269.76606,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83506,81.83572,10.50568,23.47814,404.3044,35.56454,0.06028,83.52124,0.2246,6.068,27.279,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.477,3511.082
-2441,0.569794,0.00092,269.77398,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835074,81.837068,10.505852,23.478526,404.31105,35.565126,0.060282,83.522616,0.2246,6.068,27.281,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.482,3511.082
-2442,0.568928,0.00092,269.78191,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835088,81.838416,10.506024,23.478912,404.3177,35.565712,0.060284,83.523992,0.2246,6.068,27.283,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.488,3511.082
-2443,0.568062,0.00092,269.78983,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835102,81.839764,10.506196,23.479298,404.32435,35.566298,0.060286,83.525368,0.2246,6.069,27.284,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.493,3511.082
-2444,0.567196,0.00092,269.79776,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835116,81.841112,10.506368,23.479684,404.331,35.566884,0.060288,83.526744,0.2246,6.069,27.286,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.498,3511.082
-2445,0.56633,0.00092,269.80568,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83513,81.84246,10.50654,23.48007,404.33765,35.56747,0.06029,83.52812,0.2246,6.069,27.287,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.503,3511.082
-2446,0.565464,0.00092,269.8136,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835144,81.843808,10.506712,23.480456,404.3443,35.568056,0.060292,83.529496,0.2246,6.07,27.289,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.508,3511.082
-2447,0.564598,0.00092,269.82153,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835158,81.845156,10.506884,23.480842,404.35095,35.568642,0.060294,83.530872,0.2246,6.07,27.291,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.513,3511.082
-2448,0.563732,0.00092,269.82945,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835172,81.846504,10.507056,23.481228,404.3576,35.569228,0.060296,83.532248,0.2246,6.07,27.292,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.518,3511.082
-2449,0.562866,0.00092,269.83738,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835186,81.847852,10.507228,23.481614,404.36425,35.569814,0.060298,83.533624,0.2246,6.071,27.294,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.523,3511.082
-2450,0.562,0.00092,269.8453,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.8352,81.8492,10.5074,23.482,404.3709,35.5704,0.0603,83.535,0.2246,6.071,27.295,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.528,3511.082
-2451,0.56425,0.00092,269.82627,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051496,0.0319,0.835164,81.845968,10.506984,23.481072,404.35493,35.568994,0.060298,83.531698,0.2246,6.072,27.297,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.533,3511.082
-2452,0.5665,0.00092,269.80724,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051492,0.0319,0.835128,81.842736,10.506568,23.480144,404.33896,35.567588,0.060296,83.528396,0.2246,6.072,27.299,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.538,3511.082
-2453,0.56875,0.00092,269.7882,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051488,0.0319,0.835092,81.839504,10.506152,23.479216,404.32299,35.566182,0.060294,83.525094,0.2246,6.072,27.3,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.543,3511.082
-2454,0.571,0.00092,269.76917,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051484,0.0319,0.835056,81.836272,10.505736,23.478288,404.30702,35.564776,0.060292,83.521792,0.2246,6.073,27.302,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.548,3511.082
-2455,0.57325,0.00092,269.75014,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05148,0.0319,0.83502,81.83304,10.50532,23.47736,404.29105,35.56337,0.06029,83.51849,0.2246,6.073,27.303,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.553,3511.082
-2456,0.5755,0.00092,269.73111,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051476,0.0319,0.834984,81.829808,10.504904,23.476432,404.27508,35.561964,0.060288,83.515188,0.2246,6.073,27.305,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.558,3511.082
-2457,0.57775,0.00092,269.71208,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051472,0.0319,0.834948,81.826576,10.504488,23.475504,404.25911,35.560558,0.060286,83.511886,0.2246,6.074,27.307,4.991,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.563,3511.082
-2458,0.58,0.00092,269.69304,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051468,0.0319,0.834912,81.823344,10.504072,23.474576,404.24314,35.559152,0.060284,83.508584,0.2246,6.074,27.308,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.568,3511.082
-2459,0.58225,0.00092,269.67401,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051464,0.0319,0.834876,81.820112,10.503656,23.473648,404.22717,35.557746,0.060282,83.505282,0.2246,6.074,27.31,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.573,3511.082
-2460,0.5845,0.00092,269.65498,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05146,0.0319,0.83484,81.81688,10.50324,23.47272,404.2112,35.55634,0.06028,83.50198,0.2246,6.075,27.311,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.578,3511.082
-2461,0.58675,0.00092,269.63595,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051456,0.0319,0.834804,81.813648,10.502824,23.471792,404.19523,35.554934,0.060278,83.498678,0.2246,6.075,27.313,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.583,3511.082
-2462,0.589,0.00092,269.61692,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051452,0.0319,0.834768,81.810416,10.502408,23.470864,404.17926,35.553528,0.060276,83.495376,0.2246,6.075,27.314,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.588,3511.082
-2463,0.59125,0.00092,269.59788,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051448,0.0319,0.834732,81.807184,10.501992,23.469936,404.16329,35.552122,0.060274,83.492074,0.2246,6.076,27.316,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.593,3511.082
-2464,0.5935,0.00092,269.57885,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051444,0.0319,0.834696,81.803952,10.501576,23.469008,404.14732,35.550716,0.060272,83.488772,0.2246,6.076,27.318,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.597,3511.082
-2465,0.59575,0.00092,269.55982,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05144,0.0319,0.83466,81.80072,10.50116,23.46808,404.13135,35.54931,0.06027,83.48547,0.2246,6.076,27.319,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.602,3511.082
-2466,0.598,0.00092,269.54079,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051436,0.0319,0.834624,81.797488,10.500744,23.467152,404.11538,35.547904,0.060268,83.482168,0.2246,6.077,27.321,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.607,3511.082
-2467,0.60025,0.00092,269.52176,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051432,0.0319,0.834588,81.794256,10.500328,23.466224,404.09941,35.546498,0.060266,83.478866,0.2246,6.077,27.322,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.612,3511.082
-2468,0.6025,0.00092,269.50272,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051428,0.0319,0.834552,81.791024,10.499912,23.465296,404.08344,35.545092,0.060264,83.475564,0.2246,6.077,27.324,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.617,3511.082
-2469,0.60475,0.00092,269.48369,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051424,0.0319,0.834516,81.787792,10.499496,23.464368,404.06747,35.543686,0.060262,83.472262,0.2246,6.078,27.325,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.622,3511.082
-2470,0.607,0.00092,269.46466,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05142,0.0319,0.83448,81.78456,10.49908,23.46344,404.0515,35.54228,0.06026,83.46896,0.2246,6.078,27.327,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.626,3511.082
-2471,0.60925,0.00092,269.44563,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051416,0.0319,0.834444,81.781328,10.498664,23.462512,404.03553,35.540874,0.060258,83.465658,0.2246,6.078,27.328,4.995,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.631,3511.082
-2472,0.6115,0.00092,269.4266,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051412,0.0319,0.834408,81.778096,10.498248,23.461584,404.01956,35.539468,0.060256,83.462356,0.2246,6.079,27.33,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.636,3511.082
-2473,0.61375,0.00092,269.40756,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051408,0.0319,0.834372,81.774864,10.497832,23.460656,404.00359,35.538062,0.060254,83.459054,0.2246,6.079,27.331,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.641,3511.082
-2474,0.616,0.00092,269.38853,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051404,0.0319,0.834336,81.771632,10.497416,23.459728,403.98762,35.536656,0.060252,83.455752,0.2246,6.079,27.333,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.645,3511.082
-2475,0.61825,0.00092,269.3695,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0514,0.0319,0.8343,81.7684,10.497,23.4588,403.97165,35.53525,0.06025,83.45245,0.2246,6.08,27.334,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.65,3511.082
-2476,0.6205,0.00092,269.35047,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051396,0.0319,0.834264,81.765168,10.496584,23.457872,403.95568,35.533844,0.060248,83.449148,0.2246,6.08,27.336,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.655,3511.082
-2477,0.62275,0.00092,269.33144,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051392,0.0319,0.834228,81.761936,10.496168,23.456944,403.93971,35.532438,0.060246,83.445846,0.2246,6.08,27.337,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.66,3511.082
-2478,0.625,0.00092,269.3124,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051388,0.0319,0.834192,81.758704,10.495752,23.456016,403.92374,35.531032,0.060244,83.442544,0.2246,6.081,27.339,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.664,3511.082
-2479,0.62725,0.00092,269.29337,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051384,0.0319,0.834156,81.755472,10.495336,23.455088,403.90777,35.529626,0.060242,83.439242,0.2246,6.081,27.34,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.669,3511.082
-2480,0.6295,0.00092,269.27434,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05138,0.0319,0.83412,81.75224,10.49492,23.45416,403.8918,35.52822,0.06024,83.43594,0.2246,6.081,27.342,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.674,3511.082
-2481,0.63175,0.00092,269.25531,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051376,0.0319,0.834084,81.749008,10.494504,23.453232,403.87583,35.526814,0.060238,83.432638,0.2246,6.082,27.343,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.678,3511.082
-2482,0.634,0.00092,269.23628,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051372,0.0319,0.834048,81.745776,10.494088,23.452304,403.85986,35.525408,0.060236,83.429336,0.2246,6.082,27.345,4.998,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.683,3511.082
-2483,0.63625,0.00092,269.21724,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051368,0.0319,0.834012,81.742544,10.493672,23.451376,403.84389,35.524002,0.060234,83.426034,0.2246,6.082,27.346,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.688,3511.082
-2484,0.6385,0.00092,269.19821,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051364,0.0319,0.833976,81.739312,10.493256,23.450448,403.82792,35.522596,0.060232,83.422732,0.2246,6.083,27.348,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.692,3511.082
-2485,0.64075,0.00092,269.17918,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05136,0.0319,0.83394,81.73608,10.49284,23.44952,403.81195,35.52119,0.06023,83.41943,0.2246,6.083,27.349,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.697,3511.082
-2486,0.643,0.00092,269.16015,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051356,0.0319,0.833904,81.732848,10.492424,23.448592,403.79598,35.519784,0.060228,83.416128,0.2246,6.083,27.351,4.999,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.702,3511.082
-2487,0.64525,0.00092,269.14112,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051352,0.0319,0.833868,81.729616,10.492008,23.447664,403.78001,35.518378,0.060226,83.412826,0.2246,6.084,27.352,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.706,3511.082
-2488,0.6475,0.00092,269.12208,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051348,0.0319,0.833832,81.726384,10.491592,23.446736,403.76404,35.516972,0.060224,83.409524,0.2246,6.084,27.354,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.711,3511.082
-2489,0.64975,0.00092,269.10305,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051344,0.0319,0.833796,81.723152,10.491176,23.445808,403.74807,35.515566,0.060222,83.406222,0.2246,6.084,27.355,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.715,3511.082
-2490,0.652,0.00092,269.08402,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05134,0.0319,0.83376,81.71992,10.49076,23.44488,403.7321,35.51416,0.06022,83.40292,0.2246,6.085,27.357,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.72,3511.082
-2491,0.65425,0.00092,269.06499,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051336,0.0319,0.833724,81.716688,10.490344,23.443952,403.71613,35.512754,0.060218,83.399618,0.2246,6.085,27.358,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.725,3511.082
-2492,0.6565,0.00092,269.04596,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051332,0.0319,0.833688,81.713456,10.489928,23.443024,403.70016,35.511348,0.060216,83.396316,0.2246,6.085,27.359,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.729,3511.082
-2493,0.65875,0.00092,269.02692,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051328,0.0319,0.833652,81.710224,10.489512,23.442096,403.68419,35.509942,0.060214,83.393014,0.2246,6.086,27.361,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.734,3511.082
-2494,0.661,0.00092,269.00789,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051324,0.0319,0.833616,81.706992,10.489096,23.441168,403.66822,35.508536,0.060212,83.389712,0.2246,6.086,27.362,5.001,1.24,0.176,0.159,0,0.059,0.308,0.041,0.004,0.181,0,158.738,3511.082
-2495,0.66325,0.00092,268.98886,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05132,0.0319,0.83358,81.70376,10.48868,23.44024,403.65225,35.50713,0.06021,83.38641,0.2246,6.086,27.364,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.743,3511.082
-2496,0.6655,0.00092,268.96983,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051316,0.0319,0.833544,81.700528,10.488264,23.439312,403.63628,35.505724,0.060208,83.383108,0.2246,6.087,27.365,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.747,3511.082
-2497,0.66775,0.00092,268.9508,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051312,0.0319,0.833508,81.697296,10.487848,23.438384,403.62031,35.504318,0.060206,83.379806,0.2246,6.087,27.367,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.752,3511.082
-2498,0.67,0.00092,268.93176,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051308,0.0319,0.833472,81.694064,10.487432,23.437456,403.60434,35.502912,0.060204,83.376504,0.2246,6.087,27.368,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.756,3511.082
-2499,0.67225,0.00092,268.91273,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051304,0.0319,0.833436,81.690832,10.487016,23.436528,403.58837,35.501506,0.060202,83.373202,0.2246,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.761,3511.082
-2500,0.6745,0.00092,268.8937,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8334,81.6876,10.4866,23.4356,403.5724,35.5001,0.0602,83.3699,0.2246,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.761,3511.082
diff --git a/inst/shinyApp/www/input/emissions/RCP45_emissions.csv b/inst/shinyApp/www/input/emissions/RCP45_emissions.csv
deleted file mode 100644
index 7cf2a69..0000000
--- a/inst/shinyApp/www/input/emissions/RCP45_emissions.csv
+++ /dev/null
@@ -1,740 +0,0 @@
-; RCP4.5 Emissions, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,MtS/yr,GgS/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,MtN/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr
-Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SOx,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,NH3,CF4_emissions,C2F6_emissions,C6F14,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,HALON1202,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions
-1765,0.003,0,0,0,0,0,0,0,0,0,0,0.83383669,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1766,0.003,0.005338296,1.9632619,0.005191085,0.098882647,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.85423057,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1767,0.003,0.010676593,2.4364481,0.010116813,0.1163065,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.87416738,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1768,0.003,0.016014889,2.911105,0.015042803,0.13381075,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.89365446,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1769,0.003,0.021353185,3.3872782,0.019969063,0.15139789,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.91269911,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1770,0.003,0.026691482,3.8650146,0.024895601,0.16907049,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.93130867,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1771,0.004,0.032029778,4.3443625,0.029822427,0.18683119,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.95253247,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1772,0.004,0.037368074,4.8253718,0.034749548,0.20468271,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.97029378,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1773,0.004,0.042706371,5.3080938,0.039676975,0.22262786,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.98764194,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1774,0.004,0.048044667,5.7925816,0.044604715,0.24066954,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,1.0045843,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1775,0.004,0.053382963,6.2788896,0.04953278,0.25881073,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,1.0211281,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1776,0.004,0.058721259,6.7670743,0.05446118,0.27705451,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,1.0372808,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1777,0.004,0.064059556,7.2571937,0.059389923,0.29540406,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,1.0530496,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1778,0.004,0.069397852,7.7493076,0.064319022,0.31386264,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,1.0684418,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1779,0.004,0.074736148,8.2434776,0.069248487,0.33243362,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,1.0834648,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1780,0.004,0.080074445,8.7397674,0.07417833,0.35112049,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,1.0981259,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1781,0.005,0.085412741,9.2382426,0.079108562,0.36992683,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,1.1154744,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1782,0.005,0.090751037,9.7389706,0.084039195,0.38885633,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,1.1294337,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1783,0.005,0.096089334,10.242021,0.088970241,0.4079128,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,1.143053,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1784,0.005,0.10142763,10.747466,0.093901714,0.42710016,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,1.1563396,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1785,0.005,0.10676593,11.25538,0.098833627,0.44642248,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,1.169301,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1786,0.005,0.11210422,11.765839,0.10376599,0.46588391,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,1.1819444,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1787,0.005,0.11744252,12.278921,0.10869883,0.48548877,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,1.194277,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1788,0.005,0.12278082,12.794707,0.11363214,0.50524148,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,1.2063064,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1789,0.005,0.12811911,13.313282,0.11856595,0.52514663,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,1.2180397,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1790,0.005,0.13345741,13.834732,0.12350027,0.54520892,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,1.2294843,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1791,0.006,0.1387957,14.359145,0.12843512,0.56543322,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,1.2436895,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1792,0.006,0.144134,14.886613,0.13337052,0.58582453,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,1.2545786,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1793,0.006,0.1494723,15.417231,0.13830648,0.60638803,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,1.265201,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1794,0.006,0.15481059,15.951096,0.14324301,0.62712904,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,1.2755639,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1795,0.006,0.16014889,16.488308,0.14818014,0.64805304,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,1.2856747,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1796,0.006,0.16548719,17.028971,0.15311788,0.66916569,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,1.2955407,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1797,0.007,0.17082548,17.573192,0.15805626,0.69047284,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,1.3082113,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1798,0.007,0.17616378,18.121081,0.16299529,0.7119805,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,1.3176096,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1799,0.007,0.18150207,18.672751,0.167935,0.73369486,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,1.3267852,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1800,0.008,0.18684037,19.228319,0.1728754,0.75562233,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,1.3387872,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1801,0.008,0.19217867,19.787906,0.17781651,0.77776949,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,1.347539,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1802,0.01,0.19751696,20.351635,0.18275836,0.80014313,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,1.362174,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1803,0.009,0.20285526,20.919636,0.18770098,0.82275026,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,1.3674894,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1804,0.009,0.20819356,21.49204,0.19264437,0.84559811,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,1.3756605,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1805,0.009,0.21353185,22.068984,0.19758858,0.86869411,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,1.3836527,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1806,0.01,0.21887015,22.650607,0.20253362,0.89204595,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,1.3945153,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1807,0.01,0.22420845,23.237055,0.20747952,0.91566153,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,1.4021716,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1808,0.01,0.22954674,23.828476,0.2124263,0.93954901,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,1.409671,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1809,0.01,0.23488504,24.425025,0.217374,0.9637168,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,1.4170207,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1810,0.01,0.24022333,25.02686,0.22232264,0.98817358,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,1.424228,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1811,0.011,0.24556163,25.634145,0.22727225,1.0129283,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,1.4343424,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1812,0.011,0.25089993,26.247048,0.23222285,1.0379901,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,1.4412871,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1813,0.011,0.25623822,26.865743,0.2371745,1.0633685,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,1.4481114,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1814,0.011,0.26157652,27.490408,0.2421272,1.0890734,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,1.4548227,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1815,0.012,0.26691482,28.12123,0.247081,1.1151148,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,1.4644703,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1816,0.013,0.27225311,28.758398,0.25203593,1.1415031,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,1.4740194,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1817,0.014,0.27759141,29.402108,0.25699203,1.1682491,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,1.4834775,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1818,0.014,0.2829297,30.052563,0.26194932,1.1953638,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,1.4898097,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1819,0.014,0.288268,30.709971,0.26690786,1.2228586,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,1.4960655,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1820,0.014,0.2936063,31.374548,0.27186767,1.2507453,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,1.5022522,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1821,0.014,0.29894459,32.046514,0.2768288,1.279036,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,1.5083771,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1822,0.015,0.30428289,32.7261,0.28179128,1.3077432,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,1.5174895,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1823,0.016,0.30962119,33.413539,0.28675516,1.3368798,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,1.5265547,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1824,0.016,0.31495948,34.109076,0.29172049,1.366459,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,1.532538,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1825,0.017,0.32029778,34.81296,0.2966873,1.3964945,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,1.5415308,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1826,0.017,0.32563608,35.52545,0.30165564,1.4270005,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,1.5474564,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1827,0.018,0.33097437,36.246813,0.30662557,1.4579916,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,1.5564061,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1828,0.018,0.33631267,36.977321,0.31159712,1.4894826,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,1.5623033,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1829,0.018,0.34165096,37.717259,0.31657035,1.5214891,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,1.5681971,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1830,0.024,0.34698926,38.466917,0.32154532,1.554027,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,1.5923472,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1831,0.023,0.35232756,39.226597,0.32652206,1.5871128,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,1.5952145,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1832,0.023,0.35766585,39.996609,0.33150065,1.6207633,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,1.6011425,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1833,0.024,0.36300415,40.777271,0.33648114,1.6549962,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,1.6101385,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1834,0.024,0.36834245,41.568914,0.34146358,1.6898292,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,1.6161259,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1835,0.025,0.37368074,42.371876,0.34644803,1.7252812,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,1.6251959,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1836,0.029,0.37901904,43.186509,0.35143456,1.7613711,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,1.64344,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1837,0.029,0.38435733,44.013173,0.35642324,1.7981187,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,1.6495713,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1838,0.03,0.38969563,44.85224,0.36141413,1.8355443,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,1.6588072,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1839,0.031,0.39503393,45.704093,0.36640729,1.873669,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,1.6681131,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1840,0.032999999,0.40037222,46.569129,0.3714028,1.9125143,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,1.6805382,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1841,0.033999999,0.40571052,47.447755,0.37640073,1.9521025,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,1.6900059,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1842,0.035999999,0.41104882,48.34039,0.38140115,1.9924567,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,1.7026076,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1843,0.036999999,0.41638711,49.247469,0.38640415,2.0336004,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,1.7122664,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1844,0.038999999,0.42172541,50.169439,0.3914098,2.0755581,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,1.7250737,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1845,0.042999999,0.42706371,51.106759,0.39641818,2.118355,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,1.744079,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1846,0.042999999,0.432402,52.059904,0.40142938,2.1620171,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,1.7510373,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1847,0.045999999,0.4377403,53.029365,0.40644349,2.206571,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,1.7672503,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1848,0.046999999,0.44307859,54.015644,0.41146059,2.2520444,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,1.7775149,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1849,0.049999999,0.44841689,55.019264,0.41648078,2.2984658,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,1.7940068,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1850,0.053999999,0.45375519,56.040759,0.42150415,2.3458644,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,1.8136911,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,0,157.267,3100.211
-1851,0.053999999,0.44678569,56.46132,0.42740096,2.401282,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,1.8469194,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,0,157.267,3100.211
-1852,0.056999999,0.49862282,56.88188,0.46466062,2.4566996,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,1.9946876,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,0,157.267,3100.211
-1853,0.058999999,0.49735449,57.302441,0.46477417,2.5121172,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,2.0008114,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,0,157.267,3100.211
-1854,0.068999999,0.49581708,57.723001,0.46443647,2.5675348,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,2.0303036,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,0,157.267,3100.211
-1855,0.070999999,0.49367925,58.143562,0.46327909,2.6229524,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,2.0325148,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,0,157.267,3100.211
-1856,0.075999999,0.49893488,58.564122,0.46729312,2.6783701,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,2.0617637,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,0,157.267,3100.211
-1857,0.076999999,0.504232,58.984683,0.47126447,2.7337877,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,2.078453,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,0,157.267,3100.211
-1858,0.077999999,0.50923298,59.405243,0.47503119,2.7892053,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,2.0943024,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,0,157.267,3100.211
-1859,0.082999999,0.51425389,59.825804,0.47876627,2.8446229,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,2.122971,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,0,157.267,3100.211
-1860,0.090999999,0.51896689,60.246364,0.48257672,2.9000405,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,2.1619782,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,0,157.267,3100.211
-1861,0.094999998,0.5282236,59.614468,0.50499476,2.9926781,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,2.2735927,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,0,157.267,3100.211
-1862,0.096999998,0.47371663,58.982573,0.47111281,3.0853157,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,2.1558166,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,0,157.267,3100.211
-1863,0.104,0.47374912,58.350677,0.47444935,3.1779532,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,2.192329,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,0,157.267,3100.211
-1864,0.112,0.47413825,57.718781,0.47785801,3.2705908,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,2.2299438,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,0,157.267,3100.211
-1865,0.119,0.47479536,57.086885,0.48144966,3.3632284,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,2.2655309,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,0,157.267,3100.211
-1866,0.122,0.47491218,56.45499,0.48420454,3.455866,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,2.2871958,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,0,157.267,3100.211
-1867,0.13022269,0.47338353,55.823094,0.48472337,3.5485035,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,2.3187563,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,0,157.267,3100.211
-1868,0.13525196,0.47198274,55.191198,0.48595323,3.6411411,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,2.3371841,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,0,157.267,3100.211
-1869,0.14228123,0.47048522,54.559303,0.48686155,3.7337787,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,2.3628056,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,0,157.267,3100.211
-1870,0.14731051,0.46933399,53.927407,0.48774355,3.8264163,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,2.3824052,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,0,157.267,3100.211
-1871,0.15633978,0.48732546,56.683869,0.58501628,3.9931681,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,2.8606677,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,0,157.267,3100.211
-1872,0.17336905,0.56696435,59.440331,0.66673981,4.1599199,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,3.2401697,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,0,157.267,3100.211
-1873,0.18439832,0.57690133,62.196793,0.69637076,4.3266717,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,3.4033641,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,0,157.267,3100.211
-1874,0.1744276,0.58328394,64.953255,0.7087503,4.4934235,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,3.4271557,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,0,157.267,3100.211
-1875,0.18845687,0.5899696,67.709717,0.72034342,4.6601753,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,3.5173084,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,157.267,3100.211
-1876,0.19148614,0.59639187,70.46618,0.74524338,4.8269271,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,3.6375503,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,0,157.267,3100.211
-1877,0.19451541,0.60262312,73.222642,0.75633197,4.9936789,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,3.6958465,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,157.267,3100.211
-1878,0.196,0.6090507,75.979104,0.7660459,5.1604307,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,3.7456526,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,0,157.267,3100.211
-1879,0.21,0.61534752,78.735566,0.77491118,5.3271825,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,3.8304098,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,0,157.267,3100.211
-1880,0.236,0.62124317,81.492028,0.78412129,5.4939343,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,3.9520183,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,0,157.267,3100.211
-1881,0.243,0.64887292,84.359461,0.81157848,5.7623214,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,4.071307,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,0,157.267,3100.211
-1882,0.256,0.60466403,87.226893,0.78526034,6.0307085,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,4.0198711,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,0,157.267,3100.211
-1883,0.272,0.60851762,90.094326,0.79255607,6.2990955,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,4.0985326,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,0,157.267,3100.211
-1884,0.275,0.61212775,92.961758,0.7987505,6.5674826,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,4.1333435,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,0,157.267,3100.211
-1885,0.27699999,0.61523611,95.829191,0.80453383,6.8358696,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,4.1646148,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,0,157.267,3100.211
-1886,0.28099999,0.61714413,98.696624,0.82619361,7.1042567,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,4.2758916,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,0,157.267,3100.211
-1887,0.295,0.61616314,101.56406,0.83219647,7.3726438,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,4.353178,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,0,157.267,3100.211
-1888,0.32699999,0.61473356,104.43149,0.83705812,7.6410308,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,4.4748698,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,0,157.267,3100.211
-1889,0.32699999,0.6132002,107.29892,0.84143987,7.9094179,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,4.498422,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,0,157.267,3100.211
-1890,0.35599999,0.61175412,110.16635,0.84552548,8.1778049,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,4.6037011,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,0,157.267,3100.211
-1891,0.37199999,0.61024855,111.52362,0.85098169,8.5673728,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,4.6830725,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,0,157.267,3100.211
-1892,0.37399999,0.62319119,112.88089,0.85741997,8.9569407,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,4.7551637,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,0,157.267,3100.211
-1893,0.36999999,0.62440331,114.23816,0.86475824,9.3465086,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,4.8217408,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,0,157.267,3100.211
-1894,0.38299999,0.64036719,115.59543,0.87294487,9.7360765,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,4.8845702,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,0,157.267,3100.211
-1895,0.40599999,0.64441851,116.9527,0.88188195,10.125644,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,4.9454181,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,0,157.267,3100.211
-1896,0.41899999,0.6462784,118.30997,0.89141802,10.515212,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,5.0060509,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,0,157.267,3100.211
-1897,0.43999999,0.64956412,119.66724,0.90140157,10.90478,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,5.0682347,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,0,157.267,3100.211
-1898,0.46499999,0.65100098,121.02451,0.91168111,11.294348,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,5.1337359,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,0,157.267,3100.211
-1899,0.50699999,0.65220446,122.38178,0.92210515,11.683916,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,5.2043208,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,0,157.267,3100.211
-1900,0.53399999,0.65320628,123.73905,0.9325222,12.073484,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,5.2817555,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,0,157.267,3100.211
-1901,0.55199999,0.70294318,124.8415,0.9446669,12.62988,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,5.3685634,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,0,157.267,3100.211
-1902,0.56599999,0.70297364,125.94396,0.95993065,13.186275,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,5.4646652,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,0,157.267,3100.211
-1903,0.61699999,0.72667096,127.04642,0.97764708,13.742671,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,5.5679233,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,0,157.267,3100.211
-1904,0.62399999,0.74829324,128.14887,0.99722904,14.299067,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,5.6762002,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,0,157.267,3100.211
-1905,0.66299999,0.76981521,129.25133,1.0181293,14.855463,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,5.7873584,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,0,157.267,3100.211
-1906,0.70699999,0.79653384,130.35378,1.0397413,15.411858,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,5.8992603,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,0,157.267,3100.211
-1907,0.78399999,0.80376274,131.45624,1.0614586,15.968254,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,6.0097685,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,0,157.267,3100.211
-1908,0.74999999,0.81141278,132.5587,1.0826746,16.52465,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,6.1167454,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,0,157.267,3100.211
-1909,0.78499999,0.81737807,133.66115,1.1027829,17.081045,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,6.2180534,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,0,157.267,3100.211
-1910,0.81899999,0.82198169,134.76361,1.121177,17.637441,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,6.3115552,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,0,157.267,3100.211
-1911,0.83599999,0.77889405,135.96943,1.1389722,17.821423,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,6.3975596,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,0,157.267,3100.211
-1912,0.87899999,0.74784844,137.17525,1.1575596,18.005405,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,6.4786614,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,0,157.267,3100.211
-1913,0.94299999,0.72297977,138.38107,1.1767464,18.189388,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,6.5561518,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,0,157.267,3100.211
-1914,0.84999999,0.71479152,139.5869,1.1962611,18.37337,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,6.6313219,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,0,157.267,3100.211
-1915,0.83799999,0.70574964,140.79272,1.2158443,18.557352,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,6.7054629,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,0,157.267,3100.211
-1916,0.90099999,0.70811648,141.99854,1.2353217,18.741334,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,6.7798659,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,0,157.267,3100.211
-1917,0.95499999,0.7111963,143.20436,1.254519,18.925316,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,6.8558222,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,0,157.267,3100.211
-1918,0.93599999,0.71430427,144.41019,1.2732618,19.109298,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,6.9346228,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,0,157.267,3100.211
-1919,0.80599999,0.71965435,145.61601,1.2913759,19.29328,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,7.0175589,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,0,157.267,3100.211
-1920,0.93199999,0.72128338,146.82183,1.3086869,19.477262,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,7.1059216,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,0,157.267,3100.211
-1921,0.80299999,0.75741661,147.86155,1.3257924,19.863884,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,7.20195,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,0,157.267,3100.211
-1922,0.84499999,0.7479409,148.90128,1.343275,20.250505,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,7.3058291,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,0,157.267,3100.211
-1923,0.96999999,0.75328819,149.941,1.3609385,20.637127,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,7.415769,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,0,157.267,3100.211
-1924,0.96299999,0.75686059,150.98072,1.3796194,21.023748,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,7.5299799,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,0,157.267,3100.211
-1925,0.97499999,0.75808855,152.02045,1.3998974,21.41037,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,7.6466719,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,0,157.267,3100.211
-1926,0.98299999,0.76148327,153.06017,1.4211909,21.796991,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,7.7640552,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,0,157.267,3100.211
-1927,1.062,0.79718283,154.09989,1.4429184,22.183613,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,7.8803399,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,0,157.267,3100.211
-1928,1.065,0.79967141,155.13962,1.4644982,22.570234,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,7.9937361,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,0,157.267,3100.211
-1929,1.145,0.82422601,156.17934,1.4853488,22.956856,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,8.102454,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,0,157.267,3100.211
-1930,1.053,0.89587975,157.21906,1.5048887,23.343477,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,8.2047038,1.6637375,0.23563239,0,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,0,157.267,3100.211
-1931,0.93999999,0.90334082,158.34545,1.5226236,23.754956,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,8.298548,1.7507764,0.24803412,0,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,0,157.267,3100.211
-1932,0.84699999,0.81222597,159.47183,1.5385172,24.166434,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,8.3849848,1.8423953,0.26108852,0,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,0,157.267,3100.211
-1933,0.89299999,0.80858849,160.59821,1.5526746,24.577913,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,8.4666283,1.9388369,0.27483004,0,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,0,157.267,3100.211
-1934,0.97299999,0.79686256,161.7246,1.5653127,24.989392,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,8.5460922,2.0403528,0.28929476,0,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,0,157.267,3100.211
-1935,1.027,0.79471575,162.85098,1.5771213,25.40087,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,8.6259906,2.1472124,0.30452082,0,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,0,157.267,3100.211
-1936,1.13,0.80129993,163.97736,1.5889151,25.812349,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,8.7089373,2.2596977,0.32054821,0,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,0,157.267,3100.211
-1937,1.209,0.77969902,165.10375,1.6015088,26.223828,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,8.7975462,2.3781004,0.33741917,0,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,0,157.267,3100.211
-1938,1.142,0.78188222,166.23013,1.615717,26.635306,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,8.8944313,2.5027381,0.35517808,0,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,0,157.267,3100.211
-1939,1.192,0.77944376,167.35651,1.6323545,27.046785,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,9.0022064,2.6339328,0.37387169,0,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,0,157.267,3100.211
-1940,1.299,0.76683237,168.4829,1.6522358,27.458263,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,9.1234856,2.7720335,0.39354912,0,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,0,157.267,3100.211
-1941,1.334,0.75036458,170.03046,1.7002044,27.840442,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,9.2653861,2.9174066,0.41426223,0,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,0,157.267,3100.211
-1942,1.342,0.7690497,171.57803,1.7938613,28.22262,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,9.4321173,3.0704314,0.39468287,0,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,0,157.267,3100.211
-1943,1.391,0.7637656,173.12559,1.9231582,28.604799,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,9.6219311,3.2315097,0.37832187,0,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,0,157.267,3100.211
-1944,1.383,0.76839864,174.67315,2.0866797,28.986977,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,9.8330792,3.4010636,0.3640764,0,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,0,157.267,3100.211
-1945,1.16,0.76914739,176.22072,2.280402,29.369156,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,10.063814,3.579544,0.35194679,0,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,0,157.267,3100.211
-1946,1.238,0.84214892,177.76828,2.4903635,29.751334,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,10.312386,3.7674167,0.34193311,0,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,0,157.267,3100.211
-1947,1.392,0.87017994,179.31584,2.7026031,30.133513,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,10.577048,3.9651774,0.33403572,0,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,0,157.267,3100.211
-1948,1.469,0.87513044,180.86341,2.9031595,30.515691,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,10.856052,4.1733472,0.32825472,0,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,0,157.267,3100.211
-1949,1.419,0.88212641,182.41097,3.0780722,30.897869,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,11.14765,4.3924702,0.32459037,0,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,0,157.267,3100.211
-1950,1.63,0.89233465,183.95853,3.2133815,31.280048,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,11.450093,4.62313,0.32304286,0,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,0,157.267,3100.211
-1951,1.768,1.0885201,189.11003,3.3186021,32.866948,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,11.784634,4.865916,0.32361242,0,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,0,157.267,3100.211
-1952,1.796,1.1096378,194.26153,3.4111061,34.453849,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,12.1691,5.121479,0.32629927,0,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,0,157.927,3117.785
-1953,1.841,1.1045171,199.41303,3.4887221,36.040749,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,12.596604,5.3904959,0.3311036,0,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,0,158.604,3137.148
-1954,1.865,1.1521416,204.56453,3.5543489,37.62765,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,13.060259,5.6736692,0.33802563,0,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,0,159.3,3158.216
-1955,2.043,1.1911855,209.71603,3.614111,39.21455,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,13.553179,5.9717491,0.34706557,0,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,0,160.014,3180.749
-1956,2.178,1.2446883,214.86753,3.6706801,40.801451,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,14.068475,6.2855162,0.35822365,0,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,0,160.748,3204.498
-1957,2.27,1.2718718,220.01902,3.7267318,42.388351,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,14.599262,6.6157969,0.37150001,0,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,0,161.502,3229.071
-1958,2.33,1.3195817,225.17052,3.7849451,43.975252,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,15.138652,6.9634615,0.38689499,0,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,0,162.277,3254.039
-1959,2.462,1.2035957,230.32202,3.8480013,45.562152,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,15.679758,7.3294266,0.40440867,0,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,0,163.073,3278.967
-1960,2.577,1.1922833,235.47352,3.9185827,47.149053,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,16.215694,7.7146508,0.42404135,0,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,0,163.892,3303.389
-1961,2.594,1.2443218,238.52217,4.0240052,48.77076,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,16.759267,8.1201607,0.4457932,0,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,0,164.735,3326.864
-1962,2.7,1.2355717,241.57083,4.1836477,50.392468,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,17.326046,8.5470132,0.46966444,0,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,0,165.601,3349.069
-1963,2.848,1.2442947,244.61948,4.3883117,52.014176,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,17.913289,14.984956,0.49565531,0,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.001,0.007,166.493,3369.713
-1964,3.008,1.2515879,247.66813,4.6374693,53.635884,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,18.518251,13.488099,0.52376596,0,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.002,0.003,0.014,167.41,3388.628
-1965,3.145,1.2642558,250.71679,4.8968181,55.257592,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,19.138189,13.488369,0.55399667,0,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.005,0.028,168.355,3405.698
-1966,3.305,1.2936968,253.76544,5.195583,56.8793,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,19.770361,13.488639,0.58634761,0,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.008,0.048,169.328,3420.923
-1967,3.411,1.2976254,256.81409,5.457478,58.501008,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,20.412021,13.488909,0.62081899,0,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.013,0.075,170.329,3434.335
-1968,3.588,1.2352028,259.86274,5.619744,60.122716,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,21.060427,13.48918,0.65741104,0,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.019,0.016,0.109,171.36,3446.065
-1969,3.8,1.2383879,262.9114,5.784831,61.744424,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,21.712835,13.489449,0.69612398,0,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.026,0.024,0.15,172.423,3456.224
-1970,4.076,1.1971129,265.96005,5.9368752,63.366132,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,22.366503,11.992564,0.73695798,0,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.035,0.043,0.197,173.518,3464.95
-1971,4.231,1.0708913,270.02505,5.6049759,63.545863,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,23.042459,13.489967,0.7799133,0,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.044,0.1,0.252,174.646,3472.409
-1972,4.399,1.0470621,274.09004,5.9181309,63.725594,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,23.75562,13.490244,0.82499011,0,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.055,0.17,0.313,175.809,3478.741
-1973,4.6349999,1.0330987,278.15504,6.0449043,63.905326,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,24.494072,13.490523,0.87218868,0,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.067,0.277,0.391,177.007,3484.114
-1974,4.644,1.0387371,282.22003,5.9406002,64.085057,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,25.2459,11.993645,0.9215092,0,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.08,0.372,0.468,178.243,3488.632
-1975,4.615,1.0315876,286.28503,6.1409693,64.264788,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,25.999188,13.49105,0.97295172,0,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.095,0.524,0.544,179.517,3492.425
-1976,4.883,1.0906077,290.35002,6.3042588,64.444519,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,26.742024,13.491328,1.0265167,0,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.11,0.783,0.621,180.83,3495.619
-1977,5.029,1.0939874,294.41502,6.534405,64.624251,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,27.462492,11.994452,1.0822044,0,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,0.127,1.006,0.697,182.185,3498.281
-1978,5.105,1.09037,298.48002,6.6193729,64.803982,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,28.148677,13.491857,1.1400146,0,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,0.145,1.253,0.774,183.581,3500.505
-1979,5.387,1.0647127,302.54501,7.007773,64.983713,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,28.788664,11.994981,1.1999481,0,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,0.161,1.548,0.85,185.022,3502.36
-1980,5.332,1.0252096,306.61001,7.0613923,65.163444,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,29.37054,13.492387,1.2620043,0,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,0.185,1.805,0.927,186.506,3503.915
-1981,5.168,1.0448621,310.01251,6.8417522,65.043883,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,29.931853,11.995499,1.3261846,0,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,0.206,2.139,1.003,188.038,3505.193
-1982,5.127,1.1904055,313.415,7.1189858,64.924321,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,30.508393,13.492893,1.392488,0,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,0.229,2.645,1.105,189.616,3506.255
-1983,5.11,1.2255201,316.8175,7.2168971,64.80476,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,31.085608,11.996004,1.4609153,0,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,0.249,2.98,1.183,191.243,3507.154
-1984,5.29,1.2600833,320.22,7.0481314,64.685199,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,31.648945,11.996242,1.5314669,0,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,0.269,3.475,1.262,192.92,3507.882
-1985,5.444,1.2753449,323.6225,7.0169243,64.565637,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,32.183851,11.99648,1.6041426,0,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,0.289,3.997,1.355,194.648,3508.496
-1986,5.61,1.2872023,327.025,7.0704917,64.446076,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,32.675774,13.493874,1.678943,0,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,0.309,4.579,1.434,196.427,3508.999
-1987,5.753,1.2940086,330.42749,7.4616728,64.326514,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,33.110161,11.996986,1.7558675,0,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,0.329,5.109,1.504,198.259,3509.425
-1988,5.964,1.3167248,333.82999,7.2025077,64.206953,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,33.472458,11.997224,1.8349176,0,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,0.349,5.696,1.728,200.146,3509.774
-1989,6.089,1.3236436,337.23249,7.3310397,64.087391,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,33.748114,11.997462,1.9160924,0,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,0.369,5.482,1.73,202.087,3510.061
-1990,6.144,1.3194833,340.63499,7.5856812,63.96783,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,33.922575,11.997683,2.0735678,0,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,0.389,5.119,1.73,204.082,3510.299
-1991,6.235,1.3809799,336.59218,7.4023631,62.955167,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,34.026024,11.997905,2.3729101,0,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,0.409,4.094,1.735,206.133,3510.501
-1992,6.118,1.3035304,332.54937,7.7989323,61.942504,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,34.113528,11.998111,2.3731469,0,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,0.429,2.74,1.715,208.24,3510.656
-1993,6.124,1.2981006,328.50656,7.3131034,60.929841,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,34.207861,11.998354,2.3733837,0,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,0.509,3.344,1.7,210.402,3510.801
-1994,6.242,1.2895956,324.46375,7.5072841,59.917178,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,34.331799,11.998587,2.3736205,0,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,0.589,4.75,1.68,212.619,3510.907
-1995,6.372,1.2750104,320.42094,7.6191035,58.904515,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,34.508115,10.501674,2.3738573,0,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,0.669,3.991,1.3,200.199,3511.005
-1996,6.51,1.2511025,316.37814,7.6520638,57.891852,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,34.960533,11.999071,2.3740941,0,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,0.729,2.691,0.85,201.834,3511.082
-1997,6.619,1.2181397,312.33533,7.9097526,56.879189,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,35.833672,11.999322,2.3743309,0,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,0.789,2.594,0.7,207.696,3511.082
-1998,6.588,1.2148431,308.29252,7.8957263,55.866526,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,37.03165,11.999575,2.3745677,0,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,0.607,2.491,0.71,206.946,3511.082
-1999,6.569,1.1827892,304.24971,7.5269849,54.853863,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,38.458587,10.502692,2.3748045,0,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,0.467,2.39,0.631,195.938,3511.082
-2000,6.735,1.1488,300.2069,7.4566,53.8412,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,40.0186,12.0001,2.3749,0.4624,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,0.328,2.295,0.562,186.206,3511.082
-2001,6.8959,1.132,303.4092,7.503,54.4191,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,40.3916,11.925,2.4345,0.4651,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,0.282,2.209,0.5,181.525,3511.082
-2002,6.949,1.2317,306.5788,7.5487,54.9961,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,40.7646,11.8481,2.4915,0.4058,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,0.235,2.131,0.445,181.887,3511.082
-2003,7.286,1.2257,309.7164,7.5942,55.5716,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,41.1378,11.7693,2.5463,0.3939,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,0.189,2.057,0.396,177.539,3511.082
-2004,7.6719,1.2429,312.824,7.6394,56.1461,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,41.5107,11.6885,2.599,0.4062,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,0.189,1.987,0.353,174.26,3511.082
-2005,7.971,1.1955,315.9027,7.6841,56.7195,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,41.8837,11.6059,2.6494,0.4358,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,0.189,1.92,0.314,168.841,3511.082
-2006,8.0985,1.1385,317.2396,7.721,56.3034,56303.4,1057.0145,214.0518,38.5859,8.2245,35.9952,41.9902,11.411,2.5813,0.4427,10.5529,12.3831,3.8803,14.4509,121.0746,12.7893,5.1614,31.23,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,0.049,1.834,0.279,167.857,3511.082
-2007,8.226,1.0815,318.5722,7.7579,55.8873,55887.3,1052.4683,212.6378,38.3772,8.1977,35.598,42.0965,11.2139,2.5131,0.4492,10.2947,13.7731,4.5246,15.1335,129.6223,13.1314,5.4292,35.5714,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,0.049,1.752,0.249,167.857,3511.082
-2008,8.3531333,1.0245333,319.8964,7.7946667,55.4711,55471.1,1047.8519,211.21813,38.168667,8.1708667,35.199467,42.202733,11.012133,2.4452667,0.45503333,10.037233,15.162767,5.1677,15.798,133.99193,13.4753,5.6901667,39.912933,6.286,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,0.049,1.675,0.221,167.857,3511.082
-2009,8.4802667,0.96756667,321.2206,7.8314333,55.0549,55054.9,1043.2354,209.79847,37.960133,8.1440333,34.800933,42.308967,10.810367,2.3774333,0.46086667,9.7797667,16.552433,5.8108,16.4625,138.36157,13.8192,5.9511333,44.254467,5.9707,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,0.049,1.601,0.197,167.857,3511.082
-2010,8.6074,0.9106,322.5448,7.8682,54.6387,54638.7,1038.619,208.3788,37.7516,8.1172,34.4024,42.4152,10.6086,2.3096,0.4667,9.5223,17.9421,6.4539,17.127,142.7312,14.1631,6.2121,48.596,5.6554,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,0,1.521,0.175,167.857,3511.082
-2011,8.73381,0.85362,323.84112,7.90492,54.22214,54222.14,1033.7724,206.94006,37.54386,8.09002,33.99919,42.5208,10.3919,2.24289,0.43848,8.68531,22.21208,6.53107,18.54246,147.40164,14.51343,5.65092,52.93749,5.34014,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,0,1.445,0.156,167.857,3511.082
-2012,8.86022,0.79664,325.13744,7.94164,53.80558,53805.58,1028.9259,205.50132,37.33612,8.06284,33.59598,42.6264,10.1752,2.17618,0.41026,7.84832,26.48206,6.60824,19.95792,152.07208,14.86376,5.08974,57.27898,5.02488,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,0,1.373,0.139,167.857,3511.082
-2013,8.98663,0.73966,326.43376,7.97836,53.38902,53389.02,1024.0793,204.06258,37.12838,8.03566,33.19277,42.732,9.9585,2.10947,0.38204,7.01133,30.75204,6.68541,21.37338,156.74252,15.21409,4.52856,61.62047,4.70962,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,0,1.304,0.124,167.857,3511.082
-2014,9.11304,0.68268,327.73008,8.01508,52.97246,52972.46,1019.2328,202.62384,36.92064,8.00848,32.78956,42.8376,9.7418,2.04276,0.35382,6.17434,35.02202,6.76258,22.78884,161.41296,15.56442,3.96738,65.96196,4.39436,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,0,1.239,0.11,167.857,3511.082
-2015,9.23945,0.6257,329.0264,8.0518,52.5559,52555.9,1014.3863,201.1851,36.7129,7.9813,32.38635,42.9432,9.5251,1.97605,0.3256,5.33735,39.292,6.83975,24.2043,166.0834,15.91475,3.4062,70.30345,4.0791,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,0,1.177,0.098,155.925,3511.082
-2016,9.36586,0.56872,330.32272,8.08852,52.13934,52139.34,1009.5397,199.74636,36.50516,7.95412,31.98314,43.0488,9.3084,1.90934,0.29738,4.50036,43.56198,6.91692,25.61976,170.75384,16.26508,2.84502,74.64494,3.76384,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,0,1.118,0.087,155.925,3511.082
-2017,9.49227,0.51174,331.61904,8.12524,51.72278,51722.78,1004.6932,198.30762,36.29742,7.92694,31.57993,43.1544,9.0917,1.84263,0.26916,3.66337,47.83196,6.99409,27.03522,175.42428,16.61541,2.28384,78.98643,3.44858,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,0,1.062,0.078,155.925,3511.082
-2018,9.61868,0.45476,332.91536,8.16196,51.30622,51306.22,999.8466,196.86888,36.08968,7.89976,31.17672,43.26,8.875,1.77592,0.24094,2.82638,52.10194,7.07126,28.45068,180.09472,16.96574,1.72266,83.32792,3.13332,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,0,1.009,0.069,155.925,3511.082
-2019,9.74509,0.39778,334.21168,8.19868,50.88966,50889.66,995.00005,195.43014,35.88194,7.87258,30.77351,43.3656,8.6583,1.70921,0.21272,1.98939,56.37192,7.14843,29.86614,184.76516,17.31607,1.16148,87.66941,2.81806,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0,0.959,0.061,155.925,3511.082
-2020,9.8715,0.3408,335.508,8.2354,50.4731,50473.1,990.1535,193.9914,35.6742,7.8454,30.3703,43.4712,8.4416,1.6425,0.1845,1.1524,60.6419,7.2256,31.2816,189.4356,17.6664,0.6003,92.0109,2.5028,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0,0.911,0.055,155.925,3511.082
-2021,9.97968,0.32835,335.85701,8.26904,49.71227,49712.27,990.11353,194.87285,35.58304,7.79487,30.2411,43.66264,8.442,1.65926,0.17723,1.1063,61.78125,7.31559,31.32967,191.31961,17.94569,0.56612,92.38631,2.54361,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0,0.865,0.049,155.925,3511.082
-2022,10.08786,0.3159,336.20602,8.30268,48.95144,48951.44,990.07356,195.7543,35.49188,7.74434,30.1119,43.85408,8.4424,1.67602,0.16996,1.0602,62.9206,7.40558,31.37774,193.20362,18.22498,0.53194,92.76172,2.58442,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0,0.822,0.043,155.925,3511.082
-2023,10.19604,0.30345,336.55503,8.33632,48.19061,48190.61,990.03359,196.63575,35.40072,7.69381,29.9827,44.04552,8.4428,1.69278,0.16269,1.0141,64.05995,7.49557,31.42581,195.08763,18.50427,0.49776,93.13713,2.62523,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0,0.781,0.039,155.925,3511.082
-2024,10.30422,0.291,336.90404,8.36996,47.42978,47429.78,989.99362,197.5172,35.30956,7.64328,29.8535,44.23696,8.4432,1.70954,0.15542,0.968,65.1993,7.58556,31.47388,196.97164,18.78356,0.46358,93.51254,2.66604,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0,0.742,0.034,155.925,3511.082
-2025,10.4124,0.27855,337.25305,8.4036,46.66895,46668.95,989.95365,198.39865,35.2184,7.59275,29.7243,44.4284,8.4436,1.7263,0.14815,0.9219,66.33865,7.67555,31.52195,198.85565,19.06285,0.4294,93.88795,2.70685,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0,0.705,0.031,155.925,3511.082
-2026,10.52058,0.2661,337.60206,8.43724,45.90812,45908.12,989.91368,199.2801,35.12724,7.54222,29.5951,44.61984,8.444,1.74306,0.14088,0.8758,67.478,7.76554,31.57002,200.73966,19.34214,0.39522,94.26336,2.74766,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0,0.669,0.027,155.925,3511.082
-2027,10.62876,0.25365,337.95107,8.47088,45.14729,45147.29,989.87371,200.16155,35.03608,7.49169,29.4659,44.81128,8.4444,1.75982,0.13361,0.8297,68.61735,7.85553,31.61809,202.62367,19.62143,0.36104,94.63877,2.78847,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0,0.636,0.024,155.925,3511.082
-2028,10.73694,0.2412,338.30008,8.50452,44.38646,44386.46,989.83374,201.043,34.94492,7.44116,29.3367,45.00272,8.4448,1.77658,0.12634,0.7836,69.7567,7.94552,31.66616,204.50768,19.90072,0.32686,95.01418,2.82928,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0,0.604,0.022,155.925,3511.082
-2029,10.84512,0.22875,338.64909,8.53816,43.62563,43625.63,989.79377,201.92445,34.85376,7.39063,29.2075,45.19416,8.4452,1.79334,0.11907,0.7375,70.89605,8.03551,31.71423,206.39169,20.18001,0.29268,95.38959,2.87009,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0,0.574,0.019,155.925,3511.082
-2030,10.9533,0.2163,338.9981,8.5718,42.8648,42864.8,989.7538,202.8059,34.7626,7.3401,29.0783,45.3856,8.4456,1.8101,0.1118,0.6914,72.0354,8.1255,31.7623,208.2757,20.4593,0.2585,95.765,2.9109,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0,0.545,0.017,155.925,3511.082
-2031,10.99177,0.21454,338.85573,8.58349,42.03872,42038.72,985.80309,202.69076,34.54297,7.2846,28.95954,45.48715,8.46737,1.8237,0.1119,0.66362,72.90303,8.24943,31.72409,210.39103,20.74256,0.25838,95.88014,2.95352,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0,0.518,0.015,155.925,3511.082
-2032,11.03024,0.21278,338.71336,8.59518,41.21264,41212.64,981.85238,202.57562,34.32334,7.2291,28.84078,45.5887,8.48914,1.8373,0.112,0.63584,73.77066,8.37336,31.68588,212.50636,21.02582,0.25826,95.99528,2.99614,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0,0.492,0.013,155.925,3511.082
-2033,11.06871,0.21102,338.57099,8.60687,40.38656,40386.56,977.90167,202.46048,34.10371,7.1736,28.72202,45.69025,8.51091,1.8509,0.1121,0.60806,74.63829,8.49729,31.64767,214.62169,21.30908,0.25814,96.11042,3.03876,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0,0.467,0.012,155.925,3511.082
-2034,11.10718,0.20926,338.42862,8.61856,39.56048,39560.48,973.95096,202.34534,33.88408,7.1181,28.60326,45.7918,8.53268,1.8645,0.1122,0.58028,75.50592,8.62122,31.60946,216.73702,21.59234,0.25802,96.22556,3.08138,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0,0.444,0.011,155.925,3511.082
-2035,11.14565,0.2075,338.28625,8.63025,38.7344,38734.4,970.00025,202.2302,33.66445,7.0626,28.4845,45.89335,8.55445,1.8781,0.1123,0.5525,76.37355,8.74515,31.57125,218.85235,21.8756,0.2579,96.3407,3.124,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0,0.422,0.01,155.925,3511.082
-2036,11.18412,0.20574,338.14388,8.64194,37.90832,37908.32,966.04954,202.11506,33.44482,7.0071,28.36574,45.9949,8.57622,1.8917,0.1124,0.52472,77.24118,8.86908,31.53304,220.96768,22.15886,0.25778,96.45584,3.16662,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0,0.401,0.008,155.925,3511.082
-2037,11.22259,0.20398,338.00151,8.65363,37.08224,37082.24,962.09883,201.99992,33.22519,6.9516,28.24698,46.09645,8.59799,1.9053,0.1125,0.49694,78.10881,8.99301,31.49483,223.08301,22.44212,0.25766,96.57098,3.20924,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0,0.381,0.008,155.925,3511.082
-2038,11.26106,0.20222,337.85914,8.66532,36.25616,36256.16,958.14812,201.88478,33.00556,6.8961,28.12822,46.198,8.61976,1.9189,0.1126,0.46916,78.97644,9.11694,31.45662,225.19834,22.72538,0.25754,96.68612,3.25186,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0,0.362,0.007,155.925,3511.082
-2039,11.29953,0.20046,337.71677,8.67701,35.43008,35430.08,954.19741,201.76964,32.78593,6.8406,28.00946,46.29955,8.64153,1.9325,0.1127,0.44138,79.84407,9.24087,31.41841,227.31367,23.00864,0.25742,96.80126,3.29448,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0,0.344,0.006,155.925,3511.082
-2040,11.338,0.1987,337.5744,8.6887,34.604,34604,950.2467,201.6545,32.5663,6.7851,27.8907,46.4011,8.6633,1.9461,0.1128,0.4136,80.7117,9.3648,31.3802,229.429,23.2919,0.2573,96.9164,3.3371,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0,0.326,0.005,155.925,3511.082
-2041,11.30733,0.20369,336.95066,8.67866,33.71148,33711.48,942.49931,200.55337,32.21797,6.72454,27.78233,46.41253,8.71054,1.95661,0.11238,0.39687,80.10127,9.53783,31.31317,231.78318,23.57453,0.24048,96.77125,3.38154,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0,0.31,0.005,155.925,3511.082
-2042,11.27666,0.20868,336.32692,8.66862,32.81896,32818.96,934.75192,199.45224,31.86964,6.66398,27.67396,46.42396,8.75778,1.96712,0.11196,0.38014,79.49084,9.71086,31.24614,234.13736,23.85716,0.22366,96.6261,3.42598,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0,0.295,0.004,155.925,3511.082
-2043,11.24599,0.21367,335.70318,8.65858,31.92644,31926.44,927.00453,198.35111,31.52131,6.60342,27.56559,46.43539,8.80502,1.97763,0.11154,0.36341,78.88041,9.88389,31.17911,236.49154,24.13979,0.20684,96.48095,3.47042,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0,0.28,0.004,155.925,3511.082
-2044,11.21532,0.21866,335.07944,8.64854,31.03392,31033.92,919.25714,197.24998,31.17298,6.54286,27.45722,46.44682,8.85226,1.98814,0.11112,0.34668,78.26998,10.05692,31.11208,238.84572,24.42242,0.19002,96.3358,3.51486,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0,0.266,0.003,155.925,3511.082
-2045,11.18465,0.22365,334.4557,8.6385,30.1414,30141.4,911.50975,196.14885,30.82465,6.4823,27.34885,46.45825,8.8995,1.99865,0.1107,0.32995,77.65955,10.22995,31.04505,241.1999,24.70505,0.1732,96.19065,3.5593,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0,0.253,0.003,155.925,3511.082
-2046,11.15398,0.22864,333.83196,8.62846,29.24888,29248.88,903.76236,195.04772,30.47632,6.42174,27.24048,46.46968,8.94674,2.00916,0.11028,0.31322,77.04912,10.40298,30.97802,243.55408,24.98768,0.15638,96.0455,3.60374,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0,0.24,0.003,155.925,3511.082
-2047,11.12331,0.23363,333.20822,8.61842,28.35636,28356.36,896.01497,193.94659,30.12799,6.36118,27.13211,46.48111,8.99398,2.01967,0.10986,0.29649,76.43869,10.57601,30.91099,245.90826,25.27031,0.13956,95.90035,3.64818,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0,0.228,0.002,155.925,3511.082
-2048,11.09264,0.23862,332.58448,8.60838,27.46384,27463.84,888.26758,192.84546,29.77966,6.30062,27.02374,46.49254,9.04122,2.03018,0.10944,0.27976,75.82826,10.74904,30.84396,248.26244,25.55294,0.12274,95.7552,3.69262,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0,0.217,0.002,155.925,3511.082
-2049,11.06197,0.24361,331.96074,8.59834,26.57132,26571.32,880.52019,191.74433,29.43133,6.24006,26.91537,46.50397,9.08846,2.04069,0.10902,0.26303,75.21783,10.92207,30.77693,250.61662,25.83557,0.10592,95.61005,3.73706,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0,0.206,0.002,155.925,3511.082
-2050,11.0313,0.2486,331.337,8.5883,25.6788,25678.8,872.7728,190.6432,29.083,6.1795,26.807,46.5154,9.1357,2.0512,0.1086,0.2463,74.6074,11.0951,30.7099,252.9708,26.1182,0.0891,95.4649,3.7815,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0,0.195,0.002,155.925,3511.082
-2051,10.86829,0.24215,329.96427,8.58011,25.18207,25182.07,863.3512,189.56776,28.72999,6.11469,26.61515,46.46268,9.11255,2.04957,0.10848,0.23542,75.55522,11.09689,30.26107,252.01802,26.06031,0.08327,94.54597,3.83266,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0,0.186,0.001,155.925,3511.082
-2052,10.70528,0.2357,328.59154,8.57192,24.68534,24685.34,853.9296,188.49232,28.37698,6.04988,26.4233,46.40996,9.0894,2.04794,0.10836,0.22454,76.50304,11.09868,29.81224,251.06524,26.00242,0.07744,93.62704,3.88382,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0,0.176,0.001,155.925,3511.082
-2053,10.54227,0.22925,327.21881,8.56373,24.18861,24188.61,844.508,187.41688,28.02397,5.98507,26.23145,46.35724,9.06625,2.04631,0.10824,0.21366,77.45086,11.10047,29.36341,250.11246,25.94453,0.07161,92.70811,3.93498,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0,0.168,0.001,155.925,3511.082
-2054,10.37926,0.2228,325.84608,8.55554,23.69188,23691.88,835.0864,186.34144,27.67096,5.92026,26.0396,46.30452,9.0431,2.04468,0.10812,0.20278,78.39868,11.10226,28.91458,249.15968,25.88664,0.06578,91.78918,3.98614,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0,0.159,0.001,155.925,3511.082
-2055,10.21625,0.21635,324.47335,8.54735,23.19515,23195.15,825.6648,185.266,27.31795,5.85545,25.84775,46.2518,9.01995,2.04305,0.108,0.1919,79.3465,11.10405,28.46575,248.2069,25.82875,0.05995,90.87025,4.0373,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0,0.151,0.001,155.925,3511.082
-2056,10.05324,0.2099,323.10062,8.53916,22.69842,22698.42,816.2432,184.19056,26.96494,5.79064,25.6559,46.19908,8.9968,2.04142,0.10788,0.18102,80.29432,11.10584,28.01692,247.25412,25.77086,0.05412,89.95132,4.08846,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0,0.144,0.001,155.925,3511.082
-2057,9.89023,0.20345,321.72789,8.53097,22.20169,22201.69,806.8216,183.11512,26.61193,5.72583,25.46405,46.14636,8.97365,2.03979,0.10776,0.17014,81.24214,11.10763,27.56809,246.30134,25.71297,0.04829,89.03239,4.13962,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0,0.136,0.001,155.925,3511.082
-2058,9.72722,0.197,320.35516,8.52278,21.70496,21704.96,797.4,182.03968,26.25892,5.66102,25.2722,46.09364,8.9505,2.03816,0.10764,0.15926,82.18996,11.10942,27.11926,245.34856,25.65508,0.04246,88.11346,4.19078,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0,0.13,0.001,155.925,3511.082
-2059,9.56421,0.19055,318.98243,8.51459,21.20823,21208.23,787.9784,180.96424,25.90591,5.59621,25.08035,46.04092,8.92735,2.03653,0.10752,0.14838,83.13778,11.11121,26.67043,244.39578,25.59719,0.03663,87.19453,4.24194,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0,0.123,0.001,155.925,3511.082
-2060,9.4012,0.1841,317.6097,8.5064,20.7115,20711.5,778.5568,179.8888,25.5529,5.5314,24.8885,45.9882,8.9042,2.0349,0.1074,0.1375,84.0856,11.113,26.2216,243.443,25.5393,0.0308,86.2756,4.2931,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0,0.117,0.001,155.925,3511.082
-2061,9.1729,0.17607,315.92522,8.49168,20.28023,20280.23,768.06528,178.54508,25.2186,5.46337,24.67492,45.90952,8.91416,2.0301,0.10732,0.13105,85.06506,11.10641,25.99838,244.90395,25.78992,0.02989,85.73583,4.35328,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0,0.111,0,155.925,3511.082
-2062,8.9446,0.16804,314.24074,8.47696,19.84896,19848.96,757.57376,177.20136,24.8843,5.39534,24.46134,45.83084,8.92412,2.0253,0.10724,0.1246,86.04452,11.09982,25.77516,246.3649,26.04054,0.02898,85.19606,4.41346,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0,0.106,0,155.925,3511.082
-2063,8.7163,0.16001,312.55626,8.46224,19.41769,19417.69,747.08224,175.85764,24.55,5.32731,24.24776,45.75216,8.93408,2.0205,0.10716,0.11815,87.02398,11.09323,25.55194,247.82585,26.29116,0.02807,84.65629,4.47364,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0,0.1,0,155.925,3511.082
-2064,8.488,0.15198,310.87178,8.44752,18.98642,18986.42,736.59072,174.51392,24.2157,5.25928,24.03418,45.67348,8.94404,2.0157,0.10708,0.1117,88.00344,11.08664,25.32872,249.2868,26.54178,0.02716,84.11652,4.53382,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0,0.095,0,155.925,3511.082
-2065,8.2597,0.14395,309.1873,8.4328,18.55515,18555.15,726.0992,173.1702,23.8814,5.19125,23.8206,45.5948,8.954,2.0109,0.107,0.10525,88.9829,11.08005,25.1055,250.74775,26.7924,0.02625,83.57675,4.594,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0,0.091,0,155.925,3511.082
-2066,8.0314,0.13592,307.50282,8.41808,18.12388,18123.88,715.60768,171.82648,23.5471,5.12322,23.60702,45.51612,8.96396,2.0061,0.10692,0.0988,89.96236,11.07346,24.88228,252.2087,27.04302,0.02534,83.03698,4.65418,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0,0.086,0,155.925,3511.082
-2067,7.8031,0.12789,305.81834,8.40336,17.69261,17692.61,705.11616,170.48276,23.2128,5.05519,23.39344,45.43744,8.97392,2.0013,0.10684,0.09235,90.94182,11.06687,24.65906,253.66965,27.29364,0.02443,82.49721,4.71436,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0,0.082,0,155.925,3511.082
-2068,7.5748,0.11986,304.13386,8.38864,17.26134,17261.34,694.62464,169.13904,22.8785,4.98716,23.17986,45.35876,8.98388,1.9965,0.10676,0.0859,91.92128,11.06028,24.43584,255.1306,27.54426,0.02352,81.95744,4.77454,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0,0.078,0,155.925,3511.082
-2069,7.3465,0.11183,302.44938,8.37392,16.83007,16830.07,684.13312,167.79532,22.5442,4.91913,22.96628,45.28008,8.99384,1.9917,0.10668,0.07945,92.90074,11.05369,24.21262,256.59155,27.79488,0.02261,81.41767,4.83472,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0,0.074,0,155.925,3511.082
-2070,7.1182,0.1038,300.7649,8.3592,16.3988,16398.8,673.6416,166.4516,22.2099,4.8511,22.7527,45.2014,9.0038,1.9869,0.1066,0.073,93.8802,11.0471,23.9894,258.0525,28.0455,0.0217,80.8779,4.8949,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0,0.07,0,155.925,3511.082
-2071,6.82459,0.0942,298.76876,8.33796,16.03302,16033.02,662.0793,164.83958,21.89432,4.77984,22.5174,45.09671,9.04993,1.97901,0.10626,0.06942,94.1193,11.03809,23.94406,262.30888,28.61994,0.02131,80.71735,4.96411,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0,0.067,0,155.925,3511.082
-2072,6.53098,0.0846,296.77262,8.31672,15.66724,15667.24,650.517,163.22756,21.57874,4.70858,22.2821,44.99202,9.09606,1.97112,0.10592,0.06584,94.3584,11.02908,23.89872,266.56526,29.19438,0.02092,80.5568,5.03332,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0,0.063,0,155.925,3511.082
-2073,6.23737,0.075,294.77648,8.29548,15.30146,15301.46,638.9547,161.61554,21.26316,4.63732,22.0468,44.88733,9.14219,1.96323,0.10558,0.06226,94.5975,11.02007,23.85338,270.82164,29.76882,0.02053,80.39625,5.10253,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0,0.06,0,155.925,3511.082
-2074,5.94376,0.0654,292.78034,8.27424,14.93568,14935.68,627.3924,160.00352,20.94758,4.56606,21.8115,44.78264,9.18832,1.95534,0.10524,0.05868,94.8366,11.01106,23.80804,275.07802,30.34326,0.02014,80.2357,5.17174,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0,0.057,0,155.925,3511.082
-2075,5.65015,0.0558,290.7842,8.253,14.5699,14569.9,615.8301,158.3915,20.632,4.4948,21.5762,44.67795,9.23445,1.94745,0.1049,0.0551,95.0757,11.00205,23.7627,279.3344,30.9177,0.01975,80.07515,5.24095,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0,0.054,0,155.925,3511.082
-2076,5.35654,0.0462,288.78806,8.23176,14.20412,14204.12,604.2678,156.77948,20.31642,4.42354,21.3409,44.57326,9.28058,1.93956,0.10456,0.05152,95.3148,10.99304,23.71736,283.59078,31.49214,0.01936,79.9146,5.31016,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0,0.052,0,155.925,3511.082
-2077,5.06293,0.0366,286.79192,8.21052,13.83834,13838.34,592.7055,155.16746,20.00084,4.35228,21.1056,44.46857,9.32671,1.93167,0.10422,0.04794,95.5539,10.98403,23.67202,287.84716,32.06658,0.01897,79.75405,5.37937,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0,0.049,0,155.925,3511.082
-2078,4.76932,0.027,284.79578,8.18928,13.47256,13472.56,581.1432,153.55544,19.68526,4.28102,20.8703,44.36388,9.37284,1.92378,0.10388,0.04436,95.793,10.97502,23.62668,292.10354,32.64102,0.01858,79.5935,5.44858,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0,0.046,0,155.925,3511.082
-2079,4.47571,0.0174,282.79964,8.16804,13.10678,13106.78,569.5809,151.94342,19.36968,4.20976,20.635,44.25919,9.41897,1.91589,0.10354,0.04078,96.0321,10.96601,23.58134,296.35992,33.21546,0.01819,79.43295,5.51779,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0,0.044,0,155.925,3511.082
-2080,4.1821,0.0078,280.8035,8.1468,12.741,12741,558.0186,150.3314,19.0541,4.1385,20.3997,44.1545,9.4651,1.908,0.1032,0.0372,96.2712,10.957,23.536,300.6163,33.7899,0.0178,79.2724,5.587,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0,0.042,0,155.925,3511.082
-2081,4.18314,0.00973,280.06659,8.14506,12.66664,12666.64,553.9826,149.81652,19.0042,4.12467,20.34975,44.12524,9.57675,1.91453,0.1026,0.03348,95.76444,10.93657,23.53444,305.85507,34.4037,0.01759,79.4532,5.62936,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0,0.04,0,155.925,3511.082
-2082,4.18418,0.01166,279.32968,8.14332,12.59228,12592.28,549.9466,149.30164,18.9543,4.11084,20.2998,44.09598,9.6884,1.92106,0.102,0.02976,95.25768,10.91614,23.53288,311.09384,35.0175,0.01738,79.634,5.67172,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0,0.038,0,155.925,3511.082
-2083,4.18522,0.01359,278.59277,8.14158,12.51792,12517.92,545.9106,148.78676,18.9044,4.09701,20.24985,44.06672,9.80005,1.92759,0.1014,0.02604,94.75092,10.89571,23.53132,316.33261,35.6313,0.01717,79.8148,5.71408,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0,0.036,0,155.925,3511.082
-2084,4.18626,0.01552,277.85586,8.13984,12.44356,12443.56,541.8746,148.27188,18.8545,4.08318,20.1999,44.03746,9.9117,1.93412,0.1008,0.02232,94.24416,10.87528,23.52976,321.57138,36.2451,0.01696,79.9956,5.75644,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0,0.034,0,155.925,3511.082
-2085,4.1873,0.01745,277.11895,8.1381,12.3692,12369.2,537.8386,147.757,18.8046,4.06935,20.14995,44.0082,10.02335,1.94065,0.1002,0.0186,93.7374,10.85485,23.5282,326.81015,36.8589,0.01675,80.1764,5.7988,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0,0.032,0,155.925,3511.082
-2086,4.18834,0.01938,276.38204,8.13636,12.29484,12294.84,533.8026,147.24212,18.7547,4.05552,20.1,43.97894,10.135,1.94718,0.0996,0.01488,93.23064,10.83442,23.52664,332.04892,37.4727,0.01654,80.3572,5.84116,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0,0.031,0,155.925,3511.082
-2087,4.18938,0.02131,275.64513,8.13462,12.22048,12220.48,529.7666,146.72724,18.7048,4.04169,20.05005,43.94968,10.24665,1.95371,0.099,0.01116,92.72388,10.81399,23.52508,337.28769,38.0865,0.01633,80.538,5.88352,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0,0.029,0,155.925,3511.082
-2088,4.19042,0.02324,274.90822,8.13288,12.14612,12146.12,525.7306,146.21236,18.6549,4.02786,20.0001,43.92042,10.3583,1.96024,0.0984,0.00744,92.21712,10.79356,23.52352,342.52646,38.7003,0.01612,80.7188,5.92588,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0,0.028,0,155.925,3511.082
-2089,4.19146,0.02517,274.17131,8.13114,12.07176,12071.76,521.6946,145.69748,18.605,4.01403,19.95015,43.89116,10.46995,1.96677,0.0978,0.00372,91.71036,10.77313,23.52196,347.76523,39.3141,0.01591,80.8996,5.96824,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0,0.026,0,155.925,3511.082
-2090,4.1925,0.0271,273.4344,8.1294,11.9974,11997.4,517.6586,145.1826,18.5551,4.0002,19.9002,43.8619,10.5816,1.9733,0.0972,0,91.2036,10.7527,23.5204,353.004,39.9279,0.0157,81.0804,6.0106,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0,0.025,0,155.925,3511.082
-2091,4.19355,0.02902,272.69682,8.12762,11.92305,11923.05,513.6227,144.66772,18.50518,3.98639,19.85023,43.83258,10.66307,1.98218,0.09635,0,90.20592,10.71798,23.469,358.61111,40.56215,0.01555,81.2612,6.05297,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0,0.024,0,155.925,3511.082
-2092,4.1946,0.03094,271.95924,8.12584,11.8487,11848.7,509.5868,144.15284,18.45526,3.97258,19.80026,43.80326,10.74454,1.99106,0.0955,0,89.20824,10.68326,23.4176,364.21822,41.1964,0.0154,81.442,6.09534,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0,0.023,0,155.925,3511.082
-2093,4.19565,0.03286,271.22166,8.12406,11.77435,11774.35,505.5509,143.63796,18.40534,3.95877,19.75029,43.77394,10.82601,1.99994,0.09465,0,88.21056,10.64854,23.3662,369.82533,41.83065,0.01525,81.6228,6.13771,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0,0.022,0,155.925,3511.082
-2094,4.1967,0.03478,270.48408,8.12228,11.7,11700,501.515,143.12308,18.35542,3.94496,19.70032,43.74462,10.90748,2.00882,0.0938,0,87.21288,10.61382,23.3148,375.43244,42.4649,0.0151,81.8036,6.18008,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0,0.02,0,155.925,3511.082
-2095,4.19775,0.0367,269.7465,8.1205,11.62565,11625.65,497.4791,142.6082,18.3055,3.93115,19.65035,43.7153,10.98895,2.0177,0.09295,0,86.2152,10.5791,23.2634,381.03955,43.09915,0.01495,81.9844,6.22245,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0,0.019,0,155.925,3511.082
-2096,4.1988,0.03862,269.00892,8.11872,11.5513,11551.3,493.4432,142.09332,18.25558,3.91734,19.60038,43.68598,11.07042,2.02658,0.0921,0,85.21752,10.54438,23.212,386.64666,43.7334,0.0148,82.1652,6.26482,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0,0.018,0,155.925,3511.082
-2097,4.19985,0.04054,268.27134,8.11694,11.47695,11476.95,489.4073,141.57844,18.20566,3.90353,19.55041,43.65666,11.15189,2.03546,0.09125,0,84.21984,10.50966,23.1606,392.25377,44.36765,0.01465,82.346,6.30719,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0,0.018,0,155.925,3511.082
-2098,4.2009,0.04246,267.53376,8.11516,11.4026,11402.6,485.3714,141.06356,18.15574,3.88972,19.50044,43.62734,11.23336,2.04434,0.0904,0,83.22216,10.47494,23.1092,397.86088,45.0019,0.0145,82.5268,6.34956,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0,0.017,0,155.925,3511.082
-2099,4.20195,0.04438,266.79618,8.11338,11.32825,11328.25,481.3355,140.54868,18.10582,3.87591,19.45047,43.59802,11.31483,2.05322,0.08955,0,82.22448,10.44022,23.0578,403.46799,45.63615,0.01435,82.7076,6.39193,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0,0.016,0,155.925,3511.082
-2100,4.203,0.0463,266.0586,8.1116,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,11.3963,2.0621,0.0887,0,81.2268,10.4055,23.0064,409.0751,46.2704,0.0142,82.8884,6.4343,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0,0.015,0,155.925,3511.082
-2101,4.09086,0.04445,266.0588,8.08938,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,11.16938,2.02147,0.08703,0,81.2268,10.4055,23.0064,408.8936,46.045,0.01423,82.8884,6.30908,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0,0.014,0,155.925,3511.082
-2102,3.97872,0.0426,266.059,8.06716,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,10.94246,1.98084,0.08536,0,81.2268,10.4055,23.0064,408.7121,45.8196,0.01426,82.8884,6.18386,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0,0.014,0,155.925,3511.082
-2103,3.86658,0.04075,266.0592,8.04494,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,10.71554,1.94021,0.08369,0,81.2268,10.4055,23.0064,408.5306,45.5942,0.01429,82.8884,6.05864,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0,0.013,0,155.925,3511.082
-2104,3.75444,0.0389,266.0594,8.02272,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,10.48862,1.89958,0.08202,0,81.2268,10.4055,23.0064,408.3491,45.3688,0.01432,82.8884,5.93342,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0,0.012,0,155.925,3511.082
-2105,3.6423,0.03705,266.0596,8.0005,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,10.2617,1.85895,0.08035,0,81.2268,10.4055,23.0064,408.1676,45.1434,0.01435,82.8884,5.8082,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0,0.012,0,155.925,3511.082
-2106,3.53016,0.0352,266.0598,7.97828,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,10.03478,1.81832,0.07868,0,81.2268,10.4055,23.0064,407.9861,44.918,0.01438,82.8884,5.68298,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0,0.011,0,155.925,3511.082
-2107,3.41802,0.03335,266.06,7.95606,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,9.80786,1.77769,0.07701,0,81.2268,10.4055,23.0064,407.8046,44.6926,0.01441,82.8884,5.55776,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0,0.011,0,155.925,3511.082
-2108,3.30588,0.0315,266.0602,7.93384,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,9.58094,1.73706,0.07534,0,81.2268,10.4055,23.0064,407.6231,44.4672,0.01444,82.8884,5.43254,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0,0.01,0,155.925,3511.082
-2109,3.19374,0.02965,266.0604,7.91162,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,9.35402,1.69643,0.07367,0,81.2268,10.4055,23.0064,407.4416,44.2418,0.01447,82.8884,5.30732,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0,0.009,0,155.925,3511.082
-2110,3.0816,0.0278,266.0606,7.8894,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,9.1271,1.6558,0.072,0,81.2268,10.4055,23.0064,407.2601,44.0164,0.0145,82.8884,5.1821,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0,0.009,0,155.925,3511.082
-2111,3.00189,0.02594,266.06075,7.86716,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,8.90017,1.61514,0.07032,0,81.2268,10.4055,23.0064,407.07859,43.79098,0.01452,82.8884,5.05688,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0,0.009,0,155.925,3511.082
-2112,2.92218,0.02408,266.0609,7.84492,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,8.67324,1.57448,0.06864,0,81.2268,10.4055,23.0064,406.89708,43.56556,0.01454,82.8884,4.93166,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0,0.008,0,155.925,3511.082
-2113,2.84247,0.02222,266.06105,7.82268,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,8.44631,1.53382,0.06696,0,81.2268,10.4055,23.0064,406.71557,43.34014,0.01456,82.8884,4.80644,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0,0.008,0,155.925,3511.082
-2114,2.76276,0.02036,266.0612,7.80044,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,8.21938,1.49316,0.06528,0,81.2268,10.4055,23.0064,406.53406,43.11472,0.01458,82.8884,4.68122,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0,0.007,0,155.925,3511.082
-2115,2.68305,0.0185,266.06135,7.7782,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,7.99245,1.4525,0.0636,0,81.2268,10.4055,23.0064,406.35255,42.8893,0.0146,82.8884,4.556,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0,0.007,0,155.925,3511.082
-2116,2.60334,0.01664,266.0615,7.75596,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,7.76552,1.41184,0.06192,0,81.2268,10.4055,23.0064,406.17104,42.66388,0.01462,82.8884,4.43078,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0,0.007,0,155.925,3511.082
-2117,2.52363,0.01478,266.06165,7.73372,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,7.53859,1.37118,0.06024,0,81.2268,10.4055,23.0064,405.98953,42.43846,0.01464,82.8884,4.30556,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0,0.006,0,155.925,3511.082
-2118,2.44392,0.01292,266.0618,7.71148,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,7.31166,1.33052,0.05856,0,81.2268,10.4055,23.0064,405.80802,42.21304,0.01466,82.8884,4.18034,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0,0.006,0,155.925,3511.082
-2119,2.36421,0.01106,266.06195,7.68924,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,7.08473,1.28986,0.05688,0,81.2268,10.4055,23.0064,405.62651,41.98762,0.01468,82.8884,4.05512,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0,0.006,0,155.925,3511.082
-2120,2.2845,0.0092,266.0621,7.667,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,6.8578,1.2492,0.0552,0,81.2268,10.4055,23.0064,405.445,41.7622,0.0147,82.8884,3.9299,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0,0.005,0,155.925,3511.082
-2121,2.25245,0.00828,266.06224,7.64476,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,6.63088,1.20857,0.05353,0,81.2268,10.4055,23.0064,405.2635,41.53679,0.01474,82.8884,3.80466,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0,0.005,0,155.925,3511.082
-2122,2.2204,0.00736,266.06238,7.62252,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,6.40396,1.16794,0.05186,0,81.2268,10.4055,23.0064,405.082,41.31138,0.01478,82.8884,3.67942,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0,0.005,0,155.925,3511.082
-2123,2.18835,0.00644,266.06252,7.60028,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,6.17704,1.12731,0.05019,0,81.2268,10.4055,23.0064,404.9005,41.08597,0.01482,82.8884,3.55418,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0,0.005,0,155.925,3511.082
-2124,2.1563,0.00552,266.06266,7.57804,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,5.95012,1.08668,0.04852,0,81.2268,10.4055,23.0064,404.719,40.86056,0.01486,82.8884,3.42894,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0,0.004,0,155.925,3511.082
-2125,2.12425,0.0046,266.0628,7.5558,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,5.7232,1.04605,0.04685,0,81.2268,10.4055,23.0064,404.5375,40.63515,0.0149,82.8884,3.3037,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0,0.004,0,155.925,3511.082
-2126,2.0922,0.00368,266.06294,7.53356,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,5.49628,1.00542,0.04518,0,81.2268,10.4055,23.0064,404.356,40.40974,0.01494,82.8884,3.17846,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0,0.004,0,155.925,3511.082
-2127,2.06015,0.00276,266.06308,7.51132,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,5.26936,0.96479,0.04351,0,81.2268,10.4055,23.0064,404.1745,40.18433,0.01498,82.8884,3.05322,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0,0.004,0,155.925,3511.082
-2128,2.0281,0.00184,266.06322,7.48908,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,5.04244,0.92416,0.04184,0,81.2268,10.4055,23.0064,403.993,39.95892,0.01502,82.8884,2.92798,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0,0.004,0,155.925,3511.082
-2129,1.99605,0.00092,266.06336,7.46684,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,4.81552,0.88353,0.04017,0,81.2268,10.4055,23.0064,403.8115,39.73351,0.01506,82.8884,2.80274,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0,0.003,0,155.925,3511.082
-2130,1.964,0.00092,266.0635,7.4446,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,4.5886,0.8429,0.0385,0,81.2268,10.4055,23.0064,403.63,39.5081,0.0151,82.8884,2.6775,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0,0.003,0,155.925,3511.082
-2131,1.93853,0.00092,266.06362,7.42237,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,4.36166,0.80226,0.03683,0,81.2268,10.4055,23.0064,403.4485,39.28269,0.01512,82.8884,2.55229,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0,0.003,0,155.925,3511.082
-2132,1.91306,0.00092,266.06374,7.40014,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,4.13472,0.76162,0.03516,0,81.2268,10.4055,23.0064,403.267,39.05728,0.01514,82.8884,2.42708,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0,0.003,0,155.925,3511.082
-2133,1.88759,0.00092,266.06386,7.37791,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,3.90778,0.72098,0.03349,0,81.2268,10.4055,23.0064,403.0855,38.83187,0.01516,82.8884,2.30187,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0,0.003,0,155.925,3511.082
-2134,1.86212,0.00092,266.06398,7.35568,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,3.68084,0.68034,0.03182,0,81.2268,10.4055,23.0064,402.904,38.60646,0.01518,82.8884,2.17666,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0,0.003,0,155.925,3511.082
-2135,1.83665,0.00092,266.0641,7.33345,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,3.4539,0.6397,0.03015,0,81.2268,10.4055,23.0064,402.7225,38.38105,0.0152,82.8884,2.05145,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0,0.002,0,155.925,3511.082
-2136,1.81118,0.00092,266.06422,7.31122,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,3.22696,0.59906,0.02848,0,81.2268,10.4055,23.0064,402.541,38.15564,0.01522,82.8884,1.92624,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0,0.002,0,155.925,3511.082
-2137,1.78571,0.00092,266.06434,7.28899,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,3.00002,0.55842,0.02681,0,81.2268,10.4055,23.0064,402.3595,37.93023,0.01524,82.8884,1.80103,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0,0.002,0,155.925,3511.082
-2138,1.76024,0.00092,266.06446,7.26676,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,2.77308,0.51778,0.02514,0,81.2268,10.4055,23.0064,402.178,37.70482,0.01526,82.8884,1.67582,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0,0.002,0,155.925,3511.082
-2139,1.73477,0.00092,266.06458,7.24453,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,2.54614,0.47714,0.02347,0,81.2268,10.4055,23.0064,401.9965,37.47941,0.01528,82.8884,1.55061,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0,0.002,0,155.925,3511.082
-2140,1.7093,0.00092,266.0647,7.2223,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,2.3192,0.4365,0.0218,0,81.2268,10.4055,23.0064,401.815,37.254,0.0153,82.8884,1.4254,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0,0.002,0,155.925,3511.082
-2141,1.6831375,0.00092,266.06481,7.200075,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,2.092275,0.39585,0.020125,0,81.2268,10.4055,23.0064,401.6335,37.0286,0.01535,82.8884,1.3001875,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0,0.002,0,155.925,3511.082
-2142,1.656975,0.00092,266.06493,7.17785,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,1.86535,0.3552,0.01845,0,81.2268,10.4055,23.0064,401.452,36.8032,0.0154,82.8884,1.174975,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0,0.002,0,155.925,3511.082
-2143,1.6308125,0.00092,266.06504,7.155625,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,1.638425,0.31455,0.016775,0,81.2268,10.4055,23.0064,401.2705,36.5778,0.01545,82.8884,1.0497625,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0,0.002,0,155.925,3511.082
-2144,1.60465,0.00092,266.06515,7.1334,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,1.4115,0.2739,0.0151,0,81.2268,10.4055,23.0064,401.089,36.3524,0.0155,82.8884,0.92455,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0,0.002,0,155.925,3511.082
-2145,1.5784875,0.00092,266.06526,7.111175,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,1.184575,0.23325,0.013425,0,81.2268,10.4055,23.0064,400.9075,36.127,0.01555,82.8884,0.7993375,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0,0.001,0,155.925,3511.082
-2146,1.552325,0.00092,266.06538,7.08895,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.95765,0.1926,0.01175,0,81.2268,10.4055,23.0064,400.726,35.9016,0.0156,82.8884,0.674125,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0,0.001,0,155.925,3511.082
-2147,1.5261625,0.00092,266.06549,7.066725,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.730725,0.15195,0.010075,0,81.2268,10.4055,23.0064,400.5445,35.6762,0.01565,82.8884,0.5489125,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0,0.001,0,155.925,3511.082
-2148,1.5,0.00092,266.0656,7.0445,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.5038,0.1113,0.0084,0,81.2268,10.4055,23.0064,400.363,35.4508,0.0157,82.8884,0.4237,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0,0.001,0,155.925,3511.082
-2149,1.5354,0.00092,266.0834,7.0065,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8286,81.2101,10.4253,23.2987,401.2135,35.2926,0.06,82.8825,0.2246,5.888,26.472,4.838,1.2,0.17,0.154,0,0.058,0.306,0.04,0.004,0,0.175,0,155.922,3511.082
-2150,1.5468,0.00092,266.0918,7.0074,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8286,81.2115,10.4255,23.2991,401.2206,35.2933,0.06,82.8842,0.2246,5.888,26.473,4.838,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.949,3511.082
-2151,1.5531,0.00092,266.101,7.008,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8286,81.2131,10.4256,23.2994,401.2282,35.2939,0.06,82.8858,0.2246,5.889,26.476,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.957,3511.082
-2152,1.5547,0.00092,266.1095,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8286,81.2145,10.4258,23.2998,401.2355,35.2945,0.06,82.8872,0.2246,5.889,26.478,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.964,3511.082
-2153,1.5527,0.00092,266.12,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8286,81.2164,10.426,23.3004,401.2444,35.2953,0.06,82.889,0.2246,5.89,26.481,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.973,3511.082
-2154,1.5482,0.00092,266.1327,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8287,81.2186,10.4263,23.3011,401.2551,35.2963,0.06,82.8912,0.2246,5.891,26.484,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.983,3511.082
-2155,1.5419,0.00092,266.1469,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8287,81.221,10.4267,23.3017,401.267,35.2974,0.06,82.8937,0.2246,5.891,26.488,4.841,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.994,3511.082
-2156,1.5324,0.00092,266.16414,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.82874,81.22392,10.42708,23.30256,401.28146,35.29864,0.06,82.8967,0.2246,5.892,26.491,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.005,3511.082
-2157,1.5229,0.00092,266.18138,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.82878,81.22684,10.42746,23.30342,401.29592,35.29988,0.06,82.8997,0.2246,5.893,26.495,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.018,3511.082
-2158,1.5134,0.00092,266.19862,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.82882,81.22976,10.42784,23.30428,401.31038,35.30112,0.06,82.9027,0.2246,5.894,26.499,4.843,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.03,3511.082
-2159,1.5039,0.00092,266.21586,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.82886,81.23268,10.42822,23.30514,401.32484,35.30236,0.06,82.9057,0.2246,5.895,26.504,4.844,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.044,3511.082
-2160,1.4944,0.00092,266.2331,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8289,81.2356,10.4286,23.306,401.3393,35.3036,0.06,82.9087,0.2246,5.896,26.508,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.057,3511.082
-2161,1.48311,0.00092,266.25295,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05111,0.0319,0.0058,0.82892,81.23897,10.42903,23.30697,401.35595,35.30507,0.06,82.91213,0.2246,5.897,26.512,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.071,3511.082
-2162,1.47182,0.00092,266.2728,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05112,0.0319,0.0058,0.82894,81.24234,10.42946,23.30794,401.3726,35.30654,0.06,82.91556,0.2246,5.898,26.517,4.846,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.084,3511.082
-2163,1.46053,0.00092,266.29265,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05113,0.0319,0.0058,0.82896,81.24571,10.42989,23.30891,401.38925,35.30801,0.06,82.91899,0.2246,5.899,26.521,4.847,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.098,3511.082
-2164,1.44924,0.00092,266.3125,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05114,0.0319,0.0058,0.82898,81.24908,10.43032,23.30988,401.4059,35.30948,0.06,82.92242,0.2246,5.9,26.525,4.848,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.112,3511.082
-2165,1.43795,0.00092,266.33235,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05115,0.0319,0.0058,0.829,81.25245,10.43075,23.31085,401.42255,35.31095,0.06,82.92585,0.2246,5.901,26.53,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.127,3511.082
-2166,1.42666,0.00092,266.3522,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05116,0.0319,0.0058,0.82902,81.25582,10.43118,23.31182,401.4392,35.31242,0.06,82.92928,0.2246,5.902,26.534,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.141,3511.082
-2167,1.41537,0.00092,266.37205,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05117,0.0319,0.0058,0.82904,81.25919,10.43161,23.31279,401.45585,35.31389,0.06,82.93271,0.2246,5.903,26.539,4.85,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.155,3511.082
-2168,1.40408,0.00092,266.3919,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05118,0.0319,0.0058,0.82906,81.26256,10.43204,23.31376,401.4725,35.31536,0.06,82.93614,0.2246,5.904,26.544,4.851,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.169,3511.082
-2169,1.39279,0.00092,266.41175,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05119,0.0319,0.0058,0.82908,81.26593,10.43247,23.31473,401.48915,35.31683,0.06,82.93957,0.2246,5.905,26.548,4.852,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.183,3511.082
-2170,1.3815,0.00092,266.4316,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8291,81.2693,10.4329,23.3157,401.5058,35.3183,0.06,82.943,0.2246,5.906,26.553,4.853,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.198,3511.082
-2171,1.3712,0.00092,266.45171,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82914,81.27272,10.43334,23.31666,401.52268,35.31979,0.06,82.9465,0.2246,5.907,26.557,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.212,3511.082
-2172,1.3609,0.00092,266.47182,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82918,81.27614,10.43378,23.31762,401.53956,35.32128,0.06,82.95,0.2246,5.908,26.562,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.226,3511.082
-2173,1.3506,0.00092,266.49193,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82922,81.27956,10.43422,23.31858,401.55644,35.32277,0.06,82.9535,0.2246,5.909,26.566,4.855,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.24,3511.082
-2174,1.3403,0.00092,266.51204,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82926,81.28298,10.43466,23.31954,401.57332,35.32426,0.06,82.957,0.2246,5.91,26.571,4.856,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.254,3511.082
-2175,1.33,0.00092,266.53215,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8293,81.2864,10.4351,23.3205,401.5902,35.32575,0.06,82.9605,0.2246,5.911,26.575,4.857,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.268,3511.082
-2176,1.3197,0.00092,266.55226,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82934,81.28982,10.43554,23.32146,401.60708,35.32724,0.06,82.964,0.2246,5.912,26.58,4.858,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.282,3511.082
-2177,1.3094,0.00092,266.57237,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82938,81.29324,10.43598,23.32242,401.62396,35.32873,0.06,82.9675,0.2246,5.913,26.584,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.296,3511.082
-2178,1.2991,0.00092,266.59248,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82942,81.29666,10.43642,23.32338,401.64084,35.33022,0.06,82.971,0.2246,5.914,26.588,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.31,3511.082
-2179,1.2888,0.00092,266.61259,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82946,81.30008,10.43686,23.32434,401.65772,35.33171,0.06,82.9745,0.2246,5.915,26.593,4.86,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.324,3511.082
-2180,1.2785,0.00092,266.6327,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8295,81.3035,10.4373,23.3253,401.6746,35.3332,0.06,82.978,0.2246,5.916,26.597,4.861,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.338,3511.082
-2181,1.26966,0.00092,266.65213,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82954,81.3068,10.43772,23.32625,401.69092,35.33464,0.06,82.98137,0.2246,5.917,26.602,4.862,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.351,3511.082
-2182,1.26082,0.00092,266.67156,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82958,81.3101,10.43814,23.3272,401.70724,35.33608,0.06,82.98474,0.2246,5.918,26.606,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.365,3511.082
-2183,1.25198,0.00092,266.69099,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82962,81.3134,10.43856,23.32815,401.72356,35.33752,0.06,82.98811,0.2246,5.919,26.61,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.379,3511.082
-2184,1.24314,0.00092,266.71042,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82966,81.3167,10.43898,23.3291,401.73988,35.33896,0.06,82.99148,0.2246,5.92,26.615,4.864,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.392,3511.082
-2185,1.2343,0.00092,266.72985,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8297,81.32,10.4394,23.33005,401.7562,35.3404,0.06,82.99485,0.2246,5.921,26.619,4.865,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.406,3511.082
-2186,1.22546,0.00092,266.74928,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82974,81.3233,10.43982,23.331,401.77252,35.34184,0.06,82.99822,0.2246,5.922,26.623,4.866,1.207,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.419,3511.082
-2187,1.21662,0.00092,266.76871,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82978,81.3266,10.44024,23.33195,401.78884,35.34328,0.06,83.00159,0.2246,5.923,26.627,4.866,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.432,3511.082
-2188,1.20778,0.00092,266.78814,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82982,81.3299,10.44066,23.3329,401.80516,35.34472,0.06,83.00496,0.2246,5.924,26.632,4.867,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.446,3511.082
-2189,1.19894,0.00092,266.80757,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82986,81.3332,10.44108,23.33385,401.82148,35.34616,0.06,83.00833,0.2246,5.924,26.636,4.868,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.459,3511.082
-2190,1.1901,0.00092,266.827,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8299,81.3365,10.4415,23.3348,401.8378,35.3476,0.06,83.0117,0.2246,5.925,26.64,4.869,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.472,3511.082
-2191,1.18257,0.00092,266.84554,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82992,81.33966,10.44192,23.33572,401.85335,35.34897,0.06,83.0149,0.2246,5.926,26.644,4.87,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.485,3511.082
-2192,1.17504,0.00092,266.86408,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82994,81.34282,10.44234,23.33664,401.8689,35.35034,0.06,83.0181,0.2246,5.927,26.648,4.87,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.498,3511.082
-2193,1.16751,0.00092,266.88262,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82996,81.34598,10.44276,23.33756,401.88445,35.35171,0.06,83.0213,0.2246,5.928,26.653,4.871,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.511,3511.082
-2194,1.15998,0.00092,266.90116,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82998,81.34914,10.44318,23.33848,401.9,35.35308,0.06,83.0245,0.2246,5.929,26.657,4.872,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.524,3511.082
-2195,1.15245,0.00092,266.9197,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.83,81.3523,10.4436,23.3394,401.91555,35.35445,0.06,83.0277,0.2246,5.93,26.661,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.537,3511.082
-2196,1.14492,0.00092,266.93824,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.83002,81.35546,10.44402,23.34032,401.9311,35.35582,0.06,83.0309,0.2246,5.931,26.665,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.549,3511.082
-2197,1.13739,0.00092,266.95678,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.83004,81.35862,10.44444,23.34124,401.94665,35.35719,0.06,83.0341,0.2246,5.932,26.669,4.874,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.562,3511.082
-2198,1.12986,0.00092,266.97532,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.83006,81.36178,10.44486,23.34216,401.9622,35.35856,0.06,83.0373,0.2246,5.933,26.673,4.875,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.575,3511.082
-2199,1.12233,0.00092,266.99386,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.83008,81.36494,10.44528,23.34308,401.97775,35.35993,0.06,83.0405,0.2246,5.934,26.677,4.875,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.587,3511.082
-2200,1.1148,0.00092,267.0124,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8301,81.3681,10.4457,23.344,401.9933,35.3613,0.06,83.0437,0.2246,5.934,26.681,4.876,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.6,3511.082
-2201,1.10836,0.00092,267.03006,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05121,0.0319,0.0058,0.83013,81.3711,10.44606,23.34485,402.00813,35.3626,0.06,83.04677,0.2246,5.935,26.685,4.877,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.612,3511.082
-2202,1.10192,0.00092,267.04772,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05122,0.0319,0.0058,0.83016,81.3741,10.44642,23.3457,402.02296,35.3639,0.06,83.04984,0.2246,5.936,26.689,4.878,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.624,3511.082
-2203,1.09548,0.00092,267.06538,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05123,0.0319,0.0058,0.83019,81.3771,10.44678,23.34655,402.03779,35.3652,0.06,83.05291,0.2246,5.937,26.693,4.878,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.637,3511.082
-2204,1.08904,0.00092,267.08304,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05124,0.0319,0.0058,0.83022,81.3801,10.44714,23.3474,402.05262,35.3665,0.06,83.05598,0.2246,5.938,26.696,4.879,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.649,3511.082
-2205,1.0826,0.00092,267.1007,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05125,0.0319,0.0058,0.83025,81.3831,10.4475,23.34825,402.06745,35.3678,0.06,83.05905,0.2246,5.939,26.7,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.661,3511.082
-2206,1.07616,0.00092,267.11836,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05126,0.0319,0.0058,0.83028,81.3861,10.44786,23.3491,402.08228,35.3691,0.06,83.06212,0.2246,5.94,26.704,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.673,3511.082
-2207,1.06972,0.00092,267.13602,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05127,0.0319,0.0058,0.83031,81.3891,10.44822,23.34995,402.09711,35.3704,0.06,83.06519,0.2246,5.94,26.708,4.881,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.685,3511.082
-2208,1.06328,0.00092,267.15368,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05128,0.0319,0.0058,0.83034,81.3921,10.44858,23.3508,402.11194,35.3717,0.06,83.06826,0.2246,5.941,26.712,4.882,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.697,3511.082
-2209,1.05684,0.00092,267.17134,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05129,0.0319,0.0058,0.83037,81.3951,10.44894,23.35165,402.12677,35.373,0.06,83.07133,0.2246,5.942,26.716,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.709,3511.082
-2210,1.0504,0.00092,267.189,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8304,81.3981,10.4493,23.3525,402.1416,35.3743,0.06,83.0744,0.2246,5.943,26.719,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.721,3511.082
-2211,1.04486,0.00092,267.2058,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83044,81.40095,10.44967,23.35332,402.15569,35.37553,0.06,83.07732,0.2246,5.944,26.723,4.884,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.733,3511.082
-2212,1.03932,0.00092,267.2226,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83048,81.4038,10.45004,23.35414,402.16978,35.37676,0.06,83.08024,0.2246,5.945,26.727,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.744,3511.082
-2213,1.03378,0.00092,267.2394,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83052,81.40665,10.45041,23.35496,402.18387,35.37799,0.06,83.08316,0.2246,5.946,26.731,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.756,3511.082
-2214,1.02824,0.00092,267.2562,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83056,81.4095,10.45078,23.35578,402.19796,35.37922,0.06,83.08608,0.2246,5.946,26.734,4.886,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.768,3511.082
-2215,1.0227,0.00092,267.273,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8306,81.41235,10.45115,23.3566,402.21205,35.38045,0.06,83.089,0.2246,5.947,26.738,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.779,3511.082
-2216,1.01716,0.00092,267.2898,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83064,81.4152,10.45152,23.35742,402.22614,35.38168,0.06,83.09192,0.2246,5.948,26.742,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.791,3511.082
-2217,1.01162,0.00092,267.3066,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83068,81.41805,10.45189,23.35824,402.24023,35.38291,0.06,83.09484,0.2246,5.949,26.745,4.888,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.802,3511.082
-2218,1.00608,0.00092,267.3234,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83072,81.4209,10.45226,23.35906,402.25432,35.38414,0.06,83.09776,0.2246,5.95,26.749,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.813,3511.082
-2219,1.00054,0.00092,267.3402,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83076,81.42375,10.45263,23.35988,402.26841,35.38537,0.06,83.10068,0.2246,5.95,26.752,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.825,3511.082
-2220,0.995,0.00092,267.357,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8308,81.4266,10.453,23.3607,402.2825,35.3866,0.06,83.1036,0.2246,5.951,26.756,4.89,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.836,3511.082
-2221,0.99023,0.00092,267.373,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83082,81.42932,10.45337,23.36148,402.29593,35.38779,0.06,83.10637,0.2246,5.952,26.76,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.847,3511.082
-2222,0.98546,0.00092,267.389,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83084,81.43204,10.45374,23.36226,402.30936,35.38898,0.06,83.10914,0.2246,5.953,26.763,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.858,3511.082
-2223,0.98069,0.00092,267.405,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83086,81.43476,10.45411,23.36304,402.32279,35.39017,0.06,83.11191,0.2246,5.954,26.767,4.892,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.869,3511.082
-2224,0.97592,0.00092,267.421,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83088,81.43748,10.45448,23.36382,402.33622,35.39136,0.06,83.11468,0.2246,5.954,26.77,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.88,3511.082
-2225,0.97115,0.00092,267.437,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8309,81.4402,10.45485,23.3646,402.34965,35.39255,0.06,83.11745,0.2246,5.955,26.774,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.891,3511.082
-2226,0.96638,0.00092,267.453,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83092,81.44292,10.45522,23.36538,402.36308,35.39374,0.06,83.12022,0.2246,5.956,26.777,4.894,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.902,3511.082
-2227,0.96161,0.00092,267.469,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83094,81.44564,10.45559,23.36616,402.37651,35.39493,0.06,83.12299,0.2246,5.957,26.781,4.894,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.913,3511.082
-2228,0.95684,0.00092,267.485,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83096,81.44836,10.45596,23.36694,402.38994,35.39612,0.06,83.12576,0.2246,5.957,26.784,4.895,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.924,3511.082
-2229,0.95207,0.00092,267.501,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83098,81.45108,10.45633,23.36772,402.40337,35.39731,0.06,83.12853,0.2246,5.958,26.788,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.935,3511.082
-2230,0.9473,0.00092,267.517,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.831,81.4538,10.4567,23.3685,402.4168,35.3985,0.06,83.1313,0.2246,5.959,26.791,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.945,3511.082
-2231,0.94314,0.00092,267.53226,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83103,81.45639,10.45701,23.36925,402.42961,35.39963,0.06,83.13395,0.2246,5.96,26.794,4.897,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.956,3511.082
-2232,0.93898,0.00092,267.54752,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83106,81.45898,10.45732,23.37,402.44242,35.40076,0.06,83.1366,0.2246,5.96,26.798,4.898,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.967,3511.082
-2233,0.93482,0.00092,267.56278,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83109,81.46157,10.45763,23.37075,402.45523,35.40189,0.06,83.13925,0.2246,5.961,26.801,4.898,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.977,3511.082
-2234,0.93066,0.00092,267.57804,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83112,81.46416,10.45794,23.3715,402.46804,35.40302,0.06,83.1419,0.2246,5.962,26.804,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.988,3511.082
-2235,0.9265,0.00092,267.5933,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83115,81.46675,10.45825,23.37225,402.48085,35.40415,0.06,83.14455,0.2246,5.963,26.808,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.998,3511.082
-2236,0.92234,0.00092,267.60856,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83118,81.46934,10.45856,23.373,402.49366,35.40528,0.06,83.1472,0.2246,5.963,26.811,4.9,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.008,3511.082
-2237,0.91818,0.00092,267.62382,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83121,81.47193,10.45887,23.37375,402.50647,35.40641,0.06,83.14985,0.2246,5.964,26.814,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.019,3511.082
-2238,0.91402,0.00092,267.63908,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83124,81.47452,10.45918,23.3745,402.51928,35.40754,0.06,83.1525,0.2246,5.965,26.818,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.029,3511.082
-2239,0.90986,0.00092,267.65434,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83127,81.47711,10.45949,23.37525,402.53209,35.40867,0.06,83.15515,0.2246,5.966,26.821,4.902,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.039,3511.082
-2240,0.9057,0.00092,267.6696,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8313,81.4797,10.4598,23.376,402.5449,35.4098,0.06,83.1578,0.2246,5.966,26.824,4.902,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.05,3511.082
-2241,0.90206,0.00092,267.68419,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83133,81.48216,10.46013,23.37671,402.55715,35.41087,0.06,83.16032,0.2246,5.967,26.827,4.903,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.06,3511.082
-2242,0.89842,0.00092,267.69878,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83136,81.48462,10.46046,23.37742,402.5694,35.41194,0.06,83.16284,0.2246,5.968,26.831,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.07,3511.082
-2243,0.89478,0.00092,267.71337,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83139,81.48708,10.46079,23.37813,402.58165,35.41301,0.06,83.16536,0.2246,5.968,26.834,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.08,3511.082
-2244,0.89114,0.00092,267.72796,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83142,81.48954,10.46112,23.37884,402.5939,35.41408,0.06,83.16788,0.2246,5.969,26.837,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.09,3511.082
-2245,0.8875,0.00092,267.74255,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83145,81.492,10.46145,23.37955,402.60615,35.41515,0.06,83.1704,0.2246,5.97,26.84,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.1,3511.082
-2246,0.88386,0.00092,267.75714,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83148,81.49446,10.46178,23.38026,402.6184,35.41622,0.06,83.17292,0.2246,5.971,26.843,4.906,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.11,3511.082
-2247,0.88022,0.00092,267.77173,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83151,81.49692,10.46211,23.38097,402.63065,35.41729,0.06,83.17544,0.2246,5.971,26.847,4.906,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.12,3511.082
-2248,0.87658,0.00092,267.78632,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83154,81.49938,10.46244,23.38168,402.6429,35.41836,0.06,83.17796,0.2246,5.972,26.85,4.907,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.13,3511.082
-2249,0.87294,0.00092,267.80091,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83157,81.50184,10.46277,23.38239,402.65515,35.41943,0.06,83.18048,0.2246,5.973,26.853,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.139,3511.082
-2250,0.8693,0.00092,267.8155,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8316,81.5043,10.4631,23.3831,402.6674,35.4205,0.06,83.183,0.2246,5.973,26.856,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.149,3511.082
-2251,0.8661,0.00092,267.82946,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83162,81.50668,10.46339,23.38378,402.67913,35.42153,0.06,83.18543,0.2246,5.974,26.859,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.159,3511.082
-2252,0.8629,0.00092,267.84342,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83164,81.50906,10.46368,23.38446,402.69086,35.42256,0.06,83.18786,0.2246,5.975,26.862,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.168,3511.082
-2253,0.8597,0.00092,267.85738,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83166,81.51144,10.46397,23.38514,402.70259,35.42359,0.06,83.19029,0.2246,5.975,26.865,4.91,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.178,3511.082
-2254,0.8565,0.00092,267.87134,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83168,81.51382,10.46426,23.38582,402.71432,35.42462,0.06,83.19272,0.2246,5.976,26.868,4.91,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.188,3511.082
-2255,0.8533,0.00092,267.8853,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8317,81.5162,10.46455,23.3865,402.72605,35.42565,0.06,83.19515,0.2246,5.977,26.871,4.911,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.197,3511.082
-2256,0.8501,0.00092,267.89926,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83172,81.51858,10.46484,23.38718,402.73778,35.42668,0.06,83.19758,0.2246,5.977,26.874,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.207,3511.082
-2257,0.8469,0.00092,267.91322,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83174,81.52096,10.46513,23.38786,402.74951,35.42771,0.06,83.20001,0.2246,5.978,26.877,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.216,3511.082
-2258,0.8437,0.00092,267.92718,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83176,81.52334,10.46542,23.38854,402.76124,35.42874,0.06,83.20244,0.2246,5.979,26.88,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.226,3511.082
-2259,0.8405,0.00092,267.94114,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83178,81.52572,10.46571,23.38922,402.77297,35.42977,0.06,83.20487,0.2246,5.979,26.883,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.235,3511.082
-2260,0.8373,0.00092,267.9551,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8318,81.5281,10.466,23.3899,402.7847,35.4308,0.06,83.2073,0.2246,5.98,26.886,4.914,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.244,3511.082
-2261,0.83445,0.00092,267.96848,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83182,81.53037,10.46631,23.39054,402.7959,35.43178,0.06001,83.20961,0.2246,5.981,26.889,4.914,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.253,3511.082
-2262,0.8316,0.00092,267.98186,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83184,81.53264,10.46662,23.39118,402.8071,35.43276,0.06002,83.21192,0.2246,5.981,26.892,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.263,3511.082
-2263,0.82875,0.00092,267.99524,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83186,81.53491,10.46693,23.39182,402.8183,35.43374,0.06003,83.21423,0.2246,5.982,26.895,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.272,3511.082
-2264,0.8259,0.00092,268.00862,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83188,81.53718,10.46724,23.39246,402.8295,35.43472,0.06004,83.21654,0.2246,5.983,26.898,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.281,3511.082
-2265,0.82305,0.00092,268.022,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8319,81.53945,10.46755,23.3931,402.8407,35.4357,0.06005,83.21885,0.2246,5.983,26.901,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.29,3511.082
-2266,0.8202,0.00092,268.03538,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83192,81.54172,10.46786,23.39374,402.8519,35.43668,0.06006,83.22116,0.2246,5.984,26.904,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.299,3511.082
-2267,0.81735,0.00092,268.04876,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83194,81.54399,10.46817,23.39438,402.8631,35.43766,0.06007,83.22347,0.2246,5.985,26.907,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.308,3511.082
-2268,0.8145,0.00092,268.06214,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83196,81.54626,10.46848,23.39502,402.8743,35.43864,0.06008,83.22578,0.2246,5.985,26.91,4.918,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.317,3511.082
-2269,0.81165,0.00092,268.07552,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83198,81.54853,10.46879,23.39566,402.8855,35.43962,0.06009,83.22809,0.2246,5.986,26.912,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.326,3511.082
-2270,0.8088,0.00092,268.0889,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.832,81.5508,10.4691,23.3963,402.8967,35.4406,0.0601,83.2304,0.2246,5.987,26.915,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.335,3511.082
-2271,0.80629,0.00092,268.10174,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83202,81.55298,10.46937,23.39694,402.90748,35.44156,0.0601,83.23262,0.2246,5.987,26.918,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.344,3511.082
-2272,0.80378,0.00092,268.11458,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83204,81.55516,10.46964,23.39758,402.91826,35.44252,0.0601,83.23484,0.2246,5.988,26.921,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.353,3511.082
-2273,0.80127,0.00092,268.12742,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83206,81.55734,10.46991,23.39822,402.92904,35.44348,0.0601,83.23706,0.2246,5.988,26.924,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.362,3511.082
-2274,0.79876,0.00092,268.14026,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83208,81.55952,10.47018,23.39886,402.93982,35.44444,0.0601,83.23928,0.2246,5.989,26.927,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.371,3511.082
-2275,0.79625,0.00092,268.1531,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8321,81.5617,10.47045,23.3995,402.9506,35.4454,0.0601,83.2415,0.2246,5.99,26.929,4.922,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.379,3511.082
-2276,0.79374,0.00092,268.16594,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83212,81.56388,10.47072,23.40014,402.96138,35.44636,0.0601,83.24372,0.2246,5.99,26.932,4.922,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.388,3511.082
-2277,0.79123,0.00092,268.17878,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83214,81.56606,10.47099,23.40078,402.97216,35.44732,0.0601,83.24594,0.2246,5.991,26.935,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.397,3511.082
-2278,0.78872,0.00092,268.19162,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83216,81.56824,10.47126,23.40142,402.98294,35.44828,0.0601,83.24816,0.2246,5.992,26.938,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.406,3511.082
-2279,0.78621,0.00092,268.20446,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83218,81.57042,10.47153,23.40206,402.99372,35.44924,0.0601,83.25038,0.2246,5.992,26.94,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.414,3511.082
-2280,0.7837,0.00092,268.2173,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8322,81.5726,10.4718,23.4027,403.0045,35.4502,0.0601,83.2526,0.2246,5.993,26.943,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.423,3511.082
-2281,0.78142,0.00092,268.22963,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83223,81.5747,10.47207,23.4033,403.01486,35.45111,0.0601,83.25474,0.2246,5.993,26.946,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.431,3511.082
-2282,0.77914,0.00092,268.24196,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83226,81.5768,10.47234,23.4039,403.02522,35.45202,0.0601,83.25688,0.2246,5.994,26.949,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.44,3511.082
-2283,0.77686,0.00092,268.25429,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83229,81.5789,10.47261,23.4045,403.03558,35.45293,0.0601,83.25902,0.2246,5.995,26.951,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.448,3511.082
-2284,0.77458,0.00092,268.26662,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83232,81.581,10.47288,23.4051,403.04594,35.45384,0.0601,83.26116,0.2246,5.995,26.954,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.457,3511.082
-2285,0.7723,0.00092,268.27895,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83235,81.5831,10.47315,23.4057,403.0563,35.45475,0.0601,83.2633,0.2246,5.996,26.957,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.465,3511.082
-2286,0.77002,0.00092,268.29128,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83238,81.5852,10.47342,23.4063,403.06666,35.45566,0.0601,83.26544,0.2246,5.996,26.959,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.473,3511.082
-2287,0.76774,0.00092,268.30361,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83241,81.5873,10.47369,23.4069,403.07702,35.45657,0.0601,83.26758,0.2246,5.997,26.962,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.482,3511.082
-2288,0.76546,0.00092,268.31594,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83244,81.5894,10.47396,23.4075,403.08738,35.45748,0.0601,83.26972,0.2246,5.998,26.965,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.49,3511.082
-2289,0.76318,0.00092,268.32827,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83247,81.5915,10.47423,23.4081,403.09774,35.45839,0.0601,83.27186,0.2246,5.998,26.967,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.498,3511.082
-2290,0.7609,0.00092,268.3406,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8325,81.5936,10.4745,23.4087,403.1081,35.4593,0.0601,83.274,0.2246,5.999,26.97,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.507,3511.082
-2291,0.75884,0.00092,268.35247,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83251,81.59562,10.47475,23.40928,403.11806,35.46017,0.06011,83.27607,0.2246,5.999,26.972,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.515,3511.082
-2292,0.75678,0.00092,268.36434,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83252,81.59764,10.475,23.40986,403.12802,35.46104,0.06012,83.27814,0.2246,6,26.975,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.523,3511.082
-2293,0.75472,0.00092,268.37621,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83253,81.59966,10.47525,23.41044,403.13798,35.46191,0.06013,83.28021,0.2246,6,26.978,4.93,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.531,3511.082
-2294,0.75266,0.00092,268.38808,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83254,81.60168,10.4755,23.41102,403.14794,35.46278,0.06014,83.28228,0.2246,6.001,26.98,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.539,3511.082
-2295,0.7506,0.00092,268.39995,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83255,81.6037,10.47575,23.4116,403.1579,35.46365,0.06015,83.28435,0.2246,6.002,26.983,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.547,3511.082
-2296,0.74854,0.00092,268.41182,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83256,81.60572,10.476,23.41218,403.16786,35.46452,0.06016,83.28642,0.2246,6.002,26.985,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.555,3511.082
-2297,0.74648,0.00092,268.42369,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83257,81.60774,10.47625,23.41276,403.17782,35.46539,0.06017,83.28849,0.2246,6.003,26.988,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.564,3511.082
-2298,0.74442,0.00092,268.43556,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83258,81.60976,10.4765,23.41334,403.18778,35.46626,0.06018,83.29056,0.2246,6.003,26.991,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.572,3511.082
-2299,0.74236,0.00092,268.44743,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83259,81.61178,10.47675,23.41392,403.19774,35.46713,0.06019,83.29263,0.2246,6.004,26.993,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.579,3511.082
-2300,0.7403,0.00092,268.4593,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8326,81.6138,10.477,23.4145,403.2077,35.468,0.0602,83.2947,0.2246,6.004,26.996,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.587,3511.082
-2301,0.738714,0.00092,268.46999,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83262,81.615616,10.477238,23.41502,403.21667,35.46879,0.0602,83.296552,0.2246,6.005,26.998,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.595,3511.082
-2302,0.737128,0.00092,268.48068,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83264,81.617432,10.477476,23.41554,403.22564,35.46958,0.0602,83.298404,0.2246,6.006,27.001,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.603,3511.082
-2303,0.735542,0.00092,268.49136,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83266,81.619248,10.477714,23.41606,403.23461,35.47037,0.0602,83.300256,0.2246,6.006,27.003,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.611,3511.082
-2304,0.733956,0.00092,268.50205,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83268,81.621064,10.477952,23.41658,403.24358,35.47116,0.0602,83.302108,0.2246,6.007,27.006,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.619,3511.082
-2305,0.73237,0.00092,268.51274,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8327,81.62288,10.47819,23.4171,403.25255,35.47195,0.0602,83.30396,0.2246,6.007,27.008,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.627,3511.082
-2306,0.730784,0.00092,268.52343,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83272,81.624696,10.478428,23.41762,403.26152,35.47274,0.0602,83.305812,0.2246,6.008,27.011,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.634,3511.082
-2307,0.729198,0.00092,268.53412,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83274,81.626512,10.478666,23.41814,403.27049,35.47353,0.0602,83.307664,0.2246,6.008,27.013,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.642,3511.082
-2308,0.727612,0.00092,268.5448,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83276,81.628328,10.478904,23.41866,403.27946,35.47432,0.0602,83.309516,0.2246,6.009,27.016,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.65,3511.082
-2309,0.726026,0.00092,268.55549,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83278,81.630144,10.479142,23.41918,403.28843,35.47511,0.0602,83.311368,0.2246,6.009,27.018,4.938,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.658,3511.082
-2310,0.72444,0.00092,268.56618,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8328,81.63196,10.47938,23.4197,403.2974,35.4759,0.0602,83.31322,0.2246,6.01,27.02,4.938,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.665,3511.082
-2311,0.722854,0.00092,268.57687,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83282,81.633776,10.479618,23.42022,403.30637,35.47669,0.0602,83.315072,0.2246,6.011,27.023,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.673,3511.082
-2312,0.721268,0.00092,268.58756,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83284,81.635592,10.479856,23.42074,403.31534,35.47748,0.0602,83.316924,0.2246,6.011,27.025,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.68,3511.082
-2313,0.719682,0.00092,268.59824,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83286,81.637408,10.480094,23.42126,403.32431,35.47827,0.0602,83.318776,0.2246,6.012,27.028,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.688,3511.082
-2314,0.718096,0.00092,268.60893,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83288,81.639224,10.480332,23.42178,403.33328,35.47906,0.0602,83.320628,0.2246,6.012,27.03,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.696,3511.082
-2315,0.71651,0.00092,268.61962,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8329,81.64104,10.48057,23.4223,403.34225,35.47985,0.0602,83.32248,0.2246,6.013,27.032,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.703,3511.082
-2316,0.714924,0.00092,268.63031,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83292,81.642856,10.480808,23.42282,403.35122,35.48064,0.0602,83.324332,0.2246,6.013,27.035,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.711,3511.082
-2317,0.713338,0.00092,268.641,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83294,81.644672,10.481046,23.42334,403.36019,35.48143,0.0602,83.326184,0.2246,6.014,27.037,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.718,3511.082
-2318,0.711752,0.00092,268.65168,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83296,81.646488,10.481284,23.42386,403.36916,35.48222,0.0602,83.328036,0.2246,6.014,27.04,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.725,3511.082
-2319,0.710166,0.00092,268.66237,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83298,81.648304,10.481522,23.42438,403.37813,35.48301,0.0602,83.329888,0.2246,6.015,27.042,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.733,3511.082
-2320,0.70858,0.00092,268.67306,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.833,81.65012,10.48176,23.4249,403.3871,35.4838,0.0602,83.33174,0.2246,6.015,27.044,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.74,3511.082
-2321,0.706994,0.00092,268.68375,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83302,81.651936,10.481998,23.42542,403.39607,35.48459,0.0602,83.333592,0.2246,6.016,27.047,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.748,3511.082
-2322,0.705408,0.00092,268.69444,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83304,81.653752,10.482236,23.42594,403.40504,35.48538,0.0602,83.335444,0.2246,6.016,27.049,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.755,3511.082
-2323,0.703822,0.00092,268.70512,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83306,81.655568,10.482474,23.42646,403.41401,35.48617,0.0602,83.337296,0.2246,6.017,27.051,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.762,3511.082
-2324,0.702236,0.00092,268.71581,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83308,81.657384,10.482712,23.42698,403.42298,35.48696,0.0602,83.339148,0.2246,6.017,27.054,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.77,3511.082
-2325,0.70065,0.00092,268.7265,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8331,81.6592,10.48295,23.4275,403.43195,35.48775,0.0602,83.341,0.2246,6.018,27.056,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.777,3511.082
-2326,0.699064,0.00092,268.73719,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83312,81.661016,10.483188,23.42802,403.44092,35.48854,0.0602,83.342852,0.2246,6.018,27.058,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.784,3511.082
-2327,0.697478,0.00092,268.74788,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83314,81.662832,10.483426,23.42854,403.44989,35.48933,0.0602,83.344704,0.2246,6.019,27.061,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.791,3511.082
-2328,0.695892,0.00092,268.75856,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83316,81.664648,10.483664,23.42906,403.45886,35.49012,0.0602,83.346556,0.2246,6.019,27.063,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.798,3511.082
-2329,0.694306,0.00092,268.76925,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83318,81.666464,10.483902,23.42958,403.46783,35.49091,0.0602,83.348408,0.2246,6.02,27.065,4.946,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.806,3511.082
-2330,0.69272,0.00092,268.77994,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8332,81.66828,10.48414,23.4301,403.4768,35.4917,0.0602,83.35026,0.2246,6.02,27.067,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.813,3511.082
-2331,0.691134,0.00092,268.79063,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83322,81.670096,10.484378,23.43062,403.48577,35.49249,0.0602,83.352112,0.2246,6.021,27.07,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.82,3511.082
-2332,0.689548,0.00092,268.80132,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83324,81.671912,10.484616,23.43114,403.49474,35.49328,0.0602,83.353964,0.2246,6.021,27.072,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.827,3511.082
-2333,0.687962,0.00092,268.812,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83326,81.673728,10.484854,23.43166,403.50371,35.49407,0.0602,83.355816,0.2246,6.022,27.074,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.834,3511.082
-2334,0.686376,0.00092,268.82269,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83328,81.675544,10.485092,23.43218,403.51268,35.49486,0.0602,83.357668,0.2246,6.022,27.076,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.841,3511.082
-2335,0.68479,0.00092,268.83338,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8333,81.67736,10.48533,23.4327,403.52165,35.49565,0.0602,83.35952,0.2246,6.023,27.079,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.848,3511.082
-2336,0.683204,0.00092,268.84407,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83332,81.679176,10.485568,23.43322,403.53062,35.49644,0.0602,83.361372,0.2246,6.023,27.081,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.855,3511.082
-2337,0.681618,0.00092,268.85476,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83334,81.680992,10.485806,23.43374,403.53959,35.49723,0.0602,83.363224,0.2246,6.024,27.083,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.862,3511.082
-2338,0.680032,0.00092,268.86544,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83336,81.682808,10.486044,23.43426,403.54856,35.49802,0.0602,83.365076,0.2246,6.024,27.085,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.869,3511.082
-2339,0.678446,0.00092,268.87613,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83338,81.684624,10.486282,23.43478,403.55753,35.49881,0.0602,83.366928,0.2246,6.025,27.088,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.876,3511.082
-2340,0.67686,0.00092,268.88682,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8334,81.68644,10.48652,23.4353,403.5665,35.4996,0.0602,83.36878,0.2246,6.025,27.09,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.883,3511.082
-2341,0.675274,0.00092,268.89751,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83342,81.688256,10.486758,23.43582,403.57547,35.50039,0.0602,83.370632,0.2246,6.026,27.092,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.89,3511.082
-2342,0.673688,0.00092,268.9082,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83344,81.690072,10.486996,23.43634,403.58444,35.50118,0.0602,83.372484,0.2246,6.026,27.094,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.896,3511.082
-2343,0.672102,0.00092,268.91888,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83346,81.691888,10.487234,23.43686,403.59341,35.50197,0.0602,83.374336,0.2246,6.027,27.096,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.903,3511.082
-2344,0.670516,0.00092,268.92957,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83348,81.693704,10.487472,23.43738,403.60238,35.50276,0.0602,83.376188,0.2246,6.027,27.098,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.91,3511.082
-2345,0.66893,0.00092,268.94026,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8335,81.69552,10.48771,23.4379,403.61135,35.50355,0.0602,83.37804,0.2246,6.028,27.101,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.917,3511.082
-2346,0.667344,0.00092,268.95095,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83352,81.697336,10.487948,23.43842,403.62032,35.50434,0.0602,83.379892,0.2246,6.028,27.103,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.924,3511.082
-2347,0.665758,0.00092,268.96164,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83354,81.699152,10.488186,23.43894,403.62929,35.50513,0.0602,83.381744,0.2246,6.029,27.105,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.93,3511.082
-2348,0.664172,0.00092,268.97232,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83356,81.700968,10.488424,23.43946,403.63826,35.50592,0.0602,83.383596,0.2246,6.029,27.107,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.937,3511.082
-2349,0.662586,0.00092,268.98301,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83358,81.702784,10.488662,23.43998,403.64723,35.50671,0.0602,83.385448,0.2246,6.03,27.109,4.954,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.944,3511.082
-2350,0.661,0.00092,268.9937,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8336,81.7046,10.4889,23.4405,403.6562,35.5075,0.0602,83.3873,0.2246,6.03,27.111,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.951,3511.082
-2351,0.659886,0.00092,269.00281,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051304,0.0319,0.0058,0.833618,81.706144,10.489098,23.440944,403.66384,35.508172,0.0602,83.388878,0.2246,6.031,27.113,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.957,3511.082
-2352,0.658772,0.00092,269.01192,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051308,0.0319,0.0058,0.833636,81.707688,10.489296,23.441388,403.67149,35.508844,0.0602,83.390456,0.2246,6.031,27.116,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.964,3511.082
-2353,0.657658,0.00092,269.02102,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051312,0.0319,0.0058,0.833654,81.709232,10.489494,23.441832,403.67913,35.509516,0.0602,83.392034,0.2246,6.032,27.118,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.97,3511.082
-2354,0.656544,0.00092,269.03013,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051316,0.0319,0.0058,0.833672,81.710776,10.489692,23.442276,403.68678,35.510188,0.0602,83.393612,0.2246,6.032,27.12,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.977,3511.082
-2355,0.65543,0.00092,269.03924,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05132,0.0319,0.0058,0.83369,81.71232,10.48989,23.44272,403.69442,35.51086,0.0602,83.39519,0.2246,6.033,27.122,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.984,3511.082
-2356,0.654316,0.00092,269.04835,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051324,0.0319,0.0058,0.833708,81.713864,10.490088,23.443164,403.70206,35.511532,0.0602,83.396768,0.2246,6.033,27.124,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.99,3511.082
-2357,0.653202,0.00092,269.05746,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051328,0.0319,0.0058,0.833726,81.715408,10.490286,23.443608,403.70971,35.512204,0.0602,83.398346,0.2246,6.033,27.126,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.997,3511.082
-2358,0.652088,0.00092,269.06656,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051332,0.0319,0.0058,0.833744,81.716952,10.490484,23.444052,403.71735,35.512876,0.0602,83.399924,0.2246,6.034,27.128,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.003,3511.082
-2359,0.650974,0.00092,269.07567,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051336,0.0319,0.0058,0.833762,81.718496,10.490682,23.444496,403.725,35.513548,0.0602,83.401502,0.2246,6.034,27.13,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.01,3511.082
-2360,0.64986,0.00092,269.08478,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05134,0.0319,0.0058,0.83378,81.72004,10.49088,23.44494,403.73264,35.51422,0.0602,83.40308,0.2246,6.035,27.132,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.016,3511.082
-2361,0.648746,0.00092,269.09389,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051344,0.0319,0.0058,0.833798,81.721584,10.491078,23.445384,403.74028,35.514892,0.0602,83.404658,0.2246,6.035,27.134,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.023,3511.082
-2362,0.647632,0.00092,269.103,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051348,0.0319,0.0058,0.833816,81.723128,10.491276,23.445828,403.74793,35.515564,0.0602,83.406236,0.2246,6.036,27.136,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.029,3511.082
-2363,0.646518,0.00092,269.1121,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051352,0.0319,0.0058,0.833834,81.724672,10.491474,23.446272,403.75557,35.516236,0.0602,83.407814,0.2246,6.036,27.138,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.035,3511.082
-2364,0.645404,0.00092,269.12121,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051356,0.0319,0.0058,0.833852,81.726216,10.491672,23.446716,403.76322,35.516908,0.0602,83.409392,0.2246,6.037,27.14,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.042,3511.082
-2365,0.64429,0.00092,269.13032,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05136,0.0319,0.0058,0.83387,81.72776,10.49187,23.44716,403.77086,35.51758,0.0602,83.41097,0.2246,6.037,27.142,4.961,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.048,3511.082
-2366,0.643176,0.00092,269.13943,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051364,0.0319,0.0058,0.833888,81.729304,10.492068,23.447604,403.7785,35.518252,0.0602,83.412548,0.2246,6.038,27.144,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.055,3511.082
-2367,0.642062,0.00092,269.14854,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051368,0.0319,0.0058,0.833906,81.730848,10.492266,23.448048,403.78615,35.518924,0.0602,83.414126,0.2246,6.038,27.147,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.061,3511.082
-2368,0.640948,0.00092,269.15764,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051372,0.0319,0.0058,0.833924,81.732392,10.492464,23.448492,403.79379,35.519596,0.0602,83.415704,0.2246,6.038,27.149,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.067,3511.082
-2369,0.639834,0.00092,269.16675,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051376,0.0319,0.0058,0.833942,81.733936,10.492662,23.448936,403.80144,35.520268,0.0602,83.417282,0.2246,6.039,27.151,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.073,3511.082
-2370,0.63872,0.00092,269.17586,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05138,0.0319,0.0058,0.83396,81.73548,10.49286,23.44938,403.80908,35.52094,0.0602,83.41886,0.2246,6.039,27.153,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.08,3511.082
-2371,0.637606,0.00092,269.18497,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051384,0.0319,0.0058,0.833978,81.737024,10.493058,23.449824,403.81672,35.521612,0.0602,83.420438,0.2246,6.04,27.155,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.086,3511.082
-2372,0.636492,0.00092,269.19408,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051388,0.0319,0.0058,0.833996,81.738568,10.493256,23.450268,403.82437,35.522284,0.0602,83.422016,0.2246,6.04,27.157,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.092,3511.082
-2373,0.635378,0.00092,269.20318,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051392,0.0319,0.0058,0.834014,81.740112,10.493454,23.450712,403.83201,35.522956,0.0602,83.423594,0.2246,6.041,27.158,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.098,3511.082
-2374,0.634264,0.00092,269.21229,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051396,0.0319,0.0058,0.834032,81.741656,10.493652,23.451156,403.83966,35.523628,0.0602,83.425172,0.2246,6.041,27.16,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.105,3511.082
-2375,0.63315,0.00092,269.2214,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0514,0.0319,0.0058,0.83405,81.7432,10.49385,23.4516,403.8473,35.5243,0.0602,83.42675,0.2246,6.042,27.162,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.111,3511.082
-2376,0.632036,0.00092,269.23051,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051404,0.0319,0.0058,0.834068,81.744744,10.494048,23.452044,403.85494,35.524972,0.0602,83.428328,0.2246,6.042,27.164,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.117,3511.082
-2377,0.630922,0.00092,269.23962,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051408,0.0319,0.0058,0.834086,81.746288,10.494246,23.452488,403.86259,35.525644,0.0602,83.429906,0.2246,6.042,27.166,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.123,3511.082
-2378,0.629808,0.00092,269.24872,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051412,0.0319,0.0058,0.834104,81.747832,10.494444,23.452932,403.87023,35.526316,0.0602,83.431484,0.2246,6.043,27.168,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.129,3511.082
-2379,0.628694,0.00092,269.25783,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051416,0.0319,0.0058,0.834122,81.749376,10.494642,23.453376,403.87788,35.526988,0.0602,83.433062,0.2246,6.043,27.17,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.135,3511.082
-2380,0.62758,0.00092,269.26694,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05142,0.0319,0.0058,0.83414,81.75092,10.49484,23.45382,403.88552,35.52766,0.0602,83.43464,0.2246,6.044,27.172,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.141,3511.082
-2381,0.626466,0.00092,269.27605,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051424,0.0319,0.0058,0.834158,81.752464,10.495038,23.454264,403.89316,35.528332,0.0602,83.436218,0.2246,6.044,27.174,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.148,3511.082
-2382,0.625352,0.00092,269.28516,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051428,0.0319,0.0058,0.834176,81.754008,10.495236,23.454708,403.90081,35.529004,0.0602,83.437796,0.2246,6.045,27.176,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.154,3511.082
-2383,0.624238,0.00092,269.29426,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051432,0.0319,0.0058,0.834194,81.755552,10.495434,23.455152,403.90845,35.529676,0.0602,83.439374,0.2246,6.045,27.178,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.16,3511.082
-2384,0.623124,0.00092,269.30337,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051436,0.0319,0.0058,0.834212,81.757096,10.495632,23.455596,403.9161,35.530348,0.0602,83.440952,0.2246,6.045,27.18,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.166,3511.082
-2385,0.62201,0.00092,269.31248,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05144,0.0319,0.0058,0.83423,81.75864,10.49583,23.45604,403.92374,35.53102,0.0602,83.44253,0.2246,6.046,27.182,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.172,3511.082
-2386,0.620896,0.00092,269.32159,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051444,0.0319,0.0058,0.834248,81.760184,10.496028,23.456484,403.93138,35.531692,0.0602,83.444108,0.2246,6.046,27.184,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.178,3511.082
-2387,0.619782,0.00092,269.3307,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051448,0.0319,0.0058,0.834266,81.761728,10.496226,23.456928,403.93903,35.532364,0.0602,83.445686,0.2246,6.047,27.186,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.184,3511.082
-2388,0.618668,0.00092,269.3398,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051452,0.0319,0.0058,0.834284,81.763272,10.496424,23.457372,403.94667,35.533036,0.0602,83.447264,0.2246,6.047,27.188,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.19,3511.082
-2389,0.617554,0.00092,269.34891,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051456,0.0319,0.0058,0.834302,81.764816,10.496622,23.457816,403.95432,35.533708,0.0602,83.448842,0.2246,6.048,27.189,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.195,3511.082
-2390,0.61644,0.00092,269.35802,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05146,0.0319,0.0058,0.83432,81.76636,10.49682,23.45826,403.96196,35.53438,0.0602,83.45042,0.2246,6.048,27.191,4.969,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.201,3511.082
-2391,0.615326,0.00092,269.36713,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051464,0.0319,0.0058,0.834338,81.767904,10.497018,23.458704,403.9696,35.535052,0.0602,83.451998,0.2246,6.048,27.193,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.207,3511.082
-2392,0.614212,0.00092,269.37624,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051468,0.0319,0.0058,0.834356,81.769448,10.497216,23.459148,403.97725,35.535724,0.0602,83.453576,0.2246,6.049,27.195,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.213,3511.082
-2393,0.613098,0.00092,269.38534,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051472,0.0319,0.0058,0.834374,81.770992,10.497414,23.459592,403.98489,35.536396,0.0602,83.455154,0.2246,6.049,27.197,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.219,3511.082
-2394,0.611984,0.00092,269.39445,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051476,0.0319,0.0058,0.834392,81.772536,10.497612,23.460036,403.99254,35.537068,0.0602,83.456732,0.2246,6.05,27.199,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.225,3511.082
-2395,0.61087,0.00092,269.40356,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05148,0.0319,0.0058,0.83441,81.77408,10.49781,23.46048,404.00018,35.53774,0.0602,83.45831,0.2246,6.05,27.201,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.231,3511.082
-2396,0.609756,0.00092,269.41267,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051484,0.0319,0.0058,0.834428,81.775624,10.498008,23.460924,404.00782,35.538412,0.0602,83.459888,0.2246,6.05,27.203,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.237,3511.082
-2397,0.608642,0.00092,269.42178,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051488,0.0319,0.0058,0.834446,81.777168,10.498206,23.461368,404.01547,35.539084,0.0602,83.461466,0.2246,6.051,27.204,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.242,3511.082
-2398,0.607528,0.00092,269.43088,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051492,0.0319,0.0058,0.834464,81.778712,10.498404,23.461812,404.02311,35.539756,0.0602,83.463044,0.2246,6.051,27.206,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.248,3511.082
-2399,0.606414,0.00092,269.43999,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051496,0.0319,0.0058,0.834482,81.780256,10.498602,23.462256,404.03076,35.540428,0.0602,83.464622,0.2246,6.052,27.208,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.254,3511.082
-2400,0.6053,0.00092,269.4491,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.8345,81.7818,10.4988,23.4627,404.0384,35.5411,0.0602,83.4662,0.2246,6.052,27.21,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.26,3511.082
-2401,0.604434,0.00092,269.45702,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834514,81.783148,10.498972,23.463086,404.04505,35.541686,0.060202,83.467576,0.2246,6.053,27.212,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.265,3511.082
-2402,0.603568,0.00092,269.46495,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834528,81.784496,10.499144,23.463472,404.0517,35.542272,0.060204,83.468952,0.2246,6.053,27.214,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.271,3511.082
-2403,0.602702,0.00092,269.47287,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834542,81.785844,10.499316,23.463858,404.05835,35.542858,0.060206,83.470328,0.2246,6.053,27.215,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.277,3511.082
-2404,0.601836,0.00092,269.4808,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834556,81.787192,10.499488,23.464244,404.065,35.543444,0.060208,83.471704,0.2246,6.054,27.217,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.282,3511.082
-2405,0.60097,0.00092,269.48872,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83457,81.78854,10.49966,23.46463,404.07165,35.54403,0.06021,83.47308,0.2246,6.054,27.219,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.288,3511.082
-2406,0.600104,0.00092,269.49664,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834584,81.789888,10.499832,23.465016,404.0783,35.544616,0.060212,83.474456,0.2246,6.055,27.221,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.294,3511.082
-2407,0.599238,0.00092,269.50457,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834598,81.791236,10.500004,23.465402,404.08495,35.545202,0.060214,83.475832,0.2246,6.055,27.223,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.299,3511.082
-2408,0.598372,0.00092,269.51249,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834612,81.792584,10.500176,23.465788,404.0916,35.545788,0.060216,83.477208,0.2246,6.055,27.224,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.305,3511.082
-2409,0.597506,0.00092,269.52042,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834626,81.793932,10.500348,23.466174,404.09825,35.546374,0.060218,83.478584,0.2246,6.056,27.226,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.311,3511.082
-2410,0.59664,0.00092,269.52834,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83464,81.79528,10.50052,23.46656,404.1049,35.54696,0.06022,83.47996,0.2246,6.056,27.228,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.316,3511.082
-2411,0.595774,0.00092,269.53626,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834654,81.796628,10.500692,23.466946,404.11155,35.547546,0.060222,83.481336,0.2246,6.057,27.23,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.322,3511.082
-2412,0.594908,0.00092,269.54419,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834668,81.797976,10.500864,23.467332,404.1182,35.548132,0.060224,83.482712,0.2246,6.057,27.231,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.327,3511.082
-2413,0.594042,0.00092,269.55211,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834682,81.799324,10.501036,23.467718,404.12485,35.548718,0.060226,83.484088,0.2246,6.057,27.233,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.333,3511.082
-2414,0.593176,0.00092,269.56004,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834696,81.800672,10.501208,23.468104,404.1315,35.549304,0.060228,83.485464,0.2246,6.058,27.235,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.338,3511.082
-2415,0.59231,0.00092,269.56796,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83471,81.80202,10.50138,23.46849,404.13815,35.54989,0.06023,83.48684,0.2246,6.058,27.237,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.344,3511.082
-2416,0.591444,0.00092,269.57588,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834724,81.803368,10.501552,23.468876,404.1448,35.550476,0.060232,83.488216,0.2246,6.058,27.239,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.349,3511.082
-2417,0.590578,0.00092,269.58381,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834738,81.804716,10.501724,23.469262,404.15145,35.551062,0.060234,83.489592,0.2246,6.059,27.24,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.355,3511.082
-2418,0.589712,0.00092,269.59173,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834752,81.806064,10.501896,23.469648,404.1581,35.551648,0.060236,83.490968,0.2246,6.059,27.242,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.36,3511.082
-2419,0.588846,0.00092,269.59966,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834766,81.807412,10.502068,23.470034,404.16475,35.552234,0.060238,83.492344,0.2246,6.06,27.244,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.366,3511.082
-2420,0.58798,0.00092,269.60758,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83478,81.80876,10.50224,23.47042,404.1714,35.55282,0.06024,83.49372,0.2246,6.06,27.245,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.371,3511.082
-2421,0.587114,0.00092,269.6155,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834794,81.810108,10.502412,23.470806,404.17805,35.553406,0.060242,83.495096,0.2246,6.06,27.247,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.377,3511.082
-2422,0.586248,0.00092,269.62343,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834808,81.811456,10.502584,23.471192,404.1847,35.553992,0.060244,83.496472,0.2246,6.061,27.249,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.382,3511.082
-2423,0.585382,0.00092,269.63135,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834822,81.812804,10.502756,23.471578,404.19135,35.554578,0.060246,83.497848,0.2246,6.061,27.251,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.388,3511.082
-2424,0.584516,0.00092,269.63928,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834836,81.814152,10.502928,23.471964,404.198,35.555164,0.060248,83.499224,0.2246,6.062,27.252,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.393,3511.082
-2425,0.58365,0.00092,269.6472,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83485,81.8155,10.5031,23.47235,404.20465,35.55575,0.06025,83.5006,0.2246,6.062,27.254,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.398,3511.082
-2426,0.582784,0.00092,269.65512,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834864,81.816848,10.503272,23.472736,404.2113,35.556336,0.060252,83.501976,0.2246,6.062,27.256,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.404,3511.082
-2427,0.581918,0.00092,269.66305,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834878,81.818196,10.503444,23.473122,404.21795,35.556922,0.060254,83.503352,0.2246,6.063,27.257,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.409,3511.082
-2428,0.581052,0.00092,269.67097,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834892,81.819544,10.503616,23.473508,404.2246,35.557508,0.060256,83.504728,0.2246,6.063,27.259,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.414,3511.082
-2429,0.580186,0.00092,269.6789,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834906,81.820892,10.503788,23.473894,404.23125,35.558094,0.060258,83.506104,0.2246,6.063,27.261,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.42,3511.082
-2430,0.57932,0.00092,269.68682,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83492,81.82224,10.50396,23.47428,404.2379,35.55868,0.06026,83.50748,0.2246,6.064,27.263,4.983,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.425,3511.082
-2431,0.578454,0.00092,269.69474,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834934,81.823588,10.504132,23.474666,404.24455,35.559266,0.060262,83.508856,0.2246,6.064,27.264,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.43,3511.082
-2432,0.577588,0.00092,269.70267,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834948,81.824936,10.504304,23.475052,404.2512,35.559852,0.060264,83.510232,0.2246,6.065,27.266,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.436,3511.082
-2433,0.576722,0.00092,269.71059,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834962,81.826284,10.504476,23.475438,404.25785,35.560438,0.060266,83.511608,0.2246,6.065,27.268,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.441,3511.082
-2434,0.575856,0.00092,269.71852,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834976,81.827632,10.504648,23.475824,404.2645,35.561024,0.060268,83.512984,0.2246,6.065,27.269,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.446,3511.082
-2435,0.57499,0.00092,269.72644,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83499,81.82898,10.50482,23.47621,404.27115,35.56161,0.06027,83.51436,0.2246,6.066,27.271,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.451,3511.082
-2436,0.574124,0.00092,269.73436,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835004,81.830328,10.504992,23.476596,404.2778,35.562196,0.060272,83.515736,0.2246,6.066,27.273,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.457,3511.082
-2437,0.573258,0.00092,269.74229,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835018,81.831676,10.505164,23.476982,404.28445,35.562782,0.060274,83.517112,0.2246,6.066,27.274,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.462,3511.082
-2438,0.572392,0.00092,269.75021,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835032,81.833024,10.505336,23.477368,404.2911,35.563368,0.060276,83.518488,0.2246,6.067,27.276,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.467,3511.082
-2439,0.571526,0.00092,269.75814,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835046,81.834372,10.505508,23.477754,404.29775,35.563954,0.060278,83.519864,0.2246,6.067,27.278,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.472,3511.082
-2440,0.57066,0.00092,269.76606,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83506,81.83572,10.50568,23.47814,404.3044,35.56454,0.06028,83.52124,0.2246,6.068,27.279,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.477,3511.082
-2441,0.569794,0.00092,269.77398,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835074,81.837068,10.505852,23.478526,404.31105,35.565126,0.060282,83.522616,0.2246,6.068,27.281,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.482,3511.082
-2442,0.568928,0.00092,269.78191,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835088,81.838416,10.506024,23.478912,404.3177,35.565712,0.060284,83.523992,0.2246,6.068,27.283,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.488,3511.082
-2443,0.568062,0.00092,269.78983,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835102,81.839764,10.506196,23.479298,404.32435,35.566298,0.060286,83.525368,0.2246,6.069,27.284,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.493,3511.082
-2444,0.567196,0.00092,269.79776,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835116,81.841112,10.506368,23.479684,404.331,35.566884,0.060288,83.526744,0.2246,6.069,27.286,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.498,3511.082
-2445,0.56633,0.00092,269.80568,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83513,81.84246,10.50654,23.48007,404.33765,35.56747,0.06029,83.52812,0.2246,6.069,27.287,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.503,3511.082
-2446,0.565464,0.00092,269.8136,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835144,81.843808,10.506712,23.480456,404.3443,35.568056,0.060292,83.529496,0.2246,6.07,27.289,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.508,3511.082
-2447,0.564598,0.00092,269.82153,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835158,81.845156,10.506884,23.480842,404.35095,35.568642,0.060294,83.530872,0.2246,6.07,27.291,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.513,3511.082
-2448,0.563732,0.00092,269.82945,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835172,81.846504,10.507056,23.481228,404.3576,35.569228,0.060296,83.532248,0.2246,6.07,27.292,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.518,3511.082
-2449,0.562866,0.00092,269.83738,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835186,81.847852,10.507228,23.481614,404.36425,35.569814,0.060298,83.533624,0.2246,6.071,27.294,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.523,3511.082
-2450,0.562,0.00092,269.8453,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.8352,81.8492,10.5074,23.482,404.3709,35.5704,0.0603,83.535,0.2246,6.071,27.295,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.528,3511.082
-2451,0.56425,0.00092,269.82627,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051496,0.0319,0.0058,0.835164,81.845968,10.506984,23.481072,404.35493,35.568994,0.060298,83.531698,0.2246,6.072,27.297,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.533,3511.082
-2452,0.5665,0.00092,269.80724,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051492,0.0319,0.0058,0.835128,81.842736,10.506568,23.480144,404.33896,35.567588,0.060296,83.528396,0.2246,6.072,27.299,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.538,3511.082
-2453,0.56875,0.00092,269.7882,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051488,0.0319,0.0058,0.835092,81.839504,10.506152,23.479216,404.32299,35.566182,0.060294,83.525094,0.2246,6.072,27.3,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.543,3511.082
-2454,0.571,0.00092,269.76917,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051484,0.0319,0.0058,0.835056,81.836272,10.505736,23.478288,404.30702,35.564776,0.060292,83.521792,0.2246,6.073,27.302,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.548,3511.082
-2455,0.57325,0.00092,269.75014,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05148,0.0319,0.0058,0.83502,81.83304,10.50532,23.47736,404.29105,35.56337,0.06029,83.51849,0.2246,6.073,27.303,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.553,3511.082
-2456,0.5755,0.00092,269.73111,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051476,0.0319,0.0058,0.834984,81.829808,10.504904,23.476432,404.27508,35.561964,0.060288,83.515188,0.2246,6.073,27.305,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.558,3511.082
-2457,0.57775,0.00092,269.71208,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051472,0.0319,0.0058,0.834948,81.826576,10.504488,23.475504,404.25911,35.560558,0.060286,83.511886,0.2246,6.074,27.307,4.991,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.563,3511.082
-2458,0.58,0.00092,269.69304,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051468,0.0319,0.0058,0.834912,81.823344,10.504072,23.474576,404.24314,35.559152,0.060284,83.508584,0.2246,6.074,27.308,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.568,3511.082
-2459,0.58225,0.00092,269.67401,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051464,0.0319,0.0058,0.834876,81.820112,10.503656,23.473648,404.22717,35.557746,0.060282,83.505282,0.2246,6.074,27.31,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.573,3511.082
-2460,0.5845,0.00092,269.65498,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05146,0.0319,0.0058,0.83484,81.81688,10.50324,23.47272,404.2112,35.55634,0.06028,83.50198,0.2246,6.075,27.311,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.578,3511.082
-2461,0.58675,0.00092,269.63595,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051456,0.0319,0.0058,0.834804,81.813648,10.502824,23.471792,404.19523,35.554934,0.060278,83.498678,0.2246,6.075,27.313,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.583,3511.082
-2462,0.589,0.00092,269.61692,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051452,0.0319,0.0058,0.834768,81.810416,10.502408,23.470864,404.17926,35.553528,0.060276,83.495376,0.2246,6.075,27.314,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.588,3511.082
-2463,0.59125,0.00092,269.59788,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051448,0.0319,0.0058,0.834732,81.807184,10.501992,23.469936,404.16329,35.552122,0.060274,83.492074,0.2246,6.076,27.316,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.593,3511.082
-2464,0.5935,0.00092,269.57885,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051444,0.0319,0.0058,0.834696,81.803952,10.501576,23.469008,404.14732,35.550716,0.060272,83.488772,0.2246,6.076,27.318,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.597,3511.082
-2465,0.59575,0.00092,269.55982,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05144,0.0319,0.0058,0.83466,81.80072,10.50116,23.46808,404.13135,35.54931,0.06027,83.48547,0.2246,6.076,27.319,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.602,3511.082
-2466,0.598,0.00092,269.54079,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051436,0.0319,0.0058,0.834624,81.797488,10.500744,23.467152,404.11538,35.547904,0.060268,83.482168,0.2246,6.077,27.321,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.607,3511.082
-2467,0.60025,0.00092,269.52176,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051432,0.0319,0.0058,0.834588,81.794256,10.500328,23.466224,404.09941,35.546498,0.060266,83.478866,0.2246,6.077,27.322,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.612,3511.082
-2468,0.6025,0.00092,269.50272,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051428,0.0319,0.0058,0.834552,81.791024,10.499912,23.465296,404.08344,35.545092,0.060264,83.475564,0.2246,6.077,27.324,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.617,3511.082
-2469,0.60475,0.00092,269.48369,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051424,0.0319,0.0058,0.834516,81.787792,10.499496,23.464368,404.06747,35.543686,0.060262,83.472262,0.2246,6.078,27.325,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.622,3511.082
-2470,0.607,0.00092,269.46466,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05142,0.0319,0.0058,0.83448,81.78456,10.49908,23.46344,404.0515,35.54228,0.06026,83.46896,0.2246,6.078,27.327,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.626,3511.082
-2471,0.60925,0.00092,269.44563,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051416,0.0319,0.0058,0.834444,81.781328,10.498664,23.462512,404.03553,35.540874,0.060258,83.465658,0.2246,6.078,27.328,4.995,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.631,3511.082
-2472,0.6115,0.00092,269.4266,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051412,0.0319,0.0058,0.834408,81.778096,10.498248,23.461584,404.01956,35.539468,0.060256,83.462356,0.2246,6.079,27.33,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.636,3511.082
-2473,0.61375,0.00092,269.40756,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051408,0.0319,0.0058,0.834372,81.774864,10.497832,23.460656,404.00359,35.538062,0.060254,83.459054,0.2246,6.079,27.331,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.641,3511.082
-2474,0.616,0.00092,269.38853,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051404,0.0319,0.0058,0.834336,81.771632,10.497416,23.459728,403.98762,35.536656,0.060252,83.455752,0.2246,6.079,27.333,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.645,3511.082
-2475,0.61825,0.00092,269.3695,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0514,0.0319,0.0058,0.8343,81.7684,10.497,23.4588,403.97165,35.53525,0.06025,83.45245,0.2246,6.08,27.334,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.65,3511.082
-2476,0.6205,0.00092,269.35047,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051396,0.0319,0.0058,0.834264,81.765168,10.496584,23.457872,403.95568,35.533844,0.060248,83.449148,0.2246,6.08,27.336,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.655,3511.082
-2477,0.62275,0.00092,269.33144,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051392,0.0319,0.0058,0.834228,81.761936,10.496168,23.456944,403.93971,35.532438,0.060246,83.445846,0.2246,6.08,27.337,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.66,3511.082
-2478,0.625,0.00092,269.3124,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051388,0.0319,0.0058,0.834192,81.758704,10.495752,23.456016,403.92374,35.531032,0.060244,83.442544,0.2246,6.081,27.339,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.664,3511.082
-2479,0.62725,0.00092,269.29337,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051384,0.0319,0.0058,0.834156,81.755472,10.495336,23.455088,403.90777,35.529626,0.060242,83.439242,0.2246,6.081,27.34,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.669,3511.082
-2480,0.6295,0.00092,269.27434,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05138,0.0319,0.0058,0.83412,81.75224,10.49492,23.45416,403.8918,35.52822,0.06024,83.43594,0.2246,6.081,27.342,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.674,3511.082
-2481,0.63175,0.00092,269.25531,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051376,0.0319,0.0058,0.834084,81.749008,10.494504,23.453232,403.87583,35.526814,0.060238,83.432638,0.2246,6.082,27.343,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.678,3511.082
-2482,0.634,0.00092,269.23628,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051372,0.0319,0.0058,0.834048,81.745776,10.494088,23.452304,403.85986,35.525408,0.060236,83.429336,0.2246,6.082,27.345,4.998,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.683,3511.082
-2483,0.63625,0.00092,269.21724,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051368,0.0319,0.0058,0.834012,81.742544,10.493672,23.451376,403.84389,35.524002,0.060234,83.426034,0.2246,6.082,27.346,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.688,3511.082
-2484,0.6385,0.00092,269.19821,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051364,0.0319,0.0058,0.833976,81.739312,10.493256,23.450448,403.82792,35.522596,0.060232,83.422732,0.2246,6.083,27.348,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.692,3511.082
-2485,0.64075,0.00092,269.17918,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05136,0.0319,0.0058,0.83394,81.73608,10.49284,23.44952,403.81195,35.52119,0.06023,83.41943,0.2246,6.083,27.349,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.697,3511.082
-2486,0.643,0.00092,269.16015,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051356,0.0319,0.0058,0.833904,81.732848,10.492424,23.448592,403.79598,35.519784,0.060228,83.416128,0.2246,6.083,27.351,4.999,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.702,3511.082
-2487,0.64525,0.00092,269.14112,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051352,0.0319,0.0058,0.833868,81.729616,10.492008,23.447664,403.78001,35.518378,0.060226,83.412826,0.2246,6.084,27.352,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.706,3511.082
-2488,0.6475,0.00092,269.12208,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051348,0.0319,0.0058,0.833832,81.726384,10.491592,23.446736,403.76404,35.516972,0.060224,83.409524,0.2246,6.084,27.354,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.711,3511.082
-2489,0.64975,0.00092,269.10305,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051344,0.0319,0.0058,0.833796,81.723152,10.491176,23.445808,403.74807,35.515566,0.060222,83.406222,0.2246,6.084,27.355,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.715,3511.082
-2490,0.652,0.00092,269.08402,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05134,0.0319,0.0058,0.83376,81.71992,10.49076,23.44488,403.7321,35.51416,0.06022,83.40292,0.2246,6.085,27.357,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.72,3511.082
-2491,0.65425,0.00092,269.06499,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051336,0.0319,0.0058,0.833724,81.716688,10.490344,23.443952,403.71613,35.512754,0.060218,83.399618,0.2246,6.085,27.358,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.725,3511.082
-2492,0.6565,0.00092,269.04596,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051332,0.0319,0.0058,0.833688,81.713456,10.489928,23.443024,403.70016,35.511348,0.060216,83.396316,0.2246,6.085,27.359,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.729,3511.082
-2493,0.65875,0.00092,269.02692,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051328,0.0319,0.0058,0.833652,81.710224,10.489512,23.442096,403.68419,35.509942,0.060214,83.393014,0.2246,6.086,27.361,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.734,3511.082
-2494,0.661,0.00092,269.00789,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051324,0.0319,0.0058,0.833616,81.706992,10.489096,23.441168,403.66822,35.508536,0.060212,83.389712,0.2246,6.086,27.362,5.001,1.24,0.176,0.159,0,0.059,0.308,0.041,0.004,0,0.181,0,158.738,3511.082
-2495,0.66325,0.00092,268.98886,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05132,0.0319,0.0058,0.83358,81.70376,10.48868,23.44024,403.65225,35.50713,0.06021,83.38641,0.2246,6.086,27.364,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.743,3511.082
-2496,0.6655,0.00092,268.96983,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051316,0.0319,0.0058,0.833544,81.700528,10.488264,23.439312,403.63628,35.505724,0.060208,83.383108,0.2246,6.087,27.365,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.747,3511.082
-2497,0.66775,0.00092,268.9508,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051312,0.0319,0.0058,0.833508,81.697296,10.487848,23.438384,403.62031,35.504318,0.060206,83.379806,0.2246,6.087,27.367,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.752,3511.082
-2498,0.67,0.00092,268.93176,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051308,0.0319,0.0058,0.833472,81.694064,10.487432,23.437456,403.60434,35.502912,0.060204,83.376504,0.2246,6.087,27.368,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.756,3511.082
-2499,0.67225,0.00092,268.91273,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051304,0.0319,0.0058,0.833436,81.690832,10.487016,23.436528,403.58837,35.501506,0.060202,83.373202,0.2246,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.761,3511.082
-2500,0.6745,0.00092,268.8937,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8334,81.6876,10.4866,23.4356,403.5724,35.5001,0.0602,83.3699,0.2246,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.761,3511.082
diff --git a/inst/shinyApp/www/input/emissions/RCP6_custom_template.csv b/inst/shinyApp/www/input/emissions/RCP6_custom_template.csv
deleted file mode 100644
index e4e7f1d..0000000
--- a/inst/shinyApp/www/input/emissions/RCP6_custom_template.csv
+++ /dev/null
@@ -1,740 +0,0 @@
-; RCP 6 emissions ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,GgS/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr
-Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,CF4_emissions,C2F6_emissions,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions
-1765,0.003,0,0,0,0,0,0,0,0,0,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1766,0.003,0.005338296,1.9632619,0.005191085,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1767,0.003,0.010676593,2.4364481,0.010116813,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1768,0.003,0.016014889,2.911105,0.015042803,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1769,0.003,0.021353185,3.3872782,0.019969063,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1770,0.003,0.026691482,3.8650146,0.024895601,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1771,0.004,0.032029778,4.3443625,0.029822427,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1772,0.004,0.037368074,4.8253718,0.034749548,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1773,0.004,0.042706371,5.3080938,0.039676975,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1774,0.004,0.048044667,5.7925816,0.044604715,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1775,0.004,0.053382963,6.2788896,0.04953278,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1776,0.004,0.058721259,6.7670743,0.05446118,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1777,0.004,0.064059556,7.2571937,0.059389923,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1778,0.004,0.069397852,7.7493076,0.064319022,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1779,0.004,0.074736148,8.2434776,0.069248487,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1780,0.004,0.080074445,8.7397674,0.07417833,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1781,0.005,0.085412741,9.2382426,0.079108562,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1782,0.005,0.090751037,9.7389706,0.084039195,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1783,0.005,0.096089334,10.242021,0.088970241,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1784,0.005,0.10142763,10.747466,0.093901714,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1785,0.005,0.10676593,11.25538,0.098833627,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1786,0.005,0.11210422,11.765839,0.10376599,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1787,0.005,0.11744252,12.278921,0.10869883,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1788,0.005,0.12278082,12.794707,0.11363214,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1789,0.005,0.12811911,13.313282,0.11856595,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1790,0.005,0.13345741,13.834732,0.12350027,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1791,0.006,0.1387957,14.359145,0.12843512,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1792,0.006,0.144134,14.886613,0.13337052,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1793,0.006,0.1494723,15.417231,0.13830648,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1794,0.006,0.15481059,15.951096,0.14324301,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1795,0.006,0.16014889,16.488308,0.14818014,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1796,0.006,0.16548719,17.028971,0.15311788,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1797,0.007,0.17082548,17.573192,0.15805626,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1798,0.007,0.17616378,18.121081,0.16299529,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1799,0.007,0.18150207,18.672751,0.167935,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1800,0.008,0.18684037,19.228319,0.1728754,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1801,0.008,0.19217867,19.787906,0.17781651,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1802,0.01,0.19751696,20.351635,0.18275836,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1803,0.009,0.20285526,20.919636,0.18770098,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1804,0.009,0.20819356,21.49204,0.19264437,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1805,0.009,0.21353185,22.068984,0.19758858,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1806,0.01,0.21887015,22.650607,0.20253362,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1807,0.01,0.22420845,23.237055,0.20747952,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1808,0.01,0.22954674,23.828476,0.2124263,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1809,0.01,0.23488504,24.425025,0.217374,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1810,0.01,0.24022333,25.02686,0.22232264,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1811,0.011,0.24556163,25.634145,0.22727225,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1812,0.011,0.25089993,26.247048,0.23222285,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1813,0.011,0.25623822,26.865743,0.2371745,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1814,0.011,0.26157652,27.490408,0.2421272,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1815,0.012,0.26691482,28.12123,0.247081,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1816,0.013,0.27225311,28.758398,0.25203593,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1817,0.014,0.27759141,29.402108,0.25699203,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1818,0.014,0.2829297,30.052563,0.26194932,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1819,0.014,0.288268,30.709971,0.26690786,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1820,0.014,0.2936063,31.374548,0.27186767,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1821,0.014,0.29894459,32.046514,0.2768288,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1822,0.015,0.30428289,32.7261,0.28179128,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1823,0.016,0.30962119,33.413539,0.28675516,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1824,0.016,0.31495948,34.109076,0.29172049,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1825,0.017,0.32029778,34.81296,0.2966873,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1826,0.017,0.32563608,35.52545,0.30165564,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1827,0.018,0.33097437,36.246813,0.30662557,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1828,0.018,0.33631267,36.977321,0.31159712,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1829,0.018,0.34165096,37.717259,0.31657035,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1830,0.024,0.34698926,38.466917,0.32154532,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1831,0.023,0.35232756,39.226597,0.32652206,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1832,0.023,0.35766585,39.996609,0.33150065,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1833,0.024,0.36300415,40.777271,0.33648114,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1834,0.024,0.36834245,41.568914,0.34146358,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1835,0.025,0.37368074,42.371876,0.34644803,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1836,0.029,0.37901904,43.186509,0.35143456,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1837,0.029,0.38435733,44.013173,0.35642324,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1838,0.03,0.38969563,44.85224,0.36141413,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1839,0.031,0.39503393,45.704093,0.36640729,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1840,0.032999999,0.40037222,46.569129,0.3714028,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1841,0.033999999,0.40571052,47.447755,0.37640073,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1842,0.035999999,0.41104882,48.34039,0.38140115,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1843,0.036999999,0.41638711,49.247469,0.38640415,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1844,0.038999999,0.42172541,50.169439,0.3914098,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1845,0.042999999,0.42706371,51.106759,0.39641818,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1846,0.042999999,0.432402,52.059904,0.40142938,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1847,0.045999999,0.4377403,53.029365,0.40644349,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1848,0.046999999,0.44307859,54.015644,0.41146059,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1849,0.049999999,0.44841689,55.019264,0.41648078,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1850,0.053999999,0.45375519,56.040759,0.42150415,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,157.267,3100.211
-1851,0.053999999,0.44678569,56.46132,0.42740096,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,157.267,3100.211
-1852,0.056999999,0.49862282,56.88188,0.46466062,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,157.267,3100.211
-1853,0.058999999,0.49735449,57.302441,0.46477417,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,157.267,3100.211
-1854,0.068999999,0.49581708,57.723001,0.46443647,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,157.267,3100.211
-1855,0.070999999,0.49367925,58.143562,0.46327909,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,157.267,3100.211
-1856,0.075999999,0.49893488,58.564122,0.46729312,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,157.267,3100.211
-1857,0.076999999,0.504232,58.984683,0.47126447,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,157.267,3100.211
-1858,0.077999999,0.50923298,59.405243,0.47503119,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,157.267,3100.211
-1859,0.082999999,0.51425389,59.825804,0.47876627,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,157.267,3100.211
-1860,0.090999999,0.51896689,60.246364,0.48257672,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,157.267,3100.211
-1861,0.094999998,0.5282236,59.614468,0.50499476,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,157.267,3100.211
-1862,0.096999998,0.47371663,58.982573,0.47111281,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,157.267,3100.211
-1863,0.104,0.47374912,58.350677,0.47444935,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,157.267,3100.211
-1864,0.112,0.47413825,57.718781,0.47785801,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,157.267,3100.211
-1865,0.119,0.47479536,57.086885,0.48144966,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,157.267,3100.211
-1866,0.122,0.47491218,56.45499,0.48420454,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,157.267,3100.211
-1867,0.13022269,0.47338353,55.823094,0.48472337,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,157.267,3100.211
-1868,0.13525196,0.47198274,55.191198,0.48595323,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,157.267,3100.211
-1869,0.14228123,0.47048522,54.559303,0.48686155,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,157.267,3100.211
-1870,0.14731051,0.46933399,53.927407,0.48774355,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,157.267,3100.211
-1871,0.15633978,0.48732546,56.683869,0.58501628,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,157.267,3100.211
-1872,0.17336905,0.56696435,59.440331,0.66673981,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,157.267,3100.211
-1873,0.18439832,0.57690133,62.196793,0.69637076,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,157.267,3100.211
-1874,0.1744276,0.58328394,64.953255,0.7087503,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,157.267,3100.211
-1875,0.18845687,0.5899696,67.709717,0.72034342,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,157.267,3100.211
-1876,0.19148614,0.59639187,70.46618,0.74524338,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,157.267,3100.211
-1877,0.19451541,0.60262312,73.222642,0.75633197,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,157.267,3100.211
-1878,0.196,0.6090507,75.979104,0.7660459,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,157.267,3100.211
-1879,0.21,0.61534752,78.735566,0.77491118,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,157.267,3100.211
-1880,0.236,0.62124317,81.492028,0.78412129,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,157.267,3100.211
-1881,0.243,0.64887292,84.359461,0.81157848,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,157.267,3100.211
-1882,0.256,0.60466403,87.226893,0.78526034,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,157.267,3100.211
-1883,0.272,0.60851762,90.094326,0.79255607,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,157.267,3100.211
-1884,0.275,0.61212775,92.961758,0.7987505,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,157.267,3100.211
-1885,0.27699999,0.61523611,95.829191,0.80453383,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,157.267,3100.211
-1886,0.28099999,0.61714413,98.696624,0.82619361,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,157.267,3100.211
-1887,0.295,0.61616314,101.56406,0.83219647,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,157.267,3100.211
-1888,0.32699999,0.61473356,104.43149,0.83705812,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,157.267,3100.211
-1889,0.32699999,0.6132002,107.29892,0.84143987,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,157.267,3100.211
-1890,0.35599999,0.61175412,110.16635,0.84552548,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,157.267,3100.211
-1891,0.37199999,0.61024855,111.52362,0.85098169,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,157.267,3100.211
-1892,0.37399999,0.62319119,112.88089,0.85741997,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,157.267,3100.211
-1893,0.36999999,0.62440331,114.23816,0.86475824,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,157.267,3100.211
-1894,0.38299999,0.64036719,115.59543,0.87294487,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,157.267,3100.211
-1895,0.40599999,0.64441851,116.9527,0.88188195,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,157.267,3100.211
-1896,0.41899999,0.6462784,118.30997,0.89141802,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,157.267,3100.211
-1897,0.43999999,0.64956412,119.66724,0.90140157,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,157.267,3100.211
-1898,0.46499999,0.65100098,121.02451,0.91168111,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,157.267,3100.211
-1899,0.50699999,0.65220446,122.38178,0.92210515,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,157.267,3100.211
-1900,0.53399999,0.65320628,123.73905,0.9325222,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,157.267,3100.211
-1901,0.55199999,0.70294318,124.8415,0.9446669,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,157.267,3100.211
-1902,0.56599999,0.70297364,125.94396,0.95993065,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,157.267,3100.211
-1903,0.61699999,0.72667096,127.04642,0.97764708,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,157.267,3100.211
-1904,0.62399999,0.74829324,128.14887,0.99722904,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,157.267,3100.211
-1905,0.66299999,0.76981521,129.25133,1.0181293,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,157.267,3100.211
-1906,0.70699999,0.79653384,130.35378,1.0397413,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,157.267,3100.211
-1907,0.78399999,0.80376274,131.45624,1.0614586,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,157.267,3100.211
-1908,0.74999999,0.81141278,132.5587,1.0826746,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,157.267,3100.211
-1909,0.78499999,0.81737807,133.66115,1.1027829,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,157.267,3100.211
-1910,0.81899999,0.82198169,134.76361,1.121177,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,157.267,3100.211
-1911,0.83599999,0.77889405,135.96943,1.1389722,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,157.267,3100.211
-1912,0.87899999,0.74784844,137.17525,1.1575596,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,157.267,3100.211
-1913,0.94299999,0.72297977,138.38107,1.1767464,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,157.267,3100.211
-1914,0.84999999,0.71479152,139.5869,1.1962611,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,157.267,3100.211
-1915,0.83799999,0.70574964,140.79272,1.2158443,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,157.267,3100.211
-1916,0.90099999,0.70811648,141.99854,1.2353217,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,157.267,3100.211
-1917,0.95499999,0.7111963,143.20436,1.254519,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,157.267,3100.211
-1918,0.93599999,0.71430427,144.41019,1.2732618,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,157.267,3100.211
-1919,0.80599999,0.71965435,145.61601,1.2913759,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,157.267,3100.211
-1920,0.93199999,0.72128338,146.82183,1.3086869,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,157.267,3100.211
-1921,0.80299999,0.75741661,147.86155,1.3257924,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,157.267,3100.211
-1922,0.84499999,0.7479409,148.90128,1.343275,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,157.267,3100.211
-1923,0.96999999,0.75328819,149.941,1.3609385,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,157.267,3100.211
-1924,0.96299999,0.75686059,150.98072,1.3796194,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,157.267,3100.211
-1925,0.97499999,0.75808855,152.02045,1.3998974,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,157.267,3100.211
-1926,0.98299999,0.76148327,153.06017,1.4211909,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,157.267,3100.211
-1927,1.062,0.79718283,154.09989,1.4429184,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,157.267,3100.211
-1928,1.065,0.79967141,155.13962,1.4644982,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,157.267,3100.211
-1929,1.145,0.82422601,156.17934,1.4853488,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,157.267,3100.211
-1930,1.053,0.89587975,157.21906,1.5048887,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,1.6637375,0.23563239,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,157.267,3100.211
-1931,0.93999999,0.90334082,158.34545,1.5226236,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,1.7507764,0.24803412,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,157.267,3100.211
-1932,0.84699999,0.81222597,159.47183,1.5385172,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,1.8423953,0.26108852,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,157.267,3100.211
-1933,0.89299999,0.80858849,160.59821,1.5526746,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,1.9388369,0.27483004,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,157.267,3100.211
-1934,0.97299999,0.79686256,161.7246,1.5653127,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,2.0403528,0.28929476,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,157.267,3100.211
-1935,1.027,0.79471575,162.85098,1.5771213,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,2.1472124,0.30452082,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,157.267,3100.211
-1936,1.13,0.80129993,163.97736,1.5889151,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,2.2596977,0.32054821,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,157.267,3100.211
-1937,1.209,0.77969902,165.10375,1.6015088,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,2.3781004,0.33741917,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,157.267,3100.211
-1938,1.142,0.78188222,166.23013,1.615717,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,2.5027381,0.35517808,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,157.267,3100.211
-1939,1.192,0.77944376,167.35651,1.6323545,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,2.6339328,0.37387169,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,157.267,3100.211
-1940,1.299,0.76683237,168.4829,1.6522358,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,2.7720335,0.39354912,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,157.267,3100.211
-1941,1.334,0.75036458,170.03046,1.7002044,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,2.9174066,0.41426223,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,157.267,3100.211
-1942,1.342,0.7690497,171.57803,1.7938613,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,3.0704314,0.39468287,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,157.267,3100.211
-1943,1.391,0.7637656,173.12559,1.9231582,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,3.2315097,0.37832187,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,157.267,3100.211
-1944,1.383,0.76839864,174.67315,2.0866797,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,3.4010636,0.3640764,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,157.267,3100.211
-1945,1.16,0.76914739,176.22072,2.280402,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,3.579544,0.35194679,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,157.267,3100.211
-1946,1.238,0.84214892,177.76828,2.4903635,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,3.7674167,0.34193311,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,157.267,3100.211
-1947,1.392,0.87017994,179.31584,2.7026031,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,3.9651774,0.33403572,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,157.267,3100.211
-1948,1.469,0.87513044,180.86341,2.9031595,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,4.1733472,0.32825472,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,157.267,3100.211
-1949,1.419,0.88212641,182.41097,3.0780722,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,4.3924702,0.32459037,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,157.267,3100.211
-1950,1.63,0.89233465,183.95853,3.2133815,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,4.62313,0.32304286,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,157.267,3100.211
-1951,1.768,1.0885201,189.11003,3.3186021,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,4.865916,0.32361242,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,157.267,3100.211
-1952,1.796,1.1096378,194.26153,3.4111061,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,5.121479,0.32629927,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,157.927,3117.785
-1953,1.841,1.1045171,199.41303,3.4887221,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,5.3904959,0.3311036,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,158.604,3137.148
-1954,1.865,1.1521416,204.56453,3.5543489,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,5.6736692,0.33802563,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,159.3,3158.216
-1955,2.043,1.1911855,209.71603,3.614111,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,5.9717491,0.34706557,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,160.014,3180.749
-1956,2.178,1.2446883,214.86753,3.6706801,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,6.2855162,0.35822365,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,160.748,3204.498
-1957,2.27,1.2718718,220.01902,3.7267318,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,6.6157969,0.37150001,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,161.502,3229.071
-1958,2.33,1.3195817,225.17052,3.7849451,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,6.9634615,0.38689499,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,162.277,3254.039
-1959,2.462,1.2035957,230.32202,3.8480013,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,7.3294266,0.40440867,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,163.073,3278.967
-1960,2.577,1.1922833,235.47352,3.9185827,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,7.7146508,0.42404135,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,163.892,3303.389
-1961,2.594,1.2443218,238.52217,4.0240052,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,8.1201607,0.4457932,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,164.735,3326.864
-1962,2.7,1.2355717,241.57083,4.1836477,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,8.5470132,0.46966444,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,165.601,3349.069
-1963,2.848,1.2442947,244.61948,4.3883117,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,14.984956,0.49565531,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.007,166.493,3369.713
-1964,3.008,1.2515879,247.66813,4.6374693,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,13.488099,0.52376596,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.003,0.014,167.41,3388.628
-1965,3.145,1.2642558,250.71679,4.8968181,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,13.488369,0.55399667,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.028,168.355,3405.698
-1966,3.305,1.2936968,253.76544,5.195583,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,13.488639,0.58634761,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.048,169.328,3420.923
-1967,3.411,1.2976254,256.81409,5.457478,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,13.488909,0.62081899,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.075,170.329,3434.335
-1968,3.588,1.2352028,259.86274,5.619744,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,13.48918,0.65741104,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.016,0.109,171.36,3446.065
-1969,3.8,1.2383879,262.9114,5.784831,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,13.489449,0.69612398,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.024,0.15,172.423,3456.224
-1970,4.076,1.1971129,265.96005,5.9368752,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,11.992564,0.73695798,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.043,0.197,173.518,3464.95
-1971,4.231,1.0708913,270.02505,5.6049759,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,13.489967,0.7799133,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.1,0.252,174.646,3472.409
-1972,4.399,1.0470621,274.09004,5.9181309,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,13.490244,0.82499011,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.17,0.313,175.809,3478.741
-1973,4.6349999,1.0330987,278.15504,6.0449043,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,13.490523,0.87218868,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.277,0.391,177.007,3484.114
-1974,4.644,1.0387371,282.22003,5.9406002,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,11.993645,0.9215092,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.372,0.468,178.243,3488.632
-1975,4.615,1.0315876,286.28503,6.1409693,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,13.49105,0.97295172,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.524,0.544,179.517,3492.425
-1976,4.883,1.0906077,290.35002,6.3042588,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,13.491328,1.0265167,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.783,0.621,180.83,3495.619
-1977,5.029,1.0939874,294.41502,6.534405,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,11.994452,1.0822044,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,1.006,0.697,182.185,3498.281
-1978,5.105,1.09037,298.48002,6.6193729,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,13.491857,1.1400146,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,1.253,0.774,183.581,3500.505
-1979,5.387,1.0647127,302.54501,7.007773,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,11.994981,1.1999481,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,1.548,0.85,185.022,3502.36
-1980,5.332,1.0252096,306.61001,7.0613923,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,13.492387,1.2620043,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,1.805,0.927,186.506,3503.915
-1981,5.168,1.0448621,310.01251,6.8417522,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,11.995499,1.3261846,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,2.139,1.003,188.038,3505.193
-1982,5.127,1.1904055,313.415,7.1189858,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,13.492893,1.392488,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,2.645,1.105,189.616,3506.255
-1983,5.11,1.2255201,316.8175,7.2168971,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,11.996004,1.4609153,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,2.98,1.183,191.243,3507.154
-1984,5.29,1.2600833,320.22,7.0481314,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,11.996242,1.5314669,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,3.475,1.262,192.92,3507.882
-1985,5.444,1.2753449,323.6225,7.0169243,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,11.99648,1.6041426,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,3.997,1.355,194.648,3508.496
-1986,5.61,1.2872023,327.025,7.0704917,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,13.493874,1.678943,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,4.579,1.434,196.427,3508.999
-1987,5.753,1.2940086,330.42749,7.4616728,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,11.996986,1.7558675,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,5.109,1.504,198.259,3509.425
-1988,5.964,1.3167248,333.82999,7.2025077,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,11.997224,1.8349176,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,5.696,1.728,200.146,3509.774
-1989,6.089,1.3236436,337.23249,7.3310397,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,11.997462,1.9160924,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,5.482,1.73,202.087,3510.061
-1990,6.144,1.3194833,340.63499,7.5856812,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,11.997683,2.0735678,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,5.119,1.73,204.082,3510.299
-1991,6.235,1.3809799,336.59218,7.4023631,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,11.997905,2.3729101,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,4.094,1.735,206.133,3510.501
-1992,6.118,1.3035304,332.54937,7.7989323,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,11.998111,2.3731469,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,2.74,1.715,208.24,3510.656
-1993,6.124,1.2981006,328.50656,7.3131034,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,11.998354,2.3733837,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,3.344,1.7,210.402,3510.801
-1994,6.242,1.2895956,324.46375,7.5072841,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,11.998587,2.3736205,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,4.75,1.68,212.619,3510.907
-1995,6.372,1.2750104,320.42094,7.6191035,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,10.501674,2.3738573,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,3.991,1.3,200.199,3511.005
-1996,6.51,1.2511025,316.37814,7.6520638,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,11.999071,2.3740941,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,2.691,0.85,201.834,3511.082
-1997,6.619,1.2181397,312.33533,7.9097526,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,11.999322,2.3743309,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,2.594,0.7,207.696,3511.082
-1998,6.588,1.2148431,308.29252,7.8957263,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,11.999575,2.3745677,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,2.491,0.71,206.946,3511.082
-1999,6.569,1.1827892,304.24971,7.5269849,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,10.502692,2.3748045,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,2.39,0.631,195.938,3511.082
-2000,6.735,1.1488,300.2069,7.4566,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,12.0001,2.3749,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,2.295,0.562,186.206,3511.082
-2001,6.8959,1.132,303.4092,7.503,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,11.925,2.4345,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,2.209,0.5,181.525,3511.082
-2002,6.949,1.2317,306.5788,7.5487,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,11.8481,2.4915,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,2.131,0.445,181.887,3511.082
-2003,7.286,1.2257,309.7164,7.5942,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,11.7693,2.5463,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,2.057,0.396,177.539,3511.082
-2004,7.6719,1.2429,312.824,7.6394,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,11.6885,2.599,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,1.987,0.353,174.26,3511.082
-2005,7.971,1.1955,315.9027,7.6841,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,11.6059,2.6494,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,1.92,0.314,168.841,3511.082
-2006,8.081,1.1319,317.6624,7.7838,56640.5,1057.4015,215.3798,38.6291,8.228,36.3475,13.735,2.6399,10.5529,12.3831,3.8802,12.649,121.0746,10.9216,5.6761,34.1569,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,1.834,0.279,167.857,3511.082
-2007,8.1899,1.0683,319.4203,7.8838,56557.8,1053.2589,215.2944,38.4618,8.2049,36.3034,15.8599,2.6308,10.2946,13.773,4.5245,11.5302,129.6223,9.3647,6.4623,41.4253,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,1.752,0.249,167.857,3511.082
-2008,8.2971667,1.0046667,321.17513,7.9843333,56467.8,1049.0791,215.20513,38.292033,8.1816667,36.259433,17.976533,2.6214333,10.037133,15.1627,5.1676,10.393733,135.18193,7.7477,7.2483,48.693733,6.9909667,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,1.675,0.221,167.857,3511.082
-2009,8.4044333,0.94103333,322.92997,8.0848667,56377.8,1044.8993,215.11587,38.122267,8.1584333,36.215467,20.093167,2.6120667,9.7796667,16.5524,5.8107,9.2572667,140.74157,6.1307,8.0343,55.962167,7.3806333,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,1.601,0.197,167.857,3511.082
-2010,8.5117,0.8774,324.6848,8.1854,56287.8,1040.7195,215.0266,37.9525,8.1352,36.1715,22.2098,2.6027,9.5222,17.9421,6.4538,8.1208,146.3012,4.5137,8.8203,63.2306,7.7703,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,1.521,0.175,167.857,3511.082
-2011,8.55557,0.83029,323.38128,8.15982,55637.74,1039.1875,214.89234,37.71422,8.09546,36.16182,22.27617,2.60843,8.68522,22.21208,6.53096,8.19765,147.06015,4.61769,8.08983,63.4781,7.93581,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,1.445,0.156,167.857,3511.082
-2012,8.59944,0.78318,322.07776,8.13424,54987.68,1037.6555,214.75808,37.47594,8.05572,36.15214,22.34254,2.61416,7.84824,26.48206,6.60812,8.2745,147.8191,4.72168,7.35936,63.7256,8.10132,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,1.373,0.139,167.857,3511.082
-2013,8.64331,0.73607,320.77424,8.10866,54337.62,1036.1234,214.62382,37.23766,8.01598,36.14246,22.40891,2.61989,7.01126,30.75204,6.68528,8.35135,148.57805,4.82567,6.62889,63.9731,8.26683,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,1.304,0.124,167.857,3511.082
-2014,8.68718,0.68896,319.47072,8.08308,53687.56,1034.5914,214.48956,36.99938,7.97624,36.13278,22.47528,2.62562,6.17428,35.02202,6.76244,8.4282,149.337,4.92966,5.89842,64.2206,8.43234,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,1.239,0.11,167.857,3511.082
-2015,8.73105,0.64185,318.1672,8.0575,53037.5,1033.0594,214.3553,36.7611,7.9365,36.1231,22.54165,2.63135,5.3373,39.292,6.8396,8.50505,150.09595,5.03365,5.16795,64.4681,8.59785,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,1.177,0.098,155.925,3511.082
-2016,8.77492,0.59474,316.86368,8.03192,52387.44,1031.5274,214.22104,36.52282,7.89676,36.11342,22.60802,2.63708,4.50032,43.56198,6.91676,8.5819,150.8549,5.13764,4.43748,64.7156,8.76336,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,1.118,0.087,155.925,3511.082
-2017,8.81879,0.54763,315.56016,8.00634,51737.38,1029.9954,214.08678,36.28454,7.85702,36.10374,22.67439,2.64281,3.66334,47.83196,6.99392,8.65875,151.61385,5.24163,3.70701,64.9631,8.92887,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,1.062,0.078,155.925,3511.082
-2018,8.86266,0.50052,314.25664,7.98076,51087.32,1028.4633,213.95252,36.04626,7.81728,36.09406,22.74076,2.64854,2.82636,52.10194,7.07108,8.7356,152.3728,5.34562,2.97654,65.2106,9.09438,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,1.009,0.069,155.925,3511.082
-2019,8.90653,0.45341,312.95312,7.95518,50437.26,1026.9313,213.81826,35.80798,7.77754,36.08438,22.80713,2.65427,1.98938,56.37192,7.14824,8.81245,153.13175,5.44961,2.24607,65.4581,9.25989,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0.959,0.061,155.925,3511.082
-2020,8.9504,0.4063,311.6496,7.9296,49787.2,1025.3993,213.684,35.5697,7.7378,36.0747,22.8735,2.66,1.1524,60.6419,7.2254,8.8893,153.8907,5.5536,1.5156,65.7056,9.4254,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0.911,0.055,155.925,3511.082
-2021,9.05487,0.30994,313.11564,8.01843,48941.31,1025.732,213.95296,35.35512,7.71469,36.05673,22.9386,2.66493,1.1063,61.78125,7.31538,8.94218,154.41356,5.60414,1.43416,65.86791,9.44312,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0.865,0.049,155.925,3511.082
-2022,9.15934,0.21358,314.58168,8.10726,48095.42,1026.0648,214.22192,35.14054,7.69158,36.03876,23.0037,2.66986,1.0602,62.9206,7.40536,8.99506,154.93642,5.65468,1.35272,66.03022,9.46084,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0.822,0.043,155.925,3511.082
-2023,9.26381,0.11722,316.04772,8.19609,47249.53,1026.3975,214.49088,34.92596,7.66847,36.02079,23.0688,2.67479,1.0141,64.05995,7.49534,9.04794,155.45928,5.70522,1.27128,66.19253,9.47856,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0.781,0.039,155.925,3511.082
-2024,9.36828,0.02086,317.51376,8.28492,46403.64,1026.7303,214.75984,34.71138,7.64536,36.00282,23.1339,2.67972,0.968,65.1993,7.58532,9.10082,155.98214,5.75576,1.18984,66.35484,9.49628,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0.742,0.034,155.925,3511.082
-2025,9.47275,-0.0755,318.9798,8.37375,45557.75,1027.063,215.0288,34.4968,7.62225,35.98485,23.199,2.68465,0.9219,66.33865,7.6753,9.1537,156.505,5.8063,1.1084,66.51715,9.514,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0.705,0.031,155.925,3511.082
-2026,9.57722,-0.17186,320.44584,8.46258,44711.86,1027.3957,215.29776,34.28222,7.59914,35.96688,23.2641,2.68958,0.8758,67.478,7.76528,9.20658,157.02786,5.85684,1.02696,66.67946,9.53172,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0.669,0.027,155.925,3511.082
-2027,9.68169,-0.26822,321.91188,8.55141,43865.97,1027.7285,215.56672,34.06764,7.57603,35.94891,23.3292,2.69451,0.8297,68.61735,7.85526,9.25946,157.55072,5.90738,0.94552,66.84177,9.54944,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0.636,0.024,155.925,3511.082
-2028,9.78616,-0.36458,323.37792,8.64024,43020.08,1028.0612,215.83568,33.85306,7.55292,35.93094,23.3943,2.69944,0.7836,69.7567,7.94524,9.31234,158.07358,5.95792,0.86408,67.00408,9.56716,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0.604,0.022,155.925,3511.082
-2029,9.89063,-0.46094,324.84396,8.72907,42174.19,1028.394,216.10464,33.63848,7.52981,35.91297,23.4594,2.70437,0.7375,70.89605,8.03522,9.36522,158.59644,6.00846,0.78264,67.16639,9.58488,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0.574,0.019,155.925,3511.082
-2030,9.9951,-0.5573,326.31,8.8179,41328.3,1028.7267,216.3736,33.4239,7.5067,35.895,23.5245,2.7093,0.6914,72.0354,8.1252,9.4181,159.1193,6.059,0.7012,67.3287,9.6026,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0.545,0.017,155.925,3511.082
-2031,10.15102,-0.57298,328.09167,8.90894,41456.23,1030.971,217.00384,33.37117,7.4966,35.9507,23.55538,2.70139,0.66359,72.90303,8.24913,9.47689,159.57023,6.11699,0.70177,67.44688,9.61107,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0.518,0.015,155.925,3511.082
-2032,10.30694,-0.58866,329.87334,8.99998,41584.16,1033.2153,217.63408,33.31844,7.4865,36.0064,23.58626,2.69348,0.63578,73.77066,8.37306,9.53568,160.02116,6.17498,0.70234,67.56506,9.61954,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0.492,0.013,155.925,3511.082
-2033,10.46286,-0.60434,331.65501,9.09102,41712.09,1035.4597,218.26432,33.26571,7.4764,36.0621,23.61714,2.68557,0.60797,74.63829,8.49699,9.59447,160.47209,6.23297,0.70291,67.68324,9.62801,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0.467,0.012,155.925,3511.082
-2034,10.61878,-0.62002,333.43668,9.18206,41840.02,1037.704,218.89456,33.21298,7.4663,36.1178,23.64802,2.67766,0.58016,75.50592,8.62092,9.65326,160.92302,6.29096,0.70348,67.80142,9.63648,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0.444,0.011,155.925,3511.082
-2035,10.7747,-0.6357,335.21835,9.2731,41967.95,1039.9483,219.5248,33.16025,7.4562,36.1735,23.6789,2.66975,0.55235,76.37355,8.74485,9.71205,161.37395,6.34895,0.70405,67.9196,9.64495,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0.422,0.01,155.925,3511.082
-2036,10.93062,-0.65138,337.00002,9.36414,42095.88,1042.1926,220.15504,33.10752,7.4461,36.2292,23.70978,2.66184,0.52454,77.24118,8.86878,9.77084,161.82488,6.40694,0.70462,68.03778,9.65342,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0.401,0.008,155.925,3511.082
-2037,11.08654,-0.66706,338.78169,9.45518,42223.81,1044.4369,220.78528,33.05479,7.436,36.2849,23.74066,2.65393,0.49673,78.10881,8.99271,9.82963,162.27581,6.46493,0.70519,68.15596,9.66189,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0.381,0.008,155.925,3511.082
-2038,11.24246,-0.68274,340.56336,9.54622,42351.74,1046.6813,221.41552,33.00206,7.4259,36.3406,23.77154,2.64602,0.46892,78.97644,9.11664,9.88842,162.72674,6.52292,0.70576,68.27414,9.67036,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0.362,0.007,155.925,3511.082
-2039,11.39838,-0.69842,342.34503,9.63726,42479.67,1048.9256,222.04576,32.94933,7.4158,36.3963,23.80242,2.63811,0.44111,79.84407,9.24057,9.94721,163.17767,6.58091,0.70633,68.39232,9.67883,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0.344,0.006,155.925,3511.082
-2040,11.5543,-0.7141,344.1267,9.7283,42607.6,1051.1699,222.676,32.8966,7.4057,36.452,23.8333,2.6302,0.4133,80.7117,9.3645,10.006,163.6286,6.6389,0.7069,68.5105,9.6873,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0.326,0.005,155.925,3511.082
-2041,11.70325,-0.68907,345.22016,9.80918,42065.2,1049.4931,222.44617,32.65711,7.37374,36.47072,23.82125,2.6223,0.3966,80.10127,9.53752,10.04389,163.97624,6.68694,0.65691,68.554,9.69652,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0.31,0.005,155.925,3511.082
-2042,11.8522,-0.66404,346.31362,9.89006,41522.8,1047.8163,222.21634,32.41762,7.34178,36.48944,23.8092,2.6144,0.3799,79.49084,9.71054,10.08178,164.32388,6.73498,0.60692,68.5975,9.70574,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0.295,0.004,155.925,3511.082
-2043,12.00115,-0.63901,347.40708,9.97094,40980.4,1046.1395,221.98651,32.17813,7.30982,36.50816,23.79715,2.6065,0.3632,78.88041,9.88356,10.11967,164.67152,6.78302,0.55693,68.641,9.71496,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0.28,0.004,155.925,3511.082
-2044,12.1501,-0.61398,348.50054,10.05182,40438,1044.4627,221.75668,31.93864,7.27786,36.52688,23.7851,2.5986,0.3465,78.26998,10.05658,10.15756,165.01916,6.83106,0.50694,68.6845,9.72418,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0.266,0.003,155.925,3511.082
-2045,12.29905,-0.58895,349.594,10.1327,39895.6,1042.7859,221.52685,31.69915,7.2459,36.5456,23.77305,2.5907,0.3298,77.65955,10.2296,10.19545,165.3668,6.8791,0.45695,68.728,9.7334,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0.253,0.003,155.925,3511.082
-2046,12.448,-0.56392,350.68746,10.21358,39353.2,1041.1092,221.29702,31.45966,7.21394,36.56432,23.761,2.5828,0.3131,77.04912,10.40262,10.23334,165.71444,6.92714,0.40696,68.7715,9.74262,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0.24,0.003,155.925,3511.082
-2047,12.59695,-0.53889,351.78092,10.29446,38810.8,1039.4324,221.06719,31.22017,7.18198,36.58304,23.74895,2.5749,0.2964,76.43869,10.57564,10.27123,166.06208,6.97518,0.35697,68.815,9.75184,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0.228,0.002,155.925,3511.082
-2048,12.7459,-0.51386,352.87438,10.37534,38268.4,1037.7556,220.83736,30.98068,7.15002,36.60176,23.7369,2.567,0.2797,75.82826,10.74866,10.30912,166.40972,7.02322,0.30698,68.8585,9.76106,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0.217,0.002,155.925,3511.082
-2049,12.89485,-0.48883,353.96784,10.45622,37726,1036.0788,220.60753,30.74119,7.11806,36.62048,23.72485,2.5591,0.263,75.21783,10.92168,10.34701,166.75736,7.07126,0.25699,68.902,9.77028,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0.206,0.002,155.925,3511.082
-2050,13.0438,-0.4638,355.0613,10.5371,37183.6,1034.402,220.3777,30.5017,7.0861,36.6392,23.7128,2.5512,0.2463,74.6074,11.0947,10.3849,167.105,7.1193,0.207,68.9455,9.7795,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0.195,0.002,155.925,3511.082
-2051,13.22186,-0.44326,355.94998,10.6195,36957.17,1030.5732,219.75002,30.28262,7.02414,36.54813,23.71405,2.54411,0.23543,75.55522,11.0965,10.44021,167.59135,7.18313,0.1948,69.0534,9.79437,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0.186,0.001,155.925,3511.082
-2052,13.39992,-0.42272,356.83866,10.7019,36730.74,1026.7444,219.12234,30.06354,6.96218,36.45706,23.7153,2.53702,0.22456,76.50304,11.0983,10.49552,168.0777,7.24696,0.1826,69.1613,9.80924,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0.176,0.001,155.925,3511.082
-2053,13.57798,-0.40218,357.72734,10.7843,36504.31,1022.9156,218.49466,29.84446,6.90022,36.36599,23.71655,2.52993,0.21369,77.45086,11.1001,10.55083,168.56405,7.31079,0.1704,69.2692,9.82411,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0.168,0.001,155.925,3511.082
-2054,13.75604,-0.38164,358.61602,10.8667,36277.88,1019.0868,217.86698,29.62538,6.83826,36.27492,23.7178,2.52284,0.20282,78.39868,11.1019,10.60614,169.0504,7.37462,0.1582,69.3771,9.83898,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0.159,0.001,155.925,3511.082
-2055,13.9341,-0.3611,359.5047,10.9491,36051.45,1015.258,217.2393,29.4063,6.7763,36.18385,23.71905,2.51575,0.19195,79.3465,11.1037,10.66145,169.53675,7.43845,0.146,69.485,9.85385,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0.151,0.001,155.925,3511.082
-2056,14.11216,-0.34056,360.39338,11.0315,35825.02,1011.4293,216.61162,29.18722,6.71434,36.09278,23.7203,2.50866,0.18108,80.29432,11.1055,10.71676,170.0231,7.50228,0.1338,69.5929,9.86872,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0.144,0.001,155.925,3511.082
-2057,14.29022,-0.32002,361.28206,11.1139,35598.59,1007.6005,215.98394,28.96814,6.65238,36.00171,23.72155,2.50157,0.17021,81.24214,11.1073,10.77207,170.50945,7.56611,0.1216,69.7008,9.88359,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0.136,0.001,155.925,3511.082
-2058,14.46828,-0.29948,362.17074,11.1963,35372.16,1003.7717,215.35626,28.74906,6.59042,35.91064,23.7228,2.49448,0.15934,82.18996,11.1091,10.82738,170.9958,7.62994,0.1094,69.8087,9.89846,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0.13,0.001,155.925,3511.082
-2059,14.64634,-0.27894,363.05942,11.2787,35145.73,999.94289,214.72858,28.52998,6.52846,35.81957,23.72405,2.48739,0.14847,83.13778,11.1109,10.88269,171.48215,7.69377,0.0972,69.9166,9.91333,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0.123,0.001,155.925,3511.082
-2060,14.8244,-0.2584,363.9481,11.3611,34919.3,996.1141,214.1009,28.3109,6.4665,35.7285,23.7253,2.4803,0.1376,84.0856,11.1127,10.938,171.9685,7.7576,0.085,70.0245,9.9282,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0.117,0.001,155.925,3511.082
-2061,14.99256,-0.23549,363.5485,11.42811,33657.47,990.16887,213.11653,27.85015,6.38933,35.58927,23.69872,2.48426,0.13115,85.06506,11.10611,10.98618,172.36387,7.81599,0.08313,70.08915,9.94365,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0.111,0,155.925,3511.082
-2062,15.16072,-0.21258,363.1489,11.49512,32395.64,984.22364,212.13216,27.3894,6.31216,35.45004,23.67214,2.48822,0.1247,86.04452,11.09952,11.03436,172.75924,7.87438,0.08126,70.1538,9.9591,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0.106,0,155.925,3511.082
-2063,15.32888,-0.18967,362.7493,11.56213,31133.81,978.27841,211.14779,26.92865,6.23499,35.31081,23.64556,2.49218,0.11825,87.02398,11.09293,11.08254,173.15461,7.93277,0.07939,70.21845,9.97455,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0.1,0,155.925,3511.082
-2064,15.49704,-0.16676,362.3497,11.62914,29871.98,972.33318,210.16342,26.4679,6.15782,35.17158,23.61898,2.49614,0.1118,88.00344,11.08634,11.13072,173.54998,7.99116,0.07752,70.2831,9.99,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0.095,0,155.925,3511.082
-2065,15.6652,-0.14385,361.9501,11.69615,28610.15,966.38795,209.17905,26.00715,6.08065,35.03235,23.5924,2.5001,0.10535,88.9829,11.07975,11.1789,173.94535,8.04955,0.07565,70.34775,10.00545,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0.091,0,155.925,3511.082
-2066,15.83336,-0.12094,361.5505,11.76316,27348.32,960.44272,208.19468,25.5464,6.00348,34.89312,23.56582,2.50406,0.0989,89.96236,11.07316,11.22708,174.34072,8.10794,0.07378,70.4124,10.0209,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0.086,0,155.925,3511.082
-2067,16.00152,-0.09803,361.1509,11.83017,26086.49,954.49749,207.21031,25.08565,5.92631,34.75389,23.53924,2.50802,0.09245,90.94182,11.06657,11.27526,174.73609,8.16633,0.07191,70.47705,10.03635,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0.082,0,155.925,3511.082
-2068,16.16968,-0.07512,360.7513,11.89718,24824.66,948.55226,206.22594,24.6249,5.84914,34.61466,23.51266,2.51198,0.086,91.92128,11.05998,11.32344,175.13146,8.22472,0.07004,70.5417,10.0518,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0.078,0,155.925,3511.082
-2069,16.33784,-0.05221,360.3517,11.96419,23562.83,942.60703,205.24157,24.16415,5.77197,34.47543,23.48608,2.51594,0.07955,92.90074,11.05339,11.37162,175.52683,8.28311,0.06817,70.60635,10.06725,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0.074,0,155.925,3511.082
-2070,16.506,-0.0293,359.9521,12.0312,22301,936.6618,204.2572,23.7034,5.6948,34.3362,23.4595,2.5199,0.0731,93.8802,11.0468,11.4198,175.9222,8.3415,0.0663,70.671,10.0827,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0.07,0,155.925,3511.082
-2071,16.58346,-0.00196,357.94994,12.06433,21571.32,930.29864,203.01075,23.32501,5.63556,34.23657,23.40702,2.5018,0.06951,94.1193,11.03777,11.45168,176.03719,8.38413,0.06477,70.60634,10.07405,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0.067,0,155.925,3511.082
-2072,16.66092,0.02538,355.94778,12.09746,20841.64,923.93548,201.7643,22.94662,5.57632,34.13694,23.35454,2.4837,0.06592,94.3584,11.02874,11.48356,176.15218,8.42676,0.06324,70.54168,10.0654,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0.063,0,155.925,3511.082
-2073,16.73838,0.05272,353.94562,12.13059,20111.96,917.57232,200.51785,22.56823,5.51708,34.03731,23.30206,2.4656,0.06233,94.5975,11.01971,11.51544,176.26717,8.46939,0.06171,70.47702,10.05675,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0.06,0,155.925,3511.082
-2074,16.81584,0.08006,351.94346,12.16372,19382.28,911.20916,199.2714,22.18984,5.45784,33.93768,23.24958,2.4475,0.05874,94.8366,11.01068,11.54732,176.38216,8.51202,0.06018,70.41236,10.0481,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0.057,0,155.925,3511.082
-2075,16.8933,0.1074,349.9413,12.19685,18652.6,904.846,198.02495,21.81145,5.3986,33.83805,23.1971,2.4294,0.05515,95.0757,11.00165,11.5792,176.49715,8.55465,0.05865,70.3477,10.03945,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0.054,0,155.925,3511.082
-2076,16.97076,0.13474,347.93914,12.22998,17922.92,898.48284,196.7785,21.43306,5.33936,33.73842,23.14462,2.4113,0.05156,95.3148,10.99262,11.61108,176.61214,8.59728,0.05712,70.28304,10.0308,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0.052,0,155.925,3511.082
-2077,17.04822,0.16208,345.93698,12.26311,17193.24,892.11968,195.53205,21.05467,5.28012,33.63879,23.09214,2.3932,0.04797,95.5539,10.98359,11.64296,176.72713,8.63991,0.05559,70.21838,10.02215,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0.049,0,155.925,3511.082
-2078,17.12568,0.18942,343.93482,12.29624,16463.56,885.75652,194.2856,20.67628,5.22088,33.53916,23.03966,2.3751,0.04438,95.793,10.97456,11.67484,176.84212,8.68254,0.05406,70.15372,10.0135,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0.046,0,155.925,3511.082
-2079,17.20314,0.21676,341.93266,12.32937,15733.88,879.39336,193.03915,20.29789,5.16164,33.43953,22.98718,2.357,0.04079,96.0321,10.96553,11.70672,176.95711,8.72517,0.05253,70.08906,10.00485,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0.044,0,155.925,3511.082
-2080,17.2806,0.2441,339.9305,12.3625,15004.2,873.0302,191.7927,19.9195,5.1024,33.3399,22.9347,2.3389,0.0372,96.2712,10.9565,11.7386,177.0721,8.7678,0.051,70.0244,9.9962,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0.042,0,155.925,3511.082
-2081,16.98385,0.24394,332.93877,12.36222,14762.52,869.00559,190.80261,19.72493,5.0587,33.27324,22.83527,2.33197,0.03348,95.76444,10.9361,11.74268,176.82146,8.79093,0.04968,69.79775,9.98408,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0.04,0,155.925,3511.082
-2082,16.6871,0.24378,325.94704,12.36194,14520.84,864.98098,189.81252,19.53036,5.015,33.20658,22.73584,2.32504,0.02976,95.25768,10.9157,11.74676,176.57082,8.81406,0.04836,69.5711,9.97196,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0.038,0,155.925,3511.082
-2083,16.39035,0.24362,318.95531,12.36166,14279.16,860.95637,188.82243,19.33579,4.9713,33.13992,22.63641,2.31811,0.02604,94.75092,10.8953,11.75084,176.32018,8.83719,0.04704,69.34445,9.95984,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0.036,0,155.925,3511.082
-2084,16.0936,0.24346,311.96358,12.36138,14037.48,856.93176,187.83234,19.14122,4.9276,33.07326,22.53698,2.31118,0.02232,94.24416,10.8749,11.75492,176.06954,8.86032,0.04572,69.1178,9.94772,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0.034,0,155.925,3511.082
-2085,15.79685,0.2433,304.97185,12.3611,13795.8,852.90715,186.84225,18.94665,4.8839,33.0066,22.43755,2.30425,0.0186,93.7374,10.8545,11.759,175.8189,8.88345,0.0444,68.89115,9.9356,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0.032,0,155.925,3511.082
-2086,15.5001,0.24314,297.98012,12.36082,13554.12,848.88254,185.85216,18.75208,4.8402,32.93994,22.33812,2.29732,0.01488,93.23064,10.8341,11.76308,175.56826,8.90658,0.04308,68.6645,9.92348,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0.031,0,155.925,3511.082
-2087,15.20335,0.24298,290.98839,12.36054,13312.44,844.85793,184.86207,18.55751,4.7965,32.87328,22.23869,2.29039,0.01116,92.72388,10.8137,11.76716,175.31762,8.92971,0.04176,68.43785,9.91136,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0.029,0,155.925,3511.082
-2088,14.9066,0.24282,283.99666,12.36026,13070.76,840.83332,183.87198,18.36294,4.7528,32.80662,22.13926,2.28346,0.00744,92.21712,10.7933,11.77124,175.06698,8.95284,0.04044,68.2112,9.89924,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0.028,0,155.925,3511.082
-2089,14.60985,0.24266,277.00493,12.35998,12829.08,836.80871,182.88189,18.16837,4.7091,32.73996,22.03983,2.27653,0.00372,91.71036,10.7729,11.77532,174.81634,8.97597,0.03912,67.98455,9.88712,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0.026,0,155.925,3511.082
-2090,14.3131,0.2425,270.0132,12.3597,12587.4,832.7841,181.8918,17.9738,4.6654,32.6733,21.9404,2.2696,0,91.2036,10.7525,11.7794,174.5657,8.9991,0.0378,67.7579,9.875,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0.025,0,155.925,3511.082
-2091,14.25712,0.23639,267.60942,12.35073,12372.53,828.72826,180.91739,17.78501,4.63501,32.62249,21.82626,2.25281,0,90.20593,10.7178,11.77139,174.15911,9.00912,0.03676,67.48827,9.83722,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0.024,0,155.925,3511.082
-2092,14.20114,0.23028,265.20564,12.34176,12157.66,824.67242,179.94298,17.59622,4.60462,32.57168,21.71212,2.23602,0,89.20826,10.6831,11.76338,173.75252,9.01914,0.03572,67.21864,9.79944,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0.023,0,155.925,3511.082
-2093,14.14516,0.22417,262.80186,12.33279,11942.79,820.61658,178.96857,17.40743,4.57423,32.52087,21.59798,2.21923,0,88.21059,10.6484,11.75537,173.34593,9.02916,0.03468,66.94901,9.76166,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0.022,0,155.925,3511.082
-2094,14.08918,0.21806,260.39808,12.32382,11727.92,816.56074,177.99416,17.21864,4.54384,32.47006,21.48384,2.20244,0,87.21292,10.6137,11.74736,172.93934,9.03918,0.03364,66.67938,9.72388,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0.02,0,155.925,3511.082
-2095,14.0332,0.21195,257.9943,12.31485,11513.05,812.5049,177.01975,17.02985,4.51345,32.41925,21.3697,2.18565,0,86.21525,10.579,11.73935,172.53275,9.0492,0.0326,66.40975,9.6861,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0.019,0,155.925,3511.082
-2096,13.97722,0.20584,255.59052,12.30588,11298.18,808.44906,176.04534,16.84106,4.48306,32.36844,21.25556,2.16886,0,85.21758,10.5443,11.73134,172.12616,9.05922,0.03156,66.14012,9.64832,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0.018,0,155.925,3511.082
-2097,13.92124,0.19973,253.18674,12.29691,11083.31,804.39322,175.07093,16.65227,4.45267,32.31763,21.14142,2.15207,0,84.21991,10.5096,11.72333,171.71957,9.06924,0.03052,65.87049,9.61054,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0.018,0,155.925,3511.082
-2098,13.86526,0.19362,250.78296,12.28794,10868.44,800.33738,174.09652,16.46348,4.42228,32.26682,21.02728,2.13528,0,83.22224,10.4749,11.71532,171.31298,9.07926,0.02948,65.60086,9.57276,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0.017,0,155.925,3511.082
-2099,13.80928,0.18751,248.37918,12.27897,10653.57,796.28154,173.12211,16.27469,4.39189,32.21601,20.91314,2.11849,0,82.22457,10.4402,11.70731,170.90639,9.08928,0.02844,65.33123,9.53498,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0.016,0,155.925,3511.082
-2100,13.7533,0.1814,245.9754,12.27,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,20.799,2.1017,0,81.2269,10.4055,11.6993,170.4998,9.0993,0.0274,65.0616,9.4972,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0.015,0,155.925,3511.082
-2101,13.548236,0.174144,245.99464,12.203604,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,20.384732,2.06044,0,81.228628,10.406792,11.6993,170.4998,9.081312,0.0274,65.0616,9.315568,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0.014,0,155.925,3511.082
-2102,13.343172,0.166888,246.01389,12.137208,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,19.970464,2.01918,0,81.230356,10.408084,11.6993,170.4998,9.063324,0.0274,65.0616,9.133936,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0.014,0,155.925,3511.082
-2103,13.138108,0.159632,246.03313,12.070812,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,19.556196,1.97792,0,81.232084,10.409376,11.6993,170.4998,9.045336,0.0274,65.0616,8.952304,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0.013,0,155.925,3511.082
-2104,12.933044,0.152376,246.05238,12.004416,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,19.141928,1.93666,0,81.233812,10.410668,11.6993,170.4998,9.027348,0.0274,65.0616,8.770672,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0.012,0,155.925,3511.082
-2105,12.72798,0.14512,246.07162,11.93802,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,18.72766,1.8954,0,81.23554,10.41196,11.6993,170.4998,9.00936,0.0274,65.0616,8.58904,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0.012,0,155.925,3511.082
-2106,12.522916,0.137864,246.09086,11.871624,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,18.313392,1.85414,0,81.237268,10.413252,11.6993,170.4998,8.991372,0.0274,65.0616,8.407408,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0.011,0,155.925,3511.082
-2107,12.317852,0.130608,246.11011,11.805228,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,17.899124,1.81288,0,81.238996,10.414544,11.6993,170.4998,8.973384,0.0274,65.0616,8.225776,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0.011,0,155.925,3511.082
-2108,12.112788,0.123352,246.12935,11.738832,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,17.484856,1.77162,0,81.240724,10.415836,11.6993,170.4998,8.955396,0.0274,65.0616,8.044144,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0.01,0,155.925,3511.082
-2109,11.907724,0.116096,246.1486,11.672436,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,17.070588,1.73036,0,81.242452,10.417128,11.6993,170.4998,8.937408,0.0274,65.0616,7.862512,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0.009,0,155.925,3511.082
-2110,11.70266,0.10884,246.16784,11.60604,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,16.65632,1.6891,0,81.24418,10.41842,11.6993,170.4998,8.91942,0.0274,65.0616,7.68088,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0.009,0,155.925,3511.082
-2111,11.497596,0.101584,246.18708,11.539644,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,16.242052,1.64784,0,81.245908,10.419712,11.6993,170.4998,8.901432,0.0274,65.0616,7.499248,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0.009,0,155.925,3511.082
-2112,11.292532,0.094328,246.20633,11.473248,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,15.827784,1.60658,0,81.247636,10.421004,11.6993,170.4998,8.883444,0.0274,65.0616,7.317616,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0.008,0,155.925,3511.082
-2113,11.087468,0.087072,246.22557,11.406852,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,15.413516,1.56532,0,81.249364,10.422296,11.6993,170.4998,8.865456,0.0274,65.0616,7.135984,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0.008,0,155.925,3511.082
-2114,10.882404,0.079816,246.24482,11.340456,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,14.999248,1.52406,0,81.251092,10.423588,11.6993,170.4998,8.847468,0.0274,65.0616,6.954352,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0.007,0,155.925,3511.082
-2115,10.67734,0.07256,246.26406,11.27406,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,14.58498,1.4828,0,81.25282,10.42488,11.6993,170.4998,8.82948,0.0274,65.0616,6.77272,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0.007,0,155.925,3511.082
-2116,10.472276,0.065304,246.2833,11.207664,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,14.170712,1.44154,0,81.254548,10.426172,11.6993,170.4998,8.811492,0.0274,65.0616,6.591088,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0.007,0,155.925,3511.082
-2117,10.267212,0.058048,246.30255,11.141268,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,13.756444,1.40028,0,81.256276,10.427464,11.6993,170.4998,8.793504,0.0274,65.0616,6.409456,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0.006,0,155.925,3511.082
-2118,10.062148,0.050792,246.32179,11.074872,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,13.342176,1.35902,0,81.258004,10.428756,11.6993,170.4998,8.775516,0.0274,65.0616,6.227824,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0.006,0,155.925,3511.082
-2119,9.857084,0.043536,246.34104,11.008476,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,12.927908,1.31776,0,81.259732,10.430048,11.6993,170.4998,8.757528,0.0274,65.0616,6.046192,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0.006,0,155.925,3511.082
-2120,9.65202,0.03628,246.36028,10.94208,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,12.51364,1.2765,0,81.26146,10.43134,11.6993,170.4998,8.73954,0.0274,65.0616,5.86456,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0.005,0,155.925,3511.082
-2121,9.446956,0.029024,246.37952,10.875684,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,12.099372,1.23524,0,81.263188,10.432632,11.6993,170.4998,8.721552,0.0274,65.0616,5.682928,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0.005,0,155.925,3511.082
-2122,9.241892,0.021768,246.39877,10.809288,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,11.685104,1.19398,0,81.264916,10.433924,11.6993,170.4998,8.703564,0.0274,65.0616,5.501296,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0.005,0,155.925,3511.082
-2123,9.036828,0.014512,246.41801,10.742892,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,11.270836,1.15272,0,81.266644,10.435216,11.6993,170.4998,8.685576,0.0274,65.0616,5.319664,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0.005,0,155.925,3511.082
-2124,8.831764,0.007256,246.43726,10.676496,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,10.856568,1.11146,0,81.268372,10.436508,11.6993,170.4998,8.667588,0.0274,65.0616,5.138032,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0.004,0,155.925,3511.082
-2125,8.6267,0,246.4565,10.6101,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,10.4423,1.0702,0,81.2701,10.4378,11.6993,170.4998,8.6496,0.0274,65.0616,4.9564,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0.004,0,155.925,3511.082
-2126,8.4216348,0,246.47573,10.543696,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,10.02803,1.0289391,0,81.271826,10.4391,11.6993,170.4998,8.6316174,0.0274,65.0616,4.7747739,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0.004,0,155.925,3511.082
-2127,8.2165696,0,246.49496,10.477291,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,9.6137609,0.98767826,0,81.273552,10.4404,11.6993,170.4998,8.6136348,0.0274,65.0616,4.5931478,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0.004,0,155.925,3511.082
-2128,8.0115043,0,246.51419,10.410887,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,9.1994913,0.94641739,0,81.275278,10.4417,11.6993,170.4998,8.5956522,0.0274,65.0616,4.4115217,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0.004,0,155.925,3511.082
-2129,7.8064391,0,246.53342,10.344483,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,8.7852217,0.90515652,0,81.277004,10.443,11.6993,170.4998,8.5776696,0.0274,65.0616,4.2298957,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0.003,0,155.925,3511.082
-2130,7.6013739,0,246.55265,10.278078,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,8.3709522,0.86389565,0,81.27873,10.4443,11.6993,170.4998,8.559687,0.0274,65.0616,4.0482696,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0.003,0,155.925,3511.082
-2131,7.3963087,0,246.57188,10.211674,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,7.9566826,0.82263478,0,81.280457,10.4456,11.6993,170.4998,8.5417043,0.0274,65.0616,3.8666435,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0.003,0,155.925,3511.082
-2132,7.1912435,0,246.59111,10.14527,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,7.542413,0.78137391,0,81.282183,10.4469,11.6993,170.4998,8.5237217,0.0274,65.0616,3.6850174,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0.003,0,155.925,3511.082
-2133,6.9861783,0,246.61034,10.078865,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,7.1281435,0.74011304,0,81.283909,10.4482,11.6993,170.4998,8.5057391,0.0274,65.0616,3.5033913,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0.003,0,155.925,3511.082
-2134,6.781113,0,246.62957,10.012461,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,6.7138739,0.69885217,0,81.285635,10.4495,11.6993,170.4998,8.4877565,0.0274,65.0616,3.3217652,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0.003,0,155.925,3511.082
-2135,6.5760478,0,246.6488,9.9460565,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,6.2996043,0.6575913,0,81.287361,10.4508,11.6993,170.4998,8.4697739,0.0274,65.0616,3.1401391,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0.002,0,155.925,3511.082
-2136,6.3709826,0,246.66803,9.8796522,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,5.8853348,0.61633043,0,81.289087,10.4521,11.6993,170.4998,8.4517913,0.0274,65.0616,2.958513,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0.002,0,155.925,3511.082
-2137,6.1659174,0,246.68727,9.8132478,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,5.4710652,0.57506957,0,81.290813,10.4534,11.6993,170.4998,8.4338087,0.0274,65.0616,2.776887,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0.002,0,155.925,3511.082
-2138,5.9608522,0,246.7065,9.7468435,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,5.0567957,0.5338087,0,81.292539,10.4547,11.6993,170.4998,8.4158261,0.0274,65.0616,2.5952609,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0.002,0,155.925,3511.082
-2139,5.755787,0,246.72573,9.6804391,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,4.6425261,0.49254783,0,81.294265,10.456,11.6993,170.4998,8.3978435,0.0274,65.0616,2.4136348,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0.002,0,155.925,3511.082
-2140,5.5507217,0,246.74496,9.6140348,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,4.2282565,0.45128696,0,81.295991,10.4573,11.6993,170.4998,8.3798609,0.0274,65.0616,2.2320087,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0.002,0,155.925,3511.082
-2141,5.3456565,0,246.76419,9.5476304,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,3.813987,0.41002609,0,81.297717,10.4586,11.6993,170.4998,8.3618783,0.0274,65.0616,2.0503826,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0.002,0,155.925,3511.082
-2142,5.1405913,0,246.78342,9.4812261,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,3.3997174,0.36876522,0,81.299443,10.4599,11.6993,170.4998,8.3438957,0.0274,65.0616,1.8687565,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0.002,0,155.925,3511.082
-2143,4.9355261,0,246.80265,9.4148217,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,2.9854478,0.32750435,0,81.30117,10.4612,11.6993,170.4998,8.325913,0.0274,65.0616,1.6871304,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0.002,0,155.925,3511.082
-2144,4.7304609,0,246.82188,9.3484174,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,2.5711783,0.28624348,0,81.302896,10.4625,11.6993,170.4998,8.3079304,0.0274,65.0616,1.5055043,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0.002,0,155.925,3511.082
-2145,4.5253957,0,246.84111,9.282013,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,2.1569087,0.24498261,0,81.304622,10.4638,11.6993,170.4998,8.2899478,0.0274,65.0616,1.3238783,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0.001,0,155.925,3511.082
-2146,4.3203304,0,246.86034,9.2156087,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,1.7426391,0.20372174,0,81.306348,10.4651,11.6993,170.4998,8.2719652,0.0274,65.0616,1.1422522,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0.001,0,155.925,3511.082
-2147,4.1152652,0,246.87957,9.1492043,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,1.3283696,0.16246087,0,81.308074,10.4664,11.6993,170.4998,8.2539826,0.0274,65.0616,0.96062609,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0.001,0,155.925,3511.082
-2148,3.9102,0,246.8988,9.0828,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.9141,0.1212,0,81.3098,10.4677,11.6993,170.4998,8.236,0.0274,65.0616,0.779,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0.001,0,155.925,3511.082
-2149,3.5678,0,247.6444,9.0373,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0819,0.037,0.8262,81.3751,10.5132,11.7206,171.2635,8.1553,0.1092,65.1637,0.3953,5.888,26.472,4.838,1.2,0.17,0.154,0,0.058,0.306,0.04,0.004,0.175,0,155.922,3511.082
-2150,3.5062,0,247.7303,9.0391,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0819,0.037,0.8264,81.3904,10.5152,11.7228,171.2955,8.157,0.1092,65.176,0.3953,5.888,26.473,4.838,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.949,3511.082
-2151,3.4375,0,247.7774,9.0405,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8264,81.3986,10.5162,11.7239,171.3129,8.1577,0.1092,65.1826,0.3953,5.889,26.476,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.957,3511.082
-2152,3.3717,0,247.8331,9.0411,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8265,81.4085,10.5175,11.7253,171.3336,8.1585,0.1092,65.1904,0.3953,5.889,26.478,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.964,3511.082
-2153,3.3114,0,247.8896,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8267,81.4185,10.5187,11.7267,171.3547,8.1597,0.1092,65.1983,0.3953,5.89,26.481,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.973,3511.082
-2154,3.2545,0,247.9452,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8268,81.4283,10.52,11.7282,171.3754,8.1606,0.1092,65.2063,0.3953,5.891,26.484,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.983,3511.082
-2155,3.2005,0,247.9997,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8268,81.4378,10.5215,11.7296,171.3954,8.1617,0.1092,65.2139,0.3953,5.891,26.488,4.841,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.994,3511.082
-2156,3.15264,0,248.05092,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8269,81.44686,10.52262,11.7309,171.41446,8.16262,0.10922,65.22116,0.3953,5.892,26.491,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.005,3511.082
-2157,3.10478,0,248.10214,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.827,81.45592,10.52374,11.7322,171.43352,8.16354,0.10924,65.22842,0.3953,5.893,26.495,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.018,3511.082
-2158,3.05692,0,248.15336,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8271,81.46498,10.52486,11.7335,171.45258,8.16446,0.10926,65.23568,0.3953,5.894,26.499,4.843,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.03,3511.082
-2159,3.00906,0,248.20458,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8272,81.47404,10.52598,11.7348,171.47164,8.16538,0.10928,65.24294,0.3953,5.895,26.504,4.844,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.044,3511.082
-2160,2.9612,0,248.2558,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8273,81.4831,10.5271,11.7361,171.4907,8.1663,0.1093,65.2502,0.3953,5.896,26.508,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.057,3511.082
-2161,2.92104,0,248.30274,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82738,81.49138,10.5282,11.7373,171.50814,8.16712,0.10932,65.25682,0.3953,5.897,26.512,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.071,3511.082
-2162,2.88088,0,248.34968,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82746,81.49966,10.5293,11.7385,171.52558,8.16794,0.10934,65.26344,0.3953,5.898,26.517,4.846,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.084,3511.082
-2163,2.84072,0,248.39662,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82754,81.50794,10.5304,11.7397,171.54302,8.16876,0.10936,65.27006,0.3953,5.899,26.521,4.847,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.098,3511.082
-2164,2.80056,0,248.44356,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82762,81.51622,10.5315,11.7409,171.56046,8.16958,0.10938,65.27668,0.3953,5.9,26.525,4.848,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.112,3511.082
-2165,2.7604,0,248.4905,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8277,81.5245,10.5326,11.7421,171.5779,8.1704,0.1094,65.2833,0.3953,5.901,26.53,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.127,3511.082
-2166,2.7258,0,248.53416,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82776,81.53222,10.53358,11.74322,171.59414,8.17116,0.10942,65.28948,0.3953,5.902,26.534,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.141,3511.082
-2167,2.6912,0,248.57782,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82782,81.53994,10.53456,11.74434,171.61038,8.17192,0.10944,65.29566,0.3953,5.903,26.539,4.85,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.155,3511.082
-2168,2.6566,0,248.62148,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82788,81.54766,10.53554,11.74546,171.62662,8.17268,0.10946,65.30184,0.3953,5.904,26.544,4.851,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.169,3511.082
-2169,2.622,0,248.66514,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82794,81.55538,10.53652,11.74658,171.64286,8.17344,0.10948,65.30802,0.3953,5.905,26.548,4.852,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.183,3511.082
-2170,2.5874,0,248.7088,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.828,81.5631,10.5375,11.7477,171.6591,8.1742,0.1095,65.3142,0.3953,5.906,26.553,4.853,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.198,3511.082
-2171,2.55704,0,248.74978,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08202,0.037,0.8281,81.57034,10.53844,11.74872,171.67432,8.1749,0.1095,65.32,0.3953,5.907,26.557,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.212,3511.082
-2172,2.52668,0,248.79076,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08204,0.037,0.8282,81.57758,10.53938,11.74974,171.68954,8.1756,0.1095,65.3258,0.3953,5.908,26.562,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.226,3511.082
-2173,2.49632,0,248.83174,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08206,0.037,0.8283,81.58482,10.54032,11.75076,171.70476,8.1763,0.1095,65.3316,0.3953,5.909,26.566,4.855,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.24,3511.082
-2174,2.46596,0,248.87272,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08208,0.037,0.8284,81.59206,10.54126,11.75178,171.71998,8.177,0.1095,65.3374,0.3953,5.91,26.571,4.856,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.254,3511.082
-2175,2.4356,0,248.9137,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.8285,81.5993,10.5422,11.7528,171.7352,8.1777,0.1095,65.3432,0.3953,5.911,26.575,4.857,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.268,3511.082
-2176,2.40884,0,248.95232,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82858,81.6061,10.54306,11.75378,171.74956,8.17838,0.10952,65.34866,0.3953,5.912,26.58,4.858,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.282,3511.082
-2177,2.38208,0,248.99094,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82866,81.6129,10.54392,11.75476,171.76392,8.17906,0.10954,65.35412,0.3953,5.913,26.584,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.296,3511.082
-2178,2.35532,0,249.02956,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82874,81.6197,10.54478,11.75574,171.77828,8.17974,0.10956,65.35958,0.3953,5.914,26.588,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.31,3511.082
-2179,2.32856,0,249.06818,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82882,81.6265,10.54564,11.75672,171.79264,8.18042,0.10958,65.36504,0.3953,5.915,26.593,4.86,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.324,3511.082
-2180,2.3018,0,249.1068,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.8289,81.6333,10.5465,11.7577,171.807,8.1811,0.1096,65.3705,0.3953,5.916,26.597,4.861,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.338,3511.082
-2181,2.27802,0,249.14344,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82894,81.63978,10.54736,11.75862,171.82058,8.18178,0.1096,65.37568,0.3953,5.917,26.602,4.862,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.351,3511.082
-2182,2.25424,0,249.18008,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82898,81.64626,10.54822,11.75954,171.83416,8.18246,0.1096,65.38086,0.3953,5.918,26.606,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.365,3511.082
-2183,2.23046,0,249.21672,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82902,81.65274,10.54908,11.76046,171.84774,8.18314,0.1096,65.38604,0.3953,5.919,26.61,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.379,3511.082
-2184,2.20668,0,249.25336,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82906,81.65922,10.54994,11.76138,171.86132,8.18382,0.1096,65.39122,0.3953,5.92,26.615,4.864,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.392,3511.082
-2185,2.1829,0,249.29,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.8291,81.6657,10.5508,11.7623,171.8749,8.1845,0.1096,65.3964,0.3953,5.921,26.619,4.865,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.406,3511.082
-2186,2.1617,0,249.32488,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08212,0.037,0.82918,81.67186,10.55156,11.7632,171.88788,8.18512,0.1096,65.40132,0.3953,5.922,26.623,4.866,1.207,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.419,3511.082
-2187,2.1405,0,249.35976,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08214,0.037,0.82926,81.67802,10.55232,11.7641,171.90086,8.18574,0.1096,65.40624,0.3953,5.923,26.627,4.866,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.432,3511.082
-2188,2.1193,0,249.39464,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08216,0.037,0.82934,81.68418,10.55308,11.765,171.91384,8.18636,0.1096,65.41116,0.3953,5.924,26.632,4.867,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.446,3511.082
-2189,2.0981,0,249.42952,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08218,0.037,0.82942,81.69034,10.55384,11.7659,171.92682,8.18698,0.1096,65.41608,0.3953,5.924,26.636,4.868,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.459,3511.082
-2190,2.0769,0,249.4644,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.8295,81.6965,10.5546,11.7668,171.9398,8.1876,0.1096,65.421,0.3953,5.925,26.64,4.869,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.472,3511.082
-2191,2.05792,0,249.49772,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82954,81.7024,10.55538,11.76764,171.9522,8.18818,0.1096,65.42574,0.3953,5.926,26.644,4.87,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.485,3511.082
-2192,2.03894,0,249.53104,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82958,81.7083,10.55616,11.76848,171.9646,8.18876,0.1096,65.43048,0.3953,5.927,26.648,4.87,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.498,3511.082
-2193,2.01996,0,249.56436,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82962,81.7142,10.55694,11.76932,171.977,8.18934,0.1096,65.43522,0.3953,5.928,26.653,4.871,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.511,3511.082
-2194,2.00098,0,249.59768,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82966,81.7201,10.55772,11.77016,171.9894,8.18992,0.1096,65.43996,0.3953,5.929,26.657,4.872,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.524,3511.082
-2195,1.982,0,249.631,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.8297,81.726,10.5585,11.771,172.0018,8.1905,0.1096,65.4447,0.3953,5.93,26.661,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.537,3511.082
-2196,1.96498,0,249.66292,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82976,81.7316,10.55924,11.77184,172.01368,8.19108,0.1096,65.44922,0.3953,5.931,26.665,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.549,3511.082
-2197,1.94796,0,249.69484,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82982,81.7372,10.55998,11.77268,172.02556,8.19166,0.1096,65.45374,0.3953,5.932,26.669,4.874,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.562,3511.082
-2198,1.93094,0,249.72676,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82988,81.7428,10.56072,11.77352,172.03744,8.19224,0.1096,65.45826,0.3953,5.933,26.673,4.875,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.575,3511.082
-2199,1.91392,0,249.75868,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82994,81.7484,10.56146,11.77436,172.04932,8.19282,0.1096,65.46278,0.3953,5.934,26.677,4.875,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.587,3511.082
-2200,1.8969,0,249.7906,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.83,81.754,10.5622,11.7752,172.0612,8.1934,0.1096,65.4673,0.3953,5.934,26.681,4.876,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.6,3511.082
-2201,1.88235,0,249.82068,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.83005,81.75932,10.56289,11.77597,172.07236,8.19394,0.10961,65.47155,0.3953,5.935,26.685,4.877,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.612,3511.082
-2202,1.8678,0,249.85076,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.8301,81.76464,10.56358,11.77674,172.08352,8.19448,0.10962,65.4758,0.3953,5.936,26.689,4.878,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.624,3511.082
-2203,1.85325,0,249.88084,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.83015,81.76996,10.56427,11.77751,172.09468,8.19502,0.10963,65.48005,0.3953,5.937,26.693,4.878,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.637,3511.082
-2204,1.8387,0,249.91092,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.8302,81.77528,10.56496,11.77828,172.10584,8.19556,0.10964,65.4843,0.3953,5.938,26.696,4.879,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.649,3511.082
-2205,1.82415,0,249.941,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.83025,81.7806,10.56565,11.77905,172.117,8.1961,0.10965,65.48855,0.3953,5.939,26.7,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.661,3511.082
-2206,1.8096,0,249.97108,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.8303,81.78592,10.56634,11.77982,172.12816,8.19664,0.10966,65.4928,0.3953,5.94,26.704,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.673,3511.082
-2207,1.79505,0,250.00116,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.83035,81.79124,10.56703,11.78059,172.13932,8.19718,0.10967,65.49705,0.3953,5.94,26.708,4.881,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.685,3511.082
-2208,1.7805,0,250.03124,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.8304,81.79656,10.56772,11.78136,172.15048,8.19772,0.10968,65.5013,0.3953,5.941,26.712,4.882,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.697,3511.082
-2209,1.76595,0,250.06132,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.83045,81.80188,10.56841,11.78213,172.16164,8.19826,0.10969,65.50555,0.3953,5.942,26.716,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.709,3511.082
-2210,1.7514,0,250.0914,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.8305,81.8072,10.5691,11.7829,172.1728,8.1988,0.1097,65.5098,0.3953,5.943,26.719,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.721,3511.082
-2211,1.73953,0,250.11931,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08222,0.037,0.83055,81.81212,10.56974,11.7836,172.18317,8.19928,0.1097,65.51374,0.3953,5.944,26.723,4.884,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.733,3511.082
-2212,1.72766,0,250.14722,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08224,0.037,0.8306,81.81704,10.57038,11.7843,172.19354,8.19976,0.1097,65.51768,0.3953,5.945,26.727,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.744,3511.082
-2213,1.71579,0,250.17513,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08226,0.037,0.83065,81.82196,10.57102,11.785,172.20391,8.20024,0.1097,65.52162,0.3953,5.946,26.731,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.756,3511.082
-2214,1.70392,0,250.20304,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08228,0.037,0.8307,81.82688,10.57166,11.7857,172.21428,8.20072,0.1097,65.52556,0.3953,5.946,26.734,4.886,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.768,3511.082
-2215,1.69205,0,250.23095,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0823,0.037,0.83075,81.8318,10.5723,11.7864,172.22465,8.2012,0.1097,65.5295,0.3953,5.947,26.738,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.779,3511.082
-2216,1.68018,0,250.25886,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08232,0.037,0.8308,81.83672,10.57294,11.7871,172.23502,8.20168,0.1097,65.53344,0.3953,5.948,26.742,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.791,3511.082
-2217,1.66831,0,250.28677,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08234,0.037,0.83085,81.84164,10.57358,11.7878,172.24539,8.20216,0.1097,65.53738,0.3953,5.949,26.745,4.888,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.802,3511.082
-2218,1.65644,0,250.31468,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08236,0.037,0.8309,81.84656,10.57422,11.7885,172.25576,8.20264,0.1097,65.54132,0.3953,5.95,26.749,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.813,3511.082
-2219,1.64457,0,250.34259,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08238,0.037,0.83095,81.85148,10.57486,11.7892,172.26613,8.20312,0.1097,65.54526,0.3953,5.95,26.752,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.825,3511.082
-2220,1.6327,0,250.3705,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.831,81.8564,10.5755,11.7899,172.2765,8.2036,0.1097,65.5492,0.3953,5.951,26.756,4.89,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.836,3511.082
-2221,1.62294,0,250.3966,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83106,81.86101,10.57608,11.79056,172.2862,8.20406,0.10971,65.55289,0.3953,5.952,26.76,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.847,3511.082
-2222,1.61318,0,250.4227,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83112,81.86562,10.57666,11.79122,172.2959,8.20452,0.10972,65.55658,0.3953,5.953,26.763,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.858,3511.082
-2223,1.60342,0,250.4488,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83118,81.87023,10.57724,11.79188,172.3056,8.20498,0.10973,65.56027,0.3953,5.954,26.767,4.892,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.869,3511.082
-2224,1.59366,0,250.4749,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83124,81.87484,10.57782,11.79254,172.3153,8.20544,0.10974,65.56396,0.3953,5.954,26.77,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.88,3511.082
-2225,1.5839,0,250.501,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.8313,81.87945,10.5784,11.7932,172.325,8.2059,0.10975,65.56765,0.3953,5.955,26.774,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.891,3511.082
-2226,1.57414,0,250.5271,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83136,81.88406,10.57898,11.79386,172.3347,8.20636,0.10976,65.57134,0.3953,5.956,26.777,4.894,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.902,3511.082
-2227,1.56438,0,250.5532,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83142,81.88867,10.57956,11.79452,172.3444,8.20682,0.10977,65.57503,0.3953,5.957,26.781,4.894,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.913,3511.082
-2228,1.55462,0,250.5793,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83148,81.89328,10.58014,11.79518,172.3541,8.20728,0.10978,65.57872,0.3953,5.957,26.784,4.895,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.924,3511.082
-2229,1.54486,0,250.6054,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83154,81.89789,10.58072,11.79584,172.3638,8.20774,0.10979,65.58241,0.3953,5.958,26.788,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.935,3511.082
-2230,1.5351,0,250.6315,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.8316,81.9025,10.5813,11.7965,172.3735,8.2082,0.1098,65.5861,0.3953,5.959,26.791,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.945,3511.082
-2231,1.52697,0,250.65601,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83164,81.90685,10.58188,11.79712,172.38261,8.20864,0.10981,65.58957,0.3953,5.96,26.794,4.897,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.956,3511.082
-2232,1.51884,0,250.68052,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83168,81.9112,10.58246,11.79774,172.39172,8.20908,0.10982,65.59304,0.3953,5.96,26.798,4.898,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.967,3511.082
-2233,1.51071,0,250.70503,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83172,81.91555,10.58304,11.79836,172.40083,8.20952,0.10983,65.59651,0.3953,5.961,26.801,4.898,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,156.977,3511.082
-2234,1.50258,0,250.72954,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83176,81.9199,10.58362,11.79898,172.40994,8.20996,0.10984,65.59998,0.3953,5.962,26.804,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,156.988,3511.082
-2235,1.49445,0,250.75405,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.8318,81.92425,10.5842,11.7996,172.41905,8.2104,0.10985,65.60345,0.3953,5.963,26.808,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,156.998,3511.082
-2236,1.48632,0,250.77856,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83184,81.9286,10.58478,11.80022,172.42816,8.21084,0.10986,65.60692,0.3953,5.963,26.811,4.9,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.008,3511.082
-2237,1.47819,0,250.80307,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83188,81.93295,10.58536,11.80084,172.43727,8.21128,0.10987,65.61039,0.3953,5.964,26.814,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.019,3511.082
-2238,1.47006,0,250.82758,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83192,81.9373,10.58594,11.80146,172.44638,8.21172,0.10988,65.61386,0.3953,5.965,26.818,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.029,3511.082
-2239,1.46193,0,250.85209,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83196,81.94165,10.58652,11.80208,172.45549,8.21216,0.10989,65.61733,0.3953,5.966,26.821,4.902,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.039,3511.082
-2240,1.4538,0,250.8766,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.832,81.946,10.5871,11.8027,172.4646,8.2126,0.1099,65.6208,0.3953,5.966,26.824,4.902,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.05,3511.082
-2241,1.44702,0,250.89972,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08242,0.037,0.83203,81.95006,10.58761,11.80329,172.4732,8.21301,0.10991,65.62406,0.3953,5.967,26.827,4.903,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.06,3511.082
-2242,1.44024,0,250.92284,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08244,0.037,0.83206,81.95412,10.58812,11.80388,172.4818,8.21342,0.10992,65.62732,0.3953,5.968,26.831,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.07,3511.082
-2243,1.43346,0,250.94596,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08246,0.037,0.83209,81.95818,10.58863,11.80447,172.4904,8.21383,0.10993,65.63058,0.3953,5.968,26.834,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.08,3511.082
-2244,1.42668,0,250.96908,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08248,0.037,0.83212,81.96224,10.58914,11.80506,172.499,8.21424,0.10994,65.63384,0.3953,5.969,26.837,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.09,3511.082
-2245,1.4199,0,250.9922,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0825,0.037,0.83215,81.9663,10.58965,11.80565,172.5076,8.21465,0.10995,65.6371,0.3953,5.97,26.84,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.1,3511.082
-2246,1.41312,0,251.01532,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08252,0.037,0.83218,81.97036,10.59016,11.80624,172.5162,8.21506,0.10996,65.64036,0.3953,5.971,26.843,4.906,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.11,3511.082
-2247,1.40634,0,251.03844,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08254,0.037,0.83221,81.97442,10.59067,11.80683,172.5248,8.21547,0.10997,65.64362,0.3953,5.971,26.847,4.906,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.12,3511.082
-2248,1.39956,0,251.06156,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08256,0.037,0.83224,81.97848,10.59118,11.80742,172.5334,8.21588,0.10998,65.64688,0.3953,5.972,26.85,4.907,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.13,3511.082
-2249,1.39278,0,251.08468,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08258,0.037,0.83227,81.98254,10.59169,11.80801,172.542,8.21629,0.10999,65.65014,0.3953,5.973,26.853,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.139,3511.082
-2250,1.386,0,251.1078,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.8323,81.9866,10.5922,11.8086,172.5506,8.2167,0.11,65.6534,0.3953,5.973,26.856,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.149,3511.082
-2251,1.380872,0,251.12888,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83234,81.99032,10.592676,11.809136,172.55843,8.217072,0.11,65.656376,0.3953,5.974,26.859,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.159,3511.082
-2252,1.375744,0,251.14995,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83238,81.99404,10.593152,11.809672,172.56626,8.217444,0.11,65.659352,0.3953,5.975,26.862,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.168,3511.082
-2253,1.370616,0,251.17103,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83242,81.99776,10.593628,11.810208,172.57408,8.217816,0.11,65.662328,0.3953,5.975,26.865,4.91,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.178,3511.082
-2254,1.365488,0,251.1921,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83246,82.00148,10.594104,11.810744,172.58191,8.218188,0.11,65.665304,0.3953,5.976,26.868,4.91,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.188,3511.082
-2255,1.36036,0,251.21318,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.8325,82.0052,10.59458,11.81128,172.58974,8.21856,0.11,65.66828,0.3953,5.977,26.871,4.911,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.197,3511.082
-2256,1.355232,0,251.23426,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83254,82.00892,10.595056,11.811816,172.59757,8.218932,0.11,65.671256,0.3953,5.977,26.874,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.207,3511.082
-2257,1.350104,0,251.25533,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83258,82.01264,10.595532,11.812352,172.6054,8.219304,0.11,65.674232,0.3953,5.978,26.877,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.216,3511.082
-2258,1.344976,0,251.27641,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83262,82.01636,10.596008,11.812888,172.61322,8.219676,0.11,65.677208,0.3953,5.979,26.88,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.226,3511.082
-2259,1.339848,0,251.29748,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83266,82.02008,10.596484,11.813424,172.62105,8.220048,0.11,65.680184,0.3953,5.979,26.883,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.235,3511.082
-2260,1.33472,0,251.31856,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.8327,82.0238,10.59696,11.81396,172.62888,8.22042,0.11,65.68316,0.3953,5.98,26.886,4.914,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.244,3511.082
-2261,1.329592,0,251.33964,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83274,82.02752,10.597436,11.814496,172.63671,8.220792,0.11,65.686136,0.3953,5.981,26.889,4.914,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.253,3511.082
-2262,1.324464,0,251.36071,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83278,82.03124,10.597912,11.815032,172.64454,8.221164,0.11,65.689112,0.3953,5.981,26.892,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.263,3511.082
-2263,1.319336,0,251.38179,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83282,82.03496,10.598388,11.815568,172.65236,8.221536,0.11,65.692088,0.3953,5.982,26.895,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.272,3511.082
-2264,1.314208,0,251.40286,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83286,82.03868,10.598864,11.816104,172.66019,8.221908,0.11,65.695064,0.3953,5.983,26.898,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.281,3511.082
-2265,1.30908,0,251.42394,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.8329,82.0424,10.59934,11.81664,172.66802,8.22228,0.11,65.69804,0.3953,5.983,26.901,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.29,3511.082
-2266,1.303952,0,251.44502,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83294,82.04612,10.599816,11.817176,172.67585,8.222652,0.11,65.701016,0.3953,5.984,26.904,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.299,3511.082
-2267,1.298824,0,251.46609,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83298,82.04984,10.600292,11.817712,172.68368,8.223024,0.11,65.703992,0.3953,5.985,26.907,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.308,3511.082
-2268,1.293696,0,251.48717,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83302,82.05356,10.600768,11.818248,172.6915,8.223396,0.11,65.706968,0.3953,5.985,26.91,4.918,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.317,3511.082
-2269,1.288568,0,251.50824,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83306,82.05728,10.601244,11.818784,172.69933,8.223768,0.11,65.709944,0.3953,5.986,26.912,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.326,3511.082
-2270,1.28344,0,251.52932,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.8331,82.061,10.60172,11.81932,172.70716,8.22414,0.11,65.71292,0.3953,5.987,26.915,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.335,3511.082
-2271,1.278312,0,251.5504,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83314,82.06472,10.602196,11.819856,172.71499,8.224512,0.11,65.715896,0.3953,5.987,26.918,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.344,3511.082
-2272,1.273184,0,251.57147,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83318,82.06844,10.602672,11.820392,172.72282,8.224884,0.11,65.718872,0.3953,5.988,26.921,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.353,3511.082
-2273,1.268056,0,251.59255,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83322,82.07216,10.603148,11.820928,172.73064,8.225256,0.11,65.721848,0.3953,5.988,26.924,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.362,3511.082
-2274,1.262928,0,251.61362,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83326,82.07588,10.603624,11.821464,172.73847,8.225628,0.11,65.724824,0.3953,5.989,26.927,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.371,3511.082
-2275,1.2578,0,251.6347,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.8333,82.0796,10.6041,11.822,172.7463,8.226,0.11,65.7278,0.3953,5.99,26.929,4.922,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.379,3511.082
-2276,1.254232,0,251.65339,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082604,0.037,0.833336,82.082904,10.604528,11.822476,172.75325,8.226328,0.110008,65.730448,0.3953,5.99,26.932,4.922,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.388,3511.082
-2277,1.250664,0,251.67208,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082608,0.037,0.833372,82.086208,10.604956,11.822952,172.7602,8.226656,0.110016,65.733096,0.3953,5.991,26.935,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.397,3511.082
-2278,1.247096,0,251.69076,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082612,0.037,0.833408,82.089512,10.605384,11.823428,172.76714,8.226984,0.110024,65.735744,0.3953,5.992,26.938,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.406,3511.082
-2279,1.243528,0,251.70945,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082616,0.037,0.833444,82.092816,10.605812,11.823904,172.77409,8.227312,0.110032,65.738392,0.3953,5.992,26.94,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.414,3511.082
-2280,1.23996,0,251.72814,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08262,0.037,0.83348,82.09612,10.60624,11.82438,172.78104,8.22764,0.11004,65.74104,0.3953,5.993,26.943,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.423,3511.082
-2281,1.236392,0,251.74683,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082624,0.037,0.833516,82.099424,10.606668,11.824856,172.78799,8.227968,0.110048,65.743688,0.3953,5.993,26.946,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.431,3511.082
-2282,1.232824,0,251.76552,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082628,0.037,0.833552,82.102728,10.607096,11.825332,172.79494,8.228296,0.110056,65.746336,0.3953,5.994,26.949,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.44,3511.082
-2283,1.229256,0,251.7842,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082632,0.037,0.833588,82.106032,10.607524,11.825808,172.80188,8.228624,0.110064,65.748984,0.3953,5.995,26.951,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.448,3511.082
-2284,1.225688,0,251.80289,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082636,0.037,0.833624,82.109336,10.607952,11.826284,172.80883,8.228952,0.110072,65.751632,0.3953,5.995,26.954,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.457,3511.082
-2285,1.22212,0,251.82158,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08264,0.037,0.83366,82.11264,10.60838,11.82676,172.81578,8.22928,0.11008,65.75428,0.3953,5.996,26.957,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.465,3511.082
-2286,1.218552,0,251.84027,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082644,0.037,0.833696,82.115944,10.608808,11.827236,172.82273,8.229608,0.110088,65.756928,0.3953,5.996,26.959,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.473,3511.082
-2287,1.214984,0,251.85896,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082648,0.037,0.833732,82.119248,10.609236,11.827712,172.82968,8.229936,0.110096,65.759576,0.3953,5.997,26.962,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.482,3511.082
-2288,1.211416,0,251.87764,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082652,0.037,0.833768,82.122552,10.609664,11.828188,172.83662,8.230264,0.110104,65.762224,0.3953,5.998,26.965,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.49,3511.082
-2289,1.207848,0,251.89633,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082656,0.037,0.833804,82.125856,10.610092,11.828664,172.84357,8.230592,0.110112,65.764872,0.3953,5.998,26.967,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.498,3511.082
-2290,1.20428,0,251.91502,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08266,0.037,0.83384,82.12916,10.61052,11.82914,172.85052,8.23092,0.11012,65.76752,0.3953,5.999,26.97,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.507,3511.082
-2291,1.200712,0,251.93371,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082664,0.037,0.833876,82.132464,10.610948,11.829616,172.85747,8.231248,0.110128,65.770168,0.3953,5.999,26.972,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.515,3511.082
-2292,1.197144,0,251.9524,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082668,0.037,0.833912,82.135768,10.611376,11.830092,172.86442,8.231576,0.110136,65.772816,0.3953,6,26.975,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.523,3511.082
-2293,1.193576,0,251.97108,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082672,0.037,0.833948,82.139072,10.611804,11.830568,172.87136,8.231904,0.110144,65.775464,0.3953,6,26.978,4.93,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.531,3511.082
-2294,1.190008,0,251.98977,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082676,0.037,0.833984,82.142376,10.612232,11.831044,172.87831,8.232232,0.110152,65.778112,0.3953,6.001,26.98,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.539,3511.082
-2295,1.18644,0,252.00846,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08268,0.037,0.83402,82.14568,10.61266,11.83152,172.88526,8.23256,0.11016,65.78076,0.3953,6.002,26.983,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.547,3511.082
-2296,1.182872,0,252.02715,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082684,0.037,0.834056,82.148984,10.613088,11.831996,172.89221,8.232888,0.110168,65.783408,0.3953,6.002,26.985,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.555,3511.082
-2297,1.179304,0,252.04584,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082688,0.037,0.834092,82.152288,10.613516,11.832472,172.89916,8.233216,0.110176,65.786056,0.3953,6.003,26.988,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.564,3511.082
-2298,1.175736,0,252.06452,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082692,0.037,0.834128,82.155592,10.613944,11.832948,172.9061,8.233544,0.110184,65.788704,0.3953,6.003,26.991,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.572,3511.082
-2299,1.172168,0,252.08321,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082696,0.037,0.834164,82.158896,10.614372,11.833424,172.91305,8.233872,0.110192,65.791352,0.3953,6.004,26.993,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.579,3511.082
-2300,1.1686,0,252.1019,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0827,0.037,0.8342,82.1622,10.6148,11.8339,172.92,8.2342,0.1102,65.794,0.3953,6.004,26.996,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.587,3511.082
-2301,1.165964,0,252.1187,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082704,0.037,0.834228,82.165164,10.615184,11.834324,172.92624,8.2345,0.110204,65.796372,0.3953,6.005,26.998,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.595,3511.082
-2302,1.163328,0,252.1355,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082708,0.037,0.834256,82.168128,10.615568,11.834748,172.93248,8.2348,0.110208,65.798744,0.3953,6.006,27.001,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.603,3511.082
-2303,1.160692,0,252.1523,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082712,0.037,0.834284,82.171092,10.615952,11.835172,172.93872,8.2351,0.110212,65.801116,0.3953,6.006,27.003,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.611,3511.082
-2304,1.158056,0,252.1691,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082716,0.037,0.834312,82.174056,10.616336,11.835596,172.94496,8.2354,0.110216,65.803488,0.3953,6.007,27.006,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.619,3511.082
-2305,1.15542,0,252.1859,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08272,0.037,0.83434,82.17702,10.61672,11.83602,172.9512,8.2357,0.11022,65.80586,0.3953,6.007,27.008,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.627,3511.082
-2306,1.152784,0,252.2027,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082724,0.037,0.834368,82.179984,10.617104,11.836444,172.95744,8.236,0.110224,65.808232,0.3953,6.008,27.011,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.634,3511.082
-2307,1.150148,0,252.2195,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082728,0.037,0.834396,82.182948,10.617488,11.836868,172.96368,8.2363,0.110228,65.810604,0.3953,6.008,27.013,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.642,3511.082
-2308,1.147512,0,252.2363,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082732,0.037,0.834424,82.185912,10.617872,11.837292,172.96992,8.2366,0.110232,65.812976,0.3953,6.009,27.016,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.65,3511.082
-2309,1.144876,0,252.2531,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082736,0.037,0.834452,82.188876,10.618256,11.837716,172.97616,8.2369,0.110236,65.815348,0.3953,6.009,27.018,4.938,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.658,3511.082
-2310,1.14224,0,252.2699,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08274,0.037,0.83448,82.19184,10.61864,11.83814,172.9824,8.2372,0.11024,65.81772,0.3953,6.01,27.02,4.938,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.665,3511.082
-2311,1.139604,0,252.2867,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082744,0.037,0.834508,82.194804,10.619024,11.838564,172.98864,8.2375,0.110244,65.820092,0.3953,6.011,27.023,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.673,3511.082
-2312,1.136968,0,252.3035,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082748,0.037,0.834536,82.197768,10.619408,11.838988,172.99488,8.2378,0.110248,65.822464,0.3953,6.011,27.025,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.68,3511.082
-2313,1.134332,0,252.3203,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082752,0.037,0.834564,82.200732,10.619792,11.839412,173.00112,8.2381,0.110252,65.824836,0.3953,6.012,27.028,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.688,3511.082
-2314,1.131696,0,252.3371,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082756,0.037,0.834592,82.203696,10.620176,11.839836,173.00736,8.2384,0.110256,65.827208,0.3953,6.012,27.03,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.696,3511.082
-2315,1.12906,0,252.3539,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08276,0.037,0.83462,82.20666,10.62056,11.84026,173.0136,8.2387,0.11026,65.82958,0.3953,6.013,27.032,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.703,3511.082
-2316,1.126424,0,252.3707,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082764,0.037,0.834648,82.209624,10.620944,11.840684,173.01984,8.239,0.110264,65.831952,0.3953,6.013,27.035,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.711,3511.082
-2317,1.123788,0,252.3875,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082768,0.037,0.834676,82.212588,10.621328,11.841108,173.02608,8.2393,0.110268,65.834324,0.3953,6.014,27.037,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.718,3511.082
-2318,1.121152,0,252.4043,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082772,0.037,0.834704,82.215552,10.621712,11.841532,173.03232,8.2396,0.110272,65.836696,0.3953,6.014,27.04,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.725,3511.082
-2319,1.118516,0,252.4211,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082776,0.037,0.834732,82.218516,10.622096,11.841956,173.03856,8.2399,0.110276,65.839068,0.3953,6.015,27.042,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.733,3511.082
-2320,1.11588,0,252.4379,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08278,0.037,0.83476,82.22148,10.62248,11.84238,173.0448,8.2402,0.11028,65.84144,0.3953,6.015,27.044,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.74,3511.082
-2321,1.113244,0,252.4547,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082784,0.037,0.834788,82.224444,10.622864,11.842804,173.05104,8.2405,0.110284,65.843812,0.3953,6.016,27.047,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.748,3511.082
-2322,1.110608,0,252.4715,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082788,0.037,0.834816,82.227408,10.623248,11.843228,173.05728,8.2408,0.110288,65.846184,0.3953,6.016,27.049,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.755,3511.082
-2323,1.107972,0,252.4883,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082792,0.037,0.834844,82.230372,10.623632,11.843652,173.06352,8.2411,0.110292,65.848556,0.3953,6.017,27.051,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.762,3511.082
-2324,1.105336,0,252.5051,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082796,0.037,0.834872,82.233336,10.624016,11.844076,173.06976,8.2414,0.110296,65.850928,0.3953,6.017,27.054,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.77,3511.082
-2325,1.1027,0,252.5219,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.8349,82.2363,10.6244,11.8445,173.076,8.2417,0.1103,65.8533,0.3953,6.018,27.056,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.777,3511.082
-2326,1.100632,0,252.53715,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.834924,82.238992,10.624748,11.844888,173.08167,8.241968,0.110304,65.85546,0.3953,6.018,27.058,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.784,3511.082
-2327,1.098564,0,252.5524,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.834948,82.241684,10.625096,11.845276,173.08734,8.242236,0.110308,65.85762,0.3953,6.019,27.061,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.791,3511.082
-2328,1.096496,0,252.56766,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.834972,82.244376,10.625444,11.845664,173.093,8.242504,0.110312,65.85978,0.3953,6.019,27.063,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.798,3511.082
-2329,1.094428,0,252.58291,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.834996,82.247068,10.625792,11.846052,173.09867,8.242772,0.110316,65.86194,0.3953,6.02,27.065,4.946,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.806,3511.082
-2330,1.09236,0,252.59816,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.83502,82.24976,10.62614,11.84644,173.10434,8.24304,0.11032,65.8641,0.3953,6.02,27.067,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.813,3511.082
-2331,1.090292,0,252.61341,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835044,82.252452,10.626488,11.846828,173.11001,8.243308,0.110324,65.86626,0.3953,6.021,27.07,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.82,3511.082
-2332,1.088224,0,252.62866,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835068,82.255144,10.626836,11.847216,173.11568,8.243576,0.110328,65.86842,0.3953,6.021,27.072,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.827,3511.082
-2333,1.086156,0,252.64392,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835092,82.257836,10.627184,11.847604,173.12134,8.243844,0.110332,65.87058,0.3953,6.022,27.074,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.834,3511.082
-2334,1.084088,0,252.65917,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835116,82.260528,10.627532,11.847992,173.12701,8.244112,0.110336,65.87274,0.3953,6.022,27.076,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.841,3511.082
-2335,1.08202,0,252.67442,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.83514,82.26322,10.62788,11.84838,173.13268,8.24438,0.11034,65.8749,0.3953,6.023,27.079,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.848,3511.082
-2336,1.079952,0,252.68967,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835164,82.265912,10.628228,11.848768,173.13835,8.244648,0.110344,65.87706,0.3953,6.023,27.081,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.855,3511.082
-2337,1.077884,0,252.70492,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835188,82.268604,10.628576,11.849156,173.14402,8.244916,0.110348,65.87922,0.3953,6.024,27.083,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.862,3511.082
-2338,1.075816,0,252.72018,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835212,82.271296,10.628924,11.849544,173.14968,8.245184,0.110352,65.88138,0.3953,6.024,27.085,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.869,3511.082
-2339,1.073748,0,252.73543,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835236,82.273988,10.629272,11.849932,173.15535,8.245452,0.110356,65.88354,0.3953,6.025,27.088,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.876,3511.082
-2340,1.07168,0,252.75068,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.83526,82.27668,10.62962,11.85032,173.16102,8.24572,0.11036,65.8857,0.3953,6.025,27.09,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.883,3511.082
-2341,1.069612,0,252.76593,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835284,82.279372,10.629968,11.850708,173.16669,8.245988,0.110364,65.88786,0.3953,6.026,27.092,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.89,3511.082
-2342,1.067544,0,252.78118,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835308,82.282064,10.630316,11.851096,173.17236,8.246256,0.110368,65.89002,0.3953,6.026,27.094,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.896,3511.082
-2343,1.065476,0,252.79644,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835332,82.284756,10.630664,11.851484,173.17802,8.246524,0.110372,65.89218,0.3953,6.027,27.096,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.903,3511.082
-2344,1.063408,0,252.81169,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835356,82.287448,10.631012,11.851872,173.18369,8.246792,0.110376,65.89434,0.3953,6.027,27.098,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.91,3511.082
-2345,1.06134,0,252.82694,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.83538,82.29014,10.63136,11.85226,173.18936,8.24706,0.11038,65.8965,0.3953,6.028,27.101,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.917,3511.082
-2346,1.059272,0,252.84219,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835404,82.292832,10.631708,11.852648,173.19503,8.247328,0.110384,65.89866,0.3953,6.028,27.103,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.924,3511.082
-2347,1.057204,0,252.85744,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835428,82.295524,10.632056,11.853036,173.2007,8.247596,0.110388,65.90082,0.3953,6.029,27.105,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.93,3511.082
-2348,1.055136,0,252.8727,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835452,82.298216,10.632404,11.853424,173.20636,8.247864,0.110392,65.90298,0.3953,6.029,27.107,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.937,3511.082
-2349,1.053068,0,252.88795,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835476,82.300908,10.632752,11.853812,173.21203,8.248132,0.110396,65.90514,0.3953,6.03,27.109,4.954,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.944,3511.082
-2350,1.051,0,252.9032,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.8355,82.3036,10.6331,11.8542,173.2177,8.2484,0.1104,65.9073,0.3953,6.03,27.111,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.951,3511.082
-2351,1.049292,0,252.91716,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082804,0.037,0.835528,82.306068,10.633424,11.85456,173.22289,8.248644,0.110408,65.909276,0.3953,6.031,27.113,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.957,3511.082
-2352,1.047584,0,252.93113,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082808,0.037,0.835556,82.308536,10.633748,11.85492,173.22808,8.248888,0.110416,65.911252,0.3953,6.031,27.116,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.964,3511.082
-2353,1.045876,0,252.94509,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082812,0.037,0.835584,82.311004,10.634072,11.85528,173.23328,8.249132,0.110424,65.913228,0.3953,6.032,27.118,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.97,3511.082
-2354,1.044168,0,252.95906,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082816,0.037,0.835612,82.313472,10.634396,11.85564,173.23847,8.249376,0.110432,65.915204,0.3953,6.032,27.12,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.977,3511.082
-2355,1.04246,0,252.97302,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08282,0.037,0.83564,82.31594,10.63472,11.856,173.24366,8.24962,0.11044,65.91718,0.3953,6.033,27.122,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.984,3511.082
-2356,1.040752,0,252.98698,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082824,0.037,0.835668,82.318408,10.635044,11.85636,173.24885,8.249864,0.110448,65.919156,0.3953,6.033,27.124,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.99,3511.082
-2357,1.039044,0,253.00095,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082828,0.037,0.835696,82.320876,10.635368,11.85672,173.25404,8.250108,0.110456,65.921132,0.3953,6.033,27.126,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.997,3511.082
-2358,1.037336,0,253.01491,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082832,0.037,0.835724,82.323344,10.635692,11.85708,173.25924,8.250352,0.110464,65.923108,0.3953,6.034,27.128,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.003,3511.082
-2359,1.035628,0,253.02888,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082836,0.037,0.835752,82.325812,10.636016,11.85744,173.26443,8.250596,0.110472,65.925084,0.3953,6.034,27.13,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.01,3511.082
-2360,1.03392,0,253.04284,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08284,0.037,0.83578,82.32828,10.63634,11.8578,173.26962,8.25084,0.11048,65.92706,0.3953,6.035,27.132,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.016,3511.082
-2361,1.032212,0,253.0568,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082844,0.037,0.835808,82.330748,10.636664,11.85816,173.27481,8.251084,0.110488,65.929036,0.3953,6.035,27.134,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.023,3511.082
-2362,1.030504,0,253.07077,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082848,0.037,0.835836,82.333216,10.636988,11.85852,173.28,8.251328,0.110496,65.931012,0.3953,6.036,27.136,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.029,3511.082
-2363,1.028796,0,253.08473,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082852,0.037,0.835864,82.335684,10.637312,11.85888,173.2852,8.251572,0.110504,65.932988,0.3953,6.036,27.138,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.035,3511.082
-2364,1.027088,0,253.0987,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082856,0.037,0.835892,82.338152,10.637636,11.85924,173.29039,8.251816,0.110512,65.934964,0.3953,6.037,27.14,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.042,3511.082
-2365,1.02538,0,253.11266,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08286,0.037,0.83592,82.34062,10.63796,11.8596,173.29558,8.25206,0.11052,65.93694,0.3953,6.037,27.142,4.961,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.048,3511.082
-2366,1.023672,0,253.12662,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082864,0.037,0.835948,82.343088,10.638284,11.85996,173.30077,8.252304,0.110528,65.938916,0.3953,6.038,27.144,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.055,3511.082
-2367,1.021964,0,253.14059,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082868,0.037,0.835976,82.345556,10.638608,11.86032,173.30596,8.252548,0.110536,65.940892,0.3953,6.038,27.147,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.061,3511.082
-2368,1.020256,0,253.15455,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082872,0.037,0.836004,82.348024,10.638932,11.86068,173.31116,8.252792,0.110544,65.942868,0.3953,6.038,27.149,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.067,3511.082
-2369,1.018548,0,253.16852,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082876,0.037,0.836032,82.350492,10.639256,11.86104,173.31635,8.253036,0.110552,65.944844,0.3953,6.039,27.151,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.073,3511.082
-2370,1.01684,0,253.18248,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08288,0.037,0.83606,82.35296,10.63958,11.8614,173.32154,8.25328,0.11056,65.94682,0.3953,6.039,27.153,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.08,3511.082
-2371,1.015132,0,253.19644,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082884,0.037,0.836088,82.355428,10.639904,11.86176,173.32673,8.253524,0.110568,65.948796,0.3953,6.04,27.155,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.086,3511.082
-2372,1.013424,0,253.21041,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082888,0.037,0.836116,82.357896,10.640228,11.86212,173.33192,8.253768,0.110576,65.950772,0.3953,6.04,27.157,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.092,3511.082
-2373,1.011716,0,253.22437,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082892,0.037,0.836144,82.360364,10.640552,11.86248,173.33712,8.254012,0.110584,65.952748,0.3953,6.041,27.158,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.098,3511.082
-2374,1.010008,0,253.23834,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082896,0.037,0.836172,82.362832,10.640876,11.86284,173.34231,8.254256,0.110592,65.954724,0.3953,6.041,27.16,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.105,3511.082
-2375,1.0083,0,253.2523,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0829,0.037,0.8362,82.3653,10.6412,11.8632,173.3475,8.2545,0.1106,65.9567,0.3953,6.042,27.162,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.111,3511.082
-2376,1.006816,0,253.26518,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082904,0.037,0.836224,82.36758,10.641492,11.863528,173.35229,8.254732,0.1106,65.95852,0.3953,6.042,27.164,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.117,3511.082
-2377,1.005332,0,253.27805,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082908,0.037,0.836248,82.36986,10.641784,11.863856,173.35708,8.254964,0.1106,65.96034,0.3953,6.042,27.166,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.123,3511.082
-2378,1.003848,0,253.29093,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082912,0.037,0.836272,82.37214,10.642076,11.864184,173.36186,8.255196,0.1106,65.96216,0.3953,6.043,27.168,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.129,3511.082
-2379,1.002364,0,253.3038,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082916,0.037,0.836296,82.37442,10.642368,11.864512,173.36665,8.255428,0.1106,65.96398,0.3953,6.043,27.17,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.135,3511.082
-2380,1.00088,0,253.31668,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08292,0.037,0.83632,82.3767,10.64266,11.86484,173.37144,8.25566,0.1106,65.9658,0.3953,6.044,27.172,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.141,3511.082
-2381,0.999396,0,253.32956,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082924,0.037,0.836344,82.37898,10.642952,11.865168,173.37623,8.255892,0.1106,65.96762,0.3953,6.044,27.174,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.148,3511.082
-2382,0.997912,0,253.34243,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082928,0.037,0.836368,82.38126,10.643244,11.865496,173.38102,8.256124,0.1106,65.96944,0.3953,6.045,27.176,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.154,3511.082
-2383,0.996428,0,253.35531,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082932,0.037,0.836392,82.38354,10.643536,11.865824,173.3858,8.256356,0.1106,65.97126,0.3953,6.045,27.178,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.16,3511.082
-2384,0.994944,0,253.36818,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082936,0.037,0.836416,82.38582,10.643828,11.866152,173.39059,8.256588,0.1106,65.97308,0.3953,6.045,27.18,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.166,3511.082
-2385,0.99346,0,253.38106,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08294,0.037,0.83644,82.3881,10.64412,11.86648,173.39538,8.25682,0.1106,65.9749,0.3953,6.046,27.182,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.172,3511.082
-2386,0.991976,0,253.39394,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082944,0.037,0.836464,82.39038,10.644412,11.866808,173.40017,8.257052,0.1106,65.97672,0.3953,6.046,27.184,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.178,3511.082
-2387,0.990492,0,253.40681,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082948,0.037,0.836488,82.39266,10.644704,11.867136,173.40496,8.257284,0.1106,65.97854,0.3953,6.047,27.186,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.184,3511.082
-2388,0.989008,0,253.41969,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082952,0.037,0.836512,82.39494,10.644996,11.867464,173.40974,8.257516,0.1106,65.98036,0.3953,6.047,27.188,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.19,3511.082
-2389,0.987524,0,253.43256,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082956,0.037,0.836536,82.39722,10.645288,11.867792,173.41453,8.257748,0.1106,65.98218,0.3953,6.048,27.189,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.195,3511.082
-2390,0.98604,0,253.44544,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08296,0.037,0.83656,82.3995,10.64558,11.86812,173.41932,8.25798,0.1106,65.984,0.3953,6.048,27.191,4.969,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.201,3511.082
-2391,0.984556,0,253.45832,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082964,0.037,0.836584,82.40178,10.645872,11.868448,173.42411,8.258212,0.1106,65.98582,0.3953,6.048,27.193,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.207,3511.082
-2392,0.983072,0,253.47119,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082968,0.037,0.836608,82.40406,10.646164,11.868776,173.4289,8.258444,0.1106,65.98764,0.3953,6.049,27.195,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.213,3511.082
-2393,0.981588,0,253.48407,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082972,0.037,0.836632,82.40634,10.646456,11.869104,173.43368,8.258676,0.1106,65.98946,0.3953,6.049,27.197,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.219,3511.082
-2394,0.980104,0,253.49694,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082976,0.037,0.836656,82.40862,10.646748,11.869432,173.43847,8.258908,0.1106,65.99128,0.3953,6.05,27.199,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.225,3511.082
-2395,0.97862,0,253.50982,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08298,0.037,0.83668,82.4109,10.64704,11.86976,173.44326,8.25914,0.1106,65.9931,0.3953,6.05,27.201,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.231,3511.082
-2396,0.977136,0,253.5227,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082984,0.037,0.836704,82.41318,10.647332,11.870088,173.44805,8.259372,0.1106,65.99492,0.3953,6.05,27.203,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.237,3511.082
-2397,0.975652,0,253.53557,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082988,0.037,0.836728,82.41546,10.647624,11.870416,173.45284,8.259604,0.1106,65.99674,0.3953,6.051,27.204,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.242,3511.082
-2398,0.974168,0,253.54845,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082992,0.037,0.836752,82.41774,10.647916,11.870744,173.45762,8.259836,0.1106,65.99856,0.3953,6.051,27.206,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.248,3511.082
-2399,0.972684,0,253.56132,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082996,0.037,0.836776,82.42002,10.648208,11.871072,173.46241,8.260068,0.1106,66.00038,0.3953,6.052,27.208,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.254,3511.082
-2400,0.9712,0,253.5742,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.8368,82.4223,10.6485,11.8714,173.4672,8.2603,0.1106,66.0022,0.3953,6.052,27.21,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.26,3511.082
-2401,0.969888,0,253.58614,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.836828,82.4244,10.648772,11.871708,173.47163,8.260512,0.1106,66.003884,0.3953,6.053,27.212,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.265,3511.082
-2402,0.968576,0,253.59809,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.836856,82.4265,10.649044,11.872016,173.47606,8.260724,0.1106,66.005568,0.3953,6.053,27.214,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.271,3511.082
-2403,0.967264,0,253.61003,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.836884,82.4286,10.649316,11.872324,173.4805,8.260936,0.1106,66.007252,0.3953,6.053,27.215,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.277,3511.082
-2404,0.965952,0,253.62198,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.836912,82.4307,10.649588,11.872632,173.48493,8.261148,0.1106,66.008936,0.3953,6.054,27.217,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.282,3511.082
-2405,0.96464,0,253.63392,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.83694,82.4328,10.64986,11.87294,173.48936,8.26136,0.1106,66.01062,0.3953,6.054,27.219,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.288,3511.082
-2406,0.963328,0,253.64586,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.836968,82.4349,10.650132,11.873248,173.49379,8.261572,0.1106,66.012304,0.3953,6.055,27.221,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.294,3511.082
-2407,0.962016,0,253.65781,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.836996,82.437,10.650404,11.873556,173.49822,8.261784,0.1106,66.013988,0.3953,6.055,27.223,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.299,3511.082
-2408,0.960704,0,253.66975,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837024,82.4391,10.650676,11.873864,173.50266,8.261996,0.1106,66.015672,0.3953,6.055,27.224,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.305,3511.082
-2409,0.959392,0,253.6817,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837052,82.4412,10.650948,11.874172,173.50709,8.262208,0.1106,66.017356,0.3953,6.056,27.226,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.311,3511.082
-2410,0.95808,0,253.69364,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.83708,82.4433,10.65122,11.87448,173.51152,8.26242,0.1106,66.01904,0.3953,6.056,27.228,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.316,3511.082
-2411,0.956768,0,253.70558,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837108,82.4454,10.651492,11.874788,173.51595,8.262632,0.1106,66.020724,0.3953,6.057,27.23,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.322,3511.082
-2412,0.955456,0,253.71753,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837136,82.4475,10.651764,11.875096,173.52038,8.262844,0.1106,66.022408,0.3953,6.057,27.231,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.327,3511.082
-2413,0.954144,0,253.72947,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837164,82.4496,10.652036,11.875404,173.52482,8.263056,0.1106,66.024092,0.3953,6.057,27.233,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.333,3511.082
-2414,0.952832,0,253.74142,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837192,82.4517,10.652308,11.875712,173.52925,8.263268,0.1106,66.025776,0.3953,6.058,27.235,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.338,3511.082
-2415,0.95152,0,253.75336,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.83722,82.4538,10.65258,11.87602,173.53368,8.26348,0.1106,66.02746,0.3953,6.058,27.237,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.344,3511.082
-2416,0.950208,0,253.7653,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837248,82.4559,10.652852,11.876328,173.53811,8.263692,0.1106,66.029144,0.3953,6.058,27.239,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.349,3511.082
-2417,0.948896,0,253.77725,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837276,82.458,10.653124,11.876636,173.54254,8.263904,0.1106,66.030828,0.3953,6.059,27.24,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.355,3511.082
-2418,0.947584,0,253.78919,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837304,82.4601,10.653396,11.876944,173.54698,8.264116,0.1106,66.032512,0.3953,6.059,27.242,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.36,3511.082
-2419,0.946272,0,253.80114,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837332,82.4622,10.653668,11.877252,173.55141,8.264328,0.1106,66.034196,0.3953,6.06,27.244,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.366,3511.082
-2420,0.94496,0,253.81308,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.83736,82.4643,10.65394,11.87756,173.55584,8.26454,0.1106,66.03588,0.3953,6.06,27.245,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.371,3511.082
-2421,0.943648,0,253.82502,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837388,82.4664,10.654212,11.877868,173.56027,8.264752,0.1106,66.037564,0.3953,6.06,27.247,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.377,3511.082
-2422,0.942336,0,253.83697,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837416,82.4685,10.654484,11.878176,173.5647,8.264964,0.1106,66.039248,0.3953,6.061,27.249,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.382,3511.082
-2423,0.941024,0,253.84891,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837444,82.4706,10.654756,11.878484,173.56914,8.265176,0.1106,66.040932,0.3953,6.061,27.251,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.388,3511.082
-2424,0.939712,0,253.86086,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837472,82.4727,10.655028,11.878792,173.57357,8.265388,0.1106,66.042616,0.3953,6.062,27.252,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.393,3511.082
-2425,0.9384,0,253.8728,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.8375,82.4748,10.6553,11.8791,173.578,8.2656,0.1106,66.0443,0.3953,6.062,27.254,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.398,3511.082
-2426,0.937196,0,253.88393,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083004,0.037,0.83752,82.476768,10.655556,11.879376,173.58214,8.265796,0.110608,66.045876,0.3953,6.062,27.256,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.404,3511.082
-2427,0.935992,0,253.89506,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083008,0.037,0.83754,82.478736,10.655812,11.879652,173.58627,8.265992,0.110616,66.047452,0.3953,6.063,27.257,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.409,3511.082
-2428,0.934788,0,253.90618,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083012,0.037,0.83756,82.480704,10.656068,11.879928,173.59041,8.266188,0.110624,66.049028,0.3953,6.063,27.259,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.414,3511.082
-2429,0.933584,0,253.91731,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083016,0.037,0.83758,82.482672,10.656324,11.880204,173.59454,8.266384,0.110632,66.050604,0.3953,6.063,27.261,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.42,3511.082
-2430,0.93238,0,253.92844,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08302,0.037,0.8376,82.48464,10.65658,11.88048,173.59868,8.26658,0.11064,66.05218,0.3953,6.064,27.263,4.983,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.425,3511.082
-2431,0.931176,0,253.93957,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083024,0.037,0.83762,82.486608,10.656836,11.880756,173.60282,8.266776,0.110648,66.053756,0.3953,6.064,27.264,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.43,3511.082
-2432,0.929972,0,253.9507,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083028,0.037,0.83764,82.488576,10.657092,11.881032,173.60695,8.266972,0.110656,66.055332,0.3953,6.065,27.266,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.436,3511.082
-2433,0.928768,0,253.96182,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083032,0.037,0.83766,82.490544,10.657348,11.881308,173.61109,8.267168,0.110664,66.056908,0.3953,6.065,27.268,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.441,3511.082
-2434,0.927564,0,253.97295,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083036,0.037,0.83768,82.492512,10.657604,11.881584,173.61522,8.267364,0.110672,66.058484,0.3953,6.065,27.269,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.446,3511.082
-2435,0.92636,0,253.98408,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08304,0.037,0.8377,82.49448,10.65786,11.88186,173.61936,8.26756,0.11068,66.06006,0.3953,6.066,27.271,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.451,3511.082
-2436,0.925156,0,253.99521,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083044,0.037,0.83772,82.496448,10.658116,11.882136,173.6235,8.267756,0.110688,66.061636,0.3953,6.066,27.273,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.457,3511.082
-2437,0.923952,0,254.00634,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083048,0.037,0.83774,82.498416,10.658372,11.882412,173.62763,8.267952,0.110696,66.063212,0.3953,6.066,27.274,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.462,3511.082
-2438,0.922748,0,254.01746,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083052,0.037,0.83776,82.500384,10.658628,11.882688,173.63177,8.268148,0.110704,66.064788,0.3953,6.067,27.276,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.467,3511.082
-2439,0.921544,0,254.02859,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083056,0.037,0.83778,82.502352,10.658884,11.882964,173.6359,8.268344,0.110712,66.066364,0.3953,6.067,27.278,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.472,3511.082
-2440,0.92034,0,254.03972,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08306,0.037,0.8378,82.50432,10.65914,11.88324,173.64004,8.26854,0.11072,66.06794,0.3953,6.068,27.279,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.477,3511.082
-2441,0.919136,0,254.05085,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083064,0.037,0.83782,82.506288,10.659396,11.883516,173.64418,8.268736,0.110728,66.069516,0.3953,6.068,27.281,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.482,3511.082
-2442,0.917932,0,254.06198,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083068,0.037,0.83784,82.508256,10.659652,11.883792,173.64831,8.268932,0.110736,66.071092,0.3953,6.068,27.283,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.488,3511.082
-2443,0.916728,0,254.0731,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083072,0.037,0.83786,82.510224,10.659908,11.884068,173.65245,8.269128,0.110744,66.072668,0.3953,6.069,27.284,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.493,3511.082
-2444,0.915524,0,254.08423,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083076,0.037,0.83788,82.512192,10.660164,11.884344,173.65658,8.269324,0.110752,66.074244,0.3953,6.069,27.286,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.498,3511.082
-2445,0.91432,0,254.09536,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08308,0.037,0.8379,82.51416,10.66042,11.88462,173.66072,8.26952,0.11076,66.07582,0.3953,6.069,27.287,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.503,3511.082
-2446,0.913116,0,254.10649,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083084,0.037,0.83792,82.516128,10.660676,11.884896,173.66486,8.269716,0.110768,66.077396,0.3953,6.07,27.289,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.508,3511.082
-2447,0.911912,0,254.11762,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083088,0.037,0.83794,82.518096,10.660932,11.885172,173.66899,8.269912,0.110776,66.078972,0.3953,6.07,27.291,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.513,3511.082
-2448,0.910708,0,254.12874,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083092,0.037,0.83796,82.520064,10.661188,11.885448,173.67313,8.270108,0.110784,66.080548,0.3953,6.07,27.292,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.518,3511.082
-2449,0.909504,0,254.13987,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083096,0.037,0.83798,82.522032,10.661444,11.885724,173.67726,8.270304,0.110792,66.082124,0.3953,6.071,27.294,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.523,3511.082
-2450,0.9083,0,254.151,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838,82.524,10.6617,11.886,173.6814,8.2705,0.1108,66.0837,0.3953,6.071,27.295,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.528,3511.082
-2451,0.907176,0,254.16141,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838016,82.525844,10.66194,11.886264,173.68527,8.270684,0.1108,66.085172,0.3953,6.072,27.297,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.533,3511.082
-2452,0.906052,0,254.17182,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838032,82.527688,10.66218,11.886528,173.68914,8.270868,0.1108,66.086644,0.3953,6.072,27.299,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.538,3511.082
-2453,0.904928,0,254.18224,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838048,82.529532,10.66242,11.886792,173.69302,8.271052,0.1108,66.088116,0.3953,6.072,27.3,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.543,3511.082
-2454,0.903804,0,254.19265,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838064,82.531376,10.66266,11.887056,173.69689,8.271236,0.1108,66.089588,0.3953,6.073,27.302,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.548,3511.082
-2455,0.90268,0,254.20306,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83808,82.53322,10.6629,11.88732,173.70076,8.27142,0.1108,66.09106,0.3953,6.073,27.303,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.553,3511.082
-2456,0.901556,0,254.21347,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838096,82.535064,10.66314,11.887584,173.70463,8.271604,0.1108,66.092532,0.3953,6.073,27.305,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.558,3511.082
-2457,0.900432,0,254.22388,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838112,82.536908,10.66338,11.887848,173.7085,8.271788,0.1108,66.094004,0.3953,6.074,27.307,4.991,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.563,3511.082
-2458,0.899308,0,254.2343,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838128,82.538752,10.66362,11.888112,173.71238,8.271972,0.1108,66.095476,0.3953,6.074,27.308,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.568,3511.082
-2459,0.898184,0,254.24471,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838144,82.540596,10.66386,11.888376,173.71625,8.272156,0.1108,66.096948,0.3953,6.074,27.31,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.573,3511.082
-2460,0.89706,0,254.25512,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83816,82.54244,10.6641,11.88864,173.72012,8.27234,0.1108,66.09842,0.3953,6.075,27.311,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.578,3511.082
-2461,0.895936,0,254.26553,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838176,82.544284,10.66434,11.888904,173.72399,8.272524,0.1108,66.099892,0.3953,6.075,27.313,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.583,3511.082
-2462,0.894812,0,254.27594,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838192,82.546128,10.66458,11.889168,173.72786,8.272708,0.1108,66.101364,0.3953,6.075,27.314,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.588,3511.082
-2463,0.893688,0,254.28636,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838208,82.547972,10.66482,11.889432,173.73174,8.272892,0.1108,66.102836,0.3953,6.076,27.316,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.593,3511.082
-2464,0.892564,0,254.29677,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838224,82.549816,10.66506,11.889696,173.73561,8.273076,0.1108,66.104308,0.3953,6.076,27.318,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.597,3511.082
-2465,0.89144,0,254.30718,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83824,82.55166,10.6653,11.88996,173.73948,8.27326,0.1108,66.10578,0.3953,6.076,27.319,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.602,3511.082
-2466,0.890316,0,254.31759,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838256,82.553504,10.66554,11.890224,173.74335,8.273444,0.1108,66.107252,0.3953,6.077,27.321,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.607,3511.082
-2467,0.889192,0,254.328,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838272,82.555348,10.66578,11.890488,173.74722,8.273628,0.1108,66.108724,0.3953,6.077,27.322,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.612,3511.082
-2468,0.888068,0,254.33842,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838288,82.557192,10.66602,11.890752,173.7511,8.273812,0.1108,66.110196,0.3953,6.077,27.324,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.617,3511.082
-2469,0.886944,0,254.34883,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838304,82.559036,10.66626,11.891016,173.75497,8.273996,0.1108,66.111668,0.3953,6.078,27.325,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.622,3511.082
-2470,0.88582,0,254.35924,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83832,82.56088,10.6665,11.89128,173.75884,8.27418,0.1108,66.11314,0.3953,6.078,27.327,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.626,3511.082
-2471,0.884696,0,254.36965,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838336,82.562724,10.66674,11.891544,173.76271,8.274364,0.1108,66.114612,0.3953,6.078,27.328,4.995,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.631,3511.082
-2472,0.883572,0,254.38006,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838352,82.564568,10.66698,11.891808,173.76658,8.274548,0.1108,66.116084,0.3953,6.079,27.33,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.636,3511.082
-2473,0.882448,0,254.39048,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838368,82.566412,10.66722,11.892072,173.77046,8.274732,0.1108,66.117556,0.3953,6.079,27.331,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.641,3511.082
-2474,0.881324,0,254.40089,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838384,82.568256,10.66746,11.892336,173.77433,8.274916,0.1108,66.119028,0.3953,6.079,27.333,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.645,3511.082
-2475,0.8802,0,254.4113,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.8384,82.5701,10.6677,11.8926,173.7782,8.2751,0.1108,66.1205,0.3953,6.08,27.334,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.65,3511.082
-2476,0.879152,0,254.42108,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838416,82.57182,10.667916,11.892848,173.78183,8.275276,0.1108,66.121884,0.3953,6.08,27.336,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.655,3511.082
-2477,0.878104,0,254.43087,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838432,82.57354,10.668132,11.893096,173.78546,8.275452,0.1108,66.123268,0.3953,6.08,27.337,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.66,3511.082
-2478,0.877056,0,254.44065,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838448,82.57526,10.668348,11.893344,173.7891,8.275628,0.1108,66.124652,0.3953,6.081,27.339,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.664,3511.082
-2479,0.876008,0,254.45044,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838464,82.57698,10.668564,11.893592,173.79273,8.275804,0.1108,66.126036,0.3953,6.081,27.34,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.669,3511.082
-2480,0.87496,0,254.46022,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83848,82.5787,10.66878,11.89384,173.79636,8.27598,0.1108,66.12742,0.3953,6.081,27.342,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.674,3511.082
-2481,0.873912,0,254.47,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838496,82.58042,10.668996,11.894088,173.79999,8.276156,0.1108,66.128804,0.3953,6.082,27.343,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.678,3511.082
-2482,0.872864,0,254.47979,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838512,82.58214,10.669212,11.894336,173.80362,8.276332,0.1108,66.130188,0.3953,6.082,27.345,4.998,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.683,3511.082
-2483,0.871816,0,254.48957,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838528,82.58386,10.669428,11.894584,173.80726,8.276508,0.1108,66.131572,0.3953,6.082,27.346,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.688,3511.082
-2484,0.870768,0,254.49936,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838544,82.58558,10.669644,11.894832,173.81089,8.276684,0.1108,66.132956,0.3953,6.083,27.348,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.692,3511.082
-2485,0.86972,0,254.50914,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83856,82.5873,10.66986,11.89508,173.81452,8.27686,0.1108,66.13434,0.3953,6.083,27.349,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.697,3511.082
-2486,0.868672,0,254.51892,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838576,82.58902,10.670076,11.895328,173.81815,8.277036,0.1108,66.135724,0.3953,6.083,27.351,4.999,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.702,3511.082
-2487,0.867624,0,254.52871,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838592,82.59074,10.670292,11.895576,173.82178,8.277212,0.1108,66.137108,0.3953,6.084,27.352,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.706,3511.082
-2488,0.866576,0,254.53849,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838608,82.59246,10.670508,11.895824,173.82542,8.277388,0.1108,66.138492,0.3953,6.084,27.354,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.711,3511.082
-2489,0.865528,0,254.54828,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838624,82.59418,10.670724,11.896072,173.82905,8.277564,0.1108,66.139876,0.3953,6.084,27.355,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.715,3511.082
-2490,0.86448,0,254.55806,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83864,82.5959,10.67094,11.89632,173.83268,8.27774,0.1108,66.14126,0.3953,6.085,27.357,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.72,3511.082
-2491,0.863432,0,254.56784,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838656,82.59762,10.671156,11.896568,173.83631,8.277916,0.1108,66.142644,0.3953,6.085,27.358,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.725,3511.082
-2492,0.862384,0,254.57763,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838672,82.59934,10.671372,11.896816,173.83994,8.278092,0.1108,66.144028,0.3953,6.085,27.359,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.729,3511.082
-2493,0.861336,0,254.58741,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838688,82.60106,10.671588,11.897064,173.84358,8.278268,0.1108,66.145412,0.3953,6.086,27.361,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.734,3511.082
-2494,0.860288,0,254.5972,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838704,82.60278,10.671804,11.897312,173.84721,8.278444,0.1108,66.146796,0.3953,6.086,27.362,5.001,1.24,0.176,0.159,0,0.059,0.308,0.041,0.004,0.181,0,158.738,3511.082
-2495,0.85924,0,254.60698,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83872,82.6045,10.67202,11.89756,173.85084,8.27862,0.1108,66.14818,0.3953,6.086,27.364,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.743,3511.082
-2496,0.858192,0,254.61676,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838736,82.60622,10.672236,11.897808,173.85447,8.278796,0.1108,66.149564,0.3953,6.087,27.365,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.747,3511.082
-2497,0.857144,0,254.62655,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838752,82.60794,10.672452,11.898056,173.8581,8.278972,0.1108,66.150948,0.3953,6.087,27.367,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.752,3511.082
-2498,0.856096,0,254.63633,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838768,82.60966,10.672668,11.898304,173.86174,8.279148,0.1108,66.152332,0.3953,6.087,27.368,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.756,3511.082
-2499,0.855048,0,254.64612,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838784,82.61138,10.672884,11.898552,173.86537,8.279324,0.1108,66.153716,0.3953,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.761,3511.082
-2500,0.854,0,254.6559,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.8388,82.6131,10.6731,11.8988,173.869,8.2795,0.1108,66.1551,0.3953,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.761,3511.082
diff --git a/inst/shinyApp/www/input/emissions/RCP6_emissions.csv b/inst/shinyApp/www/input/emissions/RCP6_emissions.csv
deleted file mode 100644
index d201d79..0000000
--- a/inst/shinyApp/www/input/emissions/RCP6_emissions.csv
+++ /dev/null
@@ -1,740 +0,0 @@
-; RCP 6 emissions ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,MtS/yr,GgS/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,MtN/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr
-Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SOx,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,NH3,CF4_emissions,C2F6_emissions,C6F14,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,HALON1202,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions
-1765,0.003,0,0,0,0,0,0,0,0,0,0,0.83383669,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1766,0.003,0.005338296,1.9632619,0.005191085,0.098882647,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.85423057,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1767,0.003,0.010676593,2.4364481,0.010116813,0.1163065,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.87416738,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1768,0.003,0.016014889,2.911105,0.015042803,0.13381075,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.89365446,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1769,0.003,0.021353185,3.3872782,0.019969063,0.15139789,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.91269911,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1770,0.003,0.026691482,3.8650146,0.024895601,0.16907049,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.93130867,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1771,0.004,0.032029778,4.3443625,0.029822427,0.18683119,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.95253247,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1772,0.004,0.037368074,4.8253718,0.034749548,0.20468271,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.97029378,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1773,0.004,0.042706371,5.3080938,0.039676975,0.22262786,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.98764194,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1774,0.004,0.048044667,5.7925816,0.044604715,0.24066954,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,1.0045843,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1775,0.004,0.053382963,6.2788896,0.04953278,0.25881073,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,1.0211281,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1776,0.004,0.058721259,6.7670743,0.05446118,0.27705451,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,1.0372808,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1777,0.004,0.064059556,7.2571937,0.059389923,0.29540406,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,1.0530496,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1778,0.004,0.069397852,7.7493076,0.064319022,0.31386264,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,1.0684418,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1779,0.004,0.074736148,8.2434776,0.069248487,0.33243362,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,1.0834648,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1780,0.004,0.080074445,8.7397674,0.07417833,0.35112049,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,1.0981259,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1781,0.005,0.085412741,9.2382426,0.079108562,0.36992683,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,1.1154744,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1782,0.005,0.090751037,9.7389706,0.084039195,0.38885633,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,1.1294337,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1783,0.005,0.096089334,10.242021,0.088970241,0.4079128,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,1.143053,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1784,0.005,0.10142763,10.747466,0.093901714,0.42710016,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,1.1563396,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1785,0.005,0.10676593,11.25538,0.098833627,0.44642248,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,1.169301,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1786,0.005,0.11210422,11.765839,0.10376599,0.46588391,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,1.1819444,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1787,0.005,0.11744252,12.278921,0.10869883,0.48548877,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,1.194277,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1788,0.005,0.12278082,12.794707,0.11363214,0.50524148,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,1.2063064,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1789,0.005,0.12811911,13.313282,0.11856595,0.52514663,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,1.2180397,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1790,0.005,0.13345741,13.834732,0.12350027,0.54520892,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,1.2294843,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1791,0.006,0.1387957,14.359145,0.12843512,0.56543322,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,1.2436895,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1792,0.006,0.144134,14.886613,0.13337052,0.58582453,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,1.2545786,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1793,0.006,0.1494723,15.417231,0.13830648,0.60638803,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,1.265201,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1794,0.006,0.15481059,15.951096,0.14324301,0.62712904,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,1.2755639,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1795,0.006,0.16014889,16.488308,0.14818014,0.64805304,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,1.2856747,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1796,0.006,0.16548719,17.028971,0.15311788,0.66916569,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,1.2955407,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1797,0.007,0.17082548,17.573192,0.15805626,0.69047284,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,1.3082113,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1798,0.007,0.17616378,18.121081,0.16299529,0.7119805,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,1.3176096,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1799,0.007,0.18150207,18.672751,0.167935,0.73369486,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,1.3267852,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1800,0.008,0.18684037,19.228319,0.1728754,0.75562233,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,1.3387872,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1801,0.008,0.19217867,19.787906,0.17781651,0.77776949,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,1.347539,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1802,0.01,0.19751696,20.351635,0.18275836,0.80014313,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,1.362174,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1803,0.009,0.20285526,20.919636,0.18770098,0.82275026,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,1.3674894,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1804,0.009,0.20819356,21.49204,0.19264437,0.84559811,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,1.3756605,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1805,0.009,0.21353185,22.068984,0.19758858,0.86869411,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,1.3836527,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1806,0.01,0.21887015,22.650607,0.20253362,0.89204595,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,1.3945153,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1807,0.01,0.22420845,23.237055,0.20747952,0.91566153,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,1.4021716,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1808,0.01,0.22954674,23.828476,0.2124263,0.93954901,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,1.409671,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1809,0.01,0.23488504,24.425025,0.217374,0.9637168,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,1.4170207,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1810,0.01,0.24022333,25.02686,0.22232264,0.98817358,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,1.424228,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1811,0.011,0.24556163,25.634145,0.22727225,1.0129283,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,1.4343424,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1812,0.011,0.25089993,26.247048,0.23222285,1.0379901,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,1.4412871,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1813,0.011,0.25623822,26.865743,0.2371745,1.0633685,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,1.4481114,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1814,0.011,0.26157652,27.490408,0.2421272,1.0890734,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,1.4548227,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1815,0.012,0.26691482,28.12123,0.247081,1.1151148,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,1.4644703,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1816,0.013,0.27225311,28.758398,0.25203593,1.1415031,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,1.4740194,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1817,0.014,0.27759141,29.402108,0.25699203,1.1682491,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,1.4834775,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1818,0.014,0.2829297,30.052563,0.26194932,1.1953638,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,1.4898097,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1819,0.014,0.288268,30.709971,0.26690786,1.2228586,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,1.4960655,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1820,0.014,0.2936063,31.374548,0.27186767,1.2507453,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,1.5022522,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1821,0.014,0.29894459,32.046514,0.2768288,1.279036,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,1.5083771,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1822,0.015,0.30428289,32.7261,0.28179128,1.3077432,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,1.5174895,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1823,0.016,0.30962119,33.413539,0.28675516,1.3368798,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,1.5265547,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1824,0.016,0.31495948,34.109076,0.29172049,1.366459,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,1.532538,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1825,0.017,0.32029778,34.81296,0.2966873,1.3964945,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,1.5415308,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1826,0.017,0.32563608,35.52545,0.30165564,1.4270005,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,1.5474564,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1827,0.018,0.33097437,36.246813,0.30662557,1.4579916,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,1.5564061,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1828,0.018,0.33631267,36.977321,0.31159712,1.4894826,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,1.5623033,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1829,0.018,0.34165096,37.717259,0.31657035,1.5214891,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,1.5681971,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1830,0.024,0.34698926,38.466917,0.32154532,1.554027,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,1.5923472,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1831,0.023,0.35232756,39.226597,0.32652206,1.5871128,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,1.5952145,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1832,0.023,0.35766585,39.996609,0.33150065,1.6207633,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,1.6011425,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1833,0.024,0.36300415,40.777271,0.33648114,1.6549962,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,1.6101385,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1834,0.024,0.36834245,41.568914,0.34146358,1.6898292,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,1.6161259,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1835,0.025,0.37368074,42.371876,0.34644803,1.7252812,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,1.6251959,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1836,0.029,0.37901904,43.186509,0.35143456,1.7613711,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,1.64344,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1837,0.029,0.38435733,44.013173,0.35642324,1.7981187,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,1.6495713,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1838,0.03,0.38969563,44.85224,0.36141413,1.8355443,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,1.6588072,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1839,0.031,0.39503393,45.704093,0.36640729,1.873669,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,1.6681131,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1840,0.032999999,0.40037222,46.569129,0.3714028,1.9125143,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,1.6805382,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1841,0.033999999,0.40571052,47.447755,0.37640073,1.9521025,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,1.6900059,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1842,0.035999999,0.41104882,48.34039,0.38140115,1.9924567,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,1.7026076,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1843,0.036999999,0.41638711,49.247469,0.38640415,2.0336004,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,1.7122664,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1844,0.038999999,0.42172541,50.169439,0.3914098,2.0755581,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,1.7250737,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1845,0.042999999,0.42706371,51.106759,0.39641818,2.118355,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,1.744079,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1846,0.042999999,0.432402,52.059904,0.40142938,2.1620171,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,1.7510373,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1847,0.045999999,0.4377403,53.029365,0.40644349,2.206571,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,1.7672503,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1848,0.046999999,0.44307859,54.015644,0.41146059,2.2520444,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,1.7775149,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1849,0.049999999,0.44841689,55.019264,0.41648078,2.2984658,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,1.7940068,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1850,0.053999999,0.45375519,56.040759,0.42150415,2.3458644,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,1.8136911,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,0,157.267,3100.211
-1851,0.053999999,0.44678569,56.46132,0.42740096,2.401282,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,1.8469194,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,0,157.267,3100.211
-1852,0.056999999,0.49862282,56.88188,0.46466062,2.4566996,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,1.9946876,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,0,157.267,3100.211
-1853,0.058999999,0.49735449,57.302441,0.46477417,2.5121172,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,2.0008114,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,0,157.267,3100.211
-1854,0.068999999,0.49581708,57.723001,0.46443647,2.5675348,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,2.0303036,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,0,157.267,3100.211
-1855,0.070999999,0.49367925,58.143562,0.46327909,2.6229524,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,2.0325148,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,0,157.267,3100.211
-1856,0.075999999,0.49893488,58.564122,0.46729312,2.6783701,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,2.0617637,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,0,157.267,3100.211
-1857,0.076999999,0.504232,58.984683,0.47126447,2.7337877,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,2.078453,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,0,157.267,3100.211
-1858,0.077999999,0.50923298,59.405243,0.47503119,2.7892053,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,2.0943024,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,0,157.267,3100.211
-1859,0.082999999,0.51425389,59.825804,0.47876627,2.8446229,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,2.122971,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,0,157.267,3100.211
-1860,0.090999999,0.51896689,60.246364,0.48257672,2.9000405,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,2.1619782,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,0,157.267,3100.211
-1861,0.094999998,0.5282236,59.614468,0.50499476,2.9926781,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,2.2735927,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,0,157.267,3100.211
-1862,0.096999998,0.47371663,58.982573,0.47111281,3.0853157,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,2.1558166,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,0,157.267,3100.211
-1863,0.104,0.47374912,58.350677,0.47444935,3.1779532,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,2.192329,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,0,157.267,3100.211
-1864,0.112,0.47413825,57.718781,0.47785801,3.2705908,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,2.2299438,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,0,157.267,3100.211
-1865,0.119,0.47479536,57.086885,0.48144966,3.3632284,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,2.2655309,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,0,157.267,3100.211
-1866,0.122,0.47491218,56.45499,0.48420454,3.455866,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,2.2871958,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,0,157.267,3100.211
-1867,0.13022269,0.47338353,55.823094,0.48472337,3.5485035,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,2.3187563,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,0,157.267,3100.211
-1868,0.13525196,0.47198274,55.191198,0.48595323,3.6411411,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,2.3371841,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,0,157.267,3100.211
-1869,0.14228123,0.47048522,54.559303,0.48686155,3.7337787,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,2.3628056,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,0,157.267,3100.211
-1870,0.14731051,0.46933399,53.927407,0.48774355,3.8264163,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,2.3824052,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,0,157.267,3100.211
-1871,0.15633978,0.48732546,56.683869,0.58501628,3.9931681,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,2.8606677,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,0,157.267,3100.211
-1872,0.17336905,0.56696435,59.440331,0.66673981,4.1599199,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,3.2401697,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,0,157.267,3100.211
-1873,0.18439832,0.57690133,62.196793,0.69637076,4.3266717,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,3.4033641,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,0,157.267,3100.211
-1874,0.1744276,0.58328394,64.953255,0.7087503,4.4934235,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,3.4271557,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,0,157.267,3100.211
-1875,0.18845687,0.5899696,67.709717,0.72034342,4.6601753,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,3.5173084,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,157.267,3100.211
-1876,0.19148614,0.59639187,70.46618,0.74524338,4.8269271,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,3.6375503,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,0,157.267,3100.211
-1877,0.19451541,0.60262312,73.222642,0.75633197,4.9936789,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,3.6958465,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,157.267,3100.211
-1878,0.196,0.6090507,75.979104,0.7660459,5.1604307,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,3.7456526,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,0,157.267,3100.211
-1879,0.21,0.61534752,78.735566,0.77491118,5.3271825,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,3.8304098,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,0,157.267,3100.211
-1880,0.236,0.62124317,81.492028,0.78412129,5.4939343,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,3.9520183,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,0,157.267,3100.211
-1881,0.243,0.64887292,84.359461,0.81157848,5.7623214,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,4.071307,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,0,157.267,3100.211
-1882,0.256,0.60466403,87.226893,0.78526034,6.0307085,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,4.0198711,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,0,157.267,3100.211
-1883,0.272,0.60851762,90.094326,0.79255607,6.2990955,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,4.0985326,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,0,157.267,3100.211
-1884,0.275,0.61212775,92.961758,0.7987505,6.5674826,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,4.1333435,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,0,157.267,3100.211
-1885,0.27699999,0.61523611,95.829191,0.80453383,6.8358696,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,4.1646148,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,0,157.267,3100.211
-1886,0.28099999,0.61714413,98.696624,0.82619361,7.1042567,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,4.2758916,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,0,157.267,3100.211
-1887,0.295,0.61616314,101.56406,0.83219647,7.3726438,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,4.353178,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,0,157.267,3100.211
-1888,0.32699999,0.61473356,104.43149,0.83705812,7.6410308,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,4.4748698,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,0,157.267,3100.211
-1889,0.32699999,0.6132002,107.29892,0.84143987,7.9094179,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,4.498422,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,0,157.267,3100.211
-1890,0.35599999,0.61175412,110.16635,0.84552548,8.1778049,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,4.6037011,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,0,157.267,3100.211
-1891,0.37199999,0.61024855,111.52362,0.85098169,8.5673728,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,4.6830725,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,0,157.267,3100.211
-1892,0.37399999,0.62319119,112.88089,0.85741997,8.9569407,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,4.7551637,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,0,157.267,3100.211
-1893,0.36999999,0.62440331,114.23816,0.86475824,9.3465086,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,4.8217408,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,0,157.267,3100.211
-1894,0.38299999,0.64036719,115.59543,0.87294487,9.7360765,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,4.8845702,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,0,157.267,3100.211
-1895,0.40599999,0.64441851,116.9527,0.88188195,10.125644,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,4.9454181,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,0,157.267,3100.211
-1896,0.41899999,0.6462784,118.30997,0.89141802,10.515212,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,5.0060509,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,0,157.267,3100.211
-1897,0.43999999,0.64956412,119.66724,0.90140157,10.90478,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,5.0682347,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,0,157.267,3100.211
-1898,0.46499999,0.65100098,121.02451,0.91168111,11.294348,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,5.1337359,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,0,157.267,3100.211
-1899,0.50699999,0.65220446,122.38178,0.92210515,11.683916,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,5.2043208,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,0,157.267,3100.211
-1900,0.53399999,0.65320628,123.73905,0.9325222,12.073484,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,5.2817555,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,0,157.267,3100.211
-1901,0.55199999,0.70294318,124.8415,0.9446669,12.62988,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,5.3685634,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,0,157.267,3100.211
-1902,0.56599999,0.70297364,125.94396,0.95993065,13.186275,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,5.4646652,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,0,157.267,3100.211
-1903,0.61699999,0.72667096,127.04642,0.97764708,13.742671,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,5.5679233,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,0,157.267,3100.211
-1904,0.62399999,0.74829324,128.14887,0.99722904,14.299067,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,5.6762002,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,0,157.267,3100.211
-1905,0.66299999,0.76981521,129.25133,1.0181293,14.855463,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,5.7873584,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,0,157.267,3100.211
-1906,0.70699999,0.79653384,130.35378,1.0397413,15.411858,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,5.8992603,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,0,157.267,3100.211
-1907,0.78399999,0.80376274,131.45624,1.0614586,15.968254,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,6.0097685,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,0,157.267,3100.211
-1908,0.74999999,0.81141278,132.5587,1.0826746,16.52465,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,6.1167454,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,0,157.267,3100.211
-1909,0.78499999,0.81737807,133.66115,1.1027829,17.081045,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,6.2180534,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,0,157.267,3100.211
-1910,0.81899999,0.82198169,134.76361,1.121177,17.637441,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,6.3115552,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,0,157.267,3100.211
-1911,0.83599999,0.77889405,135.96943,1.1389722,17.821423,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,6.3975596,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,0,157.267,3100.211
-1912,0.87899999,0.74784844,137.17525,1.1575596,18.005405,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,6.4786614,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,0,157.267,3100.211
-1913,0.94299999,0.72297977,138.38107,1.1767464,18.189388,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,6.5561518,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,0,157.267,3100.211
-1914,0.84999999,0.71479152,139.5869,1.1962611,18.37337,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,6.6313219,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,0,157.267,3100.211
-1915,0.83799999,0.70574964,140.79272,1.2158443,18.557352,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,6.7054629,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,0,157.267,3100.211
-1916,0.90099999,0.70811648,141.99854,1.2353217,18.741334,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,6.7798659,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,0,157.267,3100.211
-1917,0.95499999,0.7111963,143.20436,1.254519,18.925316,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,6.8558222,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,0,157.267,3100.211
-1918,0.93599999,0.71430427,144.41019,1.2732618,19.109298,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,6.9346228,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,0,157.267,3100.211
-1919,0.80599999,0.71965435,145.61601,1.2913759,19.29328,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,7.0175589,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,0,157.267,3100.211
-1920,0.93199999,0.72128338,146.82183,1.3086869,19.477262,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,7.1059216,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,0,157.267,3100.211
-1921,0.80299999,0.75741661,147.86155,1.3257924,19.863884,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,7.20195,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,0,157.267,3100.211
-1922,0.84499999,0.7479409,148.90128,1.343275,20.250505,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,7.3058291,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,0,157.267,3100.211
-1923,0.96999999,0.75328819,149.941,1.3609385,20.637127,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,7.415769,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,0,157.267,3100.211
-1924,0.96299999,0.75686059,150.98072,1.3796194,21.023748,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,7.5299799,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,0,157.267,3100.211
-1925,0.97499999,0.75808855,152.02045,1.3998974,21.41037,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,7.6466719,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,0,157.267,3100.211
-1926,0.98299999,0.76148327,153.06017,1.4211909,21.796991,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,7.7640552,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,0,157.267,3100.211
-1927,1.062,0.79718283,154.09989,1.4429184,22.183613,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,7.8803399,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,0,157.267,3100.211
-1928,1.065,0.79967141,155.13962,1.4644982,22.570234,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,7.9937361,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,0,157.267,3100.211
-1929,1.145,0.82422601,156.17934,1.4853488,22.956856,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,8.102454,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,0,157.267,3100.211
-1930,1.053,0.89587975,157.21906,1.5048887,23.343477,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,8.2047038,1.6637375,0.23563239,0,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,0,157.267,3100.211
-1931,0.93999999,0.90334082,158.34545,1.5226236,23.754956,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,8.298548,1.7507764,0.24803412,0,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,0,157.267,3100.211
-1932,0.84699999,0.81222597,159.47183,1.5385172,24.166434,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,8.3849848,1.8423953,0.26108852,0,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,0,157.267,3100.211
-1933,0.89299999,0.80858849,160.59821,1.5526746,24.577913,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,8.4666283,1.9388369,0.27483004,0,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,0,157.267,3100.211
-1934,0.97299999,0.79686256,161.7246,1.5653127,24.989392,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,8.5460922,2.0403528,0.28929476,0,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,0,157.267,3100.211
-1935,1.027,0.79471575,162.85098,1.5771213,25.40087,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,8.6259906,2.1472124,0.30452082,0,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,0,157.267,3100.211
-1936,1.13,0.80129993,163.97736,1.5889151,25.812349,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,8.7089373,2.2596977,0.32054821,0,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,0,157.267,3100.211
-1937,1.209,0.77969902,165.10375,1.6015088,26.223828,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,8.7975462,2.3781004,0.33741917,0,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,0,157.267,3100.211
-1938,1.142,0.78188222,166.23013,1.615717,26.635306,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,8.8944313,2.5027381,0.35517808,0,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,0,157.267,3100.211
-1939,1.192,0.77944376,167.35651,1.6323545,27.046785,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,9.0022064,2.6339328,0.37387169,0,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,0,157.267,3100.211
-1940,1.299,0.76683237,168.4829,1.6522358,27.458263,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,9.1234856,2.7720335,0.39354912,0,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,0,157.267,3100.211
-1941,1.334,0.75036458,170.03046,1.7002044,27.840442,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,9.2653861,2.9174066,0.41426223,0,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,0,157.267,3100.211
-1942,1.342,0.7690497,171.57803,1.7938613,28.22262,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,9.4321173,3.0704314,0.39468287,0,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,0,157.267,3100.211
-1943,1.391,0.7637656,173.12559,1.9231582,28.604799,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,9.6219311,3.2315097,0.37832187,0,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,0,157.267,3100.211
-1944,1.383,0.76839864,174.67315,2.0866797,28.986977,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,9.8330792,3.4010636,0.3640764,0,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,0,157.267,3100.211
-1945,1.16,0.76914739,176.22072,2.280402,29.369156,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,10.063814,3.579544,0.35194679,0,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,0,157.267,3100.211
-1946,1.238,0.84214892,177.76828,2.4903635,29.751334,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,10.312386,3.7674167,0.34193311,0,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,0,157.267,3100.211
-1947,1.392,0.87017994,179.31584,2.7026031,30.133513,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,10.577048,3.9651774,0.33403572,0,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,0,157.267,3100.211
-1948,1.469,0.87513044,180.86341,2.9031595,30.515691,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,10.856052,4.1733472,0.32825472,0,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,0,157.267,3100.211
-1949,1.419,0.88212641,182.41097,3.0780722,30.897869,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,11.14765,4.3924702,0.32459037,0,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,0,157.267,3100.211
-1950,1.63,0.89233465,183.95853,3.2133815,31.280048,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,11.450093,4.62313,0.32304286,0,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,0,157.267,3100.211
-1951,1.768,1.0885201,189.11003,3.3186021,32.866948,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,11.784634,4.865916,0.32361242,0,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,0,157.267,3100.211
-1952,1.796,1.1096378,194.26153,3.4111061,34.453849,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,12.1691,5.121479,0.32629927,0,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,0,157.927,3117.785
-1953,1.841,1.1045171,199.41303,3.4887221,36.040749,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,12.596604,5.3904959,0.3311036,0,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,0,158.604,3137.148
-1954,1.865,1.1521416,204.56453,3.5543489,37.62765,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,13.060259,5.6736692,0.33802563,0,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,0,159.3,3158.216
-1955,2.043,1.1911855,209.71603,3.614111,39.21455,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,13.553179,5.9717491,0.34706557,0,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,0,160.014,3180.749
-1956,2.178,1.2446883,214.86753,3.6706801,40.801451,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,14.068475,6.2855162,0.35822365,0,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,0,160.748,3204.498
-1957,2.27,1.2718718,220.01902,3.7267318,42.388351,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,14.599262,6.6157969,0.37150001,0,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,0,161.502,3229.071
-1958,2.33,1.3195817,225.17052,3.7849451,43.975252,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,15.138652,6.9634615,0.38689499,0,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,0,162.277,3254.039
-1959,2.462,1.2035957,230.32202,3.8480013,45.562152,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,15.679758,7.3294266,0.40440867,0,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,0,163.073,3278.967
-1960,2.577,1.1922833,235.47352,3.9185827,47.149053,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,16.215694,7.7146508,0.42404135,0,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,0,163.892,3303.389
-1961,2.594,1.2443218,238.52217,4.0240052,48.77076,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,16.759267,8.1201607,0.4457932,0,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,0,164.735,3326.864
-1962,2.7,1.2355717,241.57083,4.1836477,50.392468,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,17.326046,8.5470132,0.46966444,0,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,0,165.601,3349.069
-1963,2.848,1.2442947,244.61948,4.3883117,52.014176,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,17.913289,14.984956,0.49565531,0,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.001,0.007,166.493,3369.713
-1964,3.008,1.2515879,247.66813,4.6374693,53.635884,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,18.518251,13.488099,0.52376596,0,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.002,0.003,0.014,167.41,3388.628
-1965,3.145,1.2642558,250.71679,4.8968181,55.257592,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,19.138189,13.488369,0.55399667,0,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.005,0.028,168.355,3405.698
-1966,3.305,1.2936968,253.76544,5.195583,56.8793,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,19.770361,13.488639,0.58634761,0,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.008,0.048,169.328,3420.923
-1967,3.411,1.2976254,256.81409,5.457478,58.501008,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,20.412021,13.488909,0.62081899,0,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.013,0.075,170.329,3434.335
-1968,3.588,1.2352028,259.86274,5.619744,60.122716,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,21.060427,13.48918,0.65741104,0,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.019,0.016,0.109,171.36,3446.065
-1969,3.8,1.2383879,262.9114,5.784831,61.744424,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,21.712835,13.489449,0.69612398,0,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.026,0.024,0.15,172.423,3456.224
-1970,4.076,1.1971129,265.96005,5.9368752,63.366132,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,22.366503,11.992564,0.73695798,0,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.035,0.043,0.197,173.518,3464.95
-1971,4.231,1.0708913,270.02505,5.6049759,63.545863,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,23.042459,13.489967,0.7799133,0,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.044,0.1,0.252,174.646,3472.409
-1972,4.399,1.0470621,274.09004,5.9181309,63.725594,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,23.75562,13.490244,0.82499011,0,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.055,0.17,0.313,175.809,3478.741
-1973,4.6349999,1.0330987,278.15504,6.0449043,63.905326,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,24.494072,13.490523,0.87218868,0,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.067,0.277,0.391,177.007,3484.114
-1974,4.644,1.0387371,282.22003,5.9406002,64.085057,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,25.2459,11.993645,0.9215092,0,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.08,0.372,0.468,178.243,3488.632
-1975,4.615,1.0315876,286.28503,6.1409693,64.264788,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,25.999188,13.49105,0.97295172,0,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.095,0.524,0.544,179.517,3492.425
-1976,4.883,1.0906077,290.35002,6.3042588,64.444519,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,26.742024,13.491328,1.0265167,0,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.11,0.783,0.621,180.83,3495.619
-1977,5.029,1.0939874,294.41502,6.534405,64.624251,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,27.462492,11.994452,1.0822044,0,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,0.127,1.006,0.697,182.185,3498.281
-1978,5.105,1.09037,298.48002,6.6193729,64.803982,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,28.148677,13.491857,1.1400146,0,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,0.145,1.253,0.774,183.581,3500.505
-1979,5.387,1.0647127,302.54501,7.007773,64.983713,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,28.788664,11.994981,1.1999481,0,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,0.161,1.548,0.85,185.022,3502.36
-1980,5.332,1.0252096,306.61001,7.0613923,65.163444,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,29.37054,13.492387,1.2620043,0,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,0.185,1.805,0.927,186.506,3503.915
-1981,5.168,1.0448621,310.01251,6.8417522,65.043883,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,29.931853,11.995499,1.3261846,0,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,0.206,2.139,1.003,188.038,3505.193
-1982,5.127,1.1904055,313.415,7.1189858,64.924321,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,30.508393,13.492893,1.392488,0,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,0.229,2.645,1.105,189.616,3506.255
-1983,5.11,1.2255201,316.8175,7.2168971,64.80476,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,31.085608,11.996004,1.4609153,0,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,0.249,2.98,1.183,191.243,3507.154
-1984,5.29,1.2600833,320.22,7.0481314,64.685199,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,31.648945,11.996242,1.5314669,0,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,0.269,3.475,1.262,192.92,3507.882
-1985,5.444,1.2753449,323.6225,7.0169243,64.565637,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,32.183851,11.99648,1.6041426,0,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,0.289,3.997,1.355,194.648,3508.496
-1986,5.61,1.2872023,327.025,7.0704917,64.446076,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,32.675774,13.493874,1.678943,0,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,0.309,4.579,1.434,196.427,3508.999
-1987,5.753,1.2940086,330.42749,7.4616728,64.326514,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,33.110161,11.996986,1.7558675,0,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,0.329,5.109,1.504,198.259,3509.425
-1988,5.964,1.3167248,333.82999,7.2025077,64.206953,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,33.472458,11.997224,1.8349176,0,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,0.349,5.696,1.728,200.146,3509.774
-1989,6.089,1.3236436,337.23249,7.3310397,64.087391,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,33.748114,11.997462,1.9160924,0,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,0.369,5.482,1.73,202.087,3510.061
-1990,6.144,1.3194833,340.63499,7.5856812,63.96783,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,33.922575,11.997683,2.0735678,0,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,0.389,5.119,1.73,204.082,3510.299
-1991,6.235,1.3809799,336.59218,7.4023631,62.955167,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,34.026024,11.997905,2.3729101,0,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,0.409,4.094,1.735,206.133,3510.501
-1992,6.118,1.3035304,332.54937,7.7989323,61.942504,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,34.113528,11.998111,2.3731469,0,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,0.429,2.74,1.715,208.24,3510.656
-1993,6.124,1.2981006,328.50656,7.3131034,60.929841,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,34.207861,11.998354,2.3733837,0,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,0.509,3.344,1.7,210.402,3510.801
-1994,6.242,1.2895956,324.46375,7.5072841,59.917178,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,34.331799,11.998587,2.3736205,0,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,0.589,4.75,1.68,212.619,3510.907
-1995,6.372,1.2750104,320.42094,7.6191035,58.904515,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,34.508115,10.501674,2.3738573,0,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,0.669,3.991,1.3,200.199,3511.005
-1996,6.51,1.2511025,316.37814,7.6520638,57.891852,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,34.960533,11.999071,2.3740941,0,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,0.729,2.691,0.85,201.834,3511.082
-1997,6.619,1.2181397,312.33533,7.9097526,56.879189,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,35.833672,11.999322,2.3743309,0,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,0.789,2.594,0.7,207.696,3511.082
-1998,6.588,1.2148431,308.29252,7.8957263,55.866526,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,37.03165,11.999575,2.3745677,0,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,0.607,2.491,0.71,206.946,3511.082
-1999,6.569,1.1827892,304.24971,7.5269849,54.853863,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,38.458587,10.502692,2.3748045,0,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,0.467,2.39,0.631,195.938,3511.082
-2000,6.735,1.1488,300.2069,7.4566,53.8412,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,40.0186,12.0001,2.3749,0.4624,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,0.328,2.295,0.562,186.206,3511.082
-2001,6.8959,1.132,303.4092,7.503,54.4191,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,40.3916,11.925,2.4345,0.4651,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,0.282,2.209,0.5,181.525,3511.082
-2002,6.949,1.2317,306.5788,7.5487,54.9961,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,40.7646,11.8481,2.4915,0.4058,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,0.235,2.131,0.445,181.887,3511.082
-2003,7.286,1.2257,309.7164,7.5942,55.5716,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,41.1378,11.7693,2.5463,0.3939,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,0.189,2.057,0.396,177.539,3511.082
-2004,7.6719,1.2429,312.824,7.6394,56.1461,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,41.5107,11.6885,2.599,0.4062,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,0.189,1.987,0.353,174.26,3511.082
-2005,7.971,1.1955,315.9027,7.6841,56.7195,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,41.8837,11.6059,2.6494,0.4358,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,0.189,1.92,0.314,168.841,3511.082
-2006,8.081,1.1319,317.6624,7.7838,56.6405,56640.5,1057.4015,215.3798,38.6291,8.228,36.3475,42.2514,13.735,2.6399,0.4426,10.5529,12.3831,3.8802,12.649,121.0746,10.9216,5.6761,34.1569,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,0.049,1.834,0.279,167.857,3511.082
-2007,8.1899,1.0683,319.4203,7.8838,56.5578,56557.8,1053.2589,215.2944,38.4618,8.2049,36.3034,42.6192,15.8599,2.6308,0.4491,10.2946,13.773,4.5245,11.5302,129.6223,9.3647,6.4623,41.4253,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,0.049,1.752,0.249,167.857,3511.082
-2008,8.2971667,1.0046667,321.17513,7.9843333,56.4678,56467.8,1049.0791,215.20513,38.292033,8.1816667,36.259433,42.9869,17.976533,2.6214333,0.45493333,10.037133,15.1627,5.1676,10.393733,135.18193,7.7477,7.2483,48.693733,6.9909667,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,0.049,1.675,0.221,167.857,3511.082
-2009,8.4044333,0.94103333,322.92997,8.0848667,56.3778,56377.8,1044.8993,215.11587,38.122267,8.1584333,36.215467,43.3546,20.093167,2.6120667,0.46076667,9.7796667,16.5524,5.8107,9.2572667,140.74157,6.1307,8.0343,55.962167,7.3806333,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,0.049,1.601,0.197,167.857,3511.082
-2010,8.5117,0.8774,324.6848,8.1854,56.2878,56287.8,1040.7195,215.0266,37.9525,8.1352,36.1715,43.7223,22.2098,2.6027,0.4666,9.5222,17.9421,6.4538,8.1208,146.3012,4.5137,8.8203,63.2306,7.7703,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,0,1.521,0.175,167.857,3511.082
-2011,8.55557,0.83029,323.38128,8.15982,55.63774,55637.74,1039.1875,214.89234,37.71422,8.09546,36.16182,43.63166,22.27617,2.60843,0.43839,8.68522,22.21208,6.53096,8.19765,147.06015,4.61769,8.08983,63.4781,7.93581,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,0,1.445,0.156,167.857,3511.082
-2012,8.59944,0.78318,322.07776,8.13424,54.98768,54987.68,1037.6555,214.75808,37.47594,8.05572,36.15214,43.54102,22.34254,2.61416,0.41018,7.84824,26.48206,6.60812,8.2745,147.8191,4.72168,7.35936,63.7256,8.10132,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,0,1.373,0.139,167.857,3511.082
-2013,8.64331,0.73607,320.77424,8.10866,54.33762,54337.62,1036.1234,214.62382,37.23766,8.01598,36.14246,43.45038,22.40891,2.61989,0.38197,7.01126,30.75204,6.68528,8.35135,148.57805,4.82567,6.62889,63.9731,8.26683,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,0,1.304,0.124,167.857,3511.082
-2014,8.68718,0.68896,319.47072,8.08308,53.68756,53687.56,1034.5914,214.48956,36.99938,7.97624,36.13278,43.35974,22.47528,2.62562,0.35376,6.17428,35.02202,6.76244,8.4282,149.337,4.92966,5.89842,64.2206,8.43234,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,0,1.239,0.11,167.857,3511.082
-2015,8.73105,0.64185,318.1672,8.0575,53.0375,53037.5,1033.0594,214.3553,36.7611,7.9365,36.1231,43.2691,22.54165,2.63135,0.32555,5.3373,39.292,6.8396,8.50505,150.09595,5.03365,5.16795,64.4681,8.59785,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,0,1.177,0.098,155.925,3511.082
-2016,8.77492,0.59474,316.86368,8.03192,52.38744,52387.44,1031.5274,214.22104,36.52282,7.89676,36.11342,43.17846,22.60802,2.63708,0.29734,4.50032,43.56198,6.91676,8.5819,150.8549,5.13764,4.43748,64.7156,8.76336,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,0,1.118,0.087,155.925,3511.082
-2017,8.81879,0.54763,315.56016,8.00634,51.73738,51737.38,1029.9954,214.08678,36.28454,7.85702,36.10374,43.08782,22.67439,2.64281,0.26913,3.66334,47.83196,6.99392,8.65875,151.61385,5.24163,3.70701,64.9631,8.92887,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,0,1.062,0.078,155.925,3511.082
-2018,8.86266,0.50052,314.25664,7.98076,51.08732,51087.32,1028.4633,213.95252,36.04626,7.81728,36.09406,42.99718,22.74076,2.64854,0.24092,2.82636,52.10194,7.07108,8.7356,152.3728,5.34562,2.97654,65.2106,9.09438,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,0,1.009,0.069,155.925,3511.082
-2019,8.90653,0.45341,312.95312,7.95518,50.43726,50437.26,1026.9313,213.81826,35.80798,7.77754,36.08438,42.90654,22.80713,2.65427,0.21271,1.98938,56.37192,7.14824,8.81245,153.13175,5.44961,2.24607,65.4581,9.25989,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0,0.959,0.061,155.925,3511.082
-2020,8.9504,0.4063,311.6496,7.9296,49.7872,49787.2,1025.3993,213.684,35.5697,7.7378,36.0747,42.8159,22.8735,2.66,0.1845,1.1524,60.6419,7.2254,8.8893,153.8907,5.5536,1.5156,65.7056,9.4254,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0,0.911,0.055,155.925,3511.082
-2021,9.05487,0.30994,313.11564,8.01843,48.94131,48941.31,1025.732,213.95296,35.35512,7.71469,36.05673,43.17282,22.9386,2.66493,0.17723,1.1063,61.78125,7.31538,8.94218,154.41356,5.60414,1.43416,65.86791,9.44312,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0,0.865,0.049,155.925,3511.082
-2022,9.15934,0.21358,314.58168,8.10726,48.09542,48095.42,1026.0648,214.22192,35.14054,7.69158,36.03876,43.52974,23.0037,2.66986,0.16996,1.0602,62.9206,7.40536,8.99506,154.93642,5.65468,1.35272,66.03022,9.46084,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0,0.822,0.043,155.925,3511.082
-2023,9.26381,0.11722,316.04772,8.19609,47.24953,47249.53,1026.3975,214.49088,34.92596,7.66847,36.02079,43.88666,23.0688,2.67479,0.16269,1.0141,64.05995,7.49534,9.04794,155.45928,5.70522,1.27128,66.19253,9.47856,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0,0.781,0.039,155.925,3511.082
-2024,9.36828,0.02086,317.51376,8.28492,46.40364,46403.64,1026.7303,214.75984,34.71138,7.64536,36.00282,44.24358,23.1339,2.67972,0.15542,0.968,65.1993,7.58532,9.10082,155.98214,5.75576,1.18984,66.35484,9.49628,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0,0.742,0.034,155.925,3511.082
-2025,9.47275,-0.0755,318.9798,8.37375,45.55775,45557.75,1027.063,215.0288,34.4968,7.62225,35.98485,44.6005,23.199,2.68465,0.14815,0.9219,66.33865,7.6753,9.1537,156.505,5.8063,1.1084,66.51715,9.514,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0,0.705,0.031,155.925,3511.082
-2026,9.57722,-0.17186,320.44584,8.46258,44.71186,44711.86,1027.3957,215.29776,34.28222,7.59914,35.96688,44.95742,23.2641,2.68958,0.14088,0.8758,67.478,7.76528,9.20658,157.02786,5.85684,1.02696,66.67946,9.53172,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0,0.669,0.027,155.925,3511.082
-2027,9.68169,-0.26822,321.91188,8.55141,43.86597,43865.97,1027.7285,215.56672,34.06764,7.57603,35.94891,45.31434,23.3292,2.69451,0.13361,0.8297,68.61735,7.85526,9.25946,157.55072,5.90738,0.94552,66.84177,9.54944,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0,0.636,0.024,155.925,3511.082
-2028,9.78616,-0.36458,323.37792,8.64024,43.02008,43020.08,1028.0612,215.83568,33.85306,7.55292,35.93094,45.67126,23.3943,2.69944,0.12634,0.7836,69.7567,7.94524,9.31234,158.07358,5.95792,0.86408,67.00408,9.56716,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0,0.604,0.022,155.925,3511.082
-2029,9.89063,-0.46094,324.84396,8.72907,42.17419,42174.19,1028.394,216.10464,33.63848,7.52981,35.91297,46.02818,23.4594,2.70437,0.11907,0.7375,70.89605,8.03522,9.36522,158.59644,6.00846,0.78264,67.16639,9.58488,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0,0.574,0.019,155.925,3511.082
-2030,9.9951,-0.5573,326.31,8.8179,41.3283,41328.3,1028.7267,216.3736,33.4239,7.5067,35.895,46.3851,23.5245,2.7093,0.1118,0.6914,72.0354,8.1252,9.4181,159.1193,6.059,0.7012,67.3287,9.6026,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0,0.545,0.017,155.925,3511.082
-2031,10.15102,-0.57298,328.09167,8.90894,41.45623,41456.23,1030.971,217.00384,33.37117,7.4966,35.9507,46.75006,23.55538,2.70139,0.1119,0.66359,72.90303,8.24913,9.47689,159.57023,6.11699,0.70177,67.44688,9.61107,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0,0.518,0.015,155.925,3511.082
-2032,10.30694,-0.58866,329.87334,8.99998,41.58416,41584.16,1033.2153,217.63408,33.31844,7.4865,36.0064,47.11502,23.58626,2.69348,0.112,0.63578,73.77066,8.37306,9.53568,160.02116,6.17498,0.70234,67.56506,9.61954,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0,0.492,0.013,155.925,3511.082
-2033,10.46286,-0.60434,331.65501,9.09102,41.71209,41712.09,1035.4597,218.26432,33.26571,7.4764,36.0621,47.47998,23.61714,2.68557,0.1121,0.60797,74.63829,8.49699,9.59447,160.47209,6.23297,0.70291,67.68324,9.62801,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0,0.467,0.012,155.925,3511.082
-2034,10.61878,-0.62002,333.43668,9.18206,41.84002,41840.02,1037.704,218.89456,33.21298,7.4663,36.1178,47.84494,23.64802,2.67766,0.1122,0.58016,75.50592,8.62092,9.65326,160.92302,6.29096,0.70348,67.80142,9.63648,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0,0.444,0.011,155.925,3511.082
-2035,10.7747,-0.6357,335.21835,9.2731,41.96795,41967.95,1039.9483,219.5248,33.16025,7.4562,36.1735,48.2099,23.6789,2.66975,0.1123,0.55235,76.37355,8.74485,9.71205,161.37395,6.34895,0.70405,67.9196,9.64495,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0,0.422,0.01,155.925,3511.082
-2036,10.93062,-0.65138,337.00002,9.36414,42.09588,42095.88,1042.1926,220.15504,33.10752,7.4461,36.2292,48.57486,23.70978,2.66184,0.1124,0.52454,77.24118,8.86878,9.77084,161.82488,6.40694,0.70462,68.03778,9.65342,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0,0.401,0.008,155.925,3511.082
-2037,11.08654,-0.66706,338.78169,9.45518,42.22381,42223.81,1044.4369,220.78528,33.05479,7.436,36.2849,48.93982,23.74066,2.65393,0.1125,0.49673,78.10881,8.99271,9.82963,162.27581,6.46493,0.70519,68.15596,9.66189,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0,0.381,0.008,155.925,3511.082
-2038,11.24246,-0.68274,340.56336,9.54622,42.35174,42351.74,1046.6813,221.41552,33.00206,7.4259,36.3406,49.30478,23.77154,2.64602,0.1126,0.46892,78.97644,9.11664,9.88842,162.72674,6.52292,0.70576,68.27414,9.67036,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0,0.362,0.007,155.925,3511.082
-2039,11.39838,-0.69842,342.34503,9.63726,42.47967,42479.67,1048.9256,222.04576,32.94933,7.4158,36.3963,49.66974,23.80242,2.63811,0.1127,0.44111,79.84407,9.24057,9.94721,163.17767,6.58091,0.70633,68.39232,9.67883,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0,0.344,0.006,155.925,3511.082
-2040,11.5543,-0.7141,344.1267,9.7283,42.6076,42607.6,1051.1699,222.676,32.8966,7.4057,36.452,50.0347,23.8333,2.6302,0.1128,0.4133,80.7117,9.3645,10.006,163.6286,6.6389,0.7069,68.5105,9.6873,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0,0.326,0.005,155.925,3511.082
-2041,11.70325,-0.68907,345.22016,9.80918,42.0652,42065.2,1049.4931,222.44617,32.65711,7.37374,36.47072,50.3455,23.82125,2.6223,0.11238,0.3966,80.10127,9.53752,10.04389,163.97624,6.68694,0.65691,68.554,9.69652,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0,0.31,0.005,155.925,3511.082
-2042,11.8522,-0.66404,346.31362,9.89006,41.5228,41522.8,1047.8163,222.21634,32.41762,7.34178,36.48944,50.6563,23.8092,2.6144,0.11196,0.3799,79.49084,9.71054,10.08178,164.32388,6.73498,0.60692,68.5975,9.70574,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0,0.295,0.004,155.925,3511.082
-2043,12.00115,-0.63901,347.40708,9.97094,40.9804,40980.4,1046.1395,221.98651,32.17813,7.30982,36.50816,50.9671,23.79715,2.6065,0.11154,0.3632,78.88041,9.88356,10.11967,164.67152,6.78302,0.55693,68.641,9.71496,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0,0.28,0.004,155.925,3511.082
-2044,12.1501,-0.61398,348.50054,10.05182,40.438,40438,1044.4627,221.75668,31.93864,7.27786,36.52688,51.2779,23.7851,2.5986,0.11112,0.3465,78.26998,10.05658,10.15756,165.01916,6.83106,0.50694,68.6845,9.72418,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0,0.266,0.003,155.925,3511.082
-2045,12.29905,-0.58895,349.594,10.1327,39.8956,39895.6,1042.7859,221.52685,31.69915,7.2459,36.5456,51.5887,23.77305,2.5907,0.1107,0.3298,77.65955,10.2296,10.19545,165.3668,6.8791,0.45695,68.728,9.7334,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0,0.253,0.003,155.925,3511.082
-2046,12.448,-0.56392,350.68746,10.21358,39.3532,39353.2,1041.1092,221.29702,31.45966,7.21394,36.56432,51.8995,23.761,2.5828,0.11028,0.3131,77.04912,10.40262,10.23334,165.71444,6.92714,0.40696,68.7715,9.74262,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0,0.24,0.003,155.925,3511.082
-2047,12.59695,-0.53889,351.78092,10.29446,38.8108,38810.8,1039.4324,221.06719,31.22017,7.18198,36.58304,52.2103,23.74895,2.5749,0.10986,0.2964,76.43869,10.57564,10.27123,166.06208,6.97518,0.35697,68.815,9.75184,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0,0.228,0.002,155.925,3511.082
-2048,12.7459,-0.51386,352.87438,10.37534,38.2684,38268.4,1037.7556,220.83736,30.98068,7.15002,36.60176,52.5211,23.7369,2.567,0.10944,0.2797,75.82826,10.74866,10.30912,166.40972,7.02322,0.30698,68.8585,9.76106,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0,0.217,0.002,155.925,3511.082
-2049,12.89485,-0.48883,353.96784,10.45622,37.726,37726,1036.0788,220.60753,30.74119,7.11806,36.62048,52.8319,23.72485,2.5591,0.10902,0.263,75.21783,10.92168,10.34701,166.75736,7.07126,0.25699,68.902,9.77028,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0,0.206,0.002,155.925,3511.082
-2050,13.0438,-0.4638,355.0613,10.5371,37.1836,37183.6,1034.402,220.3777,30.5017,7.0861,36.6392,53.1427,23.7128,2.5512,0.1086,0.2463,74.6074,11.0947,10.3849,167.105,7.1193,0.207,68.9455,9.7795,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0,0.195,0.002,155.925,3511.082
-2051,13.22186,-0.44326,355.94998,10.6195,36.95717,36957.17,1030.5732,219.75002,30.28262,7.02414,36.54813,53.50663,23.71405,2.54411,0.10848,0.23543,75.55522,11.0965,10.44021,167.59135,7.18313,0.1948,69.0534,9.79437,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0,0.186,0.001,155.925,3511.082
-2052,13.39992,-0.42272,356.83866,10.7019,36.73074,36730.74,1026.7444,219.12234,30.06354,6.96218,36.45706,53.87056,23.7153,2.53702,0.10836,0.22456,76.50304,11.0983,10.49552,168.0777,7.24696,0.1826,69.1613,9.80924,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0,0.176,0.001,155.925,3511.082
-2053,13.57798,-0.40218,357.72734,10.7843,36.50431,36504.31,1022.9156,218.49466,29.84446,6.90022,36.36599,54.23449,23.71655,2.52993,0.10824,0.21369,77.45086,11.1001,10.55083,168.56405,7.31079,0.1704,69.2692,9.82411,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0,0.168,0.001,155.925,3511.082
-2054,13.75604,-0.38164,358.61602,10.8667,36.27788,36277.88,1019.0868,217.86698,29.62538,6.83826,36.27492,54.59842,23.7178,2.52284,0.10812,0.20282,78.39868,11.1019,10.60614,169.0504,7.37462,0.1582,69.3771,9.83898,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0,0.159,0.001,155.925,3511.082
-2055,13.9341,-0.3611,359.5047,10.9491,36.05145,36051.45,1015.258,217.2393,29.4063,6.7763,36.18385,54.96235,23.71905,2.51575,0.108,0.19195,79.3465,11.1037,10.66145,169.53675,7.43845,0.146,69.485,9.85385,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0,0.151,0.001,155.925,3511.082
-2056,14.11216,-0.34056,360.39338,11.0315,35.82502,35825.02,1011.4293,216.61162,29.18722,6.71434,36.09278,55.32628,23.7203,2.50866,0.10788,0.18108,80.29432,11.1055,10.71676,170.0231,7.50228,0.1338,69.5929,9.86872,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0,0.144,0.001,155.925,3511.082
-2057,14.29022,-0.32002,361.28206,11.1139,35.59859,35598.59,1007.6005,215.98394,28.96814,6.65238,36.00171,55.69021,23.72155,2.50157,0.10776,0.17021,81.24214,11.1073,10.77207,170.50945,7.56611,0.1216,69.7008,9.88359,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0,0.136,0.001,155.925,3511.082
-2058,14.46828,-0.29948,362.17074,11.1963,35.37216,35372.16,1003.7717,215.35626,28.74906,6.59042,35.91064,56.05414,23.7228,2.49448,0.10764,0.15934,82.18996,11.1091,10.82738,170.9958,7.62994,0.1094,69.8087,9.89846,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0,0.13,0.001,155.925,3511.082
-2059,14.64634,-0.27894,363.05942,11.2787,35.14573,35145.73,999.94289,214.72858,28.52998,6.52846,35.81957,56.41807,23.72405,2.48739,0.10752,0.14847,83.13778,11.1109,10.88269,171.48215,7.69377,0.0972,69.9166,9.91333,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0,0.123,0.001,155.925,3511.082
-2060,14.8244,-0.2584,363.9481,11.3611,34.9193,34919.3,996.1141,214.1009,28.3109,6.4665,35.7285,56.782,23.7253,2.4803,0.1074,0.1376,84.0856,11.1127,10.938,171.9685,7.7576,0.085,70.0245,9.9282,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0,0.117,0.001,155.925,3511.082
-2061,14.99256,-0.23549,363.5485,11.42811,33.65747,33657.47,990.16887,213.11653,27.85015,6.38933,35.58927,57.09359,23.69872,2.48426,0.10732,0.13115,85.06506,11.10611,10.98618,172.36387,7.81599,0.08313,70.08915,9.94365,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0,0.111,0,155.925,3511.082
-2062,15.16072,-0.21258,363.1489,11.49512,32.39564,32395.64,984.22364,212.13216,27.3894,6.31216,35.45004,57.40518,23.67214,2.48822,0.10724,0.1247,86.04452,11.09952,11.03436,172.75924,7.87438,0.08126,70.1538,9.9591,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0,0.106,0,155.925,3511.082
-2063,15.32888,-0.18967,362.7493,11.56213,31.13381,31133.81,978.27841,211.14779,26.92865,6.23499,35.31081,57.71677,23.64556,2.49218,0.10716,0.11825,87.02398,11.09293,11.08254,173.15461,7.93277,0.07939,70.21845,9.97455,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0,0.1,0,155.925,3511.082
-2064,15.49704,-0.16676,362.3497,11.62914,29.87198,29871.98,972.33318,210.16342,26.4679,6.15782,35.17158,58.02836,23.61898,2.49614,0.10708,0.1118,88.00344,11.08634,11.13072,173.54998,7.99116,0.07752,70.2831,9.99,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0,0.095,0,155.925,3511.082
-2065,15.6652,-0.14385,361.9501,11.69615,28.61015,28610.15,966.38795,209.17905,26.00715,6.08065,35.03235,58.33995,23.5924,2.5001,0.107,0.10535,88.9829,11.07975,11.1789,173.94535,8.04955,0.07565,70.34775,10.00545,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0,0.091,0,155.925,3511.082
-2066,15.83336,-0.12094,361.5505,11.76316,27.34832,27348.32,960.44272,208.19468,25.5464,6.00348,34.89312,58.65154,23.56582,2.50406,0.10692,0.0989,89.96236,11.07316,11.22708,174.34072,8.10794,0.07378,70.4124,10.0209,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0,0.086,0,155.925,3511.082
-2067,16.00152,-0.09803,361.1509,11.83017,26.08649,26086.49,954.49749,207.21031,25.08565,5.92631,34.75389,58.96313,23.53924,2.50802,0.10684,0.09245,90.94182,11.06657,11.27526,174.73609,8.16633,0.07191,70.47705,10.03635,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0,0.082,0,155.925,3511.082
-2068,16.16968,-0.07512,360.7513,11.89718,24.82466,24824.66,948.55226,206.22594,24.6249,5.84914,34.61466,59.27472,23.51266,2.51198,0.10676,0.086,91.92128,11.05998,11.32344,175.13146,8.22472,0.07004,70.5417,10.0518,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0,0.078,0,155.925,3511.082
-2069,16.33784,-0.05221,360.3517,11.96419,23.56283,23562.83,942.60703,205.24157,24.16415,5.77197,34.47543,59.58631,23.48608,2.51594,0.10668,0.07955,92.90074,11.05339,11.37162,175.52683,8.28311,0.06817,70.60635,10.06725,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0,0.074,0,155.925,3511.082
-2070,16.506,-0.0293,359.9521,12.0312,22.301,22301,936.6618,204.2572,23.7034,5.6948,34.3362,59.8979,23.4595,2.5199,0.1066,0.0731,93.8802,11.0468,11.4198,175.9222,8.3415,0.0663,70.671,10.0827,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0,0.07,0,155.925,3511.082
-2071,16.58346,-0.00196,357.94994,12.06433,21.57132,21571.32,930.29864,203.01075,23.32501,5.63556,34.23657,59.99146,23.40702,2.5018,0.10626,0.06951,94.1193,11.03777,11.45168,176.03719,8.38413,0.06477,70.60634,10.07405,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0,0.067,0,155.925,3511.082
-2072,16.66092,0.02538,355.94778,12.09746,20.84164,20841.64,923.93548,201.7643,22.94662,5.57632,34.13694,60.08502,23.35454,2.4837,0.10592,0.06592,94.3584,11.02874,11.48356,176.15218,8.42676,0.06324,70.54168,10.0654,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0,0.063,0,155.925,3511.082
-2073,16.73838,0.05272,353.94562,12.13059,20.11196,20111.96,917.57232,200.51785,22.56823,5.51708,34.03731,60.17858,23.30206,2.4656,0.10558,0.06233,94.5975,11.01971,11.51544,176.26717,8.46939,0.06171,70.47702,10.05675,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0,0.06,0,155.925,3511.082
-2074,16.81584,0.08006,351.94346,12.16372,19.38228,19382.28,911.20916,199.2714,22.18984,5.45784,33.93768,60.27214,23.24958,2.4475,0.10524,0.05874,94.8366,11.01068,11.54732,176.38216,8.51202,0.06018,70.41236,10.0481,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0,0.057,0,155.925,3511.082
-2075,16.8933,0.1074,349.9413,12.19685,18.6526,18652.6,904.846,198.02495,21.81145,5.3986,33.83805,60.3657,23.1971,2.4294,0.1049,0.05515,95.0757,11.00165,11.5792,176.49715,8.55465,0.05865,70.3477,10.03945,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0,0.054,0,155.925,3511.082
-2076,16.97076,0.13474,347.93914,12.22998,17.92292,17922.92,898.48284,196.7785,21.43306,5.33936,33.73842,60.45926,23.14462,2.4113,0.10456,0.05156,95.3148,10.99262,11.61108,176.61214,8.59728,0.05712,70.28304,10.0308,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0,0.052,0,155.925,3511.082
-2077,17.04822,0.16208,345.93698,12.26311,17.19324,17193.24,892.11968,195.53205,21.05467,5.28012,33.63879,60.55282,23.09214,2.3932,0.10422,0.04797,95.5539,10.98359,11.64296,176.72713,8.63991,0.05559,70.21838,10.02215,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0,0.049,0,155.925,3511.082
-2078,17.12568,0.18942,343.93482,12.29624,16.46356,16463.56,885.75652,194.2856,20.67628,5.22088,33.53916,60.64638,23.03966,2.3751,0.10388,0.04438,95.793,10.97456,11.67484,176.84212,8.68254,0.05406,70.15372,10.0135,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0,0.046,0,155.925,3511.082
-2079,17.20314,0.21676,341.93266,12.32937,15.73388,15733.88,879.39336,193.03915,20.29789,5.16164,33.43953,60.73994,22.98718,2.357,0.10354,0.04079,96.0321,10.96553,11.70672,176.95711,8.72517,0.05253,70.08906,10.00485,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0,0.044,0,155.925,3511.082
-2080,17.2806,0.2441,339.9305,12.3625,15.0042,15004.2,873.0302,191.7927,19.9195,5.1024,33.3399,60.8335,22.9347,2.3389,0.1032,0.0372,96.2712,10.9565,11.7386,177.0721,8.7678,0.051,70.0244,9.9962,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0,0.042,0,155.925,3511.082
-2081,16.98385,0.24394,332.93877,12.36222,14.76252,14762.52,869.00559,190.80261,19.72493,5.0587,33.27324,60.99709,22.83527,2.33197,0.1026,0.03348,95.76444,10.9361,11.74268,176.82146,8.79093,0.04968,69.79775,9.98408,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0,0.04,0,155.925,3511.082
-2082,16.6871,0.24378,325.94704,12.36194,14.52084,14520.84,864.98098,189.81252,19.53036,5.015,33.20658,61.16068,22.73584,2.32504,0.102,0.02976,95.25768,10.9157,11.74676,176.57082,8.81406,0.04836,69.5711,9.97196,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0,0.038,0,155.925,3511.082
-2083,16.39035,0.24362,318.95531,12.36166,14.27916,14279.16,860.95637,188.82243,19.33579,4.9713,33.13992,61.32427,22.63641,2.31811,0.1014,0.02604,94.75092,10.8953,11.75084,176.32018,8.83719,0.04704,69.34445,9.95984,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0,0.036,0,155.925,3511.082
-2084,16.0936,0.24346,311.96358,12.36138,14.03748,14037.48,856.93176,187.83234,19.14122,4.9276,33.07326,61.48786,22.53698,2.31118,0.1008,0.02232,94.24416,10.8749,11.75492,176.06954,8.86032,0.04572,69.1178,9.94772,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0,0.034,0,155.925,3511.082
-2085,15.79685,0.2433,304.97185,12.3611,13.7958,13795.8,852.90715,186.84225,18.94665,4.8839,33.0066,61.65145,22.43755,2.30425,0.1002,0.0186,93.7374,10.8545,11.759,175.8189,8.88345,0.0444,68.89115,9.9356,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0,0.032,0,155.925,3511.082
-2086,15.5001,0.24314,297.98012,12.36082,13.55412,13554.12,848.88254,185.85216,18.75208,4.8402,32.93994,61.81504,22.33812,2.29732,0.0996,0.01488,93.23064,10.8341,11.76308,175.56826,8.90658,0.04308,68.6645,9.92348,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0,0.031,0,155.925,3511.082
-2087,15.20335,0.24298,290.98839,12.36054,13.31244,13312.44,844.85793,184.86207,18.55751,4.7965,32.87328,61.97863,22.23869,2.29039,0.099,0.01116,92.72388,10.8137,11.76716,175.31762,8.92971,0.04176,68.43785,9.91136,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0,0.029,0,155.925,3511.082
-2088,14.9066,0.24282,283.99666,12.36026,13.07076,13070.76,840.83332,183.87198,18.36294,4.7528,32.80662,62.14222,22.13926,2.28346,0.0984,0.00744,92.21712,10.7933,11.77124,175.06698,8.95284,0.04044,68.2112,9.89924,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0,0.028,0,155.925,3511.082
-2089,14.60985,0.24266,277.00493,12.35998,12.82908,12829.08,836.80871,182.88189,18.16837,4.7091,32.73996,62.30581,22.03983,2.27653,0.0978,0.00372,91.71036,10.7729,11.77532,174.81634,8.97597,0.03912,67.98455,9.88712,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0,0.026,0,155.925,3511.082
-2090,14.3131,0.2425,270.0132,12.3597,12.5874,12587.4,832.7841,181.8918,17.9738,4.6654,32.6733,62.4694,21.9404,2.2696,0.0972,0,91.2036,10.7525,11.7794,174.5657,8.9991,0.0378,67.7579,9.875,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0,0.025,0,155.925,3511.082
-2091,14.25712,0.23639,267.60942,12.35073,12.37253,12372.53,828.72826,180.91739,17.78501,4.63501,32.62249,62.38664,21.82626,2.25281,0.09635,0,90.20593,10.7178,11.77139,174.15911,9.00912,0.03676,67.48827,9.83722,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0,0.024,0,155.925,3511.082
-2092,14.20114,0.23028,265.20564,12.34176,12.15766,12157.66,824.67242,179.94298,17.59622,4.60462,32.57168,62.30388,21.71212,2.23602,0.0955,0,89.20826,10.6831,11.76338,173.75252,9.01914,0.03572,67.21864,9.79944,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0,0.023,0,155.925,3511.082
-2093,14.14516,0.22417,262.80186,12.33279,11.94279,11942.79,820.61658,178.96857,17.40743,4.57423,32.52087,62.22112,21.59798,2.21923,0.09465,0,88.21059,10.6484,11.75537,173.34593,9.02916,0.03468,66.94901,9.76166,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0,0.022,0,155.925,3511.082
-2094,14.08918,0.21806,260.39808,12.32382,11.72792,11727.92,816.56074,177.99416,17.21864,4.54384,32.47006,62.13836,21.48384,2.20244,0.0938,0,87.21292,10.6137,11.74736,172.93934,9.03918,0.03364,66.67938,9.72388,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0,0.02,0,155.925,3511.082
-2095,14.0332,0.21195,257.9943,12.31485,11.51305,11513.05,812.5049,177.01975,17.02985,4.51345,32.41925,62.0556,21.3697,2.18565,0.09295,0,86.21525,10.579,11.73935,172.53275,9.0492,0.0326,66.40975,9.6861,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0,0.019,0,155.925,3511.082
-2096,13.97722,0.20584,255.59052,12.30588,11.29818,11298.18,808.44906,176.04534,16.84106,4.48306,32.36844,61.97284,21.25556,2.16886,0.0921,0,85.21758,10.5443,11.73134,172.12616,9.05922,0.03156,66.14012,9.64832,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0,0.018,0,155.925,3511.082
-2097,13.92124,0.19973,253.18674,12.29691,11.08331,11083.31,804.39322,175.07093,16.65227,4.45267,32.31763,61.89008,21.14142,2.15207,0.09125,0,84.21991,10.5096,11.72333,171.71957,9.06924,0.03052,65.87049,9.61054,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0,0.018,0,155.925,3511.082
-2098,13.86526,0.19362,250.78296,12.28794,10.86844,10868.44,800.33738,174.09652,16.46348,4.42228,32.26682,61.80732,21.02728,2.13528,0.0904,0,83.22224,10.4749,11.71532,171.31298,9.07926,0.02948,65.60086,9.57276,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0,0.017,0,155.925,3511.082
-2099,13.80928,0.18751,248.37918,12.27897,10.65357,10653.57,796.28154,173.12211,16.27469,4.39189,32.21601,61.72456,20.91314,2.11849,0.08955,0,82.22457,10.4402,11.70731,170.90639,9.08928,0.02844,65.33123,9.53498,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0,0.016,0,155.925,3511.082
-2100,13.7533,0.1814,245.9754,12.27,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,20.799,2.1017,0.0887,0,81.2269,10.4055,11.6993,170.4998,9.0993,0.0274,65.0616,9.4972,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0,0.015,0,155.925,3511.082
-2101,13.548236,0.174144,245.99464,12.203604,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,20.384732,2.06044,0.087056,0,81.228628,10.406792,11.6993,170.4998,9.081312,0.0274,65.0616,9.315568,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0,0.014,0,155.925,3511.082
-2102,13.343172,0.166888,246.01389,12.137208,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,19.970464,2.01918,0.085412,0,81.230356,10.408084,11.6993,170.4998,9.063324,0.0274,65.0616,9.133936,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0,0.014,0,155.925,3511.082
-2103,13.138108,0.159632,246.03313,12.070812,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,19.556196,1.97792,0.083768,0,81.232084,10.409376,11.6993,170.4998,9.045336,0.0274,65.0616,8.952304,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0,0.013,0,155.925,3511.082
-2104,12.933044,0.152376,246.05238,12.004416,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,19.141928,1.93666,0.082124,0,81.233812,10.410668,11.6993,170.4998,9.027348,0.0274,65.0616,8.770672,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0,0.012,0,155.925,3511.082
-2105,12.72798,0.14512,246.07162,11.93802,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,18.72766,1.8954,0.08048,0,81.23554,10.41196,11.6993,170.4998,9.00936,0.0274,65.0616,8.58904,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0,0.012,0,155.925,3511.082
-2106,12.522916,0.137864,246.09086,11.871624,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,18.313392,1.85414,0.078836,0,81.237268,10.413252,11.6993,170.4998,8.991372,0.0274,65.0616,8.407408,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0,0.011,0,155.925,3511.082
-2107,12.317852,0.130608,246.11011,11.805228,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,17.899124,1.81288,0.077192,0,81.238996,10.414544,11.6993,170.4998,8.973384,0.0274,65.0616,8.225776,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0,0.011,0,155.925,3511.082
-2108,12.112788,0.123352,246.12935,11.738832,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,17.484856,1.77162,0.075548,0,81.240724,10.415836,11.6993,170.4998,8.955396,0.0274,65.0616,8.044144,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0,0.01,0,155.925,3511.082
-2109,11.907724,0.116096,246.1486,11.672436,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,17.070588,1.73036,0.073904,0,81.242452,10.417128,11.6993,170.4998,8.937408,0.0274,65.0616,7.862512,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0,0.009,0,155.925,3511.082
-2110,11.70266,0.10884,246.16784,11.60604,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,16.65632,1.6891,0.07226,0,81.24418,10.41842,11.6993,170.4998,8.91942,0.0274,65.0616,7.68088,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0,0.009,0,155.925,3511.082
-2111,11.497596,0.101584,246.18708,11.539644,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,16.242052,1.64784,0.070616,0,81.245908,10.419712,11.6993,170.4998,8.901432,0.0274,65.0616,7.499248,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0,0.009,0,155.925,3511.082
-2112,11.292532,0.094328,246.20633,11.473248,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,15.827784,1.60658,0.068972,0,81.247636,10.421004,11.6993,170.4998,8.883444,0.0274,65.0616,7.317616,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0,0.008,0,155.925,3511.082
-2113,11.087468,0.087072,246.22557,11.406852,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,15.413516,1.56532,0.067328,0,81.249364,10.422296,11.6993,170.4998,8.865456,0.0274,65.0616,7.135984,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0,0.008,0,155.925,3511.082
-2114,10.882404,0.079816,246.24482,11.340456,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,14.999248,1.52406,0.065684,0,81.251092,10.423588,11.6993,170.4998,8.847468,0.0274,65.0616,6.954352,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0,0.007,0,155.925,3511.082
-2115,10.67734,0.07256,246.26406,11.27406,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,14.58498,1.4828,0.06404,0,81.25282,10.42488,11.6993,170.4998,8.82948,0.0274,65.0616,6.77272,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0,0.007,0,155.925,3511.082
-2116,10.472276,0.065304,246.2833,11.207664,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,14.170712,1.44154,0.062396,0,81.254548,10.426172,11.6993,170.4998,8.811492,0.0274,65.0616,6.591088,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0,0.007,0,155.925,3511.082
-2117,10.267212,0.058048,246.30255,11.141268,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,13.756444,1.40028,0.060752,0,81.256276,10.427464,11.6993,170.4998,8.793504,0.0274,65.0616,6.409456,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0,0.006,0,155.925,3511.082
-2118,10.062148,0.050792,246.32179,11.074872,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,13.342176,1.35902,0.059108,0,81.258004,10.428756,11.6993,170.4998,8.775516,0.0274,65.0616,6.227824,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0,0.006,0,155.925,3511.082
-2119,9.857084,0.043536,246.34104,11.008476,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,12.927908,1.31776,0.057464,0,81.259732,10.430048,11.6993,170.4998,8.757528,0.0274,65.0616,6.046192,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0,0.006,0,155.925,3511.082
-2120,9.65202,0.03628,246.36028,10.94208,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,12.51364,1.2765,0.05582,0,81.26146,10.43134,11.6993,170.4998,8.73954,0.0274,65.0616,5.86456,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0,0.005,0,155.925,3511.082
-2121,9.446956,0.029024,246.37952,10.875684,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,12.099372,1.23524,0.054176,0,81.263188,10.432632,11.6993,170.4998,8.721552,0.0274,65.0616,5.682928,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0,0.005,0,155.925,3511.082
-2122,9.241892,0.021768,246.39877,10.809288,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,11.685104,1.19398,0.052532,0,81.264916,10.433924,11.6993,170.4998,8.703564,0.0274,65.0616,5.501296,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0,0.005,0,155.925,3511.082
-2123,9.036828,0.014512,246.41801,10.742892,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,11.270836,1.15272,0.050888,0,81.266644,10.435216,11.6993,170.4998,8.685576,0.0274,65.0616,5.319664,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0,0.005,0,155.925,3511.082
-2124,8.831764,0.007256,246.43726,10.676496,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,10.856568,1.11146,0.049244,0,81.268372,10.436508,11.6993,170.4998,8.667588,0.0274,65.0616,5.138032,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0,0.004,0,155.925,3511.082
-2125,8.6267,0,246.4565,10.6101,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,10.4423,1.0702,0.0476,0,81.2701,10.4378,11.6993,170.4998,8.6496,0.0274,65.0616,4.9564,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0,0.004,0,155.925,3511.082
-2126,8.4216348,0,246.47573,10.543696,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,10.02803,1.0289391,0.045952174,0,81.271826,10.4391,11.6993,170.4998,8.6316174,0.0274,65.0616,4.7747739,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0,0.004,0,155.925,3511.082
-2127,8.2165696,0,246.49496,10.477291,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,9.6137609,0.98767826,0.044304348,0,81.273552,10.4404,11.6993,170.4998,8.6136348,0.0274,65.0616,4.5931478,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0,0.004,0,155.925,3511.082
-2128,8.0115043,0,246.51419,10.410887,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,9.1994913,0.94641739,0.042656522,0,81.275278,10.4417,11.6993,170.4998,8.5956522,0.0274,65.0616,4.4115217,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0,0.004,0,155.925,3511.082
-2129,7.8064391,0,246.53342,10.344483,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,8.7852217,0.90515652,0.041008696,0,81.277004,10.443,11.6993,170.4998,8.5776696,0.0274,65.0616,4.2298957,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0,0.003,0,155.925,3511.082
-2130,7.6013739,0,246.55265,10.278078,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,8.3709522,0.86389565,0.03936087,0,81.27873,10.4443,11.6993,170.4998,8.559687,0.0274,65.0616,4.0482696,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0,0.003,0,155.925,3511.082
-2131,7.3963087,0,246.57188,10.211674,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,7.9566826,0.82263478,0.037713043,0,81.280457,10.4456,11.6993,170.4998,8.5417043,0.0274,65.0616,3.8666435,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0,0.003,0,155.925,3511.082
-2132,7.1912435,0,246.59111,10.14527,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,7.542413,0.78137391,0.036065217,0,81.282183,10.4469,11.6993,170.4998,8.5237217,0.0274,65.0616,3.6850174,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0,0.003,0,155.925,3511.082
-2133,6.9861783,0,246.61034,10.078865,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,7.1281435,0.74011304,0.034417391,0,81.283909,10.4482,11.6993,170.4998,8.5057391,0.0274,65.0616,3.5033913,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0,0.003,0,155.925,3511.082
-2134,6.781113,0,246.62957,10.012461,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,6.7138739,0.69885217,0.032769565,0,81.285635,10.4495,11.6993,170.4998,8.4877565,0.0274,65.0616,3.3217652,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0,0.003,0,155.925,3511.082
-2135,6.5760478,0,246.6488,9.9460565,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,6.2996043,0.6575913,0.031121739,0,81.287361,10.4508,11.6993,170.4998,8.4697739,0.0274,65.0616,3.1401391,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0,0.002,0,155.925,3511.082
-2136,6.3709826,0,246.66803,9.8796522,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,5.8853348,0.61633043,0.029473913,0,81.289087,10.4521,11.6993,170.4998,8.4517913,0.0274,65.0616,2.958513,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0,0.002,0,155.925,3511.082
-2137,6.1659174,0,246.68727,9.8132478,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,5.4710652,0.57506957,0.027826087,0,81.290813,10.4534,11.6993,170.4998,8.4338087,0.0274,65.0616,2.776887,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0,0.002,0,155.925,3511.082
-2138,5.9608522,0,246.7065,9.7468435,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,5.0567957,0.5338087,0.026178261,0,81.292539,10.4547,11.6993,170.4998,8.4158261,0.0274,65.0616,2.5952609,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0,0.002,0,155.925,3511.082
-2139,5.755787,0,246.72573,9.6804391,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,4.6425261,0.49254783,0.024530435,0,81.294265,10.456,11.6993,170.4998,8.3978435,0.0274,65.0616,2.4136348,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0,0.002,0,155.925,3511.082
-2140,5.5507217,0,246.74496,9.6140348,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,4.2282565,0.45128696,0.022882609,0,81.295991,10.4573,11.6993,170.4998,8.3798609,0.0274,65.0616,2.2320087,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0,0.002,0,155.925,3511.082
-2141,5.3456565,0,246.76419,9.5476304,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,3.813987,0.41002609,0.021234783,0,81.297717,10.4586,11.6993,170.4998,8.3618783,0.0274,65.0616,2.0503826,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0,0.002,0,155.925,3511.082
-2142,5.1405913,0,246.78342,9.4812261,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,3.3997174,0.36876522,0.019586957,0,81.299443,10.4599,11.6993,170.4998,8.3438957,0.0274,65.0616,1.8687565,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0,0.002,0,155.925,3511.082
-2143,4.9355261,0,246.80265,9.4148217,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,2.9854478,0.32750435,0.01793913,0,81.30117,10.4612,11.6993,170.4998,8.325913,0.0274,65.0616,1.6871304,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0,0.002,0,155.925,3511.082
-2144,4.7304609,0,246.82188,9.3484174,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,2.5711783,0.28624348,0.016291304,0,81.302896,10.4625,11.6993,170.4998,8.3079304,0.0274,65.0616,1.5055043,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0,0.002,0,155.925,3511.082
-2145,4.5253957,0,246.84111,9.282013,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,2.1569087,0.24498261,0.014643478,0,81.304622,10.4638,11.6993,170.4998,8.2899478,0.0274,65.0616,1.3238783,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0,0.001,0,155.925,3511.082
-2146,4.3203304,0,246.86034,9.2156087,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,1.7426391,0.20372174,0.012995652,0,81.306348,10.4651,11.6993,170.4998,8.2719652,0.0274,65.0616,1.1422522,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0,0.001,0,155.925,3511.082
-2147,4.1152652,0,246.87957,9.1492043,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,1.3283696,0.16246087,0.011347826,0,81.308074,10.4664,11.6993,170.4998,8.2539826,0.0274,65.0616,0.96062609,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0,0.001,0,155.925,3511.082
-2148,3.9102,0,246.8988,9.0828,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.9141,0.1212,0.0097,0,81.3098,10.4677,11.6993,170.4998,8.236,0.0274,65.0616,0.779,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0,0.001,0,155.925,3511.082
-2149,3.5678,0,247.6444,9.0373,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0819,0.037,0.0058,0.8262,81.3751,10.5132,11.7206,171.2635,8.1553,0.1092,65.1637,0.3953,5.888,26.472,4.838,1.2,0.17,0.154,0,0.058,0.306,0.04,0.004,0,0.175,0,155.922,3511.082
-2150,3.5062,0,247.7303,9.0391,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0819,0.037,0.0058,0.8264,81.3904,10.5152,11.7228,171.2955,8.157,0.1092,65.176,0.3953,5.888,26.473,4.838,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.949,3511.082
-2151,3.4375,0,247.7774,9.0405,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8264,81.3986,10.5162,11.7239,171.3129,8.1577,0.1092,65.1826,0.3953,5.889,26.476,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.957,3511.082
-2152,3.3717,0,247.8331,9.0411,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8265,81.4085,10.5175,11.7253,171.3336,8.1585,0.1092,65.1904,0.3953,5.889,26.478,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.964,3511.082
-2153,3.3114,0,247.8896,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8267,81.4185,10.5187,11.7267,171.3547,8.1597,0.1092,65.1983,0.3953,5.89,26.481,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.973,3511.082
-2154,3.2545,0,247.9452,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8268,81.4283,10.52,11.7282,171.3754,8.1606,0.1092,65.2063,0.3953,5.891,26.484,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.983,3511.082
-2155,3.2005,0,247.9997,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8268,81.4378,10.5215,11.7296,171.3954,8.1617,0.1092,65.2139,0.3953,5.891,26.488,4.841,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.994,3511.082
-2156,3.15264,0,248.05092,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8269,81.44686,10.52262,11.7309,171.41446,8.16262,0.10922,65.22116,0.3953,5.892,26.491,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.005,3511.082
-2157,3.10478,0,248.10214,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.827,81.45592,10.52374,11.7322,171.43352,8.16354,0.10924,65.22842,0.3953,5.893,26.495,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.018,3511.082
-2158,3.05692,0,248.15336,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8271,81.46498,10.52486,11.7335,171.45258,8.16446,0.10926,65.23568,0.3953,5.894,26.499,4.843,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.03,3511.082
-2159,3.00906,0,248.20458,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8272,81.47404,10.52598,11.7348,171.47164,8.16538,0.10928,65.24294,0.3953,5.895,26.504,4.844,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.044,3511.082
-2160,2.9612,0,248.2558,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8273,81.4831,10.5271,11.7361,171.4907,8.1663,0.1093,65.2502,0.3953,5.896,26.508,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.057,3511.082
-2161,2.92104,0,248.30274,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82738,81.49138,10.5282,11.7373,171.50814,8.16712,0.10932,65.25682,0.3953,5.897,26.512,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.071,3511.082
-2162,2.88088,0,248.34968,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82746,81.49966,10.5293,11.7385,171.52558,8.16794,0.10934,65.26344,0.3953,5.898,26.517,4.846,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.084,3511.082
-2163,2.84072,0,248.39662,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82754,81.50794,10.5304,11.7397,171.54302,8.16876,0.10936,65.27006,0.3953,5.899,26.521,4.847,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.098,3511.082
-2164,2.80056,0,248.44356,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82762,81.51622,10.5315,11.7409,171.56046,8.16958,0.10938,65.27668,0.3953,5.9,26.525,4.848,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.112,3511.082
-2165,2.7604,0,248.4905,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8277,81.5245,10.5326,11.7421,171.5779,8.1704,0.1094,65.2833,0.3953,5.901,26.53,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.127,3511.082
-2166,2.7258,0,248.53416,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82776,81.53222,10.53358,11.74322,171.59414,8.17116,0.10942,65.28948,0.3953,5.902,26.534,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.141,3511.082
-2167,2.6912,0,248.57782,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82782,81.53994,10.53456,11.74434,171.61038,8.17192,0.10944,65.29566,0.3953,5.903,26.539,4.85,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.155,3511.082
-2168,2.6566,0,248.62148,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82788,81.54766,10.53554,11.74546,171.62662,8.17268,0.10946,65.30184,0.3953,5.904,26.544,4.851,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.169,3511.082
-2169,2.622,0,248.66514,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82794,81.55538,10.53652,11.74658,171.64286,8.17344,0.10948,65.30802,0.3953,5.905,26.548,4.852,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.183,3511.082
-2170,2.5874,0,248.7088,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.828,81.5631,10.5375,11.7477,171.6591,8.1742,0.1095,65.3142,0.3953,5.906,26.553,4.853,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.198,3511.082
-2171,2.55704,0,248.74978,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08202,0.037,0.0058,0.8281,81.57034,10.53844,11.74872,171.67432,8.1749,0.1095,65.32,0.3953,5.907,26.557,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.212,3511.082
-2172,2.52668,0,248.79076,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08204,0.037,0.0058,0.8282,81.57758,10.53938,11.74974,171.68954,8.1756,0.1095,65.3258,0.3953,5.908,26.562,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.226,3511.082
-2173,2.49632,0,248.83174,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08206,0.037,0.0058,0.8283,81.58482,10.54032,11.75076,171.70476,8.1763,0.1095,65.3316,0.3953,5.909,26.566,4.855,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.24,3511.082
-2174,2.46596,0,248.87272,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08208,0.037,0.0058,0.8284,81.59206,10.54126,11.75178,171.71998,8.177,0.1095,65.3374,0.3953,5.91,26.571,4.856,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.254,3511.082
-2175,2.4356,0,248.9137,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.8285,81.5993,10.5422,11.7528,171.7352,8.1777,0.1095,65.3432,0.3953,5.911,26.575,4.857,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.268,3511.082
-2176,2.40884,0,248.95232,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82858,81.6061,10.54306,11.75378,171.74956,8.17838,0.10952,65.34866,0.3953,5.912,26.58,4.858,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.282,3511.082
-2177,2.38208,0,248.99094,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82866,81.6129,10.54392,11.75476,171.76392,8.17906,0.10954,65.35412,0.3953,5.913,26.584,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.296,3511.082
-2178,2.35532,0,249.02956,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82874,81.6197,10.54478,11.75574,171.77828,8.17974,0.10956,65.35958,0.3953,5.914,26.588,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.31,3511.082
-2179,2.32856,0,249.06818,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82882,81.6265,10.54564,11.75672,171.79264,8.18042,0.10958,65.36504,0.3953,5.915,26.593,4.86,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.324,3511.082
-2180,2.3018,0,249.1068,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.8289,81.6333,10.5465,11.7577,171.807,8.1811,0.1096,65.3705,0.3953,5.916,26.597,4.861,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.338,3511.082
-2181,2.27802,0,249.14344,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82894,81.63978,10.54736,11.75862,171.82058,8.18178,0.1096,65.37568,0.3953,5.917,26.602,4.862,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.351,3511.082
-2182,2.25424,0,249.18008,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82898,81.64626,10.54822,11.75954,171.83416,8.18246,0.1096,65.38086,0.3953,5.918,26.606,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.365,3511.082
-2183,2.23046,0,249.21672,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82902,81.65274,10.54908,11.76046,171.84774,8.18314,0.1096,65.38604,0.3953,5.919,26.61,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.379,3511.082
-2184,2.20668,0,249.25336,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82906,81.65922,10.54994,11.76138,171.86132,8.18382,0.1096,65.39122,0.3953,5.92,26.615,4.864,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.392,3511.082
-2185,2.1829,0,249.29,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.8291,81.6657,10.5508,11.7623,171.8749,8.1845,0.1096,65.3964,0.3953,5.921,26.619,4.865,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.406,3511.082
-2186,2.1617,0,249.32488,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08212,0.037,0.0058,0.82918,81.67186,10.55156,11.7632,171.88788,8.18512,0.1096,65.40132,0.3953,5.922,26.623,4.866,1.207,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.419,3511.082
-2187,2.1405,0,249.35976,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08214,0.037,0.0058,0.82926,81.67802,10.55232,11.7641,171.90086,8.18574,0.1096,65.40624,0.3953,5.923,26.627,4.866,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.432,3511.082
-2188,2.1193,0,249.39464,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08216,0.037,0.0058,0.82934,81.68418,10.55308,11.765,171.91384,8.18636,0.1096,65.41116,0.3953,5.924,26.632,4.867,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.446,3511.082
-2189,2.0981,0,249.42952,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08218,0.037,0.0058,0.82942,81.69034,10.55384,11.7659,171.92682,8.18698,0.1096,65.41608,0.3953,5.924,26.636,4.868,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.459,3511.082
-2190,2.0769,0,249.4644,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8295,81.6965,10.5546,11.7668,171.9398,8.1876,0.1096,65.421,0.3953,5.925,26.64,4.869,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.472,3511.082
-2191,2.05792,0,249.49772,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82954,81.7024,10.55538,11.76764,171.9522,8.18818,0.1096,65.42574,0.3953,5.926,26.644,4.87,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.485,3511.082
-2192,2.03894,0,249.53104,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82958,81.7083,10.55616,11.76848,171.9646,8.18876,0.1096,65.43048,0.3953,5.927,26.648,4.87,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.498,3511.082
-2193,2.01996,0,249.56436,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82962,81.7142,10.55694,11.76932,171.977,8.18934,0.1096,65.43522,0.3953,5.928,26.653,4.871,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.511,3511.082
-2194,2.00098,0,249.59768,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82966,81.7201,10.55772,11.77016,171.9894,8.18992,0.1096,65.43996,0.3953,5.929,26.657,4.872,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.524,3511.082
-2195,1.982,0,249.631,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8297,81.726,10.5585,11.771,172.0018,8.1905,0.1096,65.4447,0.3953,5.93,26.661,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.537,3511.082
-2196,1.96498,0,249.66292,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82976,81.7316,10.55924,11.77184,172.01368,8.19108,0.1096,65.44922,0.3953,5.931,26.665,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.549,3511.082
-2197,1.94796,0,249.69484,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82982,81.7372,10.55998,11.77268,172.02556,8.19166,0.1096,65.45374,0.3953,5.932,26.669,4.874,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.562,3511.082
-2198,1.93094,0,249.72676,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82988,81.7428,10.56072,11.77352,172.03744,8.19224,0.1096,65.45826,0.3953,5.933,26.673,4.875,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.575,3511.082
-2199,1.91392,0,249.75868,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82994,81.7484,10.56146,11.77436,172.04932,8.19282,0.1096,65.46278,0.3953,5.934,26.677,4.875,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.587,3511.082
-2200,1.8969,0,249.7906,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83,81.754,10.5622,11.7752,172.0612,8.1934,0.1096,65.4673,0.3953,5.934,26.681,4.876,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.6,3511.082
-2201,1.88235,0,249.82068,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83005,81.75932,10.56289,11.77597,172.07236,8.19394,0.10961,65.47155,0.3953,5.935,26.685,4.877,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.612,3511.082
-2202,1.8678,0,249.85076,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8301,81.76464,10.56358,11.77674,172.08352,8.19448,0.10962,65.4758,0.3953,5.936,26.689,4.878,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.624,3511.082
-2203,1.85325,0,249.88084,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83015,81.76996,10.56427,11.77751,172.09468,8.19502,0.10963,65.48005,0.3953,5.937,26.693,4.878,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.637,3511.082
-2204,1.8387,0,249.91092,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8302,81.77528,10.56496,11.77828,172.10584,8.19556,0.10964,65.4843,0.3953,5.938,26.696,4.879,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.649,3511.082
-2205,1.82415,0,249.941,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83025,81.7806,10.56565,11.77905,172.117,8.1961,0.10965,65.48855,0.3953,5.939,26.7,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.661,3511.082
-2206,1.8096,0,249.97108,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8303,81.78592,10.56634,11.77982,172.12816,8.19664,0.10966,65.4928,0.3953,5.94,26.704,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.673,3511.082
-2207,1.79505,0,250.00116,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83035,81.79124,10.56703,11.78059,172.13932,8.19718,0.10967,65.49705,0.3953,5.94,26.708,4.881,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.685,3511.082
-2208,1.7805,0,250.03124,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8304,81.79656,10.56772,11.78136,172.15048,8.19772,0.10968,65.5013,0.3953,5.941,26.712,4.882,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.697,3511.082
-2209,1.76595,0,250.06132,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83045,81.80188,10.56841,11.78213,172.16164,8.19826,0.10969,65.50555,0.3953,5.942,26.716,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.709,3511.082
-2210,1.7514,0,250.0914,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8305,81.8072,10.5691,11.7829,172.1728,8.1988,0.1097,65.5098,0.3953,5.943,26.719,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.721,3511.082
-2211,1.73953,0,250.11931,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08222,0.037,0.0058,0.83055,81.81212,10.56974,11.7836,172.18317,8.19928,0.1097,65.51374,0.3953,5.944,26.723,4.884,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.733,3511.082
-2212,1.72766,0,250.14722,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08224,0.037,0.0058,0.8306,81.81704,10.57038,11.7843,172.19354,8.19976,0.1097,65.51768,0.3953,5.945,26.727,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.744,3511.082
-2213,1.71579,0,250.17513,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08226,0.037,0.0058,0.83065,81.82196,10.57102,11.785,172.20391,8.20024,0.1097,65.52162,0.3953,5.946,26.731,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.756,3511.082
-2214,1.70392,0,250.20304,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08228,0.037,0.0058,0.8307,81.82688,10.57166,11.7857,172.21428,8.20072,0.1097,65.52556,0.3953,5.946,26.734,4.886,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.768,3511.082
-2215,1.69205,0,250.23095,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0823,0.037,0.0058,0.83075,81.8318,10.5723,11.7864,172.22465,8.2012,0.1097,65.5295,0.3953,5.947,26.738,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.779,3511.082
-2216,1.68018,0,250.25886,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08232,0.037,0.0058,0.8308,81.83672,10.57294,11.7871,172.23502,8.20168,0.1097,65.53344,0.3953,5.948,26.742,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.791,3511.082
-2217,1.66831,0,250.28677,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08234,0.037,0.0058,0.83085,81.84164,10.57358,11.7878,172.24539,8.20216,0.1097,65.53738,0.3953,5.949,26.745,4.888,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.802,3511.082
-2218,1.65644,0,250.31468,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08236,0.037,0.0058,0.8309,81.84656,10.57422,11.7885,172.25576,8.20264,0.1097,65.54132,0.3953,5.95,26.749,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.813,3511.082
-2219,1.64457,0,250.34259,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08238,0.037,0.0058,0.83095,81.85148,10.57486,11.7892,172.26613,8.20312,0.1097,65.54526,0.3953,5.95,26.752,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.825,3511.082
-2220,1.6327,0,250.3705,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.831,81.8564,10.5755,11.7899,172.2765,8.2036,0.1097,65.5492,0.3953,5.951,26.756,4.89,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.836,3511.082
-2221,1.62294,0,250.3966,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83106,81.86101,10.57608,11.79056,172.2862,8.20406,0.10971,65.55289,0.3953,5.952,26.76,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.847,3511.082
-2222,1.61318,0,250.4227,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83112,81.86562,10.57666,11.79122,172.2959,8.20452,0.10972,65.55658,0.3953,5.953,26.763,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.858,3511.082
-2223,1.60342,0,250.4488,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83118,81.87023,10.57724,11.79188,172.3056,8.20498,0.10973,65.56027,0.3953,5.954,26.767,4.892,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.869,3511.082
-2224,1.59366,0,250.4749,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83124,81.87484,10.57782,11.79254,172.3153,8.20544,0.10974,65.56396,0.3953,5.954,26.77,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.88,3511.082
-2225,1.5839,0,250.501,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.8313,81.87945,10.5784,11.7932,172.325,8.2059,0.10975,65.56765,0.3953,5.955,26.774,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.891,3511.082
-2226,1.57414,0,250.5271,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83136,81.88406,10.57898,11.79386,172.3347,8.20636,0.10976,65.57134,0.3953,5.956,26.777,4.894,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.902,3511.082
-2227,1.56438,0,250.5532,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83142,81.88867,10.57956,11.79452,172.3444,8.20682,0.10977,65.57503,0.3953,5.957,26.781,4.894,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.913,3511.082
-2228,1.55462,0,250.5793,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83148,81.89328,10.58014,11.79518,172.3541,8.20728,0.10978,65.57872,0.3953,5.957,26.784,4.895,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.924,3511.082
-2229,1.54486,0,250.6054,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83154,81.89789,10.58072,11.79584,172.3638,8.20774,0.10979,65.58241,0.3953,5.958,26.788,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.935,3511.082
-2230,1.5351,0,250.6315,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.8316,81.9025,10.5813,11.7965,172.3735,8.2082,0.1098,65.5861,0.3953,5.959,26.791,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.945,3511.082
-2231,1.52697,0,250.65601,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83164,81.90685,10.58188,11.79712,172.38261,8.20864,0.10981,65.58957,0.3953,5.96,26.794,4.897,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.956,3511.082
-2232,1.51884,0,250.68052,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83168,81.9112,10.58246,11.79774,172.39172,8.20908,0.10982,65.59304,0.3953,5.96,26.798,4.898,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.967,3511.082
-2233,1.51071,0,250.70503,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83172,81.91555,10.58304,11.79836,172.40083,8.20952,0.10983,65.59651,0.3953,5.961,26.801,4.898,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.977,3511.082
-2234,1.50258,0,250.72954,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83176,81.9199,10.58362,11.79898,172.40994,8.20996,0.10984,65.59998,0.3953,5.962,26.804,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.988,3511.082
-2235,1.49445,0,250.75405,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.8318,81.92425,10.5842,11.7996,172.41905,8.2104,0.10985,65.60345,0.3953,5.963,26.808,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.998,3511.082
-2236,1.48632,0,250.77856,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83184,81.9286,10.58478,11.80022,172.42816,8.21084,0.10986,65.60692,0.3953,5.963,26.811,4.9,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.008,3511.082
-2237,1.47819,0,250.80307,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83188,81.93295,10.58536,11.80084,172.43727,8.21128,0.10987,65.61039,0.3953,5.964,26.814,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.019,3511.082
-2238,1.47006,0,250.82758,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83192,81.9373,10.58594,11.80146,172.44638,8.21172,0.10988,65.61386,0.3953,5.965,26.818,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.029,3511.082
-2239,1.46193,0,250.85209,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83196,81.94165,10.58652,11.80208,172.45549,8.21216,0.10989,65.61733,0.3953,5.966,26.821,4.902,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.039,3511.082
-2240,1.4538,0,250.8766,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.832,81.946,10.5871,11.8027,172.4646,8.2126,0.1099,65.6208,0.3953,5.966,26.824,4.902,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.05,3511.082
-2241,1.44702,0,250.89972,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08242,0.037,0.0058,0.83203,81.95006,10.58761,11.80329,172.4732,8.21301,0.10991,65.62406,0.3953,5.967,26.827,4.903,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.06,3511.082
-2242,1.44024,0,250.92284,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08244,0.037,0.0058,0.83206,81.95412,10.58812,11.80388,172.4818,8.21342,0.10992,65.62732,0.3953,5.968,26.831,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.07,3511.082
-2243,1.43346,0,250.94596,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08246,0.037,0.0058,0.83209,81.95818,10.58863,11.80447,172.4904,8.21383,0.10993,65.63058,0.3953,5.968,26.834,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.08,3511.082
-2244,1.42668,0,250.96908,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08248,0.037,0.0058,0.83212,81.96224,10.58914,11.80506,172.499,8.21424,0.10994,65.63384,0.3953,5.969,26.837,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.09,3511.082
-2245,1.4199,0,250.9922,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0825,0.037,0.0058,0.83215,81.9663,10.58965,11.80565,172.5076,8.21465,0.10995,65.6371,0.3953,5.97,26.84,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.1,3511.082
-2246,1.41312,0,251.01532,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08252,0.037,0.0058,0.83218,81.97036,10.59016,11.80624,172.5162,8.21506,0.10996,65.64036,0.3953,5.971,26.843,4.906,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.11,3511.082
-2247,1.40634,0,251.03844,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08254,0.037,0.0058,0.83221,81.97442,10.59067,11.80683,172.5248,8.21547,0.10997,65.64362,0.3953,5.971,26.847,4.906,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.12,3511.082
-2248,1.39956,0,251.06156,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08256,0.037,0.0058,0.83224,81.97848,10.59118,11.80742,172.5334,8.21588,0.10998,65.64688,0.3953,5.972,26.85,4.907,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.13,3511.082
-2249,1.39278,0,251.08468,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08258,0.037,0.0058,0.83227,81.98254,10.59169,11.80801,172.542,8.21629,0.10999,65.65014,0.3953,5.973,26.853,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.139,3511.082
-2250,1.386,0,251.1078,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8323,81.9866,10.5922,11.8086,172.5506,8.2167,0.11,65.6534,0.3953,5.973,26.856,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.149,3511.082
-2251,1.380872,0,251.12888,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83234,81.99032,10.592676,11.809136,172.55843,8.217072,0.11,65.656376,0.3953,5.974,26.859,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.159,3511.082
-2252,1.375744,0,251.14995,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83238,81.99404,10.593152,11.809672,172.56626,8.217444,0.11,65.659352,0.3953,5.975,26.862,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.168,3511.082
-2253,1.370616,0,251.17103,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83242,81.99776,10.593628,11.810208,172.57408,8.217816,0.11,65.662328,0.3953,5.975,26.865,4.91,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.178,3511.082
-2254,1.365488,0,251.1921,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83246,82.00148,10.594104,11.810744,172.58191,8.218188,0.11,65.665304,0.3953,5.976,26.868,4.91,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.188,3511.082
-2255,1.36036,0,251.21318,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8325,82.0052,10.59458,11.81128,172.58974,8.21856,0.11,65.66828,0.3953,5.977,26.871,4.911,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.197,3511.082
-2256,1.355232,0,251.23426,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83254,82.00892,10.595056,11.811816,172.59757,8.218932,0.11,65.671256,0.3953,5.977,26.874,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.207,3511.082
-2257,1.350104,0,251.25533,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83258,82.01264,10.595532,11.812352,172.6054,8.219304,0.11,65.674232,0.3953,5.978,26.877,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.216,3511.082
-2258,1.344976,0,251.27641,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83262,82.01636,10.596008,11.812888,172.61322,8.219676,0.11,65.677208,0.3953,5.979,26.88,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.226,3511.082
-2259,1.339848,0,251.29748,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83266,82.02008,10.596484,11.813424,172.62105,8.220048,0.11,65.680184,0.3953,5.979,26.883,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.235,3511.082
-2260,1.33472,0,251.31856,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8327,82.0238,10.59696,11.81396,172.62888,8.22042,0.11,65.68316,0.3953,5.98,26.886,4.914,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.244,3511.082
-2261,1.329592,0,251.33964,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83274,82.02752,10.597436,11.814496,172.63671,8.220792,0.11,65.686136,0.3953,5.981,26.889,4.914,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.253,3511.082
-2262,1.324464,0,251.36071,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83278,82.03124,10.597912,11.815032,172.64454,8.221164,0.11,65.689112,0.3953,5.981,26.892,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.263,3511.082
-2263,1.319336,0,251.38179,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83282,82.03496,10.598388,11.815568,172.65236,8.221536,0.11,65.692088,0.3953,5.982,26.895,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.272,3511.082
-2264,1.314208,0,251.40286,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83286,82.03868,10.598864,11.816104,172.66019,8.221908,0.11,65.695064,0.3953,5.983,26.898,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.281,3511.082
-2265,1.30908,0,251.42394,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8329,82.0424,10.59934,11.81664,172.66802,8.22228,0.11,65.69804,0.3953,5.983,26.901,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.29,3511.082
-2266,1.303952,0,251.44502,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83294,82.04612,10.599816,11.817176,172.67585,8.222652,0.11,65.701016,0.3953,5.984,26.904,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.299,3511.082
-2267,1.298824,0,251.46609,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83298,82.04984,10.600292,11.817712,172.68368,8.223024,0.11,65.703992,0.3953,5.985,26.907,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.308,3511.082
-2268,1.293696,0,251.48717,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83302,82.05356,10.600768,11.818248,172.6915,8.223396,0.11,65.706968,0.3953,5.985,26.91,4.918,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.317,3511.082
-2269,1.288568,0,251.50824,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83306,82.05728,10.601244,11.818784,172.69933,8.223768,0.11,65.709944,0.3953,5.986,26.912,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.326,3511.082
-2270,1.28344,0,251.52932,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8331,82.061,10.60172,11.81932,172.70716,8.22414,0.11,65.71292,0.3953,5.987,26.915,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.335,3511.082
-2271,1.278312,0,251.5504,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83314,82.06472,10.602196,11.819856,172.71499,8.224512,0.11,65.715896,0.3953,5.987,26.918,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.344,3511.082
-2272,1.273184,0,251.57147,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83318,82.06844,10.602672,11.820392,172.72282,8.224884,0.11,65.718872,0.3953,5.988,26.921,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.353,3511.082
-2273,1.268056,0,251.59255,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83322,82.07216,10.603148,11.820928,172.73064,8.225256,0.11,65.721848,0.3953,5.988,26.924,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.362,3511.082
-2274,1.262928,0,251.61362,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83326,82.07588,10.603624,11.821464,172.73847,8.225628,0.11,65.724824,0.3953,5.989,26.927,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.371,3511.082
-2275,1.2578,0,251.6347,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8333,82.0796,10.6041,11.822,172.7463,8.226,0.11,65.7278,0.3953,5.99,26.929,4.922,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.379,3511.082
-2276,1.254232,0,251.65339,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082604,0.037,0.0058,0.833336,82.082904,10.604528,11.822476,172.75325,8.226328,0.110008,65.730448,0.3953,5.99,26.932,4.922,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.388,3511.082
-2277,1.250664,0,251.67208,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082608,0.037,0.0058,0.833372,82.086208,10.604956,11.822952,172.7602,8.226656,0.110016,65.733096,0.3953,5.991,26.935,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.397,3511.082
-2278,1.247096,0,251.69076,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082612,0.037,0.0058,0.833408,82.089512,10.605384,11.823428,172.76714,8.226984,0.110024,65.735744,0.3953,5.992,26.938,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.406,3511.082
-2279,1.243528,0,251.70945,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082616,0.037,0.0058,0.833444,82.092816,10.605812,11.823904,172.77409,8.227312,0.110032,65.738392,0.3953,5.992,26.94,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.414,3511.082
-2280,1.23996,0,251.72814,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08262,0.037,0.0058,0.83348,82.09612,10.60624,11.82438,172.78104,8.22764,0.11004,65.74104,0.3953,5.993,26.943,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.423,3511.082
-2281,1.236392,0,251.74683,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082624,0.037,0.0058,0.833516,82.099424,10.606668,11.824856,172.78799,8.227968,0.110048,65.743688,0.3953,5.993,26.946,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.431,3511.082
-2282,1.232824,0,251.76552,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082628,0.037,0.0058,0.833552,82.102728,10.607096,11.825332,172.79494,8.228296,0.110056,65.746336,0.3953,5.994,26.949,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.44,3511.082
-2283,1.229256,0,251.7842,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082632,0.037,0.0058,0.833588,82.106032,10.607524,11.825808,172.80188,8.228624,0.110064,65.748984,0.3953,5.995,26.951,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.448,3511.082
-2284,1.225688,0,251.80289,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082636,0.037,0.0058,0.833624,82.109336,10.607952,11.826284,172.80883,8.228952,0.110072,65.751632,0.3953,5.995,26.954,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.457,3511.082
-2285,1.22212,0,251.82158,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08264,0.037,0.0058,0.83366,82.11264,10.60838,11.82676,172.81578,8.22928,0.11008,65.75428,0.3953,5.996,26.957,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.465,3511.082
-2286,1.218552,0,251.84027,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082644,0.037,0.0058,0.833696,82.115944,10.608808,11.827236,172.82273,8.229608,0.110088,65.756928,0.3953,5.996,26.959,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.473,3511.082
-2287,1.214984,0,251.85896,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082648,0.037,0.0058,0.833732,82.119248,10.609236,11.827712,172.82968,8.229936,0.110096,65.759576,0.3953,5.997,26.962,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.482,3511.082
-2288,1.211416,0,251.87764,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082652,0.037,0.0058,0.833768,82.122552,10.609664,11.828188,172.83662,8.230264,0.110104,65.762224,0.3953,5.998,26.965,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.49,3511.082
-2289,1.207848,0,251.89633,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082656,0.037,0.0058,0.833804,82.125856,10.610092,11.828664,172.84357,8.230592,0.110112,65.764872,0.3953,5.998,26.967,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.498,3511.082
-2290,1.20428,0,251.91502,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08266,0.037,0.0058,0.83384,82.12916,10.61052,11.82914,172.85052,8.23092,0.11012,65.76752,0.3953,5.999,26.97,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.507,3511.082
-2291,1.200712,0,251.93371,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082664,0.037,0.0058,0.833876,82.132464,10.610948,11.829616,172.85747,8.231248,0.110128,65.770168,0.3953,5.999,26.972,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.515,3511.082
-2292,1.197144,0,251.9524,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082668,0.037,0.0058,0.833912,82.135768,10.611376,11.830092,172.86442,8.231576,0.110136,65.772816,0.3953,6,26.975,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.523,3511.082
-2293,1.193576,0,251.97108,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082672,0.037,0.0058,0.833948,82.139072,10.611804,11.830568,172.87136,8.231904,0.110144,65.775464,0.3953,6,26.978,4.93,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.531,3511.082
-2294,1.190008,0,251.98977,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082676,0.037,0.0058,0.833984,82.142376,10.612232,11.831044,172.87831,8.232232,0.110152,65.778112,0.3953,6.001,26.98,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.539,3511.082
-2295,1.18644,0,252.00846,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08268,0.037,0.0058,0.83402,82.14568,10.61266,11.83152,172.88526,8.23256,0.11016,65.78076,0.3953,6.002,26.983,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.547,3511.082
-2296,1.182872,0,252.02715,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082684,0.037,0.0058,0.834056,82.148984,10.613088,11.831996,172.89221,8.232888,0.110168,65.783408,0.3953,6.002,26.985,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.555,3511.082
-2297,1.179304,0,252.04584,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082688,0.037,0.0058,0.834092,82.152288,10.613516,11.832472,172.89916,8.233216,0.110176,65.786056,0.3953,6.003,26.988,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.564,3511.082
-2298,1.175736,0,252.06452,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082692,0.037,0.0058,0.834128,82.155592,10.613944,11.832948,172.9061,8.233544,0.110184,65.788704,0.3953,6.003,26.991,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.572,3511.082
-2299,1.172168,0,252.08321,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082696,0.037,0.0058,0.834164,82.158896,10.614372,11.833424,172.91305,8.233872,0.110192,65.791352,0.3953,6.004,26.993,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.579,3511.082
-2300,1.1686,0,252.1019,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0827,0.037,0.0058,0.8342,82.1622,10.6148,11.8339,172.92,8.2342,0.1102,65.794,0.3953,6.004,26.996,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.587,3511.082
-2301,1.165964,0,252.1187,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082704,0.037,0.0058,0.834228,82.165164,10.615184,11.834324,172.92624,8.2345,0.110204,65.796372,0.3953,6.005,26.998,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.595,3511.082
-2302,1.163328,0,252.1355,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082708,0.037,0.0058,0.834256,82.168128,10.615568,11.834748,172.93248,8.2348,0.110208,65.798744,0.3953,6.006,27.001,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.603,3511.082
-2303,1.160692,0,252.1523,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082712,0.037,0.0058,0.834284,82.171092,10.615952,11.835172,172.93872,8.2351,0.110212,65.801116,0.3953,6.006,27.003,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.611,3511.082
-2304,1.158056,0,252.1691,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082716,0.037,0.0058,0.834312,82.174056,10.616336,11.835596,172.94496,8.2354,0.110216,65.803488,0.3953,6.007,27.006,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.619,3511.082
-2305,1.15542,0,252.1859,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08272,0.037,0.0058,0.83434,82.17702,10.61672,11.83602,172.9512,8.2357,0.11022,65.80586,0.3953,6.007,27.008,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.627,3511.082
-2306,1.152784,0,252.2027,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082724,0.037,0.0058,0.834368,82.179984,10.617104,11.836444,172.95744,8.236,0.110224,65.808232,0.3953,6.008,27.011,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.634,3511.082
-2307,1.150148,0,252.2195,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082728,0.037,0.0058,0.834396,82.182948,10.617488,11.836868,172.96368,8.2363,0.110228,65.810604,0.3953,6.008,27.013,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.642,3511.082
-2308,1.147512,0,252.2363,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082732,0.037,0.0058,0.834424,82.185912,10.617872,11.837292,172.96992,8.2366,0.110232,65.812976,0.3953,6.009,27.016,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.65,3511.082
-2309,1.144876,0,252.2531,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082736,0.037,0.0058,0.834452,82.188876,10.618256,11.837716,172.97616,8.2369,0.110236,65.815348,0.3953,6.009,27.018,4.938,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.658,3511.082
-2310,1.14224,0,252.2699,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08274,0.037,0.0058,0.83448,82.19184,10.61864,11.83814,172.9824,8.2372,0.11024,65.81772,0.3953,6.01,27.02,4.938,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.665,3511.082
-2311,1.139604,0,252.2867,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082744,0.037,0.0058,0.834508,82.194804,10.619024,11.838564,172.98864,8.2375,0.110244,65.820092,0.3953,6.011,27.023,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.673,3511.082
-2312,1.136968,0,252.3035,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082748,0.037,0.0058,0.834536,82.197768,10.619408,11.838988,172.99488,8.2378,0.110248,65.822464,0.3953,6.011,27.025,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.68,3511.082
-2313,1.134332,0,252.3203,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082752,0.037,0.0058,0.834564,82.200732,10.619792,11.839412,173.00112,8.2381,0.110252,65.824836,0.3953,6.012,27.028,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.688,3511.082
-2314,1.131696,0,252.3371,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082756,0.037,0.0058,0.834592,82.203696,10.620176,11.839836,173.00736,8.2384,0.110256,65.827208,0.3953,6.012,27.03,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.696,3511.082
-2315,1.12906,0,252.3539,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08276,0.037,0.0058,0.83462,82.20666,10.62056,11.84026,173.0136,8.2387,0.11026,65.82958,0.3953,6.013,27.032,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.703,3511.082
-2316,1.126424,0,252.3707,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082764,0.037,0.0058,0.834648,82.209624,10.620944,11.840684,173.01984,8.239,0.110264,65.831952,0.3953,6.013,27.035,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.711,3511.082
-2317,1.123788,0,252.3875,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082768,0.037,0.0058,0.834676,82.212588,10.621328,11.841108,173.02608,8.2393,0.110268,65.834324,0.3953,6.014,27.037,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.718,3511.082
-2318,1.121152,0,252.4043,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082772,0.037,0.0058,0.834704,82.215552,10.621712,11.841532,173.03232,8.2396,0.110272,65.836696,0.3953,6.014,27.04,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.725,3511.082
-2319,1.118516,0,252.4211,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082776,0.037,0.0058,0.834732,82.218516,10.622096,11.841956,173.03856,8.2399,0.110276,65.839068,0.3953,6.015,27.042,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.733,3511.082
-2320,1.11588,0,252.4379,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08278,0.037,0.0058,0.83476,82.22148,10.62248,11.84238,173.0448,8.2402,0.11028,65.84144,0.3953,6.015,27.044,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.74,3511.082
-2321,1.113244,0,252.4547,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082784,0.037,0.0058,0.834788,82.224444,10.622864,11.842804,173.05104,8.2405,0.110284,65.843812,0.3953,6.016,27.047,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.748,3511.082
-2322,1.110608,0,252.4715,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082788,0.037,0.0058,0.834816,82.227408,10.623248,11.843228,173.05728,8.2408,0.110288,65.846184,0.3953,6.016,27.049,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.755,3511.082
-2323,1.107972,0,252.4883,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082792,0.037,0.0058,0.834844,82.230372,10.623632,11.843652,173.06352,8.2411,0.110292,65.848556,0.3953,6.017,27.051,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.762,3511.082
-2324,1.105336,0,252.5051,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082796,0.037,0.0058,0.834872,82.233336,10.624016,11.844076,173.06976,8.2414,0.110296,65.850928,0.3953,6.017,27.054,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.77,3511.082
-2325,1.1027,0,252.5219,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.8349,82.2363,10.6244,11.8445,173.076,8.2417,0.1103,65.8533,0.3953,6.018,27.056,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.777,3511.082
-2326,1.100632,0,252.53715,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.834924,82.238992,10.624748,11.844888,173.08167,8.241968,0.110304,65.85546,0.3953,6.018,27.058,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.784,3511.082
-2327,1.098564,0,252.5524,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.834948,82.241684,10.625096,11.845276,173.08734,8.242236,0.110308,65.85762,0.3953,6.019,27.061,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.791,3511.082
-2328,1.096496,0,252.56766,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.834972,82.244376,10.625444,11.845664,173.093,8.242504,0.110312,65.85978,0.3953,6.019,27.063,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.798,3511.082
-2329,1.094428,0,252.58291,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.834996,82.247068,10.625792,11.846052,173.09867,8.242772,0.110316,65.86194,0.3953,6.02,27.065,4.946,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.806,3511.082
-2330,1.09236,0,252.59816,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.83502,82.24976,10.62614,11.84644,173.10434,8.24304,0.11032,65.8641,0.3953,6.02,27.067,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.813,3511.082
-2331,1.090292,0,252.61341,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835044,82.252452,10.626488,11.846828,173.11001,8.243308,0.110324,65.86626,0.3953,6.021,27.07,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.82,3511.082
-2332,1.088224,0,252.62866,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835068,82.255144,10.626836,11.847216,173.11568,8.243576,0.110328,65.86842,0.3953,6.021,27.072,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.827,3511.082
-2333,1.086156,0,252.64392,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835092,82.257836,10.627184,11.847604,173.12134,8.243844,0.110332,65.87058,0.3953,6.022,27.074,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.834,3511.082
-2334,1.084088,0,252.65917,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835116,82.260528,10.627532,11.847992,173.12701,8.244112,0.110336,65.87274,0.3953,6.022,27.076,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.841,3511.082
-2335,1.08202,0,252.67442,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.83514,82.26322,10.62788,11.84838,173.13268,8.24438,0.11034,65.8749,0.3953,6.023,27.079,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.848,3511.082
-2336,1.079952,0,252.68967,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835164,82.265912,10.628228,11.848768,173.13835,8.244648,0.110344,65.87706,0.3953,6.023,27.081,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.855,3511.082
-2337,1.077884,0,252.70492,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835188,82.268604,10.628576,11.849156,173.14402,8.244916,0.110348,65.87922,0.3953,6.024,27.083,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.862,3511.082
-2338,1.075816,0,252.72018,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835212,82.271296,10.628924,11.849544,173.14968,8.245184,0.110352,65.88138,0.3953,6.024,27.085,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.869,3511.082
-2339,1.073748,0,252.73543,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835236,82.273988,10.629272,11.849932,173.15535,8.245452,0.110356,65.88354,0.3953,6.025,27.088,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.876,3511.082
-2340,1.07168,0,252.75068,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.83526,82.27668,10.62962,11.85032,173.16102,8.24572,0.11036,65.8857,0.3953,6.025,27.09,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.883,3511.082
-2341,1.069612,0,252.76593,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835284,82.279372,10.629968,11.850708,173.16669,8.245988,0.110364,65.88786,0.3953,6.026,27.092,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.89,3511.082
-2342,1.067544,0,252.78118,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835308,82.282064,10.630316,11.851096,173.17236,8.246256,0.110368,65.89002,0.3953,6.026,27.094,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.896,3511.082
-2343,1.065476,0,252.79644,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835332,82.284756,10.630664,11.851484,173.17802,8.246524,0.110372,65.89218,0.3953,6.027,27.096,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.903,3511.082
-2344,1.063408,0,252.81169,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835356,82.287448,10.631012,11.851872,173.18369,8.246792,0.110376,65.89434,0.3953,6.027,27.098,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.91,3511.082
-2345,1.06134,0,252.82694,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.83538,82.29014,10.63136,11.85226,173.18936,8.24706,0.11038,65.8965,0.3953,6.028,27.101,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.917,3511.082
-2346,1.059272,0,252.84219,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835404,82.292832,10.631708,11.852648,173.19503,8.247328,0.110384,65.89866,0.3953,6.028,27.103,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.924,3511.082
-2347,1.057204,0,252.85744,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835428,82.295524,10.632056,11.853036,173.2007,8.247596,0.110388,65.90082,0.3953,6.029,27.105,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.93,3511.082
-2348,1.055136,0,252.8727,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835452,82.298216,10.632404,11.853424,173.20636,8.247864,0.110392,65.90298,0.3953,6.029,27.107,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.937,3511.082
-2349,1.053068,0,252.88795,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835476,82.300908,10.632752,11.853812,173.21203,8.248132,0.110396,65.90514,0.3953,6.03,27.109,4.954,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.944,3511.082
-2350,1.051,0,252.9032,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.8355,82.3036,10.6331,11.8542,173.2177,8.2484,0.1104,65.9073,0.3953,6.03,27.111,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.951,3511.082
-2351,1.049292,0,252.91716,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082804,0.037,0.0058,0.835528,82.306068,10.633424,11.85456,173.22289,8.248644,0.110408,65.909276,0.3953,6.031,27.113,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.957,3511.082
-2352,1.047584,0,252.93113,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082808,0.037,0.0058,0.835556,82.308536,10.633748,11.85492,173.22808,8.248888,0.110416,65.911252,0.3953,6.031,27.116,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.964,3511.082
-2353,1.045876,0,252.94509,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082812,0.037,0.0058,0.835584,82.311004,10.634072,11.85528,173.23328,8.249132,0.110424,65.913228,0.3953,6.032,27.118,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.97,3511.082
-2354,1.044168,0,252.95906,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082816,0.037,0.0058,0.835612,82.313472,10.634396,11.85564,173.23847,8.249376,0.110432,65.915204,0.3953,6.032,27.12,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.977,3511.082
-2355,1.04246,0,252.97302,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08282,0.037,0.0058,0.83564,82.31594,10.63472,11.856,173.24366,8.24962,0.11044,65.91718,0.3953,6.033,27.122,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.984,3511.082
-2356,1.040752,0,252.98698,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082824,0.037,0.0058,0.835668,82.318408,10.635044,11.85636,173.24885,8.249864,0.110448,65.919156,0.3953,6.033,27.124,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.99,3511.082
-2357,1.039044,0,253.00095,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082828,0.037,0.0058,0.835696,82.320876,10.635368,11.85672,173.25404,8.250108,0.110456,65.921132,0.3953,6.033,27.126,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.997,3511.082
-2358,1.037336,0,253.01491,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082832,0.037,0.0058,0.835724,82.323344,10.635692,11.85708,173.25924,8.250352,0.110464,65.923108,0.3953,6.034,27.128,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.003,3511.082
-2359,1.035628,0,253.02888,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082836,0.037,0.0058,0.835752,82.325812,10.636016,11.85744,173.26443,8.250596,0.110472,65.925084,0.3953,6.034,27.13,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.01,3511.082
-2360,1.03392,0,253.04284,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08284,0.037,0.0058,0.83578,82.32828,10.63634,11.8578,173.26962,8.25084,0.11048,65.92706,0.3953,6.035,27.132,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.016,3511.082
-2361,1.032212,0,253.0568,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082844,0.037,0.0058,0.835808,82.330748,10.636664,11.85816,173.27481,8.251084,0.110488,65.929036,0.3953,6.035,27.134,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.023,3511.082
-2362,1.030504,0,253.07077,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082848,0.037,0.0058,0.835836,82.333216,10.636988,11.85852,173.28,8.251328,0.110496,65.931012,0.3953,6.036,27.136,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.029,3511.082
-2363,1.028796,0,253.08473,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082852,0.037,0.0058,0.835864,82.335684,10.637312,11.85888,173.2852,8.251572,0.110504,65.932988,0.3953,6.036,27.138,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.035,3511.082
-2364,1.027088,0,253.0987,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082856,0.037,0.0058,0.835892,82.338152,10.637636,11.85924,173.29039,8.251816,0.110512,65.934964,0.3953,6.037,27.14,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.042,3511.082
-2365,1.02538,0,253.11266,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08286,0.037,0.0058,0.83592,82.34062,10.63796,11.8596,173.29558,8.25206,0.11052,65.93694,0.3953,6.037,27.142,4.961,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.048,3511.082
-2366,1.023672,0,253.12662,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082864,0.037,0.0058,0.835948,82.343088,10.638284,11.85996,173.30077,8.252304,0.110528,65.938916,0.3953,6.038,27.144,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.055,3511.082
-2367,1.021964,0,253.14059,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082868,0.037,0.0058,0.835976,82.345556,10.638608,11.86032,173.30596,8.252548,0.110536,65.940892,0.3953,6.038,27.147,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.061,3511.082
-2368,1.020256,0,253.15455,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082872,0.037,0.0058,0.836004,82.348024,10.638932,11.86068,173.31116,8.252792,0.110544,65.942868,0.3953,6.038,27.149,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.067,3511.082
-2369,1.018548,0,253.16852,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082876,0.037,0.0058,0.836032,82.350492,10.639256,11.86104,173.31635,8.253036,0.110552,65.944844,0.3953,6.039,27.151,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.073,3511.082
-2370,1.01684,0,253.18248,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08288,0.037,0.0058,0.83606,82.35296,10.63958,11.8614,173.32154,8.25328,0.11056,65.94682,0.3953,6.039,27.153,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.08,3511.082
-2371,1.015132,0,253.19644,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082884,0.037,0.0058,0.836088,82.355428,10.639904,11.86176,173.32673,8.253524,0.110568,65.948796,0.3953,6.04,27.155,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.086,3511.082
-2372,1.013424,0,253.21041,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082888,0.037,0.0058,0.836116,82.357896,10.640228,11.86212,173.33192,8.253768,0.110576,65.950772,0.3953,6.04,27.157,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.092,3511.082
-2373,1.011716,0,253.22437,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082892,0.037,0.0058,0.836144,82.360364,10.640552,11.86248,173.33712,8.254012,0.110584,65.952748,0.3953,6.041,27.158,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.098,3511.082
-2374,1.010008,0,253.23834,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082896,0.037,0.0058,0.836172,82.362832,10.640876,11.86284,173.34231,8.254256,0.110592,65.954724,0.3953,6.041,27.16,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.105,3511.082
-2375,1.0083,0,253.2523,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0829,0.037,0.0058,0.8362,82.3653,10.6412,11.8632,173.3475,8.2545,0.1106,65.9567,0.3953,6.042,27.162,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.111,3511.082
-2376,1.006816,0,253.26518,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082904,0.037,0.0058,0.836224,82.36758,10.641492,11.863528,173.35229,8.254732,0.1106,65.95852,0.3953,6.042,27.164,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.117,3511.082
-2377,1.005332,0,253.27805,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082908,0.037,0.0058,0.836248,82.36986,10.641784,11.863856,173.35708,8.254964,0.1106,65.96034,0.3953,6.042,27.166,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.123,3511.082
-2378,1.003848,0,253.29093,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082912,0.037,0.0058,0.836272,82.37214,10.642076,11.864184,173.36186,8.255196,0.1106,65.96216,0.3953,6.043,27.168,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.129,3511.082
-2379,1.002364,0,253.3038,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082916,0.037,0.0058,0.836296,82.37442,10.642368,11.864512,173.36665,8.255428,0.1106,65.96398,0.3953,6.043,27.17,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.135,3511.082
-2380,1.00088,0,253.31668,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08292,0.037,0.0058,0.83632,82.3767,10.64266,11.86484,173.37144,8.25566,0.1106,65.9658,0.3953,6.044,27.172,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.141,3511.082
-2381,0.999396,0,253.32956,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082924,0.037,0.0058,0.836344,82.37898,10.642952,11.865168,173.37623,8.255892,0.1106,65.96762,0.3953,6.044,27.174,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.148,3511.082
-2382,0.997912,0,253.34243,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082928,0.037,0.0058,0.836368,82.38126,10.643244,11.865496,173.38102,8.256124,0.1106,65.96944,0.3953,6.045,27.176,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.154,3511.082
-2383,0.996428,0,253.35531,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082932,0.037,0.0058,0.836392,82.38354,10.643536,11.865824,173.3858,8.256356,0.1106,65.97126,0.3953,6.045,27.178,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.16,3511.082
-2384,0.994944,0,253.36818,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082936,0.037,0.0058,0.836416,82.38582,10.643828,11.866152,173.39059,8.256588,0.1106,65.97308,0.3953,6.045,27.18,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.166,3511.082
-2385,0.99346,0,253.38106,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08294,0.037,0.0058,0.83644,82.3881,10.64412,11.86648,173.39538,8.25682,0.1106,65.9749,0.3953,6.046,27.182,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.172,3511.082
-2386,0.991976,0,253.39394,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082944,0.037,0.0058,0.836464,82.39038,10.644412,11.866808,173.40017,8.257052,0.1106,65.97672,0.3953,6.046,27.184,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.178,3511.082
-2387,0.990492,0,253.40681,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082948,0.037,0.0058,0.836488,82.39266,10.644704,11.867136,173.40496,8.257284,0.1106,65.97854,0.3953,6.047,27.186,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.184,3511.082
-2388,0.989008,0,253.41969,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082952,0.037,0.0058,0.836512,82.39494,10.644996,11.867464,173.40974,8.257516,0.1106,65.98036,0.3953,6.047,27.188,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.19,3511.082
-2389,0.987524,0,253.43256,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082956,0.037,0.0058,0.836536,82.39722,10.645288,11.867792,173.41453,8.257748,0.1106,65.98218,0.3953,6.048,27.189,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.195,3511.082
-2390,0.98604,0,253.44544,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08296,0.037,0.0058,0.83656,82.3995,10.64558,11.86812,173.41932,8.25798,0.1106,65.984,0.3953,6.048,27.191,4.969,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.201,3511.082
-2391,0.984556,0,253.45832,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082964,0.037,0.0058,0.836584,82.40178,10.645872,11.868448,173.42411,8.258212,0.1106,65.98582,0.3953,6.048,27.193,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.207,3511.082
-2392,0.983072,0,253.47119,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082968,0.037,0.0058,0.836608,82.40406,10.646164,11.868776,173.4289,8.258444,0.1106,65.98764,0.3953,6.049,27.195,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.213,3511.082
-2393,0.981588,0,253.48407,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082972,0.037,0.0058,0.836632,82.40634,10.646456,11.869104,173.43368,8.258676,0.1106,65.98946,0.3953,6.049,27.197,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.219,3511.082
-2394,0.980104,0,253.49694,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082976,0.037,0.0058,0.836656,82.40862,10.646748,11.869432,173.43847,8.258908,0.1106,65.99128,0.3953,6.05,27.199,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.225,3511.082
-2395,0.97862,0,253.50982,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08298,0.037,0.0058,0.83668,82.4109,10.64704,11.86976,173.44326,8.25914,0.1106,65.9931,0.3953,6.05,27.201,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.231,3511.082
-2396,0.977136,0,253.5227,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082984,0.037,0.0058,0.836704,82.41318,10.647332,11.870088,173.44805,8.259372,0.1106,65.99492,0.3953,6.05,27.203,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.237,3511.082
-2397,0.975652,0,253.53557,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082988,0.037,0.0058,0.836728,82.41546,10.647624,11.870416,173.45284,8.259604,0.1106,65.99674,0.3953,6.051,27.204,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.242,3511.082
-2398,0.974168,0,253.54845,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082992,0.037,0.0058,0.836752,82.41774,10.647916,11.870744,173.45762,8.259836,0.1106,65.99856,0.3953,6.051,27.206,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.248,3511.082
-2399,0.972684,0,253.56132,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082996,0.037,0.0058,0.836776,82.42002,10.648208,11.871072,173.46241,8.260068,0.1106,66.00038,0.3953,6.052,27.208,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.254,3511.082
-2400,0.9712,0,253.5742,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.8368,82.4223,10.6485,11.8714,173.4672,8.2603,0.1106,66.0022,0.3953,6.052,27.21,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.26,3511.082
-2401,0.969888,0,253.58614,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836828,82.4244,10.648772,11.871708,173.47163,8.260512,0.1106,66.003884,0.3953,6.053,27.212,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.265,3511.082
-2402,0.968576,0,253.59809,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836856,82.4265,10.649044,11.872016,173.47606,8.260724,0.1106,66.005568,0.3953,6.053,27.214,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.271,3511.082
-2403,0.967264,0,253.61003,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836884,82.4286,10.649316,11.872324,173.4805,8.260936,0.1106,66.007252,0.3953,6.053,27.215,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.277,3511.082
-2404,0.965952,0,253.62198,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836912,82.4307,10.649588,11.872632,173.48493,8.261148,0.1106,66.008936,0.3953,6.054,27.217,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.282,3511.082
-2405,0.96464,0,253.63392,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.83694,82.4328,10.64986,11.87294,173.48936,8.26136,0.1106,66.01062,0.3953,6.054,27.219,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.288,3511.082
-2406,0.963328,0,253.64586,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836968,82.4349,10.650132,11.873248,173.49379,8.261572,0.1106,66.012304,0.3953,6.055,27.221,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.294,3511.082
-2407,0.962016,0,253.65781,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836996,82.437,10.650404,11.873556,173.49822,8.261784,0.1106,66.013988,0.3953,6.055,27.223,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.299,3511.082
-2408,0.960704,0,253.66975,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837024,82.4391,10.650676,11.873864,173.50266,8.261996,0.1106,66.015672,0.3953,6.055,27.224,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.305,3511.082
-2409,0.959392,0,253.6817,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837052,82.4412,10.650948,11.874172,173.50709,8.262208,0.1106,66.017356,0.3953,6.056,27.226,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.311,3511.082
-2410,0.95808,0,253.69364,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.83708,82.4433,10.65122,11.87448,173.51152,8.26242,0.1106,66.01904,0.3953,6.056,27.228,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.316,3511.082
-2411,0.956768,0,253.70558,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837108,82.4454,10.651492,11.874788,173.51595,8.262632,0.1106,66.020724,0.3953,6.057,27.23,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.322,3511.082
-2412,0.955456,0,253.71753,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837136,82.4475,10.651764,11.875096,173.52038,8.262844,0.1106,66.022408,0.3953,6.057,27.231,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.327,3511.082
-2413,0.954144,0,253.72947,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837164,82.4496,10.652036,11.875404,173.52482,8.263056,0.1106,66.024092,0.3953,6.057,27.233,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.333,3511.082
-2414,0.952832,0,253.74142,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837192,82.4517,10.652308,11.875712,173.52925,8.263268,0.1106,66.025776,0.3953,6.058,27.235,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.338,3511.082
-2415,0.95152,0,253.75336,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.83722,82.4538,10.65258,11.87602,173.53368,8.26348,0.1106,66.02746,0.3953,6.058,27.237,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.344,3511.082
-2416,0.950208,0,253.7653,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837248,82.4559,10.652852,11.876328,173.53811,8.263692,0.1106,66.029144,0.3953,6.058,27.239,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.349,3511.082
-2417,0.948896,0,253.77725,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837276,82.458,10.653124,11.876636,173.54254,8.263904,0.1106,66.030828,0.3953,6.059,27.24,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.355,3511.082
-2418,0.947584,0,253.78919,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837304,82.4601,10.653396,11.876944,173.54698,8.264116,0.1106,66.032512,0.3953,6.059,27.242,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.36,3511.082
-2419,0.946272,0,253.80114,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837332,82.4622,10.653668,11.877252,173.55141,8.264328,0.1106,66.034196,0.3953,6.06,27.244,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.366,3511.082
-2420,0.94496,0,253.81308,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.83736,82.4643,10.65394,11.87756,173.55584,8.26454,0.1106,66.03588,0.3953,6.06,27.245,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.371,3511.082
-2421,0.943648,0,253.82502,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837388,82.4664,10.654212,11.877868,173.56027,8.264752,0.1106,66.037564,0.3953,6.06,27.247,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.377,3511.082
-2422,0.942336,0,253.83697,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837416,82.4685,10.654484,11.878176,173.5647,8.264964,0.1106,66.039248,0.3953,6.061,27.249,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.382,3511.082
-2423,0.941024,0,253.84891,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837444,82.4706,10.654756,11.878484,173.56914,8.265176,0.1106,66.040932,0.3953,6.061,27.251,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.388,3511.082
-2424,0.939712,0,253.86086,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837472,82.4727,10.655028,11.878792,173.57357,8.265388,0.1106,66.042616,0.3953,6.062,27.252,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.393,3511.082
-2425,0.9384,0,253.8728,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.8375,82.4748,10.6553,11.8791,173.578,8.2656,0.1106,66.0443,0.3953,6.062,27.254,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.398,3511.082
-2426,0.937196,0,253.88393,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083004,0.037,0.0058,0.83752,82.476768,10.655556,11.879376,173.58214,8.265796,0.110608,66.045876,0.3953,6.062,27.256,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.404,3511.082
-2427,0.935992,0,253.89506,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083008,0.037,0.0058,0.83754,82.478736,10.655812,11.879652,173.58627,8.265992,0.110616,66.047452,0.3953,6.063,27.257,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.409,3511.082
-2428,0.934788,0,253.90618,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083012,0.037,0.0058,0.83756,82.480704,10.656068,11.879928,173.59041,8.266188,0.110624,66.049028,0.3953,6.063,27.259,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.414,3511.082
-2429,0.933584,0,253.91731,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083016,0.037,0.0058,0.83758,82.482672,10.656324,11.880204,173.59454,8.266384,0.110632,66.050604,0.3953,6.063,27.261,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.42,3511.082
-2430,0.93238,0,253.92844,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08302,0.037,0.0058,0.8376,82.48464,10.65658,11.88048,173.59868,8.26658,0.11064,66.05218,0.3953,6.064,27.263,4.983,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.425,3511.082
-2431,0.931176,0,253.93957,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083024,0.037,0.0058,0.83762,82.486608,10.656836,11.880756,173.60282,8.266776,0.110648,66.053756,0.3953,6.064,27.264,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.43,3511.082
-2432,0.929972,0,253.9507,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083028,0.037,0.0058,0.83764,82.488576,10.657092,11.881032,173.60695,8.266972,0.110656,66.055332,0.3953,6.065,27.266,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.436,3511.082
-2433,0.928768,0,253.96182,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083032,0.037,0.0058,0.83766,82.490544,10.657348,11.881308,173.61109,8.267168,0.110664,66.056908,0.3953,6.065,27.268,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.441,3511.082
-2434,0.927564,0,253.97295,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083036,0.037,0.0058,0.83768,82.492512,10.657604,11.881584,173.61522,8.267364,0.110672,66.058484,0.3953,6.065,27.269,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.446,3511.082
-2435,0.92636,0,253.98408,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08304,0.037,0.0058,0.8377,82.49448,10.65786,11.88186,173.61936,8.26756,0.11068,66.06006,0.3953,6.066,27.271,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.451,3511.082
-2436,0.925156,0,253.99521,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083044,0.037,0.0058,0.83772,82.496448,10.658116,11.882136,173.6235,8.267756,0.110688,66.061636,0.3953,6.066,27.273,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.457,3511.082
-2437,0.923952,0,254.00634,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083048,0.037,0.0058,0.83774,82.498416,10.658372,11.882412,173.62763,8.267952,0.110696,66.063212,0.3953,6.066,27.274,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.462,3511.082
-2438,0.922748,0,254.01746,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083052,0.037,0.0058,0.83776,82.500384,10.658628,11.882688,173.63177,8.268148,0.110704,66.064788,0.3953,6.067,27.276,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.467,3511.082
-2439,0.921544,0,254.02859,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083056,0.037,0.0058,0.83778,82.502352,10.658884,11.882964,173.6359,8.268344,0.110712,66.066364,0.3953,6.067,27.278,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.472,3511.082
-2440,0.92034,0,254.03972,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08306,0.037,0.0058,0.8378,82.50432,10.65914,11.88324,173.64004,8.26854,0.11072,66.06794,0.3953,6.068,27.279,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.477,3511.082
-2441,0.919136,0,254.05085,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083064,0.037,0.0058,0.83782,82.506288,10.659396,11.883516,173.64418,8.268736,0.110728,66.069516,0.3953,6.068,27.281,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.482,3511.082
-2442,0.917932,0,254.06198,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083068,0.037,0.0058,0.83784,82.508256,10.659652,11.883792,173.64831,8.268932,0.110736,66.071092,0.3953,6.068,27.283,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.488,3511.082
-2443,0.916728,0,254.0731,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083072,0.037,0.0058,0.83786,82.510224,10.659908,11.884068,173.65245,8.269128,0.110744,66.072668,0.3953,6.069,27.284,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.493,3511.082
-2444,0.915524,0,254.08423,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083076,0.037,0.0058,0.83788,82.512192,10.660164,11.884344,173.65658,8.269324,0.110752,66.074244,0.3953,6.069,27.286,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.498,3511.082
-2445,0.91432,0,254.09536,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08308,0.037,0.0058,0.8379,82.51416,10.66042,11.88462,173.66072,8.26952,0.11076,66.07582,0.3953,6.069,27.287,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.503,3511.082
-2446,0.913116,0,254.10649,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083084,0.037,0.0058,0.83792,82.516128,10.660676,11.884896,173.66486,8.269716,0.110768,66.077396,0.3953,6.07,27.289,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.508,3511.082
-2447,0.911912,0,254.11762,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083088,0.037,0.0058,0.83794,82.518096,10.660932,11.885172,173.66899,8.269912,0.110776,66.078972,0.3953,6.07,27.291,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.513,3511.082
-2448,0.910708,0,254.12874,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083092,0.037,0.0058,0.83796,82.520064,10.661188,11.885448,173.67313,8.270108,0.110784,66.080548,0.3953,6.07,27.292,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.518,3511.082
-2449,0.909504,0,254.13987,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083096,0.037,0.0058,0.83798,82.522032,10.661444,11.885724,173.67726,8.270304,0.110792,66.082124,0.3953,6.071,27.294,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.523,3511.082
-2450,0.9083,0,254.151,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838,82.524,10.6617,11.886,173.6814,8.2705,0.1108,66.0837,0.3953,6.071,27.295,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.528,3511.082
-2451,0.907176,0,254.16141,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838016,82.525844,10.66194,11.886264,173.68527,8.270684,0.1108,66.085172,0.3953,6.072,27.297,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.533,3511.082
-2452,0.906052,0,254.17182,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838032,82.527688,10.66218,11.886528,173.68914,8.270868,0.1108,66.086644,0.3953,6.072,27.299,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.538,3511.082
-2453,0.904928,0,254.18224,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838048,82.529532,10.66242,11.886792,173.69302,8.271052,0.1108,66.088116,0.3953,6.072,27.3,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.543,3511.082
-2454,0.903804,0,254.19265,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838064,82.531376,10.66266,11.887056,173.69689,8.271236,0.1108,66.089588,0.3953,6.073,27.302,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.548,3511.082
-2455,0.90268,0,254.20306,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83808,82.53322,10.6629,11.88732,173.70076,8.27142,0.1108,66.09106,0.3953,6.073,27.303,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.553,3511.082
-2456,0.901556,0,254.21347,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838096,82.535064,10.66314,11.887584,173.70463,8.271604,0.1108,66.092532,0.3953,6.073,27.305,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.558,3511.082
-2457,0.900432,0,254.22388,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838112,82.536908,10.66338,11.887848,173.7085,8.271788,0.1108,66.094004,0.3953,6.074,27.307,4.991,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.563,3511.082
-2458,0.899308,0,254.2343,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838128,82.538752,10.66362,11.888112,173.71238,8.271972,0.1108,66.095476,0.3953,6.074,27.308,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.568,3511.082
-2459,0.898184,0,254.24471,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838144,82.540596,10.66386,11.888376,173.71625,8.272156,0.1108,66.096948,0.3953,6.074,27.31,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.573,3511.082
-2460,0.89706,0,254.25512,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83816,82.54244,10.6641,11.88864,173.72012,8.27234,0.1108,66.09842,0.3953,6.075,27.311,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.578,3511.082
-2461,0.895936,0,254.26553,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838176,82.544284,10.66434,11.888904,173.72399,8.272524,0.1108,66.099892,0.3953,6.075,27.313,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.583,3511.082
-2462,0.894812,0,254.27594,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838192,82.546128,10.66458,11.889168,173.72786,8.272708,0.1108,66.101364,0.3953,6.075,27.314,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.588,3511.082
-2463,0.893688,0,254.28636,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838208,82.547972,10.66482,11.889432,173.73174,8.272892,0.1108,66.102836,0.3953,6.076,27.316,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.593,3511.082
-2464,0.892564,0,254.29677,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838224,82.549816,10.66506,11.889696,173.73561,8.273076,0.1108,66.104308,0.3953,6.076,27.318,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.597,3511.082
-2465,0.89144,0,254.30718,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83824,82.55166,10.6653,11.88996,173.73948,8.27326,0.1108,66.10578,0.3953,6.076,27.319,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.602,3511.082
-2466,0.890316,0,254.31759,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838256,82.553504,10.66554,11.890224,173.74335,8.273444,0.1108,66.107252,0.3953,6.077,27.321,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.607,3511.082
-2467,0.889192,0,254.328,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838272,82.555348,10.66578,11.890488,173.74722,8.273628,0.1108,66.108724,0.3953,6.077,27.322,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.612,3511.082
-2468,0.888068,0,254.33842,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838288,82.557192,10.66602,11.890752,173.7511,8.273812,0.1108,66.110196,0.3953,6.077,27.324,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.617,3511.082
-2469,0.886944,0,254.34883,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838304,82.559036,10.66626,11.891016,173.75497,8.273996,0.1108,66.111668,0.3953,6.078,27.325,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.622,3511.082
-2470,0.88582,0,254.35924,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83832,82.56088,10.6665,11.89128,173.75884,8.27418,0.1108,66.11314,0.3953,6.078,27.327,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.626,3511.082
-2471,0.884696,0,254.36965,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838336,82.562724,10.66674,11.891544,173.76271,8.274364,0.1108,66.114612,0.3953,6.078,27.328,4.995,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.631,3511.082
-2472,0.883572,0,254.38006,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838352,82.564568,10.66698,11.891808,173.76658,8.274548,0.1108,66.116084,0.3953,6.079,27.33,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.636,3511.082
-2473,0.882448,0,254.39048,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838368,82.566412,10.66722,11.892072,173.77046,8.274732,0.1108,66.117556,0.3953,6.079,27.331,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.641,3511.082
-2474,0.881324,0,254.40089,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838384,82.568256,10.66746,11.892336,173.77433,8.274916,0.1108,66.119028,0.3953,6.079,27.333,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.645,3511.082
-2475,0.8802,0,254.4113,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.8384,82.5701,10.6677,11.8926,173.7782,8.2751,0.1108,66.1205,0.3953,6.08,27.334,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.65,3511.082
-2476,0.879152,0,254.42108,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838416,82.57182,10.667916,11.892848,173.78183,8.275276,0.1108,66.121884,0.3953,6.08,27.336,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.655,3511.082
-2477,0.878104,0,254.43087,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838432,82.57354,10.668132,11.893096,173.78546,8.275452,0.1108,66.123268,0.3953,6.08,27.337,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.66,3511.082
-2478,0.877056,0,254.44065,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838448,82.57526,10.668348,11.893344,173.7891,8.275628,0.1108,66.124652,0.3953,6.081,27.339,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.664,3511.082
-2479,0.876008,0,254.45044,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838464,82.57698,10.668564,11.893592,173.79273,8.275804,0.1108,66.126036,0.3953,6.081,27.34,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.669,3511.082
-2480,0.87496,0,254.46022,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83848,82.5787,10.66878,11.89384,173.79636,8.27598,0.1108,66.12742,0.3953,6.081,27.342,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.674,3511.082
-2481,0.873912,0,254.47,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838496,82.58042,10.668996,11.894088,173.79999,8.276156,0.1108,66.128804,0.3953,6.082,27.343,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.678,3511.082
-2482,0.872864,0,254.47979,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838512,82.58214,10.669212,11.894336,173.80362,8.276332,0.1108,66.130188,0.3953,6.082,27.345,4.998,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.683,3511.082
-2483,0.871816,0,254.48957,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838528,82.58386,10.669428,11.894584,173.80726,8.276508,0.1108,66.131572,0.3953,6.082,27.346,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.688,3511.082
-2484,0.870768,0,254.49936,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838544,82.58558,10.669644,11.894832,173.81089,8.276684,0.1108,66.132956,0.3953,6.083,27.348,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.692,3511.082
-2485,0.86972,0,254.50914,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83856,82.5873,10.66986,11.89508,173.81452,8.27686,0.1108,66.13434,0.3953,6.083,27.349,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.697,3511.082
-2486,0.868672,0,254.51892,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838576,82.58902,10.670076,11.895328,173.81815,8.277036,0.1108,66.135724,0.3953,6.083,27.351,4.999,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.702,3511.082
-2487,0.867624,0,254.52871,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838592,82.59074,10.670292,11.895576,173.82178,8.277212,0.1108,66.137108,0.3953,6.084,27.352,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.706,3511.082
-2488,0.866576,0,254.53849,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838608,82.59246,10.670508,11.895824,173.82542,8.277388,0.1108,66.138492,0.3953,6.084,27.354,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.711,3511.082
-2489,0.865528,0,254.54828,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838624,82.59418,10.670724,11.896072,173.82905,8.277564,0.1108,66.139876,0.3953,6.084,27.355,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.715,3511.082
-2490,0.86448,0,254.55806,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83864,82.5959,10.67094,11.89632,173.83268,8.27774,0.1108,66.14126,0.3953,6.085,27.357,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.72,3511.082
-2491,0.863432,0,254.56784,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838656,82.59762,10.671156,11.896568,173.83631,8.277916,0.1108,66.142644,0.3953,6.085,27.358,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.725,3511.082
-2492,0.862384,0,254.57763,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838672,82.59934,10.671372,11.896816,173.83994,8.278092,0.1108,66.144028,0.3953,6.085,27.359,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.729,3511.082
-2493,0.861336,0,254.58741,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838688,82.60106,10.671588,11.897064,173.84358,8.278268,0.1108,66.145412,0.3953,6.086,27.361,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.734,3511.082
-2494,0.860288,0,254.5972,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838704,82.60278,10.671804,11.897312,173.84721,8.278444,0.1108,66.146796,0.3953,6.086,27.362,5.001,1.24,0.176,0.159,0,0.059,0.308,0.041,0.004,0,0.181,0,158.738,3511.082
-2495,0.85924,0,254.60698,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83872,82.6045,10.67202,11.89756,173.85084,8.27862,0.1108,66.14818,0.3953,6.086,27.364,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.743,3511.082
-2496,0.858192,0,254.61676,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838736,82.60622,10.672236,11.897808,173.85447,8.278796,0.1108,66.149564,0.3953,6.087,27.365,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.747,3511.082
-2497,0.857144,0,254.62655,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838752,82.60794,10.672452,11.898056,173.8581,8.278972,0.1108,66.150948,0.3953,6.087,27.367,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.752,3511.082
-2498,0.856096,0,254.63633,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838768,82.60966,10.672668,11.898304,173.86174,8.279148,0.1108,66.152332,0.3953,6.087,27.368,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.756,3511.082
-2499,0.855048,0,254.64612,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838784,82.61138,10.672884,11.898552,173.86537,8.279324,0.1108,66.153716,0.3953,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.761,3511.082
-2500,0.854,0,254.6559,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.8388,82.6131,10.6731,11.8988,173.869,8.2795,0.1108,66.1551,0.3953,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.761,3511.082
diff --git a/inst/shinyApp/www/input/emissions/RCP85_custom_template.csv b/inst/shinyApp/www/input/emissions/RCP85_custom_template.csv
deleted file mode 100644
index bb91045..0000000
--- a/inst/shinyApp/www/input/emissions/RCP85_custom_template.csv
+++ /dev/null
@@ -1,740 +0,0 @@
-; RCP 8.5 emissions,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,Gg/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr
-Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,CF4_emissions,C2F6_emissions,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions
-1765,0.003,0,0,0,0,0,0,0,0,0,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1766,0.003,0.005338296,1.9632619,0.005191085,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1767,0.003,0.010676593,2.4364481,0.010116813,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1768,0.003,0.016014889,2.911105,0.015042803,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1769,0.003,0.021353185,3.3872782,0.019969063,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1770,0.003,0.026691482,3.8650146,0.024895601,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1771,0.004,0.032029778,4.3443625,0.029822427,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1772,0.004,0.037368074,4.8253718,0.034749548,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1773,0.004,0.042706371,5.3080938,0.039676975,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1774,0.004,0.048044667,5.7925816,0.044604715,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1775,0.004,0.053382963,6.2788896,0.04953278,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1776,0.004,0.058721259,6.7670743,0.05446118,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1777,0.004,0.064059556,7.2571937,0.059389923,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1778,0.004,0.069397852,7.7493076,0.064319022,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1779,0.004,0.074736148,8.2434776,0.069248487,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1780,0.004,0.080074445,8.7397674,0.07417833,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1781,0.005,0.085412741,9.2382426,0.079108562,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1782,0.005,0.090751037,9.7389706,0.084039195,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1783,0.005,0.096089334,10.242021,0.088970241,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1784,0.005,0.10142763,10.747466,0.093901714,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1785,0.005,0.10676593,11.25538,0.098833627,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1786,0.005,0.11210422,11.765839,0.10376599,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1787,0.005,0.11744252,12.278921,0.10869883,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1788,0.005,0.12278082,12.794707,0.11363214,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1789,0.005,0.12811911,13.313282,0.11856595,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1790,0.005,0.13345741,13.834732,0.12350027,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1791,0.006,0.1387957,14.359145,0.12843512,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1792,0.006,0.144134,14.886613,0.13337052,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1793,0.006,0.1494723,15.417231,0.13830648,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1794,0.006,0.15481059,15.951096,0.14324301,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1795,0.006,0.16014889,16.488308,0.14818014,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1796,0.006,0.16548719,17.028971,0.15311788,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1797,0.007,0.17082548,17.573192,0.15805626,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1798,0.007,0.17616378,18.121081,0.16299529,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1799,0.007,0.18150207,18.672751,0.167935,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1800,0.008,0.18684037,19.228319,0.1728754,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1801,0.008,0.19217867,19.787906,0.17781651,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1802,0.01,0.19751696,20.351635,0.18275836,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1803,0.009,0.20285526,20.919636,0.18770098,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1804,0.009,0.20819356,21.49204,0.19264437,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1805,0.009,0.21353185,22.068984,0.19758858,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1806,0.01,0.21887015,22.650607,0.20253362,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1807,0.01,0.22420845,23.237055,0.20747952,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1808,0.01,0.22954674,23.828476,0.2124263,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1809,0.01,0.23488504,24.425025,0.217374,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1810,0.01,0.24022333,25.02686,0.22232264,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1811,0.011,0.24556163,25.634145,0.22727225,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1812,0.011,0.25089993,26.247048,0.23222285,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1813,0.011,0.25623822,26.865743,0.2371745,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1814,0.011,0.26157652,27.490408,0.2421272,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1815,0.012,0.26691482,28.12123,0.247081,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1816,0.013,0.27225311,28.758398,0.25203593,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1817,0.014,0.27759141,29.402108,0.25699203,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1818,0.014,0.2829297,30.052563,0.26194932,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1819,0.014,0.288268,30.709971,0.26690786,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1820,0.014,0.2936063,31.374548,0.27186767,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1821,0.014,0.29894459,32.046514,0.2768288,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1822,0.015,0.30428289,32.7261,0.28179128,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1823,0.016,0.30962119,33.413539,0.28675516,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1824,0.016,0.31495948,34.109076,0.29172049,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1825,0.017,0.32029778,34.81296,0.2966873,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1826,0.017,0.32563608,35.52545,0.30165564,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1827,0.018,0.33097437,36.246813,0.30662557,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1828,0.018,0.33631267,36.977321,0.31159712,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1829,0.018,0.34165096,37.717259,0.31657035,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1830,0.024,0.34698926,38.466917,0.32154532,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1831,0.023,0.35232756,39.226597,0.32652206,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1832,0.023,0.35766585,39.996609,0.33150065,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1833,0.024,0.36300415,40.777271,0.33648114,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1834,0.024,0.36834245,41.568914,0.34146358,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1835,0.025,0.37368074,42.371876,0.34644803,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1836,0.029,0.37901904,43.186509,0.35143456,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1837,0.029,0.38435733,44.013173,0.35642324,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1838,0.03,0.38969563,44.85224,0.36141413,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1839,0.031,0.39503393,45.704093,0.36640729,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1840,0.032999999,0.40037222,46.569129,0.3714028,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1841,0.033999999,0.40571052,47.447755,0.37640073,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1842,0.035999999,0.41104882,48.34039,0.38140115,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1843,0.036999999,0.41638711,49.247469,0.38640415,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1844,0.038999999,0.42172541,50.169439,0.3914098,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1845,0.042999999,0.42706371,51.106759,0.39641818,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1846,0.042999999,0.432402,52.059904,0.40142938,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1847,0.045999999,0.4377403,53.029365,0.40644349,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1848,0.046999999,0.44307859,54.015644,0.41146059,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1849,0.049999999,0.44841689,55.019264,0.41648078,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1850,0.053999999,0.45375519,56.040759,0.42150415,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,157.267,3100.211
-1851,0.053999999,0.44678569,56.46132,0.42740096,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,157.267,3100.211
-1852,0.056999999,0.49862282,56.88188,0.46466062,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,157.267,3100.211
-1853,0.058999999,0.49735449,57.302441,0.46477417,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,157.267,3100.211
-1854,0.068999999,0.49581708,57.723001,0.46443647,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,157.267,3100.211
-1855,0.070999999,0.49367925,58.143562,0.46327909,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,157.267,3100.211
-1856,0.075999999,0.49893488,58.564122,0.46729312,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,157.267,3100.211
-1857,0.076999999,0.504232,58.984683,0.47126447,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,157.267,3100.211
-1858,0.077999999,0.50923298,59.405243,0.47503119,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,157.267,3100.211
-1859,0.082999999,0.51425389,59.825804,0.47876627,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,157.267,3100.211
-1860,0.090999999,0.51896689,60.246364,0.48257672,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,157.267,3100.211
-1861,0.094999998,0.5282236,59.614468,0.50499476,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,157.267,3100.211
-1862,0.096999998,0.47371663,58.982573,0.47111281,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,157.267,3100.211
-1863,0.104,0.47374912,58.350677,0.47444935,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,157.267,3100.211
-1864,0.112,0.47413825,57.718781,0.47785801,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,157.267,3100.211
-1865,0.119,0.47479536,57.086885,0.48144966,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,157.267,3100.211
-1866,0.122,0.47491218,56.45499,0.48420454,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,157.267,3100.211
-1867,0.13022269,0.47338353,55.823094,0.48472337,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,157.267,3100.211
-1868,0.13525196,0.47198274,55.191198,0.48595323,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,157.267,3100.211
-1869,0.14228123,0.47048522,54.559303,0.48686155,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,157.267,3100.211
-1870,0.14731051,0.46933399,53.927407,0.48774355,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,157.267,3100.211
-1871,0.15633978,0.48732546,56.683869,0.58501628,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,157.267,3100.211
-1872,0.17336905,0.56696435,59.440331,0.66673981,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,157.267,3100.211
-1873,0.18439832,0.57690133,62.196793,0.69637076,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,157.267,3100.211
-1874,0.1744276,0.58328394,64.953255,0.7087503,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,157.267,3100.211
-1875,0.18845687,0.5899696,67.709717,0.72034342,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,157.267,3100.211
-1876,0.19148614,0.59639187,70.46618,0.74524338,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,157.267,3100.211
-1877,0.19451541,0.60262312,73.222642,0.75633197,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,157.267,3100.211
-1878,0.196,0.6090507,75.979104,0.7660459,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,157.267,3100.211
-1879,0.21,0.61534752,78.735566,0.77491118,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,157.267,3100.211
-1880,0.236,0.62124317,81.492028,0.78412129,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,157.267,3100.211
-1881,0.243,0.64887292,84.359461,0.81157848,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,157.267,3100.211
-1882,0.256,0.60466403,87.226893,0.78526034,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,157.267,3100.211
-1883,0.272,0.60851762,90.094326,0.79255607,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,157.267,3100.211
-1884,0.275,0.61212775,92.961758,0.7987505,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,157.267,3100.211
-1885,0.27699999,0.61523611,95.829191,0.80453383,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,157.267,3100.211
-1886,0.28099999,0.61714413,98.696624,0.82619361,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,157.267,3100.211
-1887,0.295,0.61616314,101.56406,0.83219647,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,157.267,3100.211
-1888,0.32699999,0.61473356,104.43149,0.83705812,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,157.267,3100.211
-1889,0.32699999,0.6132002,107.29892,0.84143987,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,157.267,3100.211
-1890,0.35599999,0.61175412,110.16635,0.84552548,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,157.267,3100.211
-1891,0.37199999,0.61024855,111.52362,0.85098169,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,157.267,3100.211
-1892,0.37399999,0.62319119,112.88089,0.85741997,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,157.267,3100.211
-1893,0.36999999,0.62440331,114.23816,0.86475824,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,157.267,3100.211
-1894,0.38299999,0.64036719,115.59543,0.87294487,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,157.267,3100.211
-1895,0.40599999,0.64441851,116.9527,0.88188195,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,157.267,3100.211
-1896,0.41899999,0.6462784,118.30997,0.89141802,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,157.267,3100.211
-1897,0.43999999,0.64956412,119.66724,0.90140157,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,157.267,3100.211
-1898,0.46499999,0.65100098,121.02451,0.91168111,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,157.267,3100.211
-1899,0.50699999,0.65220446,122.38178,0.92210515,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,157.267,3100.211
-1900,0.53399999,0.65320628,123.73905,0.9325222,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,157.267,3100.211
-1901,0.55199999,0.70294318,124.8415,0.9446669,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,157.267,3100.211
-1902,0.56599999,0.70297364,125.94396,0.95993065,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,157.267,3100.211
-1903,0.61699999,0.72667096,127.04642,0.97764708,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,157.267,3100.211
-1904,0.62399999,0.74829324,128.14887,0.99722904,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,157.267,3100.211
-1905,0.66299999,0.76981521,129.25133,1.0181293,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,157.267,3100.211
-1906,0.70699999,0.79653384,130.35378,1.0397413,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,157.267,3100.211
-1907,0.78399999,0.80376274,131.45624,1.0614586,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,157.267,3100.211
-1908,0.74999999,0.81141278,132.5587,1.0826746,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,157.267,3100.211
-1909,0.78499999,0.81737807,133.66115,1.1027829,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,157.267,3100.211
-1910,0.81899999,0.82198169,134.76361,1.121177,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,157.267,3100.211
-1911,0.83599999,0.77889405,135.96943,1.1389722,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,157.267,3100.211
-1912,0.87899999,0.74784844,137.17525,1.1575596,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,157.267,3100.211
-1913,0.94299999,0.72297977,138.38107,1.1767464,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,157.267,3100.211
-1914,0.84999999,0.71479152,139.5869,1.1962611,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,157.267,3100.211
-1915,0.83799999,0.70574964,140.79272,1.2158443,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,157.267,3100.211
-1916,0.90099999,0.70811648,141.99854,1.2353217,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,157.267,3100.211
-1917,0.95499999,0.7111963,143.20436,1.254519,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,157.267,3100.211
-1918,0.93599999,0.71430427,144.41019,1.2732618,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,157.267,3100.211
-1919,0.80599999,0.71965435,145.61601,1.2913759,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,157.267,3100.211
-1920,0.93199999,0.72128338,146.82183,1.3086869,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,157.267,3100.211
-1921,0.80299999,0.75741661,147.86155,1.3257924,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,157.267,3100.211
-1922,0.84499999,0.7479409,148.90128,1.343275,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,157.267,3100.211
-1923,0.96999999,0.75328819,149.941,1.3609385,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,157.267,3100.211
-1924,0.96299999,0.75686059,150.98072,1.3796194,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,157.267,3100.211
-1925,0.97499999,0.75808855,152.02045,1.3998974,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,157.267,3100.211
-1926,0.98299999,0.76148327,153.06017,1.4211909,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,157.267,3100.211
-1927,1.062,0.79718283,154.09989,1.4429184,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,157.267,3100.211
-1928,1.065,0.79967141,155.13962,1.4644982,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,157.267,3100.211
-1929,1.145,0.82422601,156.17934,1.4853488,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,157.267,3100.211
-1930,1.053,0.89587975,157.21906,1.5048887,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,1.6637375,0.23563239,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,157.267,3100.211
-1931,0.93999999,0.90334082,158.34545,1.5226236,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,1.7507764,0.24803412,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,157.267,3100.211
-1932,0.84699999,0.81222597,159.47183,1.5385172,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,1.8423953,0.26108852,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,157.267,3100.211
-1933,0.89299999,0.80858849,160.59821,1.5526746,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,1.9388369,0.27483004,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,157.267,3100.211
-1934,0.97299999,0.79686256,161.7246,1.5653127,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,2.0403528,0.28929476,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,157.267,3100.211
-1935,1.027,0.79471575,162.85098,1.5771213,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,2.1472124,0.30452082,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,157.267,3100.211
-1936,1.13,0.80129993,163.97736,1.5889151,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,2.2596977,0.32054821,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,157.267,3100.211
-1937,1.209,0.77969902,165.10375,1.6015088,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,2.3781004,0.33741917,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,157.267,3100.211
-1938,1.142,0.78188222,166.23013,1.615717,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,2.5027381,0.35517808,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,157.267,3100.211
-1939,1.192,0.77944376,167.35651,1.6323545,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,2.6339328,0.37387169,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,157.267,3100.211
-1940,1.299,0.76683237,168.4829,1.6522358,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,2.7720335,0.39354912,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,157.267,3100.211
-1941,1.334,0.75036458,170.03046,1.7002044,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,2.9174066,0.41426223,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,157.267,3100.211
-1942,1.342,0.7690497,171.57803,1.7938613,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,3.0704314,0.39468287,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,157.267,3100.211
-1943,1.391,0.7637656,173.12559,1.9231582,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,3.2315097,0.37832187,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,157.267,3100.211
-1944,1.383,0.76839864,174.67315,2.0866797,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,3.4010636,0.3640764,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,157.267,3100.211
-1945,1.16,0.76914739,176.22072,2.280402,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,3.579544,0.35194679,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,157.267,3100.211
-1946,1.238,0.84214892,177.76828,2.4903635,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,3.7674167,0.34193311,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,157.267,3100.211
-1947,1.392,0.87017994,179.31584,2.7026031,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,3.9651774,0.33403572,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,157.267,3100.211
-1948,1.469,0.87513044,180.86341,2.9031595,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,4.1733472,0.32825472,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,157.267,3100.211
-1949,1.419,0.88212641,182.41097,3.0780722,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,4.3924702,0.32459037,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,157.267,3100.211
-1950,1.63,0.89233465,183.95853,3.2133815,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,4.62313,0.32304286,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,157.267,3100.211
-1951,1.768,1.0885201,189.11003,3.3186021,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,4.865916,0.32361242,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,157.267,3100.211
-1952,1.796,1.1096378,194.26153,3.4111061,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,5.121479,0.32629927,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,157.927,3117.785
-1953,1.841,1.1045171,199.41303,3.4887221,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,5.3904959,0.3311036,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,158.604,3137.148
-1954,1.865,1.1521416,204.56453,3.5543489,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,5.6736692,0.33802563,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,159.3,3158.216
-1955,2.043,1.1911855,209.71603,3.614111,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,5.9717491,0.34706557,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,160.014,3180.749
-1956,2.178,1.2446883,214.86753,3.6706801,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,6.2855162,0.35822365,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,160.748,3204.498
-1957,2.27,1.2718718,220.01902,3.7267318,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,6.6157969,0.37150001,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,161.502,3229.071
-1958,2.33,1.3195817,225.17052,3.7849451,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,6.9634615,0.38689499,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,162.277,3254.039
-1959,2.462,1.2035957,230.32202,3.8480013,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,7.3294266,0.40440867,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,163.073,3278.967
-1960,2.577,1.1922833,235.47352,3.9185827,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,7.7146508,0.42404135,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,163.892,3303.389
-1961,2.594,1.2443218,238.52217,4.0240052,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,8.1201607,0.4457932,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,164.735,3326.864
-1962,2.7,1.2355717,241.57083,4.1836477,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,8.5470132,0.46966444,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,165.601,3349.069
-1963,2.848,1.2442947,244.61948,4.3883117,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,14.984956,0.49565531,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.007,166.493,3369.713
-1964,3.008,1.2515879,247.66813,4.6374693,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,13.488099,0.52376596,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.003,0.014,167.41,3388.628
-1965,3.145,1.2642558,250.71679,4.8968181,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,13.488369,0.55399667,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.028,168.355,3405.698
-1966,3.305,1.2936968,253.76544,5.195583,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,13.488639,0.58634761,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.048,169.328,3420.923
-1967,3.411,1.2976254,256.81409,5.457478,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,13.488909,0.62081899,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.075,170.329,3434.335
-1968,3.588,1.2352028,259.86274,5.619744,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,13.48918,0.65741104,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.016,0.109,171.36,3446.065
-1969,3.8,1.2383879,262.9114,5.784831,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,13.489449,0.69612398,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.024,0.15,172.423,3456.224
-1970,4.076,1.1971129,265.96005,5.9368752,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,11.992564,0.73695798,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.043,0.197,173.518,3464.95
-1971,4.231,1.0708913,270.02505,5.6049759,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,13.489967,0.7799133,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.1,0.252,174.646,3472.409
-1972,4.399,1.0470621,274.09004,5.9181309,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,13.490244,0.82499011,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.17,0.313,175.809,3478.741
-1973,4.6349999,1.0330987,278.15504,6.0449043,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,13.490523,0.87218868,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.277,0.391,177.007,3484.114
-1974,4.644,1.0387371,282.22003,5.9406002,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,11.993645,0.9215092,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.372,0.468,178.243,3488.632
-1975,4.615,1.0315876,286.28503,6.1409693,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,13.49105,0.97295172,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.524,0.544,179.517,3492.425
-1976,4.883,1.0906077,290.35002,6.3042588,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,13.491328,1.0265167,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.783,0.621,180.83,3495.619
-1977,5.029,1.0939874,294.41502,6.534405,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,11.994452,1.0822044,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,1.006,0.697,182.185,3498.281
-1978,5.105,1.09037,298.48002,6.6193729,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,13.491857,1.1400146,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,1.253,0.774,183.581,3500.505
-1979,5.387,1.0647127,302.54501,7.007773,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,11.994981,1.1999481,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,1.548,0.85,185.022,3502.36
-1980,5.332,1.0252096,306.61001,7.0613923,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,13.492387,1.2620043,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,1.805,0.927,186.506,3503.915
-1981,5.168,1.0448621,310.01251,6.8417522,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,11.995499,1.3261846,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,2.139,1.003,188.038,3505.193
-1982,5.127,1.1904055,313.415,7.1189858,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,13.492893,1.392488,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,2.645,1.105,189.616,3506.255
-1983,5.11,1.2255201,316.8175,7.2168971,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,11.996004,1.4609153,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,2.98,1.183,191.243,3507.154
-1984,5.29,1.2600833,320.22,7.0481314,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,11.996242,1.5314669,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,3.475,1.262,192.92,3507.882
-1985,5.444,1.2753449,323.6225,7.0169243,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,11.99648,1.6041426,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,3.997,1.355,194.648,3508.496
-1986,5.61,1.2872023,327.025,7.0704917,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,13.493874,1.678943,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,4.579,1.434,196.427,3508.999
-1987,5.753,1.2940086,330.42749,7.4616728,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,11.996986,1.7558675,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,5.109,1.504,198.259,3509.425
-1988,5.964,1.3167248,333.82999,7.2025077,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,11.997224,1.8349176,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,5.696,1.728,200.146,3509.774
-1989,6.089,1.3236436,337.23249,7.3310397,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,11.997462,1.9160924,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,5.482,1.73,202.087,3510.061
-1990,6.144,1.3194833,340.63499,7.5856812,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,11.997683,2.0735678,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,5.119,1.73,204.082,3510.299
-1991,6.235,1.3809799,336.59218,7.4023631,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,11.997905,2.3729101,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,4.094,1.735,206.133,3510.501
-1992,6.118,1.3035304,332.54937,7.7989323,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,11.998111,2.3731469,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,2.74,1.715,208.24,3510.656
-1993,6.124,1.2981006,328.50656,7.3131034,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,11.998354,2.3733837,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,3.344,1.7,210.402,3510.801
-1994,6.242,1.2895956,324.46375,7.5072841,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,11.998587,2.3736205,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,4.75,1.68,212.619,3510.907
-1995,6.372,1.2750104,320.42094,7.6191035,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,10.501674,2.3738573,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,3.991,1.3,200.199,3511.005
-1996,6.51,1.2511025,316.37814,7.6520638,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,11.999071,2.3740941,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,2.691,0.85,201.834,3511.082
-1997,6.619,1.2181397,312.33533,7.9097526,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,11.999322,2.3743309,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,2.594,0.7,207.696,3511.082
-1998,6.588,1.2148431,308.29252,7.8957263,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,11.999575,2.3745677,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,2.491,0.71,206.946,3511.082
-1999,6.569,1.1827892,304.24971,7.5269849,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,10.502692,2.3748045,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,2.39,0.631,195.938,3511.082
-2000,6.735,1.1488,300.2069,150,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,12.0001,2.3749,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,2.295,0.562,186.206,3511.082
-2001,6.8959,1.132,303.4092,7.503,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,11.925,2.4345,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,2.209,0.5,181.525,3511.082
-2002,6.949,1.2317,306.5788,7.5487,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,11.8481,2.4915,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,2.131,0.445,181.887,3511.082
-2003,7.286,1.2257,309.7164,7.5942,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,11.7693,2.5463,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,2.057,0.396,177.539,3511.082
-2004,7.6719,1.2429,312.824,7.6394,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,11.6885,2.599,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,1.987,0.353,174.26,3511.082
-2005,7.971,1.1955,315.9027,7.6841,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,11.6059,2.6494,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,1.92,0.314,168.841,3511.082
-2006,8.1615,1.165,322.1577,7.778,55414.3,1058.9366,215.6435,38.9081,8.2076,36.1912,11.4149,2.6001,10.5529,12.3831,3.8842,17.9373,121.0746,15.3186,6.2176,38.6318,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,1.834,0.279,167.857,3511.082
-2007,8.3523,1.1349,328.4342,7.8717,54111.7,1056.3789,215.8292,39.0226,8.1641,35.9908,11.2221,2.5502,10.2947,13.7731,4.5338,22.1104,129.6223,18.1628,7.5465,50.375,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,1.752,0.249,167.857,3511.082
-2008,8.5434,1.1045,334.75397,7.9653667,52814.733,1053.8833,216.0247,39.1394,8.1208667,35.7901,11.0262,2.4998333,10.037233,15.162767,5.1847667,26.273033,137.2526,20.954333,8.8781,62.118267,6.7489333,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,1.675,0.221,167.857,3511.082
-2009,8.7345,1.0741,341.07373,8.0590333,51517.767,1051.3876,216.2202,39.2562,8.0776333,35.5894,10.8303,2.4494667,9.7797667,16.552433,5.8357333,30.435667,144.8829,23.745867,10.2097,73.861533,6.8965667,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,1.601,0.197,167.857,3511.082
-2010,8.9256,1.0437,347.3935,8.1527,50220.8,1048.892,216.4157,39.373,8.0344,35.3887,10.6344,2.3991,9.5223,17.9421,6.4867,34.5983,152.5132,26.5374,11.5413,85.6048,7.0442,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,1.521,0.175,167.857,3511.082
-2011,9.18679,1.02998,354.56076,8.29296,49968.5,1050.5457,217.31987,39.6333,7.99705,35.29844,10.74841,2.42213,8.68531,22.21208,6.56469,37.80811,163.76989,27.39032,10.50312,91.86659,7.1479,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,1.445,0.156,167.857,3511.082
-2012,9.44798,1.01626,361.72802,8.43322,49716.2,1052.1995,218.22404,39.8936,7.9597,35.20818,10.86242,2.44516,7.84832,26.48206,6.64268,41.01792,175.02658,28.24324,9.46494,98.12838,7.2516,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,1.373,0.139,167.857,3511.082
-2013,9.70917,1.00254,368.89528,8.57348,49463.9,1053.8532,219.12821,40.1539,7.92235,35.11792,10.97643,2.46819,7.01133,30.75204,6.72067,44.22773,186.28327,29.09616,8.42676,104.39017,7.3553,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,1.304,0.124,167.857,3511.082
-2014,9.97036,0.98882,376.06254,8.71374,49211.6,1055.507,220.03238,40.4142,7.885,35.02766,11.09044,2.49122,6.17434,35.02202,6.79866,47.43754,197.53996,29.94908,7.38858,110.65196,7.459,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,1.239,0.11,167.857,3511.082
-2015,10.23155,0.9751,383.2298,8.854,48959.3,1057.1607,220.93655,40.6745,7.84765,34.9374,11.20445,2.51425,5.33735,39.292,6.87665,50.64735,208.79665,30.802,6.3504,116.91375,7.5627,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,1.177,0.098,155.925,3511.082
-2016,10.49274,0.96138,390.39706,8.99426,48707,1058.8144,221.84072,40.9348,7.8103,34.84714,11.31846,2.53728,4.50036,43.56198,6.95464,53.85716,220.05334,31.65492,5.31222,123.17554,7.6664,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,1.118,0.087,155.925,3511.082
-2017,10.75393,0.94766,397.56432,9.13452,48454.7,1060.4682,222.74489,41.1951,7.77295,34.75688,11.43247,2.56031,3.66337,47.83196,7.03263,57.06697,231.31003,32.50784,4.27404,129.43733,7.7701,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,1.062,0.078,155.925,3511.082
-2018,11.01512,0.93394,404.73158,9.27478,48202.4,1062.1219,223.64906,41.4554,7.7356,34.66662,11.54648,2.58334,2.82638,52.10194,7.11062,60.27678,242.56672,33.36076,3.23586,135.69912,7.8738,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,1.009,0.069,155.925,3511.082
-2019,11.27631,0.92022,411.89884,9.41504,47950.1,1063.7757,224.55323,41.7157,7.69825,34.57636,11.66049,2.60637,1.98939,56.37192,7.18861,63.48659,253.82341,34.21368,2.19768,141.96091,7.9775,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0.959,0.061,155.925,3511.082
-2020,11.5375,0.9065,419.0661,9.5553,47697.8,1065.4294,225.4574,41.976,7.6609,34.4861,11.7745,2.6294,1.1524,60.6419,7.2666,66.6964,265.0801,35.0666,1.1595,148.2227,8.0812,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0.911,0.055,155.925,3511.082
-2021,11.76766,0.88735,425.58022,9.67767,47175.96,1060.7002,225.45703,41.9129,7.59914,34.34997,11.83853,2.64399,1.1063,61.78125,7.35248,67.92232,271.95969,35.3783,1.10411,152.77696,8.27191,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0.865,0.049,155.925,3511.082
-2022,11.99782,0.8682,432.09434,9.80004,46654.12,1055.971,225.45666,41.8498,7.53738,34.21384,11.90256,2.65858,1.0602,62.9206,7.43836,69.14824,278.83928,35.69,1.04872,157.33122,8.46262,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0.822,0.043,155.925,3511.082
-2023,12.22798,0.84905,438.60846,9.92241,46132.28,1051.2418,225.45629,41.7867,7.47562,34.07771,11.96659,2.67317,1.0141,64.05995,7.52424,70.37416,285.71887,36.0017,0.99333,161.88548,8.65333,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0.781,0.039,155.925,3511.082
-2024,12.45814,0.8299,445.12258,10.04478,45610.44,1046.5126,225.45592,41.7236,7.41386,33.94158,12.03062,2.68776,0.968,65.1993,7.61012,71.60008,292.59846,36.3134,0.93794,166.43974,8.84404,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0.742,0.034,155.925,3511.082
-2025,12.6883,0.81075,451.6367,10.16715,45088.6,1041.7833,225.45555,41.6605,7.3521,33.80545,12.09465,2.70235,0.9219,66.33865,7.696,72.826,299.47805,36.6251,0.88255,170.994,9.03475,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0.705,0.031,155.925,3511.082
-2026,12.91846,0.7916,458.15082,10.28952,44566.76,1037.0541,225.45518,41.5974,7.29034,33.66932,12.15868,2.71694,0.8758,67.478,7.78188,74.05192,306.35764,36.9368,0.82716,175.54826,9.22546,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0.669,0.027,155.925,3511.082
-2027,13.14862,0.77245,464.66494,10.41189,44044.92,1032.3249,225.45481,41.5343,7.22858,33.53319,12.22271,2.73153,0.8297,68.61735,7.86776,75.27784,313.23723,37.2485,0.77177,180.10252,9.41617,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0.636,0.024,155.925,3511.082
-2028,13.37878,0.7533,471.17906,10.53426,43523.08,1027.5957,225.45444,41.4712,7.16682,33.39706,12.28674,2.74612,0.7836,69.7567,7.95364,76.50376,320.11682,37.5602,0.71638,184.65678,9.60688,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0.604,0.022,155.925,3511.082
-2029,13.60894,0.73415,477.69318,10.65663,43001.24,1022.8665,225.45407,41.4081,7.10506,33.26093,12.35077,2.76071,0.7375,70.89605,8.03952,77.72968,326.99641,37.8719,0.66099,189.21104,9.79759,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0.574,0.019,155.925,3511.082
-2030,13.8391,0.715,484.2073,10.779,42479.4,1018.1373,225.4537,41.345,7.0433,33.1248,12.4148,2.7753,0.6914,72.0354,8.1254,78.9556,333.876,38.1836,0.6056,193.7653,9.9883,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0.545,0.017,155.925,3511.082
-2031,14.13385,0.708,493.52545,10.90391,41504.52,1011.8253,224.72621,40.90273,6.95231,32.96601,12.38727,2.77061,0.66362,72.90303,8.22403,81.08502,341.18468,38.94891,0.6214,192.50584,10.11551,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0.518,0.015,155.925,3511.082
-2032,14.4286,0.701,502.8436,11.02882,40529.64,1005.5133,223.99872,40.46046,6.86132,32.80722,12.35974,2.76592,0.63584,73.77066,8.32266,83.21444,348.49336,39.71422,0.6372,191.24638,10.24272,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0.492,0.013,155.925,3511.082
-2033,14.72335,0.694,512.16175,11.15373,39554.76,999.20136,223.27123,40.01819,6.77033,32.64843,12.33221,2.76123,0.60806,74.63829,8.42129,85.34386,355.80204,40.47953,0.653,189.98692,10.36993,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0.467,0.012,155.925,3511.082
-2034,15.0181,0.687,521.4799,11.27864,38579.88,992.88938,222.54374,39.57592,6.67934,32.48964,12.30468,2.75654,0.58028,75.50592,8.51992,87.47328,363.11072,41.24484,0.6688,188.72746,10.49714,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0.444,0.011,155.925,3511.082
-2035,15.31285,0.68,530.79805,11.40355,37605,986.5774,221.81625,39.13365,6.58835,32.33085,12.27715,2.75185,0.5525,76.37355,8.61855,89.6027,370.4194,42.01015,0.6846,187.468,10.62435,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0.422,0.01,155.925,3511.082
-2036,15.6076,0.673,540.1162,11.52846,36630.12,980.26542,221.08876,38.69138,6.49736,32.17206,12.24962,2.74716,0.52472,77.24118,8.71718,91.73212,377.72808,42.77546,0.7004,186.20854,10.75156,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0.401,0.008,155.925,3511.082
-2037,15.90235,0.666,549.43435,11.65337,35655.24,973.95344,220.36127,38.24911,6.40637,32.01327,12.22209,2.74247,0.49694,78.10881,8.81581,93.86154,385.03676,43.54077,0.7162,184.94908,10.87877,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0.381,0.008,155.925,3511.082
-2038,16.1971,0.659,558.7525,11.77828,34680.36,967.64146,219.63378,37.80684,6.31538,31.85448,12.19456,2.73778,0.46916,78.97644,8.91444,95.99096,392.34544,44.30608,0.732,183.68962,11.00598,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0.362,0.007,155.925,3511.082
-2039,16.49185,0.652,568.07065,11.90319,33705.48,961.32948,218.90629,37.36457,6.22439,31.69569,12.16703,2.73309,0.44138,79.84407,9.01307,98.12038,399.65412,45.07139,0.7478,182.43016,11.13319,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0.344,0.006,155.925,3511.082
-2040,16.7866,0.645,577.3888,12.0281,32730.6,955.0175,218.1788,36.9223,6.1334,31.5369,12.1395,2.7284,0.4136,80.7117,9.1117,100.2498,406.9628,45.8367,0.7636,181.1707,11.2604,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0.326,0.005,155.925,3511.082
-2041,17.1284,0.6381,587.33132,12.10488,32068.63,950.1349,217.20395,36.58085,6.08412,31.38737,12.17462,2.73746,0.39687,80.10127,9.23927,101.83831,412.75679,46.27373,0.71926,179.22469,11.3309,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0.31,0.005,155.925,3511.082
-2042,17.4702,0.6312,597.27384,12.18166,31406.66,945.2523,216.2291,36.2394,6.03484,31.23784,12.20974,2.74652,0.38014,79.49084,9.36684,103.42682,418.55078,46.71076,0.67492,177.27868,11.4014,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0.295,0.004,155.925,3511.082
-2043,17.812,0.6243,607.21636,12.25844,30744.69,940.3697,215.25425,35.89795,5.98556,31.08831,12.24486,2.75558,0.36341,78.88041,9.49441,105.01533,424.34477,47.14779,0.63058,175.33267,11.4719,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0.28,0.004,155.925,3511.082
-2044,18.1538,0.6174,617.15888,12.33522,30082.72,935.4871,214.2794,35.5565,5.93628,30.93878,12.27998,2.76464,0.34668,78.26998,9.62198,106.60384,430.13876,47.58482,0.58624,173.38666,11.5424,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0.266,0.003,155.925,3511.082
-2045,18.4956,0.6105,627.1014,12.412,29420.75,930.6045,213.30455,35.21505,5.887,30.78925,12.3151,2.7737,0.32995,77.65955,9.74955,108.19235,435.93275,48.02185,0.5419,171.44065,11.6129,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0.253,0.003,155.925,3511.082
-2046,18.8374,0.6036,637.04392,12.48878,28758.78,925.7219,212.3297,34.8736,5.83772,30.63972,12.35022,2.78276,0.31322,77.04912,9.87712,109.78086,441.72674,48.45888,0.49756,169.49464,11.6834,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0.24,0.003,155.925,3511.082
-2047,19.1792,0.5967,646.98644,12.56556,28096.81,920.8393,211.35485,34.53215,5.78844,30.49019,12.38534,2.79182,0.29649,76.43869,10.00469,111.36937,447.52073,48.89591,0.45322,167.54863,11.7539,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0.228,0.002,155.925,3511.082
-2048,19.521,0.5898,656.92896,12.64234,27434.84,915.9567,210.38,34.1907,5.73916,30.34066,12.42046,2.80088,0.27976,75.82826,10.13226,112.95788,453.31472,49.33294,0.40888,165.60262,11.8244,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0.217,0.002,155.925,3511.082
-2049,19.8628,0.5829,666.87148,12.71912,26772.87,911.0741,209.40515,33.84925,5.68988,30.19113,12.45558,2.80994,0.26303,75.21783,10.25983,114.54639,459.10871,49.76997,0.36454,163.65661,11.8949,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0.206,0.002,155.925,3511.082
-2050,20.2046,0.576,676.814,12.7959,26110.9,906.1915,208.4303,33.5078,5.6406,30.0416,12.4907,2.819,0.2463,74.6074,10.3874,116.1349,464.9027,50.207,0.3202,161.7106,11.9654,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0.195,0.002,155.925,3511.082
-2051,20.54375,0.5685,683.65001,12.85847,25770.37,899.68938,207.70767,33.32257,5.59518,29.87913,12.41897,2.80583,0.23542,75.55522,10.56431,117.32942,469.21826,50.42871,0.30297,160.45046,12.17483,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0.186,0.001,155.925,3511.082
-2052,20.8829,0.561,690.48602,12.92104,25429.84,893.18726,206.98504,33.13734,5.54976,29.71666,12.34724,2.79266,0.22454,76.50304,10.74122,118.52394,473.53382,50.65042,0.28574,159.19032,12.38426,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0.176,0.001,155.925,3511.082
-2053,21.22205,0.5535,697.32203,12.98361,25089.31,886.68514,206.26241,32.95211,5.50434,29.55419,12.27551,2.77949,0.21366,77.45086,10.91813,119.71846,477.84938,50.87213,0.26851,157.93018,12.59369,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0.168,0.001,155.925,3511.082
-2054,21.5612,0.546,704.15804,13.04618,24748.78,880.18302,205.53978,32.76688,5.45892,29.39172,12.20378,2.76632,0.20278,78.39868,11.09504,120.91298,482.16494,51.09384,0.25128,156.67004,12.80312,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0.159,0.001,155.925,3511.082
-2055,21.90035,0.5385,710.99405,13.10875,24408.25,873.6809,204.81715,32.58165,5.4135,29.22925,12.13205,2.75315,0.1919,79.3465,11.27195,122.1075,486.4805,51.31555,0.23405,155.4099,13.01255,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0.151,0.001,155.925,3511.082
-2056,22.2395,0.531,717.83006,13.17132,24067.72,867.17878,204.09452,32.39642,5.36808,29.06678,12.06032,2.73998,0.18102,80.29432,11.44886,123.30202,490.79606,51.53726,0.21682,154.14976,13.22198,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0.144,0.001,155.925,3511.082
-2057,22.57865,0.5235,724.66607,13.23389,23727.19,860.67666,203.37189,32.21119,5.32266,28.90431,11.98859,2.72681,0.17014,81.24214,11.62577,124.49654,495.11162,51.75897,0.19959,152.88962,13.43141,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0.136,0.001,155.925,3511.082
-2058,22.9178,0.516,731.50208,13.29646,23386.66,854.17454,202.64926,32.02596,5.27724,28.74184,11.91686,2.71364,0.15926,82.18996,11.80268,125.69106,499.42718,51.98068,0.18236,151.62948,13.64084,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0.13,0.001,155.925,3511.082
-2059,23.25695,0.5085,738.33809,13.35903,23046.13,847.67242,201.92663,31.84073,5.23182,28.57937,11.84513,2.70047,0.14838,83.13778,11.97959,126.88558,503.74274,52.20239,0.16513,150.36934,13.85027,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0.123,0.001,155.925,3511.082
-2060,23.5961,0.501,745.1741,13.4216,22705.6,841.1703,201.204,31.6555,5.1864,28.4169,11.7734,2.6873,0.1375,84.0856,12.1565,128.0801,508.0583,52.4241,0.1479,149.1092,14.0597,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0.117,0.001,155.925,3511.082
-2061,23.83271,0.4921,748.66794,13.47346,22441.48,836.60001,200.44051,31.50876,5.15328,28.30481,11.78015,2.69384,0.13105,85.06506,12.33644,129.34352,512.72379,52.64359,0.146,147.84735,14.00293,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0.111,0,155.925,3511.082
-2062,24.06932,0.4832,752.16178,13.52532,22177.36,832.02972,199.67702,31.36202,5.12016,28.19272,11.7869,2.70038,0.1246,86.04452,12.51638,130.60694,517.38928,52.86308,0.1441,146.5855,13.94616,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0.106,0,155.925,3511.082
-2063,24.30593,0.4743,755.65562,13.57718,21913.24,827.45943,198.91353,31.21528,5.08704,28.08063,11.79365,2.70692,0.11815,87.02398,12.69632,131.87036,522.05477,53.08257,0.1422,145.32365,13.88939,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0.1,0,155.925,3511.082
-2064,24.54254,0.4654,759.14946,13.62904,21649.12,822.88914,198.15004,31.06854,5.05392,27.96854,11.8004,2.71346,0.1117,88.00344,12.87626,133.13378,526.72026,53.30206,0.1403,144.0618,13.83262,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0.095,0,155.925,3511.082
-2065,24.77915,0.4565,762.6433,13.6809,21385,818.31885,197.38655,30.9218,5.0208,27.85645,11.80715,2.72,0.10525,88.9829,13.0562,134.3972,531.38575,53.52155,0.1384,142.79995,13.77585,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0.091,0,155.925,3511.082
-2066,25.01576,0.4476,766.13714,13.73276,21120.88,813.74856,196.62306,30.77506,4.98768,27.74436,11.8139,2.72654,0.0988,89.96236,13.23614,135.66062,536.05124,53.74104,0.1365,141.5381,13.71908,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0.086,0,155.925,3511.082
-2067,25.25237,0.4387,769.63098,13.78462,20856.76,809.17827,195.85957,30.62832,4.95456,27.63227,11.82065,2.73308,0.09235,90.94182,13.41608,136.92404,540.71673,53.96053,0.1346,140.27625,13.66231,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0.082,0,155.925,3511.082
-2068,25.48898,0.4298,773.12482,13.83648,20592.64,804.60798,195.09608,30.48158,4.92144,27.52018,11.8274,2.73962,0.0859,91.92128,13.59602,138.18746,545.38222,54.18002,0.1327,139.0144,13.60554,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0.078,0,155.925,3511.082
-2069,25.72559,0.4209,776.61866,13.88834,20328.52,800.03769,194.33259,30.33484,4.88832,27.40809,11.83415,2.74616,0.07945,92.90074,13.77596,139.45088,550.04771,54.39951,0.1308,137.75255,13.54877,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0.074,0,155.925,3511.082
-2070,25.9622,0.412,780.1125,13.9402,20064.4,795.4674,193.5691,30.1881,4.8552,27.296,11.8409,2.7527,0.073,93.8802,13.9559,140.7143,554.7132,54.619,0.1289,136.4907,13.492,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0.07,0,155.925,3511.082
-2071,26.10659,0.4017,784.24064,14.00204,19902.52,791.64666,193.07591,30.06564,4.83481,27.20364,11.8161,2.75174,0.06942,94.1193,14.18108,141.11548,559.74698,54.42783,0.12734,135.66527,13.63038,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0.067,0,155.925,3511.082
-2072,26.25098,0.3914,788.36878,14.06388,19740.64,787.82592,192.58272,29.94318,4.81442,27.11128,11.7913,2.75078,0.06584,94.3584,14.40626,141.51666,564.78076,54.23666,0.12578,134.83984,13.76876,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0.063,0,155.925,3511.082
-2073,26.39537,0.3811,792.49692,14.12572,19578.76,784.00518,192.08953,29.82072,4.79403,27.01892,11.7665,2.74982,0.06226,94.5975,14.63144,141.91784,569.81454,54.04549,0.12422,134.01441,13.90714,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0.06,0,155.925,3511.082
-2074,26.53976,0.3708,796.62506,14.18756,19416.88,780.18444,191.59634,29.69826,4.77364,26.92656,11.7417,2.74886,0.05868,94.8366,14.85662,142.31902,574.84832,53.85432,0.12266,133.18898,14.04552,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0.057,0,155.925,3511.082
-2075,26.68415,0.3605,800.7532,14.2494,19255,776.3637,191.10315,29.5758,4.75325,26.8342,11.7169,2.7479,0.0551,95.0757,15.0818,142.7202,579.8821,53.66315,0.1211,132.36355,14.1839,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0.054,0,155.925,3511.082
-2076,26.82854,0.3502,804.88134,14.31124,19093.12,772.54296,190.60996,29.45334,4.73286,26.74184,11.6921,2.74694,0.05152,95.3148,15.30698,143.12138,584.91588,53.47198,0.11954,131.53812,14.32228,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0.052,0,155.925,3511.082
-2077,26.97293,0.3399,809.00948,14.37308,18931.24,768.72222,190.11677,29.33088,4.71247,26.64948,11.6673,2.74598,0.04794,95.5539,15.53216,143.52256,589.94966,53.28081,0.11798,130.71269,14.46066,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0.049,0,155.925,3511.082
-2078,27.11732,0.3296,813.13762,14.43492,18769.36,764.90148,189.62358,29.20842,4.69208,26.55712,11.6425,2.74502,0.04436,95.793,15.75734,143.92374,594.98344,53.08964,0.11642,129.88726,14.59904,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0.046,0,155.925,3511.082
-2079,27.26171,0.3193,817.26576,14.49676,18607.48,761.08074,189.13039,29.08596,4.67169,26.46476,11.6177,2.74406,0.04078,96.0321,15.98252,144.32492,600.01722,52.89847,0.11486,129.06183,14.73742,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0.044,0,155.925,3511.082
-2080,27.4061,0.309,821.3939,14.5586,18445.6,757.26,188.6372,28.9635,4.6513,26.3724,11.5929,2.7431,0.0372,96.2712,16.2077,144.7261,605.051,52.7073,0.1133,128.2364,14.8758,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0.042,0,155.925,3511.082
-2081,27.49916,0.2975,826.32941,14.63201,18048.69,753.34328,187.89006,28.78615,4.62775,26.23123,11.54293,2.73607,0.03348,95.76444,16.48786,145.0082,609.85911,52.45431,0.11214,127.43725,14.99349,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0.04,0,155.925,3511.082
-2082,27.59222,0.286,831.26492,14.70542,17651.78,749.42656,187.14292,28.6088,4.6042,26.09006,11.49296,2.72904,0.02976,95.25768,16.76802,145.2903,614.66722,52.20132,0.11098,126.6381,15.11118,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0.038,0,155.925,3511.082
-2083,27.68528,0.2745,836.20043,14.77883,17254.87,745.50984,186.39578,28.43145,4.58065,25.94889,11.44299,2.72201,0.02604,94.75092,17.04818,145.5724,619.47533,51.94833,0.10982,125.83895,15.22887,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0.036,0,155.925,3511.082
-2084,27.77834,0.263,841.13594,14.85224,16857.96,741.59312,185.64864,28.2541,4.5571,25.80772,11.39302,2.71498,0.02232,94.24416,17.32834,145.8545,624.28344,51.69534,0.10866,125.0398,15.34656,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0.034,0,155.925,3511.082
-2085,27.8714,0.2515,846.07145,14.92565,16461.05,737.6764,184.9015,28.07675,4.53355,25.66655,11.34305,2.70795,0.0186,93.7374,17.6085,146.1366,629.09155,51.44235,0.1075,124.24065,15.46425,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0.032,0,155.925,3511.082
-2086,27.96446,0.24,851.00696,14.99906,16064.14,733.75968,184.15436,27.8994,4.51,25.52538,11.29308,2.70092,0.01488,93.23064,17.88866,146.4187,633.89966,51.18936,0.10634,123.4415,15.58194,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0.031,0,155.925,3511.082
-2087,28.05752,0.2285,855.94247,15.07247,15667.23,729.84296,183.40722,27.72205,4.48645,25.38421,11.24311,2.69389,0.01116,92.72388,18.16882,146.7008,638.70777,50.93637,0.10518,122.64235,15.69963,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0.029,0,155.925,3511.082
-2088,28.15058,0.217,860.87798,15.14588,15270.32,725.92624,182.66008,27.5447,4.4629,25.24304,11.19314,2.68686,0.00744,92.21712,18.44898,146.9829,643.51588,50.68338,0.10402,121.8432,15.81732,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0.028,0,155.925,3511.082
-2089,28.24364,0.2055,865.81349,15.21929,14873.41,722.00952,181.91294,27.36735,4.43935,25.10187,11.14317,2.67983,0.00372,91.71036,18.72914,147.265,648.32399,50.43039,0.10286,121.04405,15.93501,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0.026,0,155.925,3511.082
-2090,28.3367,0.194,870.749,15.2927,14476.5,718.0928,181.1658,27.19,4.4158,24.9607,11.0932,2.6728,0,91.2036,19.0093,147.5471,653.1321,50.1774,0.1017,120.2449,16.0527,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0.025,0,155.925,3511.082
-2091,28.37703,0.1823,872.43319,15.34099,14314.49,715.31184,180.67318,27.09516,4.39918,24.85535,11.06043,2.66808,0,90.20593,19.2916,147.62282,658.16476,49.84386,0.10064,121.40096,16.13966,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0.024,0,155.925,3511.082
-2092,28.41736,0.1706,874.11738,15.38928,14152.48,712.53088,180.18056,27.00032,4.38256,24.75,11.02766,2.66336,0,89.20826,19.5739,147.69854,663.19742,49.51032,0.09958,122.55702,16.22662,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0.023,0,155.925,3511.082
-2093,28.45769,0.1589,875.80157,15.43757,13990.47,709.74992,179.68794,26.90548,4.36594,24.64465,10.99489,2.65864,0,88.21059,19.8562,147.77426,668.23008,49.17678,0.09852,123.71308,16.31358,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0.022,0,155.925,3511.082
-2094,28.49802,0.1472,877.48576,15.48586,13828.46,706.96896,179.19532,26.81064,4.34932,24.5393,10.96212,2.65392,0,87.21292,20.1385,147.84998,673.26274,48.84324,0.09746,124.86914,16.40054,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0.02,0,155.925,3511.082
-2095,28.53835,0.1355,879.16995,15.53415,13666.45,704.188,178.7027,26.7158,4.3327,24.43395,10.92935,2.6492,0,86.21525,20.4208,147.9257,678.2954,48.5097,0.0964,126.0252,16.4875,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0.019,0,155.925,3511.082
-2096,28.57868,0.1238,880.85414,15.58244,13504.44,701.40704,178.21008,26.62096,4.31608,24.3286,10.89658,2.64448,0,85.21758,20.7031,148.00142,683.32806,48.17616,0.09534,127.18126,16.57446,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0.018,0,155.925,3511.082
-2097,28.61901,0.1121,882.53833,15.63073,13342.43,698.62608,177.71746,26.52612,4.29946,24.22325,10.86381,2.63976,0,84.21991,20.9854,148.07714,688.36072,47.84262,0.09428,128.33732,16.66142,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0.018,0,155.925,3511.082
-2098,28.65934,0.1004,884.22252,15.67902,13180.42,695.84512,177.22484,26.43128,4.28284,24.1179,10.83104,2.63504,0,83.22224,21.2677,148.15286,693.39338,47.50908,0.09322,129.49338,16.74838,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0.017,0,155.925,3511.082
-2099,28.69967,0.0887,885.90671,15.72731,13018.41,693.06416,176.73222,26.33644,4.26622,24.01255,10.79827,2.63032,0,82.22457,21.55,148.22858,698.42604,47.17554,0.09216,130.64944,16.83534,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0.016,0,155.925,3511.082
-2100,28.74,0.077,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0.015,0,155.925,3511.082
-2101,28.74,0.07392,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0.014,0,155.925,3511.082
-2102,28.74,0.07084,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0.014,0,155.925,3511.082
-2103,28.74,0.06776,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0.013,0,155.925,3511.082
-2104,28.74,0.06468,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0.012,0,155.925,3511.082
-2105,28.74,0.0616,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0.012,0,155.925,3511.082
-2106,28.74,0.05852,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0.011,0,155.925,3511.082
-2107,28.74,0.05544,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0.011,0,155.925,3511.082
-2108,28.74,0.05236,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0.01,0,155.925,3511.082
-2109,28.74,0.04928,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0.009,0,155.925,3511.082
-2110,28.74,0.0462,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0.009,0,155.925,3511.082
-2111,28.74,0.04312,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0.009,0,155.925,3511.082
-2112,28.74,0.04004,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0.008,0,155.925,3511.082
-2113,28.74,0.03696,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0.008,0,155.925,3511.082
-2114,28.74,0.03388,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0.007,0,155.925,3511.082
-2115,28.74,0.0308,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0.007,0,155.925,3511.082
-2116,28.74,0.02772,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0.007,0,155.925,3511.082
-2117,28.74,0.02464,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0.006,0,155.925,3511.082
-2118,28.74,0.02156,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0.006,0,155.925,3511.082
-2119,28.74,0.01848,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0.006,0,155.925,3511.082
-2120,28.74,0.0154,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0.005,0,155.925,3511.082
-2121,28.74,0.01232,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0.005,0,155.925,3511.082
-2122,28.74,0.00924,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0.005,0,155.925,3511.082
-2123,28.74,0.00616,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0.005,0,155.925,3511.082
-2124,28.74,0.00308,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0.004,0,155.925,3511.082
-2125,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0.004,0,155.925,3511.082
-2126,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0.004,0,155.925,3511.082
-2127,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0.004,0,155.925,3511.082
-2128,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0.004,0,155.925,3511.082
-2129,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0.003,0,155.925,3511.082
-2130,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0.003,0,155.925,3511.082
-2131,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0.003,0,155.925,3511.082
-2132,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0.003,0,155.925,3511.082
-2133,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0.003,0,155.925,3511.082
-2134,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0.003,0,155.925,3511.082
-2135,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0.002,0,155.925,3511.082
-2136,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0.002,0,155.925,3511.082
-2137,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0.002,0,155.925,3511.082
-2138,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0.002,0,155.925,3511.082
-2139,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0.002,0,155.925,3511.082
-2140,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0.002,0,155.925,3511.082
-2141,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0.002,0,155.925,3511.082
-2142,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0.002,0,155.925,3511.082
-2143,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0.002,0,155.925,3511.082
-2144,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0.002,0,155.925,3511.082
-2145,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0.001,0,155.925,3511.082
-2146,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0.001,0,155.925,3511.082
-2147,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0.001,0,155.925,3511.082
-2148,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0.001,0,155.925,3511.082
-2149,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.405,0,0,0,0,0,0,0,0.166,0.001,0,0.001,0,155.925,3511.082
-2150,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.392,0,0,0,0,0,0,0,0.157,0,0,0.001,0,155.925,3511.082
-2151,28.470205,0,887.7612,15.750727,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.656371,2.5994163,0.007146939,81.237246,21.837794,148.35837,703.62182,46.859673,0.091385714,131.82622,16.758923,0.379,0,0,0,0,0,0,0,0.15,0,0,0.001,0,155.925,3511.082
-2152,28.20041,0,887.93151,15.725853,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.547243,2.5732327,0.014293878,81.247592,21.843288,148.41245,703.78494,46.877347,0.091671429,131.84693,16.595547,0.366,0,0,0,0,0,0,0,0.142,0,0,0.001,0,155.925,3511.082
-2153,27.930615,0,888.10181,15.70098,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.438114,2.547049,0.021440816,81.257938,21.848782,148.46652,703.94806,46.89502,0.091957143,131.86765,16.43217,0.354,0,0,0,0,0,0,0,0.135,0,0,0.001,0,155.925,3511.082
-2154,27.66082,0,888.27211,15.676106,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.328986,2.5208653,0.028587755,81.268284,21.854276,148.5206,704.11118,46.912694,0.092242857,131.88837,16.268794,0.342,0,0,0,0,0,0,0,0.128,0,0,0.001,0,155.925,3511.082
-2155,27.391026,0,888.44242,15.651233,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.219857,2.4946816,0.035734694,81.27863,21.859769,148.57467,704.2743,46.930367,0.092528571,131.90908,16.105417,0.331,0,0,0,0,0,0,0,0.122,0,0,0.001,0,155.925,3511.082
-2156,27.121231,0,888.61272,15.626359,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.110729,2.468498,0.042881633,81.288976,21.865263,148.62875,704.43742,46.948041,0.092814286,131.9298,15.942041,0.32,0,0,0,0,0,0,0,0.116,0,0,0.001,0,155.925,3511.082
-2157,26.851436,0,888.78302,15.601486,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.0016,2.4423143,0.050028571,81.299321,21.870757,148.68282,704.60054,46.965714,0.0931,131.95051,15.778664,0.31,0,0,0,0,0,0,0,0.11,0,0,0.001,0,155.925,3511.082
-2158,26.581641,0,888.95332,15.576612,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.8924714,2.4161306,0.05717551,81.309667,21.876251,148.7369,704.76366,46.983388,0.093385714,131.97123,15.615288,0.299,0,0,0,0,0,0,0,0.104,0,0,0.001,0,155.925,3511.082
-2159,26.311846,0,889.12363,15.551739,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.7833429,2.3899469,0.064322449,81.320013,21.881745,148.79097,704.92678,47.001061,0.093671429,131.99195,15.451911,0.29,0,0,0,0,0,0,0,0.099,0,0,0.001,0,155.925,3511.082
-2160,26.042051,0,889.29393,15.526865,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.6742143,2.3637633,0.071469388,81.330359,21.887239,148.84504,705.0899,47.018735,0.093957143,132.01266,15.288535,0.28,0,0,0,0,0,0,0,0.094,0,0,0.001,0,155.925,3511.082
-2161,25.772256,0,889.46423,15.501992,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.5650857,2.3375796,0.078616327,81.340705,21.892733,148.89912,705.25302,47.036408,0.094242857,132.03338,15.125158,0.271,0,0,0,0,0,0,0,0.09,0,0,0.001,0,155.925,3511.082
-2162,25.502461,0,889.63454,15.477118,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.4559571,2.3113959,0.085763265,81.351051,21.898227,148.95319,705.41614,47.054082,0.094528571,132.0541,14.961782,0.262,0,0,0,0,0,0,0,0.085,0,0,0.001,0,155.925,3511.082
-2163,25.232666,0,889.80484,15.452245,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.3468286,2.2852122,0.092910204,81.361397,21.90372,149.00727,705.57927,47.071755,0.094814286,132.07481,14.798405,0.253,0,0,0,0,0,0,0,0.081,0,0,0.001,0,155.925,3511.082
-2164,24.962871,0,889.97514,15.427371,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.2377,2.2590286,0.10005714,81.371743,21.909214,149.06134,705.74239,47.089429,0.0951,132.09553,14.635029,0.245,0,0,0,0,0,0,0,0.077,0,0,0.001,0,155.925,3511.082
-2165,24.693077,0,890.14545,15.402498,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.1285714,2.2328449,0.10720408,81.382089,21.914708,149.11542,705.90551,47.107102,0.095385714,132.11624,14.471652,0.237,0,0,0,0,0,0,0,0.073,0,0,0.001,0,155.925,3511.082
-2166,24.423282,0,890.31575,15.377624,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.0194429,2.2066612,0.11435102,81.392435,21.920202,149.16949,706.06863,47.124776,0.095671429,132.13696,14.308276,0.229,0,0,0,0,0,0,0,0.069,0,0,0.001,0,155.925,3511.082
-2167,24.153487,0,890.48605,15.352751,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.9103143,2.1804776,0.12149796,81.402781,21.925696,149.22357,706.23175,47.142449,0.095957143,132.15768,14.144899,0.221,0,0,0,0,0,0,0,0.066,0,0,0,0,155.925,3511.082
-2168,23.883692,0,890.65636,15.327878,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.8011857,2.1542939,0.1286449,81.413127,21.93119,149.27764,706.39487,47.160122,0.096242857,132.17839,13.981522,0.214,0,0,0,0,0,0,0,0.063,0,0,0,0,155.925,3511.082
-2169,23.613897,0,890.82666,15.303004,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.6920571,2.1281102,0.13579184,81.423472,21.936684,149.33172,706.55799,47.177796,0.096528571,132.19911,13.818146,0.207,0,0,0,0,0,0,0,0.059,0,0,0,0,155.925,3511.082
-2170,23.344102,0,890.99696,15.278131,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.5829286,2.1019265,0.14293878,81.433818,21.942178,149.38579,706.72111,47.195469,0.096814286,132.21983,13.654769,0.2,0,0,0,0,0,0,0,0.056,0,0,0,0,155.925,3511.082
-2171,23.074307,0,891.16726,15.253257,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.4738,2.0757429,0.15008571,81.444164,21.947671,149.43986,706.88423,47.213143,0.0971,132.24054,13.491393,0.194,0,0,0,0,0,0,0,0.054,0,0,0,0,155.925,3511.082
-2172,22.804512,0,891.33757,15.228384,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.3646714,2.0495592,0.15723265,81.45451,21.953165,149.49394,707.04735,47.230816,0.097385714,132.26126,13.328016,0.187,0,0,0,0,0,0,0,0.051,0,0,0,0,155.925,3511.082
-2173,22.534717,0,891.50787,15.20351,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.2555429,2.0233755,0.16437959,81.464856,21.958659,149.54801,707.21047,47.24849,0.097671429,132.28198,13.16464,0.181,0,0,0,0,0,0,0,0.048,0,0,0,0,155.925,3511.082
-2174,22.264922,0,891.67817,15.178637,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.1464143,1.9971918,0.17152653,81.475202,21.964153,149.60209,707.37359,47.266163,0.097957143,132.30269,13.001263,0.175,0,0,0,0,0,0,0,0.046,0,0,0,0,155.925,3511.082
-2175,21.995128,0,891.84848,15.153763,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.0372857,1.9710082,0.17867347,81.485548,21.969647,149.65616,707.53671,47.283837,0.098242857,132.32341,12.837887,0.169,0,0,0,0,0,0,0,0.044,0,0,0,0,155.925,3511.082
-2176,21.725333,0,892.01878,15.12889,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.9281571,1.9448245,0.18582041,81.495894,21.975141,149.71024,707.69983,47.30151,0.098528571,132.34412,12.67451,0.164,0,0,0,0,0,0,0,0.042,0,0,0,0,155.925,3511.082
-2177,21.455538,0,892.18908,15.104016,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.8190286,1.9186408,0.19296735,81.50624,21.980635,149.76431,707.86295,47.319184,0.098814286,132.36484,12.511134,0.158,0,0,0,0,0,0,0,0.039,0,0,0,0,155.925,3511.082
-2178,21.185743,0,892.35939,15.079143,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.7099,1.8924571,0.20011429,81.516586,21.986129,149.81839,708.02607,47.336857,0.0991,132.38556,12.347757,0.153,0,0,0,0,0,0,0,0.037,0,0,0,0,155.925,3511.082
-2179,20.915948,0,892.52969,15.054269,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.6007714,1.8662735,0.20726122,81.526932,21.991622,149.87246,708.18919,47.354531,0.099385714,132.40627,12.184381,0.148,0,0,0,0,0,0,0,0.036,0,0,0,0,155.925,3511.082
-2180,20.646153,0,892.69999,15.029396,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.4916429,1.8400898,0.21440816,81.537278,21.997116,149.92653,708.35231,47.372204,0.099671429,132.42699,12.021004,0.143,0,0,0,0,0,0,0,0.034,0,0,0,0,155.925,3511.082
-2181,20.376358,0,892.87029,15.004522,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.3825143,1.8139061,0.2215551,81.547623,22.00261,149.98061,708.51543,47.389878,0.099957143,132.44771,11.857628,0.138,0,0,0,0,0,0,0,0.032,0,0,0,0,155.925,3511.082
-2182,20.106563,0,893.0406,14.979649,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.2733857,1.7877224,0.22870204,81.557969,22.008104,150.03468,708.67855,47.407551,0.10024286,132.46842,11.694251,0.134,0,0,0,0,0,0,0,0.031,0,0,0,0,155.925,3511.082
-2183,19.836768,0,893.2109,14.954776,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.1642571,1.7615388,0.23584898,81.568315,22.013598,150.08876,708.84167,47.425224,0.10052857,132.48914,11.530874,0.129,0,0,0,0,0,0,0,0.029,0,0,0,0,155.925,3511.082
-2184,19.566973,0,893.3812,14.929902,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.0551286,1.7353551,0.24299592,81.578661,22.019092,150.14283,709.00479,47.442898,0.10081429,132.50986,11.367498,0.125,0,0,0,0,0,0,0,0.028,0,0,0,0,155.925,3511.082
-2185,19.297179,0,893.55151,14.905029,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.946,1.7091714,0.25014286,81.589007,22.024586,150.19691,709.16791,47.460571,0.1011,132.53057,11.204121,0.121,0,0,0,0,0,0,0,0.026,0,0,0,0,155.925,3511.082
-2186,19.027384,0,893.72181,14.880155,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.8368714,1.6829878,0.2572898,81.599353,22.03008,150.25098,709.33103,47.478245,0.10138571,132.55129,11.040745,0.117,0,0,0,0,0,0,0,0.025,0,0,0,0,155.925,3511.082
-2187,18.757589,0,893.89211,14.855282,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.7277429,1.6568041,0.26443673,81.609699,22.035573,150.30506,709.49416,47.495918,0.10167143,132.572,10.877368,0.113,0,0,0,0,0,0,0,0.024,0,0,0,0,155.925,3511.082
-2188,18.487794,0,894.06242,14.830408,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.6186143,1.6306204,0.27158367,81.620045,22.041067,150.35913,709.65728,47.513592,0.10195714,132.59272,10.713992,0.109,0,0,0,0,0,0,0,0.022,0,0,0,0,155.925,3511.082
-2189,18.217999,0,894.23272,14.805535,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.5094857,1.6044367,0.27873061,81.630391,22.046561,150.41321,709.8204,47.531265,0.10224286,132.61344,10.550615,0.106,0,0,0,0,0,0,0,0.021,0,0,0,0,155.925,3511.082
-2190,17.948204,0,894.40302,14.780661,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.4003571,1.5782531,0.28587755,81.640737,22.052055,150.46728,709.98352,47.548939,0.10252857,132.63415,10.387239,0.102,0,0,0,0,0,0,0,0.02,0,0,0,0,155.925,3511.082
-2191,17.678409,0,894.57333,14.755788,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.2912286,1.5520694,0.29302449,81.651083,22.057549,150.52135,710.14664,47.566612,0.10281429,132.65487,10.223862,0.099,0,0,0,0,0,0,0,0.019,0,0,0,0,155.925,3511.082
-2192,17.408614,0,894.74363,14.730914,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.1821,1.5258857,0.30017143,81.661429,22.063043,150.57543,710.30976,47.584286,0.1031,132.67559,10.060486,0.096,0,0,0,0,0,0,0,0.018,0,0,0,0,155.925,3511.082
-2193,17.138819,0,894.91393,14.706041,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.0729714,1.499702,0.30731837,81.671774,22.068537,150.6295,710.47288,47.601959,0.10338571,132.6963,9.8971092,0.093,0,0,0,0,0,0,0,0.017,0,0,0,0,155.925,3511.082
-2194,16.869024,0,895.08423,14.681167,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.9638429,1.4735184,0.31446531,81.68212,22.074031,150.68358,710.636,47.619633,0.10367143,132.71702,9.7337327,0.089,0,0,0,0,0,0,0,0.016,0,0,0,0,155.925,3511.082
-2195,16.59923,0,895.25454,14.656294,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.8547143,1.4473347,0.32161224,81.692466,22.079524,150.73765,710.79912,47.637306,0.10395714,132.73773,9.5703561,0.087,0,0,0,0,0,0,0,0.016,0,0,0,0,155.925,3511.082
-2196,16.329435,0,895.42484,14.63142,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.7455857,1.421151,0.32875918,81.702812,22.085018,150.79173,710.96224,47.65498,0.10424286,132.75845,9.4069796,0.084,0,0,0,0,0,0,0,0.015,0,0,0,0,155.925,3511.082
-2197,16.05964,0,895.59514,14.606547,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.6364571,1.3949673,0.33590612,81.713158,22.090512,150.8458,711.12536,47.672653,0.10452857,132.77917,9.2436031,0.081,0,0,0,0,0,0,0,0.014,0,0,0,0,155.925,3511.082
-2198,15.789845,0,895.76545,14.581673,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.5273286,1.3687837,0.34305306,81.723504,22.096006,150.89988,711.28848,47.690327,0.10481429,132.79988,9.0802265,0.078,0,0,0,0,0,0,0,0.013,0,0,0,0,155.925,3511.082
-2199,15.52005,0,895.93575,14.5568,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.4182,1.3426,0.3502,81.73385,22.1015,150.95395,711.4516,47.708,0.1051,132.8206,8.91685,0.076,0,0,0,0,0,0,0,0.013,0,0,0,0,155.925,3511.082
-2200,15.250255,0,896.10605,14.531927,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.3090714,1.3164163,0.35734694,81.744196,22.106994,151.00802,711.61472,47.725673,0.10538571,132.84132,8.7534735,0.073,0,0,0,0,0,0,0,0.012,0,0,0,0,155.925,3511.082
-2201,14.98046,0,896.27636,14.507053,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.1999429,1.2902327,0.36449388,81.754542,22.112488,151.0621,711.77784,47.743347,0.10567143,132.86203,8.5900969,0.071,0,0,0,0,0,0,0,0.012,0,0,0,0,155.925,3511.082
-2202,14.710665,0,896.44666,14.48218,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.0908143,1.264049,0.37164082,81.764888,22.117982,151.11617,711.94096,47.76102,0.10595714,132.88275,8.4267204,0.068,0,0,0,0,0,0,0,0.011,0,0,0,0,155.925,3511.082
-2203,14.44087,0,896.61696,14.457306,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.9816857,1.2378653,0.37878776,81.775234,22.123476,151.17025,712.10408,47.778694,0.10624286,132.90347,8.2633439,0.066,0,0,0,0,0,0,0,0.01,0,0,0,0,155.925,3511.082
-2204,14.171076,0,896.78727,14.432433,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.8725571,1.2116816,0.38593469,81.78558,22.128969,151.22432,712.2672,47.796367,0.10652857,132.92418,8.0999673,0.064,0,0,0,0,0,0,0,0.01,0,0,0,0,155.925,3511.082
-2205,13.901281,0,896.95757,14.407559,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.7634286,1.185498,0.39308163,81.795926,22.134463,151.2784,712.43032,47.814041,0.10681429,132.9449,7.9365908,0.062,0,0,0,0,0,0,0,0.009,0,0,0,0,155.925,3511.082
-2206,13.631486,0,897.12787,14.382686,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.6543,1.1593143,0.40022857,81.806271,22.139957,151.33247,712.59344,47.831714,0.1071,132.96561,7.7732143,0.06,0,0,0,0,0,0,0,0.009,0,0,0,0,155.925,3511.082
-2207,13.361691,0,897.29817,14.357812,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.5451714,1.1331306,0.40737551,81.816617,22.145451,151.38655,712.75656,47.849388,0.10738571,132.98633,7.6098378,0.058,0,0,0,0,0,0,0,0.008,0,0,0,0,155.925,3511.082
-2208,13.091896,0,897.46848,14.332939,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.4360429,1.1069469,0.41452245,81.826963,22.150945,151.44062,712.91968,47.867061,0.10767143,133.00705,7.4464612,0.056,0,0,0,0,0,0,0,0.008,0,0,0,0,155.925,3511.082
-2209,12.822101,0,897.63878,14.308065,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.3269143,1.0807633,0.42166939,81.837309,22.156439,151.49469,713.0828,47.884735,0.10795714,133.02776,7.2830847,0.054,0,0,0,0,0,0,0,0.008,0,0,0,0,155.925,3511.082
-2210,12.552306,0,897.80908,14.283192,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.2177857,1.0545796,0.42881633,81.847655,22.161933,151.54877,713.24592,47.902408,0.10824286,133.04848,7.1197082,0.052,0,0,0,0,0,0,0,0.007,0,0,0,0,155.925,3511.082
-2211,12.282511,0,897.97939,14.258318,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.1086571,1.0283959,0.43596327,81.858001,22.167427,151.60284,713.40904,47.920082,0.10852857,133.0692,6.9563316,0.051,0,0,0,0,0,0,0,0.007,0,0,0,0,155.925,3511.082
-2212,12.012716,0,898.14969,14.233445,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.9995286,1.0022122,0.4431102,81.868347,22.17292,151.65692,713.57217,47.937755,0.10881429,133.08991,6.7929551,0.049,0,0,0,0,0,0,0,0.007,0,0,0,0,155.925,3511.082
-2213,11.742921,0,898.31999,14.208571,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.8904,0.97602857,0.45025714,81.878693,22.178414,151.71099,713.73529,47.955429,0.1091,133.11063,6.6295786,0.047,0,0,0,0,0,0,0,0.006,0,0,0,0,155.925,3511.082
-2214,11.473127,0,898.4903,14.183698,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.7812714,0.9498449,0.45740408,81.889039,22.183908,151.76507,713.89841,47.973102,0.10938571,133.13134,6.466202,0.046,0,0,0,0,0,0,0,0.006,0,0,0,0,155.925,3511.082
-2215,11.203332,0,898.6606,14.158824,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.6721429,0.92366122,0.46455102,81.899385,22.189402,151.81914,714.06153,47.990776,0.10967143,133.15206,6.3028255,0.044,0,0,0,0,0,0,0,0.006,0,0,0,0,155.925,3511.082
-2216,10.933537,0,898.8309,14.133951,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.5630143,0.89747755,0.47169796,81.909731,22.194896,151.87322,714.22465,48.008449,0.10995714,133.17278,6.139449,0.043,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082
-2217,10.663742,0,899.00121,14.109078,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.4538857,0.87129388,0.4788449,81.920077,22.20039,151.92729,714.38777,48.026122,0.11024286,133.19349,5.9760724,0.041,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082
-2218,10.393947,0,899.17151,14.084204,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.3447571,0.8451102,0.48599184,81.930422,22.205884,151.98137,714.55089,48.043796,0.11052857,133.21421,5.8126959,0.04,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082
-2219,10.124152,0,899.34181,14.059331,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.2356286,0.81892653,0.49313878,81.940768,22.211378,152.03544,714.71401,48.061469,0.11081429,133.23493,5.6493194,0.039,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082
-2220,9.8543571,0,899.51211,14.034457,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.1265,0.79274286,0.50028571,81.951114,22.216871,152.08951,714.87713,48.079143,0.1111,133.25564,5.4859429,0.037,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082
-2221,9.5845622,0,899.68242,14.009584,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.0173714,0.76655918,0.50743265,81.96146,22.222365,152.14359,715.04025,48.096816,0.11138571,133.27636,5.3225663,0.036,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082
-2222,9.3147673,0,899.85272,13.98471,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.9082429,0.74037551,0.51457959,81.971806,22.227859,152.19766,715.20337,48.11449,0.11167143,133.29708,5.1591898,0.035,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082
-2223,9.0449724,0,900.02302,13.959837,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.7991143,0.71419184,0.52172653,81.982152,22.233353,152.25174,715.36649,48.132163,0.11195714,133.31779,4.9958133,0.034,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082
-2224,8.7751776,0,900.19333,13.934963,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.6899857,0.68800816,0.52887347,81.992498,22.238847,152.30581,715.52961,48.149837,0.11224286,133.33851,4.8324367,0.033,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082
-2225,8.5053827,0,900.36363,13.91009,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.5808571,0.66182449,0.53602041,82.002844,22.244341,152.35989,715.69273,48.16751,0.11252857,133.35922,4.6690602,0.032,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082
-2226,8.2355878,0,900.53393,13.885216,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.4717286,0.63564082,0.54316735,82.01319,22.249835,152.41396,715.85585,48.185184,0.11281429,133.37994,4.5056837,0.031,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082
-2227,7.9657929,0,900.70424,13.860343,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.3626,0.60945714,0.55031429,82.023536,22.255329,152.46804,716.01897,48.202857,0.1131,133.40066,4.3423071,0.03,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082
-2228,7.695998,0,900.87454,13.835469,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.2534714,0.58327347,0.55746122,82.033882,22.260822,152.52211,716.18209,48.220531,0.11338571,133.42137,4.1789306,0.029,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082
-2229,7.4262031,0,901.04484,13.810596,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.1443429,0.5570898,0.56460816,82.044228,22.266316,152.57618,716.34521,48.238204,0.11367143,133.44209,4.0155541,0.028,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082
-2230,7.1564082,0,901.21514,13.785722,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.0352143,0.53090612,0.5717551,82.054573,22.27181,152.63026,716.50833,48.255878,0.11395714,133.46281,3.8521776,0.027,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082
-2231,6.8866133,0,901.38545,13.760849,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.9260857,0.50472245,0.57890204,82.064919,22.277304,152.68433,716.67145,48.273551,0.11424286,133.48352,3.688801,0.026,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2232,6.6168184,0,901.55575,13.735976,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.8169571,0.47853878,0.58604898,82.075265,22.282798,152.73841,716.83457,48.291224,0.11452857,133.50424,3.5254245,0.025,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2233,6.3470235,0,901.72605,13.711102,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.7078286,0.4523551,0.59319592,82.085611,22.288292,152.79248,716.99769,48.308898,0.11481429,133.52496,3.362048,0.024,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2234,6.0772286,0,901.89636,13.686229,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.5987,0.42617143,0.60034286,82.095957,22.293786,152.84656,717.16081,48.326571,0.1151,133.54567,3.1986714,0.023,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2235,5.8074337,0,902.06666,13.661355,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.4895714,0.39998776,0.6074898,82.106303,22.29928,152.90063,717.32393,48.344245,0.11538571,133.56639,3.0352949,0.023,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2236,5.5376388,0,902.23696,13.636482,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.3804429,0.37380408,0.61463673,82.116649,22.304773,152.95471,717.48706,48.361918,0.11567143,133.5871,2.8719184,0.022,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2237,5.2678439,0,902.40727,13.611608,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.2713143,0.34762041,0.62178367,82.126995,22.310267,153.00878,717.65018,48.379592,0.11595714,133.60782,2.7085418,0.021,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2238,4.998049,0,902.57757,13.586735,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.1621857,0.32143673,0.62893061,82.137341,22.315761,153.06286,717.8133,48.397265,0.11624286,133.62854,2.5451653,0.02,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2239,4.7282541,0,902.74787,13.561861,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.0530571,0.29525306,0.63607755,82.147687,22.321255,153.11693,717.97642,48.414939,0.11652857,133.64925,2.3817888,0.02,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2240,4.4584592,0,902.91818,13.536988,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.94392857,0.26906939,0.64322449,82.158033,22.326749,153.171,718.13954,48.432612,0.11681429,133.66997,2.2184122,0.019,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082
-2241,4.1886643,0,903.08848,13.512114,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.8348,0.24288571,0.65037143,82.168379,22.332243,153.22508,718.30266,48.450286,0.1171,133.69069,2.0550357,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2242,3.9188694,0,903.25878,13.487241,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.72567143,0.21670204,0.65751837,82.178724,22.337737,153.27915,718.46578,48.467959,0.11738571,133.7114,1.8916592,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2243,3.6490745,0,903.42908,13.462367,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.61654286,0.19051837,0.66466531,82.18907,22.343231,153.33323,718.6289,48.485633,0.11767143,133.73212,1.7282827,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2244,3.3792796,0,903.59939,13.437494,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.50741429,0.16433469,0.67181224,82.199416,22.348724,153.3873,718.79202,48.503306,0.11795714,133.75283,1.5649061,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2245,3.1094847,0,903.76969,13.41262,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.39828571,0.13815102,0.67895918,82.209762,22.354218,153.44138,718.95514,48.52098,0.11824286,133.77355,1.4015296,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2246,2.8396898,0,903.93999,13.387747,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.28915714,0.11196735,0.68610612,82.220108,22.359712,153.49545,719.11826,48.538653,0.11852857,133.79427,1.2381531,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2247,2.5698949,0,904.1103,13.362873,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.18002857,0.085783673,0.69325306,82.230454,22.365206,153.54953,719.28138,48.556327,0.11881429,133.81498,1.0747765,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2248,2.3001,0,904.2806,13.338,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0709,0.0596,0.7004,82.2408,22.3707,153.6036,719.4445,48.574,0.1191,133.8357,0.9114,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082
-2249,2.088,0,904.7895,13.343,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.7033,82.2473,22.3987,153.9761,720.2033,48.7474,0.1179,133.8876,0.9044,0.092,4.013,0.483,0.877,0.238,0,0,0,0.002,0,0,0.008,0,155.92,3511.082
-2250,2.0458,0,904.8603,13.3436,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.7033,82.2527,22.4002,153.9867,720.2524,48.7506,0.1179,133.8969,0.9044,0.092,4.013,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,155.937,3511.082
-2251,2.05004,0,904.9552,13.34368,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70338,82.26022,22.40226,154.00076,720.31816,48.75506,0.1179,133.90908,0.9044,0.092,4.014,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,155.96,3511.082
-2252,2.05428,0,905.0501,13.34376,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70346,82.26774,22.40432,154.01482,720.38392,48.75952,0.1179,133.92126,0.9044,0.092,4.015,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,155.983,3511.082
-2253,2.05852,0,905.145,13.34384,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70354,82.27526,22.40638,154.02888,720.44968,48.76398,0.1179,133.93344,0.9044,0.092,4.016,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,156.006,3511.082
-2254,2.06276,0,905.2399,13.34392,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70362,82.28278,22.40844,154.04294,720.51544,48.76844,0.1179,133.94562,0.9044,0.092,4.017,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,156.029,3511.082
-2255,2.067,0,905.3348,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.7037,82.2903,22.4105,154.057,720.5812,48.7729,0.1179,133.9578,0.9044,0.092,4.018,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,156.051,3511.082
-2256,2.07852,0,905.44156,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70376,82.29874,22.41276,154.07282,720.65512,48.77792,0.11794,133.97158,0.9044,0.092,4.018,0.484,0.879,0.238,0,0,0,0.002,0,0,0.008,0,156.074,3511.082
-2257,2.09004,0,905.54832,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70382,82.30718,22.41502,154.08864,720.72904,48.78294,0.11798,133.98536,0.9044,0.092,4.019,0.484,0.879,0.238,0,0,0,0.002,0,0,0.008,0,156.097,3511.082
-2258,2.10156,0,905.65508,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70388,82.31562,22.41728,154.10446,720.80296,48.78796,0.11802,133.99914,0.9044,0.092,4.02,0.484,0.879,0.238,0,0,0,0.002,0,0,0.008,0,156.125,3511.082
-2259,2.11308,0,905.76184,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70394,82.32406,22.41954,154.12028,720.87688,48.79298,0.11806,134.01292,0.9044,0.092,4.021,0.484,0.879,0.238,0,0,0,0.002,0,0,0.008,0,156.152,3511.082
-2260,2.1246,0,905.8686,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.704,82.3325,22.4218,154.1361,720.9508,48.798,0.1181,134.0267,0.9044,0.092,4.022,0.485,0.879,0.238,0,0,0,0.002,0,0,0.008,0,156.18,3511.082
-2261,2.1217267,0,905.9807,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070513333,0.0592,0.70407333,82.341367,22.42422,154.15269,721.02846,48.803253,0.11810667,134.04113,0.9044,0.092,4.023,0.485,0.88,0.238,0,0,0,0.002,0,0,0.008,0,156.207,3511.082
-2262,2.1188533,0,906.0928,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070526667,0.0592,0.70414667,82.350233,22.42664,154.16929,721.10612,48.808507,0.11811333,134.05557,0.9044,0.092,4.024,0.485,0.88,0.238,0,0,0,0.002,0,0,0.008,0,156.235,3511.082
-2263,2.11598,0,906.2049,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07054,0.0592,0.70422,82.3591,22.42906,154.18588,721.18378,48.81376,0.11812,134.07,0.9044,0.092,4.025,0.485,0.88,0.238,0,0,0,0.002,0,0,0.008,0,156.263,3511.082
-2264,2.1131067,0,906.317,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070553333,0.0592,0.70429333,82.367967,22.43148,154.20247,721.26144,48.819013,0.11812667,134.08443,0.9044,0.092,4.026,0.485,0.88,0.238,0,0,0,0.002,0,0,0.008,0,156.29,3511.082
-2265,2.1102333,0,906.4291,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070566667,0.0592,0.70436667,82.376833,22.4339,154.21907,721.3391,48.824267,0.11813333,134.09887,0.9044,0.092,4.028,0.485,0.881,0.238,0,0,0,0.002,0,0,0.008,0,156.318,3511.082
-2266,2.10736,0,906.5412,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07058,0.0592,0.70444,82.3857,22.43632,154.23566,721.41676,48.82952,0.11814,134.1133,0.9044,0.092,4.029,0.485,0.881,0.238,0,0,0,0.002,0,0,0.008,0,156.345,3511.082
-2267,2.1044867,0,906.6533,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070593333,0.0592,0.70451333,82.394567,22.43874,154.25225,721.49442,48.834773,0.11814667,134.12773,0.9044,0.093,4.03,0.485,0.881,0.239,0,0,0,0.002,0,0,0.008,0,156.372,3511.082
-2268,2.1016133,0,906.7654,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070606667,0.0592,0.70458667,82.403433,22.44116,154.26885,721.57208,48.840027,0.11815333,134.14217,0.9044,0.093,4.031,0.486,0.881,0.239,0,0,0,0.002,0,0,0.008,0,156.399,3511.082
-2269,2.09874,0,906.8775,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07062,0.0592,0.70466,82.4123,22.44358,154.28544,721.64974,48.84528,0.11816,134.1566,0.9044,0.093,4.032,0.486,0.882,0.239,0,0,0,0.002,0,0,0.008,0,156.426,3511.082
-2270,2.0958667,0,906.9896,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070633333,0.0592,0.70473333,82.421167,22.446,154.30203,721.7274,48.850533,0.11816667,134.17103,0.9044,0.093,4.033,0.486,0.882,0.239,0,0,0,0.002,0,0,0.008,0,156.453,3511.082
-2271,2.0929933,0,907.1017,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070646667,0.0592,0.70480667,82.430033,22.44842,154.31863,721.80506,48.855787,0.11817333,134.18547,0.9044,0.093,4.034,0.486,0.882,0.239,0,0,0,0.002,0,0,0.008,0,156.48,3511.082
-2272,2.09012,0,907.2138,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07066,0.0592,0.70488,82.4389,22.45084,154.33522,721.88272,48.86104,0.11818,134.1999,0.9044,0.093,4.035,0.486,0.882,0.239,0,0,0,0.002,0,0,0.008,0,156.506,3511.082
-2273,2.0872467,0,907.3259,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070673333,0.0592,0.70495333,82.447767,22.45326,154.35181,721.96038,48.866293,0.11818667,134.21433,0.9044,0.093,4.036,0.486,0.882,0.239,0,0,0,0.002,0,0,0.008,0,156.532,3511.082
-2274,2.0843733,0,907.438,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070686667,0.0592,0.70502667,82.456633,22.45568,154.36841,722.03804,48.871547,0.11819333,134.22877,0.9044,0.093,4.037,0.486,0.883,0.239,0,0,0,0.002,0,0,0.008,0,156.559,3511.082
-2275,2.0815,0,907.5501,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0707,0.0592,0.7051,82.4655,22.4581,154.385,722.1157,48.8768,0.1182,134.2432,0.9044,0.093,4.037,0.486,0.883,0.239,0,0,0,0.002,0,0,0.008,0,156.585,3511.082
-2276,2.078004,0,907.65054,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070708,0.0592,0.705172,82.473444,22.460264,154.39988,722.18528,48.881508,0.118216,134.25614,0.9044,0.093,4.038,0.487,0.883,0.239,0,0,0,0.002,0,0,0.008,0,156.611,3511.082
-2277,2.074508,0,907.75098,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070716,0.0592,0.705244,82.481388,22.462428,154.41477,722.25487,48.886216,0.118232,134.26907,0.9044,0.093,4.039,0.487,0.883,0.239,0,0,0,0.002,0,0,0.008,0,156.636,3511.082
-2278,2.071012,0,907.85142,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070724,0.0592,0.705316,82.489332,22.464592,154.42965,722.32445,48.890924,0.118248,134.28201,0.9044,0.093,4.04,0.487,0.883,0.239,0,0,0,0.002,0,0,0.008,0,156.662,3511.082
-2279,2.067516,0,907.95186,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070732,0.0592,0.705388,82.497276,22.466756,154.44454,722.39404,48.895632,0.118264,134.29494,0.9044,0.093,4.041,0.487,0.884,0.239,0,0,0,0.002,0,0,0.008,0,156.687,3511.082
-2280,2.06402,0,908.0523,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07074,0.0592,0.70546,82.50522,22.46892,154.45942,722.46362,48.90034,0.11828,134.30788,0.9044,0.093,4.042,0.487,0.884,0.239,0,0,0,0.002,0,0,0.008,0,156.713,3511.082
-2281,2.060524,0,908.15274,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070748,0.0592,0.705532,82.513164,22.471084,154.4743,722.5332,48.905048,0.118296,134.32082,0.9044,0.093,4.043,0.487,0.884,0.239,0,0,0,0.002,0,0,0.008,0,156.738,3511.082
-2282,2.057028,0,908.25318,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070756,0.0592,0.705604,82.521108,22.473248,154.48919,722.60279,48.909756,0.118312,134.33375,0.9044,0.093,4.044,0.487,0.884,0.239,0,0,0,0.002,0,0,0.008,0,156.763,3511.082
-2283,2.053532,0,908.35362,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070764,0.0592,0.705676,82.529052,22.475412,154.50407,722.67237,48.914464,0.118328,134.34669,0.9044,0.093,4.045,0.487,0.884,0.239,0,0,0,0.002,0,0,0.008,0,156.788,3511.082
-2284,2.050036,0,908.45406,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070772,0.0592,0.705748,82.536996,22.477576,154.51896,722.74196,48.919172,0.118344,134.35962,0.9044,0.093,4.046,0.487,0.885,0.24,0,0,0,0.002,0,0,0.008,0,156.812,3511.082
-2285,2.04654,0,908.5545,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07078,0.0592,0.70582,82.54494,22.47974,154.53384,722.81154,48.92388,0.11836,134.37256,0.9044,0.093,4.047,0.488,0.885,0.24,0,0,0,0.002,0,0,0.008,0,156.837,3511.082
-2286,2.043044,0,908.65494,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070788,0.0592,0.705892,82.552884,22.481904,154.54872,722.88112,48.928588,0.118376,134.3855,0.9044,0.093,4.048,0.488,0.885,0.24,0,0,0,0.002,0,0,0.008,0,156.861,3511.082
-2287,2.039548,0,908.75538,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070796,0.0592,0.705964,82.560828,22.484068,154.56361,722.95071,48.933296,0.118392,134.39843,0.9044,0.093,4.049,0.488,0.885,0.24,0,0,0,0.002,0,0,0.008,0,156.886,3511.082
-2288,2.036052,0,908.85582,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070804,0.0592,0.706036,82.568772,22.486232,154.57849,723.02029,48.938004,0.118408,134.41137,0.9044,0.093,4.05,0.488,0.885,0.24,0,0,0,0.002,0,0,0.008,0,156.91,3511.082
-2289,2.032556,0,908.95626,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070812,0.0592,0.706108,82.576716,22.488396,154.59338,723.08988,48.942712,0.118424,134.4243,0.9044,0.093,4.051,0.488,0.886,0.24,0,0,0,0.002,0,0,0.008,0,156.934,3511.082
-2290,2.02906,0,909.0567,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07082,0.0592,0.70618,82.58466,22.49056,154.60826,723.15946,48.94742,0.11844,134.43724,0.9044,0.093,4.051,0.488,0.886,0.24,0,0,0,0.002,0,0,0.008,0,156.958,3511.082
-2291,2.025564,0,909.15714,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070828,0.0592,0.706252,82.592604,22.492724,154.62314,723.22904,48.952128,0.118456,134.45018,0.9044,0.093,4.052,0.488,0.886,0.24,0,0,0,0.002,0,0,0.008,0,156.981,3511.082
-2292,2.022068,0,909.25758,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070836,0.0592,0.706324,82.600548,22.494888,154.63803,723.29863,48.956836,0.118472,134.46311,0.9044,0.093,4.053,0.488,0.886,0.24,0,0,0,0.002,0,0,0.008,0,157.005,3511.082
-2293,2.018572,0,909.35802,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070844,0.0592,0.706396,82.608492,22.497052,154.65291,723.36821,48.961544,0.118488,134.47605,0.9044,0.093,4.054,0.488,0.886,0.24,0,0,0,0.002,0,0,0.008,0,157.028,3511.082
-2294,2.015076,0,909.45846,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070852,0.0592,0.706468,82.616436,22.499216,154.6678,723.4378,48.966252,0.118504,134.48898,0.9044,0.093,4.055,0.489,0.887,0.24,0,0,0,0.002,0,0,0.008,0,157.052,3511.082
-2295,2.01158,0,909.5589,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07086,0.0592,0.70654,82.62438,22.50138,154.68268,723.50738,48.97096,0.11852,134.50192,0.9044,0.093,4.056,0.489,0.887,0.24,0,0,0,0.002,0,0,0.008,0,157.075,3511.082
-2296,2.008084,0,909.65934,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070868,0.0592,0.706612,82.632324,22.503544,154.69756,723.57696,48.975668,0.118536,134.51486,0.9044,0.093,4.057,0.489,0.887,0.24,0,0,0,0.002,0,0,0.008,0,157.098,3511.082
-2297,2.004588,0,909.75978,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070876,0.0592,0.706684,82.640268,22.505708,154.71245,723.64655,48.980376,0.118552,134.52779,0.9044,0.093,4.058,0.489,0.887,0.24,0,0,0,0.002,0,0,0.008,0,157.121,3511.082
-2298,2.001092,0,909.86022,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070884,0.0592,0.706756,82.648212,22.507872,154.72733,723.71613,48.985084,0.118568,134.54073,0.9044,0.093,4.058,0.489,0.887,0.24,0,0,0,0.002,0,0,0.008,0,157.144,3511.082
-2299,1.997596,0,909.96066,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070892,0.0592,0.706828,82.656156,22.510036,154.74222,723.78572,48.989792,0.118584,134.55366,0.9044,0.093,4.059,0.489,0.888,0.24,0,0,0,0.002,0,0,0.008,0,157.167,3511.082
-2300,1.9941,0,910.0611,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0709,0.0592,0.7069,82.6641,22.5122,154.7571,723.8553,48.9945,0.1186,134.5666,0.9044,0.093,4.06,0.489,0.888,0.24,0,0,0,0.002,0,0,0.008,0,157.189,3511.082
-2301,1.991988,0,910.14458,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070904,0.0592,0.706956,82.670706,22.514002,154.76946,723.91314,48.998416,0.118608,134.57735,0.9044,0.093,4.061,0.489,0.888,0.24,0,0,0,0.002,0,0,0.008,0,157.212,3511.082
-2302,1.989876,0,910.22807,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070908,0.0592,0.707012,82.677312,22.515804,154.78182,723.97097,49.002332,0.118616,134.58811,0.9044,0.093,4.062,0.489,0.888,0.24,0,0,0,0.002,0,0,0.008,0,157.234,3511.082
-2303,1.987764,0,910.31155,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070912,0.0592,0.707068,82.683918,22.517606,154.79419,724.02881,49.006248,0.118624,134.59886,0.9044,0.093,4.063,0.489,0.888,0.24,0,0,0,0.002,0,0,0.008,0,157.256,3511.082
-2304,1.985652,0,910.39504,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070916,0.0592,0.707124,82.690524,22.519408,154.80655,724.08664,49.010164,0.118632,134.60962,0.9044,0.093,4.063,0.49,0.888,0.241,0,0,0,0.002,0,0,0.008,0,157.278,3511.082
-2305,1.98354,0,910.47852,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07092,0.0592,0.70718,82.69713,22.52121,154.81891,724.14448,49.01408,0.11864,134.62037,0.9044,0.093,4.064,0.49,0.889,0.241,0,0,0,0.002,0,0,0.008,0,157.3,3511.082
-2306,1.981428,0,910.562,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070924,0.0592,0.707236,82.703736,22.523012,154.83127,724.20232,49.017996,0.118648,134.63112,0.9044,0.093,4.065,0.49,0.889,0.241,0,0,0,0.002,0,0,0.008,0,157.322,3511.082
-2307,1.979316,0,910.64549,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070928,0.0592,0.707292,82.710342,22.524814,154.84363,724.26015,49.021912,0.118656,134.64188,0.9044,0.093,4.066,0.49,0.889,0.241,0,0,0,0.002,0,0,0.008,0,157.344,3511.082
-2308,1.977204,0,910.72897,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070932,0.0592,0.707348,82.716948,22.526616,154.856,724.31799,49.025828,0.118664,134.65263,0.9044,0.093,4.067,0.49,0.889,0.241,0,0,0,0.002,0,0,0.008,0,157.366,3511.082
-2309,1.975092,0,910.81246,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070936,0.0592,0.707404,82.723554,22.528418,154.86836,724.37582,49.029744,0.118672,134.66339,0.9044,0.093,4.068,0.49,0.889,0.241,0,0,0,0.002,0,0,0.008,0,157.387,3511.082
-2310,1.97298,0,910.89594,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07094,0.0592,0.70746,82.73016,22.53022,154.88072,724.43366,49.03366,0.11868,134.67414,0.9044,0.093,4.068,0.49,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.409,3511.082
-2311,1.970868,0,910.97942,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070944,0.0592,0.707516,82.736766,22.532022,154.89308,724.4915,49.037576,0.118688,134.68489,0.9044,0.093,4.069,0.49,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.43,3511.082
-2312,1.968756,0,911.06291,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070948,0.0592,0.707572,82.743372,22.533824,154.90544,724.54933,49.041492,0.118696,134.69565,0.9044,0.093,4.07,0.49,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.452,3511.082
-2313,1.966644,0,911.14639,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070952,0.0592,0.707628,82.749978,22.535626,154.91781,724.60717,49.045408,0.118704,134.7064,0.9044,0.093,4.071,0.49,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.473,3511.082
-2314,1.964532,0,911.22988,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070956,0.0592,0.707684,82.756584,22.537428,154.93017,724.665,49.049324,0.118712,134.71716,0.9044,0.093,4.071,0.491,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.494,3511.082
-2315,1.96242,0,911.31336,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07096,0.0592,0.70774,82.76319,22.53923,154.94253,724.72284,49.05324,0.11872,134.72791,0.9044,0.093,4.072,0.491,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.515,3511.082
-2316,1.960308,0,911.39684,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070964,0.0592,0.707796,82.769796,22.541032,154.95489,724.78068,49.057156,0.118728,134.73866,0.9044,0.094,4.073,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.536,3511.082
-2317,1.958196,0,911.48033,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070968,0.0592,0.707852,82.776402,22.542834,154.96725,724.83851,49.061072,0.118736,134.74942,0.9044,0.094,4.074,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.556,3511.082
-2318,1.956084,0,911.56381,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070972,0.0592,0.707908,82.783008,22.544636,154.97962,724.89635,49.064988,0.118744,134.76017,0.9044,0.094,4.075,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.577,3511.082
-2319,1.953972,0,911.6473,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070976,0.0592,0.707964,82.789614,22.546438,154.99198,724.95418,49.068904,0.118752,134.77093,0.9044,0.094,4.075,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.598,3511.082
-2320,1.95186,0,911.73078,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07098,0.0592,0.70802,82.79622,22.54824,155.00434,725.01202,49.07282,0.11876,134.78168,0.9044,0.094,4.076,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.618,3511.082
-2321,1.949748,0,911.81426,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070984,0.0592,0.708076,82.802826,22.550042,155.0167,725.06986,49.076736,0.118768,134.79243,0.9044,0.094,4.077,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.639,3511.082
-2322,1.947636,0,911.89775,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070988,0.0592,0.708132,82.809432,22.551844,155.02906,725.12769,49.080652,0.118776,134.80319,0.9044,0.094,4.078,0.491,0.892,0.241,0,0,0,0.002,0,0,0.008,0,157.659,3511.082
-2323,1.945524,0,911.98123,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070992,0.0592,0.708188,82.816038,22.553646,155.04143,725.18553,49.084568,0.118784,134.81394,0.9044,0.094,4.078,0.491,0.892,0.241,0,0,0,0.002,0,0,0.008,0,157.679,3511.082
-2324,1.943412,0,912.06472,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070996,0.0592,0.708244,82.822644,22.555448,155.05379,725.24336,49.088484,0.118792,134.8247,0.9044,0.094,4.079,0.491,0.892,0.241,0,0,0,0.002,0,0,0.008,0,157.699,3511.082
-2325,1.9413,0,912.1482,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071,0.0592,0.7083,82.82925,22.55725,155.06615,725.3012,49.0924,0.1188,134.83545,0.9044,0.094,4.08,0.492,0.892,0.242,0,0,0,0.002,0,0,0.008,0,157.719,3511.082
-2326,1.939188,0,912.23168,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071004,0.0592,0.708356,82.835856,22.559052,155.07851,725.35904,49.096316,0.118808,134.8462,0.9044,0.094,4.081,0.492,0.892,0.242,0,0,0,0.002,0,0,0.008,0,157.739,3511.082
-2327,1.937076,0,912.31517,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071008,0.0592,0.708412,82.842462,22.560854,155.09087,725.41687,49.100232,0.118816,134.85696,0.9044,0.094,4.081,0.492,0.892,0.242,0,0,0,0.002,0,0,0.008,0,157.759,3511.082
-2328,1.934964,0,912.39865,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071012,0.0592,0.708468,82.849068,22.562656,155.10324,725.47471,49.104148,0.118824,134.86771,0.9044,0.094,4.082,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.779,3511.082
-2329,1.932852,0,912.48214,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071016,0.0592,0.708524,82.855674,22.564458,155.1156,725.53254,49.108064,0.118832,134.87847,0.9044,0.094,4.083,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.799,3511.082
-2330,1.93074,0,912.56562,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07102,0.0592,0.70858,82.86228,22.56626,155.12796,725.59038,49.11198,0.11884,134.88922,0.9044,0.094,4.084,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.818,3511.082
-2331,1.928628,0,912.6491,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071024,0.0592,0.708636,82.868886,22.568062,155.14032,725.64822,49.115896,0.118848,134.89997,0.9044,0.094,4.084,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.838,3511.082
-2332,1.926516,0,912.73259,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071028,0.0592,0.708692,82.875492,22.569864,155.15268,725.70605,49.119812,0.118856,134.91073,0.9044,0.094,4.085,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.857,3511.082
-2333,1.924404,0,912.81607,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071032,0.0592,0.708748,82.882098,22.571666,155.16505,725.76389,49.123728,0.118864,134.92148,0.9044,0.094,4.086,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.877,3511.082
-2334,1.922292,0,912.89956,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071036,0.0592,0.708804,82.888704,22.573468,155.17741,725.82172,49.127644,0.118872,134.93224,0.9044,0.094,4.087,0.492,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.896,3511.082
-2335,1.92018,0,912.98304,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07104,0.0592,0.70886,82.89531,22.57527,155.18977,725.87956,49.13156,0.11888,134.94299,0.9044,0.094,4.087,0.492,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.915,3511.082
-2336,1.918068,0,913.06652,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071044,0.0592,0.708916,82.901916,22.577072,155.20213,725.9374,49.135476,0.118888,134.95374,0.9044,0.094,4.088,0.493,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.934,3511.082
-2337,1.915956,0,913.15001,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071048,0.0592,0.708972,82.908522,22.578874,155.21449,725.99523,49.139392,0.118896,134.9645,0.9044,0.094,4.089,0.493,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.953,3511.082
-2338,1.913844,0,913.23349,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071052,0.0592,0.709028,82.915128,22.580676,155.22686,726.05307,49.143308,0.118904,134.97525,0.9044,0.094,4.089,0.493,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.972,3511.082
-2339,1.911732,0,913.31698,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071056,0.0592,0.709084,82.921734,22.582478,155.23922,726.1109,49.147224,0.118912,134.98601,0.9044,0.094,4.09,0.493,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.991,3511.082
-2340,1.90962,0,913.40046,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07106,0.0592,0.70914,82.92834,22.58428,155.25158,726.16874,49.15114,0.11892,134.99676,0.9044,0.094,4.091,0.493,0.894,0.242,0,0,0,0.002,0,0,0.008,0,158.01,3511.082
-2341,1.907508,0,913.48394,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071064,0.0592,0.709196,82.934946,22.586082,155.26394,726.22658,49.155056,0.118928,135.00751,0.9044,0.094,4.091,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.029,3511.082
-2342,1.905396,0,913.56743,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071068,0.0592,0.709252,82.941552,22.587884,155.2763,726.28441,49.158972,0.118936,135.01827,0.9044,0.094,4.092,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.047,3511.082
-2343,1.903284,0,913.65091,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071072,0.0592,0.709308,82.948158,22.589686,155.28867,726.34225,49.162888,0.118944,135.02902,0.9044,0.094,4.093,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.066,3511.082
-2344,1.901172,0,913.7344,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071076,0.0592,0.709364,82.954764,22.591488,155.30103,726.40008,49.166804,0.118952,135.03978,0.9044,0.094,4.094,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.085,3511.082
-2345,1.89906,0,913.81788,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07108,0.0592,0.70942,82.96137,22.59329,155.31339,726.45792,49.17072,0.11896,135.05053,0.9044,0.094,4.094,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.103,3511.082
-2346,1.896948,0,913.90136,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071084,0.0592,0.709476,82.967976,22.595092,155.32575,726.51576,49.174636,0.118968,135.06128,0.9044,0.094,4.095,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.121,3511.082
-2347,1.894836,0,913.98485,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071088,0.0592,0.709532,82.974582,22.596894,155.33811,726.57359,49.178552,0.118976,135.07204,0.9044,0.094,4.096,0.493,0.896,0.242,0,0,0,0.002,0,0,0.008,0,158.14,3511.082
-2348,1.892724,0,914.06833,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071092,0.0592,0.709588,82.981188,22.598696,155.35048,726.63143,49.182468,0.118984,135.08279,0.9044,0.094,4.096,0.494,0.896,0.242,0,0,0,0.002,0,0,0.008,0,158.158,3511.082
-2349,1.890612,0,914.15182,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071096,0.0592,0.709644,82.987794,22.600498,155.36284,726.68926,49.186384,0.118992,135.09355,0.9044,0.094,4.097,0.494,0.896,0.243,0,0,0,0.002,0,0,0.008,0,158.176,3511.082
-2350,1.8885,0,914.2353,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0711,0.0592,0.7097,82.9944,22.6023,155.3752,726.7471,49.1903,0.119,135.1043,0.9044,0.094,4.098,0.494,0.896,0.243,0,0,0,0.002,0,0,0.008,0,158.194,3511.082
-2351,1.885994,0,914.3042,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071106,0.0592,0.709744,82.999852,22.603782,155.3854,726.79483,49.19353,0.119008,135.11317,0.9044,0.094,4.098,0.494,0.896,0.243,0,0,0,0.002,0,0,0.008,0,158.212,3511.082
-2352,1.883488,0,914.37309,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071112,0.0592,0.709788,83.005304,22.605264,155.39561,726.84256,49.19676,0.119016,135.12204,0.9044,0.094,4.099,0.494,0.896,0.243,0,0,0,0.002,0,0,0.008,0,158.23,3511.082
-2353,1.880982,0,914.44199,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071118,0.0592,0.709832,83.010756,22.606746,155.40581,726.89028,49.19999,0.119024,135.13092,0.9044,0.094,4.1,0.494,0.896,0.243,0,0,0,0.002,0,0,0.008,0,158.248,3511.082
-2354,1.878476,0,914.51088,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071124,0.0592,0.709876,83.016208,22.608228,155.41602,726.93801,49.20322,0.119032,135.13979,0.9044,0.094,4.1,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.266,3511.082
-2355,1.87597,0,914.57978,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07113,0.0592,0.70992,83.02166,22.60971,155.42622,726.98574,49.20645,0.11904,135.14866,0.9044,0.094,4.101,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.284,3511.082
-2356,1.873464,0,914.64868,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071136,0.0592,0.709964,83.027112,22.611192,155.43642,727.03347,49.20968,0.119048,135.15753,0.9044,0.094,4.102,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.301,3511.082
-2357,1.870958,0,914.71757,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071142,0.0592,0.710008,83.032564,22.612674,155.44663,727.0812,49.21291,0.119056,135.1664,0.9044,0.094,4.102,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.319,3511.082
-2358,1.868452,0,914.78647,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071148,0.0592,0.710052,83.038016,22.614156,155.45683,727.12892,49.21614,0.119064,135.17528,0.9044,0.094,4.103,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.337,3511.082
-2359,1.865946,0,914.85536,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071154,0.0592,0.710096,83.043468,22.615638,155.46704,727.17665,49.21937,0.119072,135.18415,0.9044,0.094,4.104,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.354,3511.082
-2360,1.86344,0,914.92426,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07116,0.0592,0.71014,83.04892,22.61712,155.47724,727.22438,49.2226,0.11908,135.19302,0.9044,0.094,4.104,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.372,3511.082
-2361,1.860934,0,914.99316,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071166,0.0592,0.710184,83.054372,22.618602,155.48744,727.27211,49.22583,0.119088,135.20189,0.9044,0.094,4.105,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.389,3511.082
-2362,1.858428,0,915.06205,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071172,0.0592,0.710228,83.059824,22.620084,155.49765,727.31984,49.22906,0.119096,135.21076,0.9044,0.094,4.106,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.406,3511.082
-2363,1.855922,0,915.13095,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071178,0.0592,0.710272,83.065276,22.621566,155.50785,727.36756,49.23229,0.119104,135.21964,0.9044,0.094,4.106,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.424,3511.082
-2364,1.853416,0,915.19984,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071184,0.0592,0.710316,83.070728,22.623048,155.51806,727.41529,49.23552,0.119112,135.22851,0.9044,0.094,4.107,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.441,3511.082
-2365,1.85091,0,915.26874,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07119,0.0592,0.71036,83.07618,22.62453,155.52826,727.46302,49.23875,0.11912,135.23738,0.9044,0.094,4.108,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.458,3511.082
-2366,1.848404,0,915.33764,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071196,0.0592,0.710404,83.081632,22.626012,155.53846,727.51075,49.24198,0.119128,135.24625,0.9044,0.094,4.108,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.475,3511.082
-2367,1.845898,0,915.40653,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071202,0.0592,0.710448,83.087084,22.627494,155.54867,727.55848,49.24521,0.119136,135.25512,0.9044,0.094,4.109,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.492,3511.082
-2368,1.843392,0,915.47543,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071208,0.0592,0.710492,83.092536,22.628976,155.55887,727.6062,49.24844,0.119144,135.264,0.9044,0.094,4.109,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.509,3511.082
-2369,1.840886,0,915.54432,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071214,0.0592,0.710536,83.097988,22.630458,155.56908,727.65393,49.25167,0.119152,135.27287,0.9044,0.094,4.11,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.526,3511.082
-2370,1.83838,0,915.61322,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07122,0.0592,0.71058,83.10344,22.63194,155.57928,727.70166,49.2549,0.11916,135.28174,0.9044,0.094,4.111,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.543,3511.082
-2371,1.835874,0,915.68212,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071226,0.0592,0.710624,83.108892,22.633422,155.58948,727.74939,49.25813,0.119168,135.29061,0.9044,0.094,4.111,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.56,3511.082
-2372,1.833368,0,915.75101,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071232,0.0592,0.710668,83.114344,22.634904,155.59969,727.79712,49.26136,0.119176,135.29948,0.9044,0.094,4.112,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.576,3511.082
-2373,1.830862,0,915.81991,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071238,0.0592,0.710712,83.119796,22.636386,155.60989,727.84484,49.26459,0.119184,135.30836,0.9044,0.094,4.113,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.593,3511.082
-2374,1.828356,0,915.8888,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071244,0.0592,0.710756,83.125248,22.637868,155.6201,727.89257,49.26782,0.119192,135.31723,0.9044,0.094,4.113,0.496,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.61,3511.082
-2375,1.82585,0,915.9577,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07125,0.0592,0.7108,83.1307,22.63935,155.6303,727.9403,49.27105,0.1192,135.3261,0.9044,0.094,4.114,0.496,0.899,0.244,0,0,0,0.002,0,0,0.008,0,158.626,3511.082
-2376,1.823344,0,916.0266,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071256,0.0592,0.710844,83.136152,22.640832,155.6405,727.98803,49.27428,0.119208,135.33497,0.9044,0.094,4.114,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.643,3511.082
-2377,1.820838,0,916.09549,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071262,0.0592,0.710888,83.141604,22.642314,155.65071,728.03576,49.27751,0.119216,135.34384,0.9044,0.094,4.115,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.659,3511.082
-2378,1.818332,0,916.16439,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071268,0.0592,0.710932,83.147056,22.643796,155.66091,728.08348,49.28074,0.119224,135.35272,0.9044,0.094,4.116,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.676,3511.082
-2379,1.815826,0,916.23328,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071274,0.0592,0.710976,83.152508,22.645278,155.67112,728.13121,49.28397,0.119232,135.36159,0.9044,0.095,4.116,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.692,3511.082
-2380,1.81332,0,916.30218,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07128,0.0592,0.71102,83.15796,22.64676,155.68132,728.17894,49.2872,0.11924,135.37046,0.9044,0.095,4.117,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.708,3511.082
-2381,1.810814,0,916.37108,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071286,0.0592,0.711064,83.163412,22.648242,155.69152,728.22667,49.29043,0.119248,135.37933,0.9044,0.095,4.118,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.724,3511.082
-2382,1.808308,0,916.43997,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071292,0.0592,0.711108,83.168864,22.649724,155.70173,728.2744,49.29366,0.119256,135.3882,0.9044,0.095,4.118,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.741,3511.082
-2383,1.805802,0,916.50887,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071298,0.0592,0.711152,83.174316,22.651206,155.71193,728.32212,49.29689,0.119264,135.39708,0.9044,0.095,4.119,0.496,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.757,3511.082
-2384,1.803296,0,916.57776,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071304,0.0592,0.711196,83.179768,22.652688,155.72214,728.36985,49.30012,0.119272,135.40595,0.9044,0.095,4.119,0.496,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.773,3511.082
-2385,1.80079,0,916.64666,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07131,0.0592,0.71124,83.18522,22.65417,155.73234,728.41758,49.30335,0.11928,135.41482,0.9044,0.095,4.12,0.496,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.789,3511.082
-2386,1.798284,0,916.71556,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071316,0.0592,0.711284,83.190672,22.655652,155.74254,728.46531,49.30658,0.119288,135.42369,0.9044,0.095,4.121,0.496,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.805,3511.082
-2387,1.795778,0,916.78445,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071322,0.0592,0.711328,83.196124,22.657134,155.75275,728.51304,49.30981,0.119296,135.43256,0.9044,0.095,4.121,0.496,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.821,3511.082
-2388,1.793272,0,916.85335,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071328,0.0592,0.711372,83.201576,22.658616,155.76295,728.56076,49.31304,0.119304,135.44144,0.9044,0.095,4.122,0.497,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.837,3511.082
-2389,1.790766,0,916.92224,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071334,0.0592,0.711416,83.207028,22.660098,155.77316,728.60849,49.31627,0.119312,135.45031,0.9044,0.095,4.122,0.497,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.853,3511.082
-2390,1.78826,0,916.99114,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07134,0.0592,0.71146,83.21248,22.66158,155.78336,728.65622,49.3195,0.11932,135.45918,0.9044,0.095,4.123,0.497,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.868,3511.082
-2391,1.785754,0,917.06004,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071346,0.0592,0.711504,83.217932,22.663062,155.79356,728.70395,49.32273,0.119328,135.46805,0.9044,0.095,4.123,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.884,3511.082
-2392,1.783248,0,917.12893,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071352,0.0592,0.711548,83.223384,22.664544,155.80377,728.75168,49.32596,0.119336,135.47692,0.9044,0.095,4.124,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.9,3511.082
-2393,1.780742,0,917.19783,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071358,0.0592,0.711592,83.228836,22.666026,155.81397,728.7994,49.32919,0.119344,135.4858,0.9044,0.095,4.125,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.915,3511.082
-2394,1.778236,0,917.26672,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071364,0.0592,0.711636,83.234288,22.667508,155.82418,728.84713,49.33242,0.119352,135.49467,0.9044,0.095,4.125,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.931,3511.082
-2395,1.77573,0,917.33562,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07137,0.0592,0.71168,83.23974,22.66899,155.83438,728.89486,49.33565,0.11936,135.50354,0.9044,0.095,4.126,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.947,3511.082
-2396,1.773224,0,917.40452,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071376,0.0592,0.711724,83.245192,22.670472,155.84458,728.94259,49.33888,0.119368,135.51241,0.9044,0.095,4.126,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.962,3511.082
-2397,1.770718,0,917.47341,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071382,0.0592,0.711768,83.250644,22.671954,155.85479,728.99032,49.34211,0.119376,135.52128,0.9044,0.095,4.127,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.977,3511.082
-2398,1.768212,0,917.54231,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071388,0.0592,0.711812,83.256096,22.673436,155.86499,729.03804,49.34534,0.119384,135.53016,0.9044,0.095,4.128,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.993,3511.082
-2399,1.765706,0,917.6112,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071394,0.0592,0.711856,83.261548,22.674918,155.8752,729.08577,49.34857,0.119392,135.53903,0.9044,0.095,4.128,0.497,0.903,0.244,0,0,0,0.002,0,0,0.008,0,159.008,3511.082
-2400,1.7632,0,917.6801,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0714,0.0592,0.7119,83.267,22.6764,155.8854,729.1335,49.3518,0.1194,135.5479,0.9044,0.095,4.129,0.497,0.903,0.244,0,0,0,0.002,0,0,0.008,0,159.024,3511.082
-2401,1.760278,0,917.7393,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071404,0.0592,0.711942,83.271682,22.677674,155.89417,729.17451,49.354576,0.119406,135.55552,0.9044,0.095,4.129,0.497,0.903,0.244,0,0,0,0.002,0,0,0.008,0,159.039,3511.082
-2402,1.757356,0,917.79849,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071408,0.0592,0.711984,83.276364,22.678948,155.90294,729.21552,49.357352,0.119412,135.56314,0.9044,0.095,4.13,0.498,0.903,0.244,0,0,0,0.002,0,0,0.008,0,159.054,3511.082
-2403,1.754434,0,917.85769,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071412,0.0592,0.712026,83.281046,22.680222,155.91171,729.25653,49.360128,0.119418,135.57077,0.9044,0.095,4.13,0.498,0.903,0.245,0,0,0,0.002,0,0,0.008,0,159.069,3511.082
-2404,1.751512,0,917.91688,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071416,0.0592,0.712068,83.285728,22.681496,155.92048,729.29754,49.362904,0.119424,135.57839,0.9044,0.095,4.131,0.498,0.903,0.245,0,0,0,0.002,0,0,0.008,0,159.084,3511.082
-2405,1.74859,0,917.97608,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07142,0.0592,0.71211,83.29041,22.68277,155.92925,729.33855,49.36568,0.11943,135.58601,0.9044,0.095,4.132,0.498,0.903,0.245,0,0,0,0.002,0,0,0.008,0,159.099,3511.082
-2406,1.745668,0,918.03528,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071424,0.0592,0.712152,83.295092,22.684044,155.93802,729.37956,49.368456,0.119436,135.59363,0.9044,0.095,4.132,0.498,0.903,0.245,0,0,0,0.002,0,0,0.008,0,159.114,3511.082
-2407,1.742746,0,918.09447,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071428,0.0592,0.712194,83.299774,22.685318,155.94679,729.42057,49.371232,0.119442,135.60125,0.9044,0.095,4.133,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.129,3511.082
-2408,1.739824,0,918.15367,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071432,0.0592,0.712236,83.304456,22.686592,155.95556,729.46158,49.374008,0.119448,135.60888,0.9044,0.095,4.133,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.144,3511.082
-2409,1.736902,0,918.21286,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071436,0.0592,0.712278,83.309138,22.687866,155.96433,729.50259,49.376784,0.119454,135.6165,0.9044,0.095,4.134,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.159,3511.082
-2410,1.73398,0,918.27206,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07144,0.0592,0.71232,83.31382,22.68914,155.9731,729.5436,49.37956,0.11946,135.62412,0.9044,0.095,4.134,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.174,3511.082
-2411,1.731058,0,918.33126,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071444,0.0592,0.712362,83.318502,22.690414,155.98187,729.58461,49.382336,0.119466,135.63174,0.9044,0.095,4.135,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.189,3511.082
-2412,1.728136,0,918.39045,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071448,0.0592,0.712404,83.323184,22.691688,155.99064,729.62562,49.385112,0.119472,135.63936,0.9044,0.095,4.135,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.204,3511.082
-2413,1.725214,0,918.44965,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071452,0.0592,0.712446,83.327866,22.692962,155.99941,729.66663,49.387888,0.119478,135.64699,0.9044,0.095,4.136,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.218,3511.082
-2414,1.722292,0,918.50884,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071456,0.0592,0.712488,83.332548,22.694236,156.00818,729.70764,49.390664,0.119484,135.65461,0.9044,0.095,4.137,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.233,3511.082
-2415,1.71937,0,918.56804,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07146,0.0592,0.71253,83.33723,22.69551,156.01695,729.74865,49.39344,0.11949,135.66223,0.9044,0.095,4.137,0.498,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.248,3511.082
-2416,1.716448,0,918.62724,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071464,0.0592,0.712572,83.341912,22.696784,156.02572,729.78966,49.396216,0.119496,135.66985,0.9044,0.095,4.138,0.498,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.262,3511.082
-2417,1.713526,0,918.68643,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071468,0.0592,0.712614,83.346594,22.698058,156.03449,729.83067,49.398992,0.119502,135.67747,0.9044,0.095,4.138,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.277,3511.082
-2418,1.710604,0,918.74563,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071472,0.0592,0.712656,83.351276,22.699332,156.04326,729.87168,49.401768,0.119508,135.6851,0.9044,0.095,4.139,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.292,3511.082
-2419,1.707682,0,918.80482,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071476,0.0592,0.712698,83.355958,22.700606,156.05203,729.91269,49.404544,0.119514,135.69272,0.9044,0.095,4.139,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.306,3511.082
-2420,1.70476,0,918.86402,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07148,0.0592,0.71274,83.36064,22.70188,156.0608,729.9537,49.40732,0.11952,135.70034,0.9044,0.095,4.14,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.32,3511.082
-2421,1.701838,0,918.92322,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071484,0.0592,0.712782,83.365322,22.703154,156.06957,729.99471,49.410096,0.119526,135.70796,0.9044,0.095,4.14,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.335,3511.082
-2422,1.698916,0,918.98241,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071488,0.0592,0.712824,83.370004,22.704428,156.07834,730.03572,49.412872,0.119532,135.71558,0.9044,0.095,4.141,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.349,3511.082
-2423,1.695994,0,919.04161,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071492,0.0592,0.712866,83.374686,22.705702,156.08711,730.07673,49.415648,0.119538,135.72321,0.9044,0.095,4.141,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.364,3511.082
-2424,1.693072,0,919.1008,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071496,0.0592,0.712908,83.379368,22.706976,156.09588,730.11774,49.418424,0.119544,135.73083,0.9044,0.095,4.142,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.378,3511.082
-2425,1.69015,0,919.16,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0715,0.0592,0.71295,83.38405,22.70825,156.10465,730.15875,49.4212,0.11955,135.73845,0.9044,0.095,4.142,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.392,3511.082
-2426,1.687228,0,919.2192,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071504,0.0592,0.712992,83.388732,22.709524,156.11342,730.19976,49.423976,0.119556,135.74607,0.9044,0.095,4.143,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.406,3511.082
-2427,1.684306,0,919.27839,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071508,0.0592,0.713034,83.393414,22.710798,156.12219,730.24077,49.426752,0.119562,135.75369,0.9044,0.095,4.144,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.421,3511.082
-2428,1.681384,0,919.33759,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071512,0.0592,0.713076,83.398096,22.712072,156.13096,730.28178,49.429528,0.119568,135.76132,0.9044,0.095,4.144,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.435,3511.082
-2429,1.678462,0,919.39678,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071516,0.0592,0.713118,83.402778,22.713346,156.13973,730.32279,49.432304,0.119574,135.76894,0.9044,0.095,4.145,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.449,3511.082
-2430,1.67554,0,919.45598,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07152,0.0592,0.71316,83.40746,22.71462,156.1485,730.3638,49.43508,0.11958,135.77656,0.9044,0.095,4.145,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.463,3511.082
-2431,1.672618,0,919.51518,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071524,0.0592,0.713202,83.412142,22.715894,156.15727,730.40481,49.437856,0.119586,135.78418,0.9044,0.095,4.146,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.477,3511.082
-2432,1.669696,0,919.57437,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071528,0.0592,0.713244,83.416824,22.717168,156.16604,730.44582,49.440632,0.119592,135.7918,0.9044,0.095,4.146,0.5,0.907,0.245,0,0,0,0.002,0,0,0.008,0,159.491,3511.082
-2433,1.666774,0,919.63357,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071532,0.0592,0.713286,83.421506,22.718442,156.17481,730.48683,49.443408,0.119598,135.79943,0.9044,0.095,4.147,0.5,0.907,0.245,0,0,0,0.002,0,0,0.008,0,159.505,3511.082
-2434,1.663852,0,919.69276,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071536,0.0592,0.713328,83.426188,22.719716,156.18358,730.52784,49.446184,0.119604,135.80705,0.9044,0.095,4.147,0.5,0.907,0.245,0,0,0,0.002,0,0,0.008,0,159.519,3511.082
-2435,1.66093,0,919.75196,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07154,0.0592,0.71337,83.43087,22.72099,156.19235,730.56885,49.44896,0.11961,135.81467,0.9044,0.095,4.148,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.532,3511.082
-2436,1.658008,0,919.81116,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071544,0.0592,0.713412,83.435552,22.722264,156.20112,730.60986,49.451736,0.119616,135.82229,0.9044,0.095,4.148,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.546,3511.082
-2437,1.655086,0,919.87035,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071548,0.0592,0.713454,83.440234,22.723538,156.20989,730.65087,49.454512,0.119622,135.82991,0.9044,0.095,4.149,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.56,3511.082
-2438,1.652164,0,919.92955,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071552,0.0592,0.713496,83.444916,22.724812,156.21866,730.69188,49.457288,0.119628,135.83754,0.9044,0.095,4.149,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.574,3511.082
-2439,1.649242,0,919.98874,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071556,0.0592,0.713538,83.449598,22.726086,156.22743,730.73289,49.460064,0.119634,135.84516,0.9044,0.095,4.15,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.588,3511.082
-2440,1.64632,0,920.04794,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07156,0.0592,0.71358,83.45428,22.72736,156.2362,730.7739,49.46284,0.11964,135.85278,0.9044,0.095,4.15,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.601,3511.082
-2441,1.643398,0,920.10714,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071564,0.0592,0.713622,83.458962,22.728634,156.24497,730.81491,49.465616,0.119646,135.8604,0.9044,0.095,4.151,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.615,3511.082
-2442,1.640476,0,920.16633,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071568,0.0592,0.713664,83.463644,22.729908,156.25374,730.85592,49.468392,0.119652,135.86802,0.9044,0.095,4.151,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.629,3511.082
-2443,1.637554,0,920.22553,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071572,0.0592,0.713706,83.468326,22.731182,156.26251,730.89693,49.471168,0.119658,135.87565,0.9044,0.095,4.152,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.642,3511.082
-2444,1.634632,0,920.28472,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071576,0.0592,0.713748,83.473008,22.732456,156.27128,730.93794,49.473944,0.119664,135.88327,0.9044,0.095,4.152,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.656,3511.082
-2445,1.63171,0,920.34392,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07158,0.0592,0.71379,83.47769,22.73373,156.28005,730.97895,49.47672,0.11967,135.89089,0.9044,0.095,4.153,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.669,3511.082
-2446,1.628788,0,920.40312,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071584,0.0592,0.713832,83.482372,22.735004,156.28882,731.01996,49.479496,0.119676,135.89851,0.9044,0.095,4.153,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.683,3511.082
-2447,1.625866,0,920.46231,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071588,0.0592,0.713874,83.487054,22.736278,156.29759,731.06097,49.482272,0.119682,135.90613,0.9044,0.095,4.154,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.696,3511.082
-2448,1.622944,0,920.52151,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071592,0.0592,0.713916,83.491736,22.737552,156.30636,731.10198,49.485048,0.119688,135.91376,0.9044,0.095,4.154,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.709,3511.082
-2449,1.620022,0,920.5807,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071596,0.0592,0.713958,83.496418,22.738826,156.31513,731.14299,49.487824,0.119694,135.92138,0.9044,0.095,4.155,0.501,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.723,3511.082
-2450,1.6171,0,920.6399,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.155,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.736,3511.082
-2451,1.61445,0,920.691,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.156,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.749,3511.082
-2452,1.6118,0,920.74209,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.156,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.763,3511.082
-2453,1.60915,0,920.79319,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.157,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.776,3511.082
-2454,1.6065,0,920.84428,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.157,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.789,3511.082
-2455,1.60385,0,920.89538,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.158,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.802,3511.082
-2456,1.6012,0,920.94648,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.158,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.815,3511.082
-2457,1.59855,0,920.99757,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.159,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.829,3511.082
-2458,1.5959,0,921.04867,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.159,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.842,3511.082
-2459,1.59325,0,921.09976,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.16,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.855,3511.082
-2460,1.5906,0,921.15086,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.16,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.868,3511.082
-2461,1.58795,0,921.20196,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.161,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.881,3511.082
-2462,1.5853,0,921.25305,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.161,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.894,3511.082
-2463,1.58265,0,921.30415,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.162,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.907,3511.082
-2464,1.58,0,921.35524,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.162,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.919,3511.082
-2465,1.57735,0,921.40634,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.163,0.502,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.932,3511.082
-2466,1.5747,0,921.45744,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.163,0.502,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.945,3511.082
-2467,1.57205,0,921.50853,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.164,0.502,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.958,3511.082
-2468,1.5694,0,921.55963,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.164,0.502,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.971,3511.082
-2469,1.56675,0,921.61072,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.165,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,159.983,3511.082
-2470,1.5641,0,921.66182,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.165,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,159.996,3511.082
-2471,1.56145,0,921.71292,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.009,3511.082
-2472,1.5588,0,921.76401,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.021,3511.082
-2473,1.55615,0,921.81511,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.034,3511.082
-2474,1.5535,0,921.8662,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.167,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.046,3511.082
-2475,1.55085,0,921.9173,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.167,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.059,3511.082
-2476,1.5482,0,921.9684,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.168,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.071,3511.082
-2477,1.54555,0,922.01949,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.168,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.084,3511.082
-2478,1.5429,0,922.07059,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.169,0.502,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.096,3511.082
-2479,1.54025,0,922.12168,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.169,0.502,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.109,3511.082
-2480,1.5376,0,922.17278,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.17,0.502,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.121,3511.082
-2481,1.53495,0,922.22388,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.17,0.502,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.134,3511.082
-2482,1.5323,0,922.27497,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.171,0.502,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.146,3511.082
-2483,1.52965,0,922.32607,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.171,0.503,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.158,3511.082
-2484,1.527,0,922.37716,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.172,0.503,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.17,3511.082
-2485,1.52435,0,922.42826,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.172,0.503,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.183,3511.082
-2486,1.5217,0,922.47936,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.195,3511.082
-2487,1.51905,0,922.53045,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.207,3511.082
-2488,1.5164,0,922.58155,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.219,3511.082
-2489,1.51375,0,922.63264,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.174,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.231,3511.082
-2490,1.5111,0,922.68374,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.174,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.244,3511.082
-2491,1.50845,0,922.73484,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.175,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.256,3511.082
-2492,1.5058,0,922.78593,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.175,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.268,3511.082
-2493,1.50315,0,922.83703,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.176,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.28,3511.082
-2494,1.5005,0,922.88812,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.176,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.292,3511.082
-2495,1.49785,0,922.93922,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.304,3511.082
-2496,1.4952,0,922.99032,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.316,3511.082
-2497,1.49255,0,923.04141,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.328,3511.082
-2498,1.4899,0,923.09251,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.339,3511.082
-2499,1.48725,0,923.1436,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.914,0.247,0,0,0,0.002,0,0,0.008,0,160.351,3511.082
-2500,1.4846,0,923.1947,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.914,0.247,0,0,0,0.002,0,0,0.008,0,160.351,3511.082
diff --git a/inst/shinyApp/www/input/emissions/RCP85_emissions.csv b/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
deleted file mode 100644
index a856dce..0000000
--- a/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
+++ /dev/null
@@ -1,740 +0,0 @@
-; RCP 8.5 emissions,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,MtS/yr,Gg/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,MtN/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr
-Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SOx,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,NH3,CF4_emissions,C2F6_emissions,C6F14,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,HALON1202,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions
-1765,0.003,0,0,0,0,0,0,0,0,0,0,0.83383669,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1766,0.003,0.005338296,1.9632619,0.005191085,0.098882647,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.85423057,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1767,0.003,0.010676593,2.4364481,0.010116813,0.1163065,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.87416738,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1768,0.003,0.016014889,2.911105,0.015042803,0.13381075,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.89365446,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1769,0.003,0.021353185,3.3872782,0.019969063,0.15139789,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.91269911,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1770,0.003,0.026691482,3.8650146,0.024895601,0.16907049,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.93130867,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1771,0.004,0.032029778,4.3443625,0.029822427,0.18683119,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.95253247,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1772,0.004,0.037368074,4.8253718,0.034749548,0.20468271,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.97029378,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1773,0.004,0.042706371,5.3080938,0.039676975,0.22262786,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.98764194,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1774,0.004,0.048044667,5.7925816,0.044604715,0.24066954,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,1.0045843,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1775,0.004,0.053382963,6.2788896,0.04953278,0.25881073,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,1.0211281,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1776,0.004,0.058721259,6.7670743,0.05446118,0.27705451,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,1.0372808,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1777,0.004,0.064059556,7.2571937,0.059389923,0.29540406,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,1.0530496,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1778,0.004,0.069397852,7.7493076,0.064319022,0.31386264,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,1.0684418,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1779,0.004,0.074736148,8.2434776,0.069248487,0.33243362,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,1.0834648,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1780,0.004,0.080074445,8.7397674,0.07417833,0.35112049,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,1.0981259,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1781,0.005,0.085412741,9.2382426,0.079108562,0.36992683,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,1.1154744,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1782,0.005,0.090751037,9.7389706,0.084039195,0.38885633,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,1.1294337,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1783,0.005,0.096089334,10.242021,0.088970241,0.4079128,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,1.143053,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1784,0.005,0.10142763,10.747466,0.093901714,0.42710016,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,1.1563396,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1785,0.005,0.10676593,11.25538,0.098833627,0.44642248,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,1.169301,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1786,0.005,0.11210422,11.765839,0.10376599,0.46588391,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,1.1819444,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1787,0.005,0.11744252,12.278921,0.10869883,0.48548877,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,1.194277,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1788,0.005,0.12278082,12.794707,0.11363214,0.50524148,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,1.2063064,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1789,0.005,0.12811911,13.313282,0.11856595,0.52514663,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,1.2180397,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1790,0.005,0.13345741,13.834732,0.12350027,0.54520892,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,1.2294843,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1791,0.006,0.1387957,14.359145,0.12843512,0.56543322,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,1.2436895,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1792,0.006,0.144134,14.886613,0.13337052,0.58582453,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,1.2545786,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1793,0.006,0.1494723,15.417231,0.13830648,0.60638803,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,1.265201,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1794,0.006,0.15481059,15.951096,0.14324301,0.62712904,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,1.2755639,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1795,0.006,0.16014889,16.488308,0.14818014,0.64805304,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,1.2856747,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1796,0.006,0.16548719,17.028971,0.15311788,0.66916569,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,1.2955407,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1797,0.007,0.17082548,17.573192,0.15805626,0.69047284,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,1.3082113,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1798,0.007,0.17616378,18.121081,0.16299529,0.7119805,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,1.3176096,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1799,0.007,0.18150207,18.672751,0.167935,0.73369486,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,1.3267852,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1800,0.008,0.18684037,19.228319,0.1728754,0.75562233,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,1.3387872,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1801,0.008,0.19217867,19.787906,0.17781651,0.77776949,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,1.347539,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1802,0.01,0.19751696,20.351635,0.18275836,0.80014313,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,1.362174,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1803,0.009,0.20285526,20.919636,0.18770098,0.82275026,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,1.3674894,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1804,0.009,0.20819356,21.49204,0.19264437,0.84559811,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,1.3756605,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1805,0.009,0.21353185,22.068984,0.19758858,0.86869411,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,1.3836527,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1806,0.01,0.21887015,22.650607,0.20253362,0.89204595,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,1.3945153,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1807,0.01,0.22420845,23.237055,0.20747952,0.91566153,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,1.4021716,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1808,0.01,0.22954674,23.828476,0.2124263,0.93954901,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,1.409671,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1809,0.01,0.23488504,24.425025,0.217374,0.9637168,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,1.4170207,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1810,0.01,0.24022333,25.02686,0.22232264,0.98817358,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,1.424228,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1811,0.011,0.24556163,25.634145,0.22727225,1.0129283,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,1.4343424,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1812,0.011,0.25089993,26.247048,0.23222285,1.0379901,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,1.4412871,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1813,0.011,0.25623822,26.865743,0.2371745,1.0633685,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,1.4481114,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1814,0.011,0.26157652,27.490408,0.2421272,1.0890734,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,1.4548227,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1815,0.012,0.26691482,28.12123,0.247081,1.1151148,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,1.4644703,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1816,0.013,0.27225311,28.758398,0.25203593,1.1415031,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,1.4740194,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1817,0.014,0.27759141,29.402108,0.25699203,1.1682491,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,1.4834775,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1818,0.014,0.2829297,30.052563,0.26194932,1.1953638,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,1.4898097,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1819,0.014,0.288268,30.709971,0.26690786,1.2228586,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,1.4960655,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1820,0.014,0.2936063,31.374548,0.27186767,1.2507453,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,1.5022522,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1821,0.014,0.29894459,32.046514,0.2768288,1.279036,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,1.5083771,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1822,0.015,0.30428289,32.7261,0.28179128,1.3077432,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,1.5174895,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1823,0.016,0.30962119,33.413539,0.28675516,1.3368798,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,1.5265547,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1824,0.016,0.31495948,34.109076,0.29172049,1.366459,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,1.532538,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1825,0.017,0.32029778,34.81296,0.2966873,1.3964945,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,1.5415308,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1826,0.017,0.32563608,35.52545,0.30165564,1.4270005,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,1.5474564,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1827,0.018,0.33097437,36.246813,0.30662557,1.4579916,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,1.5564061,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1828,0.018,0.33631267,36.977321,0.31159712,1.4894826,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,1.5623033,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1829,0.018,0.34165096,37.717259,0.31657035,1.5214891,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,1.5681971,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1830,0.024,0.34698926,38.466917,0.32154532,1.554027,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,1.5923472,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1831,0.023,0.35232756,39.226597,0.32652206,1.5871128,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,1.5952145,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1832,0.023,0.35766585,39.996609,0.33150065,1.6207633,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,1.6011425,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1833,0.024,0.36300415,40.777271,0.33648114,1.6549962,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,1.6101385,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1834,0.024,0.36834245,41.568914,0.34146358,1.6898292,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,1.6161259,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1835,0.025,0.37368074,42.371876,0.34644803,1.7252812,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,1.6251959,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1836,0.029,0.37901904,43.186509,0.35143456,1.7613711,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,1.64344,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1837,0.029,0.38435733,44.013173,0.35642324,1.7981187,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,1.6495713,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1838,0.03,0.38969563,44.85224,0.36141413,1.8355443,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,1.6588072,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1839,0.031,0.39503393,45.704093,0.36640729,1.873669,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,1.6681131,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1840,0.032999999,0.40037222,46.569129,0.3714028,1.9125143,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,1.6805382,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1841,0.033999999,0.40571052,47.447755,0.37640073,1.9521025,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,1.6900059,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1842,0.035999999,0.41104882,48.34039,0.38140115,1.9924567,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,1.7026076,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1843,0.036999999,0.41638711,49.247469,0.38640415,2.0336004,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,1.7122664,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1844,0.038999999,0.42172541,50.169439,0.3914098,2.0755581,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,1.7250737,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1845,0.042999999,0.42706371,51.106759,0.39641818,2.118355,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,1.744079,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1846,0.042999999,0.432402,52.059904,0.40142938,2.1620171,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,1.7510373,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1847,0.045999999,0.4377403,53.029365,0.40644349,2.206571,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,1.7672503,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1848,0.046999999,0.44307859,54.015644,0.41146059,2.2520444,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,1.7775149,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1849,0.049999999,0.44841689,55.019264,0.41648078,2.2984658,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,1.7940068,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1850,0.053999999,0.45375519,56.040759,0.42150415,2.3458644,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,1.8136911,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,0,157.267,3100.211
-1851,0.053999999,0.44678569,56.46132,0.42740096,2.401282,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,1.8469194,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,0,157.267,3100.211
-1852,0.056999999,0.49862282,56.88188,0.46466062,2.4566996,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,1.9946876,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,0,157.267,3100.211
-1853,0.058999999,0.49735449,57.302441,0.46477417,2.5121172,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,2.0008114,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,0,157.267,3100.211
-1854,0.068999999,0.49581708,57.723001,0.46443647,2.5675348,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,2.0303036,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,0,157.267,3100.211
-1855,0.070999999,0.49367925,58.143562,0.46327909,2.6229524,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,2.0325148,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,0,157.267,3100.211
-1856,0.075999999,0.49893488,58.564122,0.46729312,2.6783701,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,2.0617637,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,0,157.267,3100.211
-1857,0.076999999,0.504232,58.984683,0.47126447,2.7337877,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,2.078453,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,0,157.267,3100.211
-1858,0.077999999,0.50923298,59.405243,0.47503119,2.7892053,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,2.0943024,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,0,157.267,3100.211
-1859,0.082999999,0.51425389,59.825804,0.47876627,2.8446229,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,2.122971,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,0,157.267,3100.211
-1860,0.090999999,0.51896689,60.246364,0.48257672,2.9000405,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,2.1619782,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,0,157.267,3100.211
-1861,0.094999998,0.5282236,59.614468,0.50499476,2.9926781,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,2.2735927,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,0,157.267,3100.211
-1862,0.096999998,0.47371663,58.982573,0.47111281,3.0853157,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,2.1558166,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,0,157.267,3100.211
-1863,0.104,0.47374912,58.350677,0.47444935,3.1779532,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,2.192329,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,0,157.267,3100.211
-1864,0.112,0.47413825,57.718781,0.47785801,3.2705908,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,2.2299438,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,0,157.267,3100.211
-1865,0.119,0.47479536,57.086885,0.48144966,3.3632284,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,2.2655309,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,0,157.267,3100.211
-1866,0.122,0.47491218,56.45499,0.48420454,3.455866,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,2.2871958,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,0,157.267,3100.211
-1867,0.13022269,0.47338353,55.823094,0.48472337,3.5485035,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,2.3187563,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,0,157.267,3100.211
-1868,0.13525196,0.47198274,55.191198,0.48595323,3.6411411,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,2.3371841,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,0,157.267,3100.211
-1869,0.14228123,0.47048522,54.559303,0.48686155,3.7337787,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,2.3628056,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,0,157.267,3100.211
-1870,0.14731051,0.46933399,53.927407,0.48774355,3.8264163,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,2.3824052,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,0,157.267,3100.211
-1871,0.15633978,0.48732546,56.683869,0.58501628,3.9931681,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,2.8606677,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,0,157.267,3100.211
-1872,0.17336905,0.56696435,59.440331,0.66673981,4.1599199,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,3.2401697,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,0,157.267,3100.211
-1873,0.18439832,0.57690133,62.196793,0.69637076,4.3266717,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,3.4033641,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,0,157.267,3100.211
-1874,0.1744276,0.58328394,64.953255,0.7087503,4.4934235,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,3.4271557,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,0,157.267,3100.211
-1875,0.18845687,0.5899696,67.709717,0.72034342,4.6601753,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,3.5173084,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,157.267,3100.211
-1876,0.19148614,0.59639187,70.46618,0.74524338,4.8269271,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,3.6375503,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,0,157.267,3100.211
-1877,0.19451541,0.60262312,73.222642,0.75633197,4.9936789,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,3.6958465,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,157.267,3100.211
-1878,0.196,0.6090507,75.979104,0.7660459,5.1604307,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,3.7456526,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,0,157.267,3100.211
-1879,0.21,0.61534752,78.735566,0.77491118,5.3271825,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,3.8304098,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,0,157.267,3100.211
-1880,0.236,0.62124317,81.492028,0.78412129,5.4939343,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,3.9520183,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,0,157.267,3100.211
-1881,0.243,0.64887292,84.359461,0.81157848,5.7623214,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,4.071307,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,0,157.267,3100.211
-1882,0.256,0.60466403,87.226893,0.78526034,6.0307085,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,4.0198711,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,0,157.267,3100.211
-1883,0.272,0.60851762,90.094326,0.79255607,6.2990955,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,4.0985326,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,0,157.267,3100.211
-1884,0.275,0.61212775,92.961758,0.7987505,6.5674826,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,4.1333435,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,0,157.267,3100.211
-1885,0.27699999,0.61523611,95.829191,0.80453383,6.8358696,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,4.1646148,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,0,157.267,3100.211
-1886,0.28099999,0.61714413,98.696624,0.82619361,7.1042567,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,4.2758916,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,0,157.267,3100.211
-1887,0.295,0.61616314,101.56406,0.83219647,7.3726438,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,4.353178,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,0,157.267,3100.211
-1888,0.32699999,0.61473356,104.43149,0.83705812,7.6410308,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,4.4748698,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,0,157.267,3100.211
-1889,0.32699999,0.6132002,107.29892,0.84143987,7.9094179,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,4.498422,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,0,157.267,3100.211
-1890,0.35599999,0.61175412,110.16635,0.84552548,8.1778049,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,4.6037011,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,0,157.267,3100.211
-1891,0.37199999,0.61024855,111.52362,0.85098169,8.5673728,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,4.6830725,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,0,157.267,3100.211
-1892,0.37399999,0.62319119,112.88089,0.85741997,8.9569407,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,4.7551637,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,0,157.267,3100.211
-1893,0.36999999,0.62440331,114.23816,0.86475824,9.3465086,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,4.8217408,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,0,157.267,3100.211
-1894,0.38299999,0.64036719,115.59543,0.87294487,9.7360765,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,4.8845702,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,0,157.267,3100.211
-1895,0.40599999,0.64441851,116.9527,0.88188195,10.125644,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,4.9454181,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,0,157.267,3100.211
-1896,0.41899999,0.6462784,118.30997,0.89141802,10.515212,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,5.0060509,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,0,157.267,3100.211
-1897,0.43999999,0.64956412,119.66724,0.90140157,10.90478,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,5.0682347,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,0,157.267,3100.211
-1898,0.46499999,0.65100098,121.02451,0.91168111,11.294348,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,5.1337359,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,0,157.267,3100.211
-1899,0.50699999,0.65220446,122.38178,0.92210515,11.683916,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,5.2043208,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,0,157.267,3100.211
-1900,0.53399999,0.65320628,123.73905,0.9325222,12.073484,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,5.2817555,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,0,157.267,3100.211
-1901,0.55199999,0.70294318,124.8415,0.9446669,12.62988,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,5.3685634,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,0,157.267,3100.211
-1902,0.56599999,0.70297364,125.94396,0.95993065,13.186275,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,5.4646652,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,0,157.267,3100.211
-1903,0.61699999,0.72667096,127.04642,0.97764708,13.742671,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,5.5679233,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,0,157.267,3100.211
-1904,0.62399999,0.74829324,128.14887,0.99722904,14.299067,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,5.6762002,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,0,157.267,3100.211
-1905,0.66299999,0.76981521,129.25133,1.0181293,14.855463,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,5.7873584,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,0,157.267,3100.211
-1906,0.70699999,0.79653384,130.35378,1.0397413,15.411858,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,5.8992603,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,0,157.267,3100.211
-1907,0.78399999,0.80376274,131.45624,1.0614586,15.968254,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,6.0097685,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,0,157.267,3100.211
-1908,0.74999999,0.81141278,132.5587,1.0826746,16.52465,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,6.1167454,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,0,157.267,3100.211
-1909,0.78499999,0.81737807,133.66115,1.1027829,17.081045,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,6.2180534,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,0,157.267,3100.211
-1910,0.81899999,0.82198169,134.76361,1.121177,17.637441,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,6.3115552,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,0,157.267,3100.211
-1911,0.83599999,0.77889405,135.96943,1.1389722,17.821423,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,6.3975596,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,0,157.267,3100.211
-1912,0.87899999,0.74784844,137.17525,1.1575596,18.005405,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,6.4786614,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,0,157.267,3100.211
-1913,0.94299999,0.72297977,138.38107,1.1767464,18.189388,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,6.5561518,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,0,157.267,3100.211
-1914,0.84999999,0.71479152,139.5869,1.1962611,18.37337,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,6.6313219,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,0,157.267,3100.211
-1915,0.83799999,0.70574964,140.79272,1.2158443,18.557352,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,6.7054629,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,0,157.267,3100.211
-1916,0.90099999,0.70811648,141.99854,1.2353217,18.741334,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,6.7798659,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,0,157.267,3100.211
-1917,0.95499999,0.7111963,143.20436,1.254519,18.925316,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,6.8558222,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,0,157.267,3100.211
-1918,0.93599999,0.71430427,144.41019,1.2732618,19.109298,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,6.9346228,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,0,157.267,3100.211
-1919,0.80599999,0.71965435,145.61601,1.2913759,19.29328,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,7.0175589,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,0,157.267,3100.211
-1920,0.93199999,0.72128338,146.82183,1.3086869,19.477262,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,7.1059216,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,0,157.267,3100.211
-1921,0.80299999,0.75741661,147.86155,1.3257924,19.863884,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,7.20195,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,0,157.267,3100.211
-1922,0.84499999,0.7479409,148.90128,1.343275,20.250505,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,7.3058291,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,0,157.267,3100.211
-1923,0.96999999,0.75328819,149.941,1.3609385,20.637127,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,7.415769,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,0,157.267,3100.211
-1924,0.96299999,0.75686059,150.98072,1.3796194,21.023748,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,7.5299799,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,0,157.267,3100.211
-1925,0.97499999,0.75808855,152.02045,1.3998974,21.41037,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,7.6466719,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,0,157.267,3100.211
-1926,0.98299999,0.76148327,153.06017,1.4211909,21.796991,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,7.7640552,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,0,157.267,3100.211
-1927,1.062,0.79718283,154.09989,1.4429184,22.183613,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,7.8803399,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,0,157.267,3100.211
-1928,1.065,0.79967141,155.13962,1.4644982,22.570234,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,7.9937361,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,0,157.267,3100.211
-1929,1.145,0.82422601,156.17934,1.4853488,22.956856,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,8.102454,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,0,157.267,3100.211
-1930,1.053,0.89587975,157.21906,1.5048887,23.343477,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,8.2047038,1.6637375,0.23563239,0,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,0,157.267,3100.211
-1931,0.93999999,0.90334082,158.34545,1.5226236,23.754956,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,8.298548,1.7507764,0.24803412,0,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,0,157.267,3100.211
-1932,0.84699999,0.81222597,159.47183,1.5385172,24.166434,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,8.3849848,1.8423953,0.26108852,0,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,0,157.267,3100.211
-1933,0.89299999,0.80858849,160.59821,1.5526746,24.577913,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,8.4666283,1.9388369,0.27483004,0,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,0,157.267,3100.211
-1934,0.97299999,0.79686256,161.7246,1.5653127,24.989392,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,8.5460922,2.0403528,0.28929476,0,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,0,157.267,3100.211
-1935,1.027,0.79471575,162.85098,1.5771213,25.40087,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,8.6259906,2.1472124,0.30452082,0,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,0,157.267,3100.211
-1936,1.13,0.80129993,163.97736,1.5889151,25.812349,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,8.7089373,2.2596977,0.32054821,0,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,0,157.267,3100.211
-1937,1.209,0.77969902,165.10375,1.6015088,26.223828,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,8.7975462,2.3781004,0.33741917,0,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,0,157.267,3100.211
-1938,1.142,0.78188222,166.23013,1.615717,26.635306,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,8.8944313,2.5027381,0.35517808,0,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,0,157.267,3100.211
-1939,1.192,0.77944376,167.35651,1.6323545,27.046785,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,9.0022064,2.6339328,0.37387169,0,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,0,157.267,3100.211
-1940,1.299,0.76683237,168.4829,1.6522358,27.458263,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,9.1234856,2.7720335,0.39354912,0,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,0,157.267,3100.211
-1941,1.334,0.75036458,170.03046,1.7002044,27.840442,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,9.2653861,2.9174066,0.41426223,0,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,0,157.267,3100.211
-1942,1.342,0.7690497,171.57803,1.7938613,28.22262,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,9.4321173,3.0704314,0.39468287,0,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,0,157.267,3100.211
-1943,1.391,0.7637656,173.12559,1.9231582,28.604799,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,9.6219311,3.2315097,0.37832187,0,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,0,157.267,3100.211
-1944,1.383,0.76839864,174.67315,2.0866797,28.986977,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,9.8330792,3.4010636,0.3640764,0,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,0,157.267,3100.211
-1945,1.16,0.76914739,176.22072,2.280402,29.369156,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,10.063814,3.579544,0.35194679,0,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,0,157.267,3100.211
-1946,1.238,0.84214892,177.76828,2.4903635,29.751334,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,10.312386,3.7674167,0.34193311,0,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,0,157.267,3100.211
-1947,1.392,0.87017994,179.31584,2.7026031,30.133513,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,10.577048,3.9651774,0.33403572,0,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,0,157.267,3100.211
-1948,1.469,0.87513044,180.86341,2.9031595,30.515691,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,10.856052,4.1733472,0.32825472,0,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,0,157.267,3100.211
-1949,1.419,0.88212641,182.41097,3.0780722,30.897869,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,11.14765,4.3924702,0.32459037,0,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,0,157.267,3100.211
-1950,1.63,0.89233465,183.95853,3.2133815,31.280048,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,11.450093,4.62313,0.32304286,0,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,0,157.267,3100.211
-1951,1.768,1.0885201,189.11003,3.3186021,32.866948,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,11.784634,4.865916,0.32361242,0,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,0,157.267,3100.211
-1952,1.796,1.1096378,194.26153,3.4111061,34.453849,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,12.1691,5.121479,0.32629927,0,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,0,157.927,3117.785
-1953,1.841,1.1045171,199.41303,3.4887221,36.040749,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,12.596604,5.3904959,0.3311036,0,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,0,158.604,3137.148
-1954,1.865,1.1521416,204.56453,3.5543489,37.62765,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,13.060259,5.6736692,0.33802563,0,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,0,159.3,3158.216
-1955,2.043,1.1911855,209.71603,3.614111,39.21455,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,13.553179,5.9717491,0.34706557,0,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,0,160.014,3180.749
-1956,2.178,1.2446883,214.86753,3.6706801,40.801451,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,14.068475,6.2855162,0.35822365,0,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,0,160.748,3204.498
-1957,2.27,1.2718718,220.01902,3.7267318,42.388351,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,14.599262,6.6157969,0.37150001,0,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,0,161.502,3229.071
-1958,2.33,1.3195817,225.17052,3.7849451,43.975252,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,15.138652,6.9634615,0.38689499,0,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,0,162.277,3254.039
-1959,2.462,1.2035957,230.32202,3.8480013,45.562152,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,15.679758,7.3294266,0.40440867,0,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,0,163.073,3278.967
-1960,2.577,1.1922833,235.47352,3.9185827,47.149053,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,16.215694,7.7146508,0.42404135,0,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,0,163.892,3303.389
-1961,2.594,1.2443218,238.52217,4.0240052,48.77076,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,16.759267,8.1201607,0.4457932,0,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,0,164.735,3326.864
-1962,2.7,1.2355717,241.57083,4.1836477,50.392468,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,17.326046,8.5470132,0.46966444,0,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,0,165.601,3349.069
-1963,2.848,1.2442947,244.61948,4.3883117,52.014176,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,17.913289,14.984956,0.49565531,0,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.001,0.007,166.493,3369.713
-1964,3.008,1.2515879,247.66813,4.6374693,53.635884,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,18.518251,13.488099,0.52376596,0,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.002,0.003,0.014,167.41,3388.628
-1965,3.145,1.2642558,250.71679,4.8968181,55.257592,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,19.138189,13.488369,0.55399667,0,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.005,0.028,168.355,3405.698
-1966,3.305,1.2936968,253.76544,5.195583,56.8793,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,19.770361,13.488639,0.58634761,0,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.008,0.048,169.328,3420.923
-1967,3.411,1.2976254,256.81409,5.457478,58.501008,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,20.412021,13.488909,0.62081899,0,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.013,0.075,170.329,3434.335
-1968,3.588,1.2352028,259.86274,5.619744,60.122716,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,21.060427,13.48918,0.65741104,0,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.019,0.016,0.109,171.36,3446.065
-1969,3.8,1.2383879,262.9114,5.784831,61.744424,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,21.712835,13.489449,0.69612398,0,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.026,0.024,0.15,172.423,3456.224
-1970,4.076,1.1971129,265.96005,5.9368752,63.366132,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,22.366503,11.992564,0.73695798,0,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.035,0.043,0.197,173.518,3464.95
-1971,4.231,1.0708913,270.02505,5.6049759,63.545863,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,23.042459,13.489967,0.7799133,0,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.044,0.1,0.252,174.646,3472.409
-1972,4.399,1.0470621,274.09004,5.9181309,63.725594,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,23.75562,13.490244,0.82499011,0,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.055,0.17,0.313,175.809,3478.741
-1973,4.6349999,1.0330987,278.15504,6.0449043,63.905326,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,24.494072,13.490523,0.87218868,0,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.067,0.277,0.391,177.007,3484.114
-1974,4.644,1.0387371,282.22003,5.9406002,64.085057,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,25.2459,11.993645,0.9215092,0,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.08,0.372,0.468,178.243,3488.632
-1975,4.615,1.0315876,286.28503,6.1409693,64.264788,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,25.999188,13.49105,0.97295172,0,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.095,0.524,0.544,179.517,3492.425
-1976,4.883,1.0906077,290.35002,6.3042588,64.444519,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,26.742024,13.491328,1.0265167,0,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.11,0.783,0.621,180.83,3495.619
-1977,5.029,1.0939874,294.41502,6.534405,64.624251,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,27.462492,11.994452,1.0822044,0,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,0.127,1.006,0.697,182.185,3498.281
-1978,5.105,1.09037,298.48002,6.6193729,64.803982,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,28.148677,13.491857,1.1400146,0,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,0.145,1.253,0.774,183.581,3500.505
-1979,5.387,1.0647127,302.54501,7.007773,64.983713,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,28.788664,11.994981,1.1999481,0,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,0.161,1.548,0.85,185.022,3502.36
-1980,5.332,1.0252096,306.61001,7.0613923,65.163444,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,29.37054,13.492387,1.2620043,0,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,0.185,1.805,0.927,186.506,3503.915
-1981,5.168,1.0448621,310.01251,6.8417522,65.043883,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,29.931853,11.995499,1.3261846,0,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,0.206,2.139,1.003,188.038,3505.193
-1982,5.127,1.1904055,313.415,7.1189858,64.924321,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,30.508393,13.492893,1.392488,0,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,0.229,2.645,1.105,189.616,3506.255
-1983,5.11,1.2255201,316.8175,7.2168971,64.80476,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,31.085608,11.996004,1.4609153,0,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,0.249,2.98,1.183,191.243,3507.154
-1984,5.29,1.2600833,320.22,7.0481314,64.685199,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,31.648945,11.996242,1.5314669,0,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,0.269,3.475,1.262,192.92,3507.882
-1985,5.444,1.2753449,323.6225,7.0169243,64.565637,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,32.183851,11.99648,1.6041426,0,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,0.289,3.997,1.355,194.648,3508.496
-1986,5.61,1.2872023,327.025,7.0704917,64.446076,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,32.675774,13.493874,1.678943,0,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,0.309,4.579,1.434,196.427,3508.999
-1987,5.753,1.2940086,330.42749,7.4616728,64.326514,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,33.110161,11.996986,1.7558675,0,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,0.329,5.109,1.504,198.259,3509.425
-1988,5.964,1.3167248,333.82999,7.2025077,64.206953,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,33.472458,11.997224,1.8349176,0,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,0.349,5.696,1.728,200.146,3509.774
-1989,6.089,1.3236436,337.23249,7.3310397,64.087391,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,33.748114,11.997462,1.9160924,0,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,0.369,5.482,1.73,202.087,3510.061
-1990,6.144,1.3194833,340.63499,7.5856812,63.96783,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,33.922575,11.997683,2.0735678,0,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,0.389,5.119,1.73,204.082,3510.299
-1991,6.235,1.3809799,336.59218,7.4023631,62.955167,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,34.026024,11.997905,2.3729101,0,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,0.409,4.094,1.735,206.133,3510.501
-1992,6.118,1.3035304,332.54937,7.7989323,61.942504,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,34.113528,11.998111,2.3731469,0,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,0.429,2.74,1.715,208.24,3510.656
-1993,6.124,1.2981006,328.50656,7.3131034,60.929841,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,34.207861,11.998354,2.3733837,0,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,0.509,3.344,1.7,210.402,3510.801
-1994,6.242,1.2895956,324.46375,7.5072841,59.917178,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,34.331799,11.998587,2.3736205,0,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,0.589,4.75,1.68,212.619,3510.907
-1995,6.372,1.2750104,320.42094,7.6191035,58.904515,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,34.508115,10.501674,2.3738573,0,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,0.669,3.991,1.3,200.199,3511.005
-1996,6.51,1.2511025,316.37814,7.6520638,57.891852,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,34.960533,11.999071,2.3740941,0,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,0.729,2.691,0.85,201.834,3511.082
-1997,6.619,1.2181397,312.33533,7.9097526,56.879189,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,35.833672,11.999322,2.3743309,0,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,0.789,2.594,0.7,207.696,3511.082
-1998,6.588,1.2148431,308.29252,7.8957263,55.866526,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,37.03165,11.999575,2.3745677,0,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,0.607,2.491,0.71,206.946,3511.082
-1999,6.569,1.1827892,304.24971,7.5269849,54.853863,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,38.458587,10.502692,2.3748045,0,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,0.467,2.39,0.631,195.938,3511.082
-2000,6.735,1.1488,300.2069,150,53.8412,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,40.0186,12.0001,2.3749,0.4624,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,0.328,2.295,0.562,186.206,3511.082
-2001,6.8959,1.132,303.4092,7.503,54.4191,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,40.3916,11.925,2.4345,0.4651,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,0.282,2.209,0.5,181.525,3511.082
-2002,6.949,1.2317,306.5788,7.5487,54.9961,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,40.7646,11.8481,2.4915,0.4058,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,0.235,2.131,0.445,181.887,3511.082
-2003,7.286,1.2257,309.7164,7.5942,55.5716,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,41.1378,11.7693,2.5463,0.3939,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,0.189,2.057,0.396,177.539,3511.082
-2004,7.6719,1.2429,312.824,7.6394,56.1461,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,41.5107,11.6885,2.599,0.4062,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,0.189,1.987,0.353,174.26,3511.082
-2005,7.971,1.1955,315.9027,7.6841,56.7195,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,41.8837,11.6059,2.6494,0.4358,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,0.189,1.92,0.314,168.841,3511.082
-2006,8.1615,1.165,322.1577,7.778,55.4143,55414.3,1058.9366,215.6435,38.9081,8.2076,36.1912,42.2092,11.4149,2.6001,0.4427,10.5529,12.3831,3.8842,17.9373,121.0746,15.3186,6.2176,38.6318,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,0.049,1.834,0.279,167.857,3511.082
-2007,8.3523,1.1349,328.4342,7.8717,54.1117,54111.7,1056.3789,215.8292,39.0226,8.1641,35.9908,42.5348,11.2221,2.5502,0.4492,10.2947,13.7731,4.5338,22.1104,129.6223,18.1628,7.5465,50.375,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,0.049,1.752,0.249,167.857,3511.082
-2008,8.5434,1.1045,334.75397,7.9653667,52.814733,52814.733,1053.8833,216.0247,39.1394,8.1208667,35.7901,42.860767,11.0262,2.4998333,0.45503333,10.037233,15.162767,5.1847667,26.273033,137.2526,20.954333,8.8781,62.118267,6.7489333,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,0.049,1.675,0.221,167.857,3511.082
-2009,8.7345,1.0741,341.07373,8.0590333,51.517767,51517.767,1051.3876,216.2202,39.2562,8.0776333,35.5894,43.186733,10.8303,2.4494667,0.46086667,9.7797667,16.552433,5.8357333,30.435667,144.8829,23.745867,10.2097,73.861533,6.8965667,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,0.049,1.601,0.197,167.857,3511.082
-2010,8.9256,1.0437,347.3935,8.1527,50.2208,50220.8,1048.892,216.4157,39.373,8.0344,35.3887,43.5127,10.6344,2.3991,0.4667,9.5223,17.9421,6.4867,34.5983,152.5132,26.5374,11.5413,85.6048,7.0442,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,0,1.521,0.175,167.857,3511.082
-2011,9.18679,1.02998,354.56076,8.29296,49.9685,49968.5,1050.5457,217.31987,39.6333,7.99705,35.29844,44.01174,10.74841,2.42213,0.43848,8.68531,22.21208,6.56469,37.80811,163.76989,27.39032,10.50312,91.86659,7.1479,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,0,1.445,0.156,167.857,3511.082
-2012,9.44798,1.01626,361.72802,8.43322,49.7162,49716.2,1052.1995,218.22404,39.8936,7.9597,35.20818,44.51078,10.86242,2.44516,0.41026,7.84832,26.48206,6.64268,41.01792,175.02658,28.24324,9.46494,98.12838,7.2516,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,0,1.373,0.139,167.857,3511.082
-2013,9.70917,1.00254,368.89528,8.57348,49.4639,49463.9,1053.8532,219.12821,40.1539,7.92235,35.11792,45.00982,10.97643,2.46819,0.38204,7.01133,30.75204,6.72067,44.22773,186.28327,29.09616,8.42676,104.39017,7.3553,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,0,1.304,0.124,167.857,3511.082
-2014,9.97036,0.98882,376.06254,8.71374,49.2116,49211.6,1055.507,220.03238,40.4142,7.885,35.02766,45.50886,11.09044,2.49122,0.35382,6.17434,35.02202,6.79866,47.43754,197.53996,29.94908,7.38858,110.65196,7.459,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,0,1.239,0.11,167.857,3511.082
-2015,10.23155,0.9751,383.2298,8.854,48.9593,48959.3,1057.1607,220.93655,40.6745,7.84765,34.9374,46.0079,11.20445,2.51425,0.3256,5.33735,39.292,6.87665,50.64735,208.79665,30.802,6.3504,116.91375,7.5627,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,0,1.177,0.098,155.925,3511.082
-2016,10.49274,0.96138,390.39706,8.99426,48.707,48707,1058.8144,221.84072,40.9348,7.8103,34.84714,46.50694,11.31846,2.53728,0.29738,4.50036,43.56198,6.95464,53.85716,220.05334,31.65492,5.31222,123.17554,7.6664,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,0,1.118,0.087,155.925,3511.082
-2017,10.75393,0.94766,397.56432,9.13452,48.4547,48454.7,1060.4682,222.74489,41.1951,7.77295,34.75688,47.00598,11.43247,2.56031,0.26916,3.66337,47.83196,7.03263,57.06697,231.31003,32.50784,4.27404,129.43733,7.7701,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,0,1.062,0.078,155.925,3511.082
-2018,11.01512,0.93394,404.73158,9.27478,48.2024,48202.4,1062.1219,223.64906,41.4554,7.7356,34.66662,47.50502,11.54648,2.58334,0.24094,2.82638,52.10194,7.11062,60.27678,242.56672,33.36076,3.23586,135.69912,7.8738,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,0,1.009,0.069,155.925,3511.082
-2019,11.27631,0.92022,411.89884,9.41504,47.9501,47950.1,1063.7757,224.55323,41.7157,7.69825,34.57636,48.00406,11.66049,2.60637,0.21272,1.98939,56.37192,7.18861,63.48659,253.82341,34.21368,2.19768,141.96091,7.9775,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0,0.959,0.061,155.925,3511.082
-2020,11.5375,0.9065,419.0661,9.5553,47.6978,47697.8,1065.4294,225.4574,41.976,7.6609,34.4861,48.5031,11.7745,2.6294,0.1845,1.1524,60.6419,7.2666,66.6964,265.0801,35.0666,1.1595,148.2227,8.0812,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0,0.911,0.055,155.925,3511.082
-2021,11.76766,0.88735,425.58022,9.67767,47.17596,47175.96,1060.7002,225.45703,41.9129,7.59914,34.34997,48.88879,11.83853,2.64399,0.17723,1.1063,61.78125,7.35248,67.92232,271.95969,35.3783,1.10411,152.77696,8.27191,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0,0.865,0.049,155.925,3511.082
-2022,11.99782,0.8682,432.09434,9.80004,46.65412,46654.12,1055.971,225.45666,41.8498,7.53738,34.21384,49.27448,11.90256,2.65858,0.16996,1.0602,62.9206,7.43836,69.14824,278.83928,35.69,1.04872,157.33122,8.46262,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0,0.822,0.043,155.925,3511.082
-2023,12.22798,0.84905,438.60846,9.92241,46.13228,46132.28,1051.2418,225.45629,41.7867,7.47562,34.07771,49.66017,11.96659,2.67317,0.16269,1.0141,64.05995,7.52424,70.37416,285.71887,36.0017,0.99333,161.88548,8.65333,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0,0.781,0.039,155.925,3511.082
-2024,12.45814,0.8299,445.12258,10.04478,45.61044,45610.44,1046.5126,225.45592,41.7236,7.41386,33.94158,50.04586,12.03062,2.68776,0.15542,0.968,65.1993,7.61012,71.60008,292.59846,36.3134,0.93794,166.43974,8.84404,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0,0.742,0.034,155.925,3511.082
-2025,12.6883,0.81075,451.6367,10.16715,45.0886,45088.6,1041.7833,225.45555,41.6605,7.3521,33.80545,50.43155,12.09465,2.70235,0.14815,0.9219,66.33865,7.696,72.826,299.47805,36.6251,0.88255,170.994,9.03475,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0,0.705,0.031,155.925,3511.082
-2026,12.91846,0.7916,458.15082,10.28952,44.56676,44566.76,1037.0541,225.45518,41.5974,7.29034,33.66932,50.81724,12.15868,2.71694,0.14088,0.8758,67.478,7.78188,74.05192,306.35764,36.9368,0.82716,175.54826,9.22546,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0,0.669,0.027,155.925,3511.082
-2027,13.14862,0.77245,464.66494,10.41189,44.04492,44044.92,1032.3249,225.45481,41.5343,7.22858,33.53319,51.20293,12.22271,2.73153,0.13361,0.8297,68.61735,7.86776,75.27784,313.23723,37.2485,0.77177,180.10252,9.41617,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0,0.636,0.024,155.925,3511.082
-2028,13.37878,0.7533,471.17906,10.53426,43.52308,43523.08,1027.5957,225.45444,41.4712,7.16682,33.39706,51.58862,12.28674,2.74612,0.12634,0.7836,69.7567,7.95364,76.50376,320.11682,37.5602,0.71638,184.65678,9.60688,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0,0.604,0.022,155.925,3511.082
-2029,13.60894,0.73415,477.69318,10.65663,43.00124,43001.24,1022.8665,225.45407,41.4081,7.10506,33.26093,51.97431,12.35077,2.76071,0.11907,0.7375,70.89605,8.03952,77.72968,326.99641,37.8719,0.66099,189.21104,9.79759,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0,0.574,0.019,155.925,3511.082
-2030,13.8391,0.715,484.2073,10.779,42.4794,42479.4,1018.1373,225.4537,41.345,7.0433,33.1248,52.36,12.4148,2.7753,0.1118,0.6914,72.0354,8.1254,78.9556,333.876,38.1836,0.6056,193.7653,9.9883,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0,0.545,0.017,155.925,3511.082
-2031,14.13385,0.708,493.52545,10.90391,41.50452,41504.52,1011.8253,224.72621,40.90273,6.95231,32.96601,52.7122,12.38727,2.77061,0.1119,0.66362,72.90303,8.22403,81.08502,341.18468,38.94891,0.6214,192.50584,10.11551,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0,0.518,0.015,155.925,3511.082
-2032,14.4286,0.701,502.8436,11.02882,40.52964,40529.64,1005.5133,223.99872,40.46046,6.86132,32.80722,53.0644,12.35974,2.76592,0.112,0.63584,73.77066,8.32266,83.21444,348.49336,39.71422,0.6372,191.24638,10.24272,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0,0.492,0.013,155.925,3511.082
-2033,14.72335,0.694,512.16175,11.15373,39.55476,39554.76,999.20136,223.27123,40.01819,6.77033,32.64843,53.4166,12.33221,2.76123,0.1121,0.60806,74.63829,8.42129,85.34386,355.80204,40.47953,0.653,189.98692,10.36993,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0,0.467,0.012,155.925,3511.082
-2034,15.0181,0.687,521.4799,11.27864,38.57988,38579.88,992.88938,222.54374,39.57592,6.67934,32.48964,53.7688,12.30468,2.75654,0.1122,0.58028,75.50592,8.51992,87.47328,363.11072,41.24484,0.6688,188.72746,10.49714,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0,0.444,0.011,155.925,3511.082
-2035,15.31285,0.68,530.79805,11.40355,37.605,37605,986.5774,221.81625,39.13365,6.58835,32.33085,54.121,12.27715,2.75185,0.1123,0.5525,76.37355,8.61855,89.6027,370.4194,42.01015,0.6846,187.468,10.62435,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0,0.422,0.01,155.925,3511.082
-2036,15.6076,0.673,540.1162,11.52846,36.63012,36630.12,980.26542,221.08876,38.69138,6.49736,32.17206,54.4732,12.24962,2.74716,0.1124,0.52472,77.24118,8.71718,91.73212,377.72808,42.77546,0.7004,186.20854,10.75156,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0,0.401,0.008,155.925,3511.082
-2037,15.90235,0.666,549.43435,11.65337,35.65524,35655.24,973.95344,220.36127,38.24911,6.40637,32.01327,54.8254,12.22209,2.74247,0.1125,0.49694,78.10881,8.81581,93.86154,385.03676,43.54077,0.7162,184.94908,10.87877,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0,0.381,0.008,155.925,3511.082
-2038,16.1971,0.659,558.7525,11.77828,34.68036,34680.36,967.64146,219.63378,37.80684,6.31538,31.85448,55.1776,12.19456,2.73778,0.1126,0.46916,78.97644,8.91444,95.99096,392.34544,44.30608,0.732,183.68962,11.00598,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0,0.362,0.007,155.925,3511.082
-2039,16.49185,0.652,568.07065,11.90319,33.70548,33705.48,961.32948,218.90629,37.36457,6.22439,31.69569,55.5298,12.16703,2.73309,0.1127,0.44138,79.84407,9.01307,98.12038,399.65412,45.07139,0.7478,182.43016,11.13319,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0,0.344,0.006,155.925,3511.082
-2040,16.7866,0.645,577.3888,12.0281,32.7306,32730.6,955.0175,218.1788,36.9223,6.1334,31.5369,55.882,12.1395,2.7284,0.1128,0.4136,80.7117,9.1117,100.2498,406.9628,45.8367,0.7636,181.1707,11.2604,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0,0.326,0.005,155.925,3511.082
-2041,17.1284,0.6381,587.33132,12.10488,32.06863,32068.63,950.1349,217.20395,36.58085,6.08412,31.38737,56.15821,12.17462,2.73746,0.11238,0.39687,80.10127,9.23927,101.83831,412.75679,46.27373,0.71926,179.22469,11.3309,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0,0.31,0.005,155.925,3511.082
-2042,17.4702,0.6312,597.27384,12.18166,31.40666,31406.66,945.2523,216.2291,36.2394,6.03484,31.23784,56.43442,12.20974,2.74652,0.11196,0.38014,79.49084,9.36684,103.42682,418.55078,46.71076,0.67492,177.27868,11.4014,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0,0.295,0.004,155.925,3511.082
-2043,17.812,0.6243,607.21636,12.25844,30.74469,30744.69,940.3697,215.25425,35.89795,5.98556,31.08831,56.71063,12.24486,2.75558,0.11154,0.36341,78.88041,9.49441,105.01533,424.34477,47.14779,0.63058,175.33267,11.4719,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0,0.28,0.004,155.925,3511.082
-2044,18.1538,0.6174,617.15888,12.33522,30.08272,30082.72,935.4871,214.2794,35.5565,5.93628,30.93878,56.98684,12.27998,2.76464,0.11112,0.34668,78.26998,9.62198,106.60384,430.13876,47.58482,0.58624,173.38666,11.5424,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0,0.266,0.003,155.925,3511.082
-2045,18.4956,0.6105,627.1014,12.412,29.42075,29420.75,930.6045,213.30455,35.21505,5.887,30.78925,57.26305,12.3151,2.7737,0.1107,0.32995,77.65955,9.74955,108.19235,435.93275,48.02185,0.5419,171.44065,11.6129,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0,0.253,0.003,155.925,3511.082
-2046,18.8374,0.6036,637.04392,12.48878,28.75878,28758.78,925.7219,212.3297,34.8736,5.83772,30.63972,57.53926,12.35022,2.78276,0.11028,0.31322,77.04912,9.87712,109.78086,441.72674,48.45888,0.49756,169.49464,11.6834,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0,0.24,0.003,155.925,3511.082
-2047,19.1792,0.5967,646.98644,12.56556,28.09681,28096.81,920.8393,211.35485,34.53215,5.78844,30.49019,57.81547,12.38534,2.79182,0.10986,0.29649,76.43869,10.00469,111.36937,447.52073,48.89591,0.45322,167.54863,11.7539,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0,0.228,0.002,155.925,3511.082
-2048,19.521,0.5898,656.92896,12.64234,27.43484,27434.84,915.9567,210.38,34.1907,5.73916,30.34066,58.09168,12.42046,2.80088,0.10944,0.27976,75.82826,10.13226,112.95788,453.31472,49.33294,0.40888,165.60262,11.8244,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0,0.217,0.002,155.925,3511.082
-2049,19.8628,0.5829,666.87148,12.71912,26.77287,26772.87,911.0741,209.40515,33.84925,5.68988,30.19113,58.36789,12.45558,2.80994,0.10902,0.26303,75.21783,10.25983,114.54639,459.10871,49.76997,0.36454,163.65661,11.8949,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0,0.206,0.002,155.925,3511.082
-2050,20.2046,0.576,676.814,12.7959,26.1109,26110.9,906.1915,208.4303,33.5078,5.6406,30.0416,58.6441,12.4907,2.819,0.1086,0.2463,74.6074,10.3874,116.1349,464.9027,50.207,0.3202,161.7106,11.9654,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0,0.195,0.002,155.925,3511.082
-2051,20.54375,0.5685,683.65001,12.85847,25.77037,25770.37,899.68938,207.70767,33.32257,5.59518,29.87913,58.85085,12.41897,2.80583,0.10848,0.23542,75.55522,10.56431,117.32942,469.21826,50.42871,0.30297,160.45046,12.17483,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0,0.186,0.001,155.925,3511.082
-2052,20.8829,0.561,690.48602,12.92104,25.42984,25429.84,893.18726,206.98504,33.13734,5.54976,29.71666,59.0576,12.34724,2.79266,0.10836,0.22454,76.50304,10.74122,118.52394,473.53382,50.65042,0.28574,159.19032,12.38426,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0,0.176,0.001,155.925,3511.082
-2053,21.22205,0.5535,697.32203,12.98361,25.08931,25089.31,886.68514,206.26241,32.95211,5.50434,29.55419,59.26435,12.27551,2.77949,0.10824,0.21366,77.45086,10.91813,119.71846,477.84938,50.87213,0.26851,157.93018,12.59369,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0,0.168,0.001,155.925,3511.082
-2054,21.5612,0.546,704.15804,13.04618,24.74878,24748.78,880.18302,205.53978,32.76688,5.45892,29.39172,59.4711,12.20378,2.76632,0.10812,0.20278,78.39868,11.09504,120.91298,482.16494,51.09384,0.25128,156.67004,12.80312,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0,0.159,0.001,155.925,3511.082
-2055,21.90035,0.5385,710.99405,13.10875,24.40825,24408.25,873.6809,204.81715,32.58165,5.4135,29.22925,59.67785,12.13205,2.75315,0.108,0.1919,79.3465,11.27195,122.1075,486.4805,51.31555,0.23405,155.4099,13.01255,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0,0.151,0.001,155.925,3511.082
-2056,22.2395,0.531,717.83006,13.17132,24.06772,24067.72,867.17878,204.09452,32.39642,5.36808,29.06678,59.8846,12.06032,2.73998,0.10788,0.18102,80.29432,11.44886,123.30202,490.79606,51.53726,0.21682,154.14976,13.22198,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0,0.144,0.001,155.925,3511.082
-2057,22.57865,0.5235,724.66607,13.23389,23.72719,23727.19,860.67666,203.37189,32.21119,5.32266,28.90431,60.09135,11.98859,2.72681,0.10776,0.17014,81.24214,11.62577,124.49654,495.11162,51.75897,0.19959,152.88962,13.43141,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0,0.136,0.001,155.925,3511.082
-2058,22.9178,0.516,731.50208,13.29646,23.38666,23386.66,854.17454,202.64926,32.02596,5.27724,28.74184,60.2981,11.91686,2.71364,0.10764,0.15926,82.18996,11.80268,125.69106,499.42718,51.98068,0.18236,151.62948,13.64084,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0,0.13,0.001,155.925,3511.082
-2059,23.25695,0.5085,738.33809,13.35903,23.04613,23046.13,847.67242,201.92663,31.84073,5.23182,28.57937,60.50485,11.84513,2.70047,0.10752,0.14838,83.13778,11.97959,126.88558,503.74274,52.20239,0.16513,150.36934,13.85027,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0,0.123,0.001,155.925,3511.082
-2060,23.5961,0.501,745.1741,13.4216,22.7056,22705.6,841.1703,201.204,31.6555,5.1864,28.4169,60.7116,11.7734,2.6873,0.1074,0.1375,84.0856,12.1565,128.0801,508.0583,52.4241,0.1479,149.1092,14.0597,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0,0.117,0.001,155.925,3511.082
-2061,23.83271,0.4921,748.66794,13.47346,22.44148,22441.48,836.60001,200.44051,31.50876,5.15328,28.30481,60.89133,11.78015,2.69384,0.10732,0.13105,85.06506,12.33644,129.34352,512.72379,52.64359,0.146,147.84735,14.00293,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0,0.111,0,155.925,3511.082
-2062,24.06932,0.4832,752.16178,13.52532,22.17736,22177.36,832.02972,199.67702,31.36202,5.12016,28.19272,61.07106,11.7869,2.70038,0.10724,0.1246,86.04452,12.51638,130.60694,517.38928,52.86308,0.1441,146.5855,13.94616,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0,0.106,0,155.925,3511.082
-2063,24.30593,0.4743,755.65562,13.57718,21.91324,21913.24,827.45943,198.91353,31.21528,5.08704,28.08063,61.25079,11.79365,2.70692,0.10716,0.11815,87.02398,12.69632,131.87036,522.05477,53.08257,0.1422,145.32365,13.88939,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0,0.1,0,155.925,3511.082
-2064,24.54254,0.4654,759.14946,13.62904,21.64912,21649.12,822.88914,198.15004,31.06854,5.05392,27.96854,61.43052,11.8004,2.71346,0.10708,0.1117,88.00344,12.87626,133.13378,526.72026,53.30206,0.1403,144.0618,13.83262,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0,0.095,0,155.925,3511.082
-2065,24.77915,0.4565,762.6433,13.6809,21.385,21385,818.31885,197.38655,30.9218,5.0208,27.85645,61.61025,11.80715,2.72,0.107,0.10525,88.9829,13.0562,134.3972,531.38575,53.52155,0.1384,142.79995,13.77585,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0,0.091,0,155.925,3511.082
-2066,25.01576,0.4476,766.13714,13.73276,21.12088,21120.88,813.74856,196.62306,30.77506,4.98768,27.74436,61.78998,11.8139,2.72654,0.10692,0.0988,89.96236,13.23614,135.66062,536.05124,53.74104,0.1365,141.5381,13.71908,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0,0.086,0,155.925,3511.082
-2067,25.25237,0.4387,769.63098,13.78462,20.85676,20856.76,809.17827,195.85957,30.62832,4.95456,27.63227,61.96971,11.82065,2.73308,0.10684,0.09235,90.94182,13.41608,136.92404,540.71673,53.96053,0.1346,140.27625,13.66231,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0,0.082,0,155.925,3511.082
-2068,25.48898,0.4298,773.12482,13.83648,20.59264,20592.64,804.60798,195.09608,30.48158,4.92144,27.52018,62.14944,11.8274,2.73962,0.10676,0.0859,91.92128,13.59602,138.18746,545.38222,54.18002,0.1327,139.0144,13.60554,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0,0.078,0,155.925,3511.082
-2069,25.72559,0.4209,776.61866,13.88834,20.32852,20328.52,800.03769,194.33259,30.33484,4.88832,27.40809,62.32917,11.83415,2.74616,0.10668,0.07945,92.90074,13.77596,139.45088,550.04771,54.39951,0.1308,137.75255,13.54877,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0,0.074,0,155.925,3511.082
-2070,25.9622,0.412,780.1125,13.9402,20.0644,20064.4,795.4674,193.5691,30.1881,4.8552,27.296,62.5089,11.8409,2.7527,0.1066,0.073,93.8802,13.9559,140.7143,554.7132,54.619,0.1289,136.4907,13.492,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0,0.07,0,155.925,3511.082
-2071,26.10659,0.4017,784.24064,14.00204,19.90252,19902.52,791.64666,193.07591,30.06564,4.83481,27.20364,62.64236,11.8161,2.75174,0.10626,0.06942,94.1193,14.18108,141.11548,559.74698,54.42783,0.12734,135.66527,13.63038,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0,0.067,0,155.925,3511.082
-2072,26.25098,0.3914,788.36878,14.06388,19.74064,19740.64,787.82592,192.58272,29.94318,4.81442,27.11128,62.77582,11.7913,2.75078,0.10592,0.06584,94.3584,14.40626,141.51666,564.78076,54.23666,0.12578,134.83984,13.76876,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0,0.063,0,155.925,3511.082
-2073,26.39537,0.3811,792.49692,14.12572,19.57876,19578.76,784.00518,192.08953,29.82072,4.79403,27.01892,62.90928,11.7665,2.74982,0.10558,0.06226,94.5975,14.63144,141.91784,569.81454,54.04549,0.12422,134.01441,13.90714,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0,0.06,0,155.925,3511.082
-2074,26.53976,0.3708,796.62506,14.18756,19.41688,19416.88,780.18444,191.59634,29.69826,4.77364,26.92656,63.04274,11.7417,2.74886,0.10524,0.05868,94.8366,14.85662,142.31902,574.84832,53.85432,0.12266,133.18898,14.04552,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0,0.057,0,155.925,3511.082
-2075,26.68415,0.3605,800.7532,14.2494,19.255,19255,776.3637,191.10315,29.5758,4.75325,26.8342,63.1762,11.7169,2.7479,0.1049,0.0551,95.0757,15.0818,142.7202,579.8821,53.66315,0.1211,132.36355,14.1839,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0,0.054,0,155.925,3511.082
-2076,26.82854,0.3502,804.88134,14.31124,19.09312,19093.12,772.54296,190.60996,29.45334,4.73286,26.74184,63.30966,11.6921,2.74694,0.10456,0.05152,95.3148,15.30698,143.12138,584.91588,53.47198,0.11954,131.53812,14.32228,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0,0.052,0,155.925,3511.082
-2077,26.97293,0.3399,809.00948,14.37308,18.93124,18931.24,768.72222,190.11677,29.33088,4.71247,26.64948,63.44312,11.6673,2.74598,0.10422,0.04794,95.5539,15.53216,143.52256,589.94966,53.28081,0.11798,130.71269,14.46066,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0,0.049,0,155.925,3511.082
-2078,27.11732,0.3296,813.13762,14.43492,18.76936,18769.36,764.90148,189.62358,29.20842,4.69208,26.55712,63.57658,11.6425,2.74502,0.10388,0.04436,95.793,15.75734,143.92374,594.98344,53.08964,0.11642,129.88726,14.59904,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0,0.046,0,155.925,3511.082
-2079,27.26171,0.3193,817.26576,14.49676,18.60748,18607.48,761.08074,189.13039,29.08596,4.67169,26.46476,63.71004,11.6177,2.74406,0.10354,0.04078,96.0321,15.98252,144.32492,600.01722,52.89847,0.11486,129.06183,14.73742,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0,0.044,0,155.925,3511.082
-2080,27.4061,0.309,821.3939,14.5586,18.4456,18445.6,757.26,188.6372,28.9635,4.6513,26.3724,63.8435,11.5929,2.7431,0.1032,0.0372,96.2712,16.2077,144.7261,605.051,52.7073,0.1133,128.2364,14.8758,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0,0.042,0,155.925,3511.082
-2081,27.49916,0.2975,826.32941,14.63201,18.04869,18048.69,753.34328,187.89006,28.78615,4.62775,26.23123,63.99565,11.54293,2.73607,0.1026,0.03348,95.76444,16.48786,145.0082,609.85911,52.45431,0.11214,127.43725,14.99349,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0,0.04,0,155.925,3511.082
-2082,27.59222,0.286,831.26492,14.70542,17.65178,17651.78,749.42656,187.14292,28.6088,4.6042,26.09006,64.1478,11.49296,2.72904,0.102,0.02976,95.25768,16.76802,145.2903,614.66722,52.20132,0.11098,126.6381,15.11118,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0,0.038,0,155.925,3511.082
-2083,27.68528,0.2745,836.20043,14.77883,17.25487,17254.87,745.50984,186.39578,28.43145,4.58065,25.94889,64.29995,11.44299,2.72201,0.1014,0.02604,94.75092,17.04818,145.5724,619.47533,51.94833,0.10982,125.83895,15.22887,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0,0.036,0,155.925,3511.082
-2084,27.77834,0.263,841.13594,14.85224,16.85796,16857.96,741.59312,185.64864,28.2541,4.5571,25.80772,64.4521,11.39302,2.71498,0.1008,0.02232,94.24416,17.32834,145.8545,624.28344,51.69534,0.10866,125.0398,15.34656,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0,0.034,0,155.925,3511.082
-2085,27.8714,0.2515,846.07145,14.92565,16.46105,16461.05,737.6764,184.9015,28.07675,4.53355,25.66655,64.60425,11.34305,2.70795,0.1002,0.0186,93.7374,17.6085,146.1366,629.09155,51.44235,0.1075,124.24065,15.46425,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0,0.032,0,155.925,3511.082
-2086,27.96446,0.24,851.00696,14.99906,16.06414,16064.14,733.75968,184.15436,27.8994,4.51,25.52538,64.7564,11.29308,2.70092,0.0996,0.01488,93.23064,17.88866,146.4187,633.89966,51.18936,0.10634,123.4415,15.58194,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0,0.031,0,155.925,3511.082
-2087,28.05752,0.2285,855.94247,15.07247,15.66723,15667.23,729.84296,183.40722,27.72205,4.48645,25.38421,64.90855,11.24311,2.69389,0.099,0.01116,92.72388,18.16882,146.7008,638.70777,50.93637,0.10518,122.64235,15.69963,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0,0.029,0,155.925,3511.082
-2088,28.15058,0.217,860.87798,15.14588,15.27032,15270.32,725.92624,182.66008,27.5447,4.4629,25.24304,65.0607,11.19314,2.68686,0.0984,0.00744,92.21712,18.44898,146.9829,643.51588,50.68338,0.10402,121.8432,15.81732,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0,0.028,0,155.925,3511.082
-2089,28.24364,0.2055,865.81349,15.21929,14.87341,14873.41,722.00952,181.91294,27.36735,4.43935,25.10187,65.21285,11.14317,2.67983,0.0978,0.00372,91.71036,18.72914,147.265,648.32399,50.43039,0.10286,121.04405,15.93501,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0,0.026,0,155.925,3511.082
-2090,28.3367,0.194,870.749,15.2927,14.4765,14476.5,718.0928,181.1658,27.19,4.4158,24.9607,65.365,11.0932,2.6728,0.0972,0,91.2036,19.0093,147.5471,653.1321,50.1774,0.1017,120.2449,16.0527,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0,0.025,0,155.925,3511.082
-2091,28.37703,0.1823,872.43319,15.34099,14.31449,14314.49,715.31184,180.67318,27.09516,4.39918,24.85535,65.54619,11.06043,2.66808,0.09635,0,90.20593,19.2916,147.62282,658.16476,49.84386,0.10064,121.40096,16.13966,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0,0.024,0,155.925,3511.082
-2092,28.41736,0.1706,874.11738,15.38928,14.15248,14152.48,712.53088,180.18056,27.00032,4.38256,24.75,65.72738,11.02766,2.66336,0.0955,0,89.20826,19.5739,147.69854,663.19742,49.51032,0.09958,122.55702,16.22662,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0,0.023,0,155.925,3511.082
-2093,28.45769,0.1589,875.80157,15.43757,13.99047,13990.47,709.74992,179.68794,26.90548,4.36594,24.64465,65.90857,10.99489,2.65864,0.09465,0,88.21059,19.8562,147.77426,668.23008,49.17678,0.09852,123.71308,16.31358,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0,0.022,0,155.925,3511.082
-2094,28.49802,0.1472,877.48576,15.48586,13.82846,13828.46,706.96896,179.19532,26.81064,4.34932,24.5393,66.08976,10.96212,2.65392,0.0938,0,87.21292,20.1385,147.84998,673.26274,48.84324,0.09746,124.86914,16.40054,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0,0.02,0,155.925,3511.082
-2095,28.53835,0.1355,879.16995,15.53415,13.66645,13666.45,704.188,178.7027,26.7158,4.3327,24.43395,66.27095,10.92935,2.6492,0.09295,0,86.21525,20.4208,147.9257,678.2954,48.5097,0.0964,126.0252,16.4875,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0,0.019,0,155.925,3511.082
-2096,28.57868,0.1238,880.85414,15.58244,13.50444,13504.44,701.40704,178.21008,26.62096,4.31608,24.3286,66.45214,10.89658,2.64448,0.0921,0,85.21758,20.7031,148.00142,683.32806,48.17616,0.09534,127.18126,16.57446,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0,0.018,0,155.925,3511.082
-2097,28.61901,0.1121,882.53833,15.63073,13.34243,13342.43,698.62608,177.71746,26.52612,4.29946,24.22325,66.63333,10.86381,2.63976,0.09125,0,84.21991,20.9854,148.07714,688.36072,47.84262,0.09428,128.33732,16.66142,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0,0.018,0,155.925,3511.082
-2098,28.65934,0.1004,884.22252,15.67902,13.18042,13180.42,695.84512,177.22484,26.43128,4.28284,24.1179,66.81452,10.83104,2.63504,0.0904,0,83.22224,21.2677,148.15286,693.39338,47.50908,0.09322,129.49338,16.74838,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0,0.017,0,155.925,3511.082
-2099,28.69967,0.0887,885.90671,15.72731,13.01841,13018.41,693.06416,176.73222,26.33644,4.26622,24.01255,66.99571,10.79827,2.63032,0.08955,0,82.22457,21.55,148.22858,698.42604,47.17554,0.09216,130.64944,16.83534,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0,0.016,0,155.925,3511.082
-2100,28.74,0.077,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0,0.015,0,155.925,3511.082
-2101,28.74,0.07392,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0,0.014,0,155.925,3511.082
-2102,28.74,0.07084,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0,0.014,0,155.925,3511.082
-2103,28.74,0.06776,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0,0.013,0,155.925,3511.082
-2104,28.74,0.06468,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0,0.012,0,155.925,3511.082
-2105,28.74,0.0616,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0,0.012,0,155.925,3511.082
-2106,28.74,0.05852,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0,0.011,0,155.925,3511.082
-2107,28.74,0.05544,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0,0.011,0,155.925,3511.082
-2108,28.74,0.05236,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0,0.01,0,155.925,3511.082
-2109,28.74,0.04928,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0,0.009,0,155.925,3511.082
-2110,28.74,0.0462,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0,0.009,0,155.925,3511.082
-2111,28.74,0.04312,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0,0.009,0,155.925,3511.082
-2112,28.74,0.04004,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0,0.008,0,155.925,3511.082
-2113,28.74,0.03696,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0,0.008,0,155.925,3511.082
-2114,28.74,0.03388,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0,0.007,0,155.925,3511.082
-2115,28.74,0.0308,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0,0.007,0,155.925,3511.082
-2116,28.74,0.02772,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0,0.007,0,155.925,3511.082
-2117,28.74,0.02464,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0,0.006,0,155.925,3511.082
-2118,28.74,0.02156,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0,0.006,0,155.925,3511.082
-2119,28.74,0.01848,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0,0.006,0,155.925,3511.082
-2120,28.74,0.0154,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0,0.005,0,155.925,3511.082
-2121,28.74,0.01232,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0,0.005,0,155.925,3511.082
-2122,28.74,0.00924,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0,0.005,0,155.925,3511.082
-2123,28.74,0.00616,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0,0.005,0,155.925,3511.082
-2124,28.74,0.00308,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0,0.004,0,155.925,3511.082
-2125,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0,0.004,0,155.925,3511.082
-2126,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0,0.004,0,155.925,3511.082
-2127,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0,0.004,0,155.925,3511.082
-2128,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0,0.004,0,155.925,3511.082
-2129,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0,0.003,0,155.925,3511.082
-2130,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0,0.003,0,155.925,3511.082
-2131,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0,0.003,0,155.925,3511.082
-2132,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0,0.003,0,155.925,3511.082
-2133,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0,0.003,0,155.925,3511.082
-2134,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0,0.003,0,155.925,3511.082
-2135,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0,0.002,0,155.925,3511.082
-2136,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0,0.002,0,155.925,3511.082
-2137,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0,0.002,0,155.925,3511.082
-2138,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0,0.002,0,155.925,3511.082
-2139,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0,0.002,0,155.925,3511.082
-2140,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0,0.002,0,155.925,3511.082
-2141,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0,0.002,0,155.925,3511.082
-2142,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0,0.002,0,155.925,3511.082
-2143,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0,0.002,0,155.925,3511.082
-2144,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0,0.002,0,155.925,3511.082
-2145,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0,0.001,0,155.925,3511.082
-2146,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0,0.001,0,155.925,3511.082
-2147,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0,0.001,0,155.925,3511.082
-2148,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0,0.001,0,155.925,3511.082
-2149,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.405,0,0,0,0,0,0,0,0.166,0.001,0,0,0.001,0,155.925,3511.082
-2150,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.392,0,0,0,0,0,0,0,0.157,0,0,0,0.001,0,155.925,3511.082
-2151,28.470205,0,887.7612,15.750727,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.656371,2.5994163,0.087873469,0.007146939,81.237246,21.837794,148.35837,703.62182,46.859673,0.091385714,131.82622,16.758923,0.379,0,0,0,0,0,0,0,0.15,0,0,0,0.001,0,155.925,3511.082
-2152,28.20041,0,887.93151,15.725853,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.547243,2.5732327,0.087046939,0.014293878,81.247592,21.843288,148.41245,703.78494,46.877347,0.091671429,131.84693,16.595547,0.366,0,0,0,0,0,0,0,0.142,0,0,0,0.001,0,155.925,3511.082
-2153,27.930615,0,888.10181,15.70098,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.438114,2.547049,0.086220408,0.021440816,81.257938,21.848782,148.46652,703.94806,46.89502,0.091957143,131.86765,16.43217,0.354,0,0,0,0,0,0,0,0.135,0,0,0,0.001,0,155.925,3511.082
-2154,27.66082,0,888.27211,15.676106,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.328986,2.5208653,0.085393878,0.028587755,81.268284,21.854276,148.5206,704.11118,46.912694,0.092242857,131.88837,16.268794,0.342,0,0,0,0,0,0,0,0.128,0,0,0,0.001,0,155.925,3511.082
-2155,27.391026,0,888.44242,15.651233,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.219857,2.4946816,0.084567347,0.035734694,81.27863,21.859769,148.57467,704.2743,46.930367,0.092528571,131.90908,16.105417,0.331,0,0,0,0,0,0,0,0.122,0,0,0,0.001,0,155.925,3511.082
-2156,27.121231,0,888.61272,15.626359,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.110729,2.468498,0.083740816,0.042881633,81.288976,21.865263,148.62875,704.43742,46.948041,0.092814286,131.9298,15.942041,0.32,0,0,0,0,0,0,0,0.116,0,0,0,0.001,0,155.925,3511.082
-2157,26.851436,0,888.78302,15.601486,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.0016,2.4423143,0.082914286,0.050028571,81.299321,21.870757,148.68282,704.60054,46.965714,0.0931,131.95051,15.778664,0.31,0,0,0,0,0,0,0,0.11,0,0,0,0.001,0,155.925,3511.082
-2158,26.581641,0,888.95332,15.576612,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.8924714,2.4161306,0.082087755,0.05717551,81.309667,21.876251,148.7369,704.76366,46.983388,0.093385714,131.97123,15.615288,0.299,0,0,0,0,0,0,0,0.104,0,0,0,0.001,0,155.925,3511.082
-2159,26.311846,0,889.12363,15.551739,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.7833429,2.3899469,0.081261224,0.064322449,81.320013,21.881745,148.79097,704.92678,47.001061,0.093671429,131.99195,15.451911,0.29,0,0,0,0,0,0,0,0.099,0,0,0,0.001,0,155.925,3511.082
-2160,26.042051,0,889.29393,15.526865,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.6742143,2.3637633,0.080434694,0.071469388,81.330359,21.887239,148.84504,705.0899,47.018735,0.093957143,132.01266,15.288535,0.28,0,0,0,0,0,0,0,0.094,0,0,0,0.001,0,155.925,3511.082
-2161,25.772256,0,889.46423,15.501992,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.5650857,2.3375796,0.079608163,0.078616327,81.340705,21.892733,148.89912,705.25302,47.036408,0.094242857,132.03338,15.125158,0.271,0,0,0,0,0,0,0,0.09,0,0,0,0.001,0,155.925,3511.082
-2162,25.502461,0,889.63454,15.477118,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.4559571,2.3113959,0.078781633,0.085763265,81.351051,21.898227,148.95319,705.41614,47.054082,0.094528571,132.0541,14.961782,0.262,0,0,0,0,0,0,0,0.085,0,0,0,0.001,0,155.925,3511.082
-2163,25.232666,0,889.80484,15.452245,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.3468286,2.2852122,0.077955102,0.092910204,81.361397,21.90372,149.00727,705.57927,47.071755,0.094814286,132.07481,14.798405,0.253,0,0,0,0,0,0,0,0.081,0,0,0,0.001,0,155.925,3511.082
-2164,24.962871,0,889.97514,15.427371,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.2377,2.2590286,0.077128571,0.10005714,81.371743,21.909214,149.06134,705.74239,47.089429,0.0951,132.09553,14.635029,0.245,0,0,0,0,0,0,0,0.077,0,0,0,0.001,0,155.925,3511.082
-2165,24.693077,0,890.14545,15.402498,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.1285714,2.2328449,0.076302041,0.10720408,81.382089,21.914708,149.11542,705.90551,47.107102,0.095385714,132.11624,14.471652,0.237,0,0,0,0,0,0,0,0.073,0,0,0,0.001,0,155.925,3511.082
-2166,24.423282,0,890.31575,15.377624,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.0194429,2.2066612,0.07547551,0.11435102,81.392435,21.920202,149.16949,706.06863,47.124776,0.095671429,132.13696,14.308276,0.229,0,0,0,0,0,0,0,0.069,0,0,0,0.001,0,155.925,3511.082
-2167,24.153487,0,890.48605,15.352751,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.9103143,2.1804776,0.07464898,0.12149796,81.402781,21.925696,149.22357,706.23175,47.142449,0.095957143,132.15768,14.144899,0.221,0,0,0,0,0,0,0,0.066,0,0,0,0,0,155.925,3511.082
-2168,23.883692,0,890.65636,15.327878,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.8011857,2.1542939,0.073822449,0.1286449,81.413127,21.93119,149.27764,706.39487,47.160122,0.096242857,132.17839,13.981522,0.214,0,0,0,0,0,0,0,0.063,0,0,0,0,0,155.925,3511.082
-2169,23.613897,0,890.82666,15.303004,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.6920571,2.1281102,0.072995918,0.13579184,81.423472,21.936684,149.33172,706.55799,47.177796,0.096528571,132.19911,13.818146,0.207,0,0,0,0,0,0,0,0.059,0,0,0,0,0,155.925,3511.082
-2170,23.344102,0,890.99696,15.278131,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.5829286,2.1019265,0.072169388,0.14293878,81.433818,21.942178,149.38579,706.72111,47.195469,0.096814286,132.21983,13.654769,0.2,0,0,0,0,0,0,0,0.056,0,0,0,0,0,155.925,3511.082
-2171,23.074307,0,891.16726,15.253257,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.4738,2.0757429,0.071342857,0.15008571,81.444164,21.947671,149.43986,706.88423,47.213143,0.0971,132.24054,13.491393,0.194,0,0,0,0,0,0,0,0.054,0,0,0,0,0,155.925,3511.082
-2172,22.804512,0,891.33757,15.228384,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.3646714,2.0495592,0.070516327,0.15723265,81.45451,21.953165,149.49394,707.04735,47.230816,0.097385714,132.26126,13.328016,0.187,0,0,0,0,0,0,0,0.051,0,0,0,0,0,155.925,3511.082
-2173,22.534717,0,891.50787,15.20351,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.2555429,2.0233755,0.069689796,0.16437959,81.464856,21.958659,149.54801,707.21047,47.24849,0.097671429,132.28198,13.16464,0.181,0,0,0,0,0,0,0,0.048,0,0,0,0,0,155.925,3511.082
-2174,22.264922,0,891.67817,15.178637,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.1464143,1.9971918,0.068863265,0.17152653,81.475202,21.964153,149.60209,707.37359,47.266163,0.097957143,132.30269,13.001263,0.175,0,0,0,0,0,0,0,0.046,0,0,0,0,0,155.925,3511.082
-2175,21.995128,0,891.84848,15.153763,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.0372857,1.9710082,0.068036735,0.17867347,81.485548,21.969647,149.65616,707.53671,47.283837,0.098242857,132.32341,12.837887,0.169,0,0,0,0,0,0,0,0.044,0,0,0,0,0,155.925,3511.082
-2176,21.725333,0,892.01878,15.12889,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.9281571,1.9448245,0.067210204,0.18582041,81.495894,21.975141,149.71024,707.69983,47.30151,0.098528571,132.34412,12.67451,0.164,0,0,0,0,0,0,0,0.042,0,0,0,0,0,155.925,3511.082
-2177,21.455538,0,892.18908,15.104016,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.8190286,1.9186408,0.066383673,0.19296735,81.50624,21.980635,149.76431,707.86295,47.319184,0.098814286,132.36484,12.511134,0.158,0,0,0,0,0,0,0,0.039,0,0,0,0,0,155.925,3511.082
-2178,21.185743,0,892.35939,15.079143,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.7099,1.8924571,0.065557143,0.20011429,81.516586,21.986129,149.81839,708.02607,47.336857,0.0991,132.38556,12.347757,0.153,0,0,0,0,0,0,0,0.037,0,0,0,0,0,155.925,3511.082
-2179,20.915948,0,892.52969,15.054269,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.6007714,1.8662735,0.064730612,0.20726122,81.526932,21.991622,149.87246,708.18919,47.354531,0.099385714,132.40627,12.184381,0.148,0,0,0,0,0,0,0,0.036,0,0,0,0,0,155.925,3511.082
-2180,20.646153,0,892.69999,15.029396,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.4916429,1.8400898,0.063904082,0.21440816,81.537278,21.997116,149.92653,708.35231,47.372204,0.099671429,132.42699,12.021004,0.143,0,0,0,0,0,0,0,0.034,0,0,0,0,0,155.925,3511.082
-2181,20.376358,0,892.87029,15.004522,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.3825143,1.8139061,0.063077551,0.2215551,81.547623,22.00261,149.98061,708.51543,47.389878,0.099957143,132.44771,11.857628,0.138,0,0,0,0,0,0,0,0.032,0,0,0,0,0,155.925,3511.082
-2182,20.106563,0,893.0406,14.979649,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.2733857,1.7877224,0.06225102,0.22870204,81.557969,22.008104,150.03468,708.67855,47.407551,0.10024286,132.46842,11.694251,0.134,0,0,0,0,0,0,0,0.031,0,0,0,0,0,155.925,3511.082
-2183,19.836768,0,893.2109,14.954776,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.1642571,1.7615388,0.06142449,0.23584898,81.568315,22.013598,150.08876,708.84167,47.425224,0.10052857,132.48914,11.530874,0.129,0,0,0,0,0,0,0,0.029,0,0,0,0,0,155.925,3511.082
-2184,19.566973,0,893.3812,14.929902,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.0551286,1.7353551,0.060597959,0.24299592,81.578661,22.019092,150.14283,709.00479,47.442898,0.10081429,132.50986,11.367498,0.125,0,0,0,0,0,0,0,0.028,0,0,0,0,0,155.925,3511.082
-2185,19.297179,0,893.55151,14.905029,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.946,1.7091714,0.059771429,0.25014286,81.589007,22.024586,150.19691,709.16791,47.460571,0.1011,132.53057,11.204121,0.121,0,0,0,0,0,0,0,0.026,0,0,0,0,0,155.925,3511.082
-2186,19.027384,0,893.72181,14.880155,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.8368714,1.6829878,0.058944898,0.2572898,81.599353,22.03008,150.25098,709.33103,47.478245,0.10138571,132.55129,11.040745,0.117,0,0,0,0,0,0,0,0.025,0,0,0,0,0,155.925,3511.082
-2187,18.757589,0,893.89211,14.855282,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.7277429,1.6568041,0.058118367,0.26443673,81.609699,22.035573,150.30506,709.49416,47.495918,0.10167143,132.572,10.877368,0.113,0,0,0,0,0,0,0,0.024,0,0,0,0,0,155.925,3511.082
-2188,18.487794,0,894.06242,14.830408,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.6186143,1.6306204,0.057291837,0.27158367,81.620045,22.041067,150.35913,709.65728,47.513592,0.10195714,132.59272,10.713992,0.109,0,0,0,0,0,0,0,0.022,0,0,0,0,0,155.925,3511.082
-2189,18.217999,0,894.23272,14.805535,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.5094857,1.6044367,0.056465306,0.27873061,81.630391,22.046561,150.41321,709.8204,47.531265,0.10224286,132.61344,10.550615,0.106,0,0,0,0,0,0,0,0.021,0,0,0,0,0,155.925,3511.082
-2190,17.948204,0,894.40302,14.780661,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.4003571,1.5782531,0.055638776,0.28587755,81.640737,22.052055,150.46728,709.98352,47.548939,0.10252857,132.63415,10.387239,0.102,0,0,0,0,0,0,0,0.02,0,0,0,0,0,155.925,3511.082
-2191,17.678409,0,894.57333,14.755788,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.2912286,1.5520694,0.054812245,0.29302449,81.651083,22.057549,150.52135,710.14664,47.566612,0.10281429,132.65487,10.223862,0.099,0,0,0,0,0,0,0,0.019,0,0,0,0,0,155.925,3511.082
-2192,17.408614,0,894.74363,14.730914,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.1821,1.5258857,0.053985714,0.30017143,81.661429,22.063043,150.57543,710.30976,47.584286,0.1031,132.67559,10.060486,0.096,0,0,0,0,0,0,0,0.018,0,0,0,0,0,155.925,3511.082
-2193,17.138819,0,894.91393,14.706041,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.0729714,1.499702,0.053159184,0.30731837,81.671774,22.068537,150.6295,710.47288,47.601959,0.10338571,132.6963,9.8971092,0.093,0,0,0,0,0,0,0,0.017,0,0,0,0,0,155.925,3511.082
-2194,16.869024,0,895.08423,14.681167,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.9638429,1.4735184,0.052332653,0.31446531,81.68212,22.074031,150.68358,710.636,47.619633,0.10367143,132.71702,9.7337327,0.089,0,0,0,0,0,0,0,0.016,0,0,0,0,0,155.925,3511.082
-2195,16.59923,0,895.25454,14.656294,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.8547143,1.4473347,0.051506122,0.32161224,81.692466,22.079524,150.73765,710.79912,47.637306,0.10395714,132.73773,9.5703561,0.087,0,0,0,0,0,0,0,0.016,0,0,0,0,0,155.925,3511.082
-2196,16.329435,0,895.42484,14.63142,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.7455857,1.421151,0.050679592,0.32875918,81.702812,22.085018,150.79173,710.96224,47.65498,0.10424286,132.75845,9.4069796,0.084,0,0,0,0,0,0,0,0.015,0,0,0,0,0,155.925,3511.082
-2197,16.05964,0,895.59514,14.606547,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.6364571,1.3949673,0.049853061,0.33590612,81.713158,22.090512,150.8458,711.12536,47.672653,0.10452857,132.77917,9.2436031,0.081,0,0,0,0,0,0,0,0.014,0,0,0,0,0,155.925,3511.082
-2198,15.789845,0,895.76545,14.581673,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.5273286,1.3687837,0.049026531,0.34305306,81.723504,22.096006,150.89988,711.28848,47.690327,0.10481429,132.79988,9.0802265,0.078,0,0,0,0,0,0,0,0.013,0,0,0,0,0,155.925,3511.082
-2199,15.52005,0,895.93575,14.5568,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.4182,1.3426,0.0482,0.3502,81.73385,22.1015,150.95395,711.4516,47.708,0.1051,132.8206,8.91685,0.076,0,0,0,0,0,0,0,0.013,0,0,0,0,0,155.925,3511.082
-2200,15.250255,0,896.10605,14.531927,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.3090714,1.3164163,0.047373469,0.35734694,81.744196,22.106994,151.00802,711.61472,47.725673,0.10538571,132.84132,8.7534735,0.073,0,0,0,0,0,0,0,0.012,0,0,0,0,0,155.925,3511.082
-2201,14.98046,0,896.27636,14.507053,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.1999429,1.2902327,0.046546939,0.36449388,81.754542,22.112488,151.0621,711.77784,47.743347,0.10567143,132.86203,8.5900969,0.071,0,0,0,0,0,0,0,0.012,0,0,0,0,0,155.925,3511.082
-2202,14.710665,0,896.44666,14.48218,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.0908143,1.264049,0.045720408,0.37164082,81.764888,22.117982,151.11617,711.94096,47.76102,0.10595714,132.88275,8.4267204,0.068,0,0,0,0,0,0,0,0.011,0,0,0,0,0,155.925,3511.082
-2203,14.44087,0,896.61696,14.457306,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.9816857,1.2378653,0.044893878,0.37878776,81.775234,22.123476,151.17025,712.10408,47.778694,0.10624286,132.90347,8.2633439,0.066,0,0,0,0,0,0,0,0.01,0,0,0,0,0,155.925,3511.082
-2204,14.171076,0,896.78727,14.432433,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.8725571,1.2116816,0.044067347,0.38593469,81.78558,22.128969,151.22432,712.2672,47.796367,0.10652857,132.92418,8.0999673,0.064,0,0,0,0,0,0,0,0.01,0,0,0,0,0,155.925,3511.082
-2205,13.901281,0,896.95757,14.407559,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.7634286,1.185498,0.043240816,0.39308163,81.795926,22.134463,151.2784,712.43032,47.814041,0.10681429,132.9449,7.9365908,0.062,0,0,0,0,0,0,0,0.009,0,0,0,0,0,155.925,3511.082
-2206,13.631486,0,897.12787,14.382686,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.6543,1.1593143,0.042414286,0.40022857,81.806271,22.139957,151.33247,712.59344,47.831714,0.1071,132.96561,7.7732143,0.06,0,0,0,0,0,0,0,0.009,0,0,0,0,0,155.925,3511.082
-2207,13.361691,0,897.29817,14.357812,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.5451714,1.1331306,0.041587755,0.40737551,81.816617,22.145451,151.38655,712.75656,47.849388,0.10738571,132.98633,7.6098378,0.058,0,0,0,0,0,0,0,0.008,0,0,0,0,0,155.925,3511.082
-2208,13.091896,0,897.46848,14.332939,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.4360429,1.1069469,0.040761224,0.41452245,81.826963,22.150945,151.44062,712.91968,47.867061,0.10767143,133.00705,7.4464612,0.056,0,0,0,0,0,0,0,0.008,0,0,0,0,0,155.925,3511.082
-2209,12.822101,0,897.63878,14.308065,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.3269143,1.0807633,0.039934694,0.42166939,81.837309,22.156439,151.49469,713.0828,47.884735,0.10795714,133.02776,7.2830847,0.054,0,0,0,0,0,0,0,0.008,0,0,0,0,0,155.925,3511.082
-2210,12.552306,0,897.80908,14.283192,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.2177857,1.0545796,0.039108163,0.42881633,81.847655,22.161933,151.54877,713.24592,47.902408,0.10824286,133.04848,7.1197082,0.052,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082
-2211,12.282511,0,897.97939,14.258318,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.1086571,1.0283959,0.038281633,0.43596327,81.858001,22.167427,151.60284,713.40904,47.920082,0.10852857,133.0692,6.9563316,0.051,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082
-2212,12.012716,0,898.14969,14.233445,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.9995286,1.0022122,0.037455102,0.4431102,81.868347,22.17292,151.65692,713.57217,47.937755,0.10881429,133.08991,6.7929551,0.049,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082
-2213,11.742921,0,898.31999,14.208571,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.8904,0.97602857,0.036628571,0.45025714,81.878693,22.178414,151.71099,713.73529,47.955429,0.1091,133.11063,6.6295786,0.047,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082
-2214,11.473127,0,898.4903,14.183698,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.7812714,0.9498449,0.035802041,0.45740408,81.889039,22.183908,151.76507,713.89841,47.973102,0.10938571,133.13134,6.466202,0.046,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082
-2215,11.203332,0,898.6606,14.158824,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.6721429,0.92366122,0.03497551,0.46455102,81.899385,22.189402,151.81914,714.06153,47.990776,0.10967143,133.15206,6.3028255,0.044,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082
-2216,10.933537,0,898.8309,14.133951,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.5630143,0.89747755,0.03414898,0.47169796,81.909731,22.194896,151.87322,714.22465,48.008449,0.10995714,133.17278,6.139449,0.043,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082
-2217,10.663742,0,899.00121,14.109078,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.4538857,0.87129388,0.033322449,0.4788449,81.920077,22.20039,151.92729,714.38777,48.026122,0.11024286,133.19349,5.9760724,0.041,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082
-2218,10.393947,0,899.17151,14.084204,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.3447571,0.8451102,0.032495918,0.48599184,81.930422,22.205884,151.98137,714.55089,48.043796,0.11052857,133.21421,5.8126959,0.04,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082
-2219,10.124152,0,899.34181,14.059331,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.2356286,0.81892653,0.031669388,0.49313878,81.940768,22.211378,152.03544,714.71401,48.061469,0.11081429,133.23493,5.6493194,0.039,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082
-2220,9.8543571,0,899.51211,14.034457,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.1265,0.79274286,0.030842857,0.50028571,81.951114,22.216871,152.08951,714.87713,48.079143,0.1111,133.25564,5.4859429,0.037,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082
-2221,9.5845622,0,899.68242,14.009584,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.0173714,0.76655918,0.030016327,0.50743265,81.96146,22.222365,152.14359,715.04025,48.096816,0.11138571,133.27636,5.3225663,0.036,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082
-2222,9.3147673,0,899.85272,13.98471,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.9082429,0.74037551,0.029189796,0.51457959,81.971806,22.227859,152.19766,715.20337,48.11449,0.11167143,133.29708,5.1591898,0.035,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082
-2223,9.0449724,0,900.02302,13.959837,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.7991143,0.71419184,0.028363265,0.52172653,81.982152,22.233353,152.25174,715.36649,48.132163,0.11195714,133.31779,4.9958133,0.034,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082
-2224,8.7751776,0,900.19333,13.934963,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.6899857,0.68800816,0.027536735,0.52887347,81.992498,22.238847,152.30581,715.52961,48.149837,0.11224286,133.33851,4.8324367,0.033,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082
-2225,8.5053827,0,900.36363,13.91009,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.5808571,0.66182449,0.026710204,0.53602041,82.002844,22.244341,152.35989,715.69273,48.16751,0.11252857,133.35922,4.6690602,0.032,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082
-2226,8.2355878,0,900.53393,13.885216,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.4717286,0.63564082,0.025883673,0.54316735,82.01319,22.249835,152.41396,715.85585,48.185184,0.11281429,133.37994,4.5056837,0.031,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082
-2227,7.9657929,0,900.70424,13.860343,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.3626,0.60945714,0.025057143,0.55031429,82.023536,22.255329,152.46804,716.01897,48.202857,0.1131,133.40066,4.3423071,0.03,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082
-2228,7.695998,0,900.87454,13.835469,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.2534714,0.58327347,0.024230612,0.55746122,82.033882,22.260822,152.52211,716.18209,48.220531,0.11338571,133.42137,4.1789306,0.029,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082
-2229,7.4262031,0,901.04484,13.810596,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.1443429,0.5570898,0.023404082,0.56460816,82.044228,22.266316,152.57618,716.34521,48.238204,0.11367143,133.44209,4.0155541,0.028,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082
-2230,7.1564082,0,901.21514,13.785722,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.0352143,0.53090612,0.022577551,0.5717551,82.054573,22.27181,152.63026,716.50833,48.255878,0.11395714,133.46281,3.8521776,0.027,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082
-2231,6.8866133,0,901.38545,13.760849,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.9260857,0.50472245,0.02175102,0.57890204,82.064919,22.277304,152.68433,716.67145,48.273551,0.11424286,133.48352,3.688801,0.026,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2232,6.6168184,0,901.55575,13.735976,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.8169571,0.47853878,0.02092449,0.58604898,82.075265,22.282798,152.73841,716.83457,48.291224,0.11452857,133.50424,3.5254245,0.025,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2233,6.3470235,0,901.72605,13.711102,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.7078286,0.4523551,0.020097959,0.59319592,82.085611,22.288292,152.79248,716.99769,48.308898,0.11481429,133.52496,3.362048,0.024,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2234,6.0772286,0,901.89636,13.686229,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.5987,0.42617143,0.019271429,0.60034286,82.095957,22.293786,152.84656,717.16081,48.326571,0.1151,133.54567,3.1986714,0.023,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2235,5.8074337,0,902.06666,13.661355,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.4895714,0.39998776,0.018444898,0.6074898,82.106303,22.29928,152.90063,717.32393,48.344245,0.11538571,133.56639,3.0352949,0.023,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2236,5.5376388,0,902.23696,13.636482,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.3804429,0.37380408,0.017618367,0.61463673,82.116649,22.304773,152.95471,717.48706,48.361918,0.11567143,133.5871,2.8719184,0.022,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2237,5.2678439,0,902.40727,13.611608,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.2713143,0.34762041,0.016791837,0.62178367,82.126995,22.310267,153.00878,717.65018,48.379592,0.11595714,133.60782,2.7085418,0.021,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2238,4.998049,0,902.57757,13.586735,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.1621857,0.32143673,0.015965306,0.62893061,82.137341,22.315761,153.06286,717.8133,48.397265,0.11624286,133.62854,2.5451653,0.02,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2239,4.7282541,0,902.74787,13.561861,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.0530571,0.29525306,0.015138776,0.63607755,82.147687,22.321255,153.11693,717.97642,48.414939,0.11652857,133.64925,2.3817888,0.02,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2240,4.4584592,0,902.91818,13.536988,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.94392857,0.26906939,0.014312245,0.64322449,82.158033,22.326749,153.171,718.13954,48.432612,0.11681429,133.66997,2.2184122,0.019,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082
-2241,4.1886643,0,903.08848,13.512114,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.8348,0.24288571,0.013485714,0.65037143,82.168379,22.332243,153.22508,718.30266,48.450286,0.1171,133.69069,2.0550357,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2242,3.9188694,0,903.25878,13.487241,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.72567143,0.21670204,0.012659184,0.65751837,82.178724,22.337737,153.27915,718.46578,48.467959,0.11738571,133.7114,1.8916592,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2243,3.6490745,0,903.42908,13.462367,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.61654286,0.19051837,0.011832653,0.66466531,82.18907,22.343231,153.33323,718.6289,48.485633,0.11767143,133.73212,1.7282827,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2244,3.3792796,0,903.59939,13.437494,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.50741429,0.16433469,0.011006122,0.67181224,82.199416,22.348724,153.3873,718.79202,48.503306,0.11795714,133.75283,1.5649061,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2245,3.1094847,0,903.76969,13.41262,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.39828571,0.13815102,0.010179592,0.67895918,82.209762,22.354218,153.44138,718.95514,48.52098,0.11824286,133.77355,1.4015296,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2246,2.8396898,0,903.93999,13.387747,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.28915714,0.11196735,0.009353061,0.68610612,82.220108,22.359712,153.49545,719.11826,48.538653,0.11852857,133.79427,1.2381531,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2247,2.5698949,0,904.1103,13.362873,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.18002857,0.085783673,0.008526531,0.69325306,82.230454,22.365206,153.54953,719.28138,48.556327,0.11881429,133.81498,1.0747765,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2248,2.3001,0,904.2806,13.338,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0709,0.0596,0.0077,0.7004,82.2408,22.3707,153.6036,719.4445,48.574,0.1191,133.8357,0.9114,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082
-2249,2.088,0,904.7895,13.343,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.7033,82.2473,22.3987,153.9761,720.2033,48.7474,0.1179,133.8876,0.9044,0.092,4.013,0.483,0.877,0.238,0,0,0,0.002,0,0,0,0.008,0,155.92,3511.082
-2250,2.0458,0,904.8603,13.3436,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.7033,82.2527,22.4002,153.9867,720.2524,48.7506,0.1179,133.8969,0.9044,0.092,4.013,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,155.937,3511.082
-2251,2.05004,0,904.9552,13.34368,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70338,82.26022,22.40226,154.00076,720.31816,48.75506,0.1179,133.90908,0.9044,0.092,4.014,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,155.96,3511.082
-2252,2.05428,0,905.0501,13.34376,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70346,82.26774,22.40432,154.01482,720.38392,48.75952,0.1179,133.92126,0.9044,0.092,4.015,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,155.983,3511.082
-2253,2.05852,0,905.145,13.34384,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70354,82.27526,22.40638,154.02888,720.44968,48.76398,0.1179,133.93344,0.9044,0.092,4.016,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,156.006,3511.082
-2254,2.06276,0,905.2399,13.34392,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70362,82.28278,22.40844,154.04294,720.51544,48.76844,0.1179,133.94562,0.9044,0.092,4.017,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,156.029,3511.082
-2255,2.067,0,905.3348,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.7037,82.2903,22.4105,154.057,720.5812,48.7729,0.1179,133.9578,0.9044,0.092,4.018,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,156.051,3511.082
-2256,2.07852,0,905.44156,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70376,82.29874,22.41276,154.07282,720.65512,48.77792,0.11794,133.97158,0.9044,0.092,4.018,0.484,0.879,0.238,0,0,0,0.002,0,0,0,0.008,0,156.074,3511.082
-2257,2.09004,0,905.54832,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70382,82.30718,22.41502,154.08864,720.72904,48.78294,0.11798,133.98536,0.9044,0.092,4.019,0.484,0.879,0.238,0,0,0,0.002,0,0,0,0.008,0,156.097,3511.082
-2258,2.10156,0,905.65508,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70388,82.31562,22.41728,154.10446,720.80296,48.78796,0.11802,133.99914,0.9044,0.092,4.02,0.484,0.879,0.238,0,0,0,0.002,0,0,0,0.008,0,156.125,3511.082
-2259,2.11308,0,905.76184,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70394,82.32406,22.41954,154.12028,720.87688,48.79298,0.11806,134.01292,0.9044,0.092,4.021,0.484,0.879,0.238,0,0,0,0.002,0,0,0,0.008,0,156.152,3511.082
-2260,2.1246,0,905.8686,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.704,82.3325,22.4218,154.1361,720.9508,48.798,0.1181,134.0267,0.9044,0.092,4.022,0.485,0.879,0.238,0,0,0,0.002,0,0,0,0.008,0,156.18,3511.082
-2261,2.1217267,0,905.9807,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070513333,0.0592,0.0077,0.70407333,82.341367,22.42422,154.15269,721.02846,48.803253,0.11810667,134.04113,0.9044,0.092,4.023,0.485,0.88,0.238,0,0,0,0.002,0,0,0,0.008,0,156.207,3511.082
-2262,2.1188533,0,906.0928,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070526667,0.0592,0.0077,0.70414667,82.350233,22.42664,154.16929,721.10612,48.808507,0.11811333,134.05557,0.9044,0.092,4.024,0.485,0.88,0.238,0,0,0,0.002,0,0,0,0.008,0,156.235,3511.082
-2263,2.11598,0,906.2049,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07054,0.0592,0.0077,0.70422,82.3591,22.42906,154.18588,721.18378,48.81376,0.11812,134.07,0.9044,0.092,4.025,0.485,0.88,0.238,0,0,0,0.002,0,0,0,0.008,0,156.263,3511.082
-2264,2.1131067,0,906.317,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070553333,0.0592,0.0077,0.70429333,82.367967,22.43148,154.20247,721.26144,48.819013,0.11812667,134.08443,0.9044,0.092,4.026,0.485,0.88,0.238,0,0,0,0.002,0,0,0,0.008,0,156.29,3511.082
-2265,2.1102333,0,906.4291,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070566667,0.0592,0.0077,0.70436667,82.376833,22.4339,154.21907,721.3391,48.824267,0.11813333,134.09887,0.9044,0.092,4.028,0.485,0.881,0.238,0,0,0,0.002,0,0,0,0.008,0,156.318,3511.082
-2266,2.10736,0,906.5412,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07058,0.0592,0.0077,0.70444,82.3857,22.43632,154.23566,721.41676,48.82952,0.11814,134.1133,0.9044,0.092,4.029,0.485,0.881,0.238,0,0,0,0.002,0,0,0,0.008,0,156.345,3511.082
-2267,2.1044867,0,906.6533,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070593333,0.0592,0.0077,0.70451333,82.394567,22.43874,154.25225,721.49442,48.834773,0.11814667,134.12773,0.9044,0.093,4.03,0.485,0.881,0.239,0,0,0,0.002,0,0,0,0.008,0,156.372,3511.082
-2268,2.1016133,0,906.7654,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070606667,0.0592,0.0077,0.70458667,82.403433,22.44116,154.26885,721.57208,48.840027,0.11815333,134.14217,0.9044,0.093,4.031,0.486,0.881,0.239,0,0,0,0.002,0,0,0,0.008,0,156.399,3511.082
-2269,2.09874,0,906.8775,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07062,0.0592,0.0077,0.70466,82.4123,22.44358,154.28544,721.64974,48.84528,0.11816,134.1566,0.9044,0.093,4.032,0.486,0.882,0.239,0,0,0,0.002,0,0,0,0.008,0,156.426,3511.082
-2270,2.0958667,0,906.9896,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070633333,0.0592,0.0077,0.70473333,82.421167,22.446,154.30203,721.7274,48.850533,0.11816667,134.17103,0.9044,0.093,4.033,0.486,0.882,0.239,0,0,0,0.002,0,0,0,0.008,0,156.453,3511.082
-2271,2.0929933,0,907.1017,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070646667,0.0592,0.0077,0.70480667,82.430033,22.44842,154.31863,721.80506,48.855787,0.11817333,134.18547,0.9044,0.093,4.034,0.486,0.882,0.239,0,0,0,0.002,0,0,0,0.008,0,156.48,3511.082
-2272,2.09012,0,907.2138,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07066,0.0592,0.0077,0.70488,82.4389,22.45084,154.33522,721.88272,48.86104,0.11818,134.1999,0.9044,0.093,4.035,0.486,0.882,0.239,0,0,0,0.002,0,0,0,0.008,0,156.506,3511.082
-2273,2.0872467,0,907.3259,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070673333,0.0592,0.0077,0.70495333,82.447767,22.45326,154.35181,721.96038,48.866293,0.11818667,134.21433,0.9044,0.093,4.036,0.486,0.882,0.239,0,0,0,0.002,0,0,0,0.008,0,156.532,3511.082
-2274,2.0843733,0,907.438,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070686667,0.0592,0.0077,0.70502667,82.456633,22.45568,154.36841,722.03804,48.871547,0.11819333,134.22877,0.9044,0.093,4.037,0.486,0.883,0.239,0,0,0,0.002,0,0,0,0.008,0,156.559,3511.082
-2275,2.0815,0,907.5501,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0707,0.0592,0.0077,0.7051,82.4655,22.4581,154.385,722.1157,48.8768,0.1182,134.2432,0.9044,0.093,4.037,0.486,0.883,0.239,0,0,0,0.002,0,0,0,0.008,0,156.585,3511.082
-2276,2.078004,0,907.65054,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070708,0.0592,0.0077,0.705172,82.473444,22.460264,154.39988,722.18528,48.881508,0.118216,134.25614,0.9044,0.093,4.038,0.487,0.883,0.239,0,0,0,0.002,0,0,0,0.008,0,156.611,3511.082
-2277,2.074508,0,907.75098,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070716,0.0592,0.0077,0.705244,82.481388,22.462428,154.41477,722.25487,48.886216,0.118232,134.26907,0.9044,0.093,4.039,0.487,0.883,0.239,0,0,0,0.002,0,0,0,0.008,0,156.636,3511.082
-2278,2.071012,0,907.85142,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070724,0.0592,0.0077,0.705316,82.489332,22.464592,154.42965,722.32445,48.890924,0.118248,134.28201,0.9044,0.093,4.04,0.487,0.883,0.239,0,0,0,0.002,0,0,0,0.008,0,156.662,3511.082
-2279,2.067516,0,907.95186,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070732,0.0592,0.0077,0.705388,82.497276,22.466756,154.44454,722.39404,48.895632,0.118264,134.29494,0.9044,0.093,4.041,0.487,0.884,0.239,0,0,0,0.002,0,0,0,0.008,0,156.687,3511.082
-2280,2.06402,0,908.0523,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07074,0.0592,0.0077,0.70546,82.50522,22.46892,154.45942,722.46362,48.90034,0.11828,134.30788,0.9044,0.093,4.042,0.487,0.884,0.239,0,0,0,0.002,0,0,0,0.008,0,156.713,3511.082
-2281,2.060524,0,908.15274,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070748,0.0592,0.0077,0.705532,82.513164,22.471084,154.4743,722.5332,48.905048,0.118296,134.32082,0.9044,0.093,4.043,0.487,0.884,0.239,0,0,0,0.002,0,0,0,0.008,0,156.738,3511.082
-2282,2.057028,0,908.25318,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070756,0.0592,0.0077,0.705604,82.521108,22.473248,154.48919,722.60279,48.909756,0.118312,134.33375,0.9044,0.093,4.044,0.487,0.884,0.239,0,0,0,0.002,0,0,0,0.008,0,156.763,3511.082
-2283,2.053532,0,908.35362,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070764,0.0592,0.0077,0.705676,82.529052,22.475412,154.50407,722.67237,48.914464,0.118328,134.34669,0.9044,0.093,4.045,0.487,0.884,0.239,0,0,0,0.002,0,0,0,0.008,0,156.788,3511.082
-2284,2.050036,0,908.45406,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070772,0.0592,0.0077,0.705748,82.536996,22.477576,154.51896,722.74196,48.919172,0.118344,134.35962,0.9044,0.093,4.046,0.487,0.885,0.24,0,0,0,0.002,0,0,0,0.008,0,156.812,3511.082
-2285,2.04654,0,908.5545,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07078,0.0592,0.0077,0.70582,82.54494,22.47974,154.53384,722.81154,48.92388,0.11836,134.37256,0.9044,0.093,4.047,0.488,0.885,0.24,0,0,0,0.002,0,0,0,0.008,0,156.837,3511.082
-2286,2.043044,0,908.65494,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070788,0.0592,0.0077,0.705892,82.552884,22.481904,154.54872,722.88112,48.928588,0.118376,134.3855,0.9044,0.093,4.048,0.488,0.885,0.24,0,0,0,0.002,0,0,0,0.008,0,156.861,3511.082
-2287,2.039548,0,908.75538,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070796,0.0592,0.0077,0.705964,82.560828,22.484068,154.56361,722.95071,48.933296,0.118392,134.39843,0.9044,0.093,4.049,0.488,0.885,0.24,0,0,0,0.002,0,0,0,0.008,0,156.886,3511.082
-2288,2.036052,0,908.85582,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070804,0.0592,0.0077,0.706036,82.568772,22.486232,154.57849,723.02029,48.938004,0.118408,134.41137,0.9044,0.093,4.05,0.488,0.885,0.24,0,0,0,0.002,0,0,0,0.008,0,156.91,3511.082
-2289,2.032556,0,908.95626,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070812,0.0592,0.0077,0.706108,82.576716,22.488396,154.59338,723.08988,48.942712,0.118424,134.4243,0.9044,0.093,4.051,0.488,0.886,0.24,0,0,0,0.002,0,0,0,0.008,0,156.934,3511.082
-2290,2.02906,0,909.0567,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07082,0.0592,0.0077,0.70618,82.58466,22.49056,154.60826,723.15946,48.94742,0.11844,134.43724,0.9044,0.093,4.051,0.488,0.886,0.24,0,0,0,0.002,0,0,0,0.008,0,156.958,3511.082
-2291,2.025564,0,909.15714,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070828,0.0592,0.0077,0.706252,82.592604,22.492724,154.62314,723.22904,48.952128,0.118456,134.45018,0.9044,0.093,4.052,0.488,0.886,0.24,0,0,0,0.002,0,0,0,0.008,0,156.981,3511.082
-2292,2.022068,0,909.25758,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070836,0.0592,0.0077,0.706324,82.600548,22.494888,154.63803,723.29863,48.956836,0.118472,134.46311,0.9044,0.093,4.053,0.488,0.886,0.24,0,0,0,0.002,0,0,0,0.008,0,157.005,3511.082
-2293,2.018572,0,909.35802,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070844,0.0592,0.0077,0.706396,82.608492,22.497052,154.65291,723.36821,48.961544,0.118488,134.47605,0.9044,0.093,4.054,0.488,0.886,0.24,0,0,0,0.002,0,0,0,0.008,0,157.028,3511.082
-2294,2.015076,0,909.45846,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070852,0.0592,0.0077,0.706468,82.616436,22.499216,154.6678,723.4378,48.966252,0.118504,134.48898,0.9044,0.093,4.055,0.489,0.887,0.24,0,0,0,0.002,0,0,0,0.008,0,157.052,3511.082
-2295,2.01158,0,909.5589,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07086,0.0592,0.0077,0.70654,82.62438,22.50138,154.68268,723.50738,48.97096,0.11852,134.50192,0.9044,0.093,4.056,0.489,0.887,0.24,0,0,0,0.002,0,0,0,0.008,0,157.075,3511.082
-2296,2.008084,0,909.65934,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070868,0.0592,0.0077,0.706612,82.632324,22.503544,154.69756,723.57696,48.975668,0.118536,134.51486,0.9044,0.093,4.057,0.489,0.887,0.24,0,0,0,0.002,0,0,0,0.008,0,157.098,3511.082
-2297,2.004588,0,909.75978,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070876,0.0592,0.0077,0.706684,82.640268,22.505708,154.71245,723.64655,48.980376,0.118552,134.52779,0.9044,0.093,4.058,0.489,0.887,0.24,0,0,0,0.002,0,0,0,0.008,0,157.121,3511.082
-2298,2.001092,0,909.86022,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070884,0.0592,0.0077,0.706756,82.648212,22.507872,154.72733,723.71613,48.985084,0.118568,134.54073,0.9044,0.093,4.058,0.489,0.887,0.24,0,0,0,0.002,0,0,0,0.008,0,157.144,3511.082
-2299,1.997596,0,909.96066,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070892,0.0592,0.0077,0.706828,82.656156,22.510036,154.74222,723.78572,48.989792,0.118584,134.55366,0.9044,0.093,4.059,0.489,0.888,0.24,0,0,0,0.002,0,0,0,0.008,0,157.167,3511.082
-2300,1.9941,0,910.0611,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0709,0.0592,0.0077,0.7069,82.6641,22.5122,154.7571,723.8553,48.9945,0.1186,134.5666,0.9044,0.093,4.06,0.489,0.888,0.24,0,0,0,0.002,0,0,0,0.008,0,157.189,3511.082
-2301,1.991988,0,910.14458,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070904,0.0592,0.0077,0.706956,82.670706,22.514002,154.76946,723.91314,48.998416,0.118608,134.57735,0.9044,0.093,4.061,0.489,0.888,0.24,0,0,0,0.002,0,0,0,0.008,0,157.212,3511.082
-2302,1.989876,0,910.22807,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070908,0.0592,0.0077,0.707012,82.677312,22.515804,154.78182,723.97097,49.002332,0.118616,134.58811,0.9044,0.093,4.062,0.489,0.888,0.24,0,0,0,0.002,0,0,0,0.008,0,157.234,3511.082
-2303,1.987764,0,910.31155,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070912,0.0592,0.0077,0.707068,82.683918,22.517606,154.79419,724.02881,49.006248,0.118624,134.59886,0.9044,0.093,4.063,0.489,0.888,0.24,0,0,0,0.002,0,0,0,0.008,0,157.256,3511.082
-2304,1.985652,0,910.39504,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070916,0.0592,0.0077,0.707124,82.690524,22.519408,154.80655,724.08664,49.010164,0.118632,134.60962,0.9044,0.093,4.063,0.49,0.888,0.241,0,0,0,0.002,0,0,0,0.008,0,157.278,3511.082
-2305,1.98354,0,910.47852,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07092,0.0592,0.0077,0.70718,82.69713,22.52121,154.81891,724.14448,49.01408,0.11864,134.62037,0.9044,0.093,4.064,0.49,0.889,0.241,0,0,0,0.002,0,0,0,0.008,0,157.3,3511.082
-2306,1.981428,0,910.562,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070924,0.0592,0.0077,0.707236,82.703736,22.523012,154.83127,724.20232,49.017996,0.118648,134.63112,0.9044,0.093,4.065,0.49,0.889,0.241,0,0,0,0.002,0,0,0,0.008,0,157.322,3511.082
-2307,1.979316,0,910.64549,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070928,0.0592,0.0077,0.707292,82.710342,22.524814,154.84363,724.26015,49.021912,0.118656,134.64188,0.9044,0.093,4.066,0.49,0.889,0.241,0,0,0,0.002,0,0,0,0.008,0,157.344,3511.082
-2308,1.977204,0,910.72897,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070932,0.0592,0.0077,0.707348,82.716948,22.526616,154.856,724.31799,49.025828,0.118664,134.65263,0.9044,0.093,4.067,0.49,0.889,0.241,0,0,0,0.002,0,0,0,0.008,0,157.366,3511.082
-2309,1.975092,0,910.81246,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070936,0.0592,0.0077,0.707404,82.723554,22.528418,154.86836,724.37582,49.029744,0.118672,134.66339,0.9044,0.093,4.068,0.49,0.889,0.241,0,0,0,0.002,0,0,0,0.008,0,157.387,3511.082
-2310,1.97298,0,910.89594,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07094,0.0592,0.0077,0.70746,82.73016,22.53022,154.88072,724.43366,49.03366,0.11868,134.67414,0.9044,0.093,4.068,0.49,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.409,3511.082
-2311,1.970868,0,910.97942,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070944,0.0592,0.0077,0.707516,82.736766,22.532022,154.89308,724.4915,49.037576,0.118688,134.68489,0.9044,0.093,4.069,0.49,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.43,3511.082
-2312,1.968756,0,911.06291,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070948,0.0592,0.0077,0.707572,82.743372,22.533824,154.90544,724.54933,49.041492,0.118696,134.69565,0.9044,0.093,4.07,0.49,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.452,3511.082
-2313,1.966644,0,911.14639,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070952,0.0592,0.0077,0.707628,82.749978,22.535626,154.91781,724.60717,49.045408,0.118704,134.7064,0.9044,0.093,4.071,0.49,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.473,3511.082
-2314,1.964532,0,911.22988,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070956,0.0592,0.0077,0.707684,82.756584,22.537428,154.93017,724.665,49.049324,0.118712,134.71716,0.9044,0.093,4.071,0.491,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.494,3511.082
-2315,1.96242,0,911.31336,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07096,0.0592,0.0077,0.70774,82.76319,22.53923,154.94253,724.72284,49.05324,0.11872,134.72791,0.9044,0.093,4.072,0.491,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.515,3511.082
-2316,1.960308,0,911.39684,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070964,0.0592,0.0077,0.707796,82.769796,22.541032,154.95489,724.78068,49.057156,0.118728,134.73866,0.9044,0.094,4.073,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.536,3511.082
-2317,1.958196,0,911.48033,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070968,0.0592,0.0077,0.707852,82.776402,22.542834,154.96725,724.83851,49.061072,0.118736,134.74942,0.9044,0.094,4.074,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.556,3511.082
-2318,1.956084,0,911.56381,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070972,0.0592,0.0077,0.707908,82.783008,22.544636,154.97962,724.89635,49.064988,0.118744,134.76017,0.9044,0.094,4.075,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.577,3511.082
-2319,1.953972,0,911.6473,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070976,0.0592,0.0077,0.707964,82.789614,22.546438,154.99198,724.95418,49.068904,0.118752,134.77093,0.9044,0.094,4.075,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.598,3511.082
-2320,1.95186,0,911.73078,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07098,0.0592,0.0077,0.70802,82.79622,22.54824,155.00434,725.01202,49.07282,0.11876,134.78168,0.9044,0.094,4.076,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.618,3511.082
-2321,1.949748,0,911.81426,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070984,0.0592,0.0077,0.708076,82.802826,22.550042,155.0167,725.06986,49.076736,0.118768,134.79243,0.9044,0.094,4.077,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.639,3511.082
-2322,1.947636,0,911.89775,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070988,0.0592,0.0077,0.708132,82.809432,22.551844,155.02906,725.12769,49.080652,0.118776,134.80319,0.9044,0.094,4.078,0.491,0.892,0.241,0,0,0,0.002,0,0,0,0.008,0,157.659,3511.082
-2323,1.945524,0,911.98123,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070992,0.0592,0.0077,0.708188,82.816038,22.553646,155.04143,725.18553,49.084568,0.118784,134.81394,0.9044,0.094,4.078,0.491,0.892,0.241,0,0,0,0.002,0,0,0,0.008,0,157.679,3511.082
-2324,1.943412,0,912.06472,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070996,0.0592,0.0077,0.708244,82.822644,22.555448,155.05379,725.24336,49.088484,0.118792,134.8247,0.9044,0.094,4.079,0.491,0.892,0.241,0,0,0,0.002,0,0,0,0.008,0,157.699,3511.082
-2325,1.9413,0,912.1482,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071,0.0592,0.0077,0.7083,82.82925,22.55725,155.06615,725.3012,49.0924,0.1188,134.83545,0.9044,0.094,4.08,0.492,0.892,0.242,0,0,0,0.002,0,0,0,0.008,0,157.719,3511.082
-2326,1.939188,0,912.23168,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071004,0.0592,0.0077,0.708356,82.835856,22.559052,155.07851,725.35904,49.096316,0.118808,134.8462,0.9044,0.094,4.081,0.492,0.892,0.242,0,0,0,0.002,0,0,0,0.008,0,157.739,3511.082
-2327,1.937076,0,912.31517,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071008,0.0592,0.0077,0.708412,82.842462,22.560854,155.09087,725.41687,49.100232,0.118816,134.85696,0.9044,0.094,4.081,0.492,0.892,0.242,0,0,0,0.002,0,0,0,0.008,0,157.759,3511.082
-2328,1.934964,0,912.39865,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071012,0.0592,0.0077,0.708468,82.849068,22.562656,155.10324,725.47471,49.104148,0.118824,134.86771,0.9044,0.094,4.082,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.779,3511.082
-2329,1.932852,0,912.48214,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071016,0.0592,0.0077,0.708524,82.855674,22.564458,155.1156,725.53254,49.108064,0.118832,134.87847,0.9044,0.094,4.083,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.799,3511.082
-2330,1.93074,0,912.56562,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07102,0.0592,0.0077,0.70858,82.86228,22.56626,155.12796,725.59038,49.11198,0.11884,134.88922,0.9044,0.094,4.084,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.818,3511.082
-2331,1.928628,0,912.6491,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071024,0.0592,0.0077,0.708636,82.868886,22.568062,155.14032,725.64822,49.115896,0.118848,134.89997,0.9044,0.094,4.084,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.838,3511.082
-2332,1.926516,0,912.73259,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071028,0.0592,0.0077,0.708692,82.875492,22.569864,155.15268,725.70605,49.119812,0.118856,134.91073,0.9044,0.094,4.085,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.857,3511.082
-2333,1.924404,0,912.81607,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071032,0.0592,0.0077,0.708748,82.882098,22.571666,155.16505,725.76389,49.123728,0.118864,134.92148,0.9044,0.094,4.086,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.877,3511.082
-2334,1.922292,0,912.89956,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071036,0.0592,0.0077,0.708804,82.888704,22.573468,155.17741,725.82172,49.127644,0.118872,134.93224,0.9044,0.094,4.087,0.492,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.896,3511.082
-2335,1.92018,0,912.98304,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07104,0.0592,0.0077,0.70886,82.89531,22.57527,155.18977,725.87956,49.13156,0.11888,134.94299,0.9044,0.094,4.087,0.492,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.915,3511.082
-2336,1.918068,0,913.06652,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071044,0.0592,0.0077,0.708916,82.901916,22.577072,155.20213,725.9374,49.135476,0.118888,134.95374,0.9044,0.094,4.088,0.493,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.934,3511.082
-2337,1.915956,0,913.15001,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071048,0.0592,0.0077,0.708972,82.908522,22.578874,155.21449,725.99523,49.139392,0.118896,134.9645,0.9044,0.094,4.089,0.493,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.953,3511.082
-2338,1.913844,0,913.23349,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071052,0.0592,0.0077,0.709028,82.915128,22.580676,155.22686,726.05307,49.143308,0.118904,134.97525,0.9044,0.094,4.089,0.493,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.972,3511.082
-2339,1.911732,0,913.31698,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071056,0.0592,0.0077,0.709084,82.921734,22.582478,155.23922,726.1109,49.147224,0.118912,134.98601,0.9044,0.094,4.09,0.493,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.991,3511.082
-2340,1.90962,0,913.40046,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07106,0.0592,0.0077,0.70914,82.92834,22.58428,155.25158,726.16874,49.15114,0.11892,134.99676,0.9044,0.094,4.091,0.493,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,158.01,3511.082
-2341,1.907508,0,913.48394,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071064,0.0592,0.0077,0.709196,82.934946,22.586082,155.26394,726.22658,49.155056,0.118928,135.00751,0.9044,0.094,4.091,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.029,3511.082
-2342,1.905396,0,913.56743,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071068,0.0592,0.0077,0.709252,82.941552,22.587884,155.2763,726.28441,49.158972,0.118936,135.01827,0.9044,0.094,4.092,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.047,3511.082
-2343,1.903284,0,913.65091,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071072,0.0592,0.0077,0.709308,82.948158,22.589686,155.28867,726.34225,49.162888,0.118944,135.02902,0.9044,0.094,4.093,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.066,3511.082
-2344,1.901172,0,913.7344,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071076,0.0592,0.0077,0.709364,82.954764,22.591488,155.30103,726.40008,49.166804,0.118952,135.03978,0.9044,0.094,4.094,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.085,3511.082
-2345,1.89906,0,913.81788,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07108,0.0592,0.0077,0.70942,82.96137,22.59329,155.31339,726.45792,49.17072,0.11896,135.05053,0.9044,0.094,4.094,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.103,3511.082
-2346,1.896948,0,913.90136,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071084,0.0592,0.0077,0.709476,82.967976,22.595092,155.32575,726.51576,49.174636,0.118968,135.06128,0.9044,0.094,4.095,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.121,3511.082
-2347,1.894836,0,913.98485,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071088,0.0592,0.0077,0.709532,82.974582,22.596894,155.33811,726.57359,49.178552,0.118976,135.07204,0.9044,0.094,4.096,0.493,0.896,0.242,0,0,0,0.002,0,0,0,0.008,0,158.14,3511.082
-2348,1.892724,0,914.06833,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071092,0.0592,0.0077,0.709588,82.981188,22.598696,155.35048,726.63143,49.182468,0.118984,135.08279,0.9044,0.094,4.096,0.494,0.896,0.242,0,0,0,0.002,0,0,0,0.008,0,158.158,3511.082
-2349,1.890612,0,914.15182,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071096,0.0592,0.0077,0.709644,82.987794,22.600498,155.36284,726.68926,49.186384,0.118992,135.09355,0.9044,0.094,4.097,0.494,0.896,0.243,0,0,0,0.002,0,0,0,0.008,0,158.176,3511.082
-2350,1.8885,0,914.2353,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0711,0.0592,0.0077,0.7097,82.9944,22.6023,155.3752,726.7471,49.1903,0.119,135.1043,0.9044,0.094,4.098,0.494,0.896,0.243,0,0,0,0.002,0,0,0,0.008,0,158.194,3511.082
-2351,1.885994,0,914.3042,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071106,0.0592,0.0077,0.709744,82.999852,22.603782,155.3854,726.79483,49.19353,0.119008,135.11317,0.9044,0.094,4.098,0.494,0.896,0.243,0,0,0,0.002,0,0,0,0.008,0,158.212,3511.082
-2352,1.883488,0,914.37309,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071112,0.0592,0.0077,0.709788,83.005304,22.605264,155.39561,726.84256,49.19676,0.119016,135.12204,0.9044,0.094,4.099,0.494,0.896,0.243,0,0,0,0.002,0,0,0,0.008,0,158.23,3511.082
-2353,1.880982,0,914.44199,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071118,0.0592,0.0077,0.709832,83.010756,22.606746,155.40581,726.89028,49.19999,0.119024,135.13092,0.9044,0.094,4.1,0.494,0.896,0.243,0,0,0,0.002,0,0,0,0.008,0,158.248,3511.082
-2354,1.878476,0,914.51088,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071124,0.0592,0.0077,0.709876,83.016208,22.608228,155.41602,726.93801,49.20322,0.119032,135.13979,0.9044,0.094,4.1,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.266,3511.082
-2355,1.87597,0,914.57978,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07113,0.0592,0.0077,0.70992,83.02166,22.60971,155.42622,726.98574,49.20645,0.11904,135.14866,0.9044,0.094,4.101,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.284,3511.082
-2356,1.873464,0,914.64868,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071136,0.0592,0.0077,0.709964,83.027112,22.611192,155.43642,727.03347,49.20968,0.119048,135.15753,0.9044,0.094,4.102,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.301,3511.082
-2357,1.870958,0,914.71757,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071142,0.0592,0.0077,0.710008,83.032564,22.612674,155.44663,727.0812,49.21291,0.119056,135.1664,0.9044,0.094,4.102,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.319,3511.082
-2358,1.868452,0,914.78647,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071148,0.0592,0.0077,0.710052,83.038016,22.614156,155.45683,727.12892,49.21614,0.119064,135.17528,0.9044,0.094,4.103,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.337,3511.082
-2359,1.865946,0,914.85536,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071154,0.0592,0.0077,0.710096,83.043468,22.615638,155.46704,727.17665,49.21937,0.119072,135.18415,0.9044,0.094,4.104,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.354,3511.082
-2360,1.86344,0,914.92426,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07116,0.0592,0.0077,0.71014,83.04892,22.61712,155.47724,727.22438,49.2226,0.11908,135.19302,0.9044,0.094,4.104,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.372,3511.082
-2361,1.860934,0,914.99316,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071166,0.0592,0.0077,0.710184,83.054372,22.618602,155.48744,727.27211,49.22583,0.119088,135.20189,0.9044,0.094,4.105,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.389,3511.082
-2362,1.858428,0,915.06205,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071172,0.0592,0.0077,0.710228,83.059824,22.620084,155.49765,727.31984,49.22906,0.119096,135.21076,0.9044,0.094,4.106,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.406,3511.082
-2363,1.855922,0,915.13095,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071178,0.0592,0.0077,0.710272,83.065276,22.621566,155.50785,727.36756,49.23229,0.119104,135.21964,0.9044,0.094,4.106,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.424,3511.082
-2364,1.853416,0,915.19984,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071184,0.0592,0.0077,0.710316,83.070728,22.623048,155.51806,727.41529,49.23552,0.119112,135.22851,0.9044,0.094,4.107,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.441,3511.082
-2365,1.85091,0,915.26874,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07119,0.0592,0.0077,0.71036,83.07618,22.62453,155.52826,727.46302,49.23875,0.11912,135.23738,0.9044,0.094,4.108,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.458,3511.082
-2366,1.848404,0,915.33764,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071196,0.0592,0.0077,0.710404,83.081632,22.626012,155.53846,727.51075,49.24198,0.119128,135.24625,0.9044,0.094,4.108,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.475,3511.082
-2367,1.845898,0,915.40653,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071202,0.0592,0.0077,0.710448,83.087084,22.627494,155.54867,727.55848,49.24521,0.119136,135.25512,0.9044,0.094,4.109,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.492,3511.082
-2368,1.843392,0,915.47543,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071208,0.0592,0.0077,0.710492,83.092536,22.628976,155.55887,727.6062,49.24844,0.119144,135.264,0.9044,0.094,4.109,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.509,3511.082
-2369,1.840886,0,915.54432,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071214,0.0592,0.0077,0.710536,83.097988,22.630458,155.56908,727.65393,49.25167,0.119152,135.27287,0.9044,0.094,4.11,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.526,3511.082
-2370,1.83838,0,915.61322,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07122,0.0592,0.0077,0.71058,83.10344,22.63194,155.57928,727.70166,49.2549,0.11916,135.28174,0.9044,0.094,4.111,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.543,3511.082
-2371,1.835874,0,915.68212,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071226,0.0592,0.0077,0.710624,83.108892,22.633422,155.58948,727.74939,49.25813,0.119168,135.29061,0.9044,0.094,4.111,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.56,3511.082
-2372,1.833368,0,915.75101,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071232,0.0592,0.0077,0.710668,83.114344,22.634904,155.59969,727.79712,49.26136,0.119176,135.29948,0.9044,0.094,4.112,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.576,3511.082
-2373,1.830862,0,915.81991,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071238,0.0592,0.0077,0.710712,83.119796,22.636386,155.60989,727.84484,49.26459,0.119184,135.30836,0.9044,0.094,4.113,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.593,3511.082
-2374,1.828356,0,915.8888,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071244,0.0592,0.0077,0.710756,83.125248,22.637868,155.6201,727.89257,49.26782,0.119192,135.31723,0.9044,0.094,4.113,0.496,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.61,3511.082
-2375,1.82585,0,915.9577,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07125,0.0592,0.0077,0.7108,83.1307,22.63935,155.6303,727.9403,49.27105,0.1192,135.3261,0.9044,0.094,4.114,0.496,0.899,0.244,0,0,0,0.002,0,0,0,0.008,0,158.626,3511.082
-2376,1.823344,0,916.0266,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071256,0.0592,0.0077,0.710844,83.136152,22.640832,155.6405,727.98803,49.27428,0.119208,135.33497,0.9044,0.094,4.114,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.643,3511.082
-2377,1.820838,0,916.09549,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071262,0.0592,0.0077,0.710888,83.141604,22.642314,155.65071,728.03576,49.27751,0.119216,135.34384,0.9044,0.094,4.115,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.659,3511.082
-2378,1.818332,0,916.16439,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071268,0.0592,0.0077,0.710932,83.147056,22.643796,155.66091,728.08348,49.28074,0.119224,135.35272,0.9044,0.094,4.116,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.676,3511.082
-2379,1.815826,0,916.23328,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071274,0.0592,0.0077,0.710976,83.152508,22.645278,155.67112,728.13121,49.28397,0.119232,135.36159,0.9044,0.095,4.116,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.692,3511.082
-2380,1.81332,0,916.30218,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07128,0.0592,0.0077,0.71102,83.15796,22.64676,155.68132,728.17894,49.2872,0.11924,135.37046,0.9044,0.095,4.117,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.708,3511.082
-2381,1.810814,0,916.37108,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071286,0.0592,0.0077,0.711064,83.163412,22.648242,155.69152,728.22667,49.29043,0.119248,135.37933,0.9044,0.095,4.118,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.724,3511.082
-2382,1.808308,0,916.43997,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071292,0.0592,0.0077,0.711108,83.168864,22.649724,155.70173,728.2744,49.29366,0.119256,135.3882,0.9044,0.095,4.118,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.741,3511.082
-2383,1.805802,0,916.50887,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071298,0.0592,0.0077,0.711152,83.174316,22.651206,155.71193,728.32212,49.29689,0.119264,135.39708,0.9044,0.095,4.119,0.496,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.757,3511.082
-2384,1.803296,0,916.57776,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071304,0.0592,0.0077,0.711196,83.179768,22.652688,155.72214,728.36985,49.30012,0.119272,135.40595,0.9044,0.095,4.119,0.496,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.773,3511.082
-2385,1.80079,0,916.64666,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07131,0.0592,0.0077,0.71124,83.18522,22.65417,155.73234,728.41758,49.30335,0.11928,135.41482,0.9044,0.095,4.12,0.496,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.789,3511.082
-2386,1.798284,0,916.71556,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071316,0.0592,0.0077,0.711284,83.190672,22.655652,155.74254,728.46531,49.30658,0.119288,135.42369,0.9044,0.095,4.121,0.496,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.805,3511.082
-2387,1.795778,0,916.78445,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071322,0.0592,0.0077,0.711328,83.196124,22.657134,155.75275,728.51304,49.30981,0.119296,135.43256,0.9044,0.095,4.121,0.496,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.821,3511.082
-2388,1.793272,0,916.85335,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071328,0.0592,0.0077,0.711372,83.201576,22.658616,155.76295,728.56076,49.31304,0.119304,135.44144,0.9044,0.095,4.122,0.497,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.837,3511.082
-2389,1.790766,0,916.92224,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071334,0.0592,0.0077,0.711416,83.207028,22.660098,155.77316,728.60849,49.31627,0.119312,135.45031,0.9044,0.095,4.122,0.497,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.853,3511.082
-2390,1.78826,0,916.99114,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07134,0.0592,0.0077,0.71146,83.21248,22.66158,155.78336,728.65622,49.3195,0.11932,135.45918,0.9044,0.095,4.123,0.497,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.868,3511.082
-2391,1.785754,0,917.06004,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071346,0.0592,0.0077,0.711504,83.217932,22.663062,155.79356,728.70395,49.32273,0.119328,135.46805,0.9044,0.095,4.123,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.884,3511.082
-2392,1.783248,0,917.12893,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071352,0.0592,0.0077,0.711548,83.223384,22.664544,155.80377,728.75168,49.32596,0.119336,135.47692,0.9044,0.095,4.124,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.9,3511.082
-2393,1.780742,0,917.19783,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071358,0.0592,0.0077,0.711592,83.228836,22.666026,155.81397,728.7994,49.32919,0.119344,135.4858,0.9044,0.095,4.125,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.915,3511.082
-2394,1.778236,0,917.26672,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071364,0.0592,0.0077,0.711636,83.234288,22.667508,155.82418,728.84713,49.33242,0.119352,135.49467,0.9044,0.095,4.125,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.931,3511.082
-2395,1.77573,0,917.33562,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07137,0.0592,0.0077,0.71168,83.23974,22.66899,155.83438,728.89486,49.33565,0.11936,135.50354,0.9044,0.095,4.126,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.947,3511.082
-2396,1.773224,0,917.40452,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071376,0.0592,0.0077,0.711724,83.245192,22.670472,155.84458,728.94259,49.33888,0.119368,135.51241,0.9044,0.095,4.126,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.962,3511.082
-2397,1.770718,0,917.47341,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071382,0.0592,0.0077,0.711768,83.250644,22.671954,155.85479,728.99032,49.34211,0.119376,135.52128,0.9044,0.095,4.127,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.977,3511.082
-2398,1.768212,0,917.54231,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071388,0.0592,0.0077,0.711812,83.256096,22.673436,155.86499,729.03804,49.34534,0.119384,135.53016,0.9044,0.095,4.128,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.993,3511.082
-2399,1.765706,0,917.6112,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071394,0.0592,0.0077,0.711856,83.261548,22.674918,155.8752,729.08577,49.34857,0.119392,135.53903,0.9044,0.095,4.128,0.497,0.903,0.244,0,0,0,0.002,0,0,0,0.008,0,159.008,3511.082
-2400,1.7632,0,917.6801,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0714,0.0592,0.0077,0.7119,83.267,22.6764,155.8854,729.1335,49.3518,0.1194,135.5479,0.9044,0.095,4.129,0.497,0.903,0.244,0,0,0,0.002,0,0,0,0.008,0,159.024,3511.082
-2401,1.760278,0,917.7393,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071404,0.0592,0.0077,0.711942,83.271682,22.677674,155.89417,729.17451,49.354576,0.119406,135.55552,0.9044,0.095,4.129,0.497,0.903,0.244,0,0,0,0.002,0,0,0,0.008,0,159.039,3511.082
-2402,1.757356,0,917.79849,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071408,0.0592,0.0077,0.711984,83.276364,22.678948,155.90294,729.21552,49.357352,0.119412,135.56314,0.9044,0.095,4.13,0.498,0.903,0.244,0,0,0,0.002,0,0,0,0.008,0,159.054,3511.082
-2403,1.754434,0,917.85769,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071412,0.0592,0.0077,0.712026,83.281046,22.680222,155.91171,729.25653,49.360128,0.119418,135.57077,0.9044,0.095,4.13,0.498,0.903,0.245,0,0,0,0.002,0,0,0,0.008,0,159.069,3511.082
-2404,1.751512,0,917.91688,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071416,0.0592,0.0077,0.712068,83.285728,22.681496,155.92048,729.29754,49.362904,0.119424,135.57839,0.9044,0.095,4.131,0.498,0.903,0.245,0,0,0,0.002,0,0,0,0.008,0,159.084,3511.082
-2405,1.74859,0,917.97608,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07142,0.0592,0.0077,0.71211,83.29041,22.68277,155.92925,729.33855,49.36568,0.11943,135.58601,0.9044,0.095,4.132,0.498,0.903,0.245,0,0,0,0.002,0,0,0,0.008,0,159.099,3511.082
-2406,1.745668,0,918.03528,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071424,0.0592,0.0077,0.712152,83.295092,22.684044,155.93802,729.37956,49.368456,0.119436,135.59363,0.9044,0.095,4.132,0.498,0.903,0.245,0,0,0,0.002,0,0,0,0.008,0,159.114,3511.082
-2407,1.742746,0,918.09447,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071428,0.0592,0.0077,0.712194,83.299774,22.685318,155.94679,729.42057,49.371232,0.119442,135.60125,0.9044,0.095,4.133,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.129,3511.082
-2408,1.739824,0,918.15367,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071432,0.0592,0.0077,0.712236,83.304456,22.686592,155.95556,729.46158,49.374008,0.119448,135.60888,0.9044,0.095,4.133,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.144,3511.082
-2409,1.736902,0,918.21286,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071436,0.0592,0.0077,0.712278,83.309138,22.687866,155.96433,729.50259,49.376784,0.119454,135.6165,0.9044,0.095,4.134,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.159,3511.082
-2410,1.73398,0,918.27206,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07144,0.0592,0.0077,0.71232,83.31382,22.68914,155.9731,729.5436,49.37956,0.11946,135.62412,0.9044,0.095,4.134,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.174,3511.082
-2411,1.731058,0,918.33126,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071444,0.0592,0.0077,0.712362,83.318502,22.690414,155.98187,729.58461,49.382336,0.119466,135.63174,0.9044,0.095,4.135,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.189,3511.082
-2412,1.728136,0,918.39045,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071448,0.0592,0.0077,0.712404,83.323184,22.691688,155.99064,729.62562,49.385112,0.119472,135.63936,0.9044,0.095,4.135,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.204,3511.082
-2413,1.725214,0,918.44965,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071452,0.0592,0.0077,0.712446,83.327866,22.692962,155.99941,729.66663,49.387888,0.119478,135.64699,0.9044,0.095,4.136,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.218,3511.082
-2414,1.722292,0,918.50884,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071456,0.0592,0.0077,0.712488,83.332548,22.694236,156.00818,729.70764,49.390664,0.119484,135.65461,0.9044,0.095,4.137,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.233,3511.082
-2415,1.71937,0,918.56804,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07146,0.0592,0.0077,0.71253,83.33723,22.69551,156.01695,729.74865,49.39344,0.11949,135.66223,0.9044,0.095,4.137,0.498,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.248,3511.082
-2416,1.716448,0,918.62724,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071464,0.0592,0.0077,0.712572,83.341912,22.696784,156.02572,729.78966,49.396216,0.119496,135.66985,0.9044,0.095,4.138,0.498,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.262,3511.082
-2417,1.713526,0,918.68643,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071468,0.0592,0.0077,0.712614,83.346594,22.698058,156.03449,729.83067,49.398992,0.119502,135.67747,0.9044,0.095,4.138,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.277,3511.082
-2418,1.710604,0,918.74563,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071472,0.0592,0.0077,0.712656,83.351276,22.699332,156.04326,729.87168,49.401768,0.119508,135.6851,0.9044,0.095,4.139,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.292,3511.082
-2419,1.707682,0,918.80482,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071476,0.0592,0.0077,0.712698,83.355958,22.700606,156.05203,729.91269,49.404544,0.119514,135.69272,0.9044,0.095,4.139,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.306,3511.082
-2420,1.70476,0,918.86402,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07148,0.0592,0.0077,0.71274,83.36064,22.70188,156.0608,729.9537,49.40732,0.11952,135.70034,0.9044,0.095,4.14,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.32,3511.082
-2421,1.701838,0,918.92322,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071484,0.0592,0.0077,0.712782,83.365322,22.703154,156.06957,729.99471,49.410096,0.119526,135.70796,0.9044,0.095,4.14,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.335,3511.082
-2422,1.698916,0,918.98241,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071488,0.0592,0.0077,0.712824,83.370004,22.704428,156.07834,730.03572,49.412872,0.119532,135.71558,0.9044,0.095,4.141,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.349,3511.082
-2423,1.695994,0,919.04161,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071492,0.0592,0.0077,0.712866,83.374686,22.705702,156.08711,730.07673,49.415648,0.119538,135.72321,0.9044,0.095,4.141,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.364,3511.082
-2424,1.693072,0,919.1008,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071496,0.0592,0.0077,0.712908,83.379368,22.706976,156.09588,730.11774,49.418424,0.119544,135.73083,0.9044,0.095,4.142,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.378,3511.082
-2425,1.69015,0,919.16,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0715,0.0592,0.0077,0.71295,83.38405,22.70825,156.10465,730.15875,49.4212,0.11955,135.73845,0.9044,0.095,4.142,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.392,3511.082
-2426,1.687228,0,919.2192,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071504,0.0592,0.0077,0.712992,83.388732,22.709524,156.11342,730.19976,49.423976,0.119556,135.74607,0.9044,0.095,4.143,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.406,3511.082
-2427,1.684306,0,919.27839,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071508,0.0592,0.0077,0.713034,83.393414,22.710798,156.12219,730.24077,49.426752,0.119562,135.75369,0.9044,0.095,4.144,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.421,3511.082
-2428,1.681384,0,919.33759,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071512,0.0592,0.0077,0.713076,83.398096,22.712072,156.13096,730.28178,49.429528,0.119568,135.76132,0.9044,0.095,4.144,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.435,3511.082
-2429,1.678462,0,919.39678,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071516,0.0592,0.0077,0.713118,83.402778,22.713346,156.13973,730.32279,49.432304,0.119574,135.76894,0.9044,0.095,4.145,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.449,3511.082
-2430,1.67554,0,919.45598,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07152,0.0592,0.0077,0.71316,83.40746,22.71462,156.1485,730.3638,49.43508,0.11958,135.77656,0.9044,0.095,4.145,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.463,3511.082
-2431,1.672618,0,919.51518,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071524,0.0592,0.0077,0.713202,83.412142,22.715894,156.15727,730.40481,49.437856,0.119586,135.78418,0.9044,0.095,4.146,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.477,3511.082
-2432,1.669696,0,919.57437,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071528,0.0592,0.0077,0.713244,83.416824,22.717168,156.16604,730.44582,49.440632,0.119592,135.7918,0.9044,0.095,4.146,0.5,0.907,0.245,0,0,0,0.002,0,0,0,0.008,0,159.491,3511.082
-2433,1.666774,0,919.63357,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071532,0.0592,0.0077,0.713286,83.421506,22.718442,156.17481,730.48683,49.443408,0.119598,135.79943,0.9044,0.095,4.147,0.5,0.907,0.245,0,0,0,0.002,0,0,0,0.008,0,159.505,3511.082
-2434,1.663852,0,919.69276,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071536,0.0592,0.0077,0.713328,83.426188,22.719716,156.18358,730.52784,49.446184,0.119604,135.80705,0.9044,0.095,4.147,0.5,0.907,0.245,0,0,0,0.002,0,0,0,0.008,0,159.519,3511.082
-2435,1.66093,0,919.75196,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07154,0.0592,0.0077,0.71337,83.43087,22.72099,156.19235,730.56885,49.44896,0.11961,135.81467,0.9044,0.095,4.148,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.532,3511.082
-2436,1.658008,0,919.81116,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071544,0.0592,0.0077,0.713412,83.435552,22.722264,156.20112,730.60986,49.451736,0.119616,135.82229,0.9044,0.095,4.148,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.546,3511.082
-2437,1.655086,0,919.87035,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071548,0.0592,0.0077,0.713454,83.440234,22.723538,156.20989,730.65087,49.454512,0.119622,135.82991,0.9044,0.095,4.149,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.56,3511.082
-2438,1.652164,0,919.92955,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071552,0.0592,0.0077,0.713496,83.444916,22.724812,156.21866,730.69188,49.457288,0.119628,135.83754,0.9044,0.095,4.149,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.574,3511.082
-2439,1.649242,0,919.98874,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071556,0.0592,0.0077,0.713538,83.449598,22.726086,156.22743,730.73289,49.460064,0.119634,135.84516,0.9044,0.095,4.15,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.588,3511.082
-2440,1.64632,0,920.04794,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07156,0.0592,0.0077,0.71358,83.45428,22.72736,156.2362,730.7739,49.46284,0.11964,135.85278,0.9044,0.095,4.15,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.601,3511.082
-2441,1.643398,0,920.10714,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071564,0.0592,0.0077,0.713622,83.458962,22.728634,156.24497,730.81491,49.465616,0.119646,135.8604,0.9044,0.095,4.151,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.615,3511.082
-2442,1.640476,0,920.16633,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071568,0.0592,0.0077,0.713664,83.463644,22.729908,156.25374,730.85592,49.468392,0.119652,135.86802,0.9044,0.095,4.151,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.629,3511.082
-2443,1.637554,0,920.22553,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071572,0.0592,0.0077,0.713706,83.468326,22.731182,156.26251,730.89693,49.471168,0.119658,135.87565,0.9044,0.095,4.152,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.642,3511.082
-2444,1.634632,0,920.28472,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071576,0.0592,0.0077,0.713748,83.473008,22.732456,156.27128,730.93794,49.473944,0.119664,135.88327,0.9044,0.095,4.152,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.656,3511.082
-2445,1.63171,0,920.34392,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07158,0.0592,0.0077,0.71379,83.47769,22.73373,156.28005,730.97895,49.47672,0.11967,135.89089,0.9044,0.095,4.153,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.669,3511.082
-2446,1.628788,0,920.40312,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071584,0.0592,0.0077,0.713832,83.482372,22.735004,156.28882,731.01996,49.479496,0.119676,135.89851,0.9044,0.095,4.153,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.683,3511.082
-2447,1.625866,0,920.46231,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071588,0.0592,0.0077,0.713874,83.487054,22.736278,156.29759,731.06097,49.482272,0.119682,135.90613,0.9044,0.095,4.154,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.696,3511.082
-2448,1.622944,0,920.52151,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071592,0.0592,0.0077,0.713916,83.491736,22.737552,156.30636,731.10198,49.485048,0.119688,135.91376,0.9044,0.095,4.154,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.709,3511.082
-2449,1.620022,0,920.5807,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071596,0.0592,0.0077,0.713958,83.496418,22.738826,156.31513,731.14299,49.487824,0.119694,135.92138,0.9044,0.095,4.155,0.501,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.723,3511.082
-2450,1.6171,0,920.6399,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.155,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.736,3511.082
-2451,1.61445,0,920.691,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.156,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.749,3511.082
-2452,1.6118,0,920.74209,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.156,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.763,3511.082
-2453,1.60915,0,920.79319,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.157,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.776,3511.082
-2454,1.6065,0,920.84428,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.157,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.789,3511.082
-2455,1.60385,0,920.89538,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.158,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.802,3511.082
-2456,1.6012,0,920.94648,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.158,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.815,3511.082
-2457,1.59855,0,920.99757,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.159,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.829,3511.082
-2458,1.5959,0,921.04867,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.159,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.842,3511.082
-2459,1.59325,0,921.09976,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.16,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.855,3511.082
-2460,1.5906,0,921.15086,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.16,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.868,3511.082
-2461,1.58795,0,921.20196,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.161,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.881,3511.082
-2462,1.5853,0,921.25305,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.161,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.894,3511.082
-2463,1.58265,0,921.30415,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.162,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.907,3511.082
-2464,1.58,0,921.35524,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.162,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.919,3511.082
-2465,1.57735,0,921.40634,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.163,0.502,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.932,3511.082
-2466,1.5747,0,921.45744,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.163,0.502,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.945,3511.082
-2467,1.57205,0,921.50853,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.164,0.502,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.958,3511.082
-2468,1.5694,0,921.55963,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.164,0.502,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.971,3511.082
-2469,1.56675,0,921.61072,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.165,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,159.983,3511.082
-2470,1.5641,0,921.66182,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.165,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,159.996,3511.082
-2471,1.56145,0,921.71292,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.009,3511.082
-2472,1.5588,0,921.76401,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.021,3511.082
-2473,1.55615,0,921.81511,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.034,3511.082
-2474,1.5535,0,921.8662,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.167,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.046,3511.082
-2475,1.55085,0,921.9173,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.167,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.059,3511.082
-2476,1.5482,0,921.9684,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.168,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.071,3511.082
-2477,1.54555,0,922.01949,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.168,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.084,3511.082
-2478,1.5429,0,922.07059,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.169,0.502,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.096,3511.082
-2479,1.54025,0,922.12168,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.169,0.502,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.109,3511.082
-2480,1.5376,0,922.17278,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.17,0.502,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.121,3511.082
-2481,1.53495,0,922.22388,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.17,0.502,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.134,3511.082
-2482,1.5323,0,922.27497,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.171,0.502,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.146,3511.082
-2483,1.52965,0,922.32607,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.171,0.503,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.158,3511.082
-2484,1.527,0,922.37716,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.172,0.503,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.17,3511.082
-2485,1.52435,0,922.42826,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.172,0.503,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.183,3511.082
-2486,1.5217,0,922.47936,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.195,3511.082
-2487,1.51905,0,922.53045,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.207,3511.082
-2488,1.5164,0,922.58155,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.219,3511.082
-2489,1.51375,0,922.63264,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.174,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.231,3511.082
-2490,1.5111,0,922.68374,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.174,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.244,3511.082
-2491,1.50845,0,922.73484,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.175,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.256,3511.082
-2492,1.5058,0,922.78593,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.175,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.268,3511.082
-2493,1.50315,0,922.83703,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.176,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.28,3511.082
-2494,1.5005,0,922.88812,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.176,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.292,3511.082
-2495,1.49785,0,922.93922,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.304,3511.082
-2496,1.4952,0,922.99032,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.316,3511.082
-2497,1.49255,0,923.04141,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.328,3511.082
-2498,1.4899,0,923.09251,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.339,3511.082
-2499,1.48725,0,923.1436,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.914,0.247,0,0,0,0.002,0,0,0,0.008,0,160.351,3511.082
-2500,1.4846,0,923.1947,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.914,0.247,0,0,0,0.002,0,0,0,0.008,0,160.351,3511.082
diff --git a/inst/shinyApp/www/input/emissions/SO2_emissions.csv b/inst/shinyApp/www/input/emissions/SO2_emissions.csv
deleted file mode 100644
index 70b5757..0000000
--- a/inst/shinyApp/www/input/emissions/SO2_emissions.csv
+++ /dev/null
@@ -1,114 +0,0 @@
-; Historical SO2 record in Gg,
-; constructed using : Smith et al. through 1999,
-; Klimont et al. from 2000-2011,
-; Constant open burning emissions from 2000 - 2011,
-Date,SO2_emissions
-1992,124770
-1993,122657
-1994,120543
-1995,118311
-1996,117804
-1997,116703
-1998,114790
-1999,110752
-2000,110425
-2001,108731
-2002,108097
-2003,110944
-2004,114584
-2005,116005
-2006,115887
-2007,114739
-2008,112351
-2009,107799
-2010,106726
-2011,104701
-2012,104697
-2013,104693
-2014,104689
-2015,104685
-2016,104681
-2017,104677
-2018,104673
-2019,104669
-2020,104665
-2021,104661
-2022,104657
-2023,104653
-2024,104649
-2025,104645
-2026,104641
-2027,104637
-2028,104633
-2029,104629
-2030,104625
-2031,104621
-2032,104617
-2033,104613
-2034,104609
-2035,104605
-2036,104601
-2037,104597
-2038,104593
-2039,104589
-2040,104585
-2041,104581
-2042,104577
-2043,104573
-2044,104569
-2045,104565
-2046,104561
-2047,104557
-2048,104553
-2049,104549
-2050,104545
-2051,104541
-2052,104537
-2053,104533
-2054,104529
-2055,104525
-2056,104521
-2057,104517
-2058,104513
-2059,104509
-2060,104505
-2061,104501
-2062,104497
-2063,104493
-2064,104489
-2065,104485
-2066,104481
-2067,104477
-2068,104473
-2069,104469
-2070,104465
-2071,104461
-2072,104457
-2073,104453
-2074,104449
-2075,104445
-2076,104441
-2077,104437
-2078,104433
-2079,104429
-2080,104425
-2081,104421
-2082,104417
-2083,104413
-2084,104409
-2085,104405
-2086,104401
-2087,104397
-2088,104393
-2089,104389
-2090,104385
-2091,104381
-2092,104377
-2093,104373
-2094,104369
-2095,104365
-2096,104361
-2097,104357
-2098,104353
-2099,104349
-2100,104345
diff --git a/inst/shinyApp/www/input/emissions/emissions.csv b/inst/shinyApp/www/input/emissions/emissions.csv
deleted file mode 100644
index 7936405..0000000
--- a/inst/shinyApp/www/input/emissions/emissions.csv
+++ /dev/null
@@ -1,260 +0,0 @@
-; Fossil-fuel emissions http://cdiac.ornl.gov/ftp/ndp030/CSV-FILES/global.1751_2007.csv,,
-; LUC emissions from http://cdiac.ornl.gov/trends/landuse/houghton/1850-2005.txt,,
-date,ffi_emissions,luc_emissions
-1751,0.003,
-1752,0.003,
-1753,0.003,
-1754,0.003,
-1755,0.003,
-1756,0.003,
-1757,0.003,
-1758,0.003,
-1759,0.003,
-1760,0.003,
-1761,0.003,
-1762,0.003,
-1763,0.003,
-1764,0.003,
-1765,0.003,
-1766,0.003,
-1767,0.003,
-1768,0.003,
-1769,0.003,
-1770,0.003,
-1771,0.004,
-1772,0.004,
-1773,0.004,
-1774,0.004,
-1775,0.004,
-1776,0.004,
-1777,0.004,
-1778,0.004,
-1779,0.004,
-1780,0.004,
-1781,0.005,
-1782,0.005,
-1783,0.005,
-1784,0.005,
-1785,0.005,
-1786,0.005,
-1787,0.005,
-1788,0.005,
-1789,0.005,
-1790,0.005,
-1791,0.006,
-1792,0.006,
-1793,0.006,
-1794,0.006,
-1795,0.006,
-1796,0.006,
-1797,0.007,
-1798,0.007,
-1799,0.007,
-1800,0.008,
-1801,0.008,
-1802,0.01,
-1803,0.009,
-1804,0.009,
-1805,0.009,
-1806,0.01,
-1807,0.01,
-1808,0.01,
-1809,0.01,
-1810,0.01,
-1811,0.011,
-1812,0.011,
-1813,0.011,
-1814,0.011,
-1815,0.012,
-1816,0.013,
-1817,0.014,
-1818,0.014,
-1819,0.014,
-1820,0.014,
-1821,0.014,
-1822,0.015,
-1823,0.016,
-1824,0.016,
-1825,0.017,
-1826,0.017,
-1827,0.018,
-1828,0.018,
-1829,0.018,
-1830,0.024,
-1831,0.023,
-1832,0.023,
-1833,0.024,
-1834,0.024,
-1835,0.025,
-1836,0.029,
-1837,0.029,
-1838,0.03,
-1839,0.031,
-1840,0.033,
-1841,0.034,
-1842,0.036,
-1843,0.037,
-1844,0.039,
-1845,0.043,
-1846,0.043,
-1847,0.046,
-1848,0.047,
-1849,0.05,
-1850,0.054,0.5006
-1851,0.054,0.4927
-1852,0.057,0.5485
-1853,0.059,0.5468
-1854,0.069,0.5448
-1855,0.071,0.5421
-1856,0.076,0.5477
-1857,0.077,0.5533
-1858,0.078,0.5586
-1859,0.083,0.564
-1860,0.091,0.569
-1861,0.095,0.5796
-1862,0.097,0.5209
-1863,0.104,0.5211
-1864,0.112,0.5216
-1865,0.119,0.5224
-1866,0.122,0.5225
-1867,0.13,0.5208
-1868,0.135,0.5192
-1869,0.142,0.5175
-1870,0.147,0.5163
-1871,0.156,0.5367
-1872,0.173,0.6232
-1873,0.184,0.6341
-1874,0.174,0.6411
-1875,0.188,0.6484
-1876,0.191,0.6555
-1877,0.194,0.6624
-1878,0.196,0.6695
-1879,0.21,0.6764
-1880,0.236,0.6829
-1881,0.243,0.7189
-1882,0.256,0.6727
-1883,0.272,0.6783
-1884,0.275,0.6834
-1885,0.277,0.6877
-1886,0.281,0.6904
-1887,0.295,0.6898
-1888,0.327,0.6886
-1889,0.327,0.6872
-1890,0.356,0.6859
-1891,0.372,0.6815
-1892,0.374,0.695
-1893,0.37,0.6958
-1894,0.383,0.7133
-1895,0.406,0.7175
-1896,0.419,0.7194
-1897,0.44,0.723
-1898,0.465,0.7245
-1899,0.507,0.7258
-1900,0.534,0.7269
-1901,0.552,0.7928
-1902,0.566,0.7968
-1903,0.617,0.8259
-1904,0.624,0.8524
-1905,0.663,0.8785
-1906,0.707,0.9095
-1907,0.784,0.9186
-1908,0.75,0.9279
-1909,0.785,0.9353
-1910,0.819,0.941
-1911,0.836,0.8829
-1912,0.879,0.8462
-1913,0.943,0.8159
-1914,0.85,0.8048
-1915,0.838,0.793
-1916,0.901,0.7951
-1917,0.955,0.7982
-1918,0.936,0.8014
-1919,0.806,0.8071
-1920,0.932,0.8088
-1921,0.803,0.8567
-1922,0.845,0.8491
-1923,0.97,0.857
-1924,0.963,0.8627
-1925,0.975,0.8656
-1926,0.983,0.8705
-1927,1.062,0.9097
-1928,1.065,0.913
-1929,1.145,0.94
-1930,1.053,1.0181
-1931,0.94,1.0287
-1932,0.847,0.9308
-1933,0.893,0.9276
-1934,0.973,0.9153
-1935,1.027,0.9137
-1936,1.13,0.922
-1937,1.209,0.8993
-1938,1.142,0.9024
-1939,1.192,0.9005
-1940,1.299,0.8875
-1941,1.334,0.8702
-1942,1.342,0.8913
-1943,1.391,0.8864
-1944,1.383,0.8923
-1945,1.16,0.8941
-1946,1.238,0.9769
-1947,1.392,1.0089
-1948,1.469,1.0158
-1949,1.419,1.0249
-1950,1.63,1.0373
-1951,1.767,1.2583
-1952,1.795,1.2847
-1953,1.841,1.2809
-1954,1.865,1.335
-1955,2.043,1.3795
-1956,2.177,1.4389
-1957,2.27,1.4691
-1958,2.33,1.5208
-1959,2.462,1.3978
-1960,2.577,1.3858
-1961,2.594,1.4639
-1962,2.7,1.46
-1963,2.847,1.4749
-1964,3.008,1.4871
-1965,3.145,1.505
-1966,3.305,1.5393
-1967,3.411,1.5458
-1968,3.588,1.4777
-1969,3.8,1.4831
-1970,4.076,1.4397
-1971,4.23,1.2917
-1972,4.398,1.2642
-1973,4.634,1.2487
-1974,4.643,1.2545
-1975,4.614,1.2451
-1976,4.883,1.3119
-1977,5.021,1.3151
-1978,5.084,1.3119
-1979,5.367,1.2838
-1980,5.316,1.2399
-1981,5.151,1.2634
-1982,5.119,1.463
-1983,5.099,1.5129
-1984,5.283,1.5601
-1985,5.434,1.5832
-1986,5.603,1.6011
-1987,5.747,1.6111
-1988,5.96,1.6385
-1989,6.081,1.647
-1990,6.149,1.6437
-1991,6.241,1.7125
-1992,6.126,1.605
-1993,6.132,1.5938
-1994,6.249,1.5805
-1995,6.387,1.5616
-1996,6.524,1.5313
-1997,6.649,1.4913
-1998,6.63,1.4872
-1999,6.571,1.4492
-2000,6.738,1.4099
-2001,6.9,1.3854
-2002,6.955,1.5177
-2003,7.289,1.5132
-2004,7.671,1.5349
-2005,7.971,1.4673
-2006,8.225,
-2007,8.365,
diff --git a/inst/shinyApp/www/input/emissions/gcam_emissions.csv b/inst/shinyApp/www/input/emissions/gcam_emissions.csv
deleted file mode 100644
index d3f9659..0000000
--- a/inst/shinyApp/www/input/emissions/gcam_emissions.csv
+++ /dev/null
@@ -1,250 +0,0 @@
-; Standard historical emissions for GCAM, 1990-2010. Pre-1990 and Post-2010 emissions are from RCP4.5, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-; taken from GCAM_ROOT/input/magicc/Historical\ Emissions/Default\ Emissions\ Module/Hist_to_2008_Annual.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-;UNITS:,GtC/yr,GtC/yr,Gg,Gg,MtS/yr,GgS/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,MtN/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr
-Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SOx,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,NH3,CF4_emissions,C2F6_emissions,C6F14,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCF22_emissions,HCF141b_emissions,HCF142b_emissions,halon1211_emissions,HALON1202,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions
-1765,0.003,0,0,0,0,0,0,0,0,0,0,0.83383669,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1766,0.003,0.005338296,1.9632619,0.005191085,0.098882647,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.85423057,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1767,0.003,0.010676593,2.4364481,0.010116813,0.1163065,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.87416738,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1768,0.003,0.016014889,2.911105,0.015042803,0.13381075,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.89365446,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1769,0.003,0.021353185,3.3872782,0.019969063,0.15139789,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.91269911,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1770,0.003,0.026691482,3.8650146,0.024895601,0.16907049,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.93130867,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1771,0.004,0.032029778,4.3443625,0.029822427,0.18683119,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.95253247,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1772,0.004,0.037368074,4.8253718,0.034749548,0.20468271,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.97029378,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1773,0.004,0.042706371,5.3080938,0.039676975,0.22262786,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.98764194,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1774,0.004,0.048044667,5.7925816,0.044604715,0.24066954,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,1.0045843,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1775,0.004,0.053382963,6.2788896,0.04953278,0.25881073,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,1.0211281,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1776,0.004,0.058721259,6.7670743,0.05446118,0.27705451,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,1.0372808,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1777,0.004,0.064059556,7.2571937,0.059389923,0.29540406,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,1.0530496,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1778,0.004,0.069397852,7.7493076,0.064319022,0.31386264,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,1.0684418,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1779,0.004,0.074736148,8.2434776,0.069248487,0.33243362,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,1.0834648,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1780,0.004,0.080074445,8.7397674,0.07417833,0.35112049,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,1.0981259,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1781,0.005,0.085412741,9.2382426,0.079108562,0.36992683,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,1.1154744,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1782,0.005,0.090751037,9.7389706,0.084039195,0.38885633,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,1.1294337,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1783,0.005,0.096089334,10.242021,0.088970241,0.4079128,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,1.143053,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1784,0.005,0.10142763,10.747466,0.093901714,0.42710016,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,1.1563396,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1785,0.005,0.10676593,11.25538,0.098833627,0.44642248,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,1.169301,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1786,0.005,0.11210422,11.765839,0.10376599,0.46588391,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,1.1819444,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1787,0.005,0.11744252,12.278921,0.10869883,0.48548877,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,1.194277,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1788,0.005,0.12278082,12.794707,0.11363214,0.50524148,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,1.2063064,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1789,0.005,0.12811911,13.313282,0.11856595,0.52514663,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,1.2180397,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1790,0.005,0.13345741,13.834732,0.12350027,0.54520892,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,1.2294843,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1791,0.006,0.1387957,14.359145,0.12843512,0.56543322,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,1.2436895,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1792,0.006,0.144134,14.886613,0.13337052,0.58582453,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,1.2545786,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1793,0.006,0.1494723,15.417231,0.13830648,0.60638803,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,1.265201,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1794,0.006,0.15481059,15.951096,0.14324301,0.62712904,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,1.2755639,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1795,0.006,0.16014889,16.488308,0.14818014,0.64805304,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,1.2856747,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1796,0.006,0.16548719,17.028971,0.15311788,0.66916569,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,1.2955407,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1797,0.007,0.17082548,17.573192,0.15805626,0.69047284,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,1.3082113,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1798,0.007,0.17616378,18.121081,0.16299529,0.7119805,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,1.3176096,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1799,0.007,0.18150207,18.672751,0.167935,0.73369486,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,1.3267852,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1800,0.008,0.18684037,19.228319,0.1728754,0.75562233,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,1.3387872,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1801,0.008,0.19217867,19.787906,0.17781651,0.77776949,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,1.347539,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1802,0.01,0.19751696,20.351635,0.18275836,0.80014313,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,1.362174,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1803,0.009,0.20285526,20.919636,0.18770098,0.82275026,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,1.3674894,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1804,0.009,0.20819356,21.49204,0.19264437,0.84559811,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,1.3756605,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1805,0.009,0.21353185,22.068984,0.19758858,0.86869411,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,1.3836527,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1806,0.01,0.21887015,22.650607,0.20253362,0.89204595,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,1.3945153,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1807,0.01,0.22420845,23.237055,0.20747952,0.91566153,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,1.4021716,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1808,0.01,0.22954674,23.828476,0.2124263,0.93954901,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,1.409671,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1809,0.01,0.23488504,24.425025,0.217374,0.9637168,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,1.4170207,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1810,0.01,0.24022333,25.02686,0.22232264,0.98817358,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,1.424228,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1811,0.011,0.24556163,25.634145,0.22727225,1.0129283,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,1.4343424,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1812,0.011,0.25089993,26.247048,0.23222285,1.0379901,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,1.4412871,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1813,0.011,0.25623822,26.865743,0.2371745,1.0633685,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,1.4481114,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1814,0.011,0.26157652,27.490408,0.2421272,1.0890734,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,1.4548227,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1815,0.012,0.26691482,28.12123,0.247081,1.1151148,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,1.4644703,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1816,0.013,0.27225311,28.758398,0.25203593,1.1415031,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,1.4740194,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1817,0.014,0.27759141,29.402108,0.25699203,1.1682491,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,1.4834775,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1818,0.014,0.2829297,30.052563,0.26194932,1.1953638,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,1.4898097,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1819,0.014,0.288268,30.709971,0.26690786,1.2228586,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,1.4960655,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1820,0.014,0.2936063,31.374548,0.27186767,1.2507453,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,1.5022522,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1821,0.014,0.29894459,32.046514,0.2768288,1.279036,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,1.5083771,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1822,0.015,0.30428289,32.7261,0.28179128,1.3077432,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,1.5174895,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1823,0.016,0.30962119,33.413539,0.28675516,1.3368798,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,1.5265547,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1824,0.016,0.31495948,34.109076,0.29172049,1.366459,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,1.532538,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1825,0.017,0.32029778,34.81296,0.2966873,1.3964945,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,1.5415308,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1826,0.017,0.32563608,35.52545,0.30165564,1.4270005,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,1.5474564,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1827,0.018,0.33097437,36.246813,0.30662557,1.4579916,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,1.5564061,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1828,0.018,0.33631267,36.977321,0.31159712,1.4894826,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,1.5623033,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1829,0.018,0.34165096,37.717259,0.31657035,1.5214891,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,1.5681971,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1830,0.024,0.34698926,38.466917,0.32154532,1.554027,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,1.5923472,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1831,0.023,0.35232756,39.226597,0.32652206,1.5871128,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,1.5952145,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1832,0.023,0.35766585,39.996609,0.33150065,1.6207633,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,1.6011425,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1833,0.024,0.36300415,40.777271,0.33648114,1.6549962,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,1.6101385,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1834,0.024,0.36834245,41.568914,0.34146358,1.6898292,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,1.6161259,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1835,0.025,0.37368074,42.371876,0.34644803,1.7252812,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,1.6251959,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1836,0.029,0.37901904,43.186509,0.35143456,1.7613711,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,1.64344,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1837,0.029,0.38435733,44.013173,0.35642324,1.7981187,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,1.6495713,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1838,0.03,0.38969563,44.85224,0.36141413,1.8355443,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,1.6588072,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1839,0.031,0.39503393,45.704093,0.36640729,1.873669,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,1.6681131,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1840,0.032999999,0.40037222,46.569129,0.3714028,1.9125143,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,1.6805382,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1841,0.033999999,0.40571052,47.447755,0.37640073,1.9521025,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,1.6900059,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1842,0.035999999,0.41104882,48.34039,0.38140115,1.9924567,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,1.7026076,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1843,0.036999999,0.41638711,49.247469,0.38640415,2.0336004,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,1.7122664,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1844,0.038999999,0.42172541,50.169439,0.3914098,2.0755581,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,1.7250737,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1845,0.042999999,0.42706371,51.106759,0.39641818,2.118355,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,1.744079,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1846,0.042999999,0.432402,52.059904,0.40142938,2.1620171,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,1.7510373,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1847,0.045999999,0.4377403,53.029365,0.40644349,2.206571,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,1.7672503,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1848,0.046999999,0.44307859,54.015644,0.41146059,2.2520444,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,1.7775149,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1849,0.049999999,0.44841689,55.019264,0.41648078,2.2984658,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,1.7940068,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211
-1850,0.053999999,0.45375519,56.040759,0.42150415,2.3458644,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,1.8136911,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,0,157.267,3100.211
-1851,0.053999999,0.44678569,56.46132,0.42740096,2.401282,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,1.8469194,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,0,157.267,3100.211
-1852,0.056999999,0.49862282,56.88188,0.46466062,2.4566996,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,1.9946876,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,0,157.267,3100.211
-1853,0.058999999,0.49735449,57.302441,0.46477417,2.5121172,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,2.0008114,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,0,157.267,3100.211
-1854,0.068999999,0.49581708,57.723001,0.46443647,2.5675348,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,2.0303036,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,0,157.267,3100.211
-1855,0.070999999,0.49367925,58.143562,0.46327909,2.6229524,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,2.0325148,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,0,157.267,3100.211
-1856,0.075999999,0.49893488,58.564122,0.46729312,2.6783701,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,2.0617637,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,0,157.267,3100.211
-1857,0.076999999,0.504232,58.984683,0.47126447,2.7337877,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,2.078453,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,0,157.267,3100.211
-1858,0.077999999,0.50923298,59.405243,0.47503119,2.7892053,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,2.0943024,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,0,157.267,3100.211
-1859,0.082999999,0.51425389,59.825804,0.47876627,2.8446229,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,2.122971,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,0,157.267,3100.211
-1860,0.090999999,0.51896689,60.246364,0.48257672,2.9000405,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,2.1619782,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,0,157.267,3100.211
-1861,0.094999998,0.5282236,59.614468,0.50499476,2.9926781,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,2.2735927,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,0,157.267,3100.211
-1862,0.096999998,0.47371663,58.982573,0.47111281,3.0853157,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,2.1558166,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,0,157.267,3100.211
-1863,0.104,0.47374912,58.350677,0.47444935,3.1779532,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,2.192329,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,0,157.267,3100.211
-1864,0.112,0.47413825,57.718781,0.47785801,3.2705908,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,2.2299438,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,0,157.267,3100.211
-1865,0.119,0.47479536,57.086885,0.48144966,3.3632284,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,2.2655309,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,0,157.267,3100.211
-1866,0.122,0.47491218,56.45499,0.48420454,3.455866,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,2.2871958,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,0,157.267,3100.211
-1867,0.13022269,0.47338353,55.823094,0.48472337,3.5485035,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,2.3187563,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,0,157.267,3100.211
-1868,0.13525196,0.47198274,55.191198,0.48595323,3.6411411,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,2.3371841,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,0,157.267,3100.211
-1869,0.14228123,0.47048522,54.559303,0.48686155,3.7337787,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,2.3628056,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,0,157.267,3100.211
-1870,0.14731051,0.46933399,53.927407,0.48774355,3.8264163,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,2.3824052,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,0,157.267,3100.211
-1871,0.15633978,0.48732546,56.683869,0.58501628,3.9931681,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,2.8606677,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,0,157.267,3100.211
-1872,0.17336905,0.56696435,59.440331,0.66673981,4.1599199,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,3.2401697,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,0,157.267,3100.211
-1873,0.18439832,0.57690133,62.196793,0.69637076,4.3266717,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,3.4033641,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,0,157.267,3100.211
-1874,0.1744276,0.58328394,64.953255,0.7087503,4.4934235,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,3.4271557,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,0,157.267,3100.211
-1875,0.18845687,0.5899696,67.709717,0.72034342,4.6601753,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,3.5173084,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,157.267,3100.211
-1876,0.19148614,0.59639187,70.46618,0.74524338,4.8269271,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,3.6375503,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,0,157.267,3100.211
-1877,0.19451541,0.60262312,73.222642,0.75633197,4.9936789,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,3.6958465,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,157.267,3100.211
-1878,0.196,0.6090507,75.979104,0.7660459,5.1604307,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,3.7456526,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,0,157.267,3100.211
-1879,0.21,0.61534752,78.735566,0.77491118,5.3271825,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,3.8304098,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,0,157.267,3100.211
-1880,0.236,0.62124317,81.492028,0.78412129,5.4939343,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,3.9520183,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,0,157.267,3100.211
-1881,0.243,0.64887292,84.359461,0.81157848,5.7623214,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,4.071307,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,0,157.267,3100.211
-1882,0.256,0.60466403,87.226893,0.78526034,6.0307085,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,4.0198711,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,0,157.267,3100.211
-1883,0.272,0.60851762,90.094326,0.79255607,6.2990955,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,4.0985326,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,0,157.267,3100.211
-1884,0.275,0.61212775,92.961758,0.7987505,6.5674826,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,4.1333435,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,0,157.267,3100.211
-1885,0.27699999,0.61523611,95.829191,0.80453383,6.8358696,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,4.1646148,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,0,157.267,3100.211
-1886,0.28099999,0.61714413,98.696624,0.82619361,7.1042567,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,4.2758916,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,0,157.267,3100.211
-1887,0.295,0.61616314,101.56406,0.83219647,7.3726438,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,4.353178,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,0,157.267,3100.211
-1888,0.32699999,0.61473356,104.43149,0.83705812,7.6410308,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,4.4748698,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,0,157.267,3100.211
-1889,0.32699999,0.6132002,107.29892,0.84143987,7.9094179,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,4.498422,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,0,157.267,3100.211
-1890,0.35599999,0.61175412,110.16635,0.84552548,8.1778049,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,4.6037011,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,0,157.267,3100.211
-1891,0.37199999,0.61024855,111.52362,0.85098169,8.5673728,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,4.6830725,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,0,157.267,3100.211
-1892,0.37399999,0.62319119,112.88089,0.85741997,8.9569407,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,4.7551637,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,0,157.267,3100.211
-1893,0.36999999,0.62440331,114.23816,0.86475824,9.3465086,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,4.8217408,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,0,157.267,3100.211
-1894,0.38299999,0.64036719,115.59543,0.87294487,9.7360765,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,4.8845702,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,0,157.267,3100.211
-1895,0.40599999,0.64441851,116.9527,0.88188195,10.125644,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,4.9454181,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,0,157.267,3100.211
-1896,0.41899999,0.6462784,118.30997,0.89141802,10.515212,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,5.0060509,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,0,157.267,3100.211
-1897,0.43999999,0.64956412,119.66724,0.90140157,10.90478,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,5.0682347,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,0,157.267,3100.211
-1898,0.46499999,0.65100098,121.02451,0.91168111,11.294348,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,5.1337359,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,0,157.267,3100.211
-1899,0.50699999,0.65220446,122.38178,0.92210515,11.683916,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,5.2043208,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,0,157.267,3100.211
-1900,0.53399999,0.65320628,123.73905,0.9325222,12.073484,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,5.2817555,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,0,157.267,3100.211
-1901,0.55199999,0.70294318,124.8415,0.9446669,12.62988,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,5.3685634,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,0,157.267,3100.211
-1902,0.56599999,0.70297364,125.94396,0.95993065,13.186275,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,5.4646652,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,0,157.267,3100.211
-1903,0.61699999,0.72667096,127.04642,0.97764708,13.742671,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,5.5679233,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,0,157.267,3100.211
-1904,0.62399999,0.74829324,128.14887,0.99722904,14.299067,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,5.6762002,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,0,157.267,3100.211
-1905,0.66299999,0.76981521,129.25133,1.0181293,14.855463,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,5.7873584,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,0,157.267,3100.211
-1906,0.70699999,0.79653384,130.35378,1.0397413,15.411858,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,5.8992603,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,0,157.267,3100.211
-1907,0.78399999,0.80376274,131.45624,1.0614586,15.968254,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,6.0097685,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,0,157.267,3100.211
-1908,0.74999999,0.81141278,132.5587,1.0826746,16.52465,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,6.1167454,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,0,157.267,3100.211
-1909,0.78499999,0.81737807,133.66115,1.1027829,17.081045,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,6.2180534,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,0,157.267,3100.211
-1910,0.81899999,0.82198169,134.76361,1.121177,17.637441,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,6.3115552,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,0,157.267,3100.211
-1911,0.83599999,0.77889405,135.96943,1.1389722,17.821423,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,6.3975596,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,0,157.267,3100.211
-1912,0.87899999,0.74784844,137.17525,1.1575596,18.005405,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,6.4786614,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,0,157.267,3100.211
-1913,0.94299999,0.72297977,138.38107,1.1767464,18.189388,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,6.5561518,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,0,157.267,3100.211
-1914,0.84999999,0.71479152,139.5869,1.1962611,18.37337,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,6.6313219,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,0,157.267,3100.211
-1915,0.83799999,0.70574964,140.79272,1.2158443,18.557352,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,6.7054629,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,0,157.267,3100.211
-1916,0.90099999,0.70811648,141.99854,1.2353217,18.741334,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,6.7798659,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,0,157.267,3100.211
-1917,0.95499999,0.7111963,143.20436,1.254519,18.925316,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,6.8558222,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,0,157.267,3100.211
-1918,0.93599999,0.71430427,144.41019,1.2732618,19.109298,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,6.9346228,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,0,157.267,3100.211
-1919,0.80599999,0.71965435,145.61601,1.2913759,19.29328,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,7.0175589,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,0,157.267,3100.211
-1920,0.93199999,0.72128338,146.82183,1.3086869,19.477262,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,7.1059216,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,0,157.267,3100.211
-1921,0.80299999,0.75741661,147.86155,1.3257924,19.863884,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,7.20195,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,0,157.267,3100.211
-1922,0.84499999,0.7479409,148.90128,1.343275,20.250505,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,7.3058291,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,0,157.267,3100.211
-1923,0.96999999,0.75328819,149.941,1.3609385,20.637127,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,7.415769,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,0,157.267,3100.211
-1924,0.96299999,0.75686059,150.98072,1.3796194,21.023748,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,7.5299799,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,0,157.267,3100.211
-1925,0.97499999,0.75808855,152.02045,1.3998974,21.41037,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,7.6466719,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,0,157.267,3100.211
-1926,0.98299999,0.76148327,153.06017,1.4211909,21.796991,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,7.7640552,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,0,157.267,3100.211
-1927,1.062,0.79718283,154.09989,1.4429184,22.183613,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,7.8803399,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,0,157.267,3100.211
-1928,1.065,0.79967141,155.13962,1.4644982,22.570234,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,7.9937361,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,0,157.267,3100.211
-1929,1.145,0.82422601,156.17934,1.4853488,22.956856,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,8.102454,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,0,157.267,3100.211
-1930,1.053,0.89587975,157.21906,1.5048887,23.343477,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,8.2047038,1.6637375,0.23563239,0,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,0,157.267,3100.211
-1931,0.93999999,0.90334082,158.34545,1.5226236,23.754956,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,8.298548,1.7507764,0.24803412,0,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,0,157.267,3100.211
-1932,0.84699999,0.81222597,159.47183,1.5385172,24.166434,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,8.3849848,1.8423953,0.26108852,0,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,0,157.267,3100.211
-1933,0.89299999,0.80858849,160.59821,1.5526746,24.577913,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,8.4666283,1.9388369,0.27483004,0,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,0,157.267,3100.211
-1934,0.97299999,0.79686256,161.7246,1.5653127,24.989392,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,8.5460922,2.0403528,0.28929476,0,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,0,157.267,3100.211
-1935,1.027,0.79471575,162.85098,1.5771213,25.40087,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,8.6259906,2.1472124,0.30452082,0,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,0,157.267,3100.211
-1936,1.13,0.80129993,163.97736,1.5889151,25.812349,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,8.7089373,2.2596977,0.32054821,0,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,0,157.267,3100.211
-1937,1.209,0.77969902,165.10375,1.6015088,26.223828,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,8.7975462,2.3781004,0.33741917,0,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,0,157.267,3100.211
-1938,1.142,0.78188222,166.23013,1.615717,26.635306,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,8.8944313,2.5027381,0.35517808,0,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,0,157.267,3100.211
-1939,1.192,0.77944376,167.35651,1.6323545,27.046785,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,9.0022064,2.6339328,0.37387169,0,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,0,157.267,3100.211
-1940,1.299,0.76683237,168.4829,1.6522358,27.458263,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,9.1234856,2.7720335,0.39354912,0,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,0,157.267,3100.211
-1941,1.334,0.75036458,170.03046,1.7002044,27.840442,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,9.2653861,2.9174066,0.41426223,0,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,0,157.267,3100.211
-1942,1.342,0.7690497,171.57803,1.7938613,28.22262,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,9.4321173,3.0704314,0.39468287,0,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,0,157.267,3100.211
-1943,1.391,0.7637656,173.12559,1.9231582,28.604799,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,9.6219311,3.2315097,0.37832187,0,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,0,157.267,3100.211
-1944,1.383,0.76839864,174.67315,2.0866797,28.986977,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,9.8330792,3.4010636,0.3640764,0,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,0,157.267,3100.211
-1945,1.16,0.76914739,176.22072,2.280402,29.369156,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,10.063814,3.579544,0.35194679,0,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,0,157.267,3100.211
-1946,1.238,0.84214892,177.76828,2.4903635,29.751334,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,10.312386,3.7674167,0.34193311,0,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,0,157.267,3100.211
-1947,1.392,0.87017994,179.31584,2.7026031,30.133513,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,10.577048,3.9651774,0.33403572,0,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,0,157.267,3100.211
-1948,1.469,0.87513044,180.86341,2.9031595,30.515691,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,10.856052,4.1733472,0.32825472,0,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,0,157.267,3100.211
-1949,1.419,0.88212641,182.41097,3.0780722,30.897869,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,11.14765,4.3924702,0.32459037,0,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,0,157.267,3100.211
-1950,1.63,0.89233465,183.95853,3.2133815,31.280048,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,11.450093,4.62313,0.32304286,0,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,0,157.267,3100.211
-1951,1.768,1.0885201,189.11003,3.3186021,32.866948,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,11.784634,4.865916,0.32361242,0,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,0,157.267,3100.211
-1952,1.796,1.1096378,194.26153,3.4111061,34.453849,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,12.1691,5.121479,0.32629927,0,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,0,157.927,3117.785
-1953,1.841,1.1045171,199.41303,3.4887221,36.040749,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,12.596604,5.3904959,0.3311036,0,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,0,158.604,3137.148
-1954,1.865,1.1521416,204.56453,3.5543489,37.62765,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,13.060259,5.6736692,0.33802563,0,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,0,159.3,3158.216
-1955,2.043,1.1911855,209.71603,3.614111,39.21455,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,13.553179,5.9717491,0.34706557,0,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,0,160.014,3180.749
-1956,2.178,1.2446883,214.86753,3.6706801,40.801451,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,14.068475,6.2855162,0.35822365,0,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,0,160.748,3204.498
-1957,2.27,1.2718718,220.01902,3.7267318,42.388351,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,14.599262,6.6157969,0.37150001,0,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,0,161.502,3229.071
-1958,2.33,1.3195817,225.17052,3.7849451,43.975252,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,15.138652,6.9634615,0.38689499,0,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,0,162.277,3254.039
-1959,2.462,1.2035957,230.32202,3.8480013,45.562152,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,15.679758,7.3294266,0.40440867,0,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,0,163.073,3278.967
-1960,2.577,1.1922833,235.47352,3.9185827,47.149053,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,16.215694,7.7146508,0.42404135,0,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,0,163.892,3303.389
-1961,2.594,1.2443218,238.52217,4.0240052,48.77076,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,16.759267,8.1201607,0.4457932,0,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,0,164.735,3326.864
-1962,2.7,1.2355717,241.57083,4.1836477,50.392468,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,17.326046,8.5470132,0.46966444,0,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,0,165.601,3349.069
-1963,2.848,1.2442947,244.61948,4.3883117,52.014176,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,17.913289,14.984956,0.49565531,0,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.001,0.007,166.493,3369.713
-1964,3.008,1.2515879,247.66813,4.6374693,53.635884,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,18.518251,13.488099,0.52376596,0,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.002,0.003,0.014,167.41,3388.628
-1965,3.145,1.2642558,250.71679,4.8968181,55.257592,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,19.138189,13.488369,0.55399667,0,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.005,0.028,168.355,3405.698
-1966,3.305,1.2936968,253.76544,5.195583,56.8793,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,19.770361,13.488639,0.58634761,0,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.008,0.048,169.328,3420.923
-1967,3.411,1.2976254,256.81409,5.457478,58.501008,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,20.412021,13.488909,0.62081899,0,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.013,0.075,170.329,3434.335
-1968,3.588,1.2352028,259.86274,5.619744,60.122716,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,21.060427,13.48918,0.65741104,0,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.019,0.016,0.109,171.36,3446.065
-1969,3.8,1.2383879,262.9114,5.784831,61.744424,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,21.712835,13.489449,0.69612398,0,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.026,0.024,0.15,172.423,3456.224
-1970,4.076,1.1971129,265.96005,5.9368752,63.366132,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,22.366503,11.992564,0.73695798,0,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.035,0.043,0.197,173.518,3464.95
-1971,4.231,1.0708913,270.02505,5.6049759,63.545863,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,23.042459,13.489967,0.7799133,0,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.044,0.1,0.252,174.646,3472.409
-1972,4.399,1.0470621,274.09004,5.9181309,63.725594,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,23.75562,13.490244,0.82499011,0,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.055,0.17,0.313,175.809,3478.741
-1973,4.6349999,1.0330987,278.15504,6.0449043,63.905326,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,24.494072,13.490523,0.87218868,0,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.067,0.277,0.391,177.007,3484.114
-1974,4.644,1.0387371,282.22003,5.9406002,64.085057,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,25.2459,11.993645,0.9215092,0,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.08,0.372,0.468,178.243,3488.632
-1975,4.615,1.0315876,286.28503,6.1409693,64.264788,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,25.999188,13.49105,0.97295172,0,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.095,0.524,0.544,179.517,3492.425
-1976,4.883,1.0906077,290.35002,6.3042588,64.444519,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,26.742024,13.491328,1.0265167,0,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.11,0.783,0.621,180.83,3495.619
-1977,5.029,1.0939874,294.41502,6.534405,64.624251,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,27.462492,11.994452,1.0822044,0,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,0.127,1.006,0.697,182.185,3498.281
-1978,5.105,1.09037,298.48002,6.6193729,64.803982,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,28.148677,13.491857,1.1400146,0,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,0.145,1.253,0.774,183.581,3500.505
-1979,5.387,1.0647127,302.54501,7.007773,64.983713,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,28.788664,11.994981,1.1999481,0,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,0.161,1.548,0.85,185.022,3502.36
-1980,5.332,1.0252096,306.61001,7.0613923,65.163444,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,29.37054,13.492387,1.2620043,0,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,0.185,1.805,0.927,186.506,3503.915
-1981,5.168,1.0448621,310.01251,6.8417522,65.043883,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,29.931853,11.995499,1.3261846,0,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,0.206,2.139,1.003,188.038,3505.193
-1982,5.127,1.1904055,313.415,7.1189858,64.924321,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,30.508393,13.492893,1.392488,0,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,0.229,2.645,1.105,189.616,3506.255
-1983,5.11,1.2255201,316.8175,7.2168971,64.80476,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,31.085608,11.996004,1.4609153,0,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,0.249,2.98,1.183,191.243,3507.154
-1984,5.29,1.2600833,320.22,7.0481314,64.685199,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,31.648945,11.996242,1.5314669,0,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,0.269,3.475,1.262,192.92,3507.882
-1985,5.444,1.2753449,323.6225,7.0169243,64.565637,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,32.183851,11.99648,1.6041426,0,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,0.289,3.997,1.355,194.648,3508.496
-1986,5.61,1.2872023,327.025,7.0704917,64.446076,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,32.675774,13.493874,1.678943,0,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,0.309,4.579,1.434,196.427,3508.999
-1987,5.753,1.2940086,330.42749,7.4616728,64.326514,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,33.110161,11.996986,1.7558675,0,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,0.329,5.109,1.504,198.259,3509.425
-1988,5.964,1.3167248,333.82999,7.2025077,64.206953,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,33.472458,11.997224,1.8349176,0,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,0.349,5.696,1.728,200.146,3509.774
-1989,6.089,1.3236436,337.23249,7.3310397,64.087391,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,33.748114,11.997462,1.9160924,0,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,0.369,5.482,1.73,202.087,3510.061
-1990,6.15,1.45,312.24363,6.134052909,63.94845233,63948.45233,1045.747123,166.2503538,34.76423987,7.7158575,35.019969,33.922575,11.997683,2.0735678,0,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,7.772662322,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,0.389,5.119,1.73,204.082,3510.299
-1991,6.24,1.65,314.57878,6.027936715,62.63000983,62630.00983,1021.791172,174.6872556,34.05798125,7.7247518,35.072322,34.026024,11.997905,2.3729101,0,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,8.143820543,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,0.409,4.094,1.735,206.133,3510.501
-1992,6.18,1.69,321.95179,6.354227086,60.54027123,60540.27123,1174.203779,182.6468576,36.14417806,7.733646,35.124675,34.113528,11.998111,2.3731469,0,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,8.146355176,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,0.429,2.74,1.715,208.24,3510.656
-1993,6.17,1.56,306.48785,5.905312006,59.44097347,59440.97347,934.8376133,159.6833476,34.71270069,7.7425403,35.177028,34.207861,11.998354,2.3733837,0,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,8.886367317,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,0.509,3.344,1.7,210.402,3510.801
-1994,6.28,1.52,311.05344,6.018185775,58.34323322,58343.23322,977.620746,169.0259706,34.8193501,7.7514345,35.229381,34.331799,11.998587,2.3736205,0,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,7.045438793,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,0.589,4.75,1.68,212.619,3510.907
-1995,6.42,1.5,309.28838,6.118040582,57.18625984,57186.25984,930.1040543,157.4351743,35.28733501,7.7603288,35.281735,34.508115,10.501674,2.3738573,0,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,8.522582663,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,0.669,3.991,1.3,200.199,3511.005
-1996,6.55,1.48,309.40561,6.216000677,56.9295967,56929.5967,916.9780098,155.3429045,35.41694838,7.769223,35.334088,34.960533,11.999071,2.3740941,0,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,8.525232603,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,0.729,2.691,0.85,201.834,3511.082
-1997,6.66,1.46,340.52374,6.621938328,56.37686085,56376.86085,1232.705791,215.9517079,36.29135245,7.7781173,35.386441,35.833672,11.999322,2.3743309,0,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,6.315450159,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,0.789,2.594,0.7,207.696,3511.082
-1998,6.64,1.45,315.33019,6.431857113,55.41683344,55416.83344,1044.935423,167.0161442,36.94172282,7.7870115,35.438794,37.03165,11.999575,2.3745677,0,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,6.686147436,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,0.607,2.491,0.71,206.946,3511.082
-1999,6.58,1.41,307.0371,6.086869535,53.39588818,53395.88818,878.188349,152.6935046,35.06501461,7.7959058,35.491147,38.458587,10.502692,2.3748045,0,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,8.900653788,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,0.467,2.39,0.631,195.938,3511.082
-2000,6.75,1.43,306.55951,6.038559807,53.49686408,53496.86408,826.8782349,148.4220392,34.98132448,7.8048,35.5435,40.0186,12.0001,2.3749,0.4624,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,7.797202632,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,0.328,2.295,0.562,186.206,3511.082
-2001,6.91,1.24,312.08683,6.129975798,53.49591539,53495.91539,857.7293622,152.8746022,34.9512431,7.8945,35.7143,40.3916,11.925,2.4345,0.4651,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,8.023592105,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,0.282,2.209,0.5,181.525,3511.082
-2002,6.98,1.07,321.52222,7.505797897,52.81223964,52812.23964,924.1843932,167.8804808,35.57523405,7.9842,35.8845,40.7646,11.8481,2.4915,0.4058,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,8.2497,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,0.235,2.131,0.445,181.887,3511.082
-2003,7.4,1.04,323.20905,7.441176389,53.9771379,53977.1379,862.2987803,158.3399477,35.93829745,8.0734,36.0543,41.1378,11.7693,2.5463,0.3939,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,8.475667105,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,0.189,2.057,0.396,177.539,3511.082
-2004,7.78,1.02,335.14109,7.599588834,55.90222428,55902.22428,891.6340178,162.9481049,37.13635494,8.1623,36.2232,41.5107,11.6885,2.599,0.4062,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,8.701493421,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,0.189,1.987,0.353,174.26,3511.082
-2005,8.09,1,344.36065,7.738554605,57.82782981,57827.82981,933.7838151,165.7587692,38.1765176,8.2512,36.3917,41.8837,11.6059,2.6494,0.4358,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,8.927038158,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,0.189,1.92,0.314,168.841,3511.082
-2006,8.35,1,366.48763,8.115002364,59.8411166,59841.1166,1079.290248,186.3263289,40.33918303,8.2245,35.9952,41.9902,11.411,2.5813,0.4427,10.5529,12.3831,3.8803,14.4509,121.0746,12.7893,5.1614,31.23,9.110346053,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,0.049,1.834,0.279,167.857,3511.082
-2007,8.54,0.95,373.73371,8.466194586,61.87337061,61873.37061,1170.403866,181.4418987,43.37854879,8.1977,35.598,42.0965,11.2139,2.5131,0.4492,10.2947,13.7731,4.5246,15.1335,129.6223,13.1314,5.4292,35.5714,9.293935526,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,0.049,1.752,0.249,167.857,3511.082
-2008,8.75,0.94,377.84872,8.083834635,63.67667801,63676.67801,957.077906,168.5070723,41.21442833,8.1708667,35.199467,42.202733,11.012133,2.4452667,0.45503333,10.037233,15.162767,5.1677,15.798,133.99193,13.4753,5.6901667,39.912933,8.850026316,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,0.049,1.675,0.221,167.857,3511.082
-2009,8.775,0.8,359.79936,8.611917318,58.02,58020,1058.418953,196.2685362,40.41721417,8.1440333,34.800933,42.308967,14.4110665,2.45763335,0.46086667,9.7797667,16.552433,5.8108,12.069,190.380965,6.73765,2.84508335,44.254467,7.920013158,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,0.049,1.601,0.197,167.857,3511.082
-2010,8.8,0.66,341.75,9.14,59.34,59340,1159.76,224.03,39.62,8.1172,34.4024,42.4152,17.81,2.47,0.4667,9.5223,17.9421,6.4539,8.34,246.77,0,0,48.596,6.99,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,0,1.521,0.175,167.857,3511.082
diff --git a/inst/shinyApp/www/input/emissions/volcanic_RF.csv b/inst/shinyApp/www/input/emissions/volcanic_RF.csv
deleted file mode 100644
index a260f5f..0000000
--- a/inst/shinyApp/www/input/emissions/volcanic_RF.csv
+++ /dev/null
@@ -1,739 +0,0 @@
-; Annual mean volcanic stratospheric aerosol forcing (W/m2),
-; M. Meinshausen S. Smith et al. (2011) The RCP GHG concentrations and their extension from 1765 to 2300 DOI 10.1007/s10584-011-0156-z Climatic Change.,
-Date,SV
-1765,0
-1766,0.11622211
-1767,0.23244422
-1768,0.19744422
-1769,0.13181922
-1770,0.12744422
-1771,0.17994422
-1772,0.21494422
-1773,0.22806922
-1774,0.23244422
-1775,0.23244422
-1776,0.23244422
-1777,0.23244422
-1778,0.23244422
-1779,0.23244422
-1780,0.23244422
-1781,0.23244422
-1782,0.21056922
-1783,0.11869422
-1784,0.044319219
-1785,0.10119422
-1786,0.18869422
-1787,0.22369422
-1788,0.22806922
-1789,0.12306922
-1790,-0.025680781
-1791,0.009319219
-1792,0.14056922
-1793,0.20619422
-1794,0.21494422
-1795,0.19306922
-1796,0.18869422
-1797,0.21056922
-1798,0.22806922
-1799,0.23244422
-1800,0.23244422
-1801,0.23244422
-1802,0.23244422
-1803,0.23244422
-1804,0.23244422
-1805,0.23244422
-1806,0.23244422
-1807,0.23244422
-1808,-0.25755578
-1809,-1.3994308
-1810,-1.8019308
-1811,-1.0100558
-1812,-0.34068078
-1813,-0.14818078
-1814,-0.67755578
-1815,-2.1519308
-1816,-2.6638058
-1817,-1.4956808
-1818,-0.36255578
-1819,0.092444219
-1820,0.22369422
-1821,0.23244422
-1822,0.23244422
-1823,0.23244422
-1824,0.23244422
-1825,0.23244422
-1826,0.23244422
-1827,0.23244422
-1828,0.22806922
-1829,0.19306922
-1830,-0.021305781
-1831,-0.39755578
-1832,-0.48505578
-1833,-0.18318078
-1834,-0.34505578
-1835,-0.98818078
-1836,-0.94880578
-1837,-0.34943078
-1838,0.044319219
-1839,0.17994422
-1840,0.17994422
-1841,0.17556922
-1842,0.18869422
-1843,0.16681922
-1844,0.15369422
-1845,0.18431922
-1846,0.21494422
-1847,0.22806922
-1848,0.23244422
-1849,0.21599422
-1850,0.19200464
-1851,0.19303276
-1852,0.20879734
-1853,0.2235338
-1854,0.2317588
-1855,0.10118693
-1856,-0.35667141
-1857,-0.61027557
-1858,-0.29772557
-1859,0.028190052
-1860,0.15053693
-1861,0.13957026
-1862,0.05526401
-1863,0.06760151
-1864,0.15087964
-1865,0.19851609
-1866,0.21907859
-1867,0.22901714
-1868,0.23107339
-1869,0.22284839
-1870,0.21873589
-1871,0.2194213
-1872,0.2070838
-1873,0.19337547
-1874,0.20125776
-1875,0.19406089
-1876,0.15293589
-1877,0.14848068
-1878,0.18035255
-1879,0.20194318
-1880,0.21565151
-1881,0.22284839
-1882,0.11112547
-1883,-0.80253495
-1884,-1.5373016
-1885,-0.94407349
-1886,-0.44851724
-1887,-0.32137245
-1888,-0.21102036
-1889,-0.27750578
-1890,-0.3316537
-1891,-0.2617412
-1892,-0.087645365
-1893,0.060061927
-1894,0.16938589
-1895,0.1618463
-1896,0.016537969
-1897,-0.064683906
-1898,0.037785885
-1899,0.15053693
-1900,0.20194318
-1901,0.19166193
-1902,-0.25694328
-1903,-0.65105786
-1904,-0.3563287
-1905,0.002144219
-1906,0.1001588
-1907,0.076169219
-1908,0.087821302
-1909,0.15396401
-1910,0.18892026
-1911,0.19508901
-1912,-0.048576615
-1913,-0.15652974
-1914,0.055606719
-1915,0.15944734
-1916,0.18754943
-1917,0.19611714
-1918,0.20194318
-1919,0.1947463
-1920,0.11078276
-1921,0.095703594
-1922,0.18103797
-1923,0.20228589
-1924,0.18926297
-1925,0.18926297
-1926,0.19714526
-1927,0.19508901
-1928,0.14573901
-1929,0.096046302
-1930,0.12174943
-1931,0.14642443
-1932,0.11489526
-1933,0.12380568
-1934,0.16218901
-1935,0.16938589
-1936,0.18069526
-1937,0.17932443
-1938,0.16321714
-1939,0.16390255
-1940,0.18377964
-1941,0.19303276
-1942,0.17144214
-1943,0.16630151
-1944,0.18926297
-1945,0.19988693
-1946,0.2070838
-1947,0.1988588
-1948,0.19680255
-1949,0.18926297
-1950,0.18686401
-1951,0.1906338
-1952,0.18446505
-1953,0.17555464
-1954,0.18069526
-1955,0.2029713
-1956,0.2153088
-1957,0.22559005
-1958,0.23073068
-1959,0.22696089
-1960,0.15190776
-1961,0.060747344
-1962,-0.013963073
-1963,-0.49546828
-1964,-0.85325578
-1965,-0.53248078
-1966,-0.15001828
-1967,-0.021502656
-1968,-0.22027349
-1969,-0.29635474
-1970,-0.055430781
-1971,0.11420984
-1972,0.15327859
-1973,0.10632755
-1974,-0.040694323
-1975,-0.14110786
-1976,-0.017390156
-1977,0.13408693
-1978,0.10906922
-1979,0.093990052
-1980,0.14813797
-1981,0.079596302
-1982,-0.59142661
-1983,-0.87621724
-1984,-0.32000161
-1985,-0.023216198
-1986,0.035044219
-1987,0.065887969
-1988,0.10598484
-1989,0.12928901
-1990,0.12654734
-1991,-0.81487245
-1992,-1.4197527
-1993,-0.68190161
-1994,-0.13151203
-1995,0.058691094
-1996,0.12380568
-1997,0.15327859
-1998,0.18754943
-1999,0.21633693
-2000,0.22867443
-2001,0.23244422
-2002,0.23244422
-2003,0.23244422
-2004,0.23244422
-2005,0.18401834
-2006,0.06779623
-2007,0
-2008,0
-2009,0
-2010,0
-2011,0
-2012,0
-2013,0
-2014,0
-2015,0
-2016,0
-2017,0
-2018,0
-2019,0
-2020,0
-2021,0
-2022,0
-2023,0
-2024,0
-2025,0
-2026,0
-2027,0
-2028,0
-2029,0
-2030,0
-2031,0
-2032,0
-2033,0
-2034,0
-2035,0
-2036,0
-2037,0
-2038,0
-2039,0
-2040,0
-2041,0
-2042,0
-2043,0
-2044,0
-2045,0
-2046,0
-2047,0
-2048,0
-2049,0
-2050,0
-2051,0
-2052,0
-2053,0
-2054,0
-2055,0
-2056,0
-2057,0
-2058,0
-2059,0
-2060,0
-2061,0
-2062,0
-2063,0
-2064,0
-2065,0
-2066,0
-2067,0
-2068,0
-2069,0
-2070,0
-2071,0
-2072,0
-2073,0
-2074,0
-2075,0
-2076,0
-2077,0
-2078,0
-2079,0
-2080,0
-2081,0
-2082,0
-2083,0
-2084,0
-2085,0
-2086,0
-2087,0
-2088,0
-2089,0
-2090,0
-2091,0
-2092,0
-2093,0
-2094,0
-2095,0
-2096,0
-2097,0
-2098,0
-2099,0
-2100,0
-2101,0
-2102,0
-2103,0
-2104,0
-2105,0
-2106,0
-2107,0
-2108,0
-2109,0
-2110,0
-2111,0
-2112,0
-2113,0
-2114,0
-2115,0
-2116,0
-2117,0
-2118,0
-2119,0
-2120,0
-2121,0
-2122,0
-2123,0
-2124,0
-2125,0
-2126,0
-2127,0
-2128,0
-2129,0
-2130,0
-2131,0
-2132,0
-2133,0
-2134,0
-2135,0
-2136,0
-2137,0
-2138,0
-2139,0
-2140,0
-2141,0
-2142,0
-2143,0
-2144,0
-2145,0
-2146,0
-2147,0
-2148,0
-2149,0
-2150,0
-2151,0
-2152,0
-2153,0
-2154,0
-2155,0
-2156,0
-2157,0
-2158,0
-2159,0
-2160,0
-2161,0
-2162,0
-2163,0
-2164,0
-2165,0
-2166,0
-2167,0
-2168,0
-2169,0
-2170,0
-2171,0
-2172,0
-2173,0
-2174,0
-2175,0
-2176,0
-2177,0
-2178,0
-2179,0
-2180,0
-2181,0
-2182,0
-2183,0
-2184,0
-2185,0
-2186,0
-2187,0
-2188,0
-2189,0
-2190,0
-2191,0
-2192,0
-2193,0
-2194,0
-2195,0
-2196,0
-2197,0
-2198,0
-2199,0
-2200,0
-2201,0
-2202,0
-2203,0
-2204,0
-2205,0
-2206,0
-2207,0
-2208,0
-2209,0
-2210,0
-2211,0
-2212,0
-2213,0
-2214,0
-2215,0
-2216,0
-2217,0
-2218,0
-2219,0
-2220,0
-2221,0
-2222,0
-2223,0
-2224,0
-2225,0
-2226,0
-2227,0
-2228,0
-2229,0
-2230,0
-2231,0
-2232,0
-2233,0
-2234,0
-2235,0
-2236,0
-2237,0
-2238,0
-2239,0
-2240,0
-2241,0
-2242,0
-2243,0
-2244,0
-2245,0
-2246,0
-2247,0
-2248,0
-2249,0
-2250,0
-2251,0
-2252,0
-2253,0
-2254,0
-2255,0
-2256,0
-2257,0
-2258,0
-2259,0
-2260,0
-2261,0
-2262,0
-2263,0
-2264,0
-2265,0
-2266,0
-2267,0
-2268,0
-2269,0
-2270,0
-2271,0
-2272,0
-2273,0
-2274,0
-2275,0
-2276,0
-2277,0
-2278,0
-2279,0
-2280,0
-2281,0
-2282,0
-2283,0
-2284,0
-2285,0
-2286,0
-2287,0
-2288,0
-2289,0
-2290,0
-2291,0
-2292,0
-2293,0
-2294,0
-2295,0
-2296,0
-2297,0
-2298,0
-2299,0
-2300,0
-2301,0
-2302,0
-2303,0
-2304,0
-2305,0
-2306,0
-2307,0
-2308,0
-2309,0
-2310,0
-2311,0
-2312,0
-2313,0
-2314,0
-2315,0
-2316,0
-2317,0
-2318,0
-2319,0
-2320,0
-2321,0
-2322,0
-2323,0
-2324,0
-2325,0
-2326,0
-2327,0
-2328,0
-2329,0
-2330,0
-2331,0
-2332,0
-2333,0
-2334,0
-2335,0
-2336,0
-2337,0
-2338,0
-2339,0
-2340,0
-2341,0
-2342,0
-2343,0
-2344,0
-2345,0
-2346,0
-2347,0
-2348,0
-2349,0
-2350,0
-2351,0
-2352,0
-2353,0
-2354,0
-2355,0
-2356,0
-2357,0
-2358,0
-2359,0
-2360,0
-2361,0
-2362,0
-2363,0
-2364,0
-2365,0
-2366,0
-2367,0
-2368,0
-2369,0
-2370,0
-2371,0
-2372,0
-2373,0
-2374,0
-2375,0
-2376,0
-2377,0
-2378,0
-2379,0
-2380,0
-2381,0
-2382,0
-2383,0
-2384,0
-2385,0
-2386,0
-2387,0
-2388,0
-2389,0
-2390,0
-2391,0
-2392,0
-2393,0
-2394,0
-2395,0
-2396,0
-2397,0
-2398,0
-2399,0
-2400,0
-2401,0
-2402,0
-2403,0
-2404,0
-2405,0
-2406,0
-2407,0
-2408,0
-2409,0
-2410,0
-2411,0
-2412,0
-2413,0
-2414,0
-2415,0
-2416,0
-2417,0
-2418,0
-2419,0
-2420,0
-2421,0
-2422,0
-2423,0
-2424,0
-2425,0
-2426,0
-2427,0
-2428,0
-2429,0
-2430,0
-2431,0
-2432,0
-2433,0
-2434,0
-2435,0
-2436,0
-2437,0
-2438,0
-2439,0
-2440,0
-2441,0
-2442,0
-2443,0
-2444,0
-2445,0
-2446,0
-2447,0
-2448,0
-2449,0
-2450,0
-2451,0
-2452,0
-2453,0
-2454,0
-2455,0
-2456,0
-2457,0
-2458,0
-2459,0
-2460,0
-2461,0
-2462,0
-2463,0
-2464,0
-2465,0
-2466,0
-2467,0
-2468,0
-2469,0
-2470,0
-2471,0
-2472,0
-2473,0
-2474,0
-2475,0
-2476,0
-2477,0
-2478,0
-2479,0
-2480,0
-2481,0
-2482,0
-2483,0
-2484,0
-2485,0
-2486,0
-2487,0
-2488,0
-2489,0
-2490,0
-2491,0
-2492,0
-2493,0
-2494,0
-2495,0
-2496,0
-2497,0
-2498,0
-2499,0
-2500,0
diff --git a/inst/shinyApp/www/input/hector-gcam.ini b/inst/shinyApp/www/input/hector-gcam.ini
deleted file mode 100644
index 9dfa294..0000000
--- a/inst/shinyApp/www/input/hector-gcam.ini
+++ /dev/null
@@ -1,320 +0,0 @@
-;;;; Config file for hector model
-;;;
-;;; The file paths in this configuration assume that gcam is running
-;;; in the exe/ directory of the GCAM installation. The
-;;; gcam_emissions.csv file contains emissions for just the historical
-;;; period (up through 2010). This file should be used for any
-;;; component for which GCAM will be providing emissions. Components
-;;; for which GCAM will not be providing emissions should be pointed
-;;; at an emissions file that has emissions at least through the end
-;;; of the GCAM run. Currently we're using the RCP45 input file, but
-;;; you could use any input that seems appropriate.
-;;;
-;;; Most of the hector configuration happens in this file. The XML
-;;; inputs only specify the configuration for the GCAM hector
-;;; component. For details on how to set hector's internal
-;;; parameters, consult the hector users' manual.
-;;;
-;;; Finally, note that any component parameters set in this input file
-;;; can in principle be made to be settable through the core messaging
-;;; interface. Such conversions are relatively easy to make, should
-;;; the need arise.
-;;;
-[core]
-run_name=gcam
-startDate=1745
-endDate=2100
-do_spinup=1 ; if 1, spin up model before running (default=1)
-max_spinup=5000 ; maximum steps allowed for spinup (default=2000)
-
-[onelineocean]
-enabled=0 ; putting 'enabled=0' will disable any component
-
-[ocean]
-enabled=1 ; putting 'enabled=0' will disable any component
-spinup_chem=0 ; run surface chemistry during spinup phase?
-
-tt = 72000000 ; 7.2e7 thermohaline circulation, m3/s
-tu = 49000000 ; 4.9e7 high latitude overturning, m3/s
-twi = 12500000 ; 1.25e7 warm-intermediate exchange, m3/s
-tid = 200000000 ; 2.0e8 intermediate-deep exchange, m3/s
-
-[simpleNbox]
-; Initial (preindustrial) carbon pools
-atmos_c=588.071 ; Pg C in CO2, from Murakami (2010)
-
-; If using biomes (e.g. boreal.veg_c ) must have data for all pools*biomes
-veg_c=550 ; Pg C
-detritus_c=55 ; Pg C
-soil_c=1782 ; Pg C 2000
-
-; Initial (preindustrial) carbon fluxes
-npp_flux0=50.0 ; Preindustrial NPP, Pg C/yr
-; Partitioning parameters
-f_nppv=0.35 ; Fraction of NPP to vegetation
-f_nppd=0.60 ; Fraction of NPP to detritus
-f_litterd=0.98 ; Fraction of litter to detritus
-f_lucv=0.1 ; Fraction of land use change flux from vegetation
-f_lucd=0.01 ; Fraction of land use change flux from detritus
-
-; Anthropogenic contributions: direct emissions, Pg (or Gt) C/yr
-ffi_emissions=csv:../input/climate/gcam_emissions.csv ; historical emissions data only. Future emissions will be provided by GCAM
-
-; Anthropogenic contributions: land use change
-luc_emissions=csv:../input/climate/gcam_emissions.csv
-
-; CO2 and temperature effects on the carbon cycle
-; these are global values, can optionally specify biome-specific ones as above
-beta=0.36 ; 0.36=about +20% @2xCO2
-q10_rh=2.0 ; respiration response Q10, unitless
-
-; Optional biome-specific warming factors
-; by default, assume 1.0 (i.e., warms as fast as the globe)
-;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally
-
-; Albedo effect, in W/m2. The model assumes a constant value if nothing specified
-Ftalbedo[1750]=0.0
-Ftalbedo[1950]=-0.2
-
-[carbon-cycle-solver]
-eps_abs=1.0e-6 ; solution tolerances
-eps_rel=1.0e-6
-dt=0.25 ; default time step
-eps_spinup=0.001 ; spinup tolerance (drift), Pg C yr-1
-
-[so2]
-S0= 53841.2 ; historical sulphate from year 2000 (Ggrams)
-SN=42000 ; natural sulfur emissions (Ggrams)
-SO2_emissions = csv:../input/climate/gcam_emissions.csv
-;SV = csv:../input/climate/volcanic_RF.csv
-
-[CH4]
-enabled=1
-M0 = 653 ;721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1
-Tsoil = 160 ; CH4 loss to soil (years)
-Tstrat = 120 ; CH4 loss to stratosphere (years)
-UC_CH4 = 2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations
-CH4N = 300 ; Natural CH4 emissions (Ggrams)
-
-CH4_emissions=csv:../input/climate/gcam_emissions.csv ; concentration time series
-
-[OH]
-enabled=1
-NOX_emissions=csv:../input/climate/gcam_emissions.csv ; emissions time series
-CO_emissions=csv:../input/climate/gcam_emissions.csv ; emissions time series
-NMVOC_emissions=csv:../input/climate/gcam_emissions.csv ; emissions time series
-
-TOH0 = 6.6 ; inital OH lifetime (years)
-CNOX = 0.0042 ; coefficent for NOX
-CCO = -0.000105 ; coefficent for CO
-CNMVOC = -0.000315 ; coefficent for NMVOC
-CCH4 = -0.32 ; coefficent for CH4
-
-[ozone]
-enabled=1
-PO3=30.0 ; preindustrial O3 concentration
-NOX_emissions=csv:../input/climate/gcam_emissions.csv ; emissions time series
-CO_emissions=csv:../input/climate/gcam_emissions.csv ; emissions time series
-NMVOC_emissions=csv:../input/climate/gcam_emissions.csv ; emissions time series
-
-[N2O]
-enabled=1
-N0=272.9596 ; preindustrial nitrous oxide, ppbv
-UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations
-TN2O0=132 ; initial lifetime of N2O, years
-
-N2O_natural_emissions[1765] = 11 ; natural emissions in 1765, TgN
-N2O_natural_emissions[2000] = 8 ; natural emissions in 2000, TgN
-N2O_natural_emissions[2300] = 8 ; natural emissions in 2300, TgN
-
-N2O_emissions=csv:../input/climate/gcam_emissions.csv ; emissions time series
-
-
-[forcing]
-baseyear=1750 ; when to start reporting; by definition, all F=0 in this year
-
-[temperature]
-enabled=1
-
-S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC
-diff=2.3 ; ocean heat diffusivity, cm2/s
-alpha=1.0 ; scaling factor for aerosol forcing
-volscl=1.0 ; scaling factor for volcanic forcing
-; Optional global temperature constraint
-; If supplied, the model will use these data, ignoring what it calculates
-; tgav_constrain=csv:constraints/tgav_historical.csv
-
-[bc]
-BC_emissions=csv:../input/climate/gcam_emissions.csv
-
-[oc]
-OC_emissions=csv:../input/climate/gcam_emissions.csv
-
-; --------------------------------------------------------------------------
-; Halocarbons in kt/yr
-; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14)
-; Concentration (ppt) data from: http://www.pik-potsdam.de/~mmalte/rcps/
-
-[CF4_halocarbon]
-tau = 50000.0 ; lifetime in years
-rho = 0.00008 ; radiative efficiencies W/m2/ppt
-H0=35.0,pptv ; preindustrial concentration, pptv
-CF4_emissions = csv:../input/climate/gcam_emissions.csv
-molarMass=88.0043 ; grams
-
-[C2F6_halocarbon]
-tau= 10000.0
-rho= 0.00026
-C2F6_emissions = csv:../input/climate/gcam_emissions.csv
-molarMass=138.01
-
-[HFC23_halocarbon]
-; GCAM folds these emissions into HFC143a
-enabled=0
-tau= 270.0
-rho= 0.00019
-HFC23_emissions = csv:../input/climate/RCP45_emissions.csv
-molarMass=70.0
-
-[HFC32_halocarbon]
-; GCAM folds these emissions into HFC245fa.
-enabled=0
-tau= 4.9
-rho= 0.00011
-HFC32_emissions = csv:../input/climate/RCP45_emissions.csv
-molarMass=52.0
-
-
-[HFC4310_halocarbon]
-tau= 15.9
-rho= 0.0004
-HFC4310_emissions = csv:../input/climate/RCP45_emissions.csv
-molarMass=252.0
-
-[HFC125_halocarbon]
-tau= 29.0
-rho= 0.00023
-HFC125_emissions = csv:../input/climate/gcam_emissions.csv
-molarMass=120.02
-
-[HFC134a_halocarbon]
-tau= 14.0
-rho= 0.00016
-HFC134a_emissions = csv:../input/climate/gcam_emissions.csv
-molarMass=102.02
-
-[HFC143a_halocarbon]
-tau= 52.0
-rho= 0.00013
-HFC143a_emissions = csv:../input/climate/RCP45_emissions.csv
-molarMass=84.04
-
-[HFC227ea_halocarbon]
-tau= 34.2
-rho= 0.00026
-HFC227ea_emissions = csv:../input/climate/RCP45_emissions.csv
-molarMass=170.03
-
-[HFC245fa_halocarbon]
-tau= 7.6
-rho= 0.00028
-HFC245fa_emissions = csv:../input/climate/gcam_emissions.csv
-molarMass=134.0
-
-[SF6_halocarbon]
-tau= 3200.0
-rho= 0.00052
-SF6_emissions= csv:../input/climate/gcam_emissions.csv
-molarMass=146.06
-
-[CFC11_halocarbon]
-tau= 45.0
-rho= 0.00025
-CFC11_emissions= csv:../input/climate/RCP45_emissions.csv
-molarMass=137.35
-
-[CFC12_halocarbon]
-tau= 100
-rho= 0.00032
-CFC12_emissions= csv:../input/climate/RCP45_emissions.csv
-molarMass=120.9
-
-[CFC113_halocarbon]
-tau= 85.0
-rho= 0.0003
-CFC113_emissions= csv:../input/climate/RCP45_emissions.csv
-molarMass=187.35
-
-[CFC114_halocarbon]
-tau= 300
-rho= 0.00031
-CFC114_emissions= csv:../input/climate/RCP45_emissions.csv
-molarMass=170.9
-
-[CFC115_halocarbon]
-tau= 1700
-rho= 0.00018
-CFC115_emissions= csv:../input/climate/RCP45_emissions.csv
-molarMass=154.45
-
-[CCl4_halocarbon]
-tau= 26.0
-rho= 0.00013
-CCl4_emissions= csv:../input/climate/RCP45_emissions.csv
-molarMass=153.8
-
-[CH3CCl3_halocarbon]
-tau= 5.0
-rho= 0.00006
-CH3CCl3_emissions= csv:../input/climate/RCP45_emissions.csv
-molarMass=133.35
-
-[halon1211_halocarbon]
-tau= 16.0
-rho= 0.00003
-halon1211_emissions= csv:../input/climate/RCP45_emissions.csv
-molarMass=165.35
-
-[halon1301_halocarbon]
-tau= 65.0
-rho= 0.00032
-halon1301_emissions= csv:../input/climate/RCP45_emissions.csv
-molarMass=148.9
-
-[halon2402_halocarbon]
-tau= 20.0
-rho= 0.00033
-halon2402_emissions= csv:../input/climate/RCP45_emissions.csv
-molarMass=259.8
-
-[HCF22_halocarbon]
-tau= 12.0
-rho= 0.0002
-HCF22_emissions= csv:../input/climate/RCP45_emissions.csv
-molarMass=86.45
-
-[HCF141b_halocarbon]
-tau= 9.3
-rho= 0.00014
-HCF141b_emissions= csv:../input/climate/RCP45_emissions.csv
-molarMass=116.9
-
-[HCF142b_halocarbon]
-tau= 17.9
-rho= 0.0002
-HCF142b_emissions= csv:../input/climate/RCP45_emissions.csv
-molarMass=100.45
-
-[CH3Cl_halocarbon]
-tau= 1.3
-rho= 0.00001
-H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL
-CH3Cl_emissions= csv:../input/climate/RCP45_emissions.csv
-molarMass=50.45
-
-[CH3Br_halocarbon]
-tau= 0.7
-rho= 0.00001
-H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR
-CH3Br_emissions= csv:../input/climate/RCP45_emissions.csv
-molarMass=94.9
diff --git a/inst/shinyApp/www/input/hector_rcp26.ini b/inst/shinyApp/www/input/hector_rcp26.ini
deleted file mode 100644
index 0c41779..0000000
--- a/inst/shinyApp/www/input/hector_rcp26.ini
+++ /dev/null
@@ -1,388 +0,0 @@
-; Config file for hector model: RCP26
-;------------------------------------------------------------------------
-[core]
-run_name=rcp26
-startDate=1745
-endDate=2300
-do_spinup=1 ; if 1, spin up model before running (default=1)
-max_spinup=2000 ; maximum steps allowed for spinup (default=2000)
-
-;------------------------------------------------------------------------
-[onelineocean]
-enabled=0 ; 'enabled=0' will disable any component
-;output=0 ; 'output=0' will disable any component's output
-ocean_c=38000 ; Pg C
-
-;------------------------------------------------------------------------
-[ocean]
-enabled=1 ; putting 'enabled=0' will disable any component
-spinup_chem=0 ; run surface chemistry during spinup phase?
-;carbon_HL=145 ; high latitude, Pg C
-;carbon_LL=750 ; low latitude, Pg C
-;carbon_IO=10040 ; intermediate, Pg C
-;carbon_DO=27070 ; deep, Pg C
-
-tt=72000000 ; 7.2e7 thermohaline circulation, m3/s
-tu=49000000 ; 4.9e7 high latitude overturning, m3/s
-twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s
-tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s
-
-; Optional ocean C uptake constraint, Pg C/yr
-; If supplied, the model will use these data, ignoring what it calculates
-;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv
-
-;------------------------------------------------------------------------
-[simpleNbox]
-; Initial (preindustrial) carbon pools and fluxes
-; These are generally consistent with reconstructed (Siegenthaler and Oeschger
-; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008,
-; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values.
-
-; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes
-atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010)
-;C0=276 ; another way to specify, in ppmv
-;boreal.veg_c=100 ; e.g.
-;tropical.veg_c=450 ;
-veg_c=550 ; vegetation, Pg C
-;boreal.detritus_c=15
-;tropical.detritus_c=45
-detritus_c=55 ; detritus, Pg C
-;boreal.soil_c=1200
-;tropical.soil_c=578
-soil_c=1782 ; soil, Pg C
-;boreal.npp_flux0=5.0
-;tropical.npp_flux0=45.0
-npp_flux0=50.0 ; net primary production, Pg C/yr
-
-; Partitioning parameters
-f_nppv=0.35 ; Fraction of NPP to vegetation
-f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil)
-f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil)
-f_lucv=0.1 ; Fraction of land use change flux from vegetation
-f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil)
-
-; Anthropogenic contributions: direct emissions and land use change, Pg C/yr
-ffi_emissions=csv:emissions/RCP26_emissions.csv
-luc_emissions=csv:emissions/RCP26_emissions.csv
-
-; Optional atmospheric CO2 constraint, ppmv
-; If supplied, the model will use these data, ignoring what it calculates
-; Any residual between model [CO2] and model [CO2] will be put into the deep ocean
-;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record
-;Ca_constrain=csv:constraints/RCP26_co2ppm.csv ; MAGICC output
-
-; CO2 and temperature effects on the carbon cycle
-; these are global values, can optionally specify biome-specific ones as above
-beta=0.36 ; 0.36=about +20% @2xCO2
-q10_rh=2.0 ; respiration response Q10, unitless
-
-; Optional biome-specific warming factors
-; by default, assume 1.0 (i.e., warms as fast as the globe)
-;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally
-
-; Albedo effect, in W/m2. The model assumes a constant value if nothing specified
-Ftalbedo[1750]=0.0
-Ftalbedo[1950]=-0.2
-
-;------------------------------------------------------------------------
-[carbon-cycle-solver]
-eps_abs=1.0e-6 ; solution tolerances
-eps_rel=1.0e-6
-dt=0.25 ; default time step
-eps_spinup=0.001 ; spinup tolerance (drift), Pg C
-
-;------------------------------------------------------------------------
-[so2]
-S0=53841.2 ; historical sulphate from year 2000 (Gg)
-SN=42000 ; natural sulfur emissions (Gg)
-SO2_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-SV=csv:emissions/volcanic_RF.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[CH4]
-M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1
-Tsoil=160 ; CH4 loss to soil (years)
-Tstrat=120 ; CH4 loss to stratosphere (years)
-UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations
-CH4N=300 ; Natural CH4 emissions (Tgrams)
-CH4_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[OH]
-NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-
-TOH0=6.6 ; inital OH lifetime (years)
-CNOX=0.0042 ; coefficent for NOX
-CCO=-0.000105 ; coefficent for CO
-CNMVOC=-0.000315 ; coefficent for NMVOC
-CCH4=-0.32 ; coefficent for CH4
-
-;------------------------------------------------------------------------
-[ozone]
-PO3=30.0 ; preindustrial O3 concentration
-NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-;molarMass=16.04 ; grams
-;tau=10 ; lifetime in years (Oucher et al 2009)
-
-;------------------------------------------------------------------------
-[N2O]
-N0=272.9596 ; preindustrial nitrous oxide, ppbv
-UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations
-TN2O0=132 ; initial lifetime of N2O, years
-
-; An example of setting a time series by individual values
-; The model will interpolate as necessary between them
-N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN
-N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN
-N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN
-
-N2O_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-;molarMass=44.01 ; grams
-
-;------------------------------------------------------------------------
-[forcing]
-baseyear=1750 ; when to start reporting; by definition, all F=0 in this year
-
-; Optional radiative forcing constraint
-; If supplied, the model will use these data, ignoring what it calculates
-;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv
-
-;------------------------------------------------------------------------
-[temperature]
-enabled=1
-
-S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC
-diff=2.3 ; ocean heat diffusivity, cm2/s
-alpha=1.0 ; scaling factor for aerosol forcing
-volscl=1.0 ; scaling factor for volcanic forcing
-; Optional global temperature constraint
-; If supplied, the model will use these data, ignoring what it calculates
-; tgav_constrain=csv:constraints/tgav_historical.csv
-
-;------------------------------------------------------------------------
-[bc]
-BC_emissions=csv:emissions/RCP26_emissions.csv
-
-;------------------------------------------------------------------------
-[oc]
-OC_emissions=csv:emissions/RCP26_emissions.csv
-
-;------------------------------------------------------------------------
-; Halocarbons
-; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14)
-
-[CF4_halocarbon]
-tau=50000.0 ; lifetime in years
-rho=0.00008 ; radiative efficiencies W/m2/ppt
-H0=35.0,pptv ; preindustrial concentration, pptv
-CF4_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=88.0043 ; grams
-
-[C2F6_halocarbon]
-tau=10000.0
-rho=0.00026
-C2F6_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=138.01
-
-;[C4F10_halocarbon]
-;tau=2600.0
-;rho=0.00033
-;C4F10_emissions=csv:emissions/RCP26_emissions.csv
-;molarMass=238.0
-
-[HFC23_halocarbon]
-tau=270.0
-rho=0.00019
-HFC23_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=70.0
-
-[HFC32_halocarbon]
-tau=4.9
-rho=0.00011
-HFC32_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=52.0
-
-[HFC4310_halocarbon]
-tau=15.9
-rho=0.0004
-HFC4310_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=252.0
-
-[HFC125_halocarbon]
-tau=29.0
-rho=0.00023
-HFC125_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=120.02
-
-[HFC134a_halocarbon]
-tau=14.0
-rho=0.00016
-HFC134a_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=102.02
-
-[HFC143a_halocarbon]
-tau=52.0
-rho=0.00013
-HFC143a_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=84.04
-
-;[HFC152a_halocarbon]
-;tau=1.4
-;rho=0.00009
-;HFC152a_emissions=csv:emissions/RCP26_emissions.csv
-;molarMass=66.0
-
-[HFC227ea_halocarbon]
-tau=34.2
-rho=0.00026
-HFC227ea_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=170.03
-
-[HFC245fa_halocarbon]
-tau=7.6
-rho=0.00028
-HFC245fa_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=134.0
-
-;[HFC236fa_halocarbon]
-;tau=240.0
-;rho=0.00028
-;HFC236fa_emissions=csv:emissions/RCP26_emissions.csv
-;molarMass=152.0
-
-[SF6_halocarbon]
-tau=3200.0
-rho=0.00052
-SF6_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=146.06
-
-[CFC11_halocarbon]
-tau=45.0
-rho=0.00025
-CFC11_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=137.35
-;ni=3
-;FC=1
-
-[CFC12_halocarbon]
-tau=100
-rho=0.00032
-CFC12_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=120.9
-;ni=2
-;FC=0.6
-
-[CFC113_halocarbon]
-tau=85.0
-rho=0.0003
-CFC113_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=187.35
-;ni=3
-;FC=0.75
-
-[CFC114_halocarbon]
-tau=300
-rho=0.00031
-CFC114_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=170.9
-;ni=2
-;FC=0.28
-
-[CFC115_halocarbon]
-tau=1700
-rho=0.00018
-CFC115_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=154.45
-
-[CCl4_halocarbon]
-tau=26.0
-rho=0.00013
-CCl4_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=153.8
-;ni=4
-;FC=1.06
-
-[CH3CCl3_halocarbon]
-tau=5.0
-rho=0.00006
-CH3CCl3_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=133.35
-;ni=3
-;FC=1.08
-
-[halon1211_halocarbon]
-tau=16.0
-rho=0.00003
-halon1211_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=165.35
-;ni=1
-;nj=1
-;FC=1.18
-
-[halon1301_halocarbon]
-tau=65.0
-rho=0.00032
-halon1301_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=148.9
-;nj=1
-;FC=0.62
-
-[halon2402_halocarbon]
-tau=20.0
-rho=0.00033
-halon2402_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=259.8
-;nj=2
-;FC=1.22
-
-[HCFC22_halocarbon]
-tau=12.0
-rho=0.0002
-HCFC22_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=86.45
-;ni=1
-;FC=0.35
-
-[HCFC141b_halocarbon]
-tau=9.3
-rho=0.00014
-HCFC141b_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=116.9
-;ni=2
-;FC=0.72
-
-[HCFC142b_halocarbon]
-tau=17.9
-rho=0.0002
-HCFC142b_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=100.45
-;ni=1
-;FC=0.36
-
-;[HCFC143_halocarbon]
-;tau=1.3
-;rho=0.00014
-;HCFC143_emissions=csv:emissions/RCP26_emissions.csv
-;molarMass=152.9
-
-[CH3Cl_halocarbon]
-tau=1.3
-rho=0.00001
-H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL
-CH3Cl_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=50.45
-;ni=1
-;FC=0.8
-
-[CH3Br_halocarbon]
-tau=0.7
-rho=0.00001
-H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR
-CH3Br_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=94.9
-;nj=1
-;FC=1.12
diff --git a/inst/shinyApp/www/input/hector_rcp26_constrained.ini b/inst/shinyApp/www/input/hector_rcp26_constrained.ini
deleted file mode 100644
index fd14e3e..0000000
--- a/inst/shinyApp/www/input/hector_rcp26_constrained.ini
+++ /dev/null
@@ -1,389 +0,0 @@
-;Config file for hector model: that uses RCP26 concentrations to drive Hector.
-;Emission driven Hector runs capture the carbon cycle whereas concentration runs do not.
-;------------------------------------------------------------------------
-[core]
-run_name=rcp26_co2constrain
-startDate=1745
-endDate=2300
-do_spinup=1 ; if 1, spin up model before running (default=1)
-max_spinup=2000 ; maximum steps allowed for spinup (default=2000)
-
-;------------------------------------------------------------------------
-[onelineocean]
-enabled=0 ; 'enabled=0' will disable any component
-;output=0 ; 'output=0' will disable any component's output
-ocean_c=38000 ; Pg C
-
-;------------------------------------------------------------------------
-[ocean]
-enabled=1 ; putting 'enabled=0' will disable any component
-spinup_chem=0 ; run surface chemistry during spinup phase?
-;carbon_HL=145 ; high latitude, Pg C
-;carbon_LL=750 ; low latitude, Pg C
-;carbon_IO=10040 ; intermediate, Pg C
-;carbon_DO=27070 ; deep, Pg C
-
-tt=72000000 ; 7.2e7 thermohaline circulation, m3/s
-tu=49000000 ; 4.9e7 high latitude overturning, m3/s
-twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s
-tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s
-
-; Optional ocean C uptake constraint, Pg C/yr
-; If supplied, the model will use these data, ignoring what it calculates
-;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv
-
-;------------------------------------------------------------------------
-[simpleNbox]
-; Initial (preindustrial) carbon pools and fluxes
-; These are generally consistent with reconstructed (Siegenthaler and Oeschger
-; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008,
-; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values.
-
-; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes
-atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010)
-;C0=276 ; another way to specify, in ppmv
-;boreal.veg_c=100 ; e.g.
-;tropical.veg_c=450 ;
-veg_c=550 ; vegetation, Pg C
-;boreal.detritus_c=15
-;tropical.detritus_c=45
-detritus_c=55 ; detritus, Pg C
-;boreal.soil_c=1200
-;tropical.soil_c=578
-soil_c=1782 ; soil, Pg C
-;boreal.npp_flux0=5.0
-;tropical.npp_flux0=45.0
-npp_flux0=50.0 ; net primary production, Pg C/yr
-
-; Partitioning parameters
-f_nppv=0.35 ; Fraction of NPP to vegetation
-f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil)
-f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil)
-f_lucv=0.1 ; Fraction of land use change flux from vegetation
-f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil)
-
-; Anthropogenic contributions: direct emissions and land use change, Pg C/yr
-ffi_emissions=csv:emissions/RCP26_emissions.csv
-luc_emissions=csv:emissions/RCP26_emissions.csv
-
-; Optional atmospheric CO2 constraint, ppmv
-; If supplied, the model will use these data, ignoring what it calculates
-; Any residual between model [CO2] and model [CO2] will be put into the deep ocean
-;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record
-Ca_constrain=csv:constraints/rcp26_co2ppm.csv ; MAGICC output
-
-; CO2 and temperature effects on the carbon cycle
-; these are global values, can optionally specify biome-specific ones as above
-beta=0.36 ; 0.36=about +20% @2xCO2
-q10_rh=2.0 ; respiration response Q10, unitless
-
-; Optional biome-specific warming factors
-; by default, assume 1.0 (i.e., warms as fast as the globe)
-;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally
-
-; Albedo effect, in W/m2. The model assumes a constant value if nothing specified
-Ftalbedo[1750]=0.0
-Ftalbedo[1950]=-0.2
-
-;------------------------------------------------------------------------
-[carbon-cycle-solver]
-eps_abs=1.0e-6 ; solution tolerances
-eps_rel=1.0e-6
-dt=0.25 ; default time step
-eps_spinup=0.001 ; spinup tolerance (drift), Pg C
-
-;------------------------------------------------------------------------
-[so2]
-S0=53841.2 ; historical sulphate from year 2000 (Gg)
-SN=42000 ; natural sulfur emissions (Gg)
-SO2_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-SV=csv:emissions/volcanic_RF.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[CH4]
-M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1
-Tsoil=160 ; CH4 loss to soil (years)
-Tstrat=120 ; CH4 loss to stratosphere (years)
-UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations
-CH4N=300 ; Natural CH4 emissions (Tgrams)
-CH4_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[OH]
-NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-
-TOH0=6.6 ; inital OH lifetime (years)
-CNOX=0.0042 ; coefficent for NOX
-CCO=-0.000105 ; coefficent for CO
-CNMVOC=-0.000315 ; coefficent for NMVOC
-CCH4=-0.32 ; coefficent for CH4
-
-;------------------------------------------------------------------------
-[ozone]
-PO3=30.0 ; preindustrial O3 concentration
-NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-;molarMass=16.04 ; grams
-;tau=10 ; lifetime in years (Oucher et al 2009)
-
-;------------------------------------------------------------------------
-[N2O]
-N0=272.9596 ; preindustrial nitrous oxide, ppbv
-UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations
-TN2O0=132 ; initial lifetime of N2O, years
-
-; An example of setting a time series by individual values
-; The model will interpolate as necessary between them
-N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN
-N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN
-N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN
-
-N2O_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-;molarMass=44.01 ; grams
-
-;------------------------------------------------------------------------
-[forcing]
-baseyear=1750 ; when to start reporting; by definition, all F=0 in this year
-
-; Optional radiative forcing constraint
-; If supplied, the model will use these data, ignoring what it calculates
-;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv
-
-;------------------------------------------------------------------------
-[temperature]
-enabled=1
-
-S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC
-diff=2.3 ; ocean heat diffusivity, cm2/s
-alpha=1.0 ; scaling factor for aerosol forcing
-volscl=1.0 ; scaling factor for volcanic forcing
-; Optional global temperature constraint
-; If supplied, the model will use these data, ignoring what it calculates
-; tgav_constrain=csv:constraints/tgav_historical.csv
-
-;------------------------------------------------------------------------
-[bc]
-BC_emissions=csv:emissions/RCP26_emissions.csv
-
-;------------------------------------------------------------------------
-[oc]
-OC_emissions=csv:emissions/RCP26_emissions.csv
-
-;------------------------------------------------------------------------
-; Halocarbons
-; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14)
-
-[CF4_halocarbon]
-tau=50000.0 ; lifetime in years
-rho=0.00008 ; radiative efficiencies W/m2/ppt
-H0=35.0,pptv ; preindustrial concentration, pptv
-CF4_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=88.0043 ; grams
-
-[C2F6_halocarbon]
-tau=10000.0
-rho=0.00026
-C2F6_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=138.01
-
-;[C4F10_halocarbon]
-;tau=2600.0
-;rho=0.00033
-;C4F10_emissions=csv:emissions/RCP26_emissions.csv
-;molarMass=238.0
-
-[HFC23_halocarbon]
-tau=270.0
-rho=0.00019
-HFC23_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=70.0
-
-[HFC32_halocarbon]
-tau=4.9
-rho=0.00011
-HFC32_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=52.0
-
-[HFC4310_halocarbon]
-tau=15.9
-rho=0.0004
-HFC4310_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=252.0
-
-[HFC125_halocarbon]
-tau=29.0
-rho=0.00023
-HFC125_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=120.02
-
-[HFC134a_halocarbon]
-tau=14.0
-rho=0.00016
-HFC134a_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=102.02
-
-[HFC143a_halocarbon]
-tau=52.0
-rho=0.00013
-HFC143a_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=84.04
-
-;[HFC152a_halocarbon]
-;tau=1.4
-;rho=0.00009
-;HFC152a_emissions=csv:emissions/RCP26_emissions.csv
-;molarMass=66.0
-
-[HFC227ea_halocarbon]
-tau=34.2
-rho=0.00026
-HFC227ea_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=170.03
-
-[HFC245fa_halocarbon]
-tau=7.6
-rho=0.00028
-HFC245fa_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=134.0
-
-;[HFC236fa_halocarbon]
-;tau=240.0
-;rho=0.00028
-;HFC236fa_emissions=csv:emissions/RCP26_emissions.csv
-;molarMass=152.0
-
-[SF6_halocarbon]
-tau=3200.0
-rho=0.00052
-SF6_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=146.06
-
-[CFC11_halocarbon]
-tau=45.0
-rho=0.00025
-CFC11_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=137.35
-;ni=3
-;FC=1
-
-[CFC12_halocarbon]
-tau=100
-rho=0.00032
-CFC12_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=120.9
-;ni=2
-;FC=0.6
-
-[CFC113_halocarbon]
-tau=85.0
-rho=0.0003
-CFC113_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=187.35
-;ni=3
-;FC=0.75
-
-[CFC114_halocarbon]
-tau=300
-rho=0.00031
-CFC114_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=170.9
-;ni=2
-;FC=0.28
-
-[CFC115_halocarbon]
-tau=1700
-rho=0.00018
-CFC115_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=154.45
-
-[CCl4_halocarbon]
-tau=26.0
-rho=0.00013
-CCl4_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=153.8
-;ni=4
-;FC=1.06
-
-[CH3CCl3_halocarbon]
-tau=5.0
-rho=0.00006
-CH3CCl3_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=133.35
-;ni=3
-;FC=1.08
-
-[halon1211_halocarbon]
-tau=16.0
-rho=0.00003
-halon1211_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=165.35
-;ni=1
-;nj=1
-;FC=1.18
-
-[halon1301_halocarbon]
-tau=65.0
-rho=0.00032
-halon1301_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=148.9
-;nj=1
-;FC=0.62
-
-[halon2402_halocarbon]
-tau=20.0
-rho=0.00033
-halon2402_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=259.8
-;nj=2
-;FC=1.22
-
-[HCF22_halocarbon]
-tau=12.0
-rho=0.0002
-HCF22_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=86.45
-;ni=1
-;FC=0.35
-
-[HCF141b_halocarbon]
-tau=9.3
-rho=0.00014
-HCF141b_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=116.9
-;ni=2
-;FC=0.72
-
-[HCF142b_halocarbon]
-tau=17.9
-rho=0.0002
-HCF142b_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=100.45
-;ni=1
-;FC=0.36
-
-;[HCFC143_halocarbon]
-;tau=1.3
-;rho=0.00014
-;HCFC143_emissions=csv:emissions/RCP26_emissions.csv
-;molarMass=152.9
-
-[CH3Cl_halocarbon]
-tau=1.3
-rho=0.00001
-H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL
-CH3Cl_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=50.45
-;ni=1
-;FC=0.8
-
-[CH3Br_halocarbon]
-tau=0.7
-rho=0.00001
-H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR
-CH3Br_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=94.9
-;nj=1
-;FC=1.12
diff --git a/inst/shinyApp/www/input/hector_rcp26_histconstrain.ini b/inst/shinyApp/www/input/hector_rcp26_histconstrain.ini
deleted file mode 100644
index b44bb19..0000000
--- a/inst/shinyApp/www/input/hector_rcp26_histconstrain.ini
+++ /dev/null
@@ -1,390 +0,0 @@
-;Config file for hector model: that uses historical CO2 concentrations before
-; switching to RCP26 concentrations to drive Hector.
-; Emission driven Hector runs capture the carbon cycle whereas concentration runs do not.
-;------------------------------------------------------------------------
-[core]
-run_name=rcp26_histco2constrain
-startDate=1745
-endDate=2300
-do_spinup=1 ; if 1, spin up model before running (default=1)
-max_spinup=2000 ; maximum steps allowed for spinup (default=2000)
-
-;------------------------------------------------------------------------
-[onelineocean]
-enabled=0 ; 'enabled=0' will disable any component
-;output=0 ; 'output=0' will disable any component's output
-ocean_c=38000 ; Pg C
-
-;------------------------------------------------------------------------
-[ocean]
-enabled=1 ; putting 'enabled=0' will disable any component
-spinup_chem=0 ; run surface chemistry during spinup phase?
-;carbon_HL=145 ; high latitude, Pg C
-;carbon_LL=750 ; low latitude, Pg C
-;carbon_IO=10040 ; intermediate, Pg C
-;carbon_DO=27070 ; deep, Pg C
-
-tt=72000000 ; 7.2e7 thermohaline circulation, m3/s
-tu=49000000 ; 4.9e7 high latitude overturning, m3/s
-twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s
-tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s
-
-; Optional ocean C uptake constraint, Pg C/yr
-; If supplied, the model will use these data, ignoring what it calculates
-;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv
-
-;------------------------------------------------------------------------
-[simpleNbox]
-; Initial (preindustrial) carbon pools and fluxes
-; These are generally consistent with reconstructed (Siegenthaler and Oeschger
-; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008,
-; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values.
-
-; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes
-atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010)
-;C0=276 ; another way to specify, in ppmv
-;boreal.veg_c=100 ; e.g.
-;tropical.veg_c=450 ;
-veg_c=550 ; vegetation, Pg C
-;boreal.detritus_c=15
-;tropical.detritus_c=45
-detritus_c=55 ; detritus, Pg C
-;boreal.soil_c=1200
-;tropical.soil_c=578
-soil_c=1782 ; soil, Pg C
-;boreal.npp_flux0=5.0
-;tropical.npp_flux0=45.0
-npp_flux0=50.0 ; net primary production, Pg C/yr
-
-; Partitioning parameters
-f_nppv=0.35 ; Fraction of NPP to vegetation
-f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil)
-f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil)
-f_lucv=0.1 ; Fraction of land use change flux from vegetation
-f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil)
-
-; Anthropogenic contributions: direct emissions and land use change, Pg C/yr
-ffi_emissions=csv:emissions/RCP26_emissions.csv
-luc_emissions=csv:emissions/RCP26_emissions.csv
-
-; Optional atmospheric CO2 constraint, ppmv
-; If supplied, the model will use these data, ignoring what it calculates
-; Any residual between model [CO2] and model [CO2] will be put into the deep ocean
-Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record
-Ca_constrain=csv:constraints/rcp26_co2ppm.csv ; MAGICC output
-
-; CO2 and temperature effects on the carbon cycle
-; these are global values, can optionally specify biome-specific ones as above
-beta=0.36 ; 0.36=about +20% @2xCO2
-q10_rh=2.0 ; respiration response Q10, unitless
-
-; Optional biome-specific warming factors
-; by default, assume 1.0 (i.e., warms as fast as the globe)
-;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally
-
-; Albedo effect, in W/m2. The model assumes a constant value if nothing specified
-Ftalbedo[1750]=0.0
-Ftalbedo[1950]=-0.2
-
-;------------------------------------------------------------------------
-[carbon-cycle-solver]
-eps_abs=1.0e-6 ; solution tolerances
-eps_rel=1.0e-6
-dt=0.25 ; default time step
-eps_spinup=0.001 ; spinup tolerance (drift), Pg C
-
-;------------------------------------------------------------------------
-[so2]
-S0=53841.2 ; historical sulphate from year 2000 (Gg)
-SN=42000 ; natural sulfur emissions (Gg)
-SO2_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-SV=csv:emissions/volcanic_RF.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[CH4]
-M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1
-Tsoil=160 ; CH4 loss to soil (years)
-Tstrat=120 ; CH4 loss to stratosphere (years)
-UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations
-CH4N=300 ; Natural CH4 emissions (Tgrams)
-CH4_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[OH]
-NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-
-TOH0=6.6 ; inital OH lifetime (years)
-CNOX=0.0042 ; coefficent for NOX
-CCO=-0.000105 ; coefficent for CO
-CNMVOC=-0.000315 ; coefficent for NMVOC
-CCH4=-0.32 ; coefficent for CH4
-
-;------------------------------------------------------------------------
-[ozone]
-PO3=30.0 ; preindustrial O3 concentration
-NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-;molarMass=16.04 ; grams
-;tau=10 ; lifetime in years (Oucher et al 2009)
-
-;------------------------------------------------------------------------
-[N2O]
-N0=272.9596 ; preindustrial nitrous oxide, ppbv
-UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations
-TN2O0=132 ; initial lifetime of N2O, years
-
-; An example of setting a time series by individual values
-; The model will interpolate as necessary between them
-N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN
-N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN
-N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN
-
-N2O_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series
-;molarMass=44.01 ; grams
-
-;------------------------------------------------------------------------
-[forcing]
-baseyear=1750 ; when to start reporting; by definition, all F=0 in this year
-
-; Optional radiative forcing constraint
-; If supplied, the model will use these data, ignoring what it calculates
-;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv
-
-;------------------------------------------------------------------------
-[temperature]
-enabled=1
-
-S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC
-diff=2.3 ; ocean heat diffusivity, cm2/s
-alpha=1.0 ; scaling factor for aerosol forcing
-volscl=1.0 ; scaling factor for volcanic forcing
-; Optional global temperature constraint
-; If supplied, the model will use these data, ignoring what it calculates
-; tgav_constrain=csv:constraints/tgav_historical.csv
-
-;------------------------------------------------------------------------
-[bc]
-BC_emissions=csv:emissions/RCP26_emissions.csv
-
-;------------------------------------------------------------------------
-[oc]
-OC_emissions=csv:emissions/RCP26_emissions.csv
-
-;------------------------------------------------------------------------
-; Halocarbons
-; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14)
-
-[CF4_halocarbon]
-tau=50000.0 ; lifetime in years
-rho=0.00008 ; radiative efficiencies W/m2/ppt
-H0=35.0,pptv ; preindustrial concentration, pptv
-CF4_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=88.0043 ; grams
-
-[C2F6_halocarbon]
-tau=10000.0
-rho=0.00026
-C2F6_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=138.01
-
-;[C4F10_halocarbon]
-;tau=2600.0
-;rho=0.00033
-;C4F10_emissions=csv:emissions/RCP26_emissions.csv
-;molarMass=238.0
-
-[HFC23_halocarbon]
-tau=270.0
-rho=0.00019
-HFC23_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=70.0
-
-[HFC32_halocarbon]
-tau=4.9
-rho=0.00011
-HFC32_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=52.0
-
-[HFC4310_halocarbon]
-tau=15.9
-rho=0.0004
-HFC4310_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=252.0
-
-[HFC125_halocarbon]
-tau=29.0
-rho=0.00023
-HFC125_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=120.02
-
-[HFC134a_halocarbon]
-tau=14.0
-rho=0.00016
-HFC134a_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=102.02
-
-[HFC143a_halocarbon]
-tau=52.0
-rho=0.00013
-HFC143a_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=84.04
-
-;[HFC152a_halocarbon]
-;tau=1.4
-;rho=0.00009
-;HFC152a_emissions=csv:emissions/RCP26_emissions.csv
-;molarMass=66.0
-
-[HFC227ea_halocarbon]
-tau=34.2
-rho=0.00026
-HFC227ea_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=170.03
-
-[HFC245fa_halocarbon]
-tau=7.6
-rho=0.00028
-HFC245fa_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=134.0
-
-;[HFC236fa_halocarbon]
-;tau=240.0
-;rho=0.00028
-;HFC236fa_emissions=csv:emissions/RCP26_emissions.csv
-;molarMass=152.0
-
-[SF6_halocarbon]
-tau=3200.0
-rho=0.00052
-SF6_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=146.06
-
-[CFC11_halocarbon]
-tau=45.0
-rho=0.00025
-CFC11_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=137.35
-;ni=3
-;FC=1
-
-[CFC12_halocarbon]
-tau=100
-rho=0.00032
-CFC12_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=120.9
-;ni=2
-;FC=0.6
-
-[CFC113_halocarbon]
-tau=85.0
-rho=0.0003
-CFC113_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=187.35
-;ni=3
-;FC=0.75
-
-[CFC114_halocarbon]
-tau=300
-rho=0.00031
-CFC114_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=170.9
-;ni=2
-;FC=0.28
-
-[CFC115_halocarbon]
-tau=1700
-rho=0.00018
-CFC115_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=154.45
-
-[CCl4_halocarbon]
-tau=26.0
-rho=0.00013
-CCl4_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=153.8
-;ni=4
-;FC=1.06
-
-[CH3CCl3_halocarbon]
-tau=5.0
-rho=0.00006
-CH3CCl3_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=133.35
-;ni=3
-;FC=1.08
-
-[halon1211_halocarbon]
-tau=16.0
-rho=0.00003
-halon1211_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=165.35
-;ni=1
-;nj=1
-;FC=1.18
-
-[halon1301_halocarbon]
-tau=65.0
-rho=0.00032
-halon1301_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=148.9
-;nj=1
-;FC=0.62
-
-[halon2402_halocarbon]
-tau=20.0
-rho=0.00033
-halon2402_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=259.8
-;nj=2
-;FC=1.22
-
-[HCF22_halocarbon]
-tau=12.0
-rho=0.0002
-HCF22_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=86.45
-;ni=1
-;FC=0.35
-
-[HCF141b_halocarbon]
-tau=9.3
-rho=0.00014
-HCF141b_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=116.9
-;ni=2
-;FC=0.72
-
-[HCF142b_halocarbon]
-tau=17.9
-rho=0.0002
-HCF142b_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=100.45
-;ni=1
-;FC=0.36
-
-;[HCFC143_halocarbon]
-;tau=1.3
-;rho=0.00014
-;HCFC143_emissions=csv:emissions/RCP26_emissions.csv
-;molarMass=152.9
-
-[CH3Cl_halocarbon]
-tau=1.3
-rho=0.00001
-H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL
-CH3Cl_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=50.45
-;ni=1
-;FC=0.8
-
-[CH3Br_halocarbon]
-tau=0.7
-rho=0.00001
-H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR
-CH3Br_emissions=csv:emissions/RCP26_emissions.csv
-molarMass=94.9
-;nj=1
-;FC=1.12
diff --git a/inst/shinyApp/www/input/hector_rcp45.ini b/inst/shinyApp/www/input/hector_rcp45.ini
deleted file mode 100644
index e602f75..0000000
--- a/inst/shinyApp/www/input/hector_rcp45.ini
+++ /dev/null
@@ -1,388 +0,0 @@
-; Config file for hector model: RCP45
-;------------------------------------------------------------------------
-[core]
-run_name=rcp45
-startDate=1745
-endDate=2300
-do_spinup=1 ; if 1, spin up model before running (default=1)
-max_spinup=2000 ; maximum steps allowed for spinup (default=2000)
-
-;------------------------------------------------------------------------
-[onelineocean]
-enabled=0 ; 'enabled=0' will disable any component
-;output=0 ; 'output=0' will disable any component's output
-ocean_c=38000 ; Pg C
-
-;------------------------------------------------------------------------
-[ocean]
-enabled=1 ; putting 'enabled=0' will disable any component
-spinup_chem=0 ; run surface chemistry during spinup phase?
-;carbon_HL=145 ; high latitude, Pg C
-;carbon_LL=750 ; low latitude, Pg C
-;carbon_IO=10040 ; intermediate, Pg C
-;carbon_DO=27070 ; deep, Pg C
-
-tt=72000000 ; 7.2e7 thermohaline circulation, m3/s
-tu=49000000 ; 4.9e7 high latitude overturning, m3/s
-twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s
-tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s
-
-; Optional ocean C uptake constraint, Pg C/yr
-; If supplied, the model will use these data, ignoring what it calculates
-;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv
-
-;------------------------------------------------------------------------
-[simpleNbox]
-; Initial (preindustrial) carbon pools and fluxes
-; These are generally consistent with reconstructed (Siegenthaler and Oeschger
-; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008,
-; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values.
-
-; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes
-atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010)
-;C0=276 ; another way to specify, in ppmv
-;boreal.veg_c=100 ; e.g.
-;tropical.veg_c=450 ;
-veg_c=550 ; vegetation, Pg C
-;boreal.detritus_c=15
-;tropical.detritus_c=45
-detritus_c=55 ; detritus, Pg C
-;boreal.soil_c=1200
-;tropical.soil_c=578
-soil_c=1782 ; soil, Pg C
-;boreal.npp_flux0=5.0
-;tropical.npp_flux0=45.0
-npp_flux0=50.0 ; net primary production, Pg C/yr
-
-; Partitioning parameters
-f_nppv=0.35 ; Fraction of NPP to vegetation
-f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil)
-f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil)
-f_lucv=0.1 ; Fraction of land use change flux from vegetation
-f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil)
-
-; Anthropogenic contributions: direct emissions and land use change, Pg C/yr
-ffi_emissions=csv:emissions/RCP45_emissions.csv
-luc_emissions=csv:emissions/RCP45_emissions.csv
-
-; Optional atmospheric CO2 constraint, ppmv
-; If supplied, the model will use these data, ignoring what it calculates
-; Any residual between model [CO2] and model [CO2] will be put into the deep ocean
-;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record
-;Ca_constrain=csv:constraints/RCP45_co2ppm.csv ; MAGICC output
-
-; CO2 and temperature effects on the carbon cycle
-; these are global values, can optionally specify biome-specific ones as above
-beta=0.36 ; 0.36=about +20% @2xCO2
-q10_rh=2.0 ; respiration response Q10, unitless
-
-; Optional biome-specific warming factors
-; by default, assume 1.0 (i.e., warms as fast as the globe)
-;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally
-
-; Albedo effect, in W/m2. The model assumes a constant value if nothing specified
-Ftalbedo[1750]=0.0
-Ftalbedo[1950]=-0.2
-
-;------------------------------------------------------------------------
-[carbon-cycle-solver]
-eps_abs=1.0e-6 ; solution tolerances
-eps_rel=1.0e-6
-dt=0.25 ; default time step
-eps_spinup=0.001 ; spinup tolerance (drift), Pg C
-
-;------------------------------------------------------------------------
-[so2]
-S0=53841.2 ; historical sulphate from year 2000 (Gg)
-SN=42000 ; natural sulfur emissions (Gg)
-SO2_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-SV=csv:emissions/volcanic_RF.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[CH4]
-M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1
-Tsoil=160 ; CH4 loss to soil (years)
-Tstrat=120 ; CH4 loss to stratosphere (years)
-UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations
-CH4N=300 ; Natural CH4 emissions (Tgrams)
-CH4_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[OH]
-NOX_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-
-TOH0=6.6 ; inital OH lifetime (years)
-CNOX=0.0042 ; coefficent for NOX
-CCO=-0.000105 ; coefficent for CO
-CNMVOC=-0.000315 ; coefficent for NMVOC
-CCH4=-0.32 ; coefficent for CH4
-
-;------------------------------------------------------------------------
-[ozone]
-PO3=30.0 ; preindustrial O3 concentration
-NOX_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-;molarMass=16.04 ; grams
-;tau=10 ; lifetime in years (Oucher et al 2009)
-
-;------------------------------------------------------------------------
-[N2O]
-N0=272.9596 ; preindustrial nitrous oxide, ppbv
-UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations
-TN2O0=132 ; initial lifetime of N2O, years
-
-; An example of setting a time series by individual values
-; The model will interpolate as necessary between them
-N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN
-N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN
-N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN
-
-N2O_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-;molarMass=44.01 ; grams
-
-;------------------------------------------------------------------------
-[forcing]
-baseyear=1750 ; when to start reporting; by definition, all F=0 in this year
-
-; Optional radiative forcing constraint
-; If supplied, the model will use these data, ignoring what it calculates
-;Ftot_constrain=csv:constraints/MAGICC_RF_4.5.csv
-
-;------------------------------------------------------------------------
-[temperature]
-enabled=1
-
-S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC
-diff=2.3 ; ocean heat diffusivity, cm2/s
-alpha=1.0 ; scaling factor for aerosol forcing
-volscl=1.0 ; scaling factor for volcanic forcing
-; Optional global temperature constraint
-; If supplied, the model will use these data, ignoring what it calculates
-; tgav_constrain=csv:constraints/tgav_historical.csv
-
-;------------------------------------------------------------------------
-[bc]
-BC_emissions=csv:emissions/RCP45_emissions.csv
-
-;------------------------------------------------------------------------
-[oc]
-OC_emissions=csv:emissions/RCP45_emissions.csv
-
-;------------------------------------------------------------------------
-; Halocarbons
-; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14)
-
-[CF4_halocarbon]
-tau=50000.0 ; lifetime in years
-rho=0.00008 ; radiative efficiencies W/m2/ppt
-H0=35.0,pptv ; preindustrial concentration, pptv
-CF4_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=88.0043 ; grams
-
-[C2F6_halocarbon]
-tau=10000.0
-rho=0.00026
-C2F6_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=138.01
-
-;[C4F10_halocarbon]
-;tau=2600.0
-;rho=0.00033
-;C4F10_emissions=csv:emissions/RCP45_emissions.csv
-;molarMass=238.0
-
-[HFC23_halocarbon]
-tau=270.0
-rho=0.00019
-HFC23_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=70.0
-
-[HFC32_halocarbon]
-tau=4.9
-rho=0.00011
-HFC32_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=52.0
-
-[HFC4310_halocarbon]
-tau=15.9
-rho=0.0004
-HFC4310_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=252.0
-
-[HFC125_halocarbon]
-tau=29.0
-rho=0.00023
-HFC125_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=120.02
-
-[HFC134a_halocarbon]
-tau=14.0
-rho=0.00016
-HFC134a_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=102.02
-
-[HFC143a_halocarbon]
-tau=52.0
-rho=0.00013
-HFC143a_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=84.04
-
-;[HFC152a_halocarbon]
-;tau=1.4
-;rho=0.00009
-;HFC152a_emissions=csv:emissions/RCP45_emissions.csv
-;molarMass=66.0
-
-[HFC227ea_halocarbon]
-tau=34.2
-rho=0.00026
-HFC227ea_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=170.03
-
-[HFC245fa_halocarbon]
-tau=7.6
-rho=0.00028
-HFC245fa_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=134.0
-
-;[HFC236fa_halocarbon]
-;tau=240.0
-;rho=0.00028
-;HFC236fa_emissions=csv:emissions/RCP45_emissions.csv
-;molarMass=152.0
-
-[SF6_halocarbon]
-tau=3200.0
-rho=0.00052
-SF6_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=146.06
-
-[CFC11_halocarbon]
-tau=45.0
-rho=0.00025
-CFC11_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=137.35
-;ni=3
-;FC=1
-
-[CFC12_halocarbon]
-tau=100
-rho=0.00032
-CFC12_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=120.9
-;ni=2
-;FC=0.6
-
-[CFC113_halocarbon]
-tau=85.0
-rho=0.0003
-CFC113_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=187.35
-;ni=3
-;FC=0.75
-
-[CFC114_halocarbon]
-tau=300
-rho=0.00031
-CFC114_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=170.9
-;ni=2
-;FC=0.28
-
-[CFC115_halocarbon]
-tau=1700
-rho=0.00018
-CFC115_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=154.45
-
-[CCl4_halocarbon]
-tau=26.0
-rho=0.00013
-CCl4_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=153.8
-;ni=4
-;FC=1.06
-
-[CH3CCl3_halocarbon]
-tau=5.0
-rho=0.00006
-CH3CCl3_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=133.35
-;ni=3
-;FC=1.08
-
-[halon1211_halocarbon]
-tau=16.0
-rho=0.00003
-halon1211_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=165.35
-;ni=1
-;nj=1
-;FC=1.18
-
-[halon1301_halocarbon]
-tau=65.0
-rho=0.00032
-halon1301_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=148.9
-;nj=1
-;FC=0.62
-
-[halon2402_halocarbon]
-tau=20.0
-rho=0.00033
-halon2402_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=259.8
-;nj=2
-;FC=1.22
-
-[HCFC22_halocarbon]
-tau=12.0
-rho=0.0002
-HCFC22_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=86.45
-;ni=1
-;FC=0.35
-
-[HCFC141b_halocarbon]
-tau=9.3
-rho=0.00014
-HCFC141b_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=116.9
-;ni=2
-;FC=0.72
-
-[HCFC142b_halocarbon]
-tau=17.9
-rho=0.0002
-HCFC142b_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=100.45
-;ni=1
-;FC=0.36
-
-;[HCFC143_halocarbon]
-;tau=1.3
-;rho=0.00014
-;HCFC143_emissions=csv:emissions/RCP45_emissions.csv
-;molarMass=152.9
-
-[CH3Cl_halocarbon]
-tau=1.3
-rho=0.00001
-H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL
-CH3Cl_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=50.45
-;ni=1
-;FC=0.8
-
-[CH3Br_halocarbon]
-tau=0.7
-rho=0.00001
-H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR
-CH3Br_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=94.9
-;nj=1
-;FC=1.12
diff --git a/inst/shinyApp/www/input/hector_rcp45_constrained.ini b/inst/shinyApp/www/input/hector_rcp45_constrained.ini
deleted file mode 100644
index 2b786e5..0000000
--- a/inst/shinyApp/www/input/hector_rcp45_constrained.ini
+++ /dev/null
@@ -1,389 +0,0 @@
-; Config file for hector model: that uses RCP45 concentrations to drive Hector.
-; Emission driven Hector runs capture the carbon cycle whereas concentration runs do not.
-;------------------------------------------------------------------------
-[core]
-run_name=rcp45_co2constrain
-startDate=1745
-endDate=2300
-do_spinup=1 ; if 1, spin up model before running (default=1)
-max_spinup=2000 ; maximum steps allowed for spinup (default=2000)
-
-;------------------------------------------------------------------------
-[onelineocean]
-enabled=0 ; 'enabled=0' will disable any component
-;output=0 ; 'output=0' will disable any component's output
-ocean_c=38000 ; Pg C
-
-;------------------------------------------------------------------------
-[ocean]
-enabled=1 ; putting 'enabled=0' will disable any component
-spinup_chem=0 ; run surface chemistry during spinup phase?
-;carbon_HL=145 ; high latitude, Pg C
-;carbon_LL=750 ; low latitude, Pg C
-;carbon_IO=10040 ; intermediate, Pg C
-;carbon_DO=27070 ; deep, Pg C
-
-tt=72000000 ; 7.2e7 thermohaline circulation, m3/s
-tu=49000000 ; 4.9e7 high latitude overturning, m3/s
-twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s
-tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s
-
-; Optional ocean C uptake constraint, Pg C/yr
-; If supplied, the model will use these data, ignoring what it calculates
-;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv
-
-;------------------------------------------------------------------------
-[simpleNbox]
-; Initial (preindustrial) carbon pools and fluxes
-; These are generally consistent with reconstructed (Siegenthaler and Oeschger
-; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008,
-; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values.
-
-; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes
-atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010)
-;C0=276 ; another way to specify, in ppmv
-;boreal.veg_c=100 ; e.g.
-;tropical.veg_c=450 ;
-veg_c=550 ; vegetation, Pg C
-;boreal.detritus_c=15
-;tropical.detritus_c=45
-detritus_c=55 ; detritus, Pg C
-;boreal.soil_c=1200
-;tropical.soil_c=578
-soil_c=1782 ; soil, Pg C
-;boreal.npp_flux0=5.0
-;tropical.npp_flux0=45.0
-npp_flux0=50.0 ; net primary production, Pg C/yr
-
-; Partitioning parameters
-f_nppv=0.35 ; Fraction of NPP to vegetation
-f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil)
-f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil)
-f_lucv=0.1 ; Fraction of land use change flux from vegetation
-f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil)
-
-; Anthropogenic contributions: direct emissions and land use change, Pg C/yr
-ffi_emissions=csv:emissions/RCP45_emissions.csv
-luc_emissions=csv:emissions/RCP45_emissions.csv
-
-; Optional atmospheric CO2 constraint, ppmv
-; If supplied, the model will use these data, ignoring what it calculates
-; Any residual between model [CO2] and model [CO2] will be put into the deep ocean
-;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record
-Ca_constrain=csv:constraints/rcp45_co2ppm.csv ; MAGICC output
-
-; CO2 and temperature effects on the carbon cycle
-; these are global values, can optionally specify biome-specific ones as above
-beta=0.36 ; 0.36=about +20% @2xCO2
-q10_rh=2.0 ; respiration response Q10, unitless
-
-; Optional biome-specific warming factors
-; by default, assume 1.0 (i.e., warms as fast as the globe)
-;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally
-
-; Albedo effect, in W/m2. The model assumes a constant value if nothing specified
-Ftalbedo[1750]=0.0
-Ftalbedo[1950]=-0.2
-
-;------------------------------------------------------------------------
-[carbon-cycle-solver]
-eps_abs=1.0e-6 ; solution tolerances
-eps_rel=1.0e-6
-dt=0.25 ; default time step
-eps_spinup=0.001 ; spinup tolerance (drift), Pg C
-
-;------------------------------------------------------------------------
-[so2]
-S0=53841.2 ; historical sulphate from year 2000 (Gg)
-SN=42000 ; natural sulfur emissions (Gg)
-SO2_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-SV=csv:emissions/volcanic_RF.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[CH4]
-M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1
-Tsoil=160 ; CH4 loss to soil (years)
-Tstrat=120 ; CH4 loss to stratosphere (years)
-UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations
-CH4N=300 ; Natural CH4 emissions (Tgrams)
-CH4_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[OH]
-NOX_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-
-TOH0=6.6 ; inital OH lifetime (years)
-CNOX=0.0042 ; coefficent for NOX
-CCO=-0.000105 ; coefficent for CO
-CNMVOC=-0.000315 ; coefficent for NMVOC
-CCH4=-0.32 ; coefficent for CH4
-
-;------------------------------------------------------------------------
-[ozone]
-PO3=30.0 ; preindustrial O3 concentration
-NOX_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-;molarMass=16.04 ; grams
-;tau=10 ; lifetime in years (Oucher et al 2009)
-
-;------------------------------------------------------------------------
-[N2O]
-N0=272.9596 ; preindustrial nitrous oxide, ppbv
-UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations
-TN2O0=132 ; initial lifetime of N2O, years
-
-; An example of setting a time series by individual values
-; The model will interpolate as necessary between them
-N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN
-N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN
-N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN
-
-N2O_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series
-;molarMass=44.01 ; grams
-
-;------------------------------------------------------------------------
-[forcing]
-baseyear=1750 ; when to start reporting; by definition, all F=0 in this year
-
-; Optional radiative forcing constraint
-; If supplied, the model will use these data, ignoring what it calculates
-;Ftot_constrain=csv:constraints/MAGICC_RF_4.5.csv
-
-;------------------------------------------------------------------------
-[temperature]
-enabled=1
-
-S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC
-diff=2.3 ; ocean heat diffusivity, cm2/s
-alpha=1.0 ; scaling factor for aerosol forcing
-volscl=1.0 ; scaling factor for volcanic forcing
-; Optional global temperature constraint
-; If supplied, the model will use these data, ignoring what it calculates
-; tgav_constrain=csv:constraints/tgav_historical.csv
-
-;------------------------------------------------------------------------
-[bc]
-BC_emissions=csv:emissions/RCP45_emissions.csv
-
-;------------------------------------------------------------------------
-[oc]
-OC_emissions=csv:emissions/RCP45_emissions.csv
-
-;------------------------------------------------------------------------
-; Halocarbons
-; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14)
-
-[CF4_halocarbon]
-tau=50000.0 ; lifetime in years
-rho=0.00008 ; radiative efficiencies W/m2/ppt
-H0=35.0,pptv ; preindustrial concentration, pptv
-CF4_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=88.0043 ; grams
-
-[C2F6_halocarbon]
-tau=10000.0
-rho=0.00026
-C2F6_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=138.01
-
-;[C4F10_halocarbon]
-;tau=2600.0
-;rho=0.00033
-;C4F10_emissions=csv:emissions/RCP45_emissions.csv
-;molarMass=238.0
-
-[HFC23_halocarbon]
-tau=270.0
-rho=0.00019
-HFC23_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=70.0
-
-[HFC32_halocarbon]
-tau=4.9
-rho=0.00011
-HFC32_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=52.0
-
-[HFC4310_halocarbon]
-tau=15.9
-rho=0.0004
-HFC4310_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=252.0
-
-[HFC125_halocarbon]
-tau=29.0
-rho=0.00023
-HFC125_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=120.02
-
-[HFC134a_halocarbon]
-tau=14.0
-rho=0.00016
-HFC134a_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=102.02
-
-[HFC143a_halocarbon]
-tau=52.0
-rho=0.00013
-HFC143a_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=84.04
-
-;[HFC152a_halocarbon]
-;tau=1.4
-;rho=0.00009
-;HFC152a_emissions=csv:emissions/RCP45_emissions.csv
-;molarMass=66.0
-
-[HFC227ea_halocarbon]
-tau=34.2
-rho=0.00026
-HFC227ea_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=170.03
-
-[HFC245fa_halocarbon]
-tau=7.6
-rho=0.00028
-HFC245fa_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=134.0
-
-;[HFC236fa_halocarbon]
-;tau=240.0
-;rho=0.00028
-;HFC236fa_emissions=csv:emissions/RCP45_emissions.csv
-;molarMass=152.0
-
-[SF6_halocarbon]
-tau=3200.0
-rho=0.00052
-SF6_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=146.06
-
-[CFC11_halocarbon]
-tau=45.0
-rho=0.00025
-CFC11_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=137.35
-;ni=3
-;FC=1
-
-[CFC12_halocarbon]
-tau=100
-rho=0.00032
-CFC12_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=120.9
-;ni=2
-;FC=0.6
-
-[CFC113_halocarbon]
-tau=85.0
-rho=0.0003
-CFC113_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=187.35
-;ni=3
-;FC=0.75
-
-[CFC114_halocarbon]
-tau=300
-rho=0.00031
-CFC114_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=170.9
-;ni=2
-;FC=0.28
-
-[CFC115_halocarbon]
-tau=1700
-rho=0.00018
-CFC115_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=154.45
-
-[CCl4_halocarbon]
-tau=26.0
-rho=0.00013
-CCl4_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=153.8
-;ni=4
-;FC=1.06
-
-[CH3CCl3_halocarbon]
-tau=5.0
-rho=0.00006
-CH3CCl3_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=133.35
-;ni=3
-;FC=1.08
-
-[halon1211_halocarbon]
-tau=16.0
-rho=0.00003
-halon1211_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=165.35
-;ni=1
-;nj=1
-;FC=1.18
-
-[halon1301_halocarbon]
-tau=65.0
-rho=0.00032
-halon1301_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=148.9
-;nj=1
-;FC=0.62
-
-[halon2402_halocarbon]
-tau=20.0
-rho=0.00033
-halon2402_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=259.8
-;nj=2
-;FC=1.22
-
-[HCF22_halocarbon]
-tau=12.0
-rho=0.0002
-HCF22_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=86.45
-;ni=1
-;FC=0.35
-
-[HCF141b_halocarbon]
-tau=9.3
-rho=0.00014
-HCF141b_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=116.9
-;ni=2
-;FC=0.72
-
-[HCF142b_halocarbon]
-tau=17.9
-rho=0.0002
-HCF142b_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=100.45
-;ni=1
-;FC=0.36
-
-;[HCFC143_halocarbon]
-;tau=1.3
-;rho=0.00014
-;HCFC143_emissions=csv:emissions/RCP45_emissions.csv
-;molarMass=152.9
-
-[CH3Cl_halocarbon]
-tau=1.3
-rho=0.00001
-H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL
-CH3Cl_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=50.45
-;ni=1
-;FC=0.8
-
-[CH3Br_halocarbon]
-tau=0.7
-rho=0.00001
-H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR
-CH3Br_emissions=csv:emissions/RCP45_emissions.csv
-molarMass=94.9
-;nj=1
-;FC=1.12
diff --git a/inst/shinyApp/www/input/hector_rcp60.ini b/inst/shinyApp/www/input/hector_rcp60.ini
deleted file mode 100644
index c06ec6b..0000000
--- a/inst/shinyApp/www/input/hector_rcp60.ini
+++ /dev/null
@@ -1,388 +0,0 @@
-; Config file for hector model: RCP6
-;------------------------------------------------------------------------
-[core]
-run_name=rcp60
-startDate=1745
-endDate=2300
-do_spinup=1 ; if 1, spin up model before running (default=1)
-max_spinup=2000 ; maximum steps allowed for spinup (default=2000)
-
-;------------------------------------------------------------------------
-[onelineocean]
-enabled=0 ; 'enabled=0' will disable any component
-;output=0 ; 'output=0' will disable any component's output
-ocean_c=38000 ; Pg C
-
-;------------------------------------------------------------------------
-[ocean]
-enabled=1 ; putting 'enabled=0' will disable any component
-spinup_chem=0 ; run surface chemistry during spinup phase?
-;carbon_HL=145 ; high latitude, Pg C
-;carbon_LL=750 ; low latitude, Pg C
-;carbon_IO=10040 ; intermediate, Pg C
-;carbon_DO=27070 ; deep, Pg C
-
-tt=72000000 ; 7.2e7 thermohaline circulation, m3/s
-tu=49000000 ; 4.9e7 high latitude overturning, m3/s
-twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s
-tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s
-
-; Optional ocean C uptake constraint, Pg C/yr
-; If supplied, the model will use these data, ignoring what it calculates
-;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv
-
-;------------------------------------------------------------------------
-[simpleNbox]
-; Initial (preindustrial) carbon pools and fluxes
-; These are generally consistent with reconstructed (Siegenthaler and Oeschger
-; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008,
-; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values.
-
-; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes
-atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010)
-;C0=276 ; another way to specify, in ppmv
-;boreal.veg_c=100 ; e.g.
-;tropical.veg_c=450 ;
-veg_c=550 ; vegetation, Pg C
-;boreal.detritus_c=15
-;tropical.detritus_c=45
-detritus_c=55 ; detritus, Pg C
-;boreal.soil_c=1200
-;tropical.soil_c=578
-soil_c=1782 ; soil, Pg C
-;boreal.npp_flux0=5.0
-;tropical.npp_flux0=45.0
-npp_flux0=50.0 ; net primary production, Pg C/yr
-
-; Partitioning parameters
-f_nppv=0.35 ; Fraction of NPP to vegetation
-f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil)
-f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil)
-f_lucv=0.1 ; Fraction of land use change flux from vegetation
-f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil)
-
-; Anthropogenic contributions: direct emissions and land use change, Pg C/yr
-ffi_emissions=csv:emissions/RCP6_emissions.csv
-luc_emissions=csv:emissions/RCP6_emissions.csv
-
-; Optional atmospheric CO2 constraint, ppmv
-; If supplied, the model will use these data, ignoring what it calculates
-; Any residual between model [CO2] and model [CO2] will be put into the deep ocean
-;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record
-;Ca_constrain=csv:constraints/RCP6_co2ppm.csv ; MAGICC output
-
-; CO2 and temperature effects on the carbon cycle
-; these are global values, can optionally specify biome-specific ones as above
-beta=0.36 ; 0.36=about +20% @2xCO2
-q10_rh=2.0 ; respiration response Q10, unitless
-
-; Optional biome-specific warming factors
-; by default, assume 1.0 (i.e., warms as fast as the globe)
-;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally
-
-; Albedo effect, in W/m2. The model assumes a constant value if nothing specified
-Ftalbedo[1750]=0.0
-Ftalbedo[1950]=-0.2
-
-;------------------------------------------------------------------------
-[carbon-cycle-solver]
-eps_abs=1.0e-6 ; solution tolerances
-eps_rel=1.0e-6
-dt=0.25 ; default time step
-eps_spinup=0.001 ; spinup tolerance (drift), Pg C
-
-;------------------------------------------------------------------------
-[so2]
-S0=53841.2 ; historical sulphate from year 2000 (Gg)
-SN=42000 ; natural sulfur emissions (Gg)
-SO2_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-SV=csv:emissions/volcanic_RF.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[CH4]
-M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1
-Tsoil=160 ; CH4 loss to soil (years)
-Tstrat=120 ; CH4 loss to stratosphere (years)
-UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations
-CH4N=300 ; Natural CH4 emissions (Tgrams)
-CH4_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[OH]
-NOX_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-
-TOH0=6.6 ; inital OH lifetime (years)
-CNOX=0.0042 ; coefficent for NOX
-CCO=-0.000105 ; coefficent for CO
-CNMVOC=-0.000315 ; coefficent for NMVOC
-CCH4=-0.32 ; coefficent for CH4
-
-;------------------------------------------------------------------------
-[ozone]
-PO3=30.0 ; preindustrial O3 concentration
-NOX_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-;molarMass=16.04 ; grams
-;tau=10 ; lifetime in years (Oucher et al 2009)
-
-;------------------------------------------------------------------------
-[N2O]
-N0=272.9596 ; preindustrial nitrous oxide, ppbv
-UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations
-TN2O0=132 ; initial lifetime of N2O, years
-
-; An example of setting a time series by individual values
-; The model will interpolate as necessary between them
-N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN
-N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN
-N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN
-
-N2O_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-;molarMass=44.01 ; grams
-
-;------------------------------------------------------------------------
-[forcing]
-baseyear=1750 ; when to start reporting; by definition, all F=0 in this year
-
-; Optional radiative forcing constraint
-; If supplied, the model will use these data, ignoring what it calculates
-;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv
-
-;------------------------------------------------------------------------
-[temperature]
-enabled=1
-
-S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC
-diff=2.3 ; ocean heat diffusivity, cm2/s
-alpha=1.0 ; scaling factor for aerosol forcing
-volscl=1.0 ; scaling factor for volcanic forcing
-; Optional global temperature constraint
-; If supplied, the model will use these data, ignoring what it calculates
-; tgav_constrain=csv:constraints/tgav_historical.csv
-
-;------------------------------------------------------------------------
-[bc]
-BC_emissions=csv:emissions/RCP6_emissions.csv
-
-;------------------------------------------------------------------------
-[oc]
-OC_emissions=csv:emissions/RCP6_emissions.csv
-
-;------------------------------------------------------------------------
-; Halocarbons
-; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14)
-
-[CF4_halocarbon]
-tau=50000.0 ; lifetime in years
-rho=0.00008 ; radiative efficiencies W/m2/ppt
-H0=35.0,pptv ; preindustrial concentration, pptv
-CF4_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=88.0043 ; grams
-
-[C2F6_halocarbon]
-tau=10000.0
-rho=0.00026
-C2F6_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=138.01
-
-;[C4F10_halocarbon]
-;tau=2600.0
-;rho=0.00033
-;C4F10_emissions=csv:emissions/RCP6_emissions.csv
-;molarMass=238.0
-
-[HFC23_halocarbon]
-tau=270.0
-rho=0.00019
-HFC23_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=70.0
-
-[HFC32_halocarbon]
-tau=4.9
-rho=0.00011
-HFC32_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=52.0
-
-[HFC4310_halocarbon]
-tau=15.9
-rho=0.0004
-HFC4310_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=252.0
-
-[HFC125_halocarbon]
-tau=29.0
-rho=0.00023
-HFC125_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=120.02
-
-[HFC134a_halocarbon]
-tau=14.0
-rho=0.00016
-HFC134a_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=102.02
-
-[HFC143a_halocarbon]
-tau=52.0
-rho=0.00013
-HFC143a_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=84.04
-
-;[HFC152a_halocarbon]
-;tau=1.4
-;rho=0.00009
-;HFC152a_emissions=csv:emissions/RCP6_emissions.csv
-;molarMass=66.0
-
-[HFC227ea_halocarbon]
-tau=34.2
-rho=0.00026
-HFC227ea_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=170.03
-
-[HFC245fa_halocarbon]
-tau=7.6
-rho=0.00028
-HFC245fa_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=134.0
-
-;[HFC236fa_halocarbon]
-;tau=240.0
-;rho=0.00028
-;HFC236fa_emissions=csv:emissions/RCP6_emissions.csv
-;molarMass=152.0
-
-[SF6_halocarbon]
-tau=3200.0
-rho=0.00052
-SF6_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=146.06
-
-[CFC11_halocarbon]
-tau=45.0
-rho=0.00025
-CFC11_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=137.35
-;ni=3
-;FC=1
-
-[CFC12_halocarbon]
-tau=100
-rho=0.00032
-CFC12_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=120.9
-;ni=2
-;FC=0.6
-
-[CFC113_halocarbon]
-tau=85.0
-rho=0.0003
-CFC113_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=187.35
-;ni=3
-;FC=0.75
-
-[CFC114_halocarbon]
-tau=300
-rho=0.00031
-CFC114_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=170.9
-;ni=2
-;FC=0.28
-
-[CFC115_halocarbon]
-tau=1700
-rho=0.00018
-CFC115_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=154.45
-
-[CCl4_halocarbon]
-tau=26.0
-rho=0.00013
-CCl4_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=153.8
-;ni=4
-;FC=1.06
-
-[CH3CCl3_halocarbon]
-tau=5.0
-rho=0.00006
-CH3CCl3_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=133.35
-;ni=3
-;FC=1.08
-
-[halon1211_halocarbon]
-tau=16.0
-rho=0.00003
-halon1211_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=165.35
-;ni=1
-;nj=1
-;FC=1.18
-
-[halon1301_halocarbon]
-tau=65.0
-rho=0.00032
-halon1301_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=148.9
-;nj=1
-;FC=0.62
-
-[halon2402_halocarbon]
-tau=20.0
-rho=0.00033
-halon2402_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=259.8
-;nj=2
-;FC=1.22
-
-[HCFC22_halocarbon]
-tau=12.0
-rho=0.0002
-HCFC22_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=86.45
-;ni=1
-;FC=0.35
-
-[HCFC141b_halocarbon]
-tau=9.3
-rho=0.00014
-HCFC141b_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=116.9
-;ni=2
-;FC=0.72
-
-[HCFC142b_halocarbon]
-tau=17.9
-rho=0.0002
-HCFC142b_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=100.45
-;ni=1
-;FC=0.36
-
-;[HCFC143_halocarbon]
-;tau=1.3
-;rho=0.00014
-;HCFC143_emissions=csv:emissions/RCP6_emissions.csv
-;molarMass=152.9
-
-[CH3Cl_halocarbon]
-tau=1.3
-rho=0.00001
-H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL
-CH3Cl_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=50.45
-;ni=1
-;FC=0.8
-
-[CH3Br_halocarbon]
-tau=0.7
-rho=0.00001
-H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR
-CH3Br_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=94.9
-;nj=1
-;FC=1.12
diff --git a/inst/shinyApp/www/input/hector_rcp60_constrained.ini b/inst/shinyApp/www/input/hector_rcp60_constrained.ini
deleted file mode 100644
index 557fe75..0000000
--- a/inst/shinyApp/www/input/hector_rcp60_constrained.ini
+++ /dev/null
@@ -1,389 +0,0 @@
-; Config file for hector model: that uses RCP60 concentrations to drive Hector.
-; Emission driven Hector runs capture the carbon cycle whereas concentration runs do not.
-;------------------------------------------------------------------------
-[core]
-run_name=rcp60_co2constrain
-startDate=1745
-endDate=2300
-do_spinup=1 ; if 1, spin up model before running (default=1)
-max_spinup=2000 ; maximum steps allowed for spinup (default=2000)
-
-;------------------------------------------------------------------------
-[onelineocean]
-enabled=0 ; 'enabled=0' will disable any component
-;output=0 ; 'output=0' will disable any component's output
-ocean_c=38000 ; Pg C
-
-;------------------------------------------------------------------------
-[ocean]
-enabled=1 ; putting 'enabled=0' will disable any component
-spinup_chem=0 ; run surface chemistry during spinup phase?
-;carbon_HL=145 ; high latitude, Pg C
-;carbon_LL=750 ; low latitude, Pg C
-;carbon_IO=10040 ; intermediate, Pg C
-;carbon_DO=27070 ; deep, Pg C
-
-tt=72000000 ; 7.2e7 thermohaline circulation, m3/s
-tu=49000000 ; 4.9e7 high latitude overturning, m3/s
-twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s
-tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s
-
-; Optional ocean C uptake constraint, Pg C/yr
-; If supplied, the model will use these data, ignoring what it calculates
-;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv
-
-;------------------------------------------------------------------------
-[simpleNbox]
-; Initial (preindustrial) carbon pools and fluxes
-; These are generally consistent with reconstructed (Siegenthaler and Oeschger
-; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008,
-; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values.
-
-; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes
-atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010)
-;C0=276 ; another way to specify, in ppmv
-;boreal.veg_c=100 ; e.g.
-;tropical.veg_c=450 ;
-veg_c=550 ; vegetation, Pg C
-;boreal.detritus_c=15
-;tropical.detritus_c=45
-detritus_c=55 ; detritus, Pg C
-;boreal.soil_c=1200
-;tropical.soil_c=578
-soil_c=1782 ; soil, Pg C
-;boreal.npp_flux0=5.0
-;tropical.npp_flux0=45.0
-npp_flux0=50.0 ; net primary production, Pg C/yr
-
-; Partitioning parameters
-f_nppv=0.35 ; Fraction of NPP to vegetation
-f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil)
-f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil)
-f_lucv=0.1 ; Fraction of land use change flux from vegetation
-f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil)
-
-; Anthropogenic contributions: direct emissions and land use change, Pg C/yr
-ffi_emissions=csv:emissions/RCP6_emissions.csv
-luc_emissions=csv:emissions/RCP6_emissions.csv
-
-; Optional atmospheric CO2 constraint, ppmv
-; If supplied, the model will use these data, ignoring what it calculates
-; Any residual between model [CO2] and model [CO2] will be put into the deep ocean
-;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record
-Ca_constrain=csv:constraints/rcp60_co2ppm.csv ; MAGICC output
-
-; CO2 and temperature effects on the carbon cycle
-; these are global values, can optionally specify biome-specific ones as above
-beta=0.36 ; 0.36=about +20% @2xCO2
-q10_rh=2.0 ; respiration response Q10, unitless
-
-; Optional biome-specific warming factors
-; by default, assume 1.0 (i.e., warms as fast as the globe)
-;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally
-
-; Albedo effect, in W/m2. The model assumes a constant value if nothing specified
-Ftalbedo[1750]=0.0
-Ftalbedo[1950]=-0.2
-
-;------------------------------------------------------------------------
-[carbon-cycle-solver]
-eps_abs=1.0e-6 ; solution tolerances
-eps_rel=1.0e-6
-dt=0.25 ; default time step
-eps_spinup=0.001 ; spinup tolerance (drift), Pg C
-
-;------------------------------------------------------------------------
-[so2]
-S0=53841.2 ; historical sulphate from year 2000 (Gg)
-SN=42000 ; natural sulfur emissions (Gg)
-SO2_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-SV=csv:emissions/volcanic_RF.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[CH4]
-M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1
-Tsoil=160 ; CH4 loss to soil (years)
-Tstrat=120 ; CH4 loss to stratosphere (years)
-UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations
-CH4N=300 ; Natural CH4 emissions (Tgrams)
-CH4_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[OH]
-NOX_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-
-TOH0=6.6 ; inital OH lifetime (years)
-CNOX=0.0042 ; coefficent for NOX
-CCO=-0.000105 ; coefficent for CO
-CNMVOC=-0.000315 ; coefficent for NMVOC
-CCH4=-0.32 ; coefficent for CH4
-
-;------------------------------------------------------------------------
-[ozone]
-PO3=30.0 ; preindustrial O3 concentration
-NOX_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-;molarMass=16.04 ; grams
-;tau=10 ; lifetime in years (Oucher et al 2009)
-
-;------------------------------------------------------------------------
-[N2O]
-N0=272.9596 ; preindustrial nitrous oxide, ppbv
-UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations
-TN2O0=132 ; initial lifetime of N2O, years
-
-; An example of setting a time series by individual values
-; The model will interpolate as necessary between them
-N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN
-N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN
-N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN
-
-N2O_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series
-;molarMass=44.01 ; grams
-
-;------------------------------------------------------------------------
-[forcing]
-baseyear=1750 ; when to start reporting; by definition, all F=0 in this year
-
-; Optional radiative forcing constraint
-; If supplied, the model will use these data, ignoring what it calculates
-;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv
-
-;------------------------------------------------------------------------
-[temperature]
-enabled=1
-
-S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC
-diff=2.3 ; ocean heat diffusivity, cm2/s
-alpha=1.0 ; scaling factor for aerosol forcing
-volscl=1.0 ; scaling factor for volcanic forcing
-; Optional global temperature constraint
-; If supplied, the model will use these data, ignoring what it calculates
-; tgav_constrain=csv:constraints/tgav_historical.csv
-
-;------------------------------------------------------------------------
-[bc]
-BC_emissions=csv:emissions/RCP6_emissions.csv
-
-;------------------------------------------------------------------------
-[oc]
-OC_emissions=csv:emissions/RCP6_emissions.csv
-
-;------------------------------------------------------------------------
-; Halocarbons
-; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14)
-
-[CF4_halocarbon]
-tau=50000.0 ; lifetime in years
-rho=0.00008 ; radiative efficiencies W/m2/ppt
-H0=35.0,pptv ; preindustrial concentration, pptv
-CF4_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=88.0043 ; grams
-
-[C2F6_halocarbon]
-tau=10000.0
-rho=0.00026
-C2F6_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=138.01
-
-;[C4F10_halocarbon]
-;tau=2600.0
-;rho=0.00033
-;C4F10_emissions=csv:emissions/RCP6_emissions.csv
-;molarMass=238.0
-
-[HFC23_halocarbon]
-tau=270.0
-rho=0.00019
-HFC23_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=70.0
-
-[HFC32_halocarbon]
-tau=4.9
-rho=0.00011
-HFC32_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=52.0
-
-[HFC4310_halocarbon]
-tau=15.9
-rho=0.0004
-HFC4310_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=252.0
-
-[HFC125_halocarbon]
-tau=29.0
-rho=0.00023
-HFC125_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=120.02
-
-[HFC134a_halocarbon]
-tau=14.0
-rho=0.00016
-HFC134a_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=102.02
-
-[HFC143a_halocarbon]
-tau=52.0
-rho=0.00013
-HFC143a_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=84.04
-
-;[HFC152a_halocarbon]
-;tau=1.4
-;rho=0.00009
-;HFC152a_emissions=csv:emissions/RCP6_emissions.csv
-;molarMass=66.0
-
-[HFC227ea_halocarbon]
-tau=34.2
-rho=0.00026
-HFC227ea_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=170.03
-
-[HFC245fa_halocarbon]
-tau=7.6
-rho=0.00028
-HFC245fa_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=134.0
-
-;[HFC236fa_halocarbon]
-;tau=240.0
-;rho=0.00028
-;HFC236fa_emissions=csv:emissions/RCP6_emissions.csv
-;molarMass=152.0
-
-[SF6_halocarbon]
-tau=3200.0
-rho=0.00052
-SF6_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=146.06
-
-[CFC11_halocarbon]
-tau=45.0
-rho=0.00025
-CFC11_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=137.35
-;ni=3
-;FC=1
-
-[CFC12_halocarbon]
-tau=100
-rho=0.00032
-CFC12_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=120.9
-;ni=2
-;FC=0.6
-
-[CFC113_halocarbon]
-tau=85.0
-rho=0.0003
-CFC113_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=187.35
-;ni=3
-;FC=0.75
-
-[CFC114_halocarbon]
-tau=300
-rho=0.00031
-CFC114_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=170.9
-;ni=2
-;FC=0.28
-
-[CFC115_halocarbon]
-tau=1700
-rho=0.00018
-CFC115_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=154.45
-
-[CCl4_halocarbon]
-tau=26.0
-rho=0.00013
-CCl4_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=153.8
-;ni=4
-;FC=1.06
-
-[CH3CCl3_halocarbon]
-tau=5.0
-rho=0.00006
-CH3CCl3_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=133.35
-;ni=3
-;FC=1.08
-
-[halon1211_halocarbon]
-tau=16.0
-rho=0.00003
-halon1211_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=165.35
-;ni=1
-;nj=1
-;FC=1.18
-
-[halon1301_halocarbon]
-tau=65.0
-rho=0.00032
-halon1301_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=148.9
-;nj=1
-;FC=0.62
-
-[halon2402_halocarbon]
-tau=20.0
-rho=0.00033
-halon2402_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=259.8
-;nj=2
-;FC=1.22
-
-[HCF22_halocarbon]
-tau=12.0
-rho=0.0002
-HCF22_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=86.45
-;ni=1
-;FC=0.35
-
-[HCF141b_halocarbon]
-tau=9.3
-rho=0.00014
-HCF141b_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=116.9
-;ni=2
-;FC=0.72
-
-[HCF142b_halocarbon]
-tau=17.9
-rho=0.0002
-HCF142b_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=100.45
-;ni=1
-;FC=0.36
-
-;[HCFC143_halocarbon]
-;tau=1.3
-;rho=0.00014
-;HCFC143_emissions=csv:emissions/RCP6_emissions.csv
-;molarMass=152.9
-
-[CH3Cl_halocarbon]
-tau=1.3
-rho=0.00001
-H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL
-CH3Cl_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=50.45
-;ni=1
-;FC=0.8
-
-[CH3Br_halocarbon]
-tau=0.7
-rho=0.00001
-H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR
-CH3Br_emissions=csv:emissions/RCP6_emissions.csv
-molarMass=94.9
-;nj=1
-;FC=1.12
diff --git a/inst/shinyApp/www/input/hector_rcp85.ini b/inst/shinyApp/www/input/hector_rcp85.ini
deleted file mode 100644
index a55e64d..0000000
--- a/inst/shinyApp/www/input/hector_rcp85.ini
+++ /dev/null
@@ -1,388 +0,0 @@
-; Config file for hector model: RCP85
-;------------------------------------------------------------------------
-[core]
-run_name=rcp85
-startDate=1745
-endDate=2300
-do_spinup=1 ; if 1, spin up model before running (default=1)
-max_spinup=2000 ; maximum steps allowed for spinup (default=2000)
-
-;------------------------------------------------------------------------
-[onelineocean]
-enabled=0 ; 'enabled=0' will disable any component
-;output=0 ; 'output=0' will disable any component's output
-ocean_c=38000 ; Pg C
-
-;------------------------------------------------------------------------
-[ocean]
-enabled=1 ; putting 'enabled=0' will disable any component
-spinup_chem=0 ; run surface chemistry during spinup phase?
-;carbon_HL=145 ; high latitude, Pg C
-;carbon_LL=750 ; low latitude, Pg C
-;carbon_IO=10040 ; intermediate, Pg C
-;carbon_DO=27070 ; deep, Pg C
-
-tt=72000000 ; 7.2e7 thermohaline circulation, m3/s
-tu=49000000 ; 4.9e7 high latitude overturning, m3/s
-twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s
-tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s
-
-; Optional ocean C uptake constraint, Pg C/yr
-; If supplied, the model will use these data, ignoring what it calculates
-;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv
-
-;------------------------------------------------------------------------
-[simpleNbox]
-; Initial (preindustrial) carbon pools and fluxes
-; These are generally consistent with reconstructed (Siegenthaler and Oeschger
-; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008,
-; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values.
-
-; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes
-atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010)
-;C0=276 ; another way to specify, in ppmv
-;boreal.veg_c=100 ; e.g.
-;tropical.veg_c=450 ;
-veg_c=550 ; vegetation, Pg C
-;boreal.detritus_c=15
-;tropical.detritus_c=45
-detritus_c=55 ; detritus, Pg C
-;boreal.soil_c=1200
-;tropical.soil_c=578
-soil_c=1782 ; soil, Pg C
-;boreal.npp_flux0=5.0
-;tropical.npp_flux0=45.0
-npp_flux0=50.0 ; net primary production, Pg C/yr
-
-; Partitioning parameters
-f_nppv=0.35 ; Fraction of NPP to vegetation
-f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil)
-f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil)
-f_lucv=0.1 ; Fraction of land use change flux from vegetation
-f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil)
-
-; Anthropogenic contributions: direct emissions and land use change, Pg C/yr
-ffi_emissions=csv:emissions/RCP85_emissions.csv
-luc_emissions=csv:emissions/RCP85_emissions.csv
-
-; Optional atmospheric CO2 constraint, ppmv
-; If supplied, the model will use these data, ignoring what it calculates
-; Any residual between model [CO2] and model [CO2] will be put into the deep ocean
-;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record
-;Ca_constrain=csv:constraints/RCP85_co2ppm.csv ; MAGICC output
-
-; CO2 and temperature effects on the carbon cycle
-; these are global values, can optionally specify biome-specific ones as above
-beta=0.36 ; 0.36=about +20% @2xCO2
-q10_rh=2.0 ; respiration response Q10, unitless
-
-; Optional biome-specific warming factors
-; by default, assume 1.0 (i.e., warms as fast as the globe)
-;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally
-
-; Albedo effect, in W/m2. The model assumes a constant value if nothing specified
-Ftalbedo[1750]=0.0
-Ftalbedo[1950]=-0.2
-
-;------------------------------------------------------------------------
-[carbon-cycle-solver]
-eps_abs=1.0e-6 ; solution tolerances
-eps_rel=1.0e-6
-dt=0.25 ; default time step
-eps_spinup=0.001 ; spinup tolerance (drift), Pg C
-
-;------------------------------------------------------------------------
-[so2]
-S0=53841.2 ; historical sulphate from year 2000 (Gg)
-SN=42000 ; natural sulfur emissions (Gg)
-SO2_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series
-SV=csv:emissions/volcanic_RF.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[CH4]
-M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1
-Tsoil=160 ; CH4 loss to soil (years)
-Tstrat=120 ; CH4 loss to stratosphere (years)
-UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations
-CH4N=300 ; Natural CH4 emissions (Tgrams)
-CH4_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[OH]
-NOX_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series
-
-TOH0=6.6 ; inital OH lifetime (years)
-CNOX=0.0042 ; coefficent for NOX
-CCO=-0.000105 ; coefficent for CO
-CNMVOC=-0.000315 ; coefficent for NMVOC
-CCH4=-0.32 ; coefficent for CH4
-
-;------------------------------------------------------------------------
-[ozone]
-PO3=30.0 ; preindustrial O3 concentration
-NOX_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series
-CO_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series
-NMVOC_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series
-;molarMass=16.04 ; grams
-;tau=10 ; lifetime in years (Oucher et al 2009)
-
-;------------------------------------------------------------------------
-[N2O]
-N0=272.9596 ; preindustrial nitrous oxide, ppbv
-UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations
-TN2O0=132 ; initial lifetime of N2O, years
-
-; An example of setting a time series by individual values
-; The model will interpolate as necessary between them
-N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN
-N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN
-N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN
-
-N2O_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series
-;molarMass=44.01 ; grams
-
-;------------------------------------------------------------------------
-[forcing]
-baseyear=1750 ; when to start reporting; by definition, all F=0 in this year
-
-; Optional radiative forcing constraint
-; If supplied, the model will use these data, ignoring what it calculates
-;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv
-
-;------------------------------------------------------------------------
-[temperature]
-enabled=1
-
-S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC
-diff=2.3 ; ocean heat diffusivity, cm2/s
-alpha=1.0 ; scaling factor for aerosol forcing
-volscl=1.0 ; scaling factor for volcanic forcing
-; Optional global temperature constraint
-; If supplied, the model will use these data, ignoring what it calculates
-; tgav_constrain=csv:constraints/tgav_historical.csv
-
-;------------------------------------------------------------------------
-[bc]
-BC_emissions=csv:emissions/RCP85_emissions.csv
-
-;------------------------------------------------------------------------
-[oc]
-OC_emissions=csv:emissions/RCP85_emissions.csv
-
-;------------------------------------------------------------------------
-; Halocarbons
-; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14)
-
-[CF4_halocarbon]
-tau=50000.0 ; lifetime in years
-rho=0.00008 ; radiative efficiencies W/m2/ppt
-H0=35.0,pptv ; preindustrial concentration, pptv
-CF4_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=88.0043 ; grams
-
-[C2F6_halocarbon]
-tau=10000.0
-rho=0.00026
-C2F6_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=138.01
-
-;[C4F10_halocarbon]
-;tau=2600.0
-;rho=0.00033
-;C4F10_emissions=csv:emissions/RCP85_emissions.csv
-;molarMass=238.0
-
-[HFC23_halocarbon]
-tau=270.0
-rho=0.00019
-HFC23_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=70.0
-
-[HFC32_halocarbon]
-tau=4.9
-rho=0.00011
-HFC32_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=52.0
-
-[HFC4310_halocarbon]
-tau=15.9
-rho=0.0004
-HFC4310_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=252.0
-
-[HFC125_halocarbon]
-tau=29.0
-rho=0.00023
-HFC125_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=120.02
-
-[HFC134a_halocarbon]
-tau=14.0
-rho=0.00016
-HFC134a_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=102.02
-
-[HFC143a_halocarbon]
-tau=52.0
-rho=0.00013
-HFC143a_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=84.04
-
-;[HFC152a_halocarbon]
-;tau=1.4
-;rho=0.00009
-;HFC152a_emissions=csv:emissions/RCP85_emissions.csv
-;molarMass=66.0
-
-[HFC227ea_halocarbon]
-tau=34.2
-rho=0.00026
-HFC227ea_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=170.03
-
-[HFC245fa_halocarbon]
-tau=7.6
-rho=0.00028
-HFC245fa_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=134.0
-
-;[HFC236fa_halocarbon]
-;tau=240.0
-;rho=0.00028
-;HFC236fa_emissions=csv:emissions/RCP85_emissions.csv
-;molarMass=152.0
-
-[SF6_halocarbon]
-tau=3200.0
-rho=0.00052
-SF6_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=146.06
-
-[CFC11_halocarbon]
-tau=45.0
-rho=0.00025
-CFC11_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=137.35
-;ni=3
-;FC=1
-
-[CFC12_halocarbon]
-tau=100
-rho=0.00032
-CFC12_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=120.9
-;ni=2
-;FC=0.6
-
-[CFC113_halocarbon]
-tau=85.0
-rho=0.0003
-CFC113_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=187.35
-;ni=3
-;FC=0.75
-
-[CFC114_halocarbon]
-tau=300
-rho=0.00031
-CFC114_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=170.9
-;ni=2
-;FC=0.28
-
-[CFC115_halocarbon]
-tau=1700
-rho=0.00018
-CFC115_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=154.45
-
-[CCl4_halocarbon]
-tau=26.0
-rho=0.00013
-CCl4_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=153.8
-;ni=4
-;FC=1.06
-
-[CH3CCl3_halocarbon]
-tau=5.0
-rho=0.00006
-CH3CCl3_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=133.35
-;ni=3
-;FC=1.08
-
-[halon1211_halocarbon]
-tau=16.0
-rho=0.00003
-halon1211_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=165.35
-;ni=1
-;nj=1
-;FC=1.18
-
-[halon1301_halocarbon]
-tau=65.0
-rho=0.00032
-halon1301_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=148.9
-;nj=1
-;FC=0.62
-
-[halon2402_halocarbon]
-tau=20.0
-rho=0.00033
-halon2402_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=259.8
-;nj=2
-;FC=1.22
-
-[HCFC22_halocarbon]
-tau=12.0
-rho=0.0002
-HCFC22_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=86.45
-;ni=1
-;FC=0.35
-
-[HCFC141b_halocarbon]
-tau=9.3
-rho=0.00014
-HCFC141b_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=116.9
-;ni=2
-;FC=0.72
-
-[HCFC142b_halocarbon]
-tau=17.9
-rho=0.0002
-HCFC142b_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=100.45
-;ni=1
-;FC=0.36
-
-;[HCFC143_halocarbon]
-;tau=1.3
-;rho=0.00014
-;HCFC143_emissions=csv:emissions/RCP85_emissions.csv
-;molarMass=152.9
-
-[CH3Cl_halocarbon]
-tau=1.3
-rho=0.00001
-H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL
-CH3Cl_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=50.45
-;ni=1
-;FC=0.8
-
-[CH3Br_halocarbon]
-tau=0.7
-rho=0.00001
-H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR
-CH3Br_emissions=csv:emissions/RCP85_emissions.csv
-molarMass=94.9
-;nj=1
-;FC=1.12
diff --git a/inst/shinyApp/www/input/hector_rcp85_constrained.ini b/inst/shinyApp/www/input/hector_rcp85_constrained.ini
deleted file mode 100644
index a90fb50..0000000
--- a/inst/shinyApp/www/input/hector_rcp85_constrained.ini
+++ /dev/null
@@ -1,389 +0,0 @@
-; Config file for hector model: that uses RCP85 concentrations to drive Hector.
-; Emission driven Hector runs capture the carbon cycle whereas concentration runs do not.
-;------------------------------------------------------------------------
-[core]
-run_name=rcp85_co2constrain
-startDate=1745
-endDate=2300
-do_spinup=1 ; if 1, spin up model before running (default=1)
-max_spinup=2000 ; maximum steps allowed for spinup (default=2000)
-
-;------------------------------------------------------------------------
-[onelineocean]
-enabled=0 ; 'enabled=0' will disable any component
-;output=0 ; 'output=0' will disable any component's output
-ocean_c=38000 ; Pg C
-
-;------------------------------------------------------------------------
-[ocean]
-enabled=1 ; putting 'enabled=0' will disable any component
-spinup_chem=0 ; run surface chemistry during spinup phase?
-;carbon_HL=145 ; high latitude, Pg C
-;carbon_LL=750 ; low latitude, Pg C
-;carbon_IO=10040 ; intermediate, Pg C
-;carbon_DO=27070 ; deep, Pg C
-
-tt=72000000 ; 7.2e7 thermohaline circulation, m3/s
-tu=49000000 ; 4.9e7 high latitude overturning, m3/s
-twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s
-tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s
-
-; Optional ocean C uptake constraint, Pg C/yr
-; If supplied, the model will use these data, ignoring what it calculates
-;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv
-
-;------------------------------------------------------------------------
-[simpleNbox]
-; Initial (preindustrial) carbon pools and fluxes
-; These are generally consistent with reconstructed (Siegenthaler and Oeschger
-; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008,
-; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values.
-
-; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes
-atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010)
-;C0=276 ; another way to specify, in ppmv
-;boreal.veg_c=100 ; e.g.
-;tropical.veg_c=450 ;
-veg_c=550 ; vegetation, Pg C
-;boreal.detritus_c=15
-;tropical.detritus_c=45
-detritus_c=55 ; detritus, Pg C
-;boreal.soil_c=1200
-;tropical.soil_c=578
-soil_c=1782 ; soil, Pg C
-;boreal.npp_flux0=5.0
-;tropical.npp_flux0=45.0
-npp_flux0=50.0 ; net primary production, Pg C/yr
-
-; Partitioning parameters
-f_nppv=0.35 ; Fraction of NPP to vegetation
-f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil)
-f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil)
-f_lucv=0.1 ; Fraction of land use change flux from vegetation
-f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil)
-
-; Anthropogenic contributions: direct emissions and land use change, Pg C/yr
-ffi_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-luc_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-
-; Optional atmospheric CO2 constraint, ppmv
-; If supplied, the model will use these data, ignoring what it calculates
-; Any residual between model [CO2] and model [CO2] will be put into the deep ocean
-;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record
-Ca_constrain=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/constraints/rcp85_co2ppm.csv ; MAGICC output
-
-; CO2 and temperature effects on the carbon cycle
-; these are global values, can optionally specify biome-specific ones as above
-beta=0.36 ; 0.36=about +20% @2xCO2
-q10_rh=2.0 ; respiration response Q10, unitless
-
-; Optional biome-specific warming factors
-; by default, assume 1.0 (i.e., warms as fast as the globe)
-;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally
-
-; Albedo effect, in W/m2. The model assumes a constant value if nothing specified
-Ftalbedo[1750]=0.0
-Ftalbedo[1950]=-0.2
-
-;------------------------------------------------------------------------
-[carbon-cycle-solver]
-eps_abs=1.0e-6 ; solution tolerances
-eps_rel=1.0e-6
-dt=0.25 ; default time step
-eps_spinup=0.001 ; spinup tolerance (drift), Pg C
-
-;------------------------------------------------------------------------
-[so2]
-S0=53841.2 ; historical sulphate from year 2000 (Gg)
-SN=42000 ; natural sulfur emissions (Gg)
-SO2_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series
-SV=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/volcanic_RF.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[CH4]
-M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1
-Tsoil=160 ; CH4 loss to soil (years)
-Tstrat=120 ; CH4 loss to stratosphere (years)
-UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations
-CH4N=300 ; Natural CH4 emissions (Tgrams)
-CH4_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[OH]
-NOX_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series
-CO_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series
-NMVOC_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series
-
-TOH0=6.6 ; inital OH lifetime (years)
-CNOX=0.0042 ; coefficent for NOX
-CCO=-0.000105 ; coefficent for CO
-CNMVOC=-0.000315 ; coefficent for NMVOC
-CCH4=-0.32 ; coefficent for CH4
-
-;------------------------------------------------------------------------
-[ozone]
-PO3=30.0 ; preindustrial O3 concentration
-NOX_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series
-CO_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series
-NMVOC_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series
-;molarMass=16.04 ; grams
-;tau=10 ; lifetime in years (Oucher et al 2009)
-
-;------------------------------------------------------------------------
-[N2O]
-N0=272.9596 ; preindustrial nitrous oxide, ppbv
-UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations
-TN2O0=132 ; initial lifetime of N2O, years
-
-; An example of setting a time series by individual values
-; The model will interpolate as necessary between them
-N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN
-N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN
-N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN
-
-N2O_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series
-;molarMass=44.01 ; grams
-
-;------------------------------------------------------------------------
-[forcing]
-baseyear=1750 ; when to start reporting; by definition, all F=0 in this year
-
-; Optional radiative forcing constraint
-; If supplied, the model will use these data, ignoring what it calculates
-;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv
-
-;------------------------------------------------------------------------
-[temperature]
-enabled=1
-
-S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC
-diff=2.3 ; ocean heat diffusivity, cm2/s
-alpha=1.0 ; scaling factor for aerosol forcing
-volscl=1.0 ; scaling factor for volcanic forcing
-; Optional global temperature constraint
-; If supplied, the model will use these data, ignoring what it calculates
-; tgav_constrain=csv:constraints/tgav_historical.csv
-
-;------------------------------------------------------------------------
-[bc]
-BC_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-
-;------------------------------------------------------------------------
-[oc]
-OC_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-
-;------------------------------------------------------------------------
-; Halocarbons
-; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14)
-
-[CF4_halocarbon]
-tau=50000.0 ; lifetime in years
-rho=0.00008 ; radiative efficiencies W/m2/ppt
-H0=35.0,pptv ; preindustrial concentration, pptv
-CF4_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=88.0043 ; grams
-
-[C2F6_halocarbon]
-tau=10000.0
-rho=0.00026
-C2F6_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=138.01
-
-;[C4F10_halocarbon]
-;tau=2600.0
-;rho=0.00033
-;C4F10_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-;molarMass=238.0
-
-[HFC23_halocarbon]
-tau=270.0
-rho=0.00019
-HFC23_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=70.0
-
-[HFC32_halocarbon]
-tau=4.9
-rho=0.00011
-HFC32_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=52.0
-
-[HFC4310_halocarbon]
-tau=15.9
-rho=0.0004
-HFC4310_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=252.0
-
-[HFC125_halocarbon]
-tau=29.0
-rho=0.00023
-HFC125_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=120.02
-
-[HFC134a_halocarbon]
-tau=14.0
-rho=0.00016
-HFC134a_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=102.02
-
-[HFC143a_halocarbon]
-tau=52.0
-rho=0.00013
-HFC143a_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=84.04
-
-;[HFC152a_halocarbon]
-;tau=1.4
-;rho=0.00009
-;HFC152a_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-;molarMass=66.0
-
-[HFC227ea_halocarbon]
-tau=34.2
-rho=0.00026
-HFC227ea_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=170.03
-
-[HFC245fa_halocarbon]
-tau=7.6
-rho=0.00028
-HFC245fa_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=134.0
-
-;[HFC236fa_halocarbon]
-;tau=240.0
-;rho=0.00028
-;HFC236fa_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-;molarMass=152.0
-
-[SF6_halocarbon]
-tau=3200.0
-rho=0.00052
-SF6_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=146.06
-
-[CFC11_halocarbon]
-tau=45.0
-rho=0.00025
-CFC11_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=137.35
-;ni=3
-;FC=1
-
-[CFC12_halocarbon]
-tau=100
-rho=0.00032
-CFC12_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=120.9
-;ni=2
-;FC=0.6
-
-[CFC113_halocarbon]
-tau=85.0
-rho=0.0003
-CFC113_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=187.35
-;ni=3
-;FC=0.75
-
-[CFC114_halocarbon]
-tau=300
-rho=0.00031
-CFC114_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=170.9
-;ni=2
-;FC=0.28
-
-[CFC115_halocarbon]
-tau=1700
-rho=0.00018
-CFC115_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=154.45
-
-[CCl4_halocarbon]
-tau=26.0
-rho=0.00013
-CCl4_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=153.8
-;ni=4
-;FC=1.06
-
-[CH3CCl3_halocarbon]
-tau=5.0
-rho=0.00006
-CH3CCl3_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=133.35
-;ni=3
-;FC=1.08
-
-[halon1211_halocarbon]
-tau=16.0
-rho=0.00003
-halon1211_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=165.35
-;ni=1
-;nj=1
-;FC=1.18
-
-[halon1301_halocarbon]
-tau=65.0
-rho=0.00032
-halon1301_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=148.9
-;nj=1
-;FC=0.62
-
-[halon2402_halocarbon]
-tau=20.0
-rho=0.00033
-halon2402_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=259.8
-;nj=2
-;FC=1.22
-
-[HCF22_halocarbon]
-tau=12.0
-rho=0.0002
-HCF22_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=86.45
-;ni=1
-;FC=0.35
-
-[HCF141b_halocarbon]
-tau=9.3
-rho=0.00014
-HCF141b_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=116.9
-;ni=2
-;FC=0.72
-
-[HCF142b_halocarbon]
-tau=17.9
-rho=0.0002
-HCF142b_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=100.45
-;ni=1
-;FC=0.36
-
-;[HCFC143_halocarbon]
-;tau=1.3
-;rho=0.00014
-;HCFC143_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-;molarMass=152.9
-
-[CH3Cl_halocarbon]
-tau=1.3
-rho=0.00001
-H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL
-CH3Cl_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=50.45
-;ni=1
-;FC=0.8
-
-[CH3Br_halocarbon]
-tau=0.7
-rho=0.00001
-H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR
-CH3Br_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv
-molarMass=94.9
-;nj=1
-;FC=1.12
diff --git a/inst/shinyApp/www/input/hector_rcp85_constrained2.ini b/inst/shinyApp/www/input/hector_rcp85_constrained2.ini
deleted file mode 100644
index f45cbd2..0000000
--- a/inst/shinyApp/www/input/hector_rcp85_constrained2.ini
+++ /dev/null
@@ -1,389 +0,0 @@
-; Config file for hector model: that uses RCP85 concentrations to drive Hector.
-; Emission driven Hector runs capture the carbon cycle whereas concentration runs do not.
-;------------------------------------------------------------------------
-[core]
-run_name=rcp85_co2constrain
-startDate=1950
-endDate=2100
-do_spinup=1 ; if 1, spin up model before running (default=1)
-max_spinup=2000 ; maximum steps allowed for spinup (default=2000)
-
-;------------------------------------------------------------------------
-[onelineocean]
-enabled=0 ; 'enabled=0' will disable any component
-;output=0 ; 'output=0' will disable any component's output
-ocean_c=38000 ; Pg C
-
-;------------------------------------------------------------------------
-[ocean]
-enabled=1 ; putting 'enabled=0' will disable any component
-spinup_chem=0 ; run surface chemistry during spinup phase?
-;carbon_HL=145 ; high latitude, Pg C
-;carbon_LL=750 ; low latitude, Pg C
-;carbon_IO=10040 ; intermediate, Pg C
-;carbon_DO=27070 ; deep, Pg C
-
-tt=72000000 ; 7.2e7 thermohaline circulation, m3/s
-tu=49000000 ; 4.9e7 high latitude overturning, m3/s
-twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s
-tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s
-
-; Optional ocean C uptake constraint, Pg C/yr
-; If supplied, the model will use these data, ignoring what it calculates
-;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv
-
-;------------------------------------------------------------------------
-[simpleNbox]
-; Initial (preindustrial) carbon pools and fluxes
-; These are generally consistent with reconstructed (Siegenthaler and Oeschger
-; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008,
-; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values.
-
-; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes
-atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010)
-;C0=276 ; another way to specify, in ppmv
-;boreal.veg_c=100 ; e.g.
-;tropical.veg_c=450 ;
-veg_c=550 ; vegetation, Pg C
-;boreal.detritus_c=15
-;tropical.detritus_c=45
-detritus_c=55 ; detritus, Pg C
-;boreal.soil_c=1200
-;tropical.soil_c=578
-soil_c=1782 ; soil, Pg C
-;boreal.npp_flux0=5.0
-;tropical.npp_flux0=45.0
-npp_flux0=50.0 ; net primary production, Pg C/yr
-
-; Partitioning parameters
-f_nppv=0.35 ; Fraction of NPP to vegetation
-f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil)
-f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil)
-f_lucv=0.1 ; Fraction of land use change flux from vegetation
-f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil)
-
-; Anthropogenic contributions: direct emissions and land use change, Pg C/yr
-ffi_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-luc_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-
-; Optional atmospheric CO2 constraint, ppmv
-; If supplied, the model will use these data, ignoring what it calculates
-; Any residual between model [CO2] and model [CO2] will be put into the deep ocean
-;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record
-Ca_constrain=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/constraints/rcp85_co2ppm.csv ; MAGICC output
-
-; CO2 and temperature effects on the carbon cycle
-; these are global values, can optionally specify biome-specific ones as above
-beta=0.36 ; 0.36=about +20% @2xCO2
-q10_rh=2.0 ; respiration response Q10, unitless
-
-; Optional biome-specific warming factors
-; by default, assume 1.0 (i.e., warms as fast as the globe)
-;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally
-
-; Albedo effect, in W/m2. The model assumes a constant value if nothing specified
-Ftalbedo[1750]=0.0
-Ftalbedo[1950]=-0.2
-
-;------------------------------------------------------------------------
-[carbon-cycle-solver]
-eps_abs=1.0e-6 ; solution tolerances
-eps_rel=1.0e-6
-dt=0.25 ; default time step
-eps_spinup=0.001 ; spinup tolerance (drift), Pg C
-
-;------------------------------------------------------------------------
-[so2]
-S0=53841.2 ; historical sulphate from year 2000 (Gg)
-SN=42000 ; natural sulfur emissions (Gg)
-SO2_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series
-SV=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/volcanic_RF.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[CH4]
-M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1
-Tsoil=160 ; CH4 loss to soil (years)
-Tstrat=120 ; CH4 loss to stratosphere (years)
-UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations
-CH4N=300 ; Natural CH4 emissions (Tgrams)
-CH4_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series
-
-;------------------------------------------------------------------------
-[OH]
-NOX_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series
-CO_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series
-NMVOC_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series
-
-TOH0=6.6 ; inital OH lifetime (years)
-CNOX=0.0042 ; coefficent for NOX
-CCO=-0.000105 ; coefficent for CO
-CNMVOC=-0.000315 ; coefficent for NMVOC
-CCH4=-0.32 ; coefficent for CH4
-
-;------------------------------------------------------------------------
-[ozone]
-PO3=30.0 ; preindustrial O3 concentration
-NOX_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series
-CO_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series
-NMVOC_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series
-;molarMass=16.04 ; grams
-;tau=10 ; lifetime in years (Oucher et al 2009)
-
-;------------------------------------------------------------------------
-[N2O]
-N0=272.9596 ; preindustrial nitrous oxide, ppbv
-UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations
-TN2O0=132 ; initial lifetime of N2O, years
-
-; An example of setting a time series by individual values
-; The model will interpolate as necessary between them
-N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN
-N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN
-N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN
-
-N2O_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series
-;molarMass=44.01 ; grams
-
-;------------------------------------------------------------------------
-[forcing]
-baseyear=1951 ; when to start reporting; by definition, all F=0 in this year
-
-; Optional radiative forcing constraint
-; If supplied, the model will use these data, ignoring what it calculates
-;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv
-
-;------------------------------------------------------------------------
-[temperature]
-enabled=1
-
-S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC
-diff=2.3 ; ocean heat diffusivity, cm2/s
-alpha=1.0 ; scaling factor for aerosol forcing
-volscl=1.0 ; scaling factor for volcanic forcing
-; Optional global temperature constraint
-; If supplied, the model will use these data, ignoring what it calculates
-; tgav_constrain=csv:constraints/tgav_historical.csv
-
-;------------------------------------------------------------------------
-[bc]
-BC_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-
-;------------------------------------------------------------------------
-[oc]
-OC_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-
-;------------------------------------------------------------------------
-; Halocarbons
-; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14)
-
-[CF4_halocarbon]
-tau=50000.0 ; lifetime in years
-rho=0.00008 ; radiative efficiencies W/m2/ppt
-H0=35.0,pptv ; preindustrial concentration, pptv
-CF4_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=88.0043 ; grams
-
-[C2F6_halocarbon]
-tau=10000.0
-rho=0.00026
-C2F6_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=138.01
-
-;[C4F10_halocarbon]
-;tau=2600.0
-;rho=0.00033
-;C4F10_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-;molarMass=238.0
-
-[HFC23_halocarbon]
-tau=270.0
-rho=0.00019
-HFC23_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=70.0
-
-[HFC32_halocarbon]
-tau=4.9
-rho=0.00011
-HFC32_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=52.0
-
-[HFC4310_halocarbon]
-tau=15.9
-rho=0.0004
-HFC4310_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=252.0
-
-[HFC125_halocarbon]
-tau=29.0
-rho=0.00023
-HFC125_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=120.02
-
-[HFC134a_halocarbon]
-tau=14.0
-rho=0.00016
-HFC134a_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=102.02
-
-[HFC143a_halocarbon]
-tau=52.0
-rho=0.00013
-HFC143a_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=84.04
-
-;[HFC152a_halocarbon]
-;tau=1.4
-;rho=0.00009
-;HFC152a_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-;molarMass=66.0
-
-[HFC227ea_halocarbon]
-tau=34.2
-rho=0.00026
-HFC227ea_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=170.03
-
-[HFC245fa_halocarbon]
-tau=7.6
-rho=0.00028
-HFC245fa_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=134.0
-
-;[HFC236fa_halocarbon]
-;tau=240.0
-;rho=0.00028
-;HFC236fa_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-;molarMass=152.0
-
-[SF6_halocarbon]
-tau=3200.0
-rho=0.00052
-SF6_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=146.06
-
-[CFC11_halocarbon]
-tau=45.0
-rho=0.00025
-CFC11_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=137.35
-;ni=3
-;FC=1
-
-[CFC12_halocarbon]
-tau=100
-rho=0.00032
-CFC12_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=120.9
-;ni=2
-;FC=0.6
-
-[CFC113_halocarbon]
-tau=85.0
-rho=0.0003
-CFC113_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=187.35
-;ni=3
-;FC=0.75
-
-[CFC114_halocarbon]
-tau=300
-rho=0.00031
-CFC114_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=170.9
-;ni=2
-;FC=0.28
-
-[CFC115_halocarbon]
-tau=1700
-rho=0.00018
-CFC115_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=154.45
-
-[CCl4_halocarbon]
-tau=26.0
-rho=0.00013
-CCl4_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=153.8
-;ni=4
-;FC=1.06
-
-[CH3CCl3_halocarbon]
-tau=5.0
-rho=0.00006
-CH3CCl3_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=133.35
-;ni=3
-;FC=1.08
-
-[halon1211_halocarbon]
-tau=16.0
-rho=0.00003
-halon1211_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=165.35
-;ni=1
-;nj=1
-;FC=1.18
-
-[halon1301_halocarbon]
-tau=65.0
-rho=0.00032
-halon1301_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=148.9
-;nj=1
-;FC=0.62
-
-[halon2402_halocarbon]
-tau=20.0
-rho=0.00033
-halon2402_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=259.8
-;nj=2
-;FC=1.22
-
-[HCF22_halocarbon]
-tau=12.0
-rho=0.0002
-HCF22_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=86.45
-;ni=1
-;FC=0.35
-
-[HCF141b_halocarbon]
-tau=9.3
-rho=0.00014
-HCF141b_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=116.9
-;ni=2
-;FC=0.72
-
-[HCF142b_halocarbon]
-tau=17.9
-rho=0.0002
-HCF142b_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=100.45
-;ni=1
-;FC=0.36
-
-;[HCFC143_halocarbon]
-;tau=1.3
-;rho=0.00014
-;HCFC143_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-;molarMass=152.9
-
-[CH3Cl_halocarbon]
-tau=1.3
-rho=0.00001
-H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL
-CH3Cl_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=50.45
-;ni=1
-;FC=0.8
-
-[CH3Br_halocarbon]
-tau=0.7
-rho=0.00001
-H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR
-CH3Br_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv
-molarMass=94.9
-;nj=1
-;FC=1.12
diff --git a/h2/www/inputs/ssp119_emissions.csv b/inst/shinyApp/www/inputs/ssp119_emissions.csv
similarity index 100%
rename from h2/www/inputs/ssp119_emissions.csv
rename to inst/shinyApp/www/inputs/ssp119_emissions.csv
diff --git a/h2/www/inputs/ssp126_emissions.csv b/inst/shinyApp/www/inputs/ssp126_emissions.csv
similarity index 100%
rename from h2/www/inputs/ssp126_emissions.csv
rename to inst/shinyApp/www/inputs/ssp126_emissions.csv
diff --git a/h2/www/inputs/ssp245_emissions.csv b/inst/shinyApp/www/inputs/ssp245_emissions.csv
similarity index 100%
rename from h2/www/inputs/ssp245_emissions.csv
rename to inst/shinyApp/www/inputs/ssp245_emissions.csv
diff --git a/h2/www/inputs/ssp370_emissions.csv b/inst/shinyApp/www/inputs/ssp370_emissions.csv
similarity index 100%
rename from h2/www/inputs/ssp370_emissions.csv
rename to inst/shinyApp/www/inputs/ssp370_emissions.csv
diff --git a/h2/www/inputs/ssp434_emissions.csv b/inst/shinyApp/www/inputs/ssp434_emissions.csv
similarity index 100%
rename from h2/www/inputs/ssp434_emissions.csv
rename to inst/shinyApp/www/inputs/ssp434_emissions.csv
diff --git a/h2/www/inputs/ssp460_emissions.csv b/inst/shinyApp/www/inputs/ssp460_emissions.csv
similarity index 100%
rename from h2/www/inputs/ssp460_emissions.csv
rename to inst/shinyApp/www/inputs/ssp460_emissions.csv
diff --git a/h2/www/inputs/ssp534-over_emissions.csv b/inst/shinyApp/www/inputs/ssp534-over_emissions.csv
similarity index 100%
rename from h2/www/inputs/ssp534-over_emissions.csv
rename to inst/shinyApp/www/inputs/ssp534-over_emissions.csv
diff --git a/h2/www/inputs/ssp585_emissions.csv b/inst/shinyApp/www/inputs/ssp585_emissions.csv
similarity index 100%
rename from h2/www/inputs/ssp585_emissions.csv
rename to inst/shinyApp/www/inputs/ssp585_emissions.csv
diff --git a/inst/shinyApp/www/maps/pr_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/pr_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds
deleted file mode 100644
index 92ad388..0000000
Binary files a/inst/shinyApp/www/maps/pr_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ
diff --git a/inst/shinyApp/www/maps/pr_Amon_CanESM2_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/pr_Amon_CanESM2_rcp85_r1i1p1_200601-210012_pattern.rds
deleted file mode 100644
index 94fb348..0000000
Binary files a/inst/shinyApp/www/maps/pr_Amon_CanESM2_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ
diff --git a/inst/shinyApp/www/maps/pr_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/pr_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds
deleted file mode 100644
index 6b21683..0000000
Binary files a/inst/shinyApp/www/maps/pr_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ
diff --git a/inst/shinyApp/www/maps/pr_Amon_MIROC-ESM_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/pr_Amon_MIROC-ESM_rcp85_r1i1p1_200601-210012_pattern.rds
deleted file mode 100644
index 96eff56..0000000
Binary files a/inst/shinyApp/www/maps/pr_Amon_MIROC-ESM_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ
diff --git a/inst/shinyApp/www/maps/pr_Amon_MPI-ESM-LR_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/pr_Amon_MPI-ESM-LR_rcp85_r1i1p1_200601-210012_pattern.rds
deleted file mode 100644
index 9a69fd4..0000000
Binary files a/inst/shinyApp/www/maps/pr_Amon_MPI-ESM-LR_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ
diff --git a/inst/shinyApp/www/maps/pr_Amon_MRI-ESM1_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/pr_Amon_MRI-ESM1_rcp85_r1i1p1_200601-210012_pattern.rds
deleted file mode 100644
index 3861763..0000000
Binary files a/inst/shinyApp/www/maps/pr_Amon_MRI-ESM1_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ
diff --git a/inst/shinyApp/www/maps/tas_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/tas_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds
deleted file mode 100644
index 8b280ae..0000000
Binary files a/inst/shinyApp/www/maps/tas_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ
diff --git a/inst/shinyApp/www/maps/tas_Amon_CanESM2_esmrcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/tas_Amon_CanESM2_esmrcp85_r1i1p1_200601-210012_pattern.rds
deleted file mode 100644
index ee5ff13..0000000
Binary files a/inst/shinyApp/www/maps/tas_Amon_CanESM2_esmrcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ
diff --git a/inst/shinyApp/www/maps/tas_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/tas_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds
deleted file mode 100644
index c6ccf1f..0000000
Binary files a/inst/shinyApp/www/maps/tas_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ
diff --git a/inst/shinyApp/www/maps/tas_Amon_MIROC-ESM_esmrcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/tas_Amon_MIROC-ESM_esmrcp85_r1i1p1_200601-210012_pattern.rds
deleted file mode 100644
index 694732f..0000000
Binary files a/inst/shinyApp/www/maps/tas_Amon_MIROC-ESM_esmrcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ
diff --git a/inst/shinyApp/www/maps/tas_Amon_MPI-ESM-LR_esmrcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/tas_Amon_MPI-ESM-LR_esmrcp85_r1i1p1_200601-210012_pattern.rds
deleted file mode 100644
index 2b673b0..0000000
Binary files a/inst/shinyApp/www/maps/tas_Amon_MPI-ESM-LR_esmrcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ
diff --git a/inst/shinyApp/www/maps/tas_Amon_MRI-ESM1_esmrcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/tas_Amon_MRI-ESM1_esmrcp85_r1i1p1_200601-210012_pattern.rds
deleted file mode 100644
index c6ccf1f..0000000
Binary files a/inst/shinyApp/www/maps/tas_Amon_MRI-ESM1_esmrcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ
diff --git a/inst/shinyApp/www/style.css b/inst/shinyApp/www/style.css
deleted file mode 100644
index 833c71e..0000000
--- a/inst/shinyApp/www/style.css
+++ /dev/null
@@ -1,92 +0,0 @@
-
-body
-{
- font-family:"Barlow Regular", Sans-Serif !important;
- font-size: 20px;
-}
-
-.about-info
-{
- font-size: 12px;
-}
-
-.c-emissions
-{
- font-size: 14px;
-}
-
-.container {
- position: relative;
- width:100%;
-}
-
-.header-text-title
-{
- position: absolute;
- color: #FFFFFF;
- top: 40%;
- left: 50%;
- text-align: center;!important
- max-width: 120px;
- margin-right: -50%;
- transform: translate(-50%, -50%)
-}
-
-.header-text-sub
-{
- position: absolute;
- color: #FFFFFF;
- text-align: center;
- font-size: 100%;
- top: 60%;
- left: 50%;
- margin-right: -50%;
- transform: translate(-50%, -50%)
-}
-
-.home-text
-{
- font-size: 16px;
-}
-
-.hrNav
-{
- font-size: 50px;
-}
-
-.logo
-{
-
- position: absolute;
- top: 2rem;
- left: 2rem;
- margin:20px;
- padding:0px 8px;
- width:5em;
-}
-
-.maps
-{
- font-size: 16px;
-}
-
-.nav-tabs
-{
- font-size: 14px;
-}
-
-.output-vars
-{
- font-size: 16px;
-}
-
-.params
-{
- font-size: 14px;
-}
-
-/* .selectize-input
-{
- height: 60px;
- width: 300px;
-} */