diff --git a/DESCRIPTION b/DESCRIPTION index 321a0c0..7114bc0 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: rGLM Type: Package Title: rGLM -Version: 0.2.0 +Version: 0.2.1 Date: 2013-07-23 Author: Jordan S Read, Luke A Winslow Maintainer: Jordan S Read , Luke A Winslow diff --git a/Examples/GLMncExample.R b/Examples/GLMncExample.R deleted file mode 100644 index 48099b6..0000000 --- a/Examples/GLMncExample.R +++ /dev/null @@ -1,16 +0,0 @@ -# example usage of GLMnetCDF -require('rGLM') - - - -# 1) create data frame for GLM water temperature on a uniform grid: -#lyrDz <- 0.25 # grid vertical thickness for resampling -out.depths <- c(0,.5,1.5,5,10) -GLMfolder <- '../resources/' -GLMfile <- 'output.nc' -GLMnc <- getGLMnc(fileName=GLMfile,folder=GLMfolder) -GLMwtr <- getTempGLMnc(GLMnc=GLMnc,ref='surface',z.out=out.depths) - -# 2) write data to a text file -outFolder <- '../Examples/' -write.wtr(wtr=GLMwtr,lakeName='testLake',folder=outFolder) \ No newline at end of file diff --git a/Examples/nml_readwrite.R b/Examples/nml_readwrite.R deleted file mode 100644 index e171dc7..0000000 --- a/Examples/nml_readwrite.R +++ /dev/null @@ -1,31 +0,0 @@ -# example for writing all Lake Analyzer files from GLM output -require('rGLM') - -# 1) open existing gml.nml file -GLMfolder <- '../resources/' -NMLfile <- 'glm.nml' -nml <- read.nml(folder=GLMfolder,fileName=NMLfile) - -# 2) pretty print the nml list -pretty.nml(nml) - -# 3) get existing value from nml for Kw parameter -get.nml(nml,argName='Kw') - -# 4) change Kw value to a new one -nml <- set.nml(nml,argName='Kw',argVal=0.4) - -# 5) view the change in the nml -get.nml(nml,argName='Kw') - -# 6) change a list of params -nml <- set.nml(nml,argList=list('Kw'=0.4,'outflow_factor'=0.9)) - -# 7) try to set a param that doesn't exist (will error). Un-comment this to try: -#nml <- set.nml(nml,argName='donkey',argVal=23) - -# 8) pretty print the nml list -pretty.nml(nml) - -# 9) write it back to glm.nml so it can be used in GLM -write.nml(nml,folder=GLMfolder,fileName='glm2.nml') \ No newline at end of file diff --git a/Examples/writeAll_LA.R b/Examples/writeAll_LA.R deleted file mode 100644 index 63d5026..0000000 --- a/Examples/writeAll_LA.R +++ /dev/null @@ -1,33 +0,0 @@ -# example for writing all Lake Analyzer files from GLM output -require('rGLM') - -# 1) create data frame for GLM water temperature on a uniform grid: -lyrDz <- 0.5 # grid vertical thickness for resampling -lkName <- "testLake" -GLMfolder <- '../resources/' -out.folder <- '.' -GLMfile <- 'output.nc' -NMLfile <- 'glm.nml' -GLMnc <- getGLMnc(fileName=GLMfile,folder=GLMfolder) -nml <- read.nml(folder=GLMfolder,fileName=NMLfile) -lke <- init.lke() # gets a default list of lke parameters -pretty.nml(nml) # print the nml list - -bth <- get.bth(nml) -mxDep <- max(bth[,1]) - -write.bth(bth,lkName,folder=out.folder) # write the .bth file - -lke <- set.lke(lke,'totalDep',mxDep) -write.lke(lke,lkName,folder=out.folder) # write the .lke file - -lvl <- get.lvl(GLMnc,nml) -write.lvl(lvl,lkName,folder=out.folder) # write the .lvl file - -depths <- seq(0,mxDep,by=lyrDz) -wtr <- get.wtr(GLMnc,ref='surface',z.out=depths) -write.wtr(wtr,lkName,folder=out.folder) # write the .wtr file - -wnd <- get.wnd(GLMnc) -write.wnd(wnd,lkName,folder=out.folder) # write the .wtr file - diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b6ce793 --- /dev/null +++ b/LICENSE @@ -0,0 +1,19 @@ +U.S.Geological Survey Software User Rights Notice + +Copied from http://water.usgs.gov/software/help/notice/ on September 7, 2012. Please check webpage for updates. + +Software and related material (data and (or) documentation), contained in or furnished in connection with a software distribution, are made available by the U.S. Geological Survey (USGS) to be used in the public interest and in the advancement of science. You may, without any fee or cost, use, copy, modify, or distribute this software, and any derivative works thereof, and its supporting documentation, subject to the following restrictions and understandings. + +If you distribute copies or modifications of the software and related material, make sure the recipients receive a copy of this notice and receive or can get a copy of the original distribution. If the software and (or) related material are modified and distributed, it must be made clear that the recipients do not have the original and they must be informed of the extent of the modifications. For example, modified files must include a prominent notice stating the modifications made, the author of the modifications, and the date the modifications were made. This restriction is necessary to guard against problems introduced in the software by others, reflecting negatively on the reputation of the USGS. + +The software is public property and you therefore have the right to the source code, if desired. + +You may charge fees for distribution, warranties, and services provided in connection with the software or derivative works thereof. The name USGS can be used in any advertising or publicity to endorse or promote any products or commercial entity using this software if specific written permission is obtained from the USGS. + +The user agrees to appropriately acknowledge the authors and the USGS in publications that result from the use of this software or in products that include this software in whole or in part. + +Because the software and related material are free (other than nominal materials and handling fees) and provided "as is," the authors, the USGS, and the United States Government have made no warranty, express or implied, as to accuracy or completeness and are not obligated to provide the user with any support, consulting, training or assistance of any kind with regard to the use, operation, and performance of this software nor to provide the user with any updates, revisions, new versions or "bug fixes". + +The user assumes all risk for any damages whatsoever resulting from loss of use, data, or profits arising in connection with the access, use, quality, or performance of this software. + +R and other package dependencies have more restrictive licenses. \ No newline at end of file diff --git a/NAMESPACE b/NAMESPACE index 6dab6c1..acc19cf 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -1,5 +1,6 @@ # Generated by roxygen2 (4.0.1): do not edit by hand +export(get_evaporation) export(get_hypsography) export(get_ice) export(get_nml_value) diff --git a/R/get_evaporation.R b/R/get_evaporation.R new file mode 100644 index 0000000..e968bbc --- /dev/null +++ b/R/get_evaporation.R @@ -0,0 +1,26 @@ +#'@title get evaporation from GLM simulation +#'@description +#'Creates a data.frame with DateTime and E (mm/day). \cr +#' +#'@param file a string with the path to the netcdf output from GLM +#'@return a data.frame with DateTime and evaporation (in mm/day) +#'@keywords methods +#'@author +#'Jordan S. Read +#'@examples +#'file <- system.file('extdata', 'output.nc', package = 'rGLM') +#'evap <- get_evaporation(file) +#'plot(evap) +#'@import ncdf4 +#'@export +get_evaporation <- function(file){ + day_secs <- 86400 + m_to_mm <- 1000 + glm_nc <- get_glm_nc(file) + evaporation <- ncvar_get(glm_nc, "evap")*day_secs*m_to_mm + time <- get_time(glm_nc) + + glm_evaporation <- data.frame('DateTime'=time, 'evaporation(mm/d)'=evaporation) + close_glm_nc(glm_nc) + return(glm_evaporation) +} diff --git a/R/get_hypsography.R b/R/get_hypsography.R index 2828b17..daca18e 100644 --- a/R/get_hypsography.R +++ b/R/get_hypsography.R @@ -1,7 +1,8 @@ -#'@title retrieve hypsography information from glm_nml object or file +#'@title retrieve hypsography information #'@description -#'Retrieves hypsography information from glm_nml object or file \cr -#' +#'Retrieves hypsography information from glm_nml object or file. \cr +#'Hypsography is the relationship between depth and area of a lake. +#''Depth' is referenced from the lake surface and downward values are positive in meters. Areas are in square meters. #' #'@param glm_nml a nml (a list) for GLM config #'@param file a string with the path to the GLM glm.nml file @@ -11,16 +12,16 @@ #'Jordan S. Read #'@seealso \link{write_lvl}, \link{read_nml}, \link{get_nml_value} #'@examples -#'nml_file <- '../resources/glm.nml' +#'nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') #'glm_nml <- read_nml(nml_file) #'get_hypsography(glm_nml) -#'get_hypsography(file=nml_file) +#'get_hypsography(file = nml_file) #'@export -get_hypsography <- function(glm_nml=NULL, file=NULL){ +get_hypsography <- function(glm_nml, file){ # if both are passed, glm_nml is used and 'file' is ignored - if (is.null(file) & is.null(glm_nml)){stop('glm.nml file path OR glm_nml must be specified')} + if (missing(file) & missing(glm_nml)){stop('glm.nml file path OR glm_nml must be specified')} - if (is.null(glm_nml)){ + if (missing(glm_nml)){ glm_nml <- read_nml(file) } diff --git a/R/get_ice.R b/R/get_ice.R index 9ca07d9..1e5d002 100644 --- a/R/get_ice.R +++ b/R/get_ice.R @@ -1,24 +1,32 @@ #'@title get ice depth from GLM simulation #'@description #'Creates a data.frame with DateTime and ice. \cr -#' +#'This function sums the thickness of the clear ice, white ice, +#'and optionally, the thickness of snow for each timestep in the GLM model. #' #'@param file a string with the path to the netcdf output from GLM -#'@return a data.frame with DateTime and ice +#'@param snow.rm a boolean for ignoring snow depth in the calculation of ice thickness +#'@return a data.frame with DateTime and ice (in meters) #'@keywords methods #'@author #'Luke A. Winslow, Jordan S. Read #'@examples -#'file = '../test/output.nc' +#'file <- system.file('extdata', 'output.nc', package = 'rGLM') #'ice <- get_ice(file) +#'ice_and_snow <- get_ice(file, snow.rm = FALSE) +#'plot(ice) +#'points(ice_and_snow, col = "red") #'@import ncdf4 #'@export -get_ice <- function(file){ +get_ice <- function(file, snow.rm = TRUE){ glm_nc <- get_glm_nc(file) - ice <- ncvar_get(glm_nc, "hice")+ncvar_get(glm_nc, "hwice")+ncvar_get(glm_nc, "hsnow") + ice <- ncvar_get(glm_nc, "hice") + ncvar_get(glm_nc, "hwice") + if (!snow.rm){ + ice <- ice + ncvar_get(glm_nc, "hsnow") + } time <- get_time(glm_nc) - glm_ice <- data.frame('DateTime'=time, 'ice'=ice) + glm_ice <- data.frame('DateTime'=time, 'ice(m)'=ice) close_glm_nc(glm_nc) return(glm_ice) } diff --git a/R/get_nml_value.R b/R/get_nml_value.R index 428a753..6f34bce 100644 --- a/R/get_nml_value.R +++ b/R/get_nml_value.R @@ -7,11 +7,11 @@ #'@author #'Jordan S. Read #'@examples -#'file = '../resources/glm.nml' -#'glm_nml <- read_nml(file) -#'get_nml_value(glm_nml,arg_name='Kw') +#'nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') +#'glm_nml <- read_nml(nml_file) +#'get_nml_value(glm_nml,arg_name = 'Kw') #'@export -get_nml_value <- function(glm_nml,arg_name){ +get_nml_value <- function(glm_nml, arg_name){ blckI <- findBlck(glm_nml,arg_name) diff --git a/R/get_surface_height.R b/R/get_surface_height.R index 097782b..412113b 100644 --- a/R/get_surface_height.R +++ b/R/get_surface_height.R @@ -5,17 +5,18 @@ #' #'@param file a string with the path to the netcdf output from GLM #'@param ice.rm a boolean for including ice thickness in surface height +#'@param snow.rm a boolean for including snow depth thickness in surface height #'@return a data.frame with DateTime and surface_height (in meters) #'@keywords methods #'@author #'Jordan S. Read, Luke A. Winslow #'@examples -#'file = '../test/output.nc' +#'file <- system.file('extdata', 'output.nc', package = 'rGLM') #'surface <- get_surface_height(file) -#'surface_w_ice <- get_surface_height(file, ice.rm = FALSE) +#'surface_w_ice <- get_surface_height(file, ice.rm = FALSE, snow.rm = FALSE) #'@import ncdf4 #'@export -get_surface_height <- function(file, ice.rm = TRUE){ +get_surface_height <- function(file, ice.rm = TRUE, snow.rm = TRUE){ glm_nc <- get_glm_nc(file) NS <- ncvar_get(glm_nc, "NS") elev <- ncvar_get(glm_nc, "z") @@ -27,7 +28,11 @@ get_surface_height <- function(file, ice.rm = TRUE){ surface_height[j] <- elev[NS[j],j] } if (!ice.rm){ - surface_height <- surface_height + get_ice(file)[, 2] + surface_height <- surface_height + get_ice(file, snow.rm = TRUE)[, 2] + } + if (!snow.rm){ + snow <- get_ice(file, snow.rm = TRUE)[, 2] - get_ice(file, snow.rm = TRUE)[, 2] + surface_height <- surface_height + snow } glm_surface <- data.frame('DateTime'=time, 'surface_height'=surface_height) diff --git a/R/get_temp.R b/R/get_temp.R index 56ddcac..e704144 100644 --- a/R/get_temp.R +++ b/R/get_temp.R @@ -1,7 +1,9 @@ #'@title get water temperatures from a GLM simulation #'@description #'Creates a data.frame with DateTime and temperatures (in deg C). \cr -#' +#'Temperatures that are sampled out of the GLM output are taken relative +#'to the surface (\code{reference = 'surface'}) or the bottom of the lake +#'(\code{reference = 'bottom'}). #' #'@param file a string with the path to the netcdf output from GLM #'@param reference a string which specifies the vertical reference ('surface' or 'bottom') @@ -11,12 +13,12 @@ #'@author #'Jordan S. Read, Luke A. Winslow #'@examples -#'file = '../test/output.nc' -#'temp_surf <- get_temp(file,reference='surface',z_out=c(0,1,2)) -#'temp_bot <- get_temp(file,reference='bot',z_out=c(0,1,2)) +#'file <- system.file('extdata', 'output.nc', package = 'rGLM') +#'temp_surf <- get_temp(file, reference = 'surface', z_out = c(0,1,2)) +#'temp_bot <- get_temp(file, reference = 'bottom', z_out = c(0,1,2)) #'@import ncdf4 #'@export -get_temp <- function(file, reference='bottom', z_out){ +get_temp <- function(file, reference = 'bottom', z_out){ if (reference!='bottom' & reference!='surface'){ stop('reference input must be either "surface" or "bottom"') } diff --git a/R/get_wind.R b/R/get_wind.R index ba84be8..5761e52 100644 --- a/R/get_wind.R +++ b/R/get_wind.R @@ -9,8 +9,8 @@ #'@author #'Luke A. Winslow, Jordan S. Read #'@examples -#'file = '../test/output.nc' -#'ice <- get_wind(file) +#'file <- system.file('extdata', 'output.nc', package = 'rGLM') +#'wind <- get_wind(file) #'@import ncdf4 #'@export get_wind <- function(file){ diff --git a/R/nc_helpers.R b/R/nc_helpers.R index 1a9760e..11ec981 100644 --- a/R/nc_helpers.R +++ b/R/nc_helpers.R @@ -1,6 +1,5 @@ get_glm_nc <- function(file){ - require(ncdf4) glm_nc <- nc_open(file) return(glm_nc) } @@ -12,7 +11,6 @@ close_glm_nc <- function(glm_nc){ # Summary: Returns the converted time vector in R format get_time <- function(glm_nc){ - require(ncdf4) hours_since <- ncvar_get(glm_nc, "time") time_info <- get_time_info(glm_nc) @@ -23,7 +21,6 @@ get_time <- function(glm_nc){ } get_time_info <- function(glm_nc){ - require(ncdf4) day_secs = 86400 time_unit <- 3600/day_secs diff --git a/R/nml_helpers.R b/R/nml_helpers.R index 8ed654d..a8721d3 100644 --- a/R/nml_helpers.R +++ b/R/nml_helpers.R @@ -60,14 +60,14 @@ findBlck <- function(nml,argName){ } # private function -setnmlList <- function(nml,argList){ - if (!is.list(argList)){stop("argList must be a list")} +setnmlList <- function(glm_nml,arg_list){ + if (!is.list(arg_list)){stop("argList must be a list")} - argNames <- names(argList) - for (i in 1:length(argNames)){ - nml <- set_nml(nml,argName=argNames[i],argVal=argList[[i]]) + arg_names <- names(arg_list) + for (i in 1:length(arg_names)){ + glm_nml <- set_nml(glm_nml,arg_name=arg_names[i],arg_val=arg_list[[i]]) } - return(nml) + return(glm_nml) } diff --git a/R/pretty_nml.R b/R/pretty_nml.R index 5dca0dc..5460265 100644 --- a/R/pretty_nml.R +++ b/R/pretty_nml.R @@ -4,8 +4,8 @@ #'@author #'Jordan S. Read #'@examples -#'file = '../resources/glm.nml' -#'glm_nml <- read_nml(file) +#'nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') +#'glm_nml <- read_nml(nml_file) #'pretty_nml(glm_nml) #'@export pretty_nml <- function(glm_nml){ diff --git a/R/read_nml.R b/R/read_nml.R index cac6f9d..0213809 100644 --- a/R/read_nml.R +++ b/R/read_nml.R @@ -10,11 +10,11 @@ #'Jordan S. Read #'@seealso \link{get_nml_value} #'@examples -#'file = '../resources/glm.nml' -#'glm_nml <- read_nml(file) +#'nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') +#'glm_nml <- read_nml(nml_file) #'pretty_nml(glm_nml) #'@export -read_nml <- function(file = '../resources/glm.nml'){ +read_nml <- function(file){ # skip all commented lines, return all variables and associated values # requires NO return line variables (all variables must be completely defined on a single line) c <- file(file,"r") diff --git a/R/run_analyzer.R b/R/run_analyzer.R index 775c179..ad08974 100644 --- a/R/run_analyzer.R +++ b/R/run_analyzer.R @@ -10,14 +10,32 @@ #'@keywords methods #'@author #'Luke A. Winslow, Jordan S. Read -#'@seealso \link{write_lke} +#'@seealso \link{write_lke}, \link{init_lke}, \link{set_lke} #'@examples -#'file_path <- run_analyzer(lake_name='lake',folder='../resources/', -#' folder_out='../resources/') +#'# -- package up all the files for Lake Analyzer -- +#'folder_out <- system.file('extdata', package = 'rGLM') +#'nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') +#'glm_nml <- read_nml(nml_file) +#'write_bth(glm_nml, lake_name = 'lake', folder_out = folder_out) +#'lke <- init_lke() +#'lake_depth <- max(get_hypsography(glm_nml)[, 1]) +#'lke <- set_lke(lke, arg_name = 'totalDep', arg_val = lake_depth) +#'write_lke(lke, lake_name = 'lake', folder_out = folder_out) +#'file = system.file('extdata', 'output.nc', package = 'rGLM') +#'glm_wind <- get_wind(file) +#'write_wnd(glm_wind,lake_name='lake',folder_out = folder_out) +#'z_out <- seq(0,22,1) +#'glm_temp <- get_temp(file,reference = 'surface',z_out = z_out) +#'write_wtr(glm_temp,lake_name = 'lake', folder_out = folder_out) +#' +#'# -- run Lake Analyzer on remote server -- +#'\dontrun{ +#'file_path <- run_analyzer(lake_name='lake',folder=folder_out, +#' folder_out=folder_out) +#'} #'@export #'@import RCurl run_analyzer <- function(lake_name='lake', folder='../resources/', folder_out='../Supporting Files'){ - require(RCurl) zip_path <- zip_LA(lake_name, folder, folder_out) file_h <- postForm("http://lakeanalyzer.gleon.org/postRunModel.php", @@ -32,8 +50,14 @@ run_analyzer <- function(lake_name='lake', folder='../resources/', folder_out='. } -zip_LA <- function(lake_name='lake',folder='../resources/',folder_out='../resources/'){ +zip_LA <- function(lake_name = 'lake', folder, folder_out){ # finds all folders in the directory, zips and moves to destFldr. Fails w/o .lke file + if (substr(folder,start = nchar(folder_out), stop = nchar(folder_out)) != '/'){ + folder = paste(folder,'/',sep='') + } + if (substr(folder_out,start = nchar(folder_out), stop = nchar(folder_out)) != '/'){ + folder_out = paste(folder_out,'/',sep='') + } files <- list.files(folder,pattern=lake_name,full.names=TRUE) if (!any(grepl(pattern = '.lke',files))){stop("need *.lke file for zip")} diff --git a/R/set_nml.R b/R/set_nml.R index 8143ec7..82a9792 100644 --- a/R/set_nml.R +++ b/R/set_nml.R @@ -8,11 +8,11 @@ #'@author #'Jordan S. Read #'@examples -#'file = '../resources/glm.nml' -#'glm_nml <- read_nml(file) -#'get_nml_value(glm_nml,arg_name='Kw') -#'glm_nml <- set_nml(glm_nml,arg_name='Kw',arg_val=1.4) -#'glm_nml <- set_nml(glm_nml,arg_list=list('Kw'=1.4)) +#'nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') +#'glm_nml <- read_nml(nml_file) +#'get_nml_value(glm_nml, arg_name = 'Kw') +#'glm_nml <- set_nml(glm_nml, arg_name = 'Kw', arg_val = 1.4) +#'glm_nml <- set_nml(glm_nml, arg_list = list('Kw' = 1.4)) #'pretty_nml(glm_nml) #'@seealso \link{get_nml_value}, \link{read_nml} #'@export diff --git a/R/write_bth.R b/R/write_bth.R index 46ba09e..094ec6b 100644 --- a/R/write_bth.R +++ b/R/write_bth.R @@ -11,13 +11,16 @@ #'Jordan S. Read #'@seealso \link{write_wtr}, \link{write_lvl}, \link{get_wind} #'@examples -#'glm_nml <- read_nml('../resources/glm.nml') -#'write_bth(glm_nml, lake_name='lake', folder_out='../resources/') +#'nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') +#'folder_out <- system.file('extdata', package = 'rGLM') +#'glm_nml <- read_nml(file = nml_file) +#'write_bth(glm_nml, lake_name='lake', folder_out = folder_out) #'@export -write_bth <- function(glm_nml,lake_name='lake',folder_out='../Supporting Files/'){ - fileN <- paste(c(folder_out,lake_name,'.bth'),collapse="") +write_bth <- function(glm_nml,lake_name='lake',folder_out){ + bth_name <- paste(lake_name, '.bth', sep = '') + file_path <- file.path(folder_out, bth_name) glm_bth <- get_hypsography(glm_nml) - write.table(glm_bth,file=fileN,col.names=TRUE, quote=FALSE, row.names=FALSE, sep=",") + write.table(glm_bth, file = file_path, col.names=TRUE, quote=FALSE, row.names=FALSE, sep=",") } diff --git a/R/write_lke.R b/R/write_lke.R index 55659c8..457d0b9 100644 --- a/R/write_lke.R +++ b/R/write_lke.R @@ -13,15 +13,17 @@ #'@seealso \link{write_wtr}, \link{write_lvl}, \link{init_lke}, \link{set_lke} #'@examples #'lke <- init_lke() -#'lke <- set_lke(lke, arg_name='totalDep', arg_val=19.4) -#'write_lke(lke,lake_name='lake',folder_out='../resources/') +#'lke <- set_lke(lke, arg_name = 'totalDep', arg_val = 19.4) +#'folder_out <- system.file('extdata', package = 'rGLM') +#'write_lke(lke, lake_name = 'lake', folder_out = folder_out) #'@export -write_lke <- function(lke,lake_name = 'lake',folder_out='../resources/'){ +write_lke <- function(lke, lake_name = 'lake', folder_out){ lke_metadata <- init_lke_metadata() if (any(is.na(lke))){stop("no lke parameters can be NA")} - file_name <- gsub(" ","",paste(c(lake_name,'.lke'),collapse="")) - sink(paste(c(folder_out,file_name),collapse="")) + lke_name <- paste(lake_name, '.lke', sep = '') + file_path <- file.path(folder_out, lke_name) + sink(file_path) cat(c("Configuration file for",lake_name,"\n","\n")) for (ln in 1:length(lke)){ cat(as.character(lke[[ln]])) diff --git a/R/write_lvl.R b/R/write_lvl.R index 2d256b9..3808d2c 100644 --- a/R/write_lvl.R +++ b/R/write_lvl.R @@ -10,18 +10,20 @@ #'@keywords methods #'@author #'Jordan S. Read -#'@seealso \link{get_nml_value}, \link{read_nml} +#'@seealso \link{get_nml_value}, \link{read_nml}, \link{get_surface_height} #'@examples -#'file = '../test/output.nc' +#'file <- system.file('extdata', 'output.nc', package = 'rGLM') +#'nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') #'glm_surface <- get_surface_height(file, ice.rm = TRUE) -#'glm_nml <- read_nml('../resources/glm.nml') -#'write_lvl(glm_surface, glm_nml) +#'folder_out <- system.file('extdata', package = 'rGLM') +#'glm_nml <- read_nml(nml_file) +#'write_lvl(glm_surface, glm_nml, lake_name = 'lake', folder_out = folder_out) #'@export -write_lvl <- function(glm_surface, glm_nml, lake_name='lake',folder_out='../resources/'){ - file_out <- paste(c(folder_out,lake_name,'.lvl'),collapse="") - +write_lvl <- function(glm_surface, glm_nml, lake_name = 'lake', folder_out){ + lvl_name <- paste(lake_name, '.lvl', sep = '') + file_path <- file.path(folder_out, lvl_name) lvl <- get_lvl(glm_surface,glm_nml) - write.table(lvl,file=file_out,col.names=TRUE, quote=FALSE, row.names=FALSE, sep="\t") + write.table(lvl,file=file_path,col.names=TRUE, quote=FALSE, row.names=FALSE, sep="\t") } get_lvl <- function(glm_surface,glm_nml){ diff --git a/R/write_nml.R b/R/write_nml.R index 78e62c8..986344c 100644 --- a/R/write_nml.R +++ b/R/write_nml.R @@ -1,21 +1,23 @@ #'@title write GLM *.nml for a GLM simulation #'@description #'Creates a *.nml file running a GLM simulation. \cr -#' +#'An existing glm.nml will be overwritten if it shares the same +#'path as \code{file_out} #' #'@param glm_nml a nml (a list) for GLM config -#'@param file a string with the path to the glm.nml file to write +#'@param file_out a string with the path to the glm.nml file to write #'@keywords methods #'@author #'Jordan S. Read #'@seealso \link{get_nml_value}, \link{read_nml}, \link{pretty_nml} #'@examples -#'file = '../resources/glm_test.nml' -#'glm_nml <- read_nml('../resources/glm.nml') -#'write_nml(glm_nml, file= file) +#'nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') +#'glm_nml <- read_nml(nml_file) +#'file_out <- system.file('extdata', 'glm_test.nml', package = 'rGLM') +#'write_nml(glm_nml, file_out = file_out) #'@export -write_nml <- function(glm_nml,file='../resources/glm_test.nml'){ - sink(file) +write_nml <- function(glm_nml, file_out){ + sink(file_out) pretty_nml(glm_nml) sink() diff --git a/R/write_wnd.R b/R/write_wnd.R index 325c7af..7842484 100644 --- a/R/write_wnd.R +++ b/R/write_wnd.R @@ -11,11 +11,13 @@ #'Jordan S. Read #'@seealso \link{write_wtr}, \link{write_lvl}, \link{get_wind} #'@examples -#'file = '../test/output.nc' +#'file <- system.file('extdata', 'output.nc', package = 'rGLM') +#'folder_out <- system.file('extdata', package = 'rGLM') #'glm_wind <- get_wind(file) -#'write_wnd(glm_wind,lake_name='lake',folder_out='../resources/') +#'write_wnd(glm_wind,lake_name='lake',folder_out = folder_out) #'@export -write_wnd <- function(glm_wind,lake_name='lake',folder_out='../Supporting Files/'){ - file_out <- paste(c(folder_out,lake_name,'.wnd'),collapse="") - write.table(glm_wind,file=file_out,col.names=TRUE, quote=FALSE, row.names=FALSE, sep="\t") +write_wnd <- function(glm_wind, lake_name = 'lake', folder_out){ + wnd_name <- paste(lake_name, '.wnd', sep = '') + file_path <- file.path(folder_out, wnd_name) + write.table(glm_wind,file=file_path,col.names=TRUE, quote=FALSE, row.names=FALSE, sep="\t") } \ No newline at end of file diff --git a/R/write_wtr.R b/R/write_wtr.R index 67b0bc3..4be3475 100644 --- a/R/write_wtr.R +++ b/R/write_wtr.R @@ -11,12 +11,14 @@ #'Jordan S. Read #'@seealso \link{write_lvl}, \link{get_temp} #'@examples -#'file = '../test/output.nc' +#'file <- system.file('extdata', 'output.nc', package = 'rGLM') #'z_out <- c(0,1,2,3,4,5,6) #'glm_temp <- get_temp(file,reference='surface',z_out=z_out) -#'write_wtr(glm_temp,lake_name='lake',folder_out='../resources/') +#'folder_out <- system.file('extdata', package = 'rGLM') +#'write_wtr(glm_temp, lake_name = 'lake', folder_out = folder_out) #'@export -write_wtr <- function(glm_temp,lake_name='lake',folder_out='../resources/'){ - file_out <- paste(c(folder_out,lake_name,'.wtr'),collapse="") - write.table(glm_temp,file=file_out ,col.names=TRUE, quote=FALSE, row.names=FALSE, sep="\t") +write_wtr <- function(glm_temp, lake_name = 'lake', folder_out){ + wtr_name <- paste(lake_name, '.wtr', sep = '') + file_path <- file.path(folder_out, wtr_name) + write.table(glm_temp, file=file_path, col.names=TRUE, quote=FALSE, row.names=FALSE, sep="\t") } diff --git a/resources/glm.nml b/inst/extdata/glm.nml similarity index 100% rename from resources/glm.nml rename to inst/extdata/glm.nml diff --git a/inst/extdata/output.nc b/inst/extdata/output.nc new file mode 100644 index 0000000..a94815b Binary files /dev/null and b/inst/extdata/output.nc differ diff --git a/man/get_evaporation.Rd b/man/get_evaporation.Rd new file mode 100644 index 0000000..beeb8fd --- /dev/null +++ b/man/get_evaporation.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2 (4.0.1): do not edit by hand +\name{get_evaporation} +\alias{get_evaporation} +\title{get evaporation from GLM simulation} +\usage{ +get_evaporation(file) +} +\arguments{ +\item{file}{a string with the path to the netcdf output from GLM} +} +\value{ +a data.frame with DateTime and evaporation (in mm/day) +} +\description{ +Creates a data.frame with DateTime and E (mm/day). \cr +} +\examples{ +file <- system.file('extdata', 'output.nc', package = 'rGLM') +evap <- get_evaporation(file) +plot(evap) +} +\author{ +Jordan S. Read +} +\keyword{methods} + diff --git a/man/get_hypsography.Rd b/man/get_hypsography.Rd index f641ade..89622c4 100644 --- a/man/get_hypsography.Rd +++ b/man/get_hypsography.Rd @@ -1,9 +1,9 @@ % Generated by roxygen2 (4.0.1): do not edit by hand \name{get_hypsography} \alias{get_hypsography} -\title{retrieve hypsography information from glm_nml object or file} +\title{retrieve hypsography information} \usage{ -get_hypsography(glm_nml = NULL, file = NULL) +get_hypsography(glm_nml, file) } \arguments{ \item{glm_nml}{a nml (a list) for GLM config} @@ -14,13 +14,15 @@ get_hypsography(glm_nml = NULL, file = NULL) glm_bth a data.frame with \code{Depths} and \code{Areas} } \description{ -Retrieves hypsography information from glm_nml object or file \cr +Retrieves hypsography information from glm_nml object or file. \cr +Hypsography is the relationship between depth and area of a lake. +'Depth' is referenced from the lake surface and downward values are positive in meters. Areas are in square meters. } \examples{ -nml_file <- '../resources/glm.nml' +nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') glm_nml <- read_nml(nml_file) get_hypsography(glm_nml) -get_hypsography(file=nml_file) +get_hypsography(file = nml_file) } \author{ Jordan S. Read diff --git a/man/get_ice.Rd b/man/get_ice.Rd index 772fdc8..2a74e36 100644 --- a/man/get_ice.Rd +++ b/man/get_ice.Rd @@ -3,20 +3,27 @@ \alias{get_ice} \title{get ice depth from GLM simulation} \usage{ -get_ice(file) +get_ice(file, snow.rm = TRUE) } \arguments{ \item{file}{a string with the path to the netcdf output from GLM} + +\item{snow.rm}{a boolean for ignoring snow depth in the calculation of ice thickness} } \value{ -a data.frame with DateTime and ice +a data.frame with DateTime and ice (in meters) } \description{ Creates a data.frame with DateTime and ice. \cr +This function sums the thickness of the clear ice, white ice, +and optionally, the thickness of snow for each timestep in the GLM model. } \examples{ -file = '../test/output.nc' +file <- system.file('extdata', 'output.nc', package = 'rGLM') ice <- get_ice(file) +ice_and_snow <- get_ice(file, snow.rm = FALSE) +plot(ice) +points(ice_and_snow, col = "red") } \author{ Luke A. Winslow, Jordan S. Read diff --git a/man/get_nml_value.Rd b/man/get_nml_value.Rd index 8aff073..36ac444 100644 --- a/man/get_nml_value.Rd +++ b/man/get_nml_value.Rd @@ -17,9 +17,9 @@ arg_val value for the valid field in glm_nml specified by \code{arg_name} This function returns an nml value according to the arg_name nml list for GLM. } \examples{ -file = '../resources/glm.nml' -glm_nml <- read_nml(file) -get_nml_value(glm_nml,arg_name='Kw') +nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') +glm_nml <- read_nml(nml_file) +get_nml_value(glm_nml,arg_name = 'Kw') } \author{ Jordan S. Read diff --git a/man/get_surface_height.Rd b/man/get_surface_height.Rd index de0254f..313dc58 100644 --- a/man/get_surface_height.Rd +++ b/man/get_surface_height.Rd @@ -3,12 +3,14 @@ \alias{get_surface_height} \title{get surface height from GLM simulation} \usage{ -get_surface_height(file, ice.rm = TRUE) +get_surface_height(file, ice.rm = TRUE, snow.rm = TRUE) } \arguments{ \item{file}{a string with the path to the netcdf output from GLM} \item{ice.rm}{a boolean for including ice thickness in surface height} + +\item{snow.rm}{a boolean for including snow depth thickness in surface height} } \value{ a data.frame with DateTime and surface_height (in meters) @@ -17,9 +19,9 @@ a data.frame with DateTime and surface_height (in meters) Creates a data.frame with DateTime and surface_height. \cr } \examples{ -file = '../test/output.nc' +file <- system.file('extdata', 'output.nc', package = 'rGLM') surface <- get_surface_height(file) -surface_w_ice <- get_surface_height(file, ice.rm = FALSE) +surface_w_ice <- get_surface_height(file, ice.rm = FALSE, snow.rm = FALSE) } \author{ Jordan S. Read, Luke A. Winslow diff --git a/man/get_temp.Rd b/man/get_temp.Rd index 2376d02..f8538a5 100644 --- a/man/get_temp.Rd +++ b/man/get_temp.Rd @@ -17,11 +17,14 @@ a data.frame with DateTime and temperature at depth } \description{ Creates a data.frame with DateTime and temperatures (in deg C). \cr +Temperatures that are sampled out of the GLM output are taken relative +to the surface (\code{reference = 'surface'}) or the bottom of the lake +(\code{reference = 'bottom'}). } \examples{ -file = '../test/output.nc' -temp_surf <- get_temp(file,reference='surface',z_out=c(0,1,2)) -temp_bot <- get_temp(file,reference='bot',z_out=c(0,1,2)) +file <- system.file('extdata', 'output.nc', package = 'rGLM') +temp_surf <- get_temp(file, reference = 'surface', z_out = c(0,1,2)) +temp_bot <- get_temp(file, reference = 'bottom', z_out = c(0,1,2)) } \author{ Jordan S. Read, Luke A. Winslow diff --git a/man/get_wind.Rd b/man/get_wind.Rd index 6a7c1b0..1559d87 100644 --- a/man/get_wind.Rd +++ b/man/get_wind.Rd @@ -15,8 +15,8 @@ a data.frame with DateTime and wind Creates a data.frame with DateTime and wind. \cr } \examples{ -file = '../test/output.nc' -ice <- get_wind(file) +file <- system.file('extdata', 'output.nc', package = 'rGLM') +wind <- get_wind(file) } \author{ Luke A. Winslow, Jordan S. Read diff --git a/man/pretty_nml.Rd b/man/pretty_nml.Rd index 88fea3c..a9e074c 100644 --- a/man/pretty_nml.Rd +++ b/man/pretty_nml.Rd @@ -12,8 +12,8 @@ pretty_nml(glm_nml) This function prints the specified values from the nml list for GLM. } \examples{ -file = '../resources/glm.nml' -glm_nml <- read_nml(file) +nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') +glm_nml <- read_nml(nml_file) pretty_nml(glm_nml) } \author{ diff --git a/man/read_nml.Rd b/man/read_nml.Rd index 70a0c9f..951c8df 100644 --- a/man/read_nml.Rd +++ b/man/read_nml.Rd @@ -3,7 +3,7 @@ \alias{read_nml} \title{read in a GLM simulation *.nml file} \usage{ -read_nml(file = "../resources/glm.nml") +read_nml(file) } \arguments{ \item{file}{a string with the path to the GLM glm.nml file} @@ -15,8 +15,8 @@ glm_nml a nml (a list) for GLM config read in a GLM simulation *.nml file and create a list. \cr } \examples{ -file = '../resources/glm.nml' -glm_nml <- read_nml(file) +nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') +glm_nml <- read_nml(nml_file) pretty_nml(glm_nml) } \author{ diff --git a/man/run_analyzer.Rd b/man/run_analyzer.Rd index e45b359..a39ac50 100644 --- a/man/run_analyzer.Rd +++ b/man/run_analyzer.Rd @@ -20,14 +20,33 @@ path_out a string with the file path to the output results This function runs Lake Analyzer server according to the files created (e.g., *.lke, *.wtr, etc). \cr } \examples{ -file_path <- run_analyzer(lake_name='lake',folder='../resources/', - folder_out='../resources/') +# -- package up all the files for Lake Analyzer -- +folder_out <- system.file('extdata', package = 'rGLM') +nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') +glm_nml <- read_nml(nml_file) +write_bth(glm_nml, lake_name = 'lake', folder_out = folder_out) +lke <- init_lke() +lake_depth <- max(get_hypsography(glm_nml)[, 1]) +lke <- set_lke(lke, arg_name = 'totalDep', arg_val = lake_depth) +write_lke(lke, lake_name = 'lake', folder_out = folder_out) +file = system.file('extdata', 'output.nc', package = 'rGLM') +glm_wind <- get_wind(file) +write_wnd(glm_wind,lake_name='lake',folder_out = folder_out) +z_out <- seq(0,22,1) +glm_temp <- get_temp(file,reference = 'surface',z_out = z_out) +write_wtr(glm_temp,lake_name = 'lake', folder_out = folder_out) + +# -- run Lake Analyzer on remote server -- +\dontrun{ +file_path <- run_analyzer(lake_name='lake',folder=folder_out, + folder_out=folder_out) +} } \author{ Luke A. Winslow, Jordan S. Read } \seealso{ -\link{write_lke} +\link{write_lke}, \link{init_lke}, \link{set_lke} } \keyword{methods} diff --git a/man/set_nml.Rd b/man/set_nml.Rd index 0631653..9b21746 100644 --- a/man/set_nml.Rd +++ b/man/set_nml.Rd @@ -21,11 +21,11 @@ glm_nml a modified nml This function sets values in nml object for GLM config. } \examples{ -file = '../resources/glm.nml' -glm_nml <- read_nml(file) -get_nml_value(glm_nml,arg_name='Kw') -glm_nml <- set_nml(glm_nml,arg_name='Kw',arg_val=1.4) -glm_nml <- set_nml(glm_nml,arg_list=list('Kw'=1.4)) +nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') +glm_nml <- read_nml(nml_file) +get_nml_value(glm_nml, arg_name = 'Kw') +glm_nml <- set_nml(glm_nml, arg_name = 'Kw', arg_val = 1.4) +glm_nml <- set_nml(glm_nml, arg_list = list('Kw' = 1.4)) pretty_nml(glm_nml) } \author{ diff --git a/man/write_bth.Rd b/man/write_bth.Rd index 16ae52d..5174f3f 100644 --- a/man/write_bth.Rd +++ b/man/write_bth.Rd @@ -3,7 +3,7 @@ \alias{write_bth} \title{write Lake Analyzer *.bth file from GLM simulation} \usage{ -write_bth(glm_nml, lake_name = "lake", folder_out = "../Supporting Files/") +write_bth(glm_nml, lake_name = "lake", folder_out) } \arguments{ \item{glm_nml}{a nml (a list) for GLM config} @@ -16,8 +16,10 @@ write_bth(glm_nml, lake_name = "lake", folder_out = "../Supporting Files/") Creates a *.bth file for Lake Analyzer use from GLM simulation. \cr } \examples{ -glm_nml <- read_nml('../resources/glm.nml') -write_bth(glm_nml, lake_name='lake', folder_out='../resources/') +nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') +folder_out <- system.file('extdata', package = 'rGLM') +glm_nml <- read_nml(file = nml_file) +write_bth(glm_nml, lake_name='lake', folder_out = folder_out) } \author{ Jordan S. Read diff --git a/man/write_lke.Rd b/man/write_lke.Rd index 565d6de..35c6da0 100644 --- a/man/write_lke.Rd +++ b/man/write_lke.Rd @@ -3,7 +3,7 @@ \alias{write_lke} \title{write Lake Analyzer *.lke file from GLM simulation} \usage{ -write_lke(lke, lake_name = "lake", folder_out = "../resources/") +write_lke(lke, lake_name = "lake", folder_out) } \arguments{ \item{lke}{a nml (a list) for GLM config} @@ -17,8 +17,9 @@ Creates a *.lke file for Lake Analyzer use from GLM simulation. \cr } \examples{ lke <- init_lke() -lke <- set_lke(lke, arg_name='totalDep', arg_val=19.4) -write_lke(lke,lake_name='lake',folder_out='../resources/') +lke <- set_lke(lke, arg_name = 'totalDep', arg_val = 19.4) +folder_out <- system.file('extdata', package = 'rGLM') +write_lke(lke, lake_name = 'lake', folder_out = folder_out) } \author{ Jordan S. Read diff --git a/man/write_lvl.Rd b/man/write_lvl.Rd index b3fef1f..f89f5ca 100644 --- a/man/write_lvl.Rd +++ b/man/write_lvl.Rd @@ -3,8 +3,7 @@ \alias{write_lvl} \title{write Lake Analyzer *.lvl file from GLM simulation} \usage{ -write_lvl(glm_surface, glm_nml, lake_name = "lake", - folder_out = "../resources/") +write_lvl(glm_surface, glm_nml, lake_name = "lake", folder_out) } \arguments{ \item{glm_surface}{a data.frame with DateTime and surface elevation from from GLM} @@ -19,16 +18,18 @@ write_lvl(glm_surface, glm_nml, lake_name = "lake", Creates a *.lvl file from GLM simulation. \cr } \examples{ -file = '../test/output.nc' +file <- system.file('extdata', 'output.nc', package = 'rGLM') +nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') glm_surface <- get_surface_height(file, ice.rm = TRUE) -glm_nml <- read_nml('../resources/glm.nml') -write_lvl(glm_surface, glm_nml) +folder_out <- system.file('extdata', package = 'rGLM') +glm_nml <- read_nml(nml_file) +write_lvl(glm_surface, glm_nml, lake_name = 'lake', folder_out = folder_out) } \author{ Jordan S. Read } \seealso{ -\link{get_nml_value}, \link{read_nml} +\link{get_nml_value}, \link{read_nml}, \link{get_surface_height} } \keyword{methods} diff --git a/man/write_nml.Rd b/man/write_nml.Rd index 6a621a3..b13c2a1 100644 --- a/man/write_nml.Rd +++ b/man/write_nml.Rd @@ -3,20 +3,23 @@ \alias{write_nml} \title{write GLM *.nml for a GLM simulation} \usage{ -write_nml(glm_nml, file = "../resources/glm_test.nml") +write_nml(glm_nml, file_out) } \arguments{ \item{glm_nml}{a nml (a list) for GLM config} -\item{file}{a string with the path to the glm.nml file to write} +\item{file_out}{a string with the path to the glm.nml file to write} } \description{ Creates a *.nml file running a GLM simulation. \cr +An existing glm.nml will be overwritten if it shares the same +path as \code{file_out} } \examples{ -file = '../resources/glm_test.nml' -glm_nml <- read_nml('../resources/glm.nml') -write_nml(glm_nml, file= file) +nml_file <- system.file('extdata', 'glm.nml', package = 'rGLM') +glm_nml <- read_nml(nml_file) +file_out <- system.file('extdata', 'glm_test.nml', package = 'rGLM') +write_nml(glm_nml, file_out = file_out) } \author{ Jordan S. Read diff --git a/man/write_wnd.Rd b/man/write_wnd.Rd index 0601a05..80f14ea 100644 --- a/man/write_wnd.Rd +++ b/man/write_wnd.Rd @@ -3,7 +3,7 @@ \alias{write_wnd} \title{write Lake Analyzer *.wnd file from GLM simulation} \usage{ -write_wnd(glm_wind, lake_name = "lake", folder_out = "../Supporting Files/") +write_wnd(glm_wind, lake_name = "lake", folder_out) } \arguments{ \item{glm_wind}{a data.frame with DateTime and temperatures from GLM} @@ -16,9 +16,10 @@ write_wnd(glm_wind, lake_name = "lake", folder_out = "../Supporting Files/") Creates a *.wnd file for Lake Analyzer use from GLM simulation. \cr } \examples{ -file = '../test/output.nc' +file <- system.file('extdata', 'output.nc', package = 'rGLM') +folder_out <- system.file('extdata', package = 'rGLM') glm_wind <- get_wind(file) -write_wnd(glm_wind,lake_name='lake',folder_out='../resources/') +write_wnd(glm_wind,lake_name='lake',folder_out = folder_out) } \author{ Jordan S. Read diff --git a/man/write_wtr.Rd b/man/write_wtr.Rd index 154e53d..c34173b 100644 --- a/man/write_wtr.Rd +++ b/man/write_wtr.Rd @@ -3,7 +3,7 @@ \alias{write_wtr} \title{write Lake Analyzer *.wtr file from GLM simulation} \usage{ -write_wtr(glm_temp, lake_name = "lake", folder_out = "../resources/") +write_wtr(glm_temp, lake_name = "lake", folder_out) } \arguments{ \item{glm_temp}{a data.frame with DateTime and temperatures from GLM} @@ -16,10 +16,11 @@ write_wtr(glm_temp, lake_name = "lake", folder_out = "../resources/") Creates a *.wtr file for Lake Analyzer use from GLM simulation. \cr } \examples{ -file = '../test/output.nc' +file <- system.file('extdata', 'output.nc', package = 'rGLM') z_out <- c(0,1,2,3,4,5,6) glm_temp <- get_temp(file,reference='surface',z_out=z_out) -write_wtr(glm_temp,lake_name='lake',folder_out='../resources/') +folder_out <- system.file('extdata', package = 'rGLM') +write_wtr(glm_temp, lake_name = 'lake', folder_out = folder_out) } \author{ Jordan S. Read diff --git a/resources/.DS_Store b/resources/.DS_Store deleted file mode 100644 index 5008ddf..0000000 Binary files a/resources/.DS_Store and /dev/null differ diff --git a/resources/fieldData.tsv b/resources/fieldData.tsv deleted file mode 100644 index fafb2df..0000000 --- a/resources/fieldData.tsv +++ /dev/null @@ -1 +0,0 @@ -sampledate depth wtemp 1995-05-09 14 7.6 1995-05-09 15 7.6 1995-05-09 16 7.6 1995-05-09 17 7.6 1995-05-09 18 7.6 1995-05-09 19 7.6 1995-05-09 20 7.6 1995-05-09 21 7.6 1995-05-09 22 7.6 1995-05-09 23 7.6 1995-05-09 5 7.7 1995-05-09 6 7.7 1995-05-09 7 7.7 1995-05-09 8 7.7 1995-05-09 9 7.7 1995-05-09 10 7.7 1995-05-09 11 7.7 1995-05-09 12 7.7 1995-05-09 13 7.7 1995-05-09 0 7.8 1995-05-09 1 7.8 1995-05-09 2 7.8 1995-05-09 3 7.8 1995-05-09 4 7.8 1995-05-23 22.5 9.5 1995-05-23 23 9.5 1995-05-23 21 9.6 1995-05-23 21.5 9.6 1995-05-23 22 9.6 1995-05-23 20 9.8 1995-05-23 18 10.2 1995-05-23 19 10.2 1995-05-23 17 10.4 1995-05-23 16 10.5 1995-05-23 15 10.8 1995-05-23 14 11.1 1995-05-23 13 11.9 1995-05-23 12 12.6 1995-05-23 11 12.8 1995-05-23 9 12.9 1995-05-23 10 12.9 1995-05-23 8 13.1 1995-05-23 7 13.2 1995-05-23 6 13.3 1995-05-23 5 13.4 1995-05-23 3 13.9 1995-05-23 4 13.9 1995-05-23 0 14 1995-05-23 1 14 1995-05-23 2 14 1995-06-06 24 9.8 1995-06-06 22 9.9 1995-06-06 23 9.9 1995-06-06 21 10 1995-06-06 20 10.1 1995-06-06 18 10.3 1995-06-06 19 10.3 1995-06-06 17 10.6 1995-06-06 16 11 1995-06-06 15 11.2 1995-06-06 14 11.5 1995-06-06 13 12 1995-06-06 12 13 1995-06-06 11 13.5 1995-06-06 10 13.8 1995-06-06 9 14.1 1995-06-06 8 14.6 1995-06-06 7 14.9 1995-06-06 6 15.1 1995-06-06 5 15.6 1995-06-06 4 17.5 1995-06-06 3 17.9 1995-06-06 2 18 1995-06-06 1 18.7 1995-06-06 0 19.3 1995-06-21 15 11.7 1995-06-21 14 12.1 1995-06-21 13 13 1995-06-21 12 13.5 1995-06-21 11 14.3 1995-06-21 10 14.7 1995-06-21 9 15.8 1995-06-21 8 16.5 1995-06-21 7 17.5 1995-06-21 6 18.4 1995-06-21 5 20.1 1995-06-21 4 22.3 1995-06-21 3 24.2 1995-06-21 2 25.6 1995-06-21 1 27.4 1995-06-21 0 27.6 1995-07-06 25 10.4 1995-07-06 24 10.5 1995-07-06 22 10.6 1995-07-06 23 10.6 1995-07-06 20 10.9 1995-07-06 21 10.9 1995-07-06 19 11 1995-07-06 18 11.3 1995-07-06 17 11.6 1995-07-06 16 12.1 1995-07-06 15 12.9 1995-07-06 14 13.3 1995-07-06 13 14.2 1995-07-06 12 15.1 1995-07-06 0 21.4 1995-07-06 11 21.4 1995-07-06 1 21.5 1995-07-06 2 21.5 1995-07-06 3 21.5 1995-07-06 4 21.5 1995-07-06 5 21.5 1995-07-06 6 21.5 1995-07-06 7 21.5 1995-07-06 8 21.5 1995-07-06 9 21.5 1995-07-06 10 21.5 1995-07-18 23 10.8 1995-07-18 24 10.8 1995-07-18 22 10.9 1995-07-18 21 11 1995-07-18 19 11.1 1995-07-18 20 11.1 1995-07-18 18 11.3 1995-07-18 17 11.8 1995-07-18 16 12.2 1995-07-18 15 12.5 1995-07-18 14 12.8 1995-07-18 13 13 1995-07-18 12 13.7 1995-07-18 11 14.3 1995-07-18 10 15.8 1995-07-18 9 18.5 1995-07-18 0 24.9 1995-07-18 7 25 1995-07-18 8 25 1995-07-18 1 25.1 1995-07-18 2 25.1 1995-07-18 3 25.1 1995-07-18 4 25.1 1995-07-18 5 25.1 1995-07-18 6 25.1 1995-08-02 24.5 10.8 1995-08-02 23 10.9 1995-08-02 24 10.9 1995-08-02 22 11.1 1995-08-02 21 11.3 1995-08-02 20 11.4 1995-08-02 19 11.5 1995-08-02 18 11.8 1995-08-02 17 11.9 1995-08-02 16 12.1 1995-08-02 15 12.4 1995-08-02 14 12.8 1995-08-02 13.5 13.1 1995-08-02 13 13.3 1995-08-02 12.5 13.8 1995-08-02 12 14.4 1995-08-02 11.5 14.8 1995-08-02 11 15.5 1995-08-02 10.5 16.5 1995-08-02 10 18.3 1995-08-02 9.5 19.5 1995-08-02 9 20 1995-08-02 8 21.5 1995-08-02 7 22.7 1995-08-02 0 25.5 1995-08-02 3 25.5 1995-08-02 1 25.6 1995-08-02 2 25.6 1995-08-02 4 25.6 1995-08-02 5 25.6 1995-08-02 6 25.6 1995-08-14 22 11 1995-08-14 23 11 1995-08-14 21 11.1 1995-08-14 20 11.2 1995-08-14 19 11.4 1995-08-14 18 11.5 1995-08-14 17.5 11.6 1995-08-14 17 11.8 1995-08-14 16.5 12 1995-08-14 16 12.2 1995-08-14 15.5 12.4 1995-08-14 15 12.7 1995-08-14 14.5 12.8 1995-08-14 14 13 1995-08-14 13.5 13.1 1995-08-14 13 13.3 1995-08-14 12.5 14 1995-08-14 12 14.7 1995-08-14 11.5 15.7 1995-08-14 11 16.6 1995-08-14 10.5 17.2 1995-08-14 10 17.8 1995-08-14 9.5 18.2 1995-08-14 9 18.8 1995-08-14 8.5 20.1 1995-08-14 8 22.1 1995-08-14 7.5 22.5 1995-08-14 7 24 1995-08-14 6 26.7 1995-08-14 5 26.9 1995-08-14 4 27 1995-08-14 0 27.1 1995-08-14 1 27.1 1995-08-14 2 27.1 1995-08-14 3 27.1 1995-08-30 22 11 1995-08-30 23 11 1995-08-30 24 11 1995-08-30 21 11.1 1995-08-30 20 11.2 1995-08-30 19 11.5 1995-08-30 18 11.7 1995-08-30 17 11.8 1995-08-30 16 12.2 1995-08-30 15 12.8 1995-08-30 14 13.3 1995-08-30 13 14 1995-08-30 12.5 14.2 1995-08-30 12 14.9 1995-08-30 11.5 15.6 1995-08-30 11 16.5 1995-08-30 10.5 17.4 1995-08-30 10 18.1 1995-08-30 9.5 18.9 1995-08-30 9 20.7 1995-08-30 8.5 22.8 1995-08-30 8 24.8 1995-08-30 0 25 1995-08-30 6 25 1995-08-30 7 25 1995-08-30 1 25.1 1995-08-30 2 25.1 1995-08-30 3 25.1 1995-08-30 4 25.1 1995-08-30 5 25.1 1995-09-11 23 11.1 1995-09-11 21 11.2 1995-09-11 22 11.2 1995-09-11 20 11.3 1995-09-11 19 11.5 1995-09-11 18 11.6 1995-09-11 17 11.8 1995-09-11 16 12.1 1995-09-11 15.5 12.2 1995-09-11 15 12.4 1995-09-11 14.5 12.6 1995-09-11 14 12.9 1995-09-11 13.5 13.2 1995-09-11 13 13.6 1995-09-11 12.5 13.9 1995-09-11 12 15.6 1995-09-11 11.5 17.3 1995-09-11 11 18 1995-09-11 0 20.8 1995-09-11 10.5 20.8 1995-09-11 1 20.9 1995-09-11 2 20.9 1995-09-11 3 20.9 1995-09-11 4 20.9 1995-09-11 5 20.9 1995-09-11 6 20.9 1995-09-11 7 20.9 1995-09-11 8 20.9 1995-09-11 9 20.9 1995-09-11 10 20.9 1995-09-25 22 11.1 1995-09-25 23 11.1 1995-09-25 24 11.1 1995-09-25 21 11.2 1995-09-25 20 11.3 1995-09-25 19 11.4 1995-09-25 18 11.6 1995-09-25 17 11.8 1995-09-25 15 12 1995-09-25 16 12 1995-09-25 14.5 13 1995-09-25 14 14 1995-09-25 13.5 15.4 1995-09-25 12 16 1995-09-25 13 16 1995-09-25 0 16.1 1995-09-25 1 16.1 1995-09-25 2 16.1 1995-09-25 3 16.1 1995-09-25 4 16.1 1995-09-25 5 16.1 1995-09-25 6 16.1 1995-09-25 7 16.1 1995-09-25 8 16.1 1995-09-25 9 16.1 1995-09-25 10 16.1 1995-09-25 11 16.1 1995-10-11 22.5 11.7 1995-10-11 22 11.8 1995-10-11 21 11.9 1995-10-11 21.5 11.9 1995-10-11 20.5 12.2 1995-10-11 20 12.5 1995-10-11 19.5 12.6 1995-10-11 8 15 1995-10-11 9 15 1995-10-11 10 15 1995-10-11 11 15 1995-10-11 12 15 1995-10-11 13 15 1995-10-11 14 15 1995-10-11 15 15 1995-10-11 16 15 1995-10-11 17 15 1995-10-11 18 15 1995-10-11 19 15 1995-10-11 3 15.1 1995-10-11 4 15.1 1995-10-11 5 15.1 1995-10-11 6 15.1 1995-10-11 7 15.1 1995-10-11 0 15.2 1995-10-11 1 15.2 1995-10-11 2 15.2 1995-10-25 20 11.2 1995-10-25 21 11.2 1995-10-25 22 11.2 1995-10-25 19 11.3 1995-10-25 0 11.4 1995-10-25 7 11.4 1995-10-25 8 11.4 1995-10-25 9 11.4 1995-10-25 10 11.4 1995-10-25 11 11.4 1995-10-25 12 11.4 1995-10-25 13 11.4 1995-10-25 14 11.4 1995-10-25 15 11.4 1995-10-25 16 11.4 1995-10-25 17 11.4 1995-10-25 18 11.4 1995-10-25 1 11.5 1995-10-25 2 11.5 1995-10-25 3 11.5 1995-10-25 4 11.5 1995-10-25 5 11.5 1995-10-25 6 11.5 1995-11-10 0 7.4 1995-11-10 1 7.4 1995-11-10 2 7.4 1995-11-10 3 7.4 1995-11-10 4 7.4 1995-11-10 5 7.4 1995-11-10 6 7.4 1995-11-10 7 7.4 1995-11-10 8 7.4 1995-11-10 9 7.4 1995-11-10 10 7.4 1995-11-10 11 7.4 1995-11-10 12 7.4 1995-11-10 13 7.4 1995-11-10 14 7.4 1995-11-10 15 7.4 1995-11-10 16 7.4 1995-11-10 17 7.4 1995-11-10 18 7.4 1995-11-10 19 7.4 1995-11-10 20 7.4 1995-11-10 21 7.4 1995-11-10 22 7.4 1995-11-10 23 7.4 1995-12-06 0 2.3 1995-12-06 4 2.3 1995-12-06 8 2.3 1995-12-06 12 2.3 1995-12-06 16 2.3 1995-12-06 20 2.3 1995-12-06 23 2.3 1996-04-09 7 3.7 1996-04-09 8 3.7 1996-04-09 9 3.7 1996-04-09 10 3.7 1996-04-09 11 3.7 1996-04-09 12 3.7 1996-04-09 13 3.7 1996-04-09 3 3.8 1996-04-09 4 3.8 1996-04-09 5 3.8 1996-04-09 6 3.8 1996-04-09 14 3.8 1996-04-09 15 3.8 1996-04-09 16 3.8 1996-04-09 17 3.8 1996-04-09 1 3.9 1996-04-09 2 3.9 1996-04-09 18 3.9 1996-04-09 19 3.9 1996-04-09 20 3.9 1996-04-09 0 4.2 1996-04-17 1 4.5 1996-04-17 2 4.5 1996-04-17 3 4.5 1996-04-17 4 4.5 1996-04-17 5 4.5 1996-04-17 6 4.5 1996-04-17 7 4.5 1996-04-17 8 4.5 1996-04-17 9 4.5 1996-04-17 10 4.5 1996-04-17 11 4.5 1996-04-17 12 4.5 1996-04-17 13 4.5 1996-04-17 14 4.5 1996-04-17 15 4.5 1996-04-17 16 4.5 1996-04-17 17 4.5 1996-04-17 18 4.5 1996-04-17 19 4.5 1996-04-17 20 4.5 1996-04-17 21 4.5 1996-04-17 22 4.5 1996-04-17 0 4.6 1996-05-01 20 7.2 1996-05-01 21 7.2 1996-05-01 22 7.2 1996-05-01 23 7.2 1996-05-01 24 7.2 1996-05-01 0 7.3 1996-05-01 1 7.3 1996-05-01 2 7.3 1996-05-01 3 7.3 1996-05-01 4 7.3 1996-05-01 5 7.3 1996-05-01 6 7.3 1996-05-01 7 7.3 1996-05-01 8 7.3 1996-05-01 9 7.3 1996-05-01 10 7.3 1996-05-01 11 7.3 1996-05-01 12 7.3 1996-05-01 13 7.3 1996-05-01 14 7.3 1996-05-01 15 7.3 1996-05-01 16 7.3 1996-05-01 17 7.3 1996-05-01 18 7.3 1996-05-01 19 7.3 1996-05-14 22 8 1996-05-14 23 8 1996-05-14 18 8.1 1996-05-14 19 8.1 1996-05-14 20 8.1 1996-05-14 21 8.1 1996-05-14 17 8.2 1996-05-14 16 8.4 1996-05-14 15 8.9 1996-05-14 3 9 1996-05-14 4 9 1996-05-14 5 9 1996-05-14 6 9 1996-05-14 7 9 1996-05-14 8 9 1996-05-14 9 9 1996-05-14 10 9 1996-05-14 11 9 1996-05-14 12 9 1996-05-14 13 9 1996-05-14 14 9 1996-05-14 0 9.1 1996-05-14 1 9.1 1996-05-14 2 9.1 1996-05-28 20 9.2 1996-05-28 20.5 9.2 1996-05-28 19 11 1996-05-28 16 11.5 1996-05-28 17 11.5 1996-05-28 18 11.5 1996-05-28 0 11.6 1996-05-28 1 11.6 1996-05-28 2 11.6 1996-05-28 3 11.6 1996-05-28 4 11.6 1996-05-28 5 11.6 1996-05-28 6 11.6 1996-05-28 7 11.6 1996-05-28 8 11.6 1996-05-28 9 11.6 1996-05-28 10 11.6 1996-05-28 11 11.6 1996-05-28 12 11.6 1996-05-28 13 11.6 1996-05-28 14 11.6 1996-05-28 15 11.6 1996-06-10 21 10.3 1996-06-10 20 10.5 1996-06-10 19 10.8 1996-06-10 18 10.9 1996-06-10 17 11.3 1996-06-10 16 11.5 1996-06-10 15 11.9 1996-06-10 14 12.2 1996-06-10 13 12.5 1996-06-10 12 12.8 1996-06-10 11 13.4 1996-06-10 10 13.9 1996-06-10 9 14.1 1996-06-10 8 14.5 1996-06-10 5 14.6 1996-06-10 6 14.6 1996-06-10 7 14.6 1996-06-10 1 14.7 1996-06-10 2 14.7 1996-06-10 3 14.7 1996-06-10 4 14.7 1996-06-10 0 14.8 1996-06-26 21 10.8 1996-06-26 22 10.8 1996-06-26 20 11.1 1996-06-26 19 11.3 1996-06-26 18 11.5 1996-06-26 17 11.6 1996-06-26 16 11.7 1996-06-26 15 12 1996-06-26 14 12.3 1996-06-26 13 13.2 1996-06-26 12 13.3 1996-06-26 11 13.9 1996-06-26 10 14.5 1996-06-26 9 15 1996-06-26 8 16.1 1996-06-26 7 19.2 1996-06-26 6 20.3 1996-06-26 5 20.5 1996-06-26 3 20.7 1996-06-26 4 20.7 1996-06-26 2 20.8 1996-06-26 1 20.9 1996-06-26 0 21 1996-07-08 24.5 10.4 1996-07-08 22 10.7 1996-07-08 21 10.8 1996-07-08 20 11 1996-07-08 19 11.1 1996-07-08 18 11.2 1996-07-08 17 11.4 1996-07-08 16 11.6 1996-07-08 15 12 1996-07-08 14 12.3 1996-07-08 13 12.6 1996-07-08 12 12.8 1996-07-08 11 13.6 1996-07-08 10 15.2 1996-07-08 9 17 1996-07-08 8 22.7 1996-07-08 0 24.3 1996-07-08 1 24.3 1996-07-08 2 24.3 1996-07-08 3 24.3 1996-07-08 4 24.3 1996-07-08 5 24.3 1996-07-08 6 24.3 1996-07-08 7 24.3 1996-07-22 22 10.5 1996-07-22 21 10.6 1996-07-22 20 10.8 1996-07-22 19 11.1 1996-07-22 18 11.2 1996-07-22 17 11.4 1996-07-22 16 11.7 1996-07-22 15 11.9 1996-07-22 14 12.1 1996-07-22 13 13 1996-07-22 12 13.7 1996-07-22 11 15.2 1996-07-22 10 17.2 1996-07-22 9 19.1 1996-07-22 8 21.9 1996-07-22 0 22.6 1996-07-22 5 22.6 1996-07-22 6 22.6 1996-07-22 7 22.6 1996-07-22 1 22.7 1996-07-22 2 22.7 1996-07-22 3 22.7 1996-07-22 4 22.7 1996-08-05 21 10.4 1996-08-05 22 10.4 1996-08-05 22.5 10.4 1996-08-05 20 10.5 1996-08-05 19 10.9 1996-08-05 18 11.2 1996-08-05 17 11.7 1996-08-05 16 11.9 1996-08-05 15 12.1 1996-08-05 14 12.4 1996-08-05 13 12.9 1996-08-05 12 13.3 1996-08-05 11 13.5 1996-08-05 10 14.3 1996-08-05 9 19.1 1996-08-05 8 22.1 1996-08-05 7 22.3 1996-08-05 3 22.4 1996-08-05 4 22.4 1996-08-05 5 22.4 1996-08-05 6 22.4 1996-08-05 0 22.5 1996-08-05 1 22.5 1996-08-05 2 22.5 1996-08-19 23 10.5 1996-08-19 24 10.5 1996-08-19 22 10.6 1996-08-19 21 10.7 1996-08-19 20 10.8 1996-08-19 19 11 1996-08-19 18 11.2 1996-08-19 17 11.4 1996-08-19 16 11.5 1996-08-19 15 11.7 1996-08-19 14 12.1 1996-08-19 13 12.7 1996-08-19 12 13.1 1996-08-19 11 14.4 1996-08-19 10 15.6 1996-08-19 9 20.2 1996-08-19 8 22.9 1996-08-19 6 23.1 1996-08-19 7 23.1 1996-08-19 1 23.2 1996-08-19 2 23.2 1996-08-19 3 23.2 1996-08-19 4 23.2 1996-08-19 5 23.2 1996-08-19 0 23.3 1996-09-05 22 10.6 1996-09-05 21 10.8 1996-09-05 20 10.9 1996-09-05 19 11 1996-09-05 18 11.1 1996-09-05 17 11.4 1996-09-05 16 11.6 1996-09-05 15 12 1996-09-05 14 12.4 1996-09-05 13 12.9 1996-09-05 12 13.6 1996-09-05 11 15.2 1996-09-05 10 18.4 1996-09-05 9 21.3 1996-09-05 8 22.2 1996-09-05 7 23.1 1996-09-05 6.5 23.2 1996-09-05 5 23.5 1996-09-05 6 23.5 1996-09-05 4 23.7 1996-09-05 3 23.9 1996-09-05 2 24.2 1996-09-05 1 25.1 1996-09-05 0 26.2 1996-09-16 23 10.6 1996-09-16 22 10.7 1996-09-16 21 10.8 1996-09-16 20 11 1996-09-16 19 11.1 1996-09-16 18 11.2 1996-09-16 17 11.3 1996-09-16 16 11.8 1996-09-16 15 12.1 1996-09-16 14 12.6 1996-09-16 13 13.1 1996-09-16 12 14.2 1996-09-16 11 16.1 1996-09-16 10.5 18.5 1996-09-16 0 19 1996-09-16 1 19 1996-09-16 2 19 1996-09-16 9 19 1996-09-16 10 19 1996-09-16 3 19.1 1996-09-16 4 19.1 1996-09-16 5 19.1 1996-09-16 6 19.1 1996-09-16 7 19.1 1996-09-16 8 19.1 1996-10-16 22 11.1 1996-10-16 21 11.2 1996-10-16 20 12.1 1996-10-16 19 12.6 1996-10-16 18 12.9 1996-10-16 17 13.1 1996-10-16 16 13.6 1996-10-16 11 13.7 1996-10-16 12 13.7 1996-10-16 13 13.7 1996-10-16 14 13.7 1996-10-16 15 13.7 1996-10-16 7 13.8 1996-10-16 8 13.8 1996-10-16 9 13.8 1996-10-16 10 13.8 1996-10-16 6 13.9 1996-10-16 3 14 1996-10-16 4 14 1996-10-16 5 14 1996-10-16 2 14.1 1996-10-16 1 14.6 1996-10-16 0 14.8 1996-11-08 0 8.9 1996-11-08 1 9 1996-11-08 2 9 1996-11-08 3 9 1996-11-08 4 9 1996-11-08 5 9 1996-11-08 6 9 1996-11-08 7 9 1996-11-08 8 9 1996-11-08 9 9 1996-11-08 10 9 1996-11-08 11 9 1996-11-08 12 9 1996-11-08 13 9 1996-11-08 14 9 1996-11-08 15 9 1996-11-08 16 9 1996-11-08 17 9 1996-11-08 18 9 1996-11-08 19 9 1996-11-08 20 9 1996-11-08 21 9 1996-11-08 22 9 1996-11-25 13 4.1 1996-11-25 15 4.1 1996-11-25 16 4.1 1996-11-25 17 4.1 1996-11-25 21 4.1 1996-11-25 22 4.1 1996-11-25 1 4.2 1996-11-25 4 4.2 1996-11-25 5 4.2 1996-11-25 6 4.2 1996-11-25 7 4.2 1996-11-25 8 4.2 1996-11-25 9 4.2 1996-11-25 10 4.2 1996-11-25 11 4.2 1996-11-25 12 4.2 1996-11-25 14 4.2 1996-11-25 18 4.2 1996-11-25 19 4.2 1996-11-25 20 4.2 1996-11-25 0 4.3 1996-11-25 2 4.3 1996-11-25 3 4.3 1997-01-14 0 0.2 1997-01-14 1 0.4 1997-01-14 2 0.5 1997-01-14 3 0.5 1997-01-14 4 0.6 1997-01-14 5 0.6 1997-01-14 6 0.6 1997-01-14 7 0.6 1997-01-14 8 0.6 1997-01-14 9 0.6 1997-01-14 10 0.7 1997-01-14 11 0.7 1997-01-14 12 0.7 1997-01-14 13 0.7 1997-01-14 14 0.8 1997-01-14 15 0.9 1997-01-14 16 1 1997-01-14 17 1.1 1997-01-14 18 1.3 1997-01-14 19 1.4 1997-01-14 20 1.5 1997-01-14 21 1.5 1997-01-14 22 1.5 1997-01-14 23 1.8 1997-01-14 24 2.2 1997-02-17 0 0.4 1997-02-17 1 0.6 1997-02-17 2 0.9 1997-02-17 3 1 1997-02-17 4 1 1997-02-17 5 1 1997-02-17 6 1 1997-02-17 7 1 1997-02-17 8 1 1997-02-17 9 1 1997-02-17 10 1 1997-02-17 11 1.1 1997-02-17 12 1.2 1997-02-17 13 1.2 1997-02-17 14 1.2 1997-02-17 15 1.3 1997-02-17 15.5 1.4 1997-02-17 16 1.5 1997-02-17 17 1.6 1997-02-17 18 1.7 1997-02-17 19 1.8 1997-02-17 20 2 1997-02-17 21 2.2 1997-02-17 22 2.3 1997-04-09 9 3.7 1997-04-09 10 3.7 1997-04-09 11 3.7 1997-04-09 12 3.7 1997-04-09 13 3.7 1997-04-09 19 3.7 1997-04-09 20 3.7 1997-04-09 21 3.7 1997-04-09 3 3.8 1997-04-09 4 3.8 1997-04-09 5 3.8 1997-04-09 6 3.8 1997-04-09 7 3.8 1997-04-09 8 3.8 1997-04-09 14 3.8 1997-04-09 15 3.8 1997-04-09 16 3.8 1997-04-09 17 3.8 1997-04-09 18 3.8 1997-04-09 1 3.9 1997-04-09 2 3.9 1997-04-09 0 4 1997-04-21 17 4.5 1997-04-21 18 4.5 1997-04-21 19 4.5 1997-04-21 20 4.5 1997-04-21 21 4.5 1997-04-21 22 4.5 1997-04-21 16 4.6 1997-04-21 15 4.7 1997-04-21 13 4.8 1997-04-21 14 4.8 1997-04-21 8 4.9 1997-04-21 9 4.9 1997-04-21 10 4.9 1997-04-21 11 4.9 1997-04-21 12 4.9 1997-04-21 7 5 1997-04-21 4 5.1 1997-04-21 5 5.1 1997-04-21 6 5.1 1997-04-21 3 5.3 1997-04-21 2 5.4 1997-04-21 1 5.5 1997-04-21 0 5.6 1997-05-02 22 7.1 1997-05-02 21 7.2 1997-05-02 18 7.4 1997-05-02 19 7.4 1997-05-02 20 7.4 1997-05-02 12 7.5 1997-05-02 13 7.5 1997-05-02 14 7.5 1997-05-02 15 7.5 1997-05-02 16 7.5 1997-05-02 17 7.5 1997-05-02 8 7.6 1997-05-02 9 7.6 1997-05-02 10 7.6 1997-05-02 11 7.6 1997-05-02 5 7.7 1997-05-02 6 7.7 1997-05-02 7 7.7 1997-05-02 4 7.8 1997-05-02 0 7.9 1997-05-02 1 7.9 1997-05-02 2 7.9 1997-05-02 3 7.9 1997-05-13 21.5 9.5 1997-05-13 22 9.5 1997-05-13 21 9.7 1997-05-13 14 9.8 1997-05-13 15 9.8 1997-05-13 16 9.8 1997-05-13 17 9.8 1997-05-13 18 9.8 1997-05-13 19 9.8 1997-05-13 20 9.8 1997-05-13 9 9.9 1997-05-13 10 9.9 1997-05-13 11 9.9 1997-05-13 12 9.9 1997-05-13 13 9.9 1997-05-13 3 10 1997-05-13 4 10 1997-05-13 5 10 1997-05-13 6 10 1997-05-13 7 10 1997-05-13 8 10 1997-05-13 2 10.1 1997-05-13 1 10.3 1997-05-13 0 11.1 1997-05-28 21 10.7 1997-05-28 22 10.7 1997-05-28 23 10.7 1997-05-28 18 10.8 1997-05-28 19 10.8 1997-05-28 20 10.8 1997-05-28 17 11 1997-05-28 16 11.1 1997-05-28 15 11.2 1997-05-28 14 11.3 1997-05-28 10 11.4 1997-05-28 11 11.4 1997-05-28 12 11.4 1997-05-28 13 11.4 1997-05-28 8 11.5 1997-05-28 9 11.5 1997-05-28 7 11.7 1997-05-28 1 11.8 1997-05-28 2 11.8 1997-05-28 3 11.8 1997-05-28 4 11.8 1997-05-28 5 11.8 1997-05-28 6 11.8 1997-05-28 0 12 1997-06-11 22 10.9 1997-06-11 23 10.9 1997-06-11 19 11 1997-06-11 20 11 1997-06-11 21 11 1997-06-11 16 11.1 1997-06-11 17 11.1 1997-06-11 18 11.1 1997-06-11 15 11.7 1997-06-11 14 11.9 1997-06-11 13 12.3 1997-06-11 12 12.8 1997-06-11 11 13.3 1997-06-11 10 13.6 1997-06-11 9 14.3 1997-06-11 8 14.6 1997-06-11 7 14.8 1997-06-11 6 15.4 1997-06-11 5 16 1997-06-11 4 16.5 1997-06-11 3 17.1 1997-06-11 0 17.3 1997-06-11 1 17.3 1997-06-11 2 17.3 1997-06-25 22 11.5 1997-06-25 23 11.5 1997-06-25 24 11.5 1997-06-25 18 11.8 1997-06-25 17 11.9 1997-06-25 19 11.9 1997-06-25 16 12 1997-06-25 21 12.1 1997-06-25 15 12.2 1997-06-25 14 12.5 1997-06-25 20 12.5 1997-06-25 12 12.6 1997-06-25 13 12.6 1997-06-25 11 12.8 1997-06-25 10.5 15.5 1997-06-25 10 17.5 1997-06-25 9.5 18.4 1997-06-25 9 19.5 1997-06-25 8 19.8 1997-06-25 7 20.4 1997-06-25 6 21.3 1997-06-25 5 21.9 1997-06-25 4 22.2 1997-06-25 3 22.5 1997-06-25 1 22.7 1997-06-25 2 22.7 1997-06-25 0 22.8 1997-07-09 18 11.1 1997-07-09 19 11.5 1997-07-09 20 11.5 1997-07-09 21 11.5 1997-07-09 17 12 1997-07-09 16 12.4 1997-07-09 15 13.1 1997-07-09 14 13.4 1997-07-09 13 14.1 1997-07-09 12 14.5 1997-07-09 11 15.3 1997-07-09 10 16.3 1997-07-09 9 19.5 1997-07-09 8 20.8 1997-07-09 4 20.9 1997-07-09 5 20.9 1997-07-09 6 20.9 1997-07-09 7 20.9 1997-07-09 3 21.1 1997-07-09 0 21.2 1997-07-09 1 21.2 1997-07-09 2 21.2 1997-07-24 22 11.9 1997-07-24 21 12 1997-07-24 20 12.1 1997-07-24 19 12.2 1997-07-24 18 12.3 1997-07-24 17 12.5 1997-07-24 16 12.7 1997-07-24 15 13.4 1997-07-24 14 13.7 1997-07-24 13 14.3 1997-07-24 12 15.5 1997-07-24 10 17.4 1997-07-24 11 17.4 1997-07-24 9 21.3 1997-07-24 5 23.1 1997-07-24 6 23.1 1997-07-24 7 23.1 1997-07-24 8 23.1 1997-07-24 3 23.2 1997-07-24 4 23.2 1997-07-24 1 23.3 1997-07-24 2 23.3 1997-07-24 0 23.8 1997-08-06 21 11.6 1997-08-06 22 11.7 1997-08-06 20 11.8 1997-08-06 19 11.9 1997-08-06 18 12.1 1997-08-06 17 12.3 1997-08-06 16 12.6 1997-08-06 15 12.8 1997-08-06 14 13 1997-08-06 13 13.6 1997-08-06 12 14.3 1997-08-06 11 16.3 1997-08-06 10 19.7 1997-08-06 9 23.3 1997-08-06 2 23.4 1997-08-06 3 23.4 1997-08-06 4 23.4 1997-08-06 5 23.4 1997-08-06 6 23.4 1997-08-06 7 23.4 1997-08-06 8 23.4 1997-08-06 0 23.5 1997-08-06 1 23.5 1997-08-18 22 11.7 1997-08-18 21 11.8 1997-08-18 20 11.9 1997-08-18 19 12 1997-08-18 18 12.2 1997-08-18 17 12.3 1997-08-18 16 12.6 1997-08-18 15 13 1997-08-18 14 13.7 1997-08-18 13 14.7 1997-08-18 12 16.7 1997-08-18 11 18.3 1997-08-18 8 21.4 1997-08-18 9 21.4 1997-08-18 10 21.4 1997-08-18 6 21.5 1997-08-18 7 21.5 1997-08-18 3 21.6 1997-08-18 4 21.6 1997-08-18 5 21.6 1997-08-18 2 21.7 1997-08-18 0 21.9 1997-08-18 1 21.9 1997-09-02 21 11.7 1997-09-02 22 11.7 1997-09-02 23 11.7 1997-09-02 24 11.7 1997-09-02 20 11.8 1997-09-02 19 12.1 1997-09-02 18 12.3 1997-09-02 17 12.6 1997-09-02 16 12.8 1997-09-02 15 13.2 1997-09-02 14 13.7 1997-09-02 13 14.8 1997-09-02 12 16.1 1997-09-02 11 17.6 1997-09-02 10 20.2 1997-09-02 9 20.4 1997-09-02 8 20.7 1997-09-02 7 21.1 1997-09-02 6 21.3 1997-09-02 5 21.8 1997-09-02 3 22 1997-09-02 4 22 1997-09-02 0 22.1 1997-09-02 1 22.1 1997-09-02 2 22.1 1997-10-01 21 12.2 1997-10-01 22 12.2 1997-10-01 23 12.2 1997-10-01 20 12.3 1997-10-01 19 12.5 1997-10-01 18 13.3 1997-10-01 17 14.2 1997-10-01 16 15.2 1997-10-01 15 16.5 1997-10-01 3 17.4 1997-10-01 4 17.4 1997-10-01 5 17.4 1997-10-01 6 17.4 1997-10-01 7 17.4 1997-10-01 8 17.4 1997-10-01 9 17.4 1997-10-01 10 17.4 1997-10-01 11 17.4 1997-10-01 12 17.4 1997-10-01 13 17.4 1997-10-01 14 17.4 1997-10-01 1 17.6 1997-10-01 2 17.6 1997-10-01 0 17.7 1997-10-30 22 10.9 1997-10-30 18 11.1 1997-10-30 19 11.1 1997-10-30 20 11.1 1997-10-30 21 11.1 1997-10-30 0 11.2 1997-10-30 1 11.2 1997-10-30 2 11.2 1997-10-30 3 11.2 1997-10-30 4 11.2 1997-10-30 5 11.2 1997-10-30 6 11.2 1997-10-30 7 11.2 1997-10-30 8 11.2 1997-10-30 9 11.2 1997-10-30 10 11.2 1997-10-30 11 11.2 1997-10-30 12 11.2 1997-10-30 13 11.2 1997-10-30 14 11.2 1997-10-30 15 11.2 1997-10-30 16 11.2 1997-10-30 17 11.2 1997-11-30 7 4.7 1997-11-30 8 4.7 1997-11-30 9 4.7 1997-11-30 10 4.7 1997-11-30 11 4.7 1997-11-30 12 4.7 1997-11-30 13 4.7 1997-11-30 14 4.7 1997-11-30 15 4.7 1997-11-30 16 4.7 1997-11-30 17 4.7 1997-11-30 18 4.7 1997-11-30 19 4.7 1997-11-30 20 4.7 1997-11-30 21 4.7 1997-11-30 22 4.7 1997-11-30 23 4.7 1997-11-30 0 4.8 1997-11-30 1 4.8 1997-11-30 2 4.8 1997-11-30 3 4.8 1997-11-30 4 4.8 1997-11-30 5 4.8 1997-11-30 6 4.8 1998-02-06 1 0.5 1998-02-06 2 0.5 1998-02-06 3 0.5 1998-02-06 4 0.5 1998-02-06 5 0.5 1998-02-06 6 0.5 1998-02-06 7 0.5 1998-02-06 8 0.5 1998-02-06 9 0.5 1998-02-06 10 0.5 1998-02-06 0 0.6 1998-02-06 11 0.6 1998-02-06 12 0.6 1998-02-06 13 0.6 1998-02-06 14 0.6 1998-02-06 15 0.7 1998-02-06 16 0.8 1998-02-06 17 0.9 1998-02-06 19 0.9 1998-02-06 18 1 1998-02-06 20 1.1 1998-02-06 21 1.2 1998-03-13 0 0.7 1998-03-13 1 0.7 1998-03-13 2 0.7 1998-03-13 3 0.7 1998-03-13 4 0.7 1998-03-13 5 0.7 1998-03-13 6 0.7 1998-03-13 7 0.7 1998-03-13 8 0.7 1998-03-13 9 0.7 1998-03-13 10 0.7 1998-03-13 11 0.7 1998-03-13 11.5 0.7 1998-03-13 12 0.7 1998-03-13 13 0.7 1998-03-13 14 0.7 1998-03-13 15 0.7 1998-03-13 16 0.7 1998-03-13 17 0.7 1998-03-13 18 0.7 1998-03-13 19 0.7 1998-03-13 20 0.7 1998-03-13 21 0.7 1998-03-13 22 0.7 1998-03-13 23 0.7 1998-03-13 24 0.7 1998-03-26 9 2 1998-03-26 10 2 1998-03-26 11 2 1998-03-26 12 2 1998-03-26 13 2 1998-03-26 14 2 1998-03-26 15 2 1998-03-26 16 2 1998-03-26 17 2 1998-03-26 18 2 1998-03-26 19 2 1998-03-26 20 2 1998-03-26 21 2 1998-03-26 22 2 1998-03-26 23 2 1998-03-26 1 2.1 1998-03-26 2 2.1 1998-03-26 3 2.1 1998-03-26 4 2.1 1998-03-26 5 2.1 1998-03-26 6 2.1 1998-03-26 7 2.1 1998-03-26 8 2.1 1998-03-26 0 2.2 1998-04-10 19 5.3 1998-04-10 20 5.3 1998-04-10 21 5.3 1998-04-10 22 5.3 1998-04-10 23 5.3 1998-04-10 12 5.4 1998-04-10 13 5.4 1998-04-10 14 5.4 1998-04-10 15 5.4 1998-04-10 16 5.4 1998-04-10 17 5.4 1998-04-10 18 5.4 1998-04-10 6 5.5 1998-04-10 7 5.5 1998-04-10 8 5.5 1998-04-10 9 5.5 1998-04-10 10 5.5 1998-04-10 11 5.5 1998-04-10 0 5.6 1998-04-10 1 5.6 1998-04-10 2 5.6 1998-04-10 3 5.6 1998-04-10 4 5.6 1998-04-10 5 5.6 1998-04-24 23 6.8 1998-04-24 22 6.9 1998-04-24 21 7.2 1998-04-24 20 7.3 1998-04-24 18 7.4 1998-04-24 19 7.4 1998-04-24 17 7.5 1998-04-24 11 7.6 1998-04-24 12 7.6 1998-04-24 13 7.6 1998-04-24 14 7.6 1998-04-24 15 7.6 1998-04-24 16 7.6 1998-04-24 8 7.7 1998-04-24 9 7.7 1998-04-24 10 7.7 1998-04-24 7 7.8 1998-04-24 6 8.1 1998-04-24 5 8.8 1998-04-24 4 8.9 1998-04-24 3 9.4 1998-04-24 2 10.7 1998-04-24 1 11 1998-04-24 0 12 1998-05-11 22 7.8 1998-05-11 23 7.8 1998-05-11 19 7.9 1998-05-11 20 7.9 1998-05-11 21 7.9 1998-05-11 18 8 1998-05-11 17 8.1 1998-05-11 16 8.2 1998-05-11 15 8.4 1998-05-11 14 9.1 1998-05-11 13 9.6 1998-05-11 12 9.9 1998-05-11 11 10.8 1998-05-11 10 11.8 1998-05-11 9 12.3 1998-05-11 8 12.5 1998-05-11 4 12.8 1998-05-11 5 12.8 1998-05-11 6 12.8 1998-05-11 7 12.8 1998-05-11 3 12.9 1998-05-11 2 13.4 1998-05-11 1 13.7 1998-05-11 0 14.8 1998-05-28 23 8.3 1998-05-28 24 8.3 1998-05-28 21 8.4 1998-05-28 22 8.4 1998-05-28 20 8.5 1998-05-28 18 8.7 1998-05-28 19 8.7 1998-05-28 17 8.8 1998-05-28 16 8.9 1998-05-28 15 9.1 1998-05-28 14 9.2 1998-05-28 13 9.5 1998-05-28 12 10.1 1998-05-28 11 11 1998-05-28 10 13.4 1998-05-28 9 14.7 1998-05-28 8 15.8 1998-05-28 7 16.4 1998-05-28 6 18 1998-05-28 2 18.2 1998-05-28 3 18.2 1998-05-28 4 18.2 1998-05-28 5 18.2 1998-05-28 0 18.3 1998-05-28 1 18.3 1998-06-08 21 8.7 1998-06-08 22 8.7 1998-06-08 23 8.7 1998-06-08 24 8.7 1998-06-08 18 8.8 1998-06-08 19 8.8 1998-06-08 20 8.8 1998-06-08 17 8.9 1998-06-08 16 9.2 1998-06-08 15 9.5 1998-06-08 14 10.1 1998-06-08 13 10.4 1998-06-08 12 11 1998-06-08 11 12.3 1998-06-08 10 16 1998-06-08 8 16.9 1998-06-08 9 16.9 1998-06-08 2 17.1 1998-06-08 3 17.1 1998-06-08 4 17.1 1998-06-08 5 17.1 1998-06-08 6 17.1 1998-06-08 7 17.1 1998-06-08 0 17.2 1998-06-08 1 17.2 1998-06-22 21 9.1 1998-06-22 19 9.2 1998-06-22 20 9.2 1998-06-22 22 9.2 1998-06-22 18 9.4 1998-06-22 17 9.7 1998-06-22 16 10.1 1998-06-22 15 10.5 1998-06-22 14 11.6 1998-06-22 13 13 1998-06-22 12 14.6 1998-06-22 11 15.9 1998-06-22 10 17.1 1998-06-22 9 17.5 1998-06-22 8 17.9 1998-06-22 7 18.8 1998-06-22 6 19.8 1998-06-22 5 20.2 1998-06-22 4 21.3 1998-06-22 3 21.4 1998-06-22 2 21.7 1998-06-22 1 22.3 1998-06-22 0 22.5 1998-07-06 24 9.6 1998-07-06 23 9.7 1998-07-06 22 9.8 1998-07-06 21 10 1998-07-06 20 10.3 1998-07-06 19 10.7 1998-07-06 18 11.6 1998-07-06 17 11.8 1998-07-06 16 12.1 1998-07-06 15 13.2 1998-07-06 13 13.4 1998-07-06 14 13.4 1998-07-06 12 14.6 1998-07-06 11 16 1998-07-06 10 16.6 1998-07-06 9 18 1998-07-06 8 19.7 1998-07-06 7 21.5 1998-07-06 0 23.1 1998-07-06 1 23.1 1998-07-06 2 23.1 1998-07-06 3 23.1 1998-07-06 4 23.1 1998-07-06 5 23.1 1998-07-06 6 23.1 1998-07-23 22 9.7 1998-07-23 20 9.8 1998-07-23 21 9.8 1998-07-23 23 9.8 1998-07-23 24 9.8 1998-07-23 19 10.1 1998-07-23 18 10.2 1998-07-23 17 10.5 1998-07-23 16 11 1998-07-23 15 11.5 1998-07-23 14 12 1998-07-23 13 12.6 1998-07-23 12 13.9 1998-07-23 11 15.2 1998-07-23 10 17.9 1998-07-23 9 20.3 1998-07-23 0 24.9 1998-07-23 1 24.9 1998-07-23 2 24.9 1998-07-23 3 24.9 1998-07-23 4 24.9 1998-07-23 5 24.9 1998-07-23 6 24.9 1998-07-23 7 24.9 1998-07-23 8 24.9 1998-08-02 24 9.7 1998-08-02 23 9.8 1998-08-02 22 9.9 1998-08-02 21 10 1998-08-02 20 10.1 1998-08-02 19 10.2 1998-08-02 18 10.3 1998-08-02 17 10.7 1998-08-02 16 11 1998-08-02 15 11.8 1998-08-02 14 12.7 1998-08-02 13 13.5 1998-08-02 12 14 1998-08-02 11 14.9 1998-08-02 10 16.3 1998-08-02 9 19.3 1998-08-02 8 22.2 1998-08-02 7 23.5 1998-08-02 6 23.6 1998-08-02 4 23.7 1998-08-02 5 23.7 1998-08-02 3 24 1998-08-02 2 24.1 1998-08-02 0 24.3 1998-08-02 1 24.3 1998-08-18 23 9.8 1998-08-18 24 9.8 1998-08-18 22 10 1998-08-18 21 10.1 1998-08-18 20 10.2 1998-08-18 19 10.5 1998-08-18 18 11.1 1998-08-18 17 11.9 1998-08-18 16 12.1 1998-08-18 15 12.4 1998-08-18 14 13.1 1998-08-18 13 13.5 1998-08-18 12 14.3 1998-08-18 11 15.6 1998-08-18 10 16.9 1998-08-18 9 19.6 1998-08-18 8 22.2 1998-08-18 7 22.8 1998-08-18 0 23.6 1998-08-18 1 23.6 1998-08-18 2 23.6 1998-08-18 3 23.6 1998-08-18 4 23.6 1998-08-18 5 23.6 1998-08-18 6 23.6 1998-09-02 21 10 1998-09-02 22 10 1998-09-02 23 10 1998-09-02 19 10.1 1998-09-02 20 10.1 1998-09-02 18 10.4 1998-09-02 17 10.5 1998-09-02 16 11.1 1998-09-02 15 11.9 1998-09-02 14 12.6 1998-09-02 13 13.2 1998-09-02 12 16 1998-09-02 11 18.3 1998-09-02 0 22.9 1998-09-02 1 23 1998-09-02 2 23 1998-09-02 3 23 1998-09-02 4 23 1998-09-02 5 23 1998-09-02 6 23 1998-09-02 7 23 1998-09-02 8 23 1998-09-02 9 23 1998-09-02 10 23 1998-09-28 23 9.9 1998-09-28 22 10 1998-09-28 21 10.2 1998-09-28 20 10.3 1998-09-28 19 10.4 1998-09-28 18 10.8 1998-09-28 17 11 1998-09-28 16 11.3 1998-09-28 15 11.5 1998-09-28 14 12.5 1998-09-28 13 13.9 1998-09-28 12 14.9 1998-09-28 0 20 1998-09-28 1 20 1998-09-28 2 20 1998-09-28 3 20 1998-09-28 4 20 1998-09-28 5 20 1998-09-28 6 20 1998-09-28 7 20 1998-09-28 8 20 1998-09-28 9 20 1998-09-28 10 20 1998-09-28 11 20 1998-10-27 23 10.2 1998-10-27 21 10.3 1998-10-27 22 10.3 1998-10-27 20 10.5 1998-10-27 19 10.7 1998-10-27 18 12 1998-10-27 17 13.1 1998-10-27 15 13.2 1998-10-27 16 13.2 1998-10-27 9 13.3 1998-10-27 10 13.3 1998-10-27 11 13.3 1998-10-27 12 13.3 1998-10-27 13 13.3 1998-10-27 14 13.3 1998-10-27 7 13.4 1998-10-27 8 13.4 1998-10-27 6 13.5 1998-10-27 1 13.6 1998-10-27 2 13.6 1998-10-27 3 13.6 1998-10-27 4 13.6 1998-10-27 5 13.6 1998-10-27 0 13.7 1998-11-23 1 7.1 1998-11-23 2 7.1 1998-11-23 3 7.1 1998-11-23 4 7.1 1998-11-23 5 7.1 1998-11-23 6 7.1 1998-11-23 7 7.1 1998-11-23 8 7.1 1998-11-23 9 7.1 1998-11-23 10 7.1 1998-11-23 11 7.1 1998-11-23 12 7.1 1998-11-23 13 7.1 1998-11-23 14 7.1 1998-11-23 15 7.1 1998-11-23 16 7.1 1998-11-23 17 7.1 1998-11-23 18 7.1 1998-11-23 19 7.1 1998-11-23 20 7.1 1998-11-23 0 7.2 1999-01-25 0 0.4 1999-01-25 1 1.3 1999-01-25 6 1.3 1999-01-25 2 1.4 1999-01-25 3 1.4 1999-01-25 4 1.4 1999-01-25 5 1.4 1999-01-25 7 1.4 1999-01-25 8 1.4 1999-01-25 9 1.5 1999-01-25 10 1.6 1999-01-25 11 1.6 1999-01-25 12 1.7 1999-01-25 13 1.7 1999-01-25 14 1.7 1999-01-25 15 1.9 1999-01-25 17 2.2 1999-01-25 18 2.3 1999-01-25 19 2.5 1999-01-25 20 2.7 1999-01-25 21 2.8 1999-01-25 22 2.8 1999-01-25 23 2.9 1999-02-22 2 2.7 1999-02-22 3 2.7 1999-02-22 4 2.7 1999-02-22 17 2.7 1999-02-22 18 2.7 1999-02-22 0 2.8 1999-02-22 1 2.8 1999-02-22 5 2.8 1999-02-22 6 2.8 1999-02-22 7 2.8 1999-02-22 8 2.8 1999-02-22 9 2.8 1999-02-22 10 2.8 1999-02-22 16 2.8 1999-02-22 19 2.8 1999-02-22 11 2.9 1999-02-22 12 2.9 1999-02-22 13 2.9 1999-02-22 14 2.9 1999-02-22 15 2.9 1999-02-22 21 2.9 1999-02-22 20 3 1999-02-22 22 3.2 1999-03-29 9 3.8 1999-03-29 10 3.8 1999-03-29 12 3.8 1999-03-29 13 3.8 1999-03-29 3 3.9 1999-03-29 4 3.9 1999-03-29 5 3.9 1999-03-29 6 3.9 1999-03-29 7 3.9 1999-03-29 8 3.9 1999-03-29 11 3.9 1999-03-29 14 3.9 1999-03-29 15 3.9 1999-03-29 16 3.9 1999-03-29 17 3.9 1999-03-29 18 3.9 1999-03-29 19 3.9 1999-03-29 20 3.9 1999-03-29 0 4 1999-03-29 1 4 1999-03-29 2 4 1999-04-12 4 6.7 1999-04-12 5 6.7 1999-04-12 6 6.7 1999-04-12 7 6.7 1999-04-12 8 6.7 1999-04-12 9 6.7 1999-04-12 10 6.7 1999-04-12 11 6.7 1999-04-12 12 6.7 1999-04-12 13 6.7 1999-04-12 14 6.7 1999-04-12 15 6.7 1999-04-12 16 6.7 1999-04-12 17 6.7 1999-04-12 18 6.7 1999-04-12 19 6.7 1999-04-12 20 6.7 1999-04-12 21 6.7 1999-04-12 22 6.7 1999-04-12 23 6.7 1999-04-12 1 6.8 1999-04-12 2 6.8 1999-04-12 3 6.8 1999-04-12 0 6.9 1999-04-26 23 7.7 1999-04-26 13 7.8 1999-04-26 14 7.8 1999-04-26 15 7.8 1999-04-26 16 7.8 1999-04-26 17 7.8 1999-04-26 18 7.8 1999-04-26 19 7.8 1999-04-26 20 7.8 1999-04-26 21 7.8 1999-04-26 22 7.8 1999-04-26 10 7.9 1999-04-26 11 7.9 1999-04-26 12 7.9 1999-04-26 9 8 1999-04-26 8 8.2 1999-04-26 5 8.4 1999-04-26 6 8.4 1999-04-26 7 8.4 1999-04-26 4 8.6 1999-04-26 3 8.8 1999-04-26 2 9.4 1999-04-26 1 9.6 1999-04-26 0 9.8 1999-05-10 24 9.1 1999-05-10 23 9.2 1999-05-10 22 9.4 1999-05-10 21 9.5 1999-05-10 19 9.6 1999-05-10 20 9.6 1999-05-10 18 9.7 1999-05-10 17 9.9 1999-05-10 16 10.2 1999-05-10 15 10.6 1999-05-10 14 10.8 1999-05-10 13 11.2 1999-05-10 12 11.4 1999-05-10 11 11.5 1999-05-10 10 11.6 1999-05-10 8 11.7 1999-05-10 9 11.7 1999-05-10 5 11.8 1999-05-10 6 11.8 1999-05-10 7 11.8 1999-05-10 2 11.9 1999-05-10 3 11.9 1999-05-10 4 11.9 1999-05-10 1 12 1999-05-10 0 12.1 1999-05-26 23 10.3 1999-05-26 24 10.3 1999-05-26 21 10.4 1999-05-26 22 10.4 1999-05-26 20 10.5 1999-05-26 19 10.7 1999-05-26 18 11.2 1999-05-26 17 11.8 1999-05-26 16 12.8 1999-05-26 15 13.3 1999-05-26 14 14 1999-05-26 11 14.3 1999-05-26 12 14.3 1999-05-26 13 14.3 1999-05-26 0 14.4 1999-05-26 1 14.4 1999-05-26 2 14.4 1999-05-26 3 14.4 1999-05-26 4 14.4 1999-05-26 5 14.4 1999-05-26 6 14.4 1999-05-26 7 14.4 1999-05-26 8 14.4 1999-05-26 9 14.4 1999-05-26 10 14.4 1999-06-07 24 11.2 1999-06-07 23 11.3 1999-06-07 22 11.4 1999-06-07 20 11.5 1999-06-07 21 11.5 1999-06-07 19 11.7 1999-06-07 18 11.9 1999-06-07 17 12.2 1999-06-07 16 12.5 1999-06-07 15 12.8 1999-06-07 14 13.2 1999-06-07 13 13.7 1999-06-07 12 13.9 1999-06-07 11 14.6 1999-06-07 10 14.8 1999-06-07 9 15.7 1999-06-07 8 19 1999-06-07 2 19.2 1999-06-07 3 19.2 1999-06-07 4 19.2 1999-06-07 5 19.2 1999-06-07 6 19.2 1999-06-07 7 19.2 1999-06-07 0 19.3 1999-06-07 1 19.3 1999-06-21 23 11.5 1999-06-21 22 11.7 1999-06-21 21 11.8 1999-06-21 19 11.9 1999-06-21 20 11.9 1999-06-21 18 12.1 1999-06-21 17 12.2 1999-06-21 16 12.6 1999-06-21 15 13.1 1999-06-21 14 13.7 1999-06-21 13 14.1 1999-06-21 12 14.5 1999-06-21 11 15.7 1999-06-21 10 17.3 1999-06-21 9 19.4 1999-06-21 8 19.8 1999-06-21 6 20.4 1999-06-21 7 20.4 1999-06-21 5 20.6 1999-06-21 4 20.7 1999-06-21 3 21 1999-06-21 2 21.2 1999-06-21 0 21.4 1999-06-21 1 21.4 1999-07-06 23 11.7 1999-07-06 24 11.7 1999-07-06 21 11.8 1999-07-06 22 11.8 1999-07-06 20 11.9 1999-07-06 19 12 1999-07-06 18 12.3 1999-07-06 17 12.6 1999-07-06 16 12.8 1999-07-06 15 13.3 1999-07-06 14 13.7 1999-07-06 13 14.2 1999-07-06 12 15.3 1999-07-06 11 16.1 1999-07-06 10 17.3 1999-07-06 9 23 1999-07-06 7 24.1 1999-07-06 8 24.1 1999-07-06 5 24.2 1999-07-06 6 24.2 1999-07-06 4 24.5 1999-07-06 0 24.7 1999-07-06 1 24.7 1999-07-06 2 24.7 1999-07-06 3 24.7 1999-07-19 24 11.7 1999-07-19 23 11.8 1999-07-19 22 11.9 1999-07-19 21 12 1999-07-19 20 12.2 1999-07-19 19 12.3 1999-07-19 18 12.5 1999-07-19 17 12.9 1999-07-19 16 13.3 1999-07-19 15 13.6 1999-07-19 14 14.5 1999-07-19 13 14.9 1999-07-19 12 15.7 1999-07-19 11 19.6 1999-07-19 10 22 1999-07-19 9 23.8 1999-07-19 8 24.1 1999-07-19 5 24.3 1999-07-19 6 24.3 1999-07-19 7 24.3 1999-07-19 0 24.4 1999-07-19 1 24.4 1999-07-19 2 24.4 1999-07-19 3 24.4 1999-07-19 4 24.4 1999-08-02 22 11.9 1999-08-02 23 11.9 1999-08-02 24 11.9 1999-08-02 21 12.1 1999-08-02 20 12.4 1999-08-02 18 12.5 1999-08-02 19 12.5 1999-08-02 17 12.6 1999-08-02 16 12.8 1999-08-02 15 13.5 1999-08-02 14 14.4 1999-08-02 13 15.4 1999-08-02 12 16.9 1999-08-02 11 19 1999-08-02 10 21.2 1999-08-02 9 23.1 1999-08-02 0 26.3 1999-08-02 1 26.3 1999-08-02 2 26.3 1999-08-02 3 26.3 1999-08-02 4 26.3 1999-08-02 5 26.3 1999-08-02 6 26.3 1999-08-02 7 26.3 1999-08-02 8 26.3 1999-08-16 22 12 1999-08-16 23 12 1999-08-16 21 12.1 1999-08-16 20 12.2 1999-08-16 19 12.6 1999-08-16 18 12.7 1999-08-16 17 12.9 1999-08-16 16 13.2 1999-08-16 15 13.5 1999-08-16 14 14.2 1999-08-16 13 14.6 1999-08-16 12 18.4 1999-08-16 0 22.6 1999-08-16 1 22.6 1999-08-16 2 22.6 1999-08-16 3 22.6 1999-08-16 4 22.7 1999-08-16 5 22.7 1999-08-16 6 22.7 1999-08-16 7 22.7 1999-08-16 8 22.7 1999-08-16 9 22.7 1999-08-16 10 22.7 1999-08-16 11 22.7 1999-08-30 23 11.8 1999-08-30 24 11.8 1999-08-30 22 11.9 1999-08-30 21 12.1 1999-08-30 20 12.2 1999-08-30 19 12.4 1999-08-30 18 12.6 1999-08-30 17 12.8 1999-08-30 16 13.2 1999-08-30 15 13.5 1999-08-30 14 14.8 1999-08-30 13 15.1 1999-08-30 12 19.7 1999-08-30 11 21.2 1999-08-30 0 22.2 1999-08-30 10 22.2 1999-08-30 1 22.3 1999-08-30 2 22.3 1999-08-30 3 22.3 1999-08-30 4 22.3 1999-08-30 5 22.3 1999-08-30 6 22.3 1999-08-30 7 22.3 1999-08-30 8 22.3 1999-08-30 9 22.3 1999-09-27 24 12 1999-09-27 22 12.1 1999-09-27 23 12.1 1999-09-27 21 12.2 1999-09-27 20 12.4 1999-09-27 19 12.8 1999-09-27 18 13 1999-09-27 17 13.4 1999-09-27 16 14.9 1999-09-27 15 17.5 1999-09-27 14 17.7 1999-09-27 0 17.9 1999-09-27 1 17.9 1999-09-27 2 17.9 1999-09-27 3 17.9 1999-09-27 4 17.9 1999-09-27 5 17.9 1999-09-27 6 17.9 1999-09-27 7 17.9 1999-09-27 8 17.9 1999-09-27 9 17.9 1999-09-27 10 17.9 1999-09-27 11 17.9 1999-09-27 12 17.9 1999-09-27 13 17.9 1999-10-07 23 12 1999-10-07 24 12 1999-10-07 22 12.2 1999-10-07 21 12.3 1999-10-07 20 12.4 1999-10-07 19 12.5 1999-10-07 18 13.3 1999-10-07 17 14.5 1999-10-07 0 14.6 1999-10-07 1 14.6 1999-10-07 2 14.6 1999-10-07 3 14.6 1999-10-07 4 14.6 1999-10-07 5 14.6 1999-10-07 6 14.6 1999-10-07 7 14.6 1999-10-07 8 14.6 1999-10-07 9 14.6 1999-10-07 10 14.6 1999-10-07 11 14.6 1999-10-07 12 14.6 1999-10-07 13 14.6 1999-10-07 14 14.6 1999-10-07 15 14.6 1999-10-07 16 14.6 1999-10-26 1 11.4 1999-10-26 2 11.4 1999-10-26 3 11.4 1999-10-26 4 11.4 1999-10-26 5 11.4 1999-10-26 6 11.4 1999-10-26 7 11.4 1999-10-26 8 11.4 1999-10-26 9 11.4 1999-10-26 10 11.4 1999-10-26 11 11.4 1999-10-26 12 11.4 1999-10-26 13 11.4 1999-10-26 14 11.4 1999-10-26 15 11.4 1999-10-26 16 11.4 1999-10-26 17 11.4 1999-10-26 18 11.4 1999-10-26 19 11.4 1999-10-26 20 11.4 1999-10-26 21 11.4 1999-10-26 22 11.4 1999-10-26 23 11.4 1999-10-26 0 11.5 1999-11-22 2 9.3 1999-11-22 3 9.3 1999-11-22 4 9.3 1999-11-22 5 9.3 1999-11-22 6 9.3 1999-11-22 7 9.3 1999-11-22 8 9.3 1999-11-22 9 9.3 1999-11-22 10 9.3 1999-11-22 11 9.3 1999-11-22 12 9.3 1999-11-22 13 9.3 1999-11-22 14 9.3 1999-11-22 15 9.3 1999-11-22 16 9.3 1999-11-22 17 9.3 1999-11-22 18 9.3 1999-11-22 19 9.3 1999-11-22 20 9.3 1999-11-22 21 9.3 1999-11-22 22 9.3 1999-11-22 23 9.3 1999-11-22 0 9.4 1999-11-22 1 9.4 2000-01-24 3 0.3 2000-01-24 1 0.4 2000-01-24 2 0.4 2000-01-24 4 0.4 2000-01-24 5 0.4 2000-01-24 6 0.4 2000-01-24 7 0.4 2000-01-24 8 0.4 2000-01-24 9 0.4 2000-01-24 10 0.4 2000-01-24 11 0.4 2000-01-24 12 0.4 2000-01-24 13 0.4 2000-01-24 14 0.4 2000-01-24 15 0.4 2000-01-24 16 0.5 2000-01-24 17 0.6 2000-01-24 18 0.7 2000-01-24 0 0.8 2000-01-24 19 0.9 2000-01-24 20 1 2000-01-24 21 1.1 2000-01-24 22 1.2 2000-01-24 23 1.2 2000-01-24 24 1.6 2000-02-28 4 1.1 2000-02-28 5 1.1 2000-02-28 6 1.1 2000-02-28 7 1.1 2000-02-28 8 1.1 2000-02-28 9 1.1 2000-02-28 10 1.1 2000-02-28 11 1.1 2000-02-28 12 1.1 2000-02-28 13 1.1 2000-02-28 14 1.1 2000-02-28 15 1.1 2000-02-28 16 1.1 2000-02-28 0 1.2 2000-02-28 2 1.2 2000-02-28 3 1.2 2000-02-28 17 1.2 2000-02-28 1 1.4 2000-02-28 18 1.5 2000-02-28 19 1.7 2000-02-28 20 2 2000-02-28 21 2.2 2000-03-13 6 2.8 2000-03-13 7 2.8 2000-03-13 8 2.8 2000-03-13 9 2.8 2000-03-13 10 2.8 2000-03-13 11 2.8 2000-03-13 12 2.8 2000-03-13 13 2.8 2000-03-13 14 2.8 2000-03-13 15 2.8 2000-03-13 16 2.8 2000-03-13 17 2.8 2000-03-13 18 2.8 2000-03-13 19 2.8 2000-03-13 1 2.9 2000-03-13 2 2.9 2000-03-13 3 2.9 2000-03-13 4 2.9 2000-03-13 5 2.9 2000-03-13 20 2.9 2000-03-13 21 2.9 2000-03-13 22 2.9 2000-03-13 23 2.9 2000-03-13 24 2.9 2000-03-13 0 3 2000-03-29 20 4.1 2000-03-29 21 4.1 2000-03-29 23 4.1 2000-03-29 5 4.2 2000-03-29 7 4.2 2000-03-29 8 4.2 2000-03-29 9 4.2 2000-03-29 10 4.2 2000-03-29 11 4.2 2000-03-29 12 4.2 2000-03-29 13 4.2 2000-03-29 14 4.2 2000-03-29 15 4.2 2000-03-29 16 4.2 2000-03-29 17 4.2 2000-03-29 18 4.2 2000-03-29 19 4.2 2000-03-29 22 4.2 2000-03-29 1 4.3 2000-03-29 2 4.3 2000-03-29 3 4.3 2000-03-29 4 4.3 2000-03-29 6 4.3 2000-03-29 0 4.4 2000-04-10 13 5.6 2000-04-10 14 5.6 2000-04-10 15 5.6 2000-04-10 16 5.6 2000-04-10 17 5.6 2000-04-10 18 5.6 2000-04-10 19 5.6 2000-04-10 20 5.6 2000-04-10 21 5.6 2000-04-10 22 5.6 2000-04-10 23 5.6 2000-04-10 24 5.6 2000-04-10 0 5.7 2000-04-10 1 5.7 2000-04-10 2 5.7 2000-04-10 3 5.7 2000-04-10 4 5.7 2000-04-10 5 5.7 2000-04-10 6 5.7 2000-04-10 7 5.7 2000-04-10 8 5.7 2000-04-10 9 5.7 2000-04-10 10 5.7 2000-04-10 11 5.7 2000-04-10 12 5.7 2000-04-25 23 6.4 2000-04-25 24 6.4 2000-04-25 20 6.5 2000-04-25 21 6.5 2000-04-25 22 6.5 2000-04-25 19 6.6 2000-04-25 18 6.7 2000-04-25 16 7 2000-04-25 17 7 2000-04-25 5 7.1 2000-04-25 6 7.1 2000-04-25 7 7.1 2000-04-25 8 7.1 2000-04-25 9 7.1 2000-04-25 10 7.1 2000-04-25 11 7.1 2000-04-25 12 7.1 2000-04-25 13 7.1 2000-04-25 14 7.1 2000-04-25 15 7.1 2000-04-25 2 7.2 2000-04-25 3 7.2 2000-04-25 4 7.2 2000-04-25 1 7.3 2000-04-25 0 7.5 2000-05-09 23 6.8 2000-05-09 24 6.8 2000-05-09 21 6.9 2000-05-09 22 6.9 2000-05-09 20 7 2000-05-09 19 7.1 2000-05-09 18 7.3 2000-05-09 17 7.4 2000-05-09 16 7.5 2000-05-09 15 7.6 2000-05-09 14 7.7 2000-05-09 13 7.8 2000-05-09 12 7.9 2000-05-09 11 8.2 2000-05-09 10 8.6 2000-05-09 9 8.8 2000-05-09 8 9.3 2000-05-09 7 9.7 2000-05-09 6 16 2000-05-09 5 16.5 2000-05-09 4 16.6 2000-05-09 0 16.8 2000-05-09 1 16.8 2000-05-09 2 16.8 2000-05-09 3 16.8 2000-05-22 24 8.1 2000-05-22 24.5 8.1 2000-05-22 23 8.4 2000-05-22 22 8.5 2000-05-22 21 8.6 2000-05-22 20 8.7 2000-05-22 19 8.8 2000-05-22 18 8.9 2000-05-22 17 9.1 2000-05-22 16 9.8 2000-05-22 15 10.6 2000-05-22 14 11.1 2000-05-22 13 11.2 2000-05-22 12 11.3 2000-05-22 11.5 11.4 2000-05-22 11 11.5 2000-05-22 10.5 11.6 2000-05-22 10 11.7 2000-05-22 9.5 11.8 2000-05-22 9 12.1 2000-05-22 8 13.5 2000-05-22 6 13.6 2000-05-22 7 13.6 2000-05-22 0 13.7 2000-05-22 1 13.7 2000-05-22 2 13.7 2000-05-22 3 13.7 2000-05-22 4 13.7 2000-05-22 5 13.7 2000-06-06 25.2 10.1 2000-06-06 25 10.2 2000-06-06 24 10.3 2000-06-06 23 10.5 2000-06-06 22 10.6 2000-06-06 21 10.7 2000-06-06 20 10.9 2000-06-06 19.5 11 2000-06-06 19 11.1 2000-06-06 18.5 11.4 2000-06-06 18 11.5 2000-06-06 17.5 11.9 2000-06-06 17 12.1 2000-06-06 16.5 12.5 2000-06-06 16 12.8 2000-06-06 15.5 13.3 2000-06-06 15 13.4 2000-06-06 14.5 13.6 2000-06-06 14 14.7 2000-06-06 11 15.2 2000-06-06 12 15.2 2000-06-06 13 15.2 2000-06-06 4 15.3 2000-06-06 5 15.3 2000-06-06 6 15.3 2000-06-06 7 15.3 2000-06-06 8 15.3 2000-06-06 9 15.3 2000-06-06 10 15.3 2000-06-06 3 15.4 2000-06-06 2 15.5 2000-06-06 0 15.7 2000-06-06 1 15.7 2000-06-19 25 10.5 2000-06-19 25.1 10.5 2000-06-19 22.5 10.6 2000-06-19 23 10.6 2000-06-19 23.5 10.6 2000-06-19 24 10.6 2000-06-19 24.5 10.6 2000-06-19 20 10.7 2000-06-19 20.5 10.7 2000-06-19 21 10.7 2000-06-19 21.5 10.7 2000-06-19 22 10.7 2000-06-19 19.5 10.8 2000-06-19 19 10.9 2000-06-19 18.5 11.1 2000-06-19 18 11.2 2000-06-19 17.5 11.4 2000-06-19 17 11.7 2000-06-19 16.5 12 2000-06-19 16 12.2 2000-06-19 15.5 12.3 2000-06-19 15 12.6 2000-06-19 14.5 12.8 2000-06-19 14 13.2 2000-06-19 13.5 13.3 2000-06-19 13 13.8 2000-06-19 12.5 14.4 2000-06-19 12 15.8 2000-06-19 11 18 2000-06-19 10 18.3 2000-06-19 9 18.6 2000-06-19 8 18.9 2000-06-19 6 19 2000-06-19 7 19 2000-06-19 4 19.1 2000-06-19 5 19.1 2000-06-19 3 19.2 2000-06-19 1 19.3 2000-06-19 2 19.3 2000-06-19 0 19.5 2000-07-03 25 11 2000-07-03 25.2 11 2000-07-03 24 11.1 2000-07-03 23 11.3 2000-07-03 22 11.4 2000-07-03 21 11.5 2000-07-03 20 11.6 2000-07-03 19 11.7 2000-07-03 17 11.9 2000-07-03 18 11.9 2000-07-03 16 12.3 2000-07-03 15.5 12.6 2000-07-03 15 12.9 2000-07-03 14.5 13.5 2000-07-03 14 14.2 2000-07-03 13.5 14.5 2000-07-03 13 15.7 2000-07-03 12.5 17.2 2000-07-03 12 17.9 2000-07-03 11 19 2000-07-03 10 19.1 2000-07-03 9 20.2 2000-07-03 8 21.1 2000-07-03 0 21.3 2000-07-03 1 21.3 2000-07-03 2 21.3 2000-07-03 3 21.3 2000-07-03 4 21.3 2000-07-03 5 21.3 2000-07-03 6 21.3 2000-07-03 7 21.3 2000-07-17 23 11.2 2000-07-17 22 11.3 2000-07-17 21 11.8 2000-07-17 20 12 2000-07-17 19 12.1 2000-07-17 18 12.4 2000-07-17 17 12.7 2000-07-17 16 13.1 2000-07-17 15 13.6 2000-07-17 14 14.4 2000-07-17 13 15.5 2000-07-17 12 16.9 2000-07-17 11 17.8 2000-07-17 10 18.8 2000-07-17 9.5 19.4 2000-07-17 9 19.7 2000-07-17 8.5 20.6 2000-07-17 8 21.2 2000-07-17 7 24.2 2000-07-17 6 24.7 2000-07-17 5 25 2000-07-17 3 25.1 2000-07-17 4 25.1 2000-07-17 0 25.2 2000-07-17 1 25.2 2000-07-17 2 25.2 2000-07-31 24 11.3 2000-07-31 24.2 11.3 2000-07-31 22 11.4 2000-07-31 23 11.4 2000-07-31 21 11.5 2000-07-31 20 11.8 2000-07-31 19 12.1 2000-07-31 18 12.5 2000-07-31 17 12.9 2000-07-31 16 13.4 2000-07-31 15.5 13.6 2000-07-31 15 13.8 2000-07-31 14.5 14.3 2000-07-31 14 15 2000-07-31 13.5 15.7 2000-07-31 13 16.3 2000-07-31 12.5 17.1 2000-07-31 12 17.4 2000-07-31 11.5 18.2 2000-07-31 11 18.7 2000-07-31 10.5 19.2 2000-07-31 10 21.1 2000-07-31 9.5 22.2 2000-07-31 0 22.7 2000-07-31 1 22.7 2000-07-31 2 22.7 2000-07-31 3 22.7 2000-07-31 4 22.7 2000-07-31 5 22.7 2000-07-31 6 22.7 2000-07-31 7 22.7 2000-07-31 8 22.7 2000-07-31 9 22.7 2000-08-16 24.5 11.4 2000-08-16 24 11.5 2000-08-16 23 11.7 2000-08-16 22 11.8 2000-08-16 21 11.9 2000-08-16 20 12 2000-08-16 19 12.2 2000-08-16 18 12.5 2000-08-16 17 12.6 2000-08-16 16 13.3 2000-08-16 15 14.1 2000-08-16 14 14.8 2000-08-16 13.5 15 2000-08-16 13 15.7 2000-08-16 12.5 16.2 2000-08-16 12 16.9 2000-08-16 11.5 17.7 2000-08-16 11 18.2 2000-08-16 10.5 18.8 2000-08-16 10 20.9 2000-08-16 9.5 22.8 2000-08-16 9 23.2 2000-08-16 8.5 23.8 2000-08-16 0 24.7 2000-08-16 1 24.7 2000-08-16 2 24.7 2000-08-16 8 24.7 2000-08-16 3 24.8 2000-08-16 4 24.8 2000-08-16 5 24.8 2000-08-16 6 24.8 2000-08-16 7 24.8 2000-08-28 23 11.7 2000-08-28 23.2 11.7 2000-08-28 22 11.8 2000-08-28 21 11.9 2000-08-28 20 12.1 2000-08-28 19 12.3 2000-08-28 18 12.6 2000-08-28 17 13.2 2000-08-28 16 13.4 2000-08-28 15 13.8 2000-08-28 14 14.8 2000-08-28 13 16.8 2000-08-28 12 18.4 2000-08-28 11.5 18.8 2000-08-28 11 19.5 2000-08-28 10.5 20.2 2000-08-28 10 21.9 2000-08-28 9.5 22.3 2000-08-28 8.5 22.6 2000-08-28 9 22.6 2000-08-28 5 22.7 2000-08-28 6 22.7 2000-08-28 7 22.7 2000-08-28 8 22.7 2000-08-28 0 22.8 2000-08-28 1 22.8 2000-08-28 2 22.8 2000-08-28 3 22.8 2000-08-28 4 22.8 2000-09-25 24.2 12.1 2000-09-25 23 12.2 2000-09-25 24 12.2 2000-09-25 22 12.3 2000-09-25 21 12.5 2000-09-25 20 12.6 2000-09-25 19 12.9 2000-09-25 18 13.4 2000-09-25 17.5 13.6 2000-09-25 17 14.1 2000-09-25 16.5 14.4 2000-09-25 16 14.6 2000-09-25 15.5 17.1 2000-09-25 0 17.3 2000-09-25 1 17.4 2000-09-25 2 17.4 2000-09-25 3 17.4 2000-09-25 4 17.4 2000-09-25 5 17.4 2000-09-25 6 17.4 2000-09-25 7 17.4 2000-09-25 8 17.4 2000-09-25 9 17.4 2000-09-25 10 17.4 2000-09-25 11 17.4 2000-09-25 12 17.4 2000-09-25 13 17.4 2000-09-25 14 17.4 2000-09-25 15 17.4 2000-10-24 22.3 13.2 2000-10-24 22 13.3 2000-10-24 19.5 13.5 2000-10-24 20 13.5 2000-10-24 21 13.5 2000-10-24 19 13.6 2000-10-24 17 13.7 2000-10-24 18 13.7 2000-10-24 16 13.8 2000-10-24 16.5 13.8 2000-10-24 10 13.9 2000-10-24 11 13.9 2000-10-24 12 13.9 2000-10-24 13 13.9 2000-10-24 14 13.9 2000-10-24 15 13.9 2000-10-24 5 14 2000-10-24 6 14 2000-10-24 7 14 2000-10-24 8 14 2000-10-24 9 14 2000-10-24 3 14.1 2000-10-24 4 14.1 2000-10-24 2 14.2 2000-10-24 1 14.4 2000-10-24 0.5 14.7 2000-10-24 0 14.9 2000-11-28 11 5.3 2000-11-28 14 5.3 2000-11-28 17 5.3 2000-11-28 18 5.3 2000-11-28 19 5.3 2000-11-28 21 5.3 2000-11-28 22 5.3 2000-11-28 23 5.3 2000-11-28 5 5.4 2000-11-28 6 5.4 2000-11-28 7 5.4 2000-11-28 8 5.4 2000-11-28 9 5.4 2000-11-28 10 5.4 2000-11-28 12 5.4 2000-11-28 13 5.4 2000-11-28 15 5.4 2000-11-28 16 5.4 2000-11-28 20 5.4 2000-11-28 2 5.5 2000-11-28 3 5.5 2000-11-28 4 5.5 2000-11-28 23.9 5.6 2000-11-28 1 5.7 2000-11-28 0 5.9 2001-01-17 1 0.5 2001-01-17 0 0.8 2001-01-17 2 0.8 2001-01-17 3 0.9 2001-01-17 4 1 2001-01-17 5 1.1 2001-01-17 6 1.2 2001-01-17 7 1.2 2001-01-17 8 1.3 2001-01-17 9 1.3 2001-01-17 10 1.4 2001-01-17 11 1.5 2001-01-17 12 1.6 2001-01-17 13 1.7 2001-01-17 14 1.9 2001-01-17 15 2 2001-01-17 16 2.2 2001-01-17 17 2.3 2001-01-17 18 2.6 2001-01-17 19 2.7 2001-01-17 20 2.9 2001-01-17 21 3.1 2001-01-17 21.9 3.1 2001-03-07 0 0.9 2001-03-07 2 2.1 2001-03-07 3 2.1 2001-03-07 4 2.1 2001-03-07 5 2.1 2001-03-07 6 2.1 2001-03-07 7 2.1 2001-03-07 1 2.2 2001-03-07 8 2.2 2001-03-07 9 2.2 2001-03-07 10 2.2 2001-03-07 11 2.2 2001-03-07 11.5 2.2 2001-03-07 12 2.2 2001-03-07 13 2.3 2001-03-07 14 2.4 2001-03-07 17 2.5 2001-03-07 18 2.5 2001-03-07 19 2.5 2001-03-07 15 2.6 2001-03-07 16 2.6 2001-03-07 20 2.6 2001-03-07 21 2.9 2001-03-07 22 3.4 2001-03-07 23 3.6 2001-03-07 23.9 4 2001-04-10 5 3.9 2001-04-10 6 3.9 2001-04-10 7 3.9 2001-04-10 8 3.9 2001-04-10 9 3.9 2001-04-10 10 3.9 2001-04-10 11 3.9 2001-04-10 12 3.9 2001-04-10 13 3.9 2001-04-10 14 3.9 2001-04-10 3 4 2001-04-10 4 4 2001-04-10 15 4 2001-04-10 16 4 2001-04-10 17 4.1 2001-04-10 18 4.1 2001-04-10 2 4.2 2001-04-10 19 4.2 2001-04-10 1 4.3 2001-04-10 20 4.3 2001-04-10 21 4.3 2001-04-10 22 4.3 2001-04-10 23 4.3 2001-04-10 24 4.3 2001-04-10 0 4.6 2001-04-23 24.6 6.6 2001-04-23 24 6.8 2001-04-23 23 7 2001-04-23 22 7.1 2001-04-23 8 7.2 2001-04-23 9 7.2 2001-04-23 10 7.2 2001-04-23 11 7.2 2001-04-23 12 7.2 2001-04-23 13 7.2 2001-04-23 14 7.2 2001-04-23 15 7.2 2001-04-23 16 7.2 2001-04-23 17 7.2 2001-04-23 18 7.2 2001-04-23 19 7.2 2001-04-23 20 7.2 2001-04-23 21 7.2 2001-04-23 2 7.3 2001-04-23 3 7.3 2001-04-23 4 7.3 2001-04-23 5 7.3 2001-04-23 6 7.3 2001-04-23 7 7.3 2001-04-23 1 7.4 2001-04-23 0 7.7 2001-05-07 24 8.2 2001-05-07 24.5 8.2 2001-05-07 23 8.3 2001-05-07 22 8.4 2001-05-07 20 8.5 2001-05-07 21 8.5 2001-05-07 19 8.6 2001-05-07 18 8.7 2001-05-07 17 9 2001-05-07 16 9.2 2001-05-07 15 10 2001-05-07 14 10.4 2001-05-07 13 11 2001-05-07 12 11.1 2001-05-07 11 11.3 2001-05-07 10 11.4 2001-05-07 9 11.6 2001-05-07 8 11.7 2001-05-07 5.5 11.8 2001-05-07 6 11.8 2001-05-07 6.5 11.8 2001-05-07 7 11.8 2001-05-07 5 11.9 2001-05-07 4 12.1 2001-05-07 3 12.3 2001-05-07 2 12.4 2001-05-07 0 12.5 2001-05-07 1 12.5 2001-05-21 24 9.5 2001-05-21 24.2 9.5 2001-05-21 23 9.7 2001-05-21 22 10.1 2001-05-21 21 10.4 2001-05-21 20 10.7 2001-05-21 19 10.8 2001-05-21 18 11.1 2001-05-21 17 11.2 2001-05-21 16 11.6 2001-05-21 15 11.9 2001-05-21 14 12.3 2001-05-21 13 12.5 2001-05-21 12 12.8 2001-05-21 11 13.1 2001-05-21 10 13.5 2001-05-21 9 14.4 2001-05-21 8 15.1 2001-05-21 7 15.5 2001-05-21 6 15.8 2001-05-21 5 15.9 2001-05-21 5.5 15.9 2001-05-21 4.5 16.1 2001-05-21 4 16.5 2001-05-21 3.5 16.9 2001-05-21 3 17.5 2001-05-21 2 17.6 2001-05-21 1 17.7 2001-05-21 0 17.8 2001-06-04 24.2 10.1 2001-06-04 24 10.2 2001-06-04 22 10.3 2001-06-04 23 10.3 2001-06-04 21 10.4 2001-06-04 20 10.6 2001-06-04 19 10.7 2001-06-04 18 10.8 2001-06-04 17 11.4 2001-06-04 16 11.7 2001-06-04 15 12 2001-06-04 14.5 12.7 2001-06-04 14 13.7 2001-06-04 13.5 13.9 2001-06-04 13 14.3 2001-06-04 2 14.6 2001-06-04 7 14.6 2001-06-04 8 14.6 2001-06-04 9 14.6 2001-06-04 10 14.6 2001-06-04 11 14.6 2001-06-04 12 14.6 2001-06-04 0 14.7 2001-06-04 1 14.7 2001-06-04 3 14.7 2001-06-04 4 14.7 2001-06-04 5 14.7 2001-06-04 6 14.7 2001-06-18 24.1 11.3 2001-06-18 20 11.4 2001-06-18 21 11.4 2001-06-18 22 11.4 2001-06-18 23 11.4 2001-06-18 24 11.4 2001-06-18 19 11.7 2001-06-18 18 12.2 2001-06-18 17 12.5 2001-06-18 16 12.6 2001-06-18 15 12.8 2001-06-18 14 13 2001-06-18 13 13.2 2001-06-18 12.5 13.3 2001-06-18 12 13.6 2001-06-18 11.5 13.7 2001-06-18 11 14.1 2001-06-18 10.5 14.5 2001-06-18 10 15 2001-06-18 9.5 16 2001-06-18 9 18.5 2001-06-18 8.5 19 2001-06-18 8 19.1 2001-06-18 2 19.4 2001-06-18 3 19.4 2001-06-18 4 19.4 2001-06-18 5 19.4 2001-06-18 6 19.4 2001-06-18 7 19.4 2001-06-18 0 19.5 2001-06-18 1 19.5 2001-07-02 24.2 11.2 2001-07-02 22 11.3 2001-07-02 23 11.3 2001-07-02 24 11.3 2001-07-02 21 11.4 2001-07-02 20 11.5 2001-07-02 19 11.7 2001-07-02 18 12 2001-07-02 17 12.3 2001-07-02 16 12.6 2001-07-02 15 13.1 2001-07-02 14 13.9 2001-07-02 13 14.6 2001-07-02 12 14.7 2001-07-02 11.5 15.3 2001-07-02 11 16.1 2001-07-02 10.5 16.9 2001-07-02 10 17.7 2001-07-02 9.5 18 2001-07-02 9 18.3 2001-07-02 8.5 18.7 2001-07-02 8 19.3 2001-07-02 7.5 19.6 2001-07-02 7 20.2 2001-07-02 6.5 21.3 2001-07-02 6 22.2 2001-07-02 0 22.7 2001-07-02 1 22.7 2001-07-02 2 22.7 2001-07-02 3 22.8 2001-07-02 4 22.8 2001-07-02 5 22.8 2001-07-16 24.2 11.4 2001-07-16 23 11.5 2001-07-16 24 11.5 2001-07-16 21 11.6 2001-07-16 22 11.6 2001-07-16 20 11.9 2001-07-16 19 12.1 2001-07-16 18 12.3 2001-07-16 17 12.7 2001-07-16 16 13 2001-07-16 15 13.3 2001-07-16 14 13.7 2001-07-16 13.5 13.8 2001-07-16 13 14 2001-07-16 12.5 14.4 2001-07-16 12 15.1 2001-07-16 11.5 15.9 2001-07-16 11 16.2 2001-07-16 10.5 16.8 2001-07-16 10 17.7 2001-07-16 9.5 18.2 2001-07-16 9 18.7 2001-07-16 8.5 19.4 2001-07-16 8 19.8 2001-07-16 7.5 20.9 2001-07-16 7 21.9 2001-07-16 6.5 22.4 2001-07-16 6 22.8 2001-07-16 5.5 23.9 2001-07-16 5 24.5 2001-07-16 4 25.3 2001-07-16 0 25.4 2001-07-16 1 25.4 2001-07-16 2 25.4 2001-07-16 3 25.4 2001-07-30 24.2 11.6 2001-07-30 22 11.7 2001-07-30 23 11.7 2001-07-30 24 11.7 2001-07-30 21 11.9 2001-07-30 20 12.1 2001-07-30 19 12.2 2001-07-30 18 12.4 2001-07-30 17 12.7 2001-07-30 16 13.2 2001-07-30 15 13.4 2001-07-30 14.5 13.5 2001-07-30 14 13.8 2001-07-30 13.5 14.5 2001-07-30 12.5 14.6 2001-07-30 13 14.6 2001-07-30 12 14.8 2001-07-30 11.5 15.2 2001-07-30 11 15.6 2001-07-30 10.5 16.3 2001-07-30 10 17.4 2001-07-30 9.5 18.2 2001-07-30 9 19 2001-07-30 8.5 19.7 2001-07-30 8 20.6 2001-07-30 7.5 22.3 2001-07-30 7 23.3 2001-07-30 6 23.8 2001-07-30 5 24.1 2001-07-30 4 24.5 2001-07-30 3 24.9 2001-07-30 2 25.1 2001-07-30 0 25.2 2001-07-30 1 25.2 2001-08-13 23 11.6 2001-08-13 23.3 11.6 2001-08-13 21.5 11.8 2001-08-13 22 11.8 2001-08-13 22.5 11.8 2001-08-13 21 11.9 2001-08-13 20.5 12 2001-08-13 20 12.1 2001-08-13 19.5 12.3 2001-08-13 18.5 12.4 2001-08-13 19 12.4 2001-08-13 18 12.8 2001-08-13 17.5 13.1 2001-08-13 17 13.5 2001-08-13 16.5 13.9 2001-08-13 16 14 2001-08-13 15 14.2 2001-08-13 15.5 14.2 2001-08-13 14.5 14.3 2001-08-13 14 14.4 2001-08-13 13.5 14.5 2001-08-13 13 14.9 2001-08-13 12.5 15.3 2001-08-13 12 15.7 2001-08-13 11.5 16.2 2001-08-13 11 16.3 2001-08-13 10.5 17.9 2001-08-13 10 19.1 2001-08-13 9.5 20.2 2001-08-13 9 20.8 2001-08-13 8.5 21.2 2001-08-13 8 22.8 2001-08-13 0 25.8 2001-08-13 1 25.8 2001-08-13 2 25.9 2001-08-13 3 25.9 2001-08-13 4 25.9 2001-08-13 5 25.9 2001-08-13 6 25.9 2001-08-13 7 25.9 2001-08-27 23 11.9 2001-08-27 22 12.1 2001-08-27 21 12.2 2001-08-27 20 12.3 2001-08-27 19 12.4 2001-08-27 18 12.7 2001-08-27 17 12.9 2001-08-27 16 13 2001-08-27 15 13.5 2001-08-27 14 13.8 2001-08-27 13.5 14 2001-08-27 13 14.2 2001-08-27 12.5 15.5 2001-08-27 12 17.5 2001-08-27 11.5 18.9 2001-08-27 11 20.6 2001-08-27 10.5 21.6 2001-08-27 10 21.9 2001-08-27 9 22.3 2001-08-27 8 22.7 2001-08-27 6 22.8 2001-08-27 7 22.8 2001-08-27 0 22.9 2001-08-27 1 22.9 2001-08-27 2 22.9 2001-08-27 3 22.9 2001-08-27 4 22.9 2001-08-27 5 22.9 2001-09-26 23.8 12.2 2001-09-26 22 12.3 2001-09-26 23 12.3 2001-09-26 21 12.4 2001-09-26 20 13 2001-09-26 18.5 13.2 2001-09-26 19 13.2 2001-09-26 18 13.4 2001-09-26 17.5 14.2 2001-09-26 0 16.5 2001-09-26 1 16.5 2001-09-26 17 16.6 2001-09-26 2 16.7 2001-09-26 3 16.7 2001-09-26 4 16.7 2001-09-26 5 16.7 2001-09-26 7 16.7 2001-09-26 8 16.7 2001-09-26 13 16.7 2001-09-26 14 16.7 2001-09-26 15 16.7 2001-09-26 6 16.8 2001-09-26 9 16.8 2001-09-26 10 16.8 2001-09-26 11 16.8 2001-09-26 12 16.8 2001-10-22 11 12.7 2001-10-22 12 12.7 2001-10-22 13 12.7 2001-10-22 14 12.7 2001-10-22 15 12.7 2001-10-22 16 12.7 2001-10-22 17 12.7 2001-10-22 18 12.7 2001-10-22 19 12.7 2001-10-22 20 12.7 2001-10-22 21 12.7 2001-10-22 22 12.7 2001-10-22 23 12.7 2001-10-22 24 12.7 2001-10-22 24.2 12.7 2001-10-22 8 12.8 2001-10-22 10 12.8 2001-10-22 2 12.9 2001-10-22 3 12.9 2001-10-22 4 12.9 2001-10-22 5 12.9 2001-10-22 6 12.9 2001-10-22 7 12.9 2001-10-22 9 12.9 2001-10-22 1 13 2001-10-22 0 13.3 2001-11-26 7 9 2001-11-26 8 9 2001-11-26 9 9 2001-11-26 10 9 2001-11-26 11 9 2001-11-26 12 9 2001-11-26 13 9 2001-11-26 14 9 2001-11-26 15 9 2001-11-26 16 9 2001-11-26 17 9 2001-11-26 18 9 2001-11-26 19 9 2001-11-26 20 9 2001-11-26 21 9 2001-11-26 22 9 2001-11-26 23 9 2001-11-26 24 9 2001-11-26 5 9.1 2001-11-26 6 9.1 2001-11-26 3 9.2 2001-11-26 4 9.2 2001-11-26 2 9.3 2001-11-26 1 9.5 2001-11-26 0 9.8 2002-03-28 11 1.2 2002-03-28 3 1.3 2002-03-28 4 1.3 2002-03-28 5 1.3 2002-03-28 6 1.3 2002-03-28 7 1.3 2002-03-28 8 1.3 2002-03-28 9 1.3 2002-03-28 10 1.3 2002-03-28 12 1.3 2002-03-28 13 1.3 2002-03-28 14 1.3 2002-03-28 15 1.3 2002-03-28 16 1.3 2002-03-28 17 1.3 2002-03-28 18 1.3 2002-03-28 19 1.3 2002-03-28 20 1.3 2002-03-28 21 1.3 2002-03-28 22 1.3 2002-03-28 23 1.3 2002-03-28 1 1.4 2002-03-28 2 1.4 2002-03-28 0 1.6 2002-04-08 17 2.4 2002-04-08 9 2.5 2002-04-08 10 2.5 2002-04-08 11 2.5 2002-04-08 12 2.5 2002-04-08 13 2.5 2002-04-08 14 2.5 2002-04-08 15 2.5 2002-04-08 16 2.5 2002-04-08 18 2.5 2002-04-08 19 2.5 2002-04-08 20 2.5 2002-04-08 21 2.5 2002-04-08 22 2.5 2002-04-08 23 2.5 2002-04-08 24 2.5 2002-04-08 6 2.6 2002-04-08 7 2.6 2002-04-08 8 2.6 2002-04-08 5 2.7 2002-04-08 4 2.8 2002-04-08 3 2.9 2002-04-08 2 3 2002-04-08 0 3.3 2002-04-08 1 3.7 2002-04-24 23.9 6.8 2002-04-24 21 6.9 2002-04-24 22 6.9 2002-04-24 23 6.9 2002-04-24 13 7 2002-04-24 14 7 2002-04-24 16 7 2002-04-24 17 7 2002-04-24 18 7 2002-04-24 19 7 2002-04-24 20 7 2002-04-24 9 7.1 2002-04-24 10 7.1 2002-04-24 11 7.1 2002-04-24 12 7.1 2002-04-24 15 7.1 2002-04-24 4 7.2 2002-04-24 5 7.2 2002-04-24 6 7.2 2002-04-24 7 7.2 2002-04-24 8 7.2 2002-04-24 3 7.3 2002-04-24 2 7.5 2002-04-24 1 7.6 2002-04-24 0 8 2002-05-06 24.5 7.8 2002-05-06 21 7.9 2002-05-06 22 7.9 2002-05-06 23 7.9 2002-05-06 24 7.9 2002-05-06 20 8 2002-05-06 19 8.1 2002-05-06 18 8.2 2002-05-06 17 8.3 2002-05-06 14 8.4 2002-05-06 15 8.4 2002-05-06 16 8.4 2002-05-06 12 8.5 2002-05-06 13 8.5 2002-05-06 11 8.6 2002-05-06 9 8.8 2002-05-06 10 8.8 2002-05-06 8 8.9 2002-05-06 7 9 2002-05-06 4 9.2 2002-05-06 5 9.2 2002-05-06 6 9.2 2002-05-06 3 9.5 2002-05-06 2 10 2002-05-06 1 10.7 2002-05-06 0 11.2 2002-05-20 24.5 10.2 2002-05-20 24 10.3 2002-05-20 23 10.4 2002-05-20 21 10.5 2002-05-20 22 10.5 2002-05-20 19 10.6 2002-05-20 20 10.6 2002-05-20 18 10.7 2002-05-20 17 10.8 2002-05-20 11 10.9 2002-05-20 12 10.9 2002-05-20 13 10.9 2002-05-20 14 10.9 2002-05-20 15 10.9 2002-05-20 16 10.9 2002-05-20 7 11 2002-05-20 8 11 2002-05-20 9 11 2002-05-20 10 11 2002-05-20 5 11.1 2002-05-20 6 11.1 2002-05-20 3 11.2 2002-05-20 4 11.2 2002-05-20 2 11.4 2002-05-20 1 11.5 2002-05-20 0 11.7 2002-06-03 24 11.1 2002-06-03 24.5 11.1 2002-06-03 21.5 11.2 2002-06-03 22 11.2 2002-06-03 22.5 11.2 2002-06-03 23 11.2 2002-06-03 20.5 11.3 2002-06-03 21 11.3 2002-06-03 19.5 11.6 2002-06-03 20 11.6 2002-06-03 19 11.8 2002-06-03 18 12 2002-06-03 17 12.1 2002-06-03 14 12.3 2002-06-03 15 12.3 2002-06-03 16 12.3 2002-06-03 13 12.5 2002-06-03 12 12.7 2002-06-03 10 12.8 2002-06-03 11 12.8 2002-06-03 8 12.9 2002-06-03 9 12.9 2002-06-03 7 13 2002-06-03 6 13.4 2002-06-03 5 13.7 2002-06-03 3 14 2002-06-03 4 14 2002-06-03 2 14.2 2002-06-03 1 14.3 2002-06-03 0 14.4 2002-06-18 23 11.3 2002-06-18 24 11.3 2002-06-18 24.5 11.3 2002-06-18 20 11.4 2002-06-18 20.5 11.4 2002-06-18 21 11.4 2002-06-18 21.5 11.4 2002-06-18 22 11.4 2002-06-18 19 11.6 2002-06-18 17 11.7 2002-06-18 18 11.7 2002-06-18 16 11.9 2002-06-18 15 12 2002-06-18 14 12.1 2002-06-18 13 12.4 2002-06-18 12.5 12.6 2002-06-18 12 12.9 2002-06-18 11.5 13.6 2002-06-18 11 14 2002-06-18 10.5 14.3 2002-06-18 10 14.4 2002-06-18 9.5 14.9 2002-06-18 9 15.7 2002-06-18 8.5 16.4 2002-06-18 8 16.5 2002-06-18 7.5 17.6 2002-06-18 7 19 2002-06-18 6 19.3 2002-06-18 5 19.4 2002-06-18 4 19.6 2002-06-18 3 19.7 2002-06-18 1 19.8 2002-06-18 2 19.8 2002-06-18 0 20 2002-07-01 22 11.3 2002-07-01 20.5 11.4 2002-07-01 21 11.4 2002-07-01 20 11.5 2002-07-01 18 11.6 2002-07-01 19 11.6 2002-07-01 17 11.7 2002-07-01 16.5 11.8 2002-07-01 16 11.9 2002-07-01 15.5 12 2002-07-01 15 12.2 2002-07-01 14.5 12.3 2002-07-01 14 12.4 2002-07-01 13 12.7 2002-07-01 12.5 12.9 2002-07-01 12 13.2 2002-07-01 11.5 13.6 2002-07-01 11 13.8 2002-07-01 10.5 14.5 2002-07-01 10 15.8 2002-07-01 9.5 16.6 2002-07-01 9 17.1 2002-07-01 8.5 17.9 2002-07-01 8 18.5 2002-07-01 7.5 20 2002-07-01 7 20.9 2002-07-01 6 25.3 2002-07-01 5 25.4 2002-07-01 4 25.6 2002-07-01 1 25.7 2002-07-01 2 25.7 2002-07-01 3 25.7 2002-07-01 0 25.8 2002-07-15 21 11.4 2002-07-15 22 11.4 2002-07-15 23 11.4 2002-07-15 20 11.5 2002-07-15 19 11.6 2002-07-15 18 11.8 2002-07-15 17 11.9 2002-07-15 16 12.1 2002-07-15 16.5 12.1 2002-07-15 15.5 12.4 2002-07-15 15 12.5 2002-07-15 14 12.7 2002-07-15 14.5 12.7 2002-07-15 13.5 12.9 2002-07-15 13 13.1 2002-07-15 12.5 13.4 2002-07-15 12 13.7 2002-07-15 11.5 14.1 2002-07-15 11 14.3 2002-07-15 10.5 14.6 2002-07-15 10 15.1 2002-07-15 9.5 16.4 2002-07-15 9 17.2 2002-07-15 8.5 17.8 2002-07-15 8 19 2002-07-15 7.5 22.7 2002-07-15 7 23.3 2002-07-15 6.5 23.5 2002-07-15 6 23.8 2002-07-15 5 24.3 2002-07-15 4 25.2 2002-07-15 3 25.4 2002-07-15 2 25.5 2002-07-15 1 25.8 2002-07-15 0 26.3 2002-07-26 23 11.4 2002-07-26 22 11.5 2002-07-26 20 11.8 2002-07-26 21 11.8 2002-07-26 19 11.9 2002-07-26 18 12 2002-07-26 17 12.3 2002-07-26 16 12.5 2002-07-26 15 12.7 2002-07-26 14 13 2002-07-26 13 13.8 2002-07-26 12 14.7 2002-07-26 11 15.8 2002-07-26 10.5 16.3 2002-07-26 10 17.4 2002-07-26 9.5 18.3 2002-07-26 9 19.2 2002-07-26 8.5 22.3 2002-07-26 8 23.9 2002-07-26 7.5 24.4 2002-07-26 7 25 2002-07-26 5 25.3 2002-07-26 6 25.3 2002-07-26 0 25.4 2002-07-26 1 25.4 2002-07-26 2 25.4 2002-07-26 3 25.4 2002-07-26 4 25.4 2002-08-12 23 11.4 2002-08-12 21 11.5 2002-08-12 22 11.5 2002-08-12 20 11.7 2002-08-12 19 11.9 2002-08-12 18 12 2002-08-12 17 12.4 2002-08-12 16 12.6 2002-08-12 15 13 2002-08-12 14 13.3 2002-08-12 13 13.7 2002-08-12 12.5 14.1 2002-08-12 12 14.4 2002-08-12 11.5 14.8 2002-08-12 11 15.3 2002-08-12 10.5 15.5 2002-08-12 10 16.2 2002-08-12 9.5 17.6 2002-08-12 9 22.8 2002-08-12 8 24.6 2002-08-12 3 24.7 2002-08-12 4 24.7 2002-08-12 5 24.7 2002-08-12 6 24.7 2002-08-12 7 24.7 2002-08-12 0 24.8 2002-08-12 1 24.8 2002-08-12 2 24.8 2002-08-26 23 11.4 2002-08-26 23.5 11.4 2002-08-26 22 11.6 2002-08-26 21 11.7 2002-08-26 20 11.9 2002-08-26 19 12.1 2002-08-26 18 12.2 2002-08-26 17 12.3 2002-08-26 16 12.6 2002-08-26 15 13.1 2002-08-26 14 13.7 2002-08-26 13 14.2 2002-08-26 12 15.4 2002-08-26 11 17.1 2002-08-26 10.5 18.2 2002-08-26 10 20 2002-08-26 9.5 21.5 2002-08-26 9 22.3 2002-08-26 7 23.2 2002-08-26 8 23.2 2002-08-26 6 23.3 2002-08-26 5 23.4 2002-08-26 4 23.5 2002-08-26 3 23.6 2002-08-26 2 23.7 2002-08-26 1 23.8 2002-08-26 0 24.1 2002-09-23 23 11.5 2002-09-23 24 11.5 2002-09-23 24.2 11.5 2002-09-23 22 11.6 2002-09-23 21 11.7 2002-09-23 19 12 2002-09-23 20 12 2002-09-23 18 12.2 2002-09-23 17 12.4 2002-09-23 16 12.9 2002-09-23 15 13.4 2002-09-23 14 14.3 2002-09-23 13.5 14.4 2002-09-23 13 14.7 2002-09-23 12.5 18.1 2002-09-23 12 20.1 2002-09-23 0 20.4 2002-09-23 1 20.4 2002-09-23 2 20.4 2002-09-23 3 20.4 2002-09-23 4 20.4 2002-09-23 5 20.4 2002-09-23 6 20.4 2002-09-23 7 20.4 2002-09-23 8 20.4 2002-09-23 9 20.4 2002-09-23 10 20.4 2002-09-23 11 20.4 2002-10-21 24 12.2 2002-10-21 14 12.3 2002-10-21 15 12.3 2002-10-21 16 12.3 2002-10-21 17 12.3 2002-10-21 18 12.3 2002-10-21 19 12.3 2002-10-21 20 12.3 2002-10-21 21 12.3 2002-10-21 22 12.3 2002-10-21 23 12.3 2002-10-21 11 12.4 2002-10-21 12 12.4 2002-10-21 13 12.4 2002-10-21 1 12.5 2002-10-21 2 12.5 2002-10-21 3 12.5 2002-10-21 4 12.5 2002-10-21 5 12.5 2002-10-21 6 12.5 2002-10-21 7 12.5 2002-10-21 8 12.5 2002-10-21 9 12.5 2002-10-21 10 12.5 2002-10-21 0 12.6 2002-11-18 0 7.3 2002-11-18 1 7.3 2002-11-18 15 7.3 2002-11-18 16 7.3 2002-11-18 17 7.3 2002-11-18 18 7.3 2002-11-18 19 7.3 2002-11-18 20 7.3 2002-11-18 21 7.3 2002-11-18 22 7.3 2002-11-18 23 7.3 2002-11-18 24 7.3 2002-11-18 24.2 7.3 2002-11-18 2 7.4 2002-11-18 3 7.4 2002-11-18 4 7.4 2002-11-18 5 7.4 2002-11-18 6 7.4 2002-11-18 7 7.4 2002-11-18 8 7.4 2002-11-18 9 7.4 2002-11-18 10 7.4 2002-11-18 11 7.4 2002-11-18 12 7.4 2002-11-18 13 7.4 2002-11-18 14 7.4 2003-01-21 0 0.1 2003-01-21 1 0.3 2003-01-21 2 0.4 2003-01-21 3 0.5 2003-01-21 4 0.5 2003-01-21 5 0.5 2003-01-21 6 0.5 2003-01-21 7 0.5 2003-01-21 8 0.5 2003-01-21 9 0.5 2003-01-21 10 0.5 2003-01-21 11 0.5 2003-01-21 12 0.5 2003-01-21 13 0.5 2003-01-21 14 0.5 2003-01-21 15 0.6 2003-01-21 16 0.6 2003-01-21 17 0.6 2003-01-21 18 0.8 2003-01-21 19 0.9 2003-01-21 20 1 2003-01-21 21 1.1 2003-01-21 22 1.2 2003-01-21 23 1.3 2003-01-21 24 1.3 2003-01-21 25 1.3 2003-04-03 2 3 2003-04-03 3 3 2003-04-03 4 3 2003-04-03 5 3 2003-04-03 6 3 2003-04-03 7 3 2003-04-03 8 3 2003-04-03 9 3 2003-04-03 10 3 2003-04-03 11 3 2003-04-03 12 3 2003-04-03 13 3 2003-04-03 0 3.1 2003-04-03 1 3.1 2003-04-03 14 3.1 2003-04-03 15 3.1 2003-04-03 16 3.1 2003-04-03 17 3.1 2003-04-03 18 3.1 2003-04-03 19 3.1 2003-04-03 20 3.1 2003-04-03 21 3.1 2003-04-03 22 3.2 2003-04-03 22.8 3.2 2003-04-14 8 3.9 2003-04-14 10 3.9 2003-04-14 11 3.9 2003-04-14 12 3.9 2003-04-14 13 3.9 2003-04-14 14 3.9 2003-04-14 15 3.9 2003-04-14 16 3.9 2003-04-14 17 3.9 2003-04-14 18 3.9 2003-04-14 19 3.9 2003-04-14 20 3.9 2003-04-14 21 3.9 2003-04-14 22 3.9 2003-04-14 23 3.9 2003-04-14 24 3.9 2003-04-14 2 4 2003-04-14 3 4 2003-04-14 4 4 2003-04-14 5 4 2003-04-14 6 4 2003-04-14 7 4 2003-04-14 9 4 2003-04-14 1 4.1 2003-04-14 0 4.2 2003-04-28 24 6.5 2003-04-28 24.3 6.5 2003-04-28 22 6.6 2003-04-28 23 6.6 2003-04-28 20 6.7 2003-04-28 21 6.7 2003-04-28 19 6.8 2003-04-28 18 6.9 2003-04-28 17 7.2 2003-04-28 16 7.5 2003-04-28 15 7.7 2003-04-28 14 7.9 2003-04-28 10 8.1 2003-04-28 11 8.1 2003-04-28 12 8.1 2003-04-28 13 8.1 2003-04-28 7 8.2 2003-04-28 8 8.2 2003-04-28 9 8.2 2003-04-28 6 8.3 2003-04-28 5 8.4 2003-04-28 4 8.6 2003-04-28 3 8.7 2003-04-28 1 8.9 2003-04-28 2 8.9 2003-04-28 0 9.3 2003-05-13 24.5 10.3 2003-05-13 20 10.4 2003-05-13 21 10.4 2003-05-13 22 10.4 2003-05-13 23 10.4 2003-05-13 24 10.4 2003-05-13 6 10.5 2003-05-13 7 10.5 2003-05-13 8 10.5 2003-05-13 9 10.5 2003-05-13 10 10.5 2003-05-13 11 10.5 2003-05-13 12 10.5 2003-05-13 13 10.5 2003-05-13 14 10.5 2003-05-13 15 10.5 2003-05-13 16 10.5 2003-05-13 17 10.5 2003-05-13 18 10.5 2003-05-13 19 10.5 2003-05-13 4 10.6 2003-05-13 5 10.6 2003-05-13 3 10.7 2003-05-13 2 10.8 2003-05-13 1 10.9 2003-05-13 0 11.1 2003-05-27 24.5 10.4 2003-05-27 22 10.5 2003-05-27 23 10.5 2003-05-27 24 10.5 2003-05-27 21 10.6 2003-05-27 19 10.8 2003-05-27 20 10.8 2003-05-27 18 11 2003-05-27 17 11.1 2003-05-27 16 11.4 2003-05-27 15 11.6 2003-05-27 14 12.1 2003-05-27 13 12.4 2003-05-27 12 12.6 2003-05-27 11 12.8 2003-05-27 10 12.9 2003-05-27 9 13.1 2003-05-27 8 13.6 2003-05-27 7 14.1 2003-05-27 6 15 2003-05-27 5 15.1 2003-05-27 4 15.2 2003-05-27 3 15.4 2003-05-27 2 15.7 2003-05-27 1 15.9 2003-05-27 0 16.3 2003-06-09 23.8 10.5 2003-06-09 20 10.6 2003-06-09 21 10.6 2003-06-09 22 10.6 2003-06-09 23 10.6 2003-06-09 19 10.7 2003-06-09 18 10.8 2003-06-09 17 11 2003-06-09 16 11.2 2003-06-09 15 11.6 2003-06-09 14 12 2003-06-09 13 12.1 2003-06-09 12.5 12.3 2003-06-09 12 12.5 2003-06-09 11.5 13 2003-06-09 11 13.5 2003-06-09 9.5 15.5 2003-06-09 10.5 15.5 2003-06-09 10 15.6 2003-06-09 9 15.8 2003-06-09 6 17 2003-06-09 7 17 2003-06-09 8 17 2003-06-09 5 17.1 2003-06-09 4 17.2 2003-06-09 3 17.4 2003-06-09 2 17.5 2003-06-09 1 17.7 2003-06-09 0 18 2003-06-23 24 10.6 2003-06-23 24.2 10.6 2003-06-23 23.5 10.7 2003-06-23 21 10.8 2003-06-23 21.5 10.8 2003-06-23 22 10.8 2003-06-23 22.5 10.8 2003-06-23 23 10.8 2003-06-23 20 10.9 2003-06-23 20.5 10.9 2003-06-23 19.5 11 2003-06-23 18.5 11.1 2003-06-23 19 11.1 2003-06-23 18 11.2 2003-06-23 17.5 11.3 2003-06-23 16.5 11.4 2003-06-23 17 11.4 2003-06-23 16 11.5 2003-06-23 15.5 11.6 2003-06-23 15 11.9 2003-06-23 14.5 12.1 2003-06-23 14 12.2 2003-06-23 13.5 12.5 2003-06-23 13 12.8 2003-06-23 12.5 13.1 2003-06-23 12 13.8 2003-06-23 11.5 14.2 2003-06-23 11 14.4 2003-06-23 10.5 14.9 2003-06-23 10 15.1 2003-06-23 9.5 16 2003-06-23 9 16.3 2003-06-23 8.5 17 2003-06-23 8 17.7 2003-06-23 7.5 17.9 2003-06-23 7 18.2 2003-06-23 6.5 18.5 2003-06-23 6 18.7 2003-06-23 5.5 19.1 2003-06-23 5 19.6 2003-06-23 4 21.7 2003-06-23 3 21.9 2003-06-23 1 22.1 2003-06-23 2 22.1 2003-06-23 0 22.3 2003-07-07 23 11.1 2003-07-07 24 11.1 2003-07-07 24.1 11.1 2003-07-07 22 11.2 2003-07-07 20 11.3 2003-07-07 21 11.3 2003-07-07 19 11.4 2003-07-07 18 11.5 2003-07-07 17 11.7 2003-07-07 16 11.8 2003-07-07 15 11.9 2003-07-07 15.5 11.9 2003-07-07 14.5 12.1 2003-07-07 14 12.3 2003-07-07 13.5 12.6 2003-07-07 13 12.8 2003-07-07 12.5 13.1 2003-07-07 12 13.4 2003-07-07 11.5 14.2 2003-07-07 11 14.7 2003-07-07 10.5 15.9 2003-07-07 10 16.9 2003-07-07 9.5 17.4 2003-07-07 9 18.1 2003-07-07 8.5 19.1 2003-07-07 8 19.6 2003-07-07 7.5 20.4 2003-07-07 7 20.7 2003-07-07 6 23 2003-07-07 4 24.2 2003-07-07 5 24.2 2003-07-07 2 24.3 2003-07-07 3 24.3 2003-07-07 1 24.5 2003-07-07 0 24.8 2003-07-24 23 11.2 2003-07-24 24 11.2 2003-07-24 24.6 11.2 2003-07-24 22 11.3 2003-07-24 20 11.4 2003-07-24 21 11.4 2003-07-24 19 11.5 2003-07-24 18 11.7 2003-07-24 17 11.8 2003-07-24 16 12 2003-07-24 15 12.2 2003-07-24 14 12.4 2003-07-24 13.5 12.5 2003-07-24 13 12.8 2003-07-24 12.5 13.2 2003-07-24 12 13.8 2003-07-24 11.5 15.4 2003-07-24 11 16.1 2003-07-24 10.5 17 2003-07-24 10 18 2003-07-24 9.5 19.5 2003-07-24 9 20.8 2003-07-24 8 22.9 2003-07-24 5 23 2003-07-24 6 23 2003-07-24 7 23 2003-07-24 3 23.1 2003-07-24 4 23.1 2003-07-24 2 23.2 2003-07-24 0 23.3 2003-07-24 1 23.3 2003-08-04 22 11.5 2003-08-04 23 11.5 2003-08-04 24 11.5 2003-08-04 21 11.6 2003-08-04 20 11.7 2003-08-04 19 11.9 2003-08-04 18 12 2003-08-04 17 12.2 2003-08-04 16 12.4 2003-08-04 15 12.7 2003-08-04 14 13.2 2003-08-04 13 13.7 2003-08-04 12.5 14.6 2003-08-04 12 14.9 2003-08-04 11.5 15.6 2003-08-04 11 16 2003-08-04 10.5 17.6 2003-08-04 10 21.1 2003-08-04 9.5 21.6 2003-08-04 9 22 2003-08-04 8.5 22.5 2003-08-04 8 22.8 2003-08-04 7 23.2 2003-08-04 4 24.2 2003-08-04 5 24.2 2003-08-04 6 24.2 2003-08-04 0 24.3 2003-08-04 1 24.3 2003-08-04 2 24.3 2003-08-04 3 24.3 2003-08-18 24 11.1 2003-08-18 24.5 11.1 2003-08-18 23 11.2 2003-08-18 22 11.4 2003-08-18 21 11.5 2003-08-18 20 11.6 2003-08-18 19 11.8 2003-08-18 18 12 2003-08-18 17 12.3 2003-08-18 16 12.6 2003-08-18 15 12.8 2003-08-18 14 13.5 2003-08-18 13.5 13.7 2003-08-18 13 14.2 2003-08-18 12.5 14.7 2003-08-18 12 16 2003-08-18 11.5 16.5 2003-08-18 11 17.3 2003-08-18 10.5 17.5 2003-08-18 10 20.2 2003-08-18 9.5 22.7 2003-08-18 9 23.1 2003-08-18 8 23.7 2003-08-18 7 24.4 2003-08-18 5 24.5 2003-08-18 6 24.5 2003-08-18 4 24.7 2003-08-18 3 25.1 2003-08-18 2 25.3 2003-08-18 1 25.6 2003-08-18 0 25.8 2003-09-02 24.5 11.3 2003-09-02 23 11.4 2003-09-02 24 11.4 2003-09-02 22 11.5 2003-09-02 21 11.6 2003-09-02 20 11.7 2003-09-02 19 11.9 2003-09-02 18 12.3 2003-09-02 17 12.5 2003-09-02 16 13 2003-09-02 15 13.4 2003-09-02 14 13.9 2003-09-02 13 15 2003-09-02 12.5 15.6 2003-09-02 12 16.4 2003-09-02 11.5 16.9 2003-09-02 11 18.2 2003-09-02 10.5 19.2 2003-09-02 10 20.8 2003-09-02 9.5 23 2003-09-02 4 23.3 2003-09-02 5 23.3 2003-09-02 6 23.3 2003-09-02 7 23.3 2003-09-02 8 23.3 2003-09-02 9 23.3 2003-09-02 3 23.4 2003-09-02 2 23.5 2003-09-02 1 23.6 2003-09-02 0 23.8 2003-09-29 22 11.6 2003-09-29 23 11.6 2003-09-29 24 11.6 2003-09-29 24.5 11.6 2003-09-29 20 11.7 2003-09-29 21 11.7 2003-09-29 19 11.9 2003-09-29 18 12 2003-09-29 17 12.8 2003-09-29 16.5 14.6 2003-09-29 16 15.7 2003-09-29 15.5 15.9 2003-09-29 12 16 2003-09-29 13 16 2003-09-29 14 16 2003-09-29 15 16 2003-09-29 7 16.1 2003-09-29 8 16.1 2003-09-29 9 16.1 2003-09-29 10 16.1 2003-09-29 11 16.1 2003-09-29 0 16.2 2003-09-29 1 16.2 2003-09-29 2 16.2 2003-09-29 3 16.2 2003-09-29 4 16.2 2003-09-29 5 16.2 2003-09-29 6 16.2 2003-10-27 14 12.6 2003-10-27 15 12.6 2003-10-27 16 12.6 2003-10-27 17 12.6 2003-10-27 18 12.6 2003-10-27 19 12.6 2003-10-27 20 12.6 2003-10-27 21 12.6 2003-10-27 22 12.6 2003-10-27 23 12.6 2003-10-27 24 12.6 2003-10-27 24.3 12.6 2003-10-27 2 12.7 2003-10-27 3 12.7 2003-10-27 4 12.7 2003-10-27 5 12.7 2003-10-27 6 12.7 2003-10-27 7 12.7 2003-10-27 8 12.7 2003-10-27 9 12.7 2003-10-27 10 12.7 2003-10-27 11 12.7 2003-10-27 12 12.7 2003-10-27 13 12.7 2003-10-27 0 12.8 2003-10-27 1 12.8 2003-11-25 0 6.7 2003-11-25 1 6.7 2003-11-25 2 6.7 2003-11-25 3 6.7 2003-11-25 4 6.7 2003-11-25 5 6.7 2003-11-25 6 6.7 2003-11-25 7 6.7 2003-11-25 8 6.7 2003-11-25 9 6.7 2003-11-25 10 6.7 2003-11-25 11 6.7 2003-11-25 12 6.7 2003-11-25 13 6.7 2003-11-25 14 6.7 2003-11-25 15 6.7 2003-11-25 16 6.7 2003-11-25 17 6.7 2003-11-25 18 6.7 2003-11-25 19 6.7 2003-11-25 20 6.7 2003-11-25 21 6.7 2003-11-25 22 6.7 2003-11-25 23 6.7 2003-11-25 24 6.7 2003-11-25 24.7 6.7 2004-02-03 0 0.5 2004-02-03 1 0.9 2004-02-03 2 0.9 2004-02-03 3 0.9 2004-02-03 4 0.9 2004-02-03 5 0.9 2004-02-03 6 0.9 2004-02-03 7 0.9 2004-02-03 8 0.9 2004-02-03 9 0.9 2004-02-03 10 0.9 2004-02-03 11 0.9 2004-02-03 12 1 2004-02-03 13 1 2004-02-03 14 1.1 2004-02-03 15 1.1 2004-02-03 16 1.3 2004-02-03 17 1.4 2004-02-03 18 1.5 2004-02-03 19 1.6 2004-02-03 20 1.8 2004-02-03 21 1.9 2004-02-03 22 2 2004-02-03 23 2.1 2004-02-03 23.1 2.1 2004-03-29 15 3.4 2004-03-29 16 3.4 2004-03-29 17 3.4 2004-03-29 18 3.4 2004-03-29 19 3.4 2004-03-29 20 3.4 2004-03-29 21 3.4 2004-03-29 22 3.4 2004-03-29 23 3.4 2004-03-29 24 3.4 2004-03-29 24.3 3.4 2004-03-29 0 3.5 2004-03-29 1 3.5 2004-03-29 2 3.5 2004-03-29 3 3.5 2004-03-29 4 3.5 2004-03-29 5 3.5 2004-03-29 6 3.5 2004-03-29 7 3.5 2004-03-29 8 3.5 2004-03-29 9 3.5 2004-03-29 10 3.5 2004-03-29 11 3.5 2004-03-29 12 3.5 2004-03-29 13 3.5 2004-03-29 14 3.5 2004-04-12 21 5.3 2004-04-12 22 5.3 2004-04-12 23 5.3 2004-04-12 24 5.3 2004-04-12 24.9 5.3 2004-04-12 20 5.4 2004-04-12 19 5.5 2004-04-12 18 5.7 2004-04-12 17 5.8 2004-04-12 15 5.9 2004-04-12 16 5.9 2004-04-12 14 6 2004-04-12 11 6.1 2004-04-12 12 6.1 2004-04-12 13 6.1 2004-04-12 0 6.2 2004-04-12 1 6.2 2004-04-12 2 6.2 2004-04-12 3 6.2 2004-04-12 4 6.2 2004-04-12 5 6.2 2004-04-12 6 6.2 2004-04-12 7 6.2 2004-04-12 8 6.2 2004-04-12 9 6.2 2004-04-12 10 6.2 2004-04-28 24.3 8.8 2004-04-28 0 8.9 2004-04-28 1 8.9 2004-04-28 2 8.9 2004-04-28 3 8.9 2004-04-28 4 8.9 2004-04-28 5 8.9 2004-04-28 6 8.9 2004-04-28 7 8.9 2004-04-28 8 8.9 2004-04-28 9 8.9 2004-04-28 10 8.9 2004-04-28 11 8.9 2004-04-28 12 8.9 2004-04-28 13 8.9 2004-04-28 14 8.9 2004-04-28 15 8.9 2004-04-28 16 8.9 2004-04-28 17 8.9 2004-04-28 18 8.9 2004-04-28 19 8.9 2004-04-28 20 8.9 2004-04-28 21 8.9 2004-04-28 22 8.9 2004-04-28 23 8.9 2004-04-28 24 8.9 2004-05-10 20 10.2 2004-05-10 21 10.2 2004-05-10 22 10.2 2004-05-10 23 10.2 2004-05-10 24 10.2 2004-05-10 24.5 10.2 2004-05-10 18 10.3 2004-05-10 19 10.3 2004-05-10 15 10.4 2004-05-10 16 10.4 2004-05-10 17 10.4 2004-05-10 12 10.5 2004-05-10 13 10.5 2004-05-10 14 10.5 2004-05-10 11 10.6 2004-05-10 9 10.7 2004-05-10 10 10.7 2004-05-10 8 10.8 2004-05-10 6 10.9 2004-05-10 7 10.9 2004-05-10 5 11 2004-05-10 4 11.3 2004-05-10 3 11.9 2004-05-10 2 12.6 2004-05-10 1 13 2004-05-10 0 13.5 2004-05-24 21 10.6 2004-05-24 22 10.6 2004-05-24 23 10.6 2004-05-24 24 10.6 2004-05-24 24.5 10.6 2004-05-24 20 10.9 2004-05-24 19 11.1 2004-05-24 18 11.4 2004-05-24 17 11.5 2004-05-24 16 12.1 2004-05-24 15 14.6 2004-05-24 14 14.8 2004-05-24 12 14.9 2004-05-24 13 14.9 2004-05-24 6 15 2004-05-24 7 15 2004-05-24 8 15 2004-05-24 9 15 2004-05-24 10 15 2004-05-24 11 15 2004-05-24 0 15.1 2004-05-24 1 15.1 2004-05-24 2 15.1 2004-05-24 3 15.1 2004-05-24 4 15.1 2004-05-24 5 15.1 2004-06-07 24 10.9 2004-06-07 24.3 10.9 2004-06-07 21 11 2004-06-07 22 11 2004-06-07 23 11 2004-06-07 20 11.1 2004-06-07 19 11.3 2004-06-07 18 11.4 2004-06-07 17 11.5 2004-06-07 16 11.7 2004-06-07 15 12 2004-06-07 14 12.6 2004-06-07 13 13.7 2004-06-07 12 14 2004-06-07 11 14.9 2004-06-07 10 15.7 2004-06-07 9 15.9 2004-06-07 8 16.3 2004-06-07 7 17.4 2004-06-07 6 18.2 2004-06-07 5 19 2004-06-07 2 19.1 2004-06-07 3 19.1 2004-06-07 4 19.1 2004-06-07 0 19.2 2004-06-07 1 19.2 2004-06-21 24.5 11.4 2004-06-21 22 11.5 2004-06-21 23 11.5 2004-06-21 24 11.5 2004-06-21 21 11.6 2004-06-21 20 11.8 2004-06-21 19 11.9 2004-06-21 18 12.2 2004-06-21 17 12.4 2004-06-21 16 12.6 2004-06-21 15 12.7 2004-06-21 14 13.4 2004-06-21 13 13.9 2004-06-21 12.5 14.2 2004-06-21 12 14.7 2004-06-21 11.5 15.1 2004-06-21 11 15.5 2004-06-21 10.5 15.7 2004-06-21 10 16 2004-06-21 9.5 16.6 2004-06-21 9 17.3 2004-06-21 8.5 18.1 2004-06-21 8 20.5 2004-06-21 0 20.6 2004-06-21 1 20.6 2004-06-21 2 20.6 2004-06-21 3 20.6 2004-06-21 4 20.6 2004-06-21 5 20.6 2004-06-21 6 20.6 2004-06-21 7 20.6 2004-07-06 24.5 12.3 2004-07-06 24 12.8 2004-07-06 23 13 2004-07-06 22 13.3 2004-07-06 21 13.5 2004-07-06 20 14.1 2004-07-06 19 14.5 2004-07-06 18 15 2004-07-06 17 15.5 2004-07-06 16 16 2004-07-06 15 16.7 2004-07-06 14 17.3 2004-07-06 13 18 2004-07-06 12 19 2004-07-06 11 20.8 2004-07-06 7 20.9 2004-07-06 8 20.9 2004-07-06 9 20.9 2004-07-06 10 20.9 2004-07-06 6 21 2004-07-06 5 21.2 2004-07-06 4 21.4 2004-07-06 3 21.5 2004-07-06 2 21.7 2004-07-06 1 21.8 2004-07-06 0 21.9 2004-07-19 21 11.8 2004-07-19 22 11.8 2004-07-19 20 12 2004-07-19 19 12.2 2004-07-19 18 12.4 2004-07-19 17 12.7 2004-07-19 16 13.1 2004-07-19 15 13.4 2004-07-19 14 13.9 2004-07-19 13 14.6 2004-07-19 12.5 15.1 2004-07-19 12 15.7 2004-07-19 11.5 16.5 2004-07-19 11 17.6 2004-07-19 10.5 18.7 2004-07-19 10 19.6 2004-07-19 9.5 19.9 2004-07-19 9 20 2004-07-19 8.5 20.3 2004-07-19 8 20.9 2004-07-19 7.5 21.7 2004-07-19 7 22.5 2004-07-19 6 22.7 2004-07-19 4 22.9 2004-07-19 5 22.9 2004-07-19 2 23 2004-07-19 3 23 2004-07-19 1 23.1 2004-07-19 0 23.2 2004-08-03 23 11.8 2004-08-03 24 11.8 2004-08-03 24.8 11.8 2004-08-03 19 11.9 2004-08-03 20 11.9 2004-08-03 21 11.9 2004-08-03 22 11.9 2004-08-03 18 12.3 2004-08-03 17 12.7 2004-08-03 16 13 2004-08-03 15 13.6 2004-08-03 14 14.1 2004-08-03 13 14.8 2004-08-03 12 16.1 2004-08-03 11 17.6 2004-08-03 10 18.9 2004-08-03 9 21 2004-08-03 8.5 23 2004-08-03 7 23.1 2004-08-03 8 23.1 2004-08-03 6 23.2 2004-08-03 4 23.5 2004-08-03 5 23.5 2004-08-03 3 23.8 2004-08-03 1 24 2004-08-03 2 24 2004-08-03 0 24.3 2004-08-16 23 12 2004-08-16 24 12 2004-08-16 24.5 12 2004-08-16 21 12.1 2004-08-16 22 12.1 2004-08-16 20 12.2 2004-08-16 18 12.3 2004-08-16 19 12.3 2004-08-16 17 12.4 2004-08-16 16 12.5 2004-08-16 15 12.7 2004-08-16 14 13.1 2004-08-16 13 13.8 2004-08-16 12 15.2 2004-08-16 11 17.2 2004-08-16 10.5 18.4 2004-08-16 10 19.7 2004-08-16 9 19.9 2004-08-16 6 20 2004-08-16 7 20 2004-08-16 8 20 2004-08-16 0 20.1 2004-08-16 1 20.1 2004-08-16 2 20.1 2004-08-16 3 20.1 2004-08-16 4 20.1 2004-08-16 5 20.1 2004-09-07 24 12.1 2004-09-07 24.5 12.1 2004-09-07 22 12.2 2004-09-07 23 12.2 2004-09-07 21 12.3 2004-09-07 20 12.4 2004-09-07 19 12.7 2004-09-07 17 12.8 2004-09-07 18 12.8 2004-09-07 16 13.9 2004-09-07 15 14.3 2004-09-07 14 15.2 2004-09-07 13 17.1 2004-09-07 12.5 18.1 2004-09-07 12 18.9 2004-09-07 11.5 19.5 2004-09-07 11 20.7 2004-09-07 10.5 21.6 2004-09-07 10 21.7 2004-09-07 7 21.8 2004-09-07 8 21.8 2004-09-07 9 21.8 2004-09-07 0 21.9 2004-09-07 1 21.9 2004-09-07 2 21.9 2004-09-07 3 21.9 2004-09-07 4 21.9 2004-09-07 5 21.9 2004-09-07 6 21.9 2004-10-05 20 12.3 2004-10-05 21 12.3 2004-10-05 22 12.3 2004-10-05 23 12.3 2004-10-05 24 12.3 2004-10-05 24.6 12.3 2004-10-05 19 12.7 2004-10-05 18 12.8 2004-10-05 17.5 13.1 2004-10-05 17 13.7 2004-10-05 16.5 15.1 2004-10-05 16 16.5 2004-10-05 11 16.7 2004-10-05 12 16.7 2004-10-05 13 16.7 2004-10-05 14 16.7 2004-10-05 15 16.7 2004-10-05 0 16.8 2004-10-05 1 16.8 2004-10-05 2 16.8 2004-10-05 3 16.8 2004-10-05 4 16.8 2004-10-05 5 16.8 2004-10-05 6 16.8 2004-10-05 7 16.8 2004-10-05 8 16.8 2004-10-05 9 16.8 2004-10-05 10 16.8 2004-11-03 0 12.3 2004-11-03 1 12.3 2004-11-03 2 12.3 2004-11-03 3 12.3 2004-11-03 4 12.3 2004-11-03 5 12.3 2004-11-03 6 12.3 2004-11-03 7 12.3 2004-11-03 8 12.3 2004-11-03 9 12.3 2004-11-03 10 12.3 2004-11-03 11 12.3 2004-11-03 12 12.3 2004-11-03 13 12.3 2004-11-03 14 12.3 2004-11-03 15 12.3 2004-11-03 16 12.3 2004-11-03 17 12.3 2004-11-03 18 12.3 2004-11-03 19 12.3 2004-11-03 20 12.3 2004-11-03 21 12.3 2004-11-03 22 12.3 2004-11-03 23 12.3 2004-11-03 24 12.3 2004-11-03 24.5 12.3 2005-01-31 0 0.4 2005-01-31 1 0.8 2005-01-31 2 1 2005-01-31 3 1 2005-01-31 4 1 2005-01-31 5 1 2005-01-31 6 1 2005-01-31 7 1 2005-01-31 8 1.1 2005-01-31 9 1.1 2005-01-31 10 1.2 2005-01-31 11 1.3 2005-01-31 12 1.3 2005-01-31 13 1.4 2005-01-31 14 1.5 2005-01-31 15 1.5 2005-01-31 16 1.6 2005-01-31 17 1.7 2005-01-31 18 1.7 2005-01-31 19 1.8 2005-01-31 20 1.9 2005-01-31 21 1.9 2005-01-31 22 2.1 2005-01-31 23 2.2 2005-01-31 23.9 2.2 2005-04-15 5 5.3 2005-04-15 6 5.3 2005-04-15 7 5.3 2005-04-15 8 5.3 2005-04-15 9 5.3 2005-04-15 10 5.3 2005-04-15 11 5.3 2005-04-15 12 5.3 2005-04-15 13 5.3 2005-04-15 14 5.3 2005-04-15 15 5.3 2005-04-15 16 5.3 2005-04-15 17 5.3 2005-04-15 18 5.3 2005-04-15 19 5.3 2005-04-15 20 5.3 2005-04-15 21 5.3 2005-04-15 22 5.3 2005-04-15 23 5.4 2005-04-15 4 5.7 2005-04-15 24 5.8 2005-04-15 24.6 6.2 2005-04-15 3 6.4 2005-04-15 2 7.1 2005-04-15 1 7.3 2005-04-15 0 7.6 2005-04-25 17 7.3 2005-04-25 18 7.3 2005-04-25 19 7.3 2005-04-25 20 7.3 2005-04-25 21 7.3 2005-04-25 22 7.3 2005-04-25 15 7.4 2005-04-25 16 7.4 2005-04-25 23 7.4 2005-04-25 11 7.5 2005-04-25 12 7.5 2005-04-25 13 7.5 2005-04-25 14 7.5 2005-04-25 24 7.5 2005-04-25 7 7.6 2005-04-25 8 7.6 2005-04-25 9 7.6 2005-04-25 10 7.6 2005-04-25 3 7.7 2005-04-25 4 7.7 2005-04-25 5 7.7 2005-04-25 6 7.7 2005-04-25 24.4 7.7 2005-04-25 2 7.8 2005-04-25 1 7.9 2005-04-25 0 8 2005-05-09 19 7.6 2005-05-09 20 7.6 2005-05-09 21 7.6 2005-05-09 22 7.6 2005-05-09 23 7.6 2005-05-09 24 7.6 2005-05-09 24.7 7.6 2005-05-09 13 7.7 2005-05-09 14 7.7 2005-05-09 15 7.7 2005-05-09 16 7.7 2005-05-09 17 7.7 2005-05-09 18 7.7 2005-05-09 11 7.8 2005-05-09 12 7.8 2005-05-09 10 8 2005-05-09 9 8.9 2005-05-09 8 9.3 2005-05-09 7 9.4 2005-05-09 6 9.5 2005-05-09 5 9.7 2005-05-09 4 9.8 2005-05-09 3 9.9 2005-05-09 2 10 2005-05-09 1 10.1 2005-05-09 0 10.2 2005-05-23 23 9.9 2005-05-23 24 9.9 2005-05-23 24.5 9.9 2005-05-23 22 10 2005-05-23 20 10.2 2005-05-23 21 10.2 2005-05-23 19 10.5 2005-05-23 18 10.6 2005-05-23 17 11 2005-05-23 16 11.2 2005-05-23 15 11.6 2005-05-23 14 12.2 2005-05-23 13 12.7 2005-05-23 12 13.1 2005-05-23 11 13.2 2005-05-23 8 13.3 2005-05-23 9 13.3 2005-05-23 10 13.3 2005-05-23 0 13.4 2005-05-23 1 13.4 2005-05-23 2 13.4 2005-05-23 3 13.4 2005-05-23 4 13.4 2005-05-23 5 13.4 2005-05-23 6 13.4 2005-05-23 7 13.4 2005-06-06 21 10.1 2005-06-06 22 10.1 2005-06-06 23 10.1 2005-06-06 24 10.1 2005-06-06 24.5 10.1 2005-06-06 19 10.2 2005-06-06 20 10.2 2005-06-06 18 10.3 2005-06-06 17 10.4 2005-06-06 16 10.5 2005-06-06 15 10.8 2005-06-06 14 10.9 2005-06-06 13 11.1 2005-06-06 12 11.2 2005-06-06 11 11.8 2005-06-06 10 12.7 2005-06-06 9 15.1 2005-06-06 8 16.4 2005-06-06 7 16.7 2005-06-06 6 17.6 2005-06-06 5 17.9 2005-06-06 4 18 2005-06-06 3 18.3 2005-06-06 2 18.6 2005-06-06 1 18.8 2005-06-06 0 18.9 2005-06-20 20 10.4 2005-06-20 21 10.4 2005-06-20 22 10.4 2005-06-20 23 10.4 2005-06-20 24 10.4 2005-06-20 17 10.5 2005-06-20 18 10.5 2005-06-20 19 10.5 2005-06-20 24.7 10.5 2005-06-20 16 10.7 2005-06-20 15 11 2005-06-20 14 11.4 2005-06-20 13 11.6 2005-06-20 12.5 12.2 2005-06-20 12 12.4 2005-06-20 11.5 12.7 2005-06-20 11 12.9 2005-06-20 10.5 13.1 2005-06-20 10 13.7 2005-06-20 9.5 15.7 2005-06-20 9 16.3 2005-06-20 8.5 17.8 2005-06-20 8 18.7 2005-06-20 7.5 19.1 2005-06-20 7 19.7 2005-06-20 6.5 20.3 2005-06-20 6 20.7 2005-06-20 5.5 20.9 2005-06-20 5 21 2005-06-20 4.5 21.1 2005-06-20 3 21.2 2005-06-20 4 21.2 2005-06-20 2 21.4 2005-06-20 1 21.8 2005-06-20 0 24.1 2005-07-05 23 10.4 2005-07-05 24 10.4 2005-07-05 24.7 10.4 2005-07-05 21 10.5 2005-07-05 22 10.5 2005-07-05 19 10.6 2005-07-05 20 10.6 2005-07-05 18 10.7 2005-07-05 17 11 2005-07-05 16 11.2 2005-07-05 15 11.3 2005-07-05 14 11.6 2005-07-05 13 12 2005-07-05 12 12.5 2005-07-05 11.5 13.2 2005-07-05 11 13.8 2005-07-05 10.5 14.9 2005-07-05 10 15.6 2005-07-05 9.5 17 2005-07-05 9 17.8 2005-07-05 8.5 20.5 2005-07-05 8 21.7 2005-07-05 7.5 22.5 2005-07-05 7 22.7 2005-07-05 6 22.8 2005-07-05 5 22.9 2005-07-05 3 23 2005-07-05 4 23 2005-07-05 2 23.2 2005-07-05 1 23.4 2005-07-05 0 23.5 2005-07-18 15 11.1 2005-07-18 16 11.1 2005-07-18 17 11.1 2005-07-18 18 11.1 2005-07-18 19 11.1 2005-07-18 20 11.1 2005-07-18 21 11.1 2005-07-18 22 11.1 2005-07-18 23 11.1 2005-07-18 24 11.1 2005-07-18 24.5 11.1 2005-07-18 14 11.5 2005-07-18 13 12 2005-07-18 12 12.7 2005-07-18 11 14 2005-07-18 10 15.4 2005-07-18 9 18.2 2005-07-18 8 20.2 2005-07-18 7 23.2 2005-07-18 6 24.5 2005-07-18 5 24.9 2005-07-18 4 25.2 2005-07-18 3 25.6 2005-07-18 2 26 2005-07-18 1 26.1 2005-07-18 0 26.3 2005-08-01 21 10.6 2005-08-01 22 10.6 2005-08-01 23 10.6 2005-08-01 24 10.6 2005-08-01 24.5 10.6 2005-08-01 20 10.8 2005-08-01 18 10.9 2005-08-01 19 10.9 2005-08-01 17 11 2005-08-01 16 11.2 2005-08-01 15 11.5 2005-08-01 14 12 2005-08-01 13 12.2 2005-08-01 12 12.7 2005-08-01 11 13.2 2005-08-01 10 15 2005-08-01 9 17 2005-08-01 8.5 19.1 2005-08-01 8 21.5 2005-08-01 7.5 22.8 2005-08-01 7 23.1 2005-08-01 6.5 23.5 2005-08-01 6 23.8 2005-08-01 5 24.1 2005-08-01 4 24.2 2005-08-01 3 24.4 2005-08-01 2 24.5 2005-08-01 1 24.8 2005-08-01 0 25.5 2005-08-15 20 10.8 2005-08-15 21 10.8 2005-08-15 22 10.8 2005-08-15 23 10.8 2005-08-15 19 10.9 2005-08-15 24 10.9 2005-08-15 24.3 10.9 2005-08-15 18 11.1 2005-08-15 17 11.2 2005-08-15 16 11.3 2005-08-15 15 11.7 2005-08-15 14 11.9 2005-08-15 13 12.3 2005-08-15 12 12.9 2005-08-15 11.5 14 2005-08-15 11 15.2 2005-08-15 10.5 15.9 2005-08-15 10 16.6 2005-08-15 9.5 17.7 2005-08-15 9 20.7 2005-08-15 8.5 23.5 2005-08-15 8 23.7 2005-08-15 7 24 2005-08-15 7.5 24 2005-08-15 6.5 24.2 2005-08-15 5 24.3 2005-08-15 6 24.3 2005-08-15 2 24.4 2005-08-15 3 24.4 2005-08-15 4 24.4 2005-08-15 1 24.5 2005-08-15 0 24.6 2005-08-29 23 10.5 2005-08-29 24 10.5 2005-08-29 24.6 10.5 2005-08-29 21 10.6 2005-08-29 22 10.6 2005-08-29 20 10.7 2005-08-29 19 10.8 2005-08-29 18 10.9 2005-08-29 17 11 2005-08-29 16 11.3 2005-08-29 15 11.6 2005-08-29 14 12.5 2005-08-29 13 13.4 2005-08-29 12.5 14 2005-08-29 12 14.6 2005-08-29 11.5 15.5 2005-08-29 11 16 2005-08-29 10.5 17.5 2005-08-29 10 19.1 2005-08-29 9.5 21.2 2005-08-29 9 22.6 2005-08-29 8.5 22.7 2005-08-29 8 22.9 2005-08-29 6 23 2005-08-29 7 23 2005-08-29 5 23.1 2005-08-29 4 23.2 2005-08-29 3 23.4 2005-08-29 2 23.5 2005-08-29 1 23.7 2005-08-29 0 24.8 2005-09-26 24.3 10.7 2005-09-26 22 10.8 2005-09-26 23 10.8 2005-09-26 24 10.8 2005-09-26 20 10.9 2005-09-26 21 10.9 2005-09-26 19 11 2005-09-26 18 11.2 2005-09-26 17 11.4 2005-09-26 16 11.6 2005-09-26 15 11.8 2005-09-26 14 12.4 2005-09-26 13 13.8 2005-09-26 12.5 16.2 2005-09-26 12 20.5 2005-09-26 10 20.6 2005-09-26 11 20.6 2005-09-26 7 20.7 2005-09-26 8 20.7 2005-09-26 9 20.7 2005-09-26 0 20.8 2005-09-26 1 20.8 2005-09-26 2 20.8 2005-09-26 3 20.8 2005-09-26 4 20.8 2005-09-26 5 20.8 2005-09-26 6 20.8 2005-11-02 11 12.4 2005-11-02 12 12.4 2005-11-02 13 12.4 2005-11-02 14 12.4 2005-11-02 15 12.4 2005-11-02 16 12.4 2005-11-02 17 12.4 2005-11-02 18 12.4 2005-11-02 19 12.4 2005-11-02 20 12.4 2005-11-02 21 12.4 2005-11-02 22 12.4 2005-11-02 23 12.4 2005-11-02 24 12.4 2005-11-02 24.5 12.4 2005-11-02 1 12.5 2005-11-02 2 12.5 2005-11-02 3 12.5 2005-11-02 4 12.5 2005-11-02 5 12.5 2005-11-02 6 12.5 2005-11-02 7 12.5 2005-11-02 8 12.5 2005-11-02 9 12.5 2005-11-02 10 12.5 2005-11-02 0 12.6 2005-11-30 0 5.5 2005-11-30 1 5.5 2005-11-30 2 5.5 2005-11-30 3 5.5 2005-11-30 4 5.5 2005-11-30 5 5.5 2005-11-30 6 5.5 2005-11-30 7 5.5 2005-11-30 8 5.5 2005-11-30 9 5.5 2005-11-30 10 5.5 2005-11-30 11 5.5 2005-11-30 12 5.5 2005-11-30 13 5.5 2005-11-30 14 5.5 2005-11-30 15 5.5 2005-11-30 16 5.5 2005-11-30 17 5.5 2005-11-30 18 5.5 2005-11-30 19 5.5 2005-11-30 20 5.5 2005-11-30 21 5.5 2005-11-30 22 5.5 2005-11-30 23 5.5 2005-11-30 24 5.5 2005-11-30 24.3 5.5 2006-03-06 0 0.9 2006-03-06 1 1.3 2006-03-06 2 1.4 2006-03-06 3 1.5 2006-03-06 4 1.5 2006-03-06 5 1.5 2006-03-06 6 1.5 2006-03-06 7 1.5 2006-03-06 8 1.5 2006-03-06 9 1.5 2006-03-06 10 1.5 2006-03-06 11 1.5 2006-03-06 12 1.6 2006-03-06 13 1.6 2006-03-06 14 1.6 2006-03-06 15 1.6 2006-03-06 16 1.6 2006-03-06 17 1.7 2006-03-06 18 1.8 2006-03-06 19 1.8 2006-03-06 19.2 1.8 2006-04-04 0 3.7 2006-04-04 1 3.7 2006-04-04 2 3.7 2006-04-04 3 3.7 2006-04-04 4 3.7 2006-04-04 5 3.7 2006-04-04 6 3.7 2006-04-04 7 3.7 2006-04-04 8 3.7 2006-04-04 9 3.7 2006-04-04 10 3.7 2006-04-04 11 3.7 2006-04-04 12 3.7 2006-04-04 13 3.7 2006-04-04 14 3.7 2006-04-04 15 3.7 2006-04-04 16 3.7 2006-04-04 17 3.7 2006-04-04 18 3.7 2006-04-04 19 3.7 2006-04-04 20 3.7 2006-04-04 21 3.8 2006-04-04 22 3.8 2006-04-04 23 3.9 2006-04-04 24 3.9 2006-04-04 24.4 3.9 2006-04-17 19 6.1 2006-04-17 20 6.1 2006-04-17 21 6.1 2006-04-17 22 6.1 2006-04-17 23 6.1 2006-04-17 24 6.1 2006-04-17 24.5 6.1 2006-04-17 11 6.2 2006-04-17 12 6.2 2006-04-17 13 6.2 2006-04-17 14 6.2 2006-04-17 15 6.2 2006-04-17 16 6.2 2006-04-17 17 6.2 2006-04-17 18 6.2 2006-04-17 5 6.3 2006-04-17 6 6.3 2006-04-17 7 6.3 2006-04-17 8 6.3 2006-04-17 9 6.3 2006-04-17 10 6.3 2006-04-17 2 6.4 2006-04-17 3 6.4 2006-04-17 4 6.4 2006-04-17 0 6.5 2006-04-17 1 6.5 2006-05-02 20 9.4 2006-05-02 21 9.4 2006-05-02 22 9.4 2006-05-02 23 9.4 2006-05-02 24 9.4 2006-05-02 24.5 9.4 2006-05-02 18 9.5 2006-05-02 19 9.5 2006-05-02 12 9.6 2006-05-02 13 9.6 2006-05-02 14 9.6 2006-05-02 15 9.6 2006-05-02 16 9.6 2006-05-02 17 9.6 2006-05-02 11 9.7 2006-05-02 10 9.9 2006-05-02 9 10 2006-05-02 6 10.1 2006-05-02 7 10.1 2006-05-02 8 10.1 2006-05-02 4 10.2 2006-05-02 5 10.2 2006-05-02 3 10.3 2006-05-02 2 10.5 2006-05-02 1 11 2006-05-02 0 11.6 2006-05-15 24 9.9 2006-05-15 24.6 9.9 2006-05-15 23 10.1 2006-05-15 21 10.2 2006-05-15 22 10.2 2006-05-15 20 10.3 2006-05-15 19 10.4 2006-05-15 18 10.6 2006-05-15 15 10.9 2006-05-15 16 10.9 2006-05-15 17 10.9 2006-05-15 8 11 2006-05-15 9 11 2006-05-15 10 11 2006-05-15 11 11 2006-05-15 12 11 2006-05-15 13 11 2006-05-15 14 11 2006-05-15 0 11.1 2006-05-15 1 11.1 2006-05-15 2 11.1 2006-05-15 3 11.1 2006-05-15 4 11.1 2006-05-15 5 11.1 2006-05-15 6 11.1 2006-05-15 7 11.1 2006-05-30 20 10.5 2006-05-30 21 10.5 2006-05-30 22 10.5 2006-05-30 23 10.5 2006-05-30 24 10.5 2006-05-30 19 10.6 2006-05-30 24.7 10.6 2006-05-30 18 10.7 2006-05-30 16 10.9 2006-05-30 17 10.9 2006-05-30 15 11.1 2006-05-30 14 11.2 2006-05-30 13 11.3 2006-05-30 12 11.7 2006-05-30 11 12 2006-05-30 10 12.4 2006-05-30 9 12.6 2006-05-30 8 12.9 2006-05-30 7 14.6 2006-05-30 6 16.1 2006-05-30 5 16.7 2006-05-30 4 17.1 2006-05-30 3 17.6 2006-05-30 2 18 2006-05-30 1 18.3 2006-05-30 0 18.4 2006-06-12 24 10.4 2006-06-12 20 10.5 2006-06-12 21 10.5 2006-06-12 22 10.5 2006-06-12 23 10.5 2006-06-12 24.8 10.5 2006-06-12 19 10.6 2006-06-12 18 10.7 2006-06-12 17 10.8 2006-06-12 16 11 2006-06-12 15 11.1 2006-06-12 14 11.3 2006-06-12 13 11.6 2006-06-12 12 11.8 2006-06-12 11 12.1 2006-06-12 10 12.6 2006-06-12 9 13.6 2006-06-12 8 14.6 2006-06-12 7.5 16.5 2006-06-12 7 18.3 2006-06-12 6.5 18.7 2006-06-12 6 18.8 2006-06-12 5 19.1 2006-06-12 4 19.2 2006-06-12 3 19.4 2006-06-12 2 19.5 2006-06-12 1 19.6 2006-06-12 0 20.2 2006-06-26 22 10.7 2006-06-26 23 10.7 2006-06-26 24 10.7 2006-06-26 24.7 10.7 2006-06-26 21 10.8 2006-06-26 19 10.9 2006-06-26 20 10.9 2006-06-26 18 11 2006-06-26 17 11.2 2006-06-26 16 11.5 2006-06-26 15 11.7 2006-06-26 14 11.9 2006-06-26 13 12.1 2006-06-26 12 12.6 2006-06-26 11 12.8 2006-06-26 10.5 12.9 2006-06-26 10 13.4 2006-06-26 9.5 14.3 2006-06-26 9 15.1 2006-06-26 8.5 16.2 2006-06-26 8 19.1 2006-06-26 7.5 21 2006-06-26 7 21.1 2006-06-26 3 21.2 2006-06-26 4 21.2 2006-06-26 5 21.2 2006-06-26 6 21.2 2006-06-26 1 21.3 2006-06-26 2 21.3 2006-06-26 0 21.4 2006-07-10 24 10.6 2006-07-10 24.7 10.6 2006-07-10 23 10.8 2006-07-10 21 10.9 2006-07-10 22 10.9 2006-07-10 20 11 2006-07-10 19 11.2 2006-07-10 18 11.3 2006-07-10 17 11.4 2006-07-10 16 11.6 2006-07-10 15 11.7 2006-07-10 14 11.9 2006-07-10 13 12.2 2006-07-10 12 12.6 2006-07-10 11.5 13.1 2006-07-10 11 14.6 2006-07-10 10.5 16.3 2006-07-10 10 16.6 2006-07-10 9.5 16.8 2006-07-10 9 17.6 2006-07-10 8.5 18.8 2006-07-10 8 20.7 2006-07-10 7.5 22.3 2006-07-10 7 22.7 2006-07-10 6.5 23.7 2006-07-10 5 23.8 2006-07-10 6 23.8 2006-07-10 4 23.9 2006-07-10 3 24 2006-07-10 2 24.1 2006-07-10 1 24.3 2006-07-10 0 24.4 2006-07-24 23 10.8 2006-07-24 24 10.8 2006-07-24 24.8 10.8 2006-07-24 22 10.9 2006-07-24 21 11 2006-07-24 20 11.2 2006-07-24 19 11.3 2006-07-24 18 11.5 2006-07-24 17 11.6 2006-07-24 16 11.9 2006-07-24 15 12.2 2006-07-24 14 12.6 2006-07-24 13 13.3 2006-07-24 12.5 13.6 2006-07-24 12 14.3 2006-07-24 11.5 15.5 2006-07-24 11 16.4 2006-07-24 10.5 17.6 2006-07-24 10 19.8 2006-07-24 9.5 22.4 2006-07-24 8 24.1 2006-07-24 9 24.1 2006-07-24 1 24.2 2006-07-24 3 24.2 2006-07-24 4 24.2 2006-07-24 5 24.2 2006-07-24 6 24.2 2006-07-24 7 24.2 2006-07-24 0 24.3 2006-07-24 2 24.3 2006-08-07 21 10.9 2006-08-07 22 10.9 2006-08-07 23 10.9 2006-08-07 24 10.9 2006-08-07 24.3 10.9 2006-08-07 19 11.1 2006-08-07 20 11.1 2006-08-07 18 11.2 2006-08-07 17 11.4 2006-08-07 16 11.6 2006-08-07 15 12 2006-08-07 14 12.8 2006-08-07 13 13.3 2006-08-07 12.5 13.5 2006-08-07 12 14.4 2006-08-07 11.5 15.4 2006-08-07 11 15.9 2006-08-07 10.5 16.9 2006-08-07 10 18.3 2006-08-07 9.5 21.3 2006-08-07 9 21.6 2006-08-07 8.5 23 2006-08-07 8 25.4 2006-08-07 7 25.6 2006-08-07 5 25.7 2006-08-07 6 25.7 2006-08-07 3 25.8 2006-08-07 4 25.8 2006-08-07 2 25.9 2006-08-07 0 26 2006-08-07 1 26 2006-08-21 24 10.7 2006-08-21 24.2 10.7 2006-08-21 23 10.8 2006-08-21 21 11 2006-08-21 22 11 2006-08-21 20 11.1 2006-08-21 19 11.2 2006-08-21 18 11.3 2006-08-21 17 11.6 2006-08-21 16 11.9 2006-08-21 15 12.2 2006-08-21 14 12.7 2006-08-21 13 13.2 2006-08-21 12.5 13.8 2006-08-21 12 14.7 2006-08-21 11.5 15.7 2006-08-21 11 18.8 2006-08-21 10.5 21.3 2006-08-21 10 22.4 2006-08-21 9 23.4 2006-08-21 9.5 23.4 2006-08-21 6 23.5 2006-08-21 7 23.5 2006-08-21 8 23.5 2006-08-21 4 23.6 2006-08-21 5 23.6 2006-08-21 3 23.7 2006-08-21 0 23.8 2006-08-21 1 23.8 2006-08-21 2 23.8 2006-09-06 22 10.9 2006-09-06 23 10.9 2006-09-06 24 10.9 2006-09-06 20 11 2006-09-06 21 11 2006-09-06 24.7 11 2006-09-06 19 11.1 2006-09-06 18 11.3 2006-09-06 17 11.5 2006-09-06 16 11.7 2006-09-06 15 11.9 2006-09-06 14 12.6 2006-09-06 13 13.5 2006-09-06 12.5 14.1 2006-09-06 12 14.8 2006-09-06 11.5 15.6 2006-09-06 11 16.4 2006-09-06 10.5 18.5 2006-09-06 10 21.8 2006-09-06 9 22 2006-09-06 9.5 22 2006-09-06 5 22.1 2006-09-06 6 22.1 2006-09-06 7 22.1 2006-09-06 8 22.1 2006-09-06 4 22.2 2006-09-06 3 22.3 2006-09-06 2 22.4 2006-09-06 1 22.9 2006-09-06 0 24.2 2006-10-02 23 11.3 2006-10-02 24 11.3 2006-10-02 24.5 11.3 2006-10-02 22 11.4 2006-10-02 18 11.5 2006-10-02 19 11.5 2006-10-02 20 11.5 2006-10-02 21 11.5 2006-10-02 17 11.9 2006-10-02 16 12.8 2006-10-02 15.5 14.3 2006-10-02 15 14.6 2006-10-02 14.5 15 2006-10-02 14 15.4 2006-10-02 12 15.8 2006-10-02 12.5 15.8 2006-10-02 13 15.8 2006-10-02 13.5 15.8 2006-10-02 9 15.9 2006-10-02 10 15.9 2006-10-02 11 15.9 2006-10-02 4 16 2006-10-02 5 16 2006-10-02 6 16 2006-10-02 7 16 2006-10-02 8 16 2006-10-02 0 16.1 2006-10-02 1 16.1 2006-10-02 2 16.1 2006-10-02 3 16.1 2006-10-30 19 9.5 2006-10-30 20 9.5 2006-10-30 21 9.5 2006-10-30 22 9.5 2006-10-30 13 9.6 2006-10-30 14 9.6 2006-10-30 15 9.6 2006-10-30 16 9.6 2006-10-30 17 9.6 2006-10-30 18 9.6 2006-10-30 23 9.6 2006-10-30 24 9.6 2006-10-30 24.3 9.6 2006-10-30 4 9.7 2006-10-30 5 9.7 2006-10-30 6 9.7 2006-10-30 7 9.7 2006-10-30 8 9.7 2006-10-30 9 9.7 2006-10-30 10 9.7 2006-10-30 11 9.7 2006-10-30 12 9.7 2006-10-30 1 9.8 2006-10-30 2 9.8 2006-10-30 3 9.8 2006-10-30 0 9.9 2006-11-27 20 6.2 2006-11-27 10 6.3 2006-11-27 12 6.3 2006-11-27 13 6.3 2006-11-27 14 6.3 2006-11-27 15 6.3 2006-11-27 16 6.3 2006-11-27 17 6.3 2006-11-27 18 6.3 2006-11-27 19 6.3 2006-11-27 21 6.3 2006-11-27 22 6.3 2006-11-27 23 6.3 2006-11-27 6 6.4 2006-11-27 7 6.4 2006-11-27 8 6.4 2006-11-27 9 6.4 2006-11-27 11 6.4 2006-11-27 3 6.5 2006-11-27 4 6.5 2006-11-27 5 6.5 2006-11-27 1 6.7 2006-11-27 2 6.7 2006-11-27 0 7 2007-01-03 3 2.1 2007-01-03 4 2.1 2007-01-03 5 2.1 2007-01-03 6 2.1 2007-01-03 7 2.1 2007-01-03 8 2.1 2007-01-03 9 2.1 2007-01-03 10 2.1 2007-01-03 11 2.1 2007-01-03 12 2.1 2007-01-03 13 2.1 2007-01-03 14 2.1 2007-01-03 15 2.1 2007-01-03 16 2.1 2007-01-03 17 2.1 2007-01-03 18 2.1 2007-01-03 19 2.1 2007-01-03 20 2.1 2007-01-03 21 2.1 2007-01-03 22 2.1 2007-01-03 23 2.1 2007-01-03 24 2.1 2007-01-03 24.7 2.1 2007-01-03 0 2.2 2007-01-03 1 2.2 2007-01-03 2 2.2 2007-02-19 0 0.3 2007-02-19 1 0.6 2007-02-19 2 0.6 2007-02-19 3 0.7 2007-02-19 4 0.7 2007-02-19 5 0.7 2007-02-19 6 0.7 2007-02-19 7 0.7 2007-02-19 8 0.7 2007-02-19 9 0.7 2007-02-19 10 0.7 2007-02-19 11 0.7 2007-02-19 12 0.7 2007-02-19 13 0.8 2007-02-19 14 0.9 2007-02-19 15 1 2007-02-19 16 1.1 2007-02-19 17 1.2 2007-02-19 18 1.3 2007-02-19 19 1.4 2007-02-19 20 1.5 2007-02-19 21 1.6 2007-02-19 22 1.7 2007-02-19 23 1.8 2007-02-19 24 2.1 2007-02-19 24.5 2.2 2007-04-02 3 3.7 2007-04-02 4 3.7 2007-04-02 5 3.7 2007-04-02 6 3.7 2007-04-02 7 3.7 2007-04-02 8 3.7 2007-04-02 9 3.7 2007-04-02 10 3.7 2007-04-02 11 3.7 2007-04-02 12 3.7 2007-04-02 13 3.7 2007-04-02 14 3.7 2007-04-02 15 3.7 2007-04-02 16 3.7 2007-04-02 17 3.7 2007-04-02 18 3.7 2007-04-02 19 3.7 2007-04-02 20 3.7 2007-04-02 21 3.7 2007-04-02 22 3.7 2007-04-02 23 3.7 2007-04-02 24 3.7 2007-04-02 0 3.8 2007-04-02 1 3.8 2007-04-02 2 3.8 2007-04-02 24.6 4.5 2007-04-16 4 4 2007-04-16 5 4 2007-04-16 6 4 2007-04-16 7 4 2007-04-16 8 4 2007-04-16 9 4 2007-04-16 10 4 2007-04-16 11 4 2007-04-16 12 4 2007-04-16 13 4 2007-04-16 14 4 2007-04-16 15 4 2007-04-16 16 4 2007-04-16 17 4 2007-04-16 18 4 2007-04-16 19 4 2007-04-16 20 4 2007-04-16 21 4 2007-04-16 22 4 2007-04-16 23 4 2007-04-16 24 4 2007-04-16 3 4.1 2007-04-16 24.6 4.1 2007-04-16 0 4.2 2007-04-16 1 4.2 2007-04-16 2 4.2 2007-04-30 22 7.4 2007-04-30 23 7.4 2007-04-30 24 7.4 2007-04-30 24.7 7.4 2007-04-30 21 7.6 2007-04-30 19 7.7 2007-04-30 20 7.7 2007-04-30 12 7.8 2007-04-30 13 7.8 2007-04-30 14 7.8 2007-04-30 15 7.8 2007-04-30 16 7.8 2007-04-30 17 7.8 2007-04-30 18 7.8 2007-04-30 8 7.9 2007-04-30 9 7.9 2007-04-30 10 7.9 2007-04-30 11 7.9 2007-04-30 7 8.1 2007-04-30 6 8.5 2007-04-30 4 8.7 2007-04-30 5 8.7 2007-04-30 2 8.8 2007-04-30 3 8.8 2007-04-30 0 8.9 2007-04-30 1 8.9 2007-05-14 24.5 8.2 2007-05-14 24 8.3 2007-05-14 22 8.4 2007-05-14 23 8.4 2007-05-14 20 8.5 2007-05-14 21 8.5 2007-05-14 19 8.6 2007-05-14 18 8.7 2007-05-14 17 8.8 2007-05-14 16 8.9 2007-05-14 15 9.1 2007-05-14 14 9.3 2007-05-14 13.5 9.6 2007-05-14 13 10.4 2007-05-14 12.5 11.1 2007-05-14 12 11.4 2007-05-14 10.5 11.6 2007-05-14 11 11.6 2007-05-14 11.5 11.6 2007-05-14 10 11.7 2007-05-14 9.5 12 2007-05-14 9 12.4 2007-05-14 8.5 12.5 2007-05-14 8 12.6 2007-05-14 7.5 12.8 2007-05-14 7 13 2007-05-14 6 13.6 2007-05-14 5 13.9 2007-05-14 4 14 2007-05-14 2 14.1 2007-05-14 3 14.1 2007-05-14 0 14.2 2007-05-14 1 14.2 2007-05-29 23 9.2 2007-05-29 24 9.2 2007-05-29 24.3 9.2 2007-05-29 22 9.3 2007-05-29 20 9.4 2007-05-29 21 9.4 2007-05-29 19 9.5 2007-05-29 18 9.7 2007-05-29 17 10 2007-05-29 16 10.3 2007-05-29 15 11.1 2007-05-29 14 12.2 2007-05-29 13 12.8 2007-05-29 12 13.5 2007-05-29 11 13.6 2007-05-29 10 14.5 2007-05-29 9 15.7 2007-05-29 8 16.4 2007-05-29 7 16.8 2007-05-29 6 17.1 2007-05-29 5 17.2 2007-05-29 4 17.3 2007-05-29 2 17.5 2007-05-29 3 17.5 2007-05-29 1 17.6 2007-05-29 0 17.7 2007-06-11 25 9.4 2007-06-11 22 9.5 2007-06-11 23 9.5 2007-06-11 24 9.5 2007-06-11 20 9.6 2007-06-11 21 9.6 2007-06-11 19 9.9 2007-06-11 18 10.2 2007-06-11 17 10.5 2007-06-11 16 11 2007-06-11 15 11.1 2007-06-11 14 12.2 2007-06-11 13.5 14.4 2007-06-11 13 15 2007-06-11 12.5 15.2 2007-06-11 12 15.3 2007-06-11 11.5 15.5 2007-06-11 11 15.9 2007-06-11 10.5 16.7 2007-06-11 10 17.9 2007-06-11 9.5 18.4 2007-06-11 9 18.6 2007-06-11 8 18.7 2007-06-11 7 19 2007-06-11 6 19.6 2007-06-11 4 19.7 2007-06-11 5 19.7 2007-06-11 3 19.8 2007-06-11 2 20 2007-06-11 1 20.3 2007-06-11 0 20.4 2007-06-25 22 9.7 2007-06-25 23 9.7 2007-06-25 24 9.7 2007-06-25 21 9.9 2007-06-25 24.3 9.9 2007-06-25 20 10 2007-06-25 19 10.2 2007-06-25 18 10.6 2007-06-25 17 10.8 2007-06-25 16 11 2007-06-25 15 11.6 2007-06-25 14.5 12.2 2007-06-25 14 12.6 2007-06-25 13.5 13 2007-06-25 13 13.8 2007-06-25 12.5 14.7 2007-06-25 12 15.8 2007-06-25 11.5 16.9 2007-06-25 11 17.5 2007-06-25 10.5 17.8 2007-06-25 10 18 2007-06-25 9.5 18.3 2007-06-25 9 18.5 2007-06-25 8 19.2 2007-06-25 7.5 20.5 2007-06-25 7 21.1 2007-06-25 6.5 21.5 2007-06-25 6 21.8 2007-06-25 5 22.1 2007-06-25 4 22.4 2007-06-25 3 22.8 2007-06-25 2 23.1 2007-06-25 1 23.3 2007-06-25 0 23.5 2007-07-09 23 9.8 2007-07-09 24 9.8 2007-07-09 22 9.9 2007-07-09 21 10 2007-07-09 20 10.2 2007-07-09 19 10.4 2007-07-09 18 10.7 2007-07-09 17 11.1 2007-07-09 16 11.6 2007-07-09 15 12.6 2007-07-09 14 13.6 2007-07-09 13.5 14.5 2007-07-09 13 14.9 2007-07-09 12.5 15.4 2007-07-09 12 15.9 2007-07-09 11.5 16.4 2007-07-09 11 16.7 2007-07-09 10.5 16.9 2007-07-09 10 18.3 2007-07-09 9.5 19.4 2007-07-09 9 19.5 2007-07-09 8.5 20 2007-07-09 8 21.6 2007-07-09 7.5 22.1 2007-07-09 7 24.3 2007-07-09 6.5 24.6 2007-07-09 6 24.7 2007-07-09 5 24.8 2007-07-09 4 25.1 2007-07-09 3 25.5 2007-07-09 0 26 2007-07-09 1 26 2007-07-09 2 26 2007-07-23 24 10 2007-07-23 22 10.1 2007-07-23 23 10.1 2007-07-23 21 10.2 2007-07-23 20 10.4 2007-07-23 24.1 10.4 2007-07-23 19 10.7 2007-07-23 18 11 2007-07-23 17 11.2 2007-07-23 16 11.7 2007-07-23 15 12 2007-07-23 14 12.8 2007-07-23 13 13.3 2007-07-23 12 14.1 2007-07-23 11.5 15.4 2007-07-23 11 17.5 2007-07-23 10.5 19.7 2007-07-23 10 21.3 2007-07-23 9.5 21.8 2007-07-23 9 22.1 2007-07-23 8 22.8 2007-07-23 7 23.4 2007-07-23 6 23.5 2007-07-23 3 23.6 2007-07-23 4 23.6 2007-07-23 5 23.6 2007-07-23 2 23.7 2007-07-23 0 23.8 2007-07-23 1 23.8 2007-08-06 21 10.3 2007-08-06 22 10.3 2007-08-06 23 10.3 2007-08-06 20 10.4 2007-08-06 24 10.4 2007-08-06 19 10.6 2007-08-06 18 10.9 2007-08-06 17 11.2 2007-08-06 16 11.6 2007-08-06 15 12.1 2007-08-06 14 12.8 2007-08-06 13 13.7 2007-08-06 12 15.1 2007-08-06 11.5 16 2007-08-06 11 17.3 2007-08-06 10.5 18.6 2007-08-06 10 20.8 2007-08-06 9.5 22.5 2007-08-06 9 23.4 2007-08-06 8 24.4 2007-08-06 7 24.5 2007-08-06 6 24.6 2007-08-06 5 25.1 2007-08-06 0 25.2 2007-08-06 1 25.2 2007-08-06 2 25.2 2007-08-06 3 25.2 2007-08-06 4 25.2 2007-08-20 22 10.7 2007-08-20 23 10.7 2007-08-20 24 10.7 2007-08-20 21 10.8 2007-08-20 24.4 10.8 2007-08-20 20 11 2007-08-20 19 11.1 2007-08-20 18 11.5 2007-08-20 17 12 2007-08-20 16 12.3 2007-08-20 15 12.8 2007-08-20 14 13.9 2007-08-20 13.5 14.8 2007-08-20 13 15.5 2007-08-20 12.5 16.5 2007-08-20 12 17.6 2007-08-20 11.5 19 2007-08-20 11 19.4 2007-08-20 10.5 22.4 2007-08-20 9 22.7 2007-08-20 10 22.7 2007-08-20 0 22.8 2007-08-20 1 22.8 2007-08-20 2 22.8 2007-08-20 3 22.8 2007-08-20 4 22.8 2007-08-20 5 22.8 2007-08-20 6 22.8 2007-08-20 7 22.8 2007-08-20 8 22.8 2007-09-04 24 10.5 2007-09-04 24.9 10.5 2007-09-04 22 10.6 2007-09-04 23 10.6 2007-09-04 21 10.7 2007-09-04 20 10.8 2007-09-04 19 11 2007-09-04 18 11.2 2007-09-04 17 11.8 2007-09-04 16 12.5 2007-09-04 15 13.6 2007-09-04 14 15.9 2007-09-04 13 17.1 2007-09-04 12 19.4 2007-09-04 11 20.5 2007-09-04 10 21.6 2007-09-04 9 22.3 2007-09-04 8 22.8 2007-09-04 6 23.2 2007-09-04 7 23.2 2007-09-04 5 23.3 2007-09-04 4 23.4 2007-09-04 3 23.5 2007-09-04 2 23.9 2007-09-04 0 24 2007-09-04 1 24 2007-10-01 23 11.6 2007-10-01 24 11.6 2007-10-01 24.5 11.6 2007-10-01 22 11.7 2007-10-01 21 11.8 2007-10-01 20 11.9 2007-10-01 19 12.1 2007-10-01 18 12.8 2007-10-01 17 13.8 2007-10-01 16 14.5 2007-10-01 15 15.5 2007-10-01 14 17.1 2007-10-01 13.5 17.7 2007-10-01 13 18.4 2007-10-01 12.5 19.1 2007-10-01 10 19.3 2007-10-01 11 19.3 2007-10-01 11.5 19.3 2007-10-01 12 19.3 2007-10-01 0 19.4 2007-10-01 1 19.4 2007-10-01 2 19.4 2007-10-01 3 19.4 2007-10-01 4 19.4 2007-10-01 5 19.4 2007-10-01 6 19.4 2007-10-01 7 19.4 2007-10-01 8 19.4 2007-10-01 9 19.4 2007-10-29 24 11.8 2007-10-29 23 13.2 2007-10-29 22 14.1 2007-10-29 0 14.3 2007-10-29 1 14.3 2007-10-29 2 14.3 2007-10-29 3 14.3 2007-10-29 4 14.3 2007-10-29 5 14.3 2007-10-29 6 14.3 2007-10-29 7 14.3 2007-10-29 8 14.3 2007-10-29 9 14.3 2007-10-29 10 14.3 2007-10-29 11 14.3 2007-10-29 12 14.3 2007-10-29 13 14.3 2007-10-29 14 14.3 2007-10-29 15 14.3 2007-10-29 16 14.3 2007-10-29 17 14.3 2007-10-29 18 14.3 2007-10-29 19 14.3 2007-10-29 20 14.3 2007-10-29 21 14.3 2007-11-26 22 6.9 2007-11-26 23 6.9 2007-11-26 24 6.9 2007-11-26 20 7 2007-11-26 21 7 2007-11-26 0 7.1 2007-11-26 1 7.1 2007-11-26 2 7.1 2007-11-26 3 7.1 2007-11-26 4 7.1 2007-11-26 5 7.1 2007-11-26 6 7.1 2007-11-26 7 7.1 2007-11-26 9 7.1 2007-11-26 10 7.1 2007-11-26 11 7.1 2007-11-26 12 7.1 2007-11-26 13 7.1 2007-11-26 14 7.1 2007-11-26 15 7.1 2007-11-26 16 7.1 2007-11-26 17 7.1 2007-11-26 18 7.1 2007-11-26 19 7.1 2007-11-26 8 7.2 2008-02-13 0 0.1 2008-02-13 1 0.4 2008-02-13 2 0.6 2008-02-13 3 0.6 2008-02-13 4 0.6 2008-02-13 5 0.6 2008-02-13 6 0.6 2008-02-13 7 0.7 2008-02-13 8 0.7 2008-02-13 9 0.8 2008-02-13 10 0.8 2008-02-13 11 0.9 2008-02-13 12 0.9 2008-02-13 13 1 2008-02-13 14 1.1 2008-02-13 15 1.2 2008-02-13 16 1.3 2008-02-13 17 1.3 2008-02-13 18 1.5 2008-02-13 19 1.5 2008-02-13 20 1.7 2008-02-13 21 1.9 2008-02-13 22 2.2 2008-02-13 23 2.5 2008-02-13 24 2.9 2008-02-13 24.3 2.9 2008-04-14 7 2.9 2008-04-14 8 2.9 2008-04-14 9 2.9 2008-04-14 10 2.9 2008-04-14 11 2.9 2008-04-14 12 2.9 2008-04-14 13 2.9 2008-04-14 14 2.9 2008-04-14 15 2.9 2008-04-14 16 2.9 2008-04-14 17 2.9 2008-04-14 18 2.9 2008-04-14 19 2.9 2008-04-14 20 2.9 2008-04-14 21 2.9 2008-04-14 2 3 2008-04-14 3 3 2008-04-14 5 3 2008-04-14 6 3 2008-04-14 22 3 2008-04-14 23 3 2008-04-14 24 3 2008-04-14 24.7 3 2008-04-14 1 3.1 2008-04-14 4 3.1 2008-04-14 0 3.2 2008-04-28 23 5.9 2008-04-28 24 5.9 2008-04-28 25 5.9 2008-04-28 22 6 2008-04-28 21 6.2 2008-04-28 20 6.5 2008-04-28 19 6.6 2008-04-28 18 6.7 2008-04-28 10 6.8 2008-04-28 11 6.8 2008-04-28 12 6.8 2008-04-28 13 6.8 2008-04-28 14 6.8 2008-04-28 15 6.8 2008-04-28 16 6.8 2008-04-28 17 6.8 2008-04-28 5 6.9 2008-04-28 6 6.9 2008-04-28 7 6.9 2008-04-28 8 6.9 2008-04-28 9 6.9 2008-04-28 4 7 2008-04-28 3 7.1 2008-04-28 2 7.2 2008-04-28 1 7.7 2008-04-28 0 7.8 2008-05-12 24.9 8.9 2008-05-12 23 9 2008-05-12 24 9 2008-05-12 21 9.1 2008-05-12 22 9.1 2008-05-12 17 9.2 2008-05-12 18 9.2 2008-05-12 19 9.2 2008-05-12 20 9.2 2008-05-12 13 9.3 2008-05-12 14 9.3 2008-05-12 15 9.3 2008-05-12 16 9.3 2008-05-12 11 9.4 2008-05-12 12 9.4 2008-05-12 9 9.5 2008-05-12 10 9.5 2008-05-12 6 9.6 2008-05-12 7 9.6 2008-05-12 8 9.6 2008-05-12 5 9.7 2008-05-12 4 9.8 2008-05-12 2 9.9 2008-05-12 3 9.9 2008-05-12 1 10 2008-05-12 0 10.6 2008-05-28 24.6 9.8 2008-05-28 22 9.9 2008-05-28 23 9.9 2008-05-28 24 9.9 2008-05-28 20 10 2008-05-28 21 10 2008-05-28 19 10.2 2008-05-28 18 10.4 2008-05-28 17 10.7 2008-05-28 16 11.3 2008-05-28 15 11.7 2008-05-28 14 12.1 2008-05-28 13 12.3 2008-05-28 12 12.5 2008-05-28 11 12.9 2008-05-28 10 13.2 2008-05-28 9 13.3 2008-05-28 7 13.5 2008-05-28 8 13.5 2008-05-28 6 13.6 2008-05-28 4 13.7 2008-05-28 5 13.7 2008-05-28 3 13.8 2008-05-28 2 13.9 2008-05-28 1 14.7 2008-05-28 0 14.9 2008-06-09 24 10.8 2008-06-09 25 10.9 2008-06-09 23 11.1 2008-06-09 22 11.3 2008-06-09 21 11.5 2008-06-09 20 12.1 2008-06-09 19 12.3 2008-06-09 18 12.4 2008-06-09 17 13.2 2008-06-09 16 14 2008-06-09 15 14.4 2008-06-09 14 15 2008-06-09 13 15.8 2008-06-09 12 15.9 2008-06-09 11 16 2008-06-09 10 16.1 2008-06-09 9 16.5 2008-06-09 7 16.7 2008-06-09 8 16.7 2008-06-09 6 16.8 2008-06-09 5 16.9 2008-06-09 4 17.2 2008-06-09 3 17.4 2008-06-09 2 17.8 2008-06-09 1 17.9 2008-06-09 0 18 2008-06-23 23 11.3 2008-06-23 24 11.3 2008-06-23 24.5 11.3 2008-06-23 22 11.4 2008-06-23 21 11.5 2008-06-23 20 11.6 2008-06-23 19 11.9 2008-06-23 18 12.3 2008-06-23 17 12.9 2008-06-23 16 13.4 2008-06-23 15 13.7 2008-06-23 14 14 2008-06-23 13 14.6 2008-06-23 12 15 2008-06-23 11.5 15.6 2008-06-23 11 16.6 2008-06-23 10.5 17.4 2008-06-23 10 18 2008-06-23 9.5 18.3 2008-06-23 9 19.1 2008-06-23 8.5 19.5 2008-06-23 8 20.4 2008-06-23 7 20.5 2008-06-23 5 20.6 2008-06-23 6 20.6 2008-06-23 4 20.7 2008-06-23 3 20.8 2008-06-23 2 21 2008-06-23 1 21.3 2008-06-23 0 22.3 2008-07-07 23 12.3 2008-07-07 24 12.3 2008-07-07 22 12.4 2008-07-07 21 12.5 2008-07-07 20 12.6 2008-07-07 24.8 12.6 2008-07-07 19 12.8 2008-07-07 18 12.9 2008-07-07 17 13.2 2008-07-07 16 13.5 2008-07-07 15 13.9 2008-07-07 14 14.4 2008-07-07 13 15.1 2008-07-07 12.5 15.9 2008-07-07 12 16.6 2008-07-07 11.5 17.8 2008-07-07 11 18.8 2008-07-07 10.5 19.3 2008-07-07 10 19.6 2008-07-07 9.5 20.1 2008-07-07 9 20.4 2008-07-07 8 20.8 2008-07-07 7 21.8 2008-07-07 6 22.9 2008-07-07 3 23.2 2008-07-07 4 23.2 2008-07-07 5 23.2 2008-07-07 2 23.5 2008-07-07 1 23.6 2008-07-07 0 23.7 2008-07-21 24 12.1 2008-07-21 23 12.2 2008-07-21 25 12.2 2008-07-21 22 12.3 2008-07-21 21 12.5 2008-07-21 20 12.7 2008-07-21 19 13 2008-07-21 18 13.3 2008-07-21 17 13.5 2008-07-21 16 13.7 2008-07-21 15 14.2 2008-07-21 14 14.6 2008-07-21 13 15.2 2008-07-21 12.5 15.7 2008-07-21 12 16.8 2008-07-21 11.5 18.1 2008-07-21 11 18.2 2008-07-21 10.5 18.7 2008-07-21 10 20.4 2008-07-21 9.5 20.8 2008-07-21 9 21.6 2008-07-21 8.5 22 2008-07-21 8 22.9 2008-07-21 7.5 23.8 2008-07-21 7 24.5 2008-07-21 6 24.6 2008-07-21 5 24.8 2008-07-21 4 25.2 2008-07-21 3 25.3 2008-07-21 0 25.4 2008-07-21 1 25.4 2008-07-21 2 25.4 2008-08-04 23 12.8 2008-08-04 24 12.8 2008-08-04 24.9 12.8 2008-08-04 22 12.9 2008-08-04 21 13 2008-08-04 20 13.1 2008-08-04 19 13.2 2008-08-04 18 13.5 2008-08-04 17 13.8 2008-08-04 16 14.1 2008-08-04 15 14.4 2008-08-04 14 15.2 2008-08-04 13 16.4 2008-08-04 12 17.7 2008-08-04 11 18.8 2008-08-04 10 20.2 2008-08-04 9.5 22.5 2008-08-04 9 22.7 2008-08-04 8.5 22.9 2008-08-04 8 23.8 2008-08-04 7.5 24.8 2008-08-04 7 25 2008-08-04 6.5 25.1 2008-08-04 3 25.2 2008-08-04 5 25.2 2008-08-04 6 25.2 2008-08-04 0 25.3 2008-08-04 1 25.3 2008-08-04 2 25.3 2008-08-04 4 25.3 2008-08-18 24 12.6 2008-08-18 21 12.7 2008-08-18 22 12.7 2008-08-18 23 12.7 2008-08-18 20 12.8 2008-08-18 24.2 13 2008-08-18 19 13.1 2008-08-18 18 13.3 2008-08-18 17 13.8 2008-08-18 16 14.6 2008-08-18 15 15.2 2008-08-18 14 15.9 2008-08-18 13 16.4 2008-08-18 12 17.6 2008-08-18 11 18.7 2008-08-18 10.5 20.8 2008-08-18 10 23.7 2008-08-18 9.5 24 2008-08-18 9 24.1 2008-08-18 7 24.2 2008-08-18 8 24.2 2008-08-18 4 24.3 2008-08-18 5 24.3 2008-08-18 6 24.3 2008-08-18 2 24.4 2008-08-18 3 24.4 2008-08-18 0 24.5 2008-08-18 1 24.5 2008-09-05 24.5 12.4 2008-09-05 24 12.5 2008-09-05 22 12.6 2008-09-05 23 12.6 2008-09-05 21 12.7 2008-09-05 20 12.8 2008-09-05 19 13.1 2008-09-05 18 13.2 2008-09-05 17 13.5 2008-09-05 16 13.9 2008-09-05 15 14.7 2008-09-05 14 16 2008-09-05 13 16.6 2008-09-05 12.5 17.6 2008-09-05 12 18.5 2008-09-05 11.5 19.2 2008-09-05 11 22.2 2008-09-05 10 22.4 2008-09-05 10.5 22.4 2008-09-05 7 22.5 2008-09-05 8 22.5 2008-09-05 9 22.5 2008-09-05 4 22.6 2008-09-05 5 22.6 2008-09-05 6 22.6 2008-09-05 0 22.7 2008-09-05 1 22.7 2008-09-05 2 22.7 2008-09-05 3 22.7 2008-09-29 23 12.6 2008-09-29 24 12.6 2008-09-29 22 12.7 2008-09-29 21 12.8 2008-09-29 19 13.1 2008-09-29 20 13.1 2008-09-29 18 13.2 2008-09-29 17 13.9 2008-09-29 16 14.2 2008-09-29 15 14.6 2008-09-29 14.5 15.5 2008-09-29 14 16.5 2008-09-29 13.5 18.1 2008-09-29 13 18.8 2008-09-29 12.5 19 2008-09-29 12 19.1 2008-09-29 11 19.9 2008-09-29 0 20.3 2008-09-29 1 20.3 2008-09-29 2 20.3 2008-09-29 3 20.3 2008-09-29 4 20.3 2008-09-29 5 20.3 2008-09-29 6 20.3 2008-09-29 7 20.3 2008-09-29 8 20.3 2008-09-29 9 20.3 2008-09-29 10 20.3 2008-10-29 22 11.9 2008-10-29 23 11.9 2008-10-29 24 11.9 2008-10-29 24.6 11.9 2008-10-29 19 12 2008-10-29 20 12 2008-10-29 21 12 2008-10-29 3 12.1 2008-10-29 4 12.1 2008-10-29 5 12.1 2008-10-29 6 12.1 2008-10-29 7 12.1 2008-10-29 8 12.1 2008-10-29 9 12.1 2008-10-29 10 12.1 2008-10-29 11 12.1 2008-10-29 12 12.1 2008-10-29 13 12.1 2008-10-29 14 12.1 2008-10-29 15 12.1 2008-10-29 16 12.1 2008-10-29 17 12.1 2008-10-29 18 12.1 2008-10-29 2 12.2 2008-10-29 1 12.3 2008-10-29 0 12.4 2009-01-21 0 0.1 2009-01-21 1 0.7 2009-01-21 2 0.7 2009-01-21 3 0.7 2009-01-21 4 0.7 2009-01-21 5 0.8 2009-01-21 6 0.8 2009-01-21 7 0.8 2009-01-21 8 0.9 2009-01-21 9 0.9 2009-01-21 10 1 2009-01-21 11 1 2009-01-21 12 1.1 2009-01-21 13 1.2 2009-01-21 14 1.3 2009-01-21 15 1.5 2009-01-21 16 1.6 2009-01-21 17 1.6 2009-01-21 18 1.8 2009-01-21 19 1.8 2009-01-21 20 2 2009-01-21 21 2.3 2009-01-21 22 2.7 2009-01-21 23 3.2 2009-01-21 24 3.3 2009-01-21 24.2 3.4 2009-04-15 13 4.8 2009-04-15 14 4.8 2009-04-15 15 4.8 2009-04-15 16 4.8 2009-04-15 17 4.8 2009-04-15 18 4.8 2009-04-15 19 4.8 2009-04-15 20 4.8 2009-04-15 21 4.8 2009-04-15 22 4.8 2009-04-15 23 4.8 2009-04-15 24 4.8 2009-04-15 24.7 4.8 2009-04-15 7 4.9 2009-04-15 8 4.9 2009-04-15 9 4.9 2009-04-15 10 4.9 2009-04-15 11 4.9 2009-04-15 12 4.9 2009-04-15 2 5 2009-04-15 3 5 2009-04-15 4 5 2009-04-15 5 5 2009-04-15 6 5 2009-04-15 0 5.1 2009-04-15 1 5.1 2009-04-27 23 7.1 2009-04-27 21 7.2 2009-04-27 22 7.2 2009-04-27 20 7.3 2009-04-27 15 7.4 2009-04-27 16 7.4 2009-04-27 17 7.4 2009-04-27 18 7.4 2009-04-27 19 7.4 2009-04-27 24 7.4 2009-04-27 24.2 7.4 2009-04-27 10 7.5 2009-04-27 12 7.5 2009-04-27 13 7.5 2009-04-27 14 7.5 2009-04-27 3 7.6 2009-04-27 4 7.6 2009-04-27 5 7.6 2009-04-27 6 7.6 2009-04-27 7 7.6 2009-04-27 8 7.6 2009-04-27 9 7.6 2009-04-27 11 7.6 2009-04-27 0 7.7 2009-04-27 1 7.7 2009-04-27 2 7.7 2009-05-11 22 8.5 2009-05-11 23 8.5 2009-05-11 21 8.6 2009-05-11 24 8.6 2009-05-11 20 8.8 2009-05-11 24.5 8.9 2009-05-11 19 9 2009-05-11 18 9.3 2009-05-11 17 9.7 2009-05-11 16 9.9 2009-05-11 15 10.2 2009-05-11 14 10.5 2009-05-11 13 10.7 2009-05-11 12 10.8 2009-05-11 11 11.1 2009-05-11 10 11.2 2009-05-11 8 11.3 2009-05-11 9 11.3 2009-05-11 5 11.4 2009-05-11 6 11.4 2009-05-11 7 11.4 2009-05-11 3 11.5 2009-05-11 4 11.5 2009-05-11 2 11.7 2009-05-11 1 11.8 2009-05-11 0 13.1 2009-05-28 22 11 2009-05-28 23 11 2009-05-28 24 11 2009-05-28 24.6 11 2009-05-28 21 11.1 2009-05-28 20 11.4 2009-05-28 19 11.5 2009-05-28 18 12.7 2009-05-28 17 13.8 2009-05-28 16 14.2 2009-05-28 14 14.4 2009-05-28 15 14.4 2009-05-28 9 14.5 2009-05-28 10 14.5 2009-05-28 11 14.5 2009-05-28 12 14.5 2009-05-28 13 14.5 2009-05-28 3 14.6 2009-05-28 4 14.6 2009-05-28 5 14.6 2009-05-28 6 14.6 2009-05-28 7 14.6 2009-05-28 8 14.6 2009-05-28 0 14.7 2009-05-28 1 14.7 2009-05-28 2 14.7 2009-06-09 22 11.6 2009-06-09 23 11.6 2009-06-09 24.5 11.6 2009-06-09 21 11.7 2009-06-09 24 11.7 2009-06-09 20 11.8 2009-06-09 18 11.9 2009-06-09 19 11.9 2009-06-09 17 12.1 2009-06-09 16 12.2 2009-06-09 15 12.6 2009-06-09 14 13 2009-06-09 13 13.9 2009-06-09 12 16 2009-06-09 11 16.2 2009-06-09 10 16.3 2009-06-09 6 16.4 2009-06-09 7 16.4 2009-06-09 8 16.4 2009-06-09 9 16.4 2009-06-09 3 16.5 2009-06-09 4 16.5 2009-06-09 5 16.5 2009-06-09 2 16.6 2009-06-09 1 16.8 2009-06-09 0 17.6 2009-06-23 22 11.8 2009-06-23 23 11.8 2009-06-23 19 11.9 2009-06-23 20 11.9 2009-06-23 21 11.9 2009-06-23 18 12 2009-06-23 24 12 2009-06-23 17 12.1 2009-06-23 24.3 12.1 2009-06-23 16 12.4 2009-06-23 15 12.8 2009-06-23 14 13.1 2009-06-23 13 13.7 2009-06-23 12.5 14.4 2009-06-23 12 14.9 2009-06-23 11.5 15.6 2009-06-23 11 16 2009-06-23 10 16.4 2009-06-23 9 16.9 2009-06-23 8.5 17.8 2009-06-23 8 18.2 2009-06-23 7 18.7 2009-06-23 6 19.5 2009-06-23 5.5 20.6 2009-06-23 5 20.9 2009-06-23 4 21.4 2009-06-23 3 21.8 2009-06-23 2 22.7 2009-06-23 1 23.7 2009-06-23 0 24.7 2009-07-06 22 11.8 2009-07-06 23 11.8 2009-07-06 21 11.9 2009-07-06 24 11.9 2009-07-06 20 12 2009-07-06 24.5 12 2009-07-06 19 12.1 2009-07-06 18 12.4 2009-07-06 17 12.5 2009-07-06 16 12.8 2009-07-06 15 13 2009-07-06 14 13.4 2009-07-06 13 13.6 2009-07-06 12 13.9 2009-07-06 11.5 14.2 2009-07-06 11 15.1 2009-07-06 10.5 15.7 2009-07-06 10 16.9 2009-07-06 9.5 18.8 2009-07-06 9 19.3 2009-07-06 8.5 19.7 2009-07-06 8 20.1 2009-07-06 7 20.5 2009-07-06 6 20.9 2009-07-06 5 21.1 2009-07-06 4 21.2 2009-07-06 3 21.6 2009-07-06 2 21.8 2009-07-06 1 22.2 2009-07-06 0 22.6 2009-07-20 21 12.2 2009-07-20 22 12.2 2009-07-20 23 12.3 2009-07-20 20 12.4 2009-07-20 24 12.4 2009-07-20 19 12.5 2009-07-20 18 12.7 2009-07-20 17 12.9 2009-07-20 24.5 13.2 2009-07-20 16 13.3 2009-07-20 15 13.6 2009-07-20 14 14 2009-07-20 13 14.4 2009-07-20 12 15.4 2009-07-20 11 16.8 2009-07-20 10.5 17.6 2009-07-20 10 18.5 2009-07-20 9.5 19.7 2009-07-20 9 20.3 2009-07-20 8 20.4 2009-07-20 7 20.5 2009-07-20 5 20.6 2009-07-20 6 20.6 2009-07-20 4 20.7 2009-07-20 3 20.8 2009-07-20 2 21 2009-07-20 1 21.1 2009-07-20 0 21.8 2009-08-05 21 12.8 2009-08-05 22 12.8 2009-08-05 20 12.9 2009-08-05 23 12.9 2009-08-05 19 13 2009-08-05 18 13.1 2009-08-05 24.2 13.1 2009-08-05 24 13.2 2009-08-05 17 13.3 2009-08-05 16 13.8 2009-08-05 15 14.1 2009-08-05 14 14.6 2009-08-05 13 15.3 2009-08-05 12.5 15.8 2009-08-05 12 17.3 2009-08-05 11.5 18.4 2009-08-05 11 20.4 2009-08-05 10 21.2 2009-08-05 9 21.8 2009-08-05 8 21.9 2009-08-05 7 22.1 2009-08-05 6 22.2 2009-08-05 5 22.5 2009-08-05 4 22.7 2009-08-05 3 22.8 2009-08-05 2 22.9 2009-08-05 1 23 2009-08-05 0 23.2 2009-08-19 19 12.9 2009-08-19 20 12.9 2009-08-19 18 13 2009-08-19 21 13 2009-08-19 22 13 2009-08-19 17 13.2 2009-08-19 23 13.2 2009-08-19 16 13.3 2009-08-19 24 13.7 2009-08-19 15 13.8 2009-08-19 24.5 14.1 2009-08-19 14 14.7 2009-08-19 13.5 15.5 2009-08-19 13 16.2 2009-08-19 12.5 16.7 2009-08-19 12 17.4 2009-08-19 11.5 17.9 2009-08-19 11 18.4 2009-08-19 10.5 18.7 2009-08-19 10 19.5 2009-08-19 9.5 20.6 2009-08-19 9 21.5 2009-08-19 8.5 22.4 2009-08-19 8 23.2 2009-08-19 7 23.5 2009-08-19 3 23.6 2009-08-19 4 23.6 2009-08-19 5 23.6 2009-08-19 6 23.6 2009-08-19 0 23.7 2009-08-19 1 23.7 2009-08-19 2 23.7 2009-09-02 23 12.5 2009-09-02 22 12.6 2009-09-02 21 12.7 2009-09-02 23.5 12.8 2009-09-02 20 12.9 2009-09-02 19 13.1 2009-09-02 17 13.5 2009-09-02 18 13.5 2009-09-02 16 13.9 2009-09-02 15 14.3 2009-09-02 14 14.9 2009-09-02 13.5 16 2009-09-02 13 16.2 2009-09-02 12.5 17.3 2009-09-02 12 20.1 2009-09-02 11 20.3 2009-09-02 9 20.4 2009-09-02 10 20.4 2009-09-02 5 20.5 2009-09-02 6 20.5 2009-09-02 7 20.5 2009-09-02 8 20.5 2009-09-02 3 20.6 2009-09-02 4 20.6 2009-09-02 2 20.7 2009-09-02 1 20.8 2009-09-02 0 21.5 2009-09-30 23 12.8 2009-09-30 22 12.9 2009-09-30 21 13 2009-09-30 19 13.2 2009-09-30 20 13.2 2009-09-30 18 13.5 2009-09-30 17 13.6 2009-09-30 16 13.9 2009-09-30 15.5 14.2 2009-09-30 15 15.5 2009-09-30 14.5 16.5 2009-09-30 14 16.8 2009-09-30 13.5 17.5 2009-09-30 3 18.1 2009-09-30 4 18.1 2009-09-30 5 18.1 2009-09-30 6 18.1 2009-09-30 7 18.1 2009-09-30 8 18.1 2009-09-30 9 18.1 2009-09-30 10 18.1 2009-09-30 11 18.1 2009-09-30 12 18.1 2009-09-30 12.5 18.1 2009-09-30 13 18.1 2009-09-30 0 18.2 2009-09-30 1 18.2 2009-09-30 2 18.2 2009-10-28 12 11.4 2009-10-28 14 11.4 2009-10-28 15 11.4 2009-10-28 16 11.4 2009-10-28 0 11.5 2009-10-28 1 11.5 2009-10-28 2 11.5 2009-10-28 3 11.5 2009-10-28 4 11.5 2009-10-28 5 11.5 2009-10-28 6 11.5 2009-10-28 7 11.5 2009-10-28 8 11.5 2009-10-28 9 11.5 2009-10-28 10 11.5 2009-10-28 11 11.5 2009-10-28 13 11.5 2009-10-28 17 11.5 2009-10-28 18 11.5 2009-10-28 19 11.5 2009-10-28 20 11.5 2009-10-28 21 11.5 2009-10-28 22 11.5 2009-10-28 23 11.5 2009-10-28 24 11.5 2009-10-28 24.5 11.7 2009-12-03 0 8.5 2009-12-03 1 8.5 2009-12-03 2 8.5 2009-12-03 3 8.5 2009-12-03 4 8.5 2009-12-03 5 8.5 2009-12-03 6 8.5 2009-12-03 7 8.5 2009-12-03 8 8.5 2009-12-03 9 8.5 2009-12-03 10 8.5 2009-12-03 11 8.5 2009-12-03 12 8.5 2009-12-03 13 8.5 2009-12-03 14 8.5 2009-12-03 15 8.5 2009-12-03 16 8.5 2009-12-03 17 8.5 2009-12-03 18 8.5 2009-12-03 19 8.5 2009-12-03 20 8.5 2009-12-03 21 8.5 2009-12-03 22 8.5 2009-12-03 23 8.5 2009-12-03 24 8.5 2010-02-01 0 1.8 2010-02-01 1 2 2010-02-01 2 2 2010-02-01 3 2 2010-02-01 4 2 2010-02-01 5 2 2010-02-01 6 2 2010-02-01 7 2 2010-02-01 8 2 2010-02-01 9 2 2010-02-01 10 2 2010-02-01 11 2 2010-02-01 12 2 2010-02-01 13 2 2010-02-01 14 2 2010-02-01 15 2.1 2010-02-01 16 2.2 2010-02-01 17 2.4 2010-02-01 18 2.5 2010-02-01 19 2.7 2010-02-01 20 2.7 2010-02-01 21 2.8 2010-02-01 22 3.1 2010-02-01 23 3.3 2010-02-01 24 3.7 2010-03-29 24 4.2 2010-03-29 24.3 4.2 2010-03-29 1 4.4 2010-03-29 2 4.4 2010-03-29 3 4.4 2010-03-29 4 4.4 2010-03-29 5 4.4 2010-03-29 6 4.4 2010-03-29 7 4.4 2010-03-29 8 4.4 2010-03-29 9 4.4 2010-03-29 10 4.4 2010-03-29 11 4.4 2010-03-29 12 4.4 2010-03-29 13 4.4 2010-03-29 14 4.4 2010-03-29 15 4.4 2010-03-29 16 4.4 2010-03-29 17 4.4 2010-03-29 18 4.4 2010-03-29 19 4.4 2010-03-29 20 4.4 2010-03-29 21 4.4 2010-03-29 22 4.4 2010-03-29 23 4.4 2010-03-29 0 4.5 2010-04-13 21 6 2010-04-13 22 6 2010-04-13 23 6 2010-04-13 24 6 2010-04-13 17 6.1 2010-04-13 18 6.1 2010-04-13 19 6.1 2010-04-13 20 6.1 2010-04-13 24.5 6.1 2010-04-13 15 6.2 2010-04-13 16 6.2 2010-04-13 14 6.4 2010-04-13 12 6.6 2010-04-13 13 6.6 2010-04-13 10 6.7 2010-04-13 11 6.7 2010-04-13 3 6.8 2010-04-13 4 6.8 2010-04-13 5 6.8 2010-04-13 6 6.8 2010-04-13 7 6.8 2010-04-13 8 6.8 2010-04-13 9 6.8 2010-04-13 0 6.9 2010-04-13 1 6.9 2010-04-13 2 6.9 2010-04-26 21 8.8 2010-04-26 22 8.8 2010-04-26 23 8.8 2010-04-26 20 8.9 2010-04-26 24 8.9 2010-04-26 15 9 2010-04-26 16 9 2010-04-26 17 9 2010-04-26 18 9 2010-04-26 19 9 2010-04-26 9 9.1 2010-04-26 10 9.1 2010-04-26 11 9.1 2010-04-26 12 9.1 2010-04-26 13 9.1 2010-04-26 14 9.1 2010-04-26 8 9.3 2010-04-26 7 9.6 2010-04-26 3 9.7 2010-04-26 4 9.7 2010-04-26 5 9.7 2010-04-26 6 9.7 2010-04-26 0 9.8 2010-04-26 1 9.8 2010-04-26 2 9.8 2010-05-10 22 11.4 2010-05-10 23 11.4 2010-05-10 24 11.4 2010-05-10 24.5 11.4 2010-05-10 21 11.5 2010-05-10 16 11.6 2010-05-10 17 11.6 2010-05-10 18 11.6 2010-05-10 19 11.6 2010-05-10 20 11.6 2010-05-10 12 11.7 2010-05-10 13 11.7 2010-05-10 14 11.7 2010-05-10 15 11.7 2010-05-10 9 11.8 2010-05-10 10 11.8 2010-05-10 11 11.8 2010-05-10 8 11.9 2010-05-10 3 12 2010-05-10 4 12 2010-05-10 5 12 2010-05-10 6 12 2010-05-10 7 12 2010-05-10 0 12.1 2010-05-10 1 12.1 2010-05-10 2 12.1 2010-05-24 20 11.6 2010-05-24 21 11.6 2010-05-24 22 11.6 2010-05-24 23 11.6 2010-05-24 24 11.6 2010-05-24 24.1 11.6 2010-05-24 16 11.7 2010-05-24 17 11.7 2010-05-24 18 11.7 2010-05-24 19 11.7 2010-05-24 15 11.8 2010-05-24 14 11.9 2010-05-24 13 12.1 2010-05-24 12 12.5 2010-05-24 11 12.6 2010-05-24 10 13 2010-05-24 9 13.4 2010-05-24 8 13.9 2010-05-24 7 14.2 2010-05-24 6 14.4 2010-05-24 5 14.8 2010-05-24 4 15.3 2010-05-24 3 15.9 2010-05-24 2 17.5 2010-05-24 1 17.7 2010-05-24 0 20.3 2010-06-07 19 11.6 2010-06-07 20 11.6 2010-06-07 21 11.6 2010-06-07 22 11.6 2010-06-07 23 11.6 2010-06-07 24 11.6 2010-06-07 24.5 11.6 2010-06-07 18 11.8 2010-06-07 17 11.9 2010-06-07 16 12.1 2010-06-07 15 12.2 2010-06-07 14 12.4 2010-06-07 13 12.5 2010-06-07 11 12.8 2010-06-07 12 12.8 2010-06-07 10 13.3 2010-06-07 9 13.7 2010-06-07 8 14.5 2010-06-07 7 14.8 2010-06-07 6 19.3 2010-06-07 5 20 2010-06-07 4 20.1 2010-06-07 3 20.3 2010-06-07 2 20.5 2010-06-07 0 20.6 2010-06-07 1 20.6 2010-06-21 21 11.9 2010-06-21 22 11.9 2010-06-21 23 11.9 2010-06-21 24 11.9 2010-06-21 24.5 11.9 2010-06-21 19 12 2010-06-21 20 12 2010-06-21 18 12.2 2010-06-21 17 12.3 2010-06-21 16 12.4 2010-06-21 15 12.5 2010-06-21 14 12.7 2010-06-21 13 13 2010-06-21 12 13.2 2010-06-21 11 13.6 2010-06-21 10.5 14.2 2010-06-21 10 14.7 2010-06-21 9.5 15.8 2010-06-21 9 17.8 2010-06-21 8.5 18 2010-06-21 8 18.6 2010-06-21 7.5 20 2010-06-21 7 20.5 2010-06-21 6.5 20.7 2010-06-21 6 21 2010-06-21 5 21.7 2010-06-21 4 22 2010-06-21 2 22.1 2010-06-21 3 22.1 2010-06-21 0 22.3 2010-06-21 1 22.3 2010-07-05 21 11.8 2010-07-05 22 11.8 2010-07-05 23 11.8 2010-07-05 20 11.9 2010-07-05 24 11.9 2010-07-05 24.5 11.9 2010-07-05 18 12 2010-07-05 19 12 2010-07-05 17 12.2 2010-07-05 15 12.3 2010-07-05 16 12.3 2010-07-05 14 12.5 2010-07-05 13 12.8 2010-07-05 12 13.2 2010-07-05 11 13.9 2010-07-05 10 16.3 2010-07-05 9.5 18 2010-07-05 9 19 2010-07-05 8.5 19.6 2010-07-05 8 22.6 2010-07-05 7.5 23.4 2010-07-05 7 23.6 2010-07-05 5 23.9 2010-07-05 5.5 23.9 2010-07-05 6 23.9 2010-07-05 6.5 23.9 2010-07-05 4 24 2010-07-05 2 24.1 2010-07-05 3 24.1 2010-07-05 0 24.2 2010-07-05 1 24.2 2010-07-19 24 11.8 2010-07-19 24.5 11.8 2010-07-19 23 12 2010-07-19 21 12.1 2010-07-19 22 12.1 2010-07-19 19 12.2 2010-07-19 20 12.2 2010-07-19 18 12.4 2010-07-19 17 12.5 2010-07-19 16 12.6 2010-07-19 15 12.8 2010-07-19 14 13.7 2010-07-19 13 14.5 2010-07-19 12 15 2010-07-19 11 16 2010-07-19 10 17 2010-07-19 9.5 18.5 2010-07-19 9 20.2 2010-07-19 8.5 25.3 2010-07-19 7 25.4 2010-07-19 7.5 25.4 2010-07-19 8 25.4 2010-07-19 6 25.5 2010-07-19 3 25.7 2010-07-19 4 25.7 2010-07-19 5 25.7 2010-07-19 2 26 2010-07-19 1 26.3 2010-07-19 0 26.4 2010-08-03 23 11.7 2010-08-03 24 11.7 2010-08-03 24.6 11.7 2010-08-03 21 11.8 2010-08-03 22 11.8 2010-08-03 20 11.9 2010-08-03 19 12 2010-08-03 18 12.2 2010-08-03 17 12.4 2010-08-03 16 12.7 2010-08-03 15 13 2010-08-03 14 13.6 2010-08-03 13 14.3 2010-08-03 12 15.7 2010-08-03 11.5 16.2 2010-08-03 11 16.7 2010-08-03 10.5 18 2010-08-03 10 19.7 2010-08-03 9.5 21.6 2010-08-03 9 22.3 2010-08-03 8.5 23.7 2010-08-03 8 24.6 2010-08-03 7.5 25.1 2010-08-03 7 25.6 2010-08-03 6.5 25.7 2010-08-03 5 25.8 2010-08-03 6 25.8 2010-08-03 4 25.9 2010-08-03 2 26 2010-08-03 3 26 2010-08-03 1 26.2 2010-08-03 0 26.9 2010-08-16 23 11.9 2010-08-16 24 11.9 2010-08-16 22 12 2010-08-16 24.5 12 2010-08-16 21 12.1 2010-08-16 20 12.3 2010-08-16 19 12.4 2010-08-16 18 12.6 2010-08-16 17 12.9 2010-08-16 16 13.3 2010-08-16 15 13.6 2010-08-16 14 14.1 2010-08-16 13.5 14.6 2010-08-16 13 15.3 2010-08-16 12.5 15.8 2010-08-16 12 16.4 2010-08-16 11.5 17.7 2010-08-16 11 24 2010-08-16 10 25 2010-08-16 10.5 25 2010-08-16 0 25.1 2010-08-16 1 25.1 2010-08-16 2 25.1 2010-08-16 3 25.1 2010-08-16 4 25.1 2010-08-16 5 25.1 2010-08-16 6 25.1 2010-08-16 7 25.1 2010-08-16 8 25.1 2010-08-16 9 25.1 2010-08-16 9.5 25.1 2010-08-30 23 11.8 2010-08-30 24 11.8 2010-08-30 24.9 11.8 2010-08-30 22 11.9 2010-08-30 20 12 2010-08-30 21 12 2010-08-30 19 12.1 2010-08-30 18 12.3 2010-08-30 17 12.5 2010-08-30 16 12.8 2010-08-30 15 13 2010-08-30 14 13.5 2010-08-30 13 13.9 2010-08-30 12.5 14.5 2010-08-30 12 16.8 2010-08-30 11.5 18.6 2010-08-30 11 21.7 2010-08-30 10.5 22.5 2010-08-30 10 23.6 2010-08-30 9.5 23.7 2010-08-30 9 23.8 2010-08-30 7 24.2 2010-08-30 8 24.2 2010-08-30 0 24.3 2010-08-30 1 24.3 2010-08-30 2 24.3 2010-08-30 3 24.3 2010-08-30 4 24.3 2010-08-30 5 24.3 2010-08-30 6 24.3 2010-10-05 24 12.2 2010-10-05 24.5 12.2 2010-10-05 22 12.3 2010-10-05 23 12.3 2010-10-05 20 12.4 2010-10-05 21 12.4 2010-10-05 19 12.5 2010-10-05 18 13.5 2010-10-05 17 15.7 2010-10-05 16.5 16.2 2010-10-05 16 16.5 2010-10-05 15.5 16.7 2010-10-05 2 16.9 2010-10-05 3 16.9 2010-10-05 4 16.9 2010-10-05 5 16.9 2010-10-05 6 16.9 2010-10-05 7 16.9 2010-10-05 8 16.9 2010-10-05 9 16.9 2010-10-05 10 16.9 2010-10-05 11 16.9 2010-10-05 12 16.9 2010-10-05 13 16.9 2010-10-05 13.5 16.9 2010-10-05 14 16.9 2010-10-05 14.5 16.9 2010-10-05 15 16.9 2010-10-05 1 17 2010-10-05 0 17.3 2010-11-09 16 10.6 2010-11-09 17 10.6 2010-11-09 18 10.6 2010-11-09 19 10.6 2010-11-09 20 10.6 2010-11-09 21 10.6 2010-11-09 22 10.6 2010-11-09 23 10.6 2010-11-09 24 10.6 2010-11-09 24.5 10.6 2010-11-09 14 10.7 2010-11-09 15 10.7 2010-11-09 10 10.8 2010-11-09 11 10.8 2010-11-09 12 10.8 2010-11-09 13 10.8 2010-11-09 0 10.9 2010-11-09 1 10.9 2010-11-09 2 10.9 2010-11-09 3 10.9 2010-11-09 4 10.9 2010-11-09 5 10.9 2010-11-09 6 10.9 2010-11-09 7 10.9 2010-11-09 8 10.9 2010-11-09 9 10.9 2011-01-19 0 0.3 2011-01-19 1 1.5 2011-01-19 2 1.7 2011-01-19 3 1.7 2011-01-19 4 1.7 2011-01-19 5 1.8 2011-01-19 6 1.8 2011-01-19 7 1.8 2011-01-19 8 1.8 2011-01-19 9 1.8 2011-01-19 10 1.8 2011-01-19 11 1.8 2011-01-19 12 1.9 2011-01-19 13 2 2011-01-19 14 2.2 2011-01-19 15 2.2 2011-01-19 16 2.3 2011-01-19 17 2.5 2011-01-19 18 2.6 2011-01-19 19 2.7 2011-01-19 20 2.7 2011-01-19 21 2.9 2011-01-19 22 2.9 2011-01-19 23 3.2 2011-01-19 24 3.6 2011-01-19 24.6 4.5 2011-04-18 4 6 2011-04-18 5 6 2011-04-18 6 6 2011-04-18 7 6 2011-04-18 8 6 2011-04-18 9 6 2011-04-18 10 6 2011-04-18 11 6 2011-04-18 12 6 2011-04-18 13 6 2011-04-18 14 6 2011-04-18 15 6 2011-04-18 16 6 2011-04-18 17 6 2011-04-18 18 6 2011-04-18 19 6 2011-04-18 20 6 2011-04-18 21 6 2011-04-18 22 6 2011-04-18 23 6 2011-04-18 24 6 2011-04-18 24.3 6 2011-04-18 1 6.1 2011-04-18 2 6.1 2011-04-18 3 6.1 2011-04-18 0 6.2 2011-05-02 24 7.6 2011-05-02 24.4 7.6 2011-05-02 20 7.7 2011-05-02 21 7.7 2011-05-02 22 7.7 2011-05-02 23 7.7 2011-05-02 9 7.8 2011-05-02 10 7.8 2011-05-02 11 7.8 2011-05-02 12 7.8 2011-05-02 13 7.8 2011-05-02 14 7.8 2011-05-02 15 7.8 2011-05-02 16 7.8 2011-05-02 17 7.8 2011-05-02 18 7.8 2011-05-02 19 7.8 2011-05-02 1 7.9 2011-05-02 2 7.9 2011-05-02 3 7.9 2011-05-02 4 7.9 2011-05-02 5 7.9 2011-05-02 6 7.9 2011-05-02 7 7.9 2011-05-02 8 7.9 2011-05-02 0 8 2011-05-17 22 9 2011-05-17 22.9 9 2011-05-17 21 9.4 2011-05-17 20 9.8 2011-05-17 19 9.9 2011-05-17 13 10 2011-05-17 14 10 2011-05-17 15 10 2011-05-17 16 10 2011-05-17 17 10 2011-05-17 18 10 2011-05-17 11 10.1 2011-05-17 12 10.1 2011-05-17 10 10.3 2011-05-17 9 10.4 2011-05-17 7 10.5 2011-05-17 8 10.5 2011-05-17 6 10.6 2011-05-17 4 10.7 2011-05-17 5 10.7 2011-05-17 2 11 2011-05-17 3 11 2011-05-17 1 11.1 2011-05-17 0 11.2 2011-05-31 24 9.8 2011-05-31 23 9.9 2011-05-31 22 10.1 2011-05-31 21 10.2 2011-05-31 20 10.5 2011-05-31 18 10.7 2011-05-31 19 10.7 2011-05-31 17 11.3 2011-05-31 16 11.4 2011-05-31 15 11.7 2011-05-31 14 11.9 2011-05-31 13 12.1 2011-05-31 12 12.8 2011-05-31 11 14.3 2011-05-31 9 14.6 2011-05-31 10 14.6 2011-05-31 4 14.7 2011-05-31 5 14.7 2011-05-31 6 14.7 2011-05-31 7 14.7 2011-05-31 8 14.7 2011-05-31 2 14.8 2011-05-31 3 14.8 2011-05-31 1 14.9 2011-05-31 0 15 2011-06-13 23 10.8 2011-06-13 24 10.8 2011-06-13 24.2 10.8 2011-06-13 22 10.9 2011-06-13 21 11 2011-06-13 20 11.1 2011-06-13 19 11.3 2011-06-13 18 11.5 2011-06-13 17 11.7 2011-06-13 16 12.2 2011-06-13 15 12.5 2011-06-13 14 12.9 2011-06-13 13 13.8 2011-06-13 12 14.5 2011-06-13 11 15.1 2011-06-13 10 15.7 2011-06-13 9 16.9 2011-06-13 5 18.6 2011-06-13 6 18.6 2011-06-13 7 18.6 2011-06-13 8 18.6 2011-06-13 2 18.7 2011-06-13 3 18.7 2011-06-13 4 18.7 2011-06-13 1 18.8 2011-06-13 0 18.9 2011-06-27 23 11 2011-06-27 24 11 2011-06-27 24.4 11 2011-06-27 22 11.1 2011-06-27 21 11.3 2011-06-27 19 11.4 2011-06-27 20 11.4 2011-06-27 18 11.6 2011-06-27 17 11.8 2011-06-27 16 12.1 2011-06-27 15 12.9 2011-06-27 14 13.2 2011-06-27 13 13.4 2011-06-27 12.5 13.6 2011-06-27 12 14.3 2011-06-27 11.5 14.8 2011-06-27 11 15.6 2011-06-27 10.5 17.3 2011-06-27 10 18.5 2011-06-27 9.5 19.8 2011-06-27 8 19.9 2011-06-27 8.5 19.9 2011-06-27 9 19.9 2011-06-27 7 20.1 2011-06-27 5 20.2 2011-06-27 6 20.2 2011-06-27 2 20.3 2011-06-27 3 20.3 2011-06-27 4 20.3 2011-06-27 1 20.5 2011-06-27 0 20.6 2011-07-11 22 11.2 2011-07-11 23 11.2 2011-07-11 24 11.2 2011-07-11 24.2 11.2 2011-07-11 20 11.4 2011-07-11 21 11.4 2011-07-11 19 11.5 2011-07-11 18 11.7 2011-07-11 17 11.9 2011-07-11 16 12.2 2011-07-11 15 12.6 2011-07-11 14 13 2011-07-11 13 13.5 2011-07-11 12.5 14.1 2011-07-11 12 15.1 2011-07-11 11.5 17 2011-07-11 11 17.9 2011-07-11 10.5 19 2011-07-11 10 19.9 2011-07-11 9.5 20.4 2011-07-11 9 20.6 2011-07-11 8.5 20.8 2011-07-11 8 21.2 2011-07-11 7.5 21.3 2011-07-11 7 22 2011-07-11 6.5 23.2 2011-07-11 6 24.4 2011-07-11 5.5 25.2 2011-07-11 5 25.7 2011-07-11 0 25.8 2011-07-11 1 25.8 2011-07-11 2 25.8 2011-07-11 3 25.8 2011-07-11 4 25.8 2011-07-25 24.4 11.3 2011-07-25 20 11.4 2011-07-25 21 11.4 2011-07-25 22 11.4 2011-07-25 23 11.4 2011-07-25 24 11.4 2011-07-25 18 11.5 2011-07-25 19 11.5 2011-07-25 17 11.9 2011-07-25 16 12.4 2011-07-25 15 12.8 2011-07-25 14 13.3 2011-07-25 13 13.7 2011-07-25 12 14.4 2011-07-25 11 15.1 2011-07-25 10 17.1 2011-07-25 9 18.9 2011-07-25 8 20.1 2011-07-25 7.5 24 2011-07-25 7 26.8 2011-07-25 5 27 2011-07-25 6 27 2011-07-25 6.5 27 2011-07-25 3 27.1 2011-07-25 4 27.1 2011-07-25 2 27.2 2011-07-25 1 27.3 2011-07-25 0 27.4 2011-08-04 22 11.3 2011-08-04 23 11.3 2011-08-04 24 11.3 2011-08-04 24.4 11.3 2011-08-04 21 11.4 2011-08-04 20 11.5 2011-08-04 18 11.6 2011-08-04 19 11.6 2011-08-04 17 12.3 2011-08-04 16 12.7 2011-08-04 15 13.1 2011-08-04 14 13.8 2011-08-04 13 14.8 2011-08-04 12 15.4 2011-08-04 11 16.3 2011-08-04 10 17.8 2011-08-04 9 19.9 2011-08-04 8 21.8 2011-08-04 7 23.8 2011-08-04 6.5 24.8 2011-08-04 6 25.5 2011-08-04 5.5 26.3 2011-08-04 5 27.5 2011-08-04 4.5 27.7 2011-08-04 3 27.8 2011-08-04 4 27.8 2011-08-04 2 27.9 2011-08-04 0 28.1 2011-08-04 1 28.1 2011-08-22 24 11.3 2011-08-22 23 11.4 2011-08-22 22 11.5 2011-08-22 21 11.7 2011-08-22 20 11.8 2011-08-22 19 11.9 2011-08-22 18 12.1 2011-08-22 17 12.4 2011-08-22 16 12.5 2011-08-22 15 12.9 2011-08-22 14 13.5 2011-08-22 13 14.1 2011-08-22 12.5 14.5 2011-08-22 12 15.3 2011-08-22 11.5 16.3 2011-08-22 11 16.9 2011-08-22 10.5 18.7 2011-08-22 10 19.5 2011-08-22 9.5 21.4 2011-08-22 9 23.6 2011-08-22 7 24.3 2011-08-22 7.5 24.3 2011-08-22 8 24.3 2011-08-22 8.5 24.3 2011-08-22 6 24.5 2011-08-22 5 24.7 2011-08-22 2 24.9 2011-08-22 3 24.9 2011-08-22 4 24.9 2011-08-22 1 25 2011-08-22 0 25.1 2011-09-12 24 11.3 2011-09-12 24.5 11.3 2011-09-12 22 11.4 2011-09-12 23 11.4 2011-09-12 20 11.5 2011-09-12 21 11.5 2011-09-12 19 11.7 2011-09-12 18 11.9 2011-09-12 17 12.2 2011-09-12 16 12.7 2011-09-12 15 13.1 2011-09-12 14 13.8 2011-09-12 13 14.9 2011-09-12 12.5 15.6 2011-09-12 12 16.4 2011-09-12 11.5 18.1 2011-09-12 11 20.2 2011-09-12 10.5 21.2 2011-09-12 10 21.6 2011-09-12 9 21.7 2011-09-12 8 22.1 2011-09-12 6 22.2 2011-09-12 7 22.2 2011-09-12 5 22.3 2011-09-12 2 22.4 2011-09-12 3 22.4 2011-09-12 4 22.4 2011-09-12 0 22.5 2011-09-12 1 22.5 2011-10-03 24 12 2011-10-03 24.5 12 2011-10-03 23 12.1 2011-10-03 21 12.2 2011-10-03 22 12.2 2011-10-03 20 12.3 2011-10-03 19 12.5 2011-10-03 18 13.8 2011-10-03 17.5 14.2 2011-10-03 17 14.9 2011-10-03 16.5 15.1 2011-10-03 16 15.4 2011-10-03 15 15.5 2011-10-03 15.5 15.5 2011-10-03 8 15.6 2011-10-03 9 15.6 2011-10-03 10 15.6 2011-10-03 11 15.6 2011-10-03 12 15.6 2011-10-03 13 15.6 2011-10-03 14 15.6 2011-10-03 5 15.7 2011-10-03 6 15.7 2011-10-03 7 15.7 2011-10-03 2 15.8 2011-10-03 3 15.8 2011-10-03 4 15.8 2011-10-03 0 15.9 2011-10-03 1 15.9 2011-10-31 23 12.1 2011-10-31 24 12.1 2011-10-31 24.5 12.1 2011-10-31 0 12.2 2011-10-31 1 12.2 2011-10-31 2 12.2 2011-10-31 3 12.2 2011-10-31 4 12.2 2011-10-31 5 12.2 2011-10-31 6 12.2 2011-10-31 7 12.2 2011-10-31 8 12.2 2011-10-31 9 12.2 2011-10-31 10 12.2 2011-10-31 11 12.2 2011-10-31 12 12.2 2011-10-31 13 12.2 2011-10-31 14 12.2 2011-10-31 15 12.2 2011-10-31 16 12.2 2011-10-31 17 12.2 2011-10-31 18 12.2 2011-10-31 19 12.2 2011-10-31 20 12.2 2011-10-31 21 12.2 2011-10-31 22 12.2 2012-02-22 0 1.9 2012-02-22 1 2.8 2012-02-22 2 2.8 2012-02-22 3 2.8 2012-02-22 4 2.8 2012-02-22 5 2.8 2012-02-22 6 2.8 2012-02-22 7 2.8 2012-02-22 8 2.8 2012-02-22 9 2.8 2012-02-22 10 2.8 2012-02-22 11 2.8 2012-02-22 12 2.9 2012-02-22 13 3 2012-02-22 14 3.1 2012-02-22 15 3.1 2012-02-22 16 3.2 2012-03-21 21 6.1 2012-03-21 22 6.1 2012-03-21 23 6.1 2012-03-21 24 6.1 2012-03-21 24.3 6.1 2012-03-21 20 6.2 2012-03-21 19 6.5 2012-03-21 15 6.6 2012-03-21 16 6.6 2012-03-21 17 6.6 2012-03-21 18 6.6 2012-03-21 13 6.7 2012-03-21 14 6.7 2012-03-21 10 6.8 2012-03-21 11 6.8 2012-03-21 12 6.8 2012-03-21 7 6.9 2012-03-21 8 6.9 2012-03-21 9 6.9 2012-03-21 5 7 2012-03-21 6 7 2012-03-21 4 7.1 2012-03-21 2 7.2 2012-03-21 3 7.2 2012-03-21 0 7.3 2012-03-21 1 7.3 2012-04-04 24 7.8 2012-04-04 24.3 7.8 2012-04-04 19 7.9 2012-04-04 20 7.9 2012-04-04 21 7.9 2012-04-04 22 7.9 2012-04-04 23 7.9 2012-04-04 1 8 2012-04-04 2 8 2012-04-04 3 8 2012-04-04 4 8 2012-04-04 5 8 2012-04-04 6 8 2012-04-04 7 8 2012-04-04 8 8 2012-04-04 9 8 2012-04-04 10 8 2012-04-04 11 8 2012-04-04 12 8 2012-04-04 13 8 2012-04-04 14 8 2012-04-04 15 8 2012-04-04 16 8 2012-04-04 17 8 2012-04-04 18 8 2012-04-04 0 8.9 2012-04-17 21 9.7 2012-04-17 22 9.7 2012-04-17 23 9.7 2012-04-17 24 9.7 2012-04-17 24.3 9.7 2012-04-17 19 9.8 2012-04-17 20 9.8 2012-04-17 9 9.9 2012-04-17 10 9.9 2012-04-17 11 9.9 2012-04-17 12 9.9 2012-04-17 13 9.9 2012-04-17 14 9.9 2012-04-17 15 9.9 2012-04-17 16 9.9 2012-04-17 17 9.9 2012-04-17 18 9.9 2012-04-17 4 10 2012-04-17 5 10 2012-04-17 6 10 2012-04-17 7 10 2012-04-17 8 10 2012-04-17 3 10.1 2012-04-17 2 10.2 2012-04-17 1 10.3 2012-04-17 0 11 2012-05-01 20 10.3 2012-05-01 21 10.3 2012-05-01 22 10.3 2012-05-01 23 10.3 2012-05-01 24 10.3 2012-05-01 24.4 10.3 2012-05-01 9 10.4 2012-05-01 10 10.4 2012-05-01 11 10.4 2012-05-01 12 10.4 2012-05-01 13 10.4 2012-05-01 14 10.4 2012-05-01 15 10.4 2012-05-01 16 10.4 2012-05-01 17 10.4 2012-05-01 18 10.4 2012-05-01 19 10.4 2012-05-01 5 10.5 2012-05-01 6 10.5 2012-05-01 7 10.5 2012-05-01 8 10.5 2012-05-01 4 10.7 2012-05-01 3 10.8 2012-05-01 0 10.9 2012-05-01 1 10.9 2012-05-01 2 10.9 2012-05-14 21 10.4 2012-05-14 22 10.4 2012-05-14 23 10.4 2012-05-14 24 10.4 2012-05-14 24.5 10.4 2012-05-14 18 10.5 2012-05-14 19 10.5 2012-05-14 20 10.5 2012-05-14 17 10.7 2012-05-14 16 11 2012-05-14 15 11.4 2012-05-14 14 12.2 2012-05-14 13 13 2012-05-14 12 13.2 2012-05-14 11 13.6 2012-05-14 10 13.8 2012-05-14 9 14 2012-05-14 8 14.2 2012-05-14 6 14.3 2012-05-14 7 14.3 2012-05-14 5 14.4 2012-05-14 3 14.5 2012-05-14 4 14.5 2012-05-14 2 14.6 2012-05-14 1 15.7 2012-05-14 0 16.1 2012-05-29 21 11 2012-05-29 22 11 2012-05-29 22.8 11 2012-05-29 19 11.1 2012-05-29 20 11.1 2012-05-29 18 11.2 2012-05-29 17 11.5 2012-05-29 16 11.9 2012-05-29 15 12.1 2012-05-29 14 12.5 2012-05-29 13 13.4 2012-05-29 12 14 2012-05-29 11.5 15.3 2012-05-29 11 16.6 2012-05-29 10.5 17.5 2012-05-29 10 18 2012-05-29 9.5 18.6 2012-05-29 9 19 2012-05-29 6 19.1 2012-05-29 7 19.1 2012-05-29 8 19.1 2012-05-29 8.5 19.1 2012-05-29 0 19.2 2012-05-29 1 19.2 2012-05-29 2 19.2 2012-05-29 3 19.2 2012-05-29 4 19.2 2012-05-29 5 19.2 2012-06-11 23 11.1 2012-06-11 24 11.1 2012-06-11 21 11.2 2012-06-11 22 11.2 2012-06-11 20 11.3 2012-06-11 19 11.4 2012-06-11 18 11.5 2012-06-11 17 11.7 2012-06-11 16 12 2012-06-11 15 12.5 2012-06-11 14 12.9 2012-06-11 13 13.1 2012-06-11 12.5 13.8 2012-06-11 12 14.6 2012-06-11 11.5 16.6 2012-06-11 11 16.9 2012-06-11 10.5 17.2 2012-06-11 10 17.4 2012-06-11 9.5 17.7 2012-06-11 9 18.4 2012-06-11 8.5 19.2 2012-06-11 8 20.5 2012-06-11 4 21.1 2012-06-11 5 21.1 2012-06-11 6 21.1 2012-06-11 7 21.1 2012-06-11 0 21.3 2012-06-11 1 21.3 2012-06-11 2 21.3 2012-06-11 3 21.3 2012-06-25 24 11.5 2012-06-25 22 11.7 2012-06-25 23 11.7 2012-06-25 21 11.8 2012-06-25 20 11.9 2012-06-25 19 12.1 2012-06-25 24.5 12.2 2012-06-25 18 12.4 2012-06-25 17 12.8 2012-06-25 16 13.3 2012-06-25 15 13.7 2012-06-25 14 14.6 2012-06-25 13.5 15.5 2012-06-25 13 15.7 2012-06-25 12.5 16.4 2012-06-25 12 17.2 2012-06-25 11.5 18.5 2012-06-25 11 20.1 2012-06-25 10 20.8 2012-06-25 9 21 2012-06-25 8 22.4 2012-06-25 7 22.9 2012-06-25 6 23.2 2012-06-25 5 23.3 2012-06-25 4 23.4 2012-06-25 3 23.5 2012-06-25 2 23.6 2012-06-25 0 23.7 2012-06-25 1 23.7 2012-07-10 22 11.5 2012-07-10 23 11.5 2012-07-10 24 11.5 2012-07-10 20 11.6 2012-07-10 21 11.6 2012-07-10 19 11.8 2012-07-10 18 12 2012-07-10 17 12.2 2012-07-10 24.5 12.2 2012-07-10 16 12.6 2012-07-10 15 13.4 2012-07-10 14.5 13.9 2012-07-10 14 14.5 2012-07-10 13.5 15.9 2012-07-10 13 16.9 2012-07-10 12.5 17.3 2012-07-10 12 18.9 2012-07-10 11.5 19.4 2012-07-10 11 19.9 2012-07-10 10 20.6 2012-07-10 9 21.3 2012-07-10 8.5 22.1 2012-07-10 8 22.6 2012-07-10 7 23.4 2012-07-10 6.5 24.1 2012-07-10 6 25.1 2012-07-10 5.5 27.4 2012-07-10 4 27.5 2012-07-10 5 27.5 2012-07-10 0 27.6 2012-07-10 1 27.6 2012-07-10 2 27.6 2012-07-10 3 27.6 2012-07-23 22 11.6 2012-07-23 23 11.6 2012-07-23 24 11.6 2012-07-23 20 11.7 2012-07-23 21 11.7 2012-07-23 19 11.8 2012-07-23 18 12 2012-07-23 17 12.3 2012-07-23 16 12.6 2012-07-23 15.5 13.3 2012-07-23 15 13.6 2012-07-23 14.5 14.2 2012-07-23 14 14.5 2012-07-23 13.5 15.1 2012-07-23 13 16 2012-07-23 12.5 17.3 2012-07-23 12 17.9 2012-07-23 11.5 18.7 2012-07-23 11 19.6 2012-07-23 10.5 19.9 2012-07-23 10 20.2 2012-07-23 9.5 21 2012-07-23 9 21.2 2012-07-23 8.5 22.2 2012-07-23 8 24.3 2012-07-23 7.5 26.1 2012-07-23 6 26.2 2012-07-23 7 26.2 2012-07-23 3 26.3 2012-07-23 4 26.3 2012-07-23 5 26.3 2012-07-23 2 26.4 2012-07-23 1 26.9 2012-07-23 0 27.5 2012-08-06 24 11.6 2012-08-06 22 11.7 2012-08-06 23 11.7 2012-08-06 24.1 11.7 2012-08-06 21 11.8 2012-08-06 20 12.2 2012-08-06 19 12.3 2012-08-06 18 12.5 2012-08-06 17 12.7 2012-08-06 16 13.2 2012-08-06 15 13.6 2012-08-06 14.5 14.1 2012-08-06 14 14.9 2012-08-06 13.5 15.6 2012-08-06 13 16.4 2012-08-06 12.5 17.1 2012-08-06 12 17.6 2012-08-06 11.5 18.1 2012-08-06 11 18.9 2012-08-06 10.5 19.3 2012-08-06 10 20.4 2012-08-06 9.5 22.2 2012-08-06 9 25.3 2012-08-06 8 26 2012-08-06 8.5 26 2012-08-06 4 26.1 2012-08-06 5 26.1 2012-08-06 6 26.1 2012-08-06 7 26.1 2012-08-06 2 26.2 2012-08-06 3 26.2 2012-08-06 1 26.4 2012-08-06 0 26.5 2012-08-20 23 11.7 2012-08-20 24 11.7 2012-08-20 21 11.8 2012-08-20 22 11.8 2012-08-20 20 11.9 2012-08-20 19 12.1 2012-08-20 18 12.4 2012-08-20 17 12.8 2012-08-20 16 13.5 2012-08-20 15 14.2 2012-08-20 14.5 14.9 2012-08-20 14 15.5 2012-08-20 13.5 15.9 2012-08-20 13 16.2 2012-08-20 12.5 16.6 2012-08-20 12 17.3 2012-08-20 11.5 18.9 2012-08-20 11 20.3 2012-08-20 10.5 21.8 2012-08-20 10 22.6 2012-08-20 4 23 2012-08-20 5 23 2012-08-20 6 23 2012-08-20 7 23 2012-08-20 8 23 2012-08-20 9 23 2012-08-20 9.5 23 2012-08-20 2 23.1 2012-08-20 3 23.1 2012-08-20 1 23.2 2012-08-20 0 23.6 2012-09-04 24 11.6 2012-09-04 24.3 11.6 2012-09-04 22 11.7 2012-09-04 23 11.7 2012-09-04 21 11.8 2012-09-04 20 11.9 2012-09-04 19 12.1 2012-09-04 18 12.4 2012-09-04 17 12.6 2012-09-04 16 13.4 2012-09-04 15 13.7 2012-09-04 14 14.5 2012-09-04 13 15.6 2012-09-04 12 19.5 2012-09-04 11.5 22.6 2012-09-04 11 22.7 2012-09-04 10.5 22.9 2012-09-04 10 23 2012-09-04 9 23.1 2012-09-04 7 23.3 2012-09-04 8 23.3 2012-09-04 6 23.4 2012-09-04 5 23.7 2012-09-04 4 23.9 2012-09-04 3 24 2012-09-04 2 24.1 2012-09-04 1 24.3 2012-09-04 0 24.8 2012-10-01 23 12.1 2012-10-01 24 12.1 2012-10-01 22 12.2 2012-10-01 21 12.3 2012-10-01 20 12.5 2012-10-01 19 12.9 2012-10-01 18 13.4 2012-10-01 17.5 14.3 2012-10-01 17 15.5 2012-10-01 16.5 16 2012-10-01 16 16.1 2012-10-01 15 16.4 2012-10-01 12 16.6 2012-10-01 13 16.6 2012-10-01 14 16.6 2012-10-01 10 16.7 2012-10-01 11 16.7 2012-10-01 3 16.8 2012-10-01 4 16.8 2012-10-01 5 16.8 2012-10-01 6 16.8 2012-10-01 7 16.8 2012-10-01 8 16.8 2012-10-01 9 16.8 2012-10-01 1 16.9 2012-10-01 2 16.9 2012-10-01 0 17 2012-10-29 0 11.8 2012-10-29 1 11.8 2012-10-29 2 11.8 2012-10-29 3 11.8 2012-10-29 4 11.8 2012-10-29 5 11.8 2012-10-29 6 11.8 2012-10-29 7 11.8 2012-10-29 8 11.8 2012-10-29 9 11.8 2012-10-29 10 11.8 2012-10-29 11 11.8 2012-10-29 12 11.8 2012-10-29 13 11.8 2012-10-29 14 11.8 2012-10-29 15 11.8 2012-10-29 16 11.8 2012-10-29 17 11.8 2012-10-29 18 11.8 2012-10-29 19 11.8 2012-10-29 20 11.8 2012-10-29 21 11.8 2012-10-29 22 11.8 2012-10-29 23 11.8 2012-10-29 24 11.8 2012-10-29 24.3 11.8 2012-11-29 24.3 5.8 2012-11-29 20 5.9 2012-11-29 21 5.9 2012-11-29 22 5.9 2012-11-29 23 5.9 2012-11-29 24 5.9 2012-11-29 11 6 2012-11-29 12 6 2012-11-29 13 6 2012-11-29 14 6 2012-11-29 15 6 2012-11-29 16 6 2012-11-29 17 6 2012-11-29 18 6 2012-11-29 19 6 2012-11-29 1 6.1 2012-11-29 2 6.1 2012-11-29 3 6.1 2012-11-29 4 6.1 2012-11-29 5 6.1 2012-11-29 6 6.1 2012-11-29 7 6.1 2012-11-29 8 6.1 2012-11-29 9 6.1 2012-11-29 10 6.1 2012-11-29 0 6.2 \ No newline at end of file diff --git a/resources/output.nc b/resources/output.nc deleted file mode 100755 index fa271ae..0000000 Binary files a/resources/output.nc and /dev/null differ